blob: ad2d5b69d6e6f28ae799363befef576874258c4f [file] [log] [blame]
Bin Meng08e484c2014-12-17 15:50:36 +08001/*
2 * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
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>
Bin Mengee18d642014-12-17 15:50:45 +080010#include <netdev.h>
Bin Meng08e484c2014-12-17 15:50:36 +080011#include <smsc_lpc47m.h>
12
13#define SERIAL_DEV PNP_DEV(0x2e, 4)
14
Bin Meng08e484c2014-12-17 15:50:36 +080015int board_early_init_f(void)
16{
Bin Meng6e0150f2015-03-31 11:25:03 +080017 lpc47m_enable_serial(SERIAL_DEV, UART0_BASE, UART0_IRQ);
Bin Meng08e484c2014-12-17 15:50:36 +080018
19 return 0;
20}
Bin Meng9b649692014-12-17 15:50:38 +080021
22void setup_pch_gpios(u16 gpiobase, const struct pch_gpio_map *gpio)
23{
24 return;
25}
Bin Mengee18d642014-12-17 15:50:45 +080026
27int board_eth_init(bd_t *bis)
28{
29 return pci_eth_init(bis);
30}