blob: 7f61ef8b366b20970b289d0ef11cdad292d4a68d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bin Menga2e3b052016-02-17 00:16:25 -08002/*
3 * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
Bin Menga2e3b052016-02-17 00:16:25 -08004 */
5
6#include <common.h>
7#include <dm.h>
8#include <errno.h>
Simon Glass691d7192020-05-10 11:40:02 -06009#include <init.h>
Bin Menga2e3b052016-02-17 00:16:25 -080010#include <pci.h>
11#include <smsc_sio1007.h>
12#include <asm/ibmpc.h>
Simon Glass8c30b572016-03-11 22:06:57 -070013#include <asm/lpc_common.h>
Bin Menga2e3b052016-02-17 00:16:25 -080014#include <asm/pci.h>
15#include <asm/arch/pch.h>
16
17#define SIO1007_RUNTIME_IOPORT 0x180
18
19int board_early_init_f(void)
20{
21 struct udevice *pch;
22 int ret;
23
Michal Suchanekc726fc02022-10-12 21:57:59 +020024 ret = uclass_first_device_err(UCLASS_PCH, &pch);
Bin Menga2e3b052016-02-17 00:16:25 -080025 if (ret)
26 return ret;
Bin Menga2e3b052016-02-17 00:16:25 -080027
28 /* Initialize LPC interface to turn on superio chipset decode range */
29 dm_pci_write_config16(pch, LPC_IO_DEC, COMA_DEC_RANGE | COMB_DEC_RANGE);
30 dm_pci_write_config16(pch, LPC_EN, KBC_LPC_EN | COMA_LPC_EN);
31 dm_pci_write_config32(pch, LPC_GEN1_DEC, GEN_DEC_RANGE_256B |
32 (SIO1007_IOPORT3 & 0xff00) | GEN_DEC_RANGE_EN);
33 dm_pci_write_config32(pch, LPC_GEN2_DEC, GEN_DEC_RANGE_16B |
34 SIO1007_RUNTIME_IOPORT | GEN_DEC_RANGE_EN);
35
36 /* Enable legacy serial port at 0x3f8 */
37 sio1007_enable_serial(SIO1007_IOPORT3, 0, UART0_BASE, UART0_IRQ);
38
39 /* Enable SIO1007 runtime I/O port at 0x180 */
40 sio1007_enable_runtime(SIO1007_IOPORT3, SIO1007_RUNTIME_IOPORT);
41
42 /*
43 * On Cougar Canyon 2 board, the RS232 transiver connected to serial
44 * port 0 (0x3f8) is controlled by a GPIO pin (GPIO10) on the SIO1007.
45 * Set the pin value to 1 to enable the RS232 transiver.
46 */
47 sio1007_gpio_config(SIO1007_IOPORT3, 0, GPIO_DIR_OUTPUT,
48 GPIO_POL_NO_INVERT, GPIO_TYPE_PUSH_PULL);
49 sio1007_gpio_set_value(SIO1007_RUNTIME_IOPORT, 0, 1);
50
51 return 0;
52}