]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/intel/minnowmax/minnowmax.c
1f5549a4586cc217991c7f5381aef2157e46c75e
[karo-tx-uboot.git] / board / intel / minnowmax / minnowmax.c
1 /*
2  * Copyright (C) 2015, Google, Inc
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #include <common.h>
8 #include <asm/ibmpc.h>
9 #include <asm/pnp_def.h>
10 #include <netdev.h>
11 #include <smsc_lpc47m.h>
12
13 #define SERIAL_DEV PNP_DEV(0x2e, 4)
14
15 int board_early_init_f(void)
16 {
17         lpc47m_enable_serial(SERIAL_DEV, UART0_BASE, UART0_IRQ);
18
19         return 0;
20 }
21
22 void setup_pch_gpios(u16 gpiobase, const struct pch_gpio_map *gpio)
23 {
24         return;
25 }
26
27 int board_eth_init(bd_t *bis)
28 {
29         return pci_eth_init(bis);
30 }