blob: 3a79e69112101d5b72fba749992f75150fe17501 [file] [log] [blame]
Bin Mengb2e02d22014-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>
10#include <smsc_lpc47m.h>
11
Bin Mengb2e02d22014-12-17 15:50:36 +080012int board_early_init_f(void)
13{
Bin Meng4dd02a72015-08-24 01:00:08 -070014 lpc47m_enable_serial(PNP_DEV(LPC47M_IO_PORT, LPC47M_SP1),
15 UART0_BASE, UART0_IRQ);
16 lpc47m_enable_kbc(PNP_DEV(LPC47M_IO_PORT, LPC47M_KBC),
17 KBD_IRQ, MSE_IRQ);
Bin Mengb2e02d22014-12-17 15:50:36 +080018
19 return 0;
20}
Bin Mengb71eec32014-12-17 15:50:38 +080021
22void setup_pch_gpios(u16 gpiobase, const struct pch_gpio_map *gpio)
23{
24 return;
25}