blob: 3ad212b343944dedf25a2086c9bb757eb71331d9 [file] [log] [blame]
Vladimir Serbinenko3129f792014-10-15 21:51:47 +02001package main
2
3import (
4 "fmt"
5 "os"
6)
7
8type bd82x6x struct {
9 variant string
10 node *DevTreeNode
11}
12
13func (b bd82x6x) writeGPIOSet(ctx Context, sb *os.File,
Arthur Heymans128205fd2017-05-01 09:40:43 +020014 val uint32, set uint, partno int, constraint uint32) {
Vladimir Serbinenko3129f792014-10-15 21:51:47 +020015
16 max := uint(32)
17 if set == 3 {
18 max = 12
19 }
20
21 bits := [6][2]string{
22 {"GPIO_MODE_NATIVE", "GPIO_MODE_GPIO"},
23 {"GPIO_DIR_OUTPUT", "GPIO_DIR_INPUT"},
24 {"GPIO_LEVEL_LOW", "GPIO_LEVEL_HIGH"},
25 {"GPIO_RESET_PWROK", "GPIO_RESET_RSMRST"},
26 {"GPIO_NO_INVERT", "GPIO_INVERT"},
27 {"GPIO_NO_BLINK", "GPIO_BLINK"},
28 }
29
30 for i := uint(0); i < max; i++ {
Arthur Heymans6beaef92019-06-16 23:29:23 +020031 if (constraint>>i)&1 == 1 {
Arthur Heymans128205fd2017-05-01 09:40:43 +020032 fmt.Fprintf(sb, " .gpio%d = %s,\n",
33 (set-1)*32+i,
34 bits[partno][(val>>i)&1])
35 }
Vladimir Serbinenko3129f792014-10-15 21:51:47 +020036 }
37}
38
39func (b bd82x6x) GPIO(ctx Context, inteltool InteltoolData) {
Arthur Heymans128205fd2017-05-01 09:40:43 +020040 var constraint uint32
Vladimir Serbinenko3129f792014-10-15 21:51:47 +020041 gpio := Create(ctx, "gpio.c")
42 defer gpio.Close()
43
Angel Pons6779d232020-01-08 15:05:56 +010044 AddBootBlockFile("gpio.c", "")
Vladimir Serbinenko3129f792014-10-15 21:51:47 +020045 AddROMStageFile("gpio.c", "")
46
Arthur Heymans59302852017-05-01 10:33:56 +020047 Add_gpl(gpio)
Arthur Heymans128205fd2017-05-01 09:40:43 +020048 gpio.WriteString("#include <southbridge/intel/common/gpio.h>\n\n")
Vladimir Serbinenko3129f792014-10-15 21:51:47 +020049
Arthur Heymans128205fd2017-05-01 09:40:43 +020050 addresses := [3][6]int{
Vladimir Serbinenko3129f792014-10-15 21:51:47 +020051 {0x00, 0x04, 0x0c, 0x60, 0x2c, 0x18},
52 {0x30, 0x34, 0x38, 0x64, -1, -1},
53 {0x40, 0x44, 0x48, 0x68, -1, -1},
54 }
55
56 for set := 1; set <= 3; set++ {
57 for partno, part := range []string{"mode", "direction", "level", "reset", "invert", "blink"} {
Arthur Heymans128205fd2017-05-01 09:40:43 +020058 addr := addresses[set-1][partno]
Vladimir Serbinenko3129f792014-10-15 21:51:47 +020059 if addr < 0 {
60 continue
61 }
Arthur Heymans128205fd2017-05-01 09:40:43 +020062 fmt.Fprintf(gpio, "static const struct pch_gpio_set%d pch_gpio_set%d_%s = {\n",
Vladimir Serbinenko3129f792014-10-15 21:51:47 +020063 set, set, part)
64
Arthur Heymans128205fd2017-05-01 09:40:43 +020065 constraint = 0xffffffff
66 switch part {
67 case "direction":
68 /* Ignored on native mode */
69 constraint = inteltool.GPIO[uint16(addresses[set-1][0])]
70 case "level":
71 /* Level doesn't matter for input */
72 constraint = inteltool.GPIO[uint16(addresses[set-1][0])]
73 constraint &^= inteltool.GPIO[uint16(addresses[set-1][1])]
74 case "reset":
75 /* Only show reset */
76 constraint = inteltool.GPIO[uint16(addresses[set-1][3])]
77 case "invert":
78 /* Only on input and only show inverted GPIO */
79 constraint = inteltool.GPIO[uint16(addresses[set-1][0])]
80 constraint &= inteltool.GPIO[uint16(addresses[set-1][1])]
81 constraint &= inteltool.GPIO[uint16(addresses[set-1][4])]
82 case "blink":
83 /* Only on output and only show blinking GPIO */
84 constraint = inteltool.GPIO[uint16(addresses[set-1][0])]
85 constraint &^= inteltool.GPIO[uint16(addresses[set-1][1])]
86 constraint &= inteltool.GPIO[uint16(addresses[set-1][5])]
87 }
88 b.writeGPIOSet(ctx, gpio, inteltool.GPIO[uint16(addr)], uint(set), partno, constraint)
Vladimir Serbinenko3129f792014-10-15 21:51:47 +020089 gpio.WriteString("};\n\n")
90 }
91 }
92
93 gpio.WriteString(`const struct pch_gpio_map mainboard_gpio_map = {
94 .set1 = {
95 .mode = &pch_gpio_set1_mode,
96 .direction = &pch_gpio_set1_direction,
97 .level = &pch_gpio_set1_level,
98 .blink = &pch_gpio_set1_blink,
99 .invert = &pch_gpio_set1_invert,
100 .reset = &pch_gpio_set1_reset,
101 },
102 .set2 = {
103 .mode = &pch_gpio_set2_mode,
104 .direction = &pch_gpio_set2_direction,
105 .level = &pch_gpio_set2_level,
106 .reset = &pch_gpio_set2_reset,
107 },
108 .set3 = {
109 .mode = &pch_gpio_set3_mode,
110 .direction = &pch_gpio_set3_direction,
111 .level = &pch_gpio_set3_level,
112 .reset = &pch_gpio_set3_reset,
113 },
114};
115`)
116}
117
118func (b bd82x6x) IsPCIeHotplug(ctx Context, port int) bool {
119 portDev, ok := PCIMap[PCIAddr{Bus: 0, Dev: 0x1c, Func: port}]
120 if !ok {
121 return false
122 }
123 return (portDev.ConfigDump[0xdb] & (1 << 6)) != 0
124}
125
126func ich9GetFlashSize(ctx Context) {
127 inteltool := ctx.InfoSource.GetInteltool()
128 switch (inteltool.RCBA[0x3410] >> 10) & 3 {
129 /* SPI. All boards I've seen with sandy/ivy use SPI. */
130 case 3:
131 ROMProtocol = "SPI"
132 highflkb := uint32(0)
133 for reg := uint16(0); reg < 5; reg++ {
134 fl := (inteltool.RCBA[0x3854+4*reg] >> 16) & 0x1fff
Vladimir Serbinenko68f5f622015-05-29 21:43:42 +0200135 flkb := (fl + 1) << 2
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200136 if flkb > highflkb {
137 highflkb = flkb
138 }
139 }
140 ROMSizeKB = int(highflkb)
141 /* Shared with ME. Flashrom is unable to handle it. */
142 FlashROMSupport = "n"
143 }
144}
145
146func (b bd82x6x) GetGPIOHeader() string {
147 return "southbridge/intel/bd82x6x/pch.h"
148}
149
150func (b bd82x6x) EnableGPE(in int) {
151 b.node.Registers[fmt.Sprintf("gpi%d_routing", in)] = "2"
152}
153
154func (b bd82x6x) EncodeGPE(in int) int {
155 return in + 0x10
156}
157
158func (b bd82x6x) DecodeGPE(in int) int {
159 return in - 0x10
160}
161
162func (b bd82x6x) NeedRouteGPIOManually() {
163 b.node.Comment += ", FIXME: set gpiX_routing for EC support"
164}
165
166func (b bd82x6x) Scan(ctx Context, addr PCIDevData) {
167
168 SouthBridge = &b
169
170 inteltool := ctx.InfoSource.GetInteltool()
171 b.GPIO(ctx, inteltool)
172
173 KconfigBool["SOUTHBRIDGE_INTEL_"+b.variant] = true
174 KconfigBool["SERIRQ_CONTINUOUS_MODE"] = true
175 KconfigInt["USBDEBUG_HCD_INDEX"] = 2
176 KconfigComment["USBDEBUG_HCD_INDEX"] = "FIXME: check this"
177 dmi := ctx.InfoSource.GetDMI()
178 if dmi.Vendor == "LENOVO" {
179 KconfigInt["DRAM_RESET_GATE_GPIO"] = 10
180 } else {
181 KconfigInt["DRAM_RESET_GATE_GPIO"] = 60
182 }
183 KconfigComment["DRAM_RESET_GATE_GPIO"] = "FIXME: check this"
184
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200185 ich9GetFlashSize(ctx)
186
187 DSDTDefines = append(DSDTDefines,
188 DSDTDefine{
189 Key: "BRIGHTNESS_UP",
190 Value: "\\_SB.PCI0.GFX0.INCB",
191 },
192 DSDTDefine{
193 Key: "BRIGHTNESS_DOWN",
194 Value: "\\_SB.PCI0.GFX0.DECB",
195 },
196 DSDTDefine{
197 Key: "ACPI_VIDEO_DEVICE",
198 Value: "\\_SB.PCI0.GFX0",
199 })
200
201 /* SPI init */
202 MainboardIncludes = append(MainboardIncludes, "southbridge/intel/bd82x6x/pch.h")
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200203
204 FADT := ctx.InfoSource.GetACPI()["FACP"]
205
206 pcieHotplugMap := "{ "
207
208 for port := 0; port < 7; port++ {
209 if b.IsPCIeHotplug(ctx, port) {
210 pcieHotplugMap += "1, "
211 } else {
212 pcieHotplugMap += "0, "
213 }
214 }
215
216 if b.IsPCIeHotplug(ctx, 7) {
217 pcieHotplugMap += "1 }"
218 } else {
219 pcieHotplugMap += "0 }"
220 }
221
222 cur := DevTreeNode{
223 Chip: "southbridge/intel/bd82x6x",
224 Comment: "Intel Series 6 Cougar Point PCH",
225
226 Registers: map[string]string{
227 "sata_interface_speed_support": "0x3",
228 "gen1_dec": FormatHexLE32(PCIMap[PCIAddr{Bus: 0, Dev: 0x1f, Func: 0}].ConfigDump[0x84:0x88]),
229 "gen2_dec": FormatHexLE32(PCIMap[PCIAddr{Bus: 0, Dev: 0x1f, Func: 0}].ConfigDump[0x88:0x8c]),
230 "gen3_dec": FormatHexLE32(PCIMap[PCIAddr{Bus: 0, Dev: 0x1f, Func: 0}].ConfigDump[0x8c:0x90]),
231 "gen4_dec": FormatHexLE32(PCIMap[PCIAddr{Bus: 0, Dev: 0x1f, Func: 0}].ConfigDump[0x90:0x94]),
232 "pcie_port_coalesce": "1",
233 "pcie_hotplug_map": pcieHotplugMap,
234
235 "sata_port_map": fmt.Sprintf("0x%x", PCIMap[PCIAddr{Bus: 0, Dev: 0x1f, Func: 2}].ConfigDump[0x92]&0x3f),
236
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200237 "c2_latency": FormatHexLE16(FADT[96:98]),
238 "docking_supported": (FormatBool((FADT[113] & (1 << 1)) != 0)),
Arthur Heymans6beaef92019-06-16 23:29:23 +0200239 "spi_uvscc": fmt.Sprintf("0x%x", inteltool.RCBA[0x38c8]),
240 "spi_lvscc": fmt.Sprintf("0x%x", inteltool.RCBA[0x38c4]&^(1<<23)),
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200241 },
242 PCISlots: []PCISlot{
243 PCISlot{PCIAddr: PCIAddr{Dev: 0x14, Func: 0}, writeEmpty: false, additionalComment: "USB 3.0 Controller"},
244 PCISlot{PCIAddr: PCIAddr{Dev: 0x16, Func: 0}, writeEmpty: true, additionalComment: "Management Engine Interface 1"},
245 PCISlot{PCIAddr: PCIAddr{Dev: 0x16, Func: 1}, writeEmpty: true, additionalComment: "Management Engine Interface 2"},
246 PCISlot{PCIAddr: PCIAddr{Dev: 0x16, Func: 2}, writeEmpty: true, additionalComment: "Management Engine IDE-R"},
247 PCISlot{PCIAddr: PCIAddr{Dev: 0x16, Func: 3}, writeEmpty: true, additionalComment: "Management Engine KT"},
248 PCISlot{PCIAddr: PCIAddr{Dev: 0x19, Func: 0}, writeEmpty: true, additionalComment: "Intel Gigabit Ethernet"},
249 PCISlot{PCIAddr: PCIAddr{Dev: 0x1a, Func: 0}, writeEmpty: true, additionalComment: "USB2 EHCI #2"},
250 PCISlot{PCIAddr: PCIAddr{Dev: 0x1b, Func: 0}, writeEmpty: true, additionalComment: "High Definition Audio"},
251 PCISlot{PCIAddr: PCIAddr{Dev: 0x1c, Func: 0}, writeEmpty: true, additionalComment: "PCIe Port #1"},
252 PCISlot{PCIAddr: PCIAddr{Dev: 0x1c, Func: 1}, writeEmpty: true, additionalComment: "PCIe Port #2"},
253 PCISlot{PCIAddr: PCIAddr{Dev: 0x1c, Func: 2}, writeEmpty: true, additionalComment: "PCIe Port #3"},
254 PCISlot{PCIAddr: PCIAddr{Dev: 0x1c, Func: 3}, writeEmpty: true, additionalComment: "PCIe Port #4"},
255 PCISlot{PCIAddr: PCIAddr{Dev: 0x1c, Func: 4}, writeEmpty: true, additionalComment: "PCIe Port #5"},
256 PCISlot{PCIAddr: PCIAddr{Dev: 0x1c, Func: 5}, writeEmpty: true, additionalComment: "PCIe Port #6"},
257 PCISlot{PCIAddr: PCIAddr{Dev: 0x1c, Func: 6}, writeEmpty: true, additionalComment: "PCIe Port #7"},
258 PCISlot{PCIAddr: PCIAddr{Dev: 0x1c, Func: 7}, writeEmpty: true, additionalComment: "PCIe Port #8"},
259 PCISlot{PCIAddr: PCIAddr{Dev: 0x1d, Func: 0}, writeEmpty: true, additionalComment: "USB2 EHCI #1"},
260 PCISlot{PCIAddr: PCIAddr{Dev: 0x1e, Func: 0}, writeEmpty: true, additionalComment: "PCI bridge"},
261 PCISlot{PCIAddr: PCIAddr{Dev: 0x1f, Func: 0}, writeEmpty: true, additionalComment: "LPC bridge"},
262 PCISlot{PCIAddr: PCIAddr{Dev: 0x1f, Func: 2}, writeEmpty: true, additionalComment: "SATA Controller 1"},
263 PCISlot{PCIAddr: PCIAddr{Dev: 0x1f, Func: 3}, writeEmpty: true, additionalComment: "SMBus"},
264 PCISlot{PCIAddr: PCIAddr{Dev: 0x1f, Func: 5}, writeEmpty: true, additionalComment: "SATA Controller 2"},
265 PCISlot{PCIAddr: PCIAddr{Dev: 0x1f, Func: 6}, writeEmpty: true, additionalComment: "Thermal"},
266 },
267 }
268
269 b.node = &cur
270
271 xhciDev, ok := PCIMap[PCIAddr{Bus: 0, Dev: 0x14, Func: 0}]
272
273 if ok {
274 cur.Registers["xhci_switchable_ports"] = FormatHexLE32(xhciDev.ConfigDump[0xd4:0xd8])
275 cur.Registers["superspeed_capable_ports"] = FormatHexLE32(xhciDev.ConfigDump[0xdc:0xe0])
276 cur.Registers["xhci_overcurrent_mapping"] = FormatHexLE32(xhciDev.ConfigDump[0xc0:0xc4])
277 }
278
279 PutPCIChip(addr, cur)
280 PutPCIDevParent(addr, "PCI-LPC bridge", "lpc")
281
282 DSDTIncludes = append(DSDTIncludes, DSDTInclude{
Angel Pons6779d232020-01-08 15:05:56 +0100283 File: "southbridge/intel/common/acpi/platform.asl",
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200284 })
285 DSDTIncludes = append(DSDTIncludes, DSDTInclude{
Angel Pons6779d232020-01-08 15:05:56 +0100286 File: "southbridge/intel/bd82x6x/acpi/globalnvs.asl",
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200287 })
288 DSDTIncludes = append(DSDTIncludes, DSDTInclude{
Angel Pons6779d232020-01-08 15:05:56 +0100289 File: "southbridge/intel/common/acpi/sleepstates.asl",
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200290 })
291 DSDTPCI0Includes = append(DSDTPCI0Includes, DSDTInclude{
292 File: "southbridge/intel/bd82x6x/acpi/pch.asl",
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200293 })
294
Angel Pons6779d232020-01-08 15:05:56 +0100295 AddBootBlockFile("early_init.c", "")
296 AddROMStageFile("early_init.c", "")
297
298 sb := Create(ctx, "early_init.c")
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200299 defer sb.Close()
Arthur Heymans59302852017-05-01 10:33:56 +0200300 Add_gpl(sb)
Angel Pons9b1ae442019-03-16 16:12:21 +0100301 sb.WriteString(`/* FIXME: Check if all includes are needed. */
302
303#include <stdint.h>
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200304#include <string.h>
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200305#include <timestamp.h>
306#include <arch/byteorder.h>
Angel Pons9b1ae442019-03-16 16:12:21 +0100307#include <device/mmio.h>
308#include <device/pci_ops.h>
309#include <device/pnp_ops.h>
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200310#include <console/console.h>
Angel Pons6779d232020-01-08 15:05:56 +0100311#include <bootblock_common.h>
Angel Pons1b252fc2019-01-16 21:24:59 +0100312#include <northbridge/intel/sandybridge/sandybridge.h>
313#include <northbridge/intel/sandybridge/raminit_native.h>
314#include <southbridge/intel/bd82x6x/pch.h>
Stefan Reinauereb960f12016-02-17 16:34:02 -0800315#include <southbridge/intel/common/gpio.h>
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200316
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200317`)
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200318 sb.WriteString("const struct southbridge_usb_port mainboard_usb_ports[] = {\n")
319
320 currentMap := map[uint32]int{
321 0x20000153: 0,
322 0x20000f57: 1,
323 0x2000055b: 2,
324 0x20000f51: 3,
325 0x2000094a: 4,
326 }
327
328 for port := uint(0); port < 14; port++ {
329 var pinmask uint32
330 OCPin := -1
331 if port < 8 {
332 pinmask = inteltool.RCBA[0x35a0]
333 } else {
334 pinmask = inteltool.RCBA[0x35a4]
335 }
336 for pin := uint(0); pin < 4; pin++ {
337 if ((pinmask >> ((port % 8) + 8*pin)) & 1) != 0 {
338 OCPin = int(pin)
339 if port >= 8 {
340 OCPin += 4
341 }
342 }
343 }
344 fmt.Fprintf(sb, "\t{ %d, %d, %d },\n",
345 ((inteltool.RCBA[0x359c]>>port)&1)^1,
346 currentMap[inteltool.RCBA[uint16(0x3500+4*port)]],
347 OCPin)
348 }
349 sb.WriteString("};\n")
350
351 guessedMap := GuessSPDMap(ctx)
352
353 sb.WriteString(`
Angel Pons6779d232020-01-08 15:05:56 +0100354void bootblock_mainboard_early_init(void)
Vladimir Serbinenko609bd942016-01-31 14:00:54 +0100355{
Angel Pons6779d232020-01-08 15:05:56 +0100356`)
357 RestorePCI16Simple(sb, addr, 0x82)
Vladimir Serbinenko609bd942016-01-31 14:00:54 +0100358
Angel Pons6779d232020-01-08 15:05:56 +0100359 RestorePCI16Simple(sb, addr, 0x80)
360
361 sb.WriteString(`}
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100362
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200363/* FIXME: Put proper SPD map here. */
Kyösti Mälkki40156082016-12-04 11:17:07 +0200364void mainboard_get_spd(spd_raw_data *spd, bool id_only)
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200365{
366`)
367 for i, spd := range guessedMap {
Kyösti Mälkki40156082016-12-04 11:17:07 +0200368 fmt.Fprintf(sb, "\tread_spd(&spd[%d], 0x%02x, id_only);\n", i, spd)
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200369 }
370 sb.WriteString("}\n")
371
Iru Cai1e2676b2019-01-12 21:05:10 +0800372 gnvs := Create(ctx, "acpi_tables.c")
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200373 defer gnvs.Close()
374
Arthur Heymans59302852017-05-01 10:33:56 +0200375 Add_gpl(gnvs)
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200376 gnvs.WriteString(`#include <southbridge/intel/bd82x6x/nvs.h>
377
378/* FIXME: check this function. */
379void acpi_create_gnvs(global_nvs_t *gnvs)
380{
381 /* Disable USB ports in S3 by default */
382 gnvs->s3u0 = 0;
383 gnvs->s3u1 = 0;
384
385 /* Disable USB ports in S5 by default */
386 gnvs->s5u0 = 0;
387 gnvs->s5u1 = 0;
388
Angel Pons6779d232020-01-08 15:05:56 +0100389 /* The lid is open by default. */
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200390 gnvs->lids = 1;
391
392 gnvs->tcrt = 100;
393 gnvs->tpsv = 90;
394}
395`)
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200396}
397
398func init() {
399 /* BD82X6X LPC */
Vladimir Serbinenko42d55e02016-01-02 01:47:26 +0100400 for id := 0x1c40; id <= 0x1c5f; id++ {
Vladimir Serbinenko6b2d83c2016-01-11 18:43:25 +0100401 RegisterPCI(0x8086, uint16(id), bd82x6x{variant: "BD82X6X"})
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200402 }
403
404 /* C216 LPC */
Vladimir Serbinenko42d55e02016-01-02 01:47:26 +0100405 for id := 0x1e41; id <= 0x1e5f; id++ {
Vladimir Serbinenko6b2d83c2016-01-11 18:43:25 +0100406 RegisterPCI(0x8086, uint16(id), bd82x6x{variant: "C216"})
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200407 }
408
409 /* PCIe bridge */
410 for _, id := range []uint16{
Angel Pons8296fdd2019-02-10 19:52:51 +0100411 0x1c10, 0x1c12, 0x1c14, 0x1c16,
412 0x1c18, 0x1c1a, 0x1c1c, 0x1c1e,
413 0x1e10, 0x1e12, 0x1e14, 0x1e16,
414 0x1e18, 0x1e1a, 0x1e1c, 0x1e1e,
415 0x1e25, 0x244e, 0x2448,
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200416 } {
417 RegisterPCI(0x8086, id, GenericPCI{})
418 }
419
420 /* SMBus controller */
421 RegisterPCI(0x8086, 0x1c22, GenericPCI{MissingParent: "smbus"})
422 RegisterPCI(0x8086, 0x1e22, GenericPCI{MissingParent: "smbus"})
423
424 /* SATA */
425 for _, id := range []uint16{
426 0x1c00, 0x1c01, 0x1c02, 0x1c03,
427 0x1e00, 0x1e01, 0x1e02, 0x1e03,
428 } {
429 RegisterPCI(0x8086, id, GenericPCI{})
430 }
431
432 /* EHCI */
433 for _, id := range []uint16{
434 0x1c26, 0x1c2d, 0x1e26, 0x1e2d,
435 } {
436 RegisterPCI(0x8086, id, GenericPCI{})
437 }
438
439 /* XHCI */
440 RegisterPCI(0x8086, 0x1e31, GenericPCI{})
441
442 /* ME and children */
443 for _, id := range []uint16{
444 0x1c3a, 0x1c3b, 0x1c3c, 0x1c3d,
445 0x1e3a, 0x1e3b, 0x1e3c, 0x1e3d,
446 } {
447 RegisterPCI(0x8086, id, GenericPCI{})
448 }
449
450 /* Ethernet */
451 RegisterPCI(0x8086, 0x1502, GenericPCI{})
Dan Elkouby3781e1f2018-03-24 21:15:08 +0300452 RegisterPCI(0x8086, 0x1503, GenericPCI{})
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200453
454}