1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <bootblock_common.h>
6 #include <superio/smsc/sio1007/sio1007.h>
7 #include <northbridge/intel/sandybridge/raminit.h>
9 #define SIO_PORT 0x164e
11 void bootblock_mainboard_early_init(void)
13 const u16 port
= SIO_PORT
;
14 const u16 runtime_port
= 0x180;
16 sio1007_enable_uart_at(port
);
18 /* Turn on configuration mode. */
21 /* Set the GPIO direction, polarity, and type. */
22 sio1007_setreg(port
, 0x31, 1 << 0, 1 << 0);
23 sio1007_setreg(port
, 0x32, 0 << 0, 1 << 0);
24 sio1007_setreg(port
, 0x33, 0 << 0, 1 << 0);
26 /* Set the base address for the runtime register block. */
27 sio1007_setreg(port
, 0x30, runtime_port
>> 4, 0xff);
28 sio1007_setreg(port
, 0x21, runtime_port
>> 12, 0xff);
30 /* Turn on address decoding for it. */
31 sio1007_setreg(port
, 0x3a, 1 << 1, 1 << 1);
33 /* Set the value of GPIO 10 by changing GP1, bit 0. */
35 byte
= inb(runtime_port
+ 0xc);
37 outb(byte
, runtime_port
+ 0xc);
39 /* Turn off address decoding for it. */
40 sio1007_setreg(port
, 0x3a, 0 << 1, 1 << 1);
42 /* Turn off configuration mode. */
46 void mainboard_fill_pei_data(struct pei_data
*pei_data
)