8 LYNX_POINT_MOBILE LPVariant
= iota
14 type lynxpoint
struct {
19 func lpPchGetFlashSize(ctx Context
) {
20 inteltool
:= ctx
.InfoSource
.GetInteltool()
21 /* In LP PCH, Boot BIOS Straps field in GCS has only one bit. */
22 switch (inteltool
.RCBA
[0x3410] >> 10) & 1 {
26 for reg
:= uint16(0); reg
< 5; reg
++ {
27 fl
:= (inteltool
.RCBA
[0x3854+4*reg
] >> 16) & 0x1fff
33 ROMSizeKB
= int(highflkb
)
38 func (b lynxpoint
) GetGPIOHeader() string {
39 return "southbridge/intel/lynxpoint/pch.h"
42 func (b lynxpoint
) EnableGPE(in
int) {
43 if b
.variant
!= LYNX_POINT_ULT
{
44 b
.node
.Registers
[fmt
.Sprintf("gpi%d_routing", in
)] = "2"
48 func (b lynxpoint
) EncodeGPE(in
int) int {
52 func (b lynxpoint
) DecodeGPE(in
int) int {
56 func (b lynxpoint
) NeedRouteGPIOManually() {
57 b
.node
.Comment
+= ", FIXME: set gpiX_routing for EC support"
60 func GetLptDesktopEHCISetting(loc_param
uint32, txamp
uint32) (string, int) {
65 port_pos
= "USB_PORT_BACK_PANEL"
68 } else if txamp
>= 4 {
74 port_pos
= "USB_PORT_FLEX"
77 return port_pos
, port_length
80 func GetLptMobileEHCISetting(loc_param
uint32, txamp
uint32) (string, int) {
85 port_pos
= "USB_PORT_DOCK"
91 } else if loc_param
== 6 {
92 /* not internal, not dock, port_length >= 0x70 */
93 port_pos
= "USB_PORT_BACK_PANEL"
100 port_pos
= "USB_PORT_BACK_PANEL"
103 return port_pos
, port_length
106 func GetLptLPEHCISetting(loc_param
uint32, txamp
uint32) (string, int) {
111 /* back panel or mini pcie, length >= 0x70 */
112 port_pos
= "USB_PORT_MINI_PCIE"
118 } else if loc_param
== 4 {
119 port_pos
= "USB_PORT_DOCK"
126 port_pos
= "USB_PORT_BACK_PANEL"
129 return port_pos
, port_length
132 func (b lynxpoint
) Scan(ctx Context
, addr PCIDevData
) {
136 inteltool
:= ctx
.InfoSource
.GetInteltool()
138 isULT
:= (b
.variant
== LYNX_POINT_ULT
)
141 Lynxpoint_LP_GPIO(ctx
, inteltool
)
146 KconfigBool
["SOUTHBRIDGE_INTEL_LYNXPOINT"] = true
148 KconfigBool
["INTEL_LYNXPOINT_LP"] = true
150 KconfigBool
["SERIRQ_CONTINUOUS_MODE"] = true
152 KconfigInt
["USBDEBUG_HCD_INDEX"] = 1
154 KconfigInt
["USBDEBUG_HCD_INDEX"] = 2
155 KconfigComment
["USBDEBUG_HCD_INDEX"] = "FIXME: check this"
159 lpPchGetFlashSize(ctx
)
161 ich9GetFlashSize(ctx
)
164 FADT
:= ctx
.InfoSource
.GetACPI()["FACP"]
166 sp0dtle_data
:= (inteltool
.IOBP
[0xea002750] >> 24) & 0xf
167 sp0dtle_edge
:= (inteltool
.IOBP
[0xea002754] >> 16) & 0xf
168 sp1dtle_data
:= (inteltool
.IOBP
[0xea002550] >> 24) & 0xf
169 sp1dtle_edge
:= (inteltool
.IOBP
[0xea002554] >> 16) & 0xf
171 if sp0dtle_data
!= sp0dtle_edge
{
172 fmt
.Printf("Different SATA Gen3 port0 DTLE data and edge values are used.\n")
175 if sp1dtle_data
!= sp1dtle_edge
{
176 fmt
.Printf("Different SATA Gen3 port1 DTLE data and edge values are used.\n")
180 Chip
: "southbridge/intel/lynxpoint",
181 Comment
: "Intel Series 8 Lynx Point PCH",
183 /* alt_gp_smi_en is not generated because coreboot doesn't use SMI like OEM firmware */
184 Registers
: map[string]string{
185 "gen1_dec": FormatHexLE32(PCIMap
[PCIAddr
{Bus
: 0, Dev
: 0x1f, Func
: 0}].ConfigDump
[0x84:0x88]),
186 "gen2_dec": FormatHexLE32(PCIMap
[PCIAddr
{Bus
: 0, Dev
: 0x1f, Func
: 0}].ConfigDump
[0x88:0x8c]),
187 "gen3_dec": FormatHexLE32(PCIMap
[PCIAddr
{Bus
: 0, Dev
: 0x1f, Func
: 0}].ConfigDump
[0x8c:0x90]),
188 "gen4_dec": FormatHexLE32(PCIMap
[PCIAddr
{Bus
: 0, Dev
: 0x1f, Func
: 0}].ConfigDump
[0x90:0x94]),
189 "sata_port_map": fmt
.Sprintf("0x%x", PCIMap
[PCIAddr
{Bus
: 0, Dev
: 0x1f, Func
: 2}].ConfigDump
[0x92]&0x3f),
190 "docking_supported": (FormatBool((FADT
[113] & (1 << 1)) != 0)),
191 "sata_port0_gen3_dtle": fmt
.Sprintf("0x%x", sp0dtle_data
),
192 "sata_port1_gen3_dtle": fmt
.Sprintf("0x%x", sp1dtle_data
),
195 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x13, Func
: 0}, writeEmpty
: isULT
, additionalComment
: "Smart Sound Audio DSP"},
196 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x14, Func
: 0}, writeEmpty
: true, additionalComment
: "xHCI Controller"},
197 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x15, Func
: 0}, writeEmpty
: isULT
, additionalComment
: "Serial I/O DMA"},
198 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x15, Func
: 1}, writeEmpty
: isULT
, additionalComment
: "I2C0"},
199 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x15, Func
: 2}, writeEmpty
: isULT
, additionalComment
: "I2C1"},
200 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x15, Func
: 3}, writeEmpty
: isULT
, additionalComment
: "GSPI0"},
201 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x15, Func
: 4}, writeEmpty
: isULT
, additionalComment
: "GSPI1"},
202 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x15, Func
: 5}, writeEmpty
: isULT
, additionalComment
: "UART0"},
203 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x15, Func
: 6}, writeEmpty
: isULT
, additionalComment
: "UART1"},
204 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x16, Func
: 0}, writeEmpty
: true, additionalComment
: "Management Engine Interface 1"},
205 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x16, Func
: 1}, writeEmpty
: true, additionalComment
: "Management Engine Interface 2"},
206 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x16, Func
: 2}, writeEmpty
: true, additionalComment
: "Management Engine IDE-R"},
207 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x16, Func
: 3}, writeEmpty
: true, additionalComment
: "Management Engine KT"},
208 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x17, Func
: 0}, writeEmpty
: isULT
, additionalComment
: "SDIO"},
209 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x19, Func
: 0}, writeEmpty
: true, additionalComment
: "Intel Gigabit Ethernet"},
210 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x1a, Func
: 0}, writeEmpty
: !isULT
, additionalComment
: "USB2 EHCI #2"},
211 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x1b, Func
: 0}, writeEmpty
: true, additionalComment
: "High Definition Audio"},
212 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x1c, Func
: 0}, writeEmpty
: true, additionalComment
: "PCIe Port #1"},
213 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x1c, Func
: 1}, writeEmpty
: true, additionalComment
: "PCIe Port #2"},
214 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x1c, Func
: 2}, writeEmpty
: true, additionalComment
: "PCIe Port #3"},
215 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x1c, Func
: 3}, writeEmpty
: true, additionalComment
: "PCIe Port #4"},
216 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x1c, Func
: 4}, writeEmpty
: true, additionalComment
: "PCIe Port #5"},
217 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x1c, Func
: 5}, writeEmpty
: true, additionalComment
: "PCIe Port #6"},
218 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x1c, Func
: 6}, writeEmpty
: !isULT
, additionalComment
: "PCIe Port #7"},
219 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x1c, Func
: 7}, writeEmpty
: !isULT
, additionalComment
: "PCIe Port #8"},
220 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x1d, Func
: 0}, writeEmpty
: true, additionalComment
: "USB2 EHCI #1"},
221 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x1f, Func
: 0}, writeEmpty
: true, additionalComment
: "LPC bridge"},
222 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x1f, Func
: 2}, writeEmpty
: true, additionalComment
: "SATA Controller (AHCI)"},
223 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x1f, Func
: 3}, writeEmpty
: true, additionalComment
: "SMBus"},
224 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x1f, Func
: 5}, writeEmpty
: !isULT
, additionalComment
: "SATA Controller (Legacy)"},
225 PCISlot
{PCIAddr
: PCIAddr
{Dev
: 0x1f, Func
: 6}, writeEmpty
: true, additionalComment
: "Thermal"},
230 cur
.Registers
["gpe0_en_1"] = fmt
.Sprintf("0x%x", inteltool
.PMBASE
[0x90])
231 cur
.Registers
["gpe0_en_2"] = fmt
.Sprintf("0x%x", inteltool
.PMBASE
[0x94])
232 cur
.Registers
["gpe0_en_3"] = fmt
.Sprintf("0x%x", inteltool
.PMBASE
[0x98])
233 cur
.Registers
["gpe0_en_4"] = fmt
.Sprintf("0x%x", inteltool
.PMBASE
[0x9c])
235 cur
.Registers
["gpe0_en_1"] = fmt
.Sprintf("0x%x", inteltool
.PMBASE
[0x28])
236 cur
.Registers
["gpe0_en_2"] = fmt
.Sprintf("0x%x", inteltool
.PMBASE
[0x2c])
241 PutPCIChip(addr
, cur
)
242 PutPCIDevParent(addr
, "", "lpc")
244 DSDTIncludes
= append(DSDTIncludes
, DSDTInclude
{
245 File
: "southbridge/intel/common/acpi/platform.asl",
247 DSDTIncludes
= append(DSDTIncludes
, DSDTInclude
{
248 File
: "southbridge/intel/lynxpoint/acpi/globalnvs.asl",
249 Comment
: "global NVS and variables",
251 DSDTIncludes
= append(DSDTIncludes
, DSDTInclude
{
252 File
: "southbridge/intel/common/acpi/sleepstates.asl",
254 DSDTPCI0Includes
= append(DSDTPCI0Includes
, DSDTInclude
{
255 File
: "southbridge/intel/lynxpoint/acpi/pch.asl",
258 AddBootBlockFile("bootblock.c", "")
259 bb
:= Create(ctx
, "bootblock.c")
262 bb
.WriteString(`#include <southbridge/intel/lynxpoint/pch.h>
264 /* FIXME: remove this if not needed */
265 void mainboard_config_superio(void)
270 sb
:= Create(ctx
, "romstage.c")
273 sb
.WriteString(`#include <stdint.h>
274 #include <northbridge/intel/haswell/haswell.h>
275 #include <southbridge/intel/lynxpoint/pch.h>
277 void mainboard_config_rcba(void)
281 /* FIXME: called after romstage_common, remove it if not used */
282 void mb_late_romstage_setup(void)
286 const struct usb2_port_config mainboard_usb2_ports[MAX_USB2_PORTS] = {
287 /* FIXME: Length and Location are computed from IOBP values, may be inaccurate */
288 /* Length, Enable, OCn#, Location */
291 pdo1
:= PCIMap
[PCIAddr
{Bus
: 0, Dev
: 0x1d, Func
: 0}].ConfigDump
[0x64]
292 ocmap1
:= PCIMap
[PCIAddr
{Bus
: 0, Dev
: 0x1d, Func
: 0}].ConfigDump
[0x74:0x78]
300 pdo2
= PCIMap
[PCIAddr
{Bus
: 0, Dev
: 0x1a, Func
: 0}].ConfigDump
[0x64]
301 ocmap2
= PCIMap
[PCIAddr
{Bus
: 0, Dev
: 0x1a, Func
: 0}].ConfigDump
[0x74:0x78]
305 xusb2pr
:= GetLE16(PCIMap
[PCIAddr
{Bus
: 0, Dev
: 0x14, Func
: 0}].ConfigDump
[0xd0:0xd4])
307 for port
:= uint(0); port
< nPorts
; port
++ {
310 var port_disable
uint8
313 port_disable
= ((pdo1
>> port
) & (uint8(xusb2pr
>>port
) ^ 1)) & 1
314 for oc
:= 0; oc
< 4; oc
++ {
315 if (ocmap1
[oc
] & (1 << port
)) != 0 {
321 port_disable
= ((pdo2
>> (port
- 8)) & (uint8(xusb2pr
>>port
) ^ 1)) & 1
322 for oc
:= 0; oc
< 4; oc
++ {
323 if (ocmap2
[oc
] & (1 << (port
- 8))) != 0 {
330 /* get USB2 port length and location from IOBP */
331 port_iobp
:= inteltool
.IOBP
[0xe5004100+uint32(port
)*0x100]
332 loc_param
:= (port_iobp
>> 8) & 7
333 txamp
:= (port_iobp
>> 11) & 7
337 port_pos
, port_length
= GetLptLPEHCISetting(loc_param
, txamp
)
338 } else if b
.variant
== LYNX_POINT_MOBILE
{
339 port_pos
, port_length
= GetLptMobileEHCISetting(loc_param
, txamp
)
340 } else { /* desktop or server */
341 port_pos
, port_length
= GetLptDesktopEHCISetting(loc_param
, txamp
)
344 if port_disable
== 1 {
345 port_pos
= "USB_PORT_SKIP"
349 fmt
.Fprintf(sb
, "\t{ 0x%04x, %d, USB_OC_PIN_SKIP, %s },\n",
350 port_length
, (port_disable
^ 1), port_pos
)
352 fmt
.Fprintf(sb
, "\t{ 0x%04x, %d, %d, %s },\n",
353 port_length
, (port_disable
^ 1), port_oc
, port_pos
)
359 const struct usb3_port_config mainboard_usb3_ports[MAX_USB3_PORTS] = {
362 xpdo
:= PCIMap
[PCIAddr
{Bus
: 0, Dev
: 0x14, Func
: 0}].ConfigDump
[0xe8]
363 u3ocm
:= PCIMap
[PCIAddr
{Bus
: 0, Dev
: 0x14, Func
: 0}].ConfigDump
[0xc8:0xd0]
371 for port
:= uint(0); port
< nPorts
; port
++ {
373 port_disable
:= (xpdo
>> port
) & 1
374 for oc
:= 0; oc
< 8; oc
++ {
375 if (u3ocm
[oc
] & (1 << port
)) != 0 {
381 fmt
.Fprintf(sb
, "\t{ %d, USB_OC_PIN_SKIP },\n",
384 fmt
.Fprintf(sb
, "\t{ %d, %d },\n",
385 (port_disable
^ 1), port_oc
)
395 for _
, id
:= range []uint16{
396 0x8c41, 0x8c49, 0x8c4b, 0x8c4f,
398 RegisterPCI(0x8086, uint16(id
), lynxpoint
{variant
: LYNX_POINT_MOBILE
})
401 for _
, id
:= range []uint16{
402 0x8c42, 0x8c44, 0x8c46, 0x8c4a,
403 0x8c4c, 0x8c4e, 0x8c50, 0x8c5c,
405 RegisterPCI(0x8086, uint16(id
), lynxpoint
{variant
: LYNX_POINT_DESKTOP
})
408 for _
, id
:= range []uint16{
409 0x8c52, 0x8c54, 0x8c56,
411 RegisterPCI(0x8086, uint16(id
), lynxpoint
{variant
: LYNX_POINT_SERVER
})
414 for _
, id
:= range []uint16{
415 0x9c41, 0x9c43, 0x9c45,
417 RegisterPCI(0x8086, uint16(id
), lynxpoint
{variant
: LYNX_POINT_ULT
})
421 for _
, id
:= range []uint16{
422 0x8c10, 0x8c12, 0x8c14, 0x8c16, 0x8c18, 0x8c1a, 0x8c1c, 0x8c1e,
423 0x9c10, 0x9c12, 0x9c14, 0x9c16, 0x9c18, 0x9c1a,
425 RegisterPCI(0x8086, id
, GenericPCI
{})
428 /* SMBus controller */
429 RegisterPCI(0x8086, 0x8c22, GenericPCI
{MissingParent
: "smbus"})
430 RegisterPCI(0x8086, 0x9c22, GenericPCI
{MissingParent
: "smbus"})
433 for _
, id
:= range []uint16{
434 0x8c00, 0x8c02, 0x8c04, 0x8c06, 0x8c08, 0x8c0e,
435 0x8c01, 0x8c03, 0x8c05, 0x8c07, 0x8c09, 0x8c0f,
436 0x9c03, 0x9c05, 0x9c07, 0x9c0f,
438 RegisterPCI(0x8086, id
, GenericPCI
{})
442 for _
, id
:= range []uint16{
443 0x9c26, 0x8c26, 0x8c2d,
445 RegisterPCI(0x8086, id
, GenericPCI
{})
449 RegisterPCI(0x8086, 0x8c31, GenericPCI
{})
450 RegisterPCI(0x8086, 0x9c31, GenericPCI
{})
452 /* ME and children */
453 for _
, id
:= range []uint16{
454 0x8c3a, 0x8c3b, 0x8c3c, 0x8c3d,
455 0x9c3a, 0x9c3b, 0x9c3c, 0x9c3d,
457 RegisterPCI(0x8086, id
, GenericPCI
{})
461 RegisterPCI(0x8086, 0x8c33, GenericPCI
{})
464 RegisterPCI(0x8086, 0x8c24, GenericPCI
{})
465 RegisterPCI(0x8086, 0x9c24, GenericPCI
{})
467 /* LAN Controller on LP PCH (if EEPROM has 0x0000/0xffff in DID) */
468 RegisterPCI(0x8086, 0x155a, GenericPCI
{})
471 RegisterPCI(0x8086, 0x9c35, GenericPCI
{})
473 /* Smart Sound Technology Controller */
474 RegisterPCI(0x8086, 0x9c36, GenericPCI
{})
477 for id
:= uint16(0x9c60); id
<= 0x9c66; id
++ {
478 RegisterPCI(0x8086, id
, GenericPCI
{})