blob: 09b23d691c44983457d6fe8c26dbfa8a741c9911 [file] [log] [blame]
Angel Ponsd32b6de2020-04-03 01:23:13 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauere1ae4b22012-04-27 23:20:58 +02002
Arthur Heymansfa5d0f82019-11-12 19:11:50 +01003#include <bootblock_common.h>
Stefan Reinauere1ae4b22012-04-27 23:20:58 +02004#include <stdint.h>
Stefan Reinauere1ae4b22012-04-27 23:20:58 +02005#include <pc80/mc146818rtc.h>
Stefan Reinauere1ae4b22012-04-27 23:20:58 +02006#include <console/console.h>
Kyösti Mälkkie3ddee02014-05-03 10:45:28 +03007#include <bootmode.h>
Edward O'Callaghan1b3acb12014-06-01 18:04:05 +10008#include <superio/ite/common/ite.h>
9#include <superio/ite/it8772f/it8772f.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110010#include <northbridge/intel/sandybridge/sandybridge.h>
11#include <northbridge/intel/sandybridge/raminit.h>
Vladimir Serbinenkod2990c92016-02-10 02:52:42 +010012#include <northbridge/intel/sandybridge/raminit_native.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110013#include <southbridge/intel/bd82x6x/pch.h>
Patrick Rudolphe8e66f42016-02-06 17:42:42 +010014#include <southbridge/intel/common/gpio.h>
Edward O'Callaghan74834e02015-01-04 04:17:35 +110015#include <superio/smsc/lpc47n207/lpc47n207.h>
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020016
17/* Stumpy USB Reset Disable defined in cmos.layout */
Julius Wernercd49cce2019-03-05 16:53:33 -080018#if CONFIG(USE_OPTION_TABLE)
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020019#include "option_table.h"
20#define CMOS_USB_RESET_DISABLE (CMOS_VSTART_stumpy_usb_reset_disable >> 3)
21#else
22#define CMOS_USB_RESET_DISABLE (400 >> 3)
23#endif
24#define USB_RESET_DISABLE_MAGIC (0xdd) /* Disable if set to this */
25
Elyes HAOUASf5f1b382018-04-26 09:43:03 +020026#define SUPERIO_DEV PNP_DEV(0x2e, 0)
Edward O'Callaghan1b3acb12014-06-01 18:04:05 +100027#define SERIAL_DEV PNP_DEV(0x2e, IT8772F_SP1)
28#define GPIO_DEV PNP_DEV(0x2e, IT8772F_GPIO)
29
Arthur Heymans9c538342019-11-12 16:42:33 +010030void mainboard_late_rcba_config(void)
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020031{
Kyösti Mälkki6f499062015-06-06 11:52:24 +030032 /*
33 * GFX INTA -> PIRQA (MSI)
34 * D28IP_P1IP WLAN INTA -> PIRQB
35 * D28IP_P4IP ETH0 INTB -> PIRQC
36 * D29IP_E1P EHCI1 INTA -> PIRQD
37 * D26IP_E2P EHCI2 INTA -> PIRQE
38 * D31IP_SIP SATA INTA -> PIRQF (MSI)
39 * D31IP_SMIP SMBUS INTB -> PIRQG
40 * D31IP_TTIP THRT INTC -> PIRQH
41 * D27IP_ZIP HDA INTA -> PIRQG (MSI)
42 */
43
44 /* Device interrupt pin register (board specific) */
45 RCBA32(D31IP) = (INTC << D31IP_TTIP) | (NOINT << D31IP_SIP2) |
46 (INTB << D31IP_SMIP) | (INTA << D31IP_SIP);
47 RCBA32(D30IP) = (NOINT << D30IP_PIP);
48 RCBA32(D29IP) = (INTA << D29IP_E1P);
49 RCBA32(D28IP) = (INTA << D28IP_P1IP) | (INTC << D28IP_P3IP) |
50 (INTB << D28IP_P4IP);
51 RCBA32(D27IP) = (INTA << D27IP_ZIP);
52 RCBA32(D26IP) = (INTA << D26IP_E2P);
53 RCBA32(D25IP) = (NOINT << D25IP_LIP);
54 RCBA32(D22IP) = (NOINT << D22IP_MEI1IP);
55
56 /* Device interrupt route registers */
57 DIR_ROUTE(D31IR, PIRQF, PIRQG, PIRQH, PIRQA);
58 DIR_ROUTE(D29IR, PIRQD, PIRQE, PIRQF, PIRQG);
59 DIR_ROUTE(D28IR, PIRQB, PIRQC, PIRQD, PIRQE);
60 DIR_ROUTE(D27IR, PIRQG, PIRQH, PIRQA, PIRQB);
61 DIR_ROUTE(D26IR, PIRQE, PIRQF, PIRQG, PIRQH);
62 DIR_ROUTE(D25IR, PIRQA, PIRQB, PIRQC, PIRQD);
63 DIR_ROUTE(D22IR, PIRQA, PIRQB, PIRQC, PIRQD);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020064}
65
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020066static void setup_sio_gpios(void)
67{
68 /*
69 * GPIO10 as USBPWRON12#
70 * GPIO12 as USBPWRON13#
71 */
Elyes HAOUASf5f1b382018-04-26 09:43:03 +020072 it8772f_gpio_setup(SUPERIO_DEV, 1, 0x05, 0x05, 0x00, 0x05, 0x05);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020073
74 /*
75 * GPIO22 as wake SCI#
76 */
Elyes HAOUASf5f1b382018-04-26 09:43:03 +020077 it8772f_gpio_setup(SUPERIO_DEV, 2, 0x04, 0x04, 0x00, 0x04, 0x04);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020078
79 /*
80 * GPIO32 as EXTSMI#
81 */
Elyes HAOUASf5f1b382018-04-26 09:43:03 +020082 it8772f_gpio_setup(SUPERIO_DEV, 3, 0x04, 0x04, 0x00, 0x04, 0x04);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020083
84 /*
85 * GPIO45 as LED_POWER#
86 */
Matt DeVillierffae7462016-11-07 16:43:03 -060087 it8772f_gpio_led(GPIO_DEV, 4 /* set */, (0x1 << 5) /* select */,
88 (0x1 << 5) /* polarity */, (0x1 << 5) /* 1 = pullup */,
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060089 (0x1 << 5) /* output */, (0x1 << 5) /* 1 = Simple IO function */,
david80ef7b72015-01-19 17:11:36 +080090 SIO_GPIO_BLINK_GPIO45, IT8772F_GPIO_BLINK_FREQUENCY_1_HZ);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020091
92 /*
93 * GPIO51 as USBPWRON8#
94 * GPIO52 as USBPWRON1#
95 */
Elyes HAOUASf5f1b382018-04-26 09:43:03 +020096 it8772f_gpio_setup(SUPERIO_DEV, 5, 0x06, 0x06, 0x00, 0x06, 0x06);
97 it8772f_gpio_setup(SUPERIO_DEV, 6, 0x00, 0x00, 0x00, 0x00, 0x00);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020098}
99
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100100void mainboard_fill_pei_data(struct pei_data *pei_data)
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200101{
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100102 struct pei_data pei_data_template = {
Edward O'Callaghanb27d3602014-05-24 02:40:31 +1000103 .pei_version = PEI_VERSION,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800104 .mchbar = (uintptr_t)DEFAULT_MCHBAR,
105 .dmibar = (uintptr_t)DEFAULT_DMIBAR,
Edward O'Callaghanb27d3602014-05-24 02:40:31 +1000106 .epbar = DEFAULT_EPBAR,
107 .pciexbar = CONFIG_MMCONF_BASE_ADDRESS,
Angel Ponsb21bffa2020-07-03 01:02:28 +0200108 .smbusbar = CONFIG_FIXED_SMBUS_IO_BASE,
Edward O'Callaghanb27d3602014-05-24 02:40:31 +1000109 .wdbbar = 0x4000000,
110 .wdbsize = 0x1000,
111 .hpet_address = CONFIG_HPET_ADDRESS,
Angel Pons92717ff2020-09-14 16:22:22 +0200112 .rcba = (uintptr_t)DEFAULT_RCBA,
Edward O'Callaghanb27d3602014-05-24 02:40:31 +1000113 .pmbase = DEFAULT_PMBASE,
114 .gpiobase = DEFAULT_GPIOBASE,
115 .thermalbase = 0xfed08000,
116 .system_type = 0, // 0 Mobile, 1 Desktop/Server
117 .tseg_size = CONFIG_SMM_TSEG_SIZE,
118 .spd_addresses = { 0xa0, 0x00,0xa4,0x00 },
119 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
120 .ec_present = 0,
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200121 // 0 = leave channel enabled
122 // 1 = disable dimm 0 on channel
123 // 2 = disable dimm 1 on channel
124 // 3 = disable dimm 0+1 on channel
Edward O'Callaghanb27d3602014-05-24 02:40:31 +1000125 .dimm_channel0_disabled = 2,
126 .dimm_channel1_disabled = 2,
127 .max_ddr3_freq = 1333,
128 .usb_port_config = {
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200129 { 1, 0, 0x0080 }, /* P0: Front port (OC0) */
130 { 1, 1, 0x0040 }, /* P1: Back port (OC1) */
131 { 1, 0, 0x0040 }, /* P2: MINIPCIE1 (no OC) */
132 { 1, 0, 0x0040 }, /* P3: MMC (no OC) */
133 { 1, 2, 0x0080 }, /* P4: Front port (OC2) */
134 { 0, 0, 0x0000 }, /* P5: Empty */
135 { 0, 0, 0x0000 }, /* P6: Empty */
136 { 0, 0, 0x0000 }, /* P7: Empty */
137 { 1, 4, 0x0040 }, /* P8: Back port (OC4) */
138 { 1, 4, 0x0040 }, /* P9: MINIPCIE3 (no OC) */
139 { 1, 4, 0x0040 }, /* P10: BLUETOOTH (no OC) */
140 { 0, 4, 0x0000 }, /* P11: Empty */
141 { 1, 6, 0x0040 }, /* P12: Back port (OC6) */
142 { 1, 5, 0x0040 }, /* P13: Back port (OC5) */
143 },
144 };
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100145 *pei_data = pei_data_template;
146}
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200147
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +0200148void mainboard_get_spd(spd_raw_data *spd, bool id_only)
Vladimir Serbinenkod2990c92016-02-10 02:52:42 +0100149{
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +0200150 read_spd(&spd[0], 0x50, id_only);
151 read_spd(&spd[2], 0x52, id_only);
Vladimir Serbinenkod2990c92016-02-10 02:52:42 +0100152}
153
154const struct southbridge_usb_port mainboard_usb_ports[] = {
Elyes HAOUAS44f558e2020-02-24 13:26:04 +0100155 /* enabled power USB oc pin */
Vladimir Serbinenkod2990c92016-02-10 02:52:42 +0100156 { 1, 1, 0 }, /* P0: Front port (OC0) */
157 { 1, 0, 1 }, /* P1: Back port (OC1) */
158 { 1, 0, -1 }, /* P2: MINIPCIE1 (no OC) */
159 { 1, 0, -1 }, /* P3: MMC (no OC) */
160 { 1, 1, 2 }, /* P4: Front port (OC2) */
161 { 0, 0, -1 }, /* P5: Empty */
162 { 0, 0, -1 }, /* P6: Empty */
163 { 0, 0, -1 }, /* P7: Empty */
164 { 1, 0, 4 }, /* P8: Back port (OC4) */
165 { 1, 0, -1 }, /* P9: MINIPCIE3 (no OC) */
166 { 1, 0, -1 }, /* P10: BLUETOOTH (no OC) */
167 { 0, 0, -1 }, /* P11: Empty */
168 { 1, 0, 6 }, /* P12: Back port (OC6) */
169 { 1, 0, 5 }, /* P13: Back port (OC5) */
170};
171
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100172void mainboard_early_init(int s3resume)
173{
Kyösti Mälkkie3ddee02014-05-03 10:45:28 +0300174 init_bootmode_straps();
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100175}
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200176
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100177int mainboard_should_reset_usb(int s3resume)
178{
179 if (s3resume) {
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200180 /*
181 * For Stumpy the back USB ports are reset on resume
182 * so default to resetting the controller to make the
183 * kernel happy. There is a CMOS flag to disable the
184 * controller reset in case the kernel can tolerate
185 * the device power loss better in the future.
186 */
187 u8 magic = cmos_read(CMOS_USB_RESET_DISABLE);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200188 if (magic == USB_RESET_DISABLE_MAGIC) {
189 printk(BIOS_DEBUG, "USB Controller Reset Disabled\n");
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100190 return 0;
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200191 } else {
192 printk(BIOS_DEBUG, "USB Controller Reset Enabled\n");
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100193 return 1;
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200194 }
195 } else {
196 /* Ensure USB reset on resume is enabled at boot */
197 cmos_write(0, CMOS_USB_RESET_DISABLE);
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100198 return 1;
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200199 }
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100200}
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200201
Arthur Heymansfa5d0f82019-11-12 19:11:50 +0100202void bootblock_mainboard_early_init(void)
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100203{
Nico Huber25128a72019-11-17 01:24:44 +0100204 if (CONFIG(DRIVERS_UART_8250IO))
205 try_enabling_LPC47N207_uart();
206
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100207 setup_sio_gpios();
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200208
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100209 /* Early SuperIO setup */
Elyes HAOUASf5f1b382018-04-26 09:43:03 +0200210 it8772f_ac_resume_southbridge(SUPERIO_DEV);
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100211 ite_kill_watchdog(GPIO_DEV);
212 ite_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200213}