1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <bootblock_common.h>
4 #include <device/pci_def.h>
5 #include <device/pci_ops.h>
6 #include <intelblocks/lpc_lib.h>
7 #include <intelblocks/pcr.h>
8 #include <soc/intel/common/block/lpc/lpc_def.h>
9 #include <soc/pci_devs.h>
10 #include <soc/pcr_ids.h>
11 #include <superio/aspeed/ast2400/ast2400.h>
12 #include <superio/aspeed/common/aspeed.h>
16 #define ASPEED_SIO_PORT 0x2E
17 #define PCR_DMI_LPCIOD 0x2770
18 #define PCR_DMI_LPCIOE 0x2774
20 void bootblock_mainboard_early_init(void)
23 * Set up decoding windows on PCH over PCR. The CPU uses two of AST2600 SIO ports,
24 * one is connected to debug header (SUART1) and another is used as SOL (SUART2).
25 * For bd_egs, only SUART1 is used.
27 uint16_t lpciod
= (LPC_IOD_COMB_RANGE
| LPC_IOD_COMA_RANGE
);
28 uint16_t lpcioe
= (LPC_IOE_SUPERIO_2E_2F
| LPC_IOE_COMB_EN
| LPC_IOE_COMA_EN
);
30 /* Open IO windows: 0x3f8 for com1 and 02f8 for com2 */
31 pcr_or32(PID_DMI
, PCR_DMI_LPCIOD
, lpciod
);
32 /* LPC I/O enable: com1 and com2 */
33 pcr_or32(PID_DMI
, PCR_DMI_LPCIOE
, lpcioe
);
35 /* Enable com1 (0x3f8), com2 (02f8) and superio (0x2e) */
36 pci_write_config16(PCH_DEV_LPC
, LPC_IO_DECODE
, lpciod
);
37 pci_write_config16(PCH_DEV_LPC
, LPC_IO_ENABLES
, lpcioe
);
39 const pnp_devfn_t serial_dev
= PNP_DEV(ASPEED_SIO_PORT
, AST2400_SUART1
);
40 aspeed_enable_serial(serial_dev
, CONFIG_TTYS0_BASE
);
42 const struct pad_config
*pads
;
44 pads
= get_gpio_table(&pads_num
);
45 gpio_configure_pads(pads
, pads_num
);