blob: 737e6103f373c45ff3bdbbdad8061be364af0638 [file] [log] [blame]
Stefan Roese82ceba22016-03-16 08:48:21 +01001/*
2 * Copyright (C) 2016 Stefan Roese <sr@denx.de>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <winbond_w83627.h>
9#include <asm/gpio.h>
10#include <asm/ibmpc.h>
11#include <asm/pnp_def.h>
12
13int board_early_init_f(void)
14{
Stefan Roesef2a751b2016-06-15 14:15:25 +020015#ifndef CONFIG_INTERNAL_UART
Stefan Roese82ceba22016-03-16 08:48:21 +010016 /*
17 * The FSP enables the BayTrail internal legacy UART (again).
18 * Disable it again, so that the Winbond one can be used.
19 */
20 setup_internal_uart(0);
21
22 /* Enable the legacy UART in the Winbond W83627 Super IO chip */
23 winbond_enable_serial(PNP_DEV(WINBOND_IO_PORT, W83627DHG_SP1),
24 UART0_BASE, UART0_IRQ);
Stefan Roesef2a751b2016-06-15 14:15:25 +020025#endif
Stefan Roese82ceba22016-03-16 08:48:21 +010026
27 return 0;
28}
29
30int arch_early_init_r(void)
31{
32 return 0;
33}