blob: e2dc827f1dc8b8f80082064656f99150a8fc5df1 [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",
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200195 })
196
197 /* SPI init */
198 MainboardIncludes = append(MainboardIncludes, "southbridge/intel/bd82x6x/pch.h")
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200199
200 FADT := ctx.InfoSource.GetACPI()["FACP"]
201
202 pcieHotplugMap := "{ "
203
204 for port := 0; port < 7; port++ {
205 if b.IsPCIeHotplug(ctx, port) {
206 pcieHotplugMap += "1, "
207 } else {
208 pcieHotplugMap += "0, "
209 }
210 }
211
212 if b.IsPCIeHotplug(ctx, 7) {
213 pcieHotplugMap += "1 }"
214 } else {
215 pcieHotplugMap += "0 }"
216 }
217
218 cur := DevTreeNode{
219 Chip: "southbridge/intel/bd82x6x",
220 Comment: "Intel Series 6 Cougar Point PCH",
221
222 Registers: map[string]string{
223 "sata_interface_speed_support": "0x3",
224 "gen1_dec": FormatHexLE32(PCIMap[PCIAddr{Bus: 0, Dev: 0x1f, Func: 0}].ConfigDump[0x84:0x88]),
225 "gen2_dec": FormatHexLE32(PCIMap[PCIAddr{Bus: 0, Dev: 0x1f, Func: 0}].ConfigDump[0x88:0x8c]),
226 "gen3_dec": FormatHexLE32(PCIMap[PCIAddr{Bus: 0, Dev: 0x1f, Func: 0}].ConfigDump[0x8c:0x90]),
227 "gen4_dec": FormatHexLE32(PCIMap[PCIAddr{Bus: 0, Dev: 0x1f, Func: 0}].ConfigDump[0x90:0x94]),
228 "pcie_port_coalesce": "1",
229 "pcie_hotplug_map": pcieHotplugMap,
230
231 "sata_port_map": fmt.Sprintf("0x%x", PCIMap[PCIAddr{Bus: 0, Dev: 0x1f, Func: 2}].ConfigDump[0x92]&0x3f),
232
Arthur Heymansbc3261f2023-01-30 13:32:44 +0100233 "docking_supported": (FormatBool((FADT[113] & (1 << 1)) != 0)),
234 "spi_uvscc": fmt.Sprintf("0x%x", inteltool.RCBA[0x38c8]),
235 "spi_lvscc": fmt.Sprintf("0x%x", inteltool.RCBA[0x38c4]&^(1<<23)),
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200236 },
237 PCISlots: []PCISlot{
Arthur Heymansbc3261f2023-01-30 13:32:44 +0100238 PCISlot{PCIAddr: PCIAddr{Dev: 0x14, Func: 0}, writeEmpty: false, alias: "xhci", additionalComment: "USB 3.0 Controller"},
239 PCISlot{PCIAddr: PCIAddr{Dev: 0x16, Func: 0}, writeEmpty: true, alias: "mei1", additionalComment: "Management Engine Interface 1"},
240 PCISlot{PCIAddr: PCIAddr{Dev: 0x16, Func: 1}, writeEmpty: true, alias: "mei2", additionalComment: "Management Engine Interface 2"},
241 PCISlot{PCIAddr: PCIAddr{Dev: 0x16, Func: 2}, writeEmpty: true, alias: "me_ide_r", additionalComment: "Management Engine IDE-R"},
242 PCISlot{PCIAddr: PCIAddr{Dev: 0x16, Func: 3}, writeEmpty: true, alias: "me_kt", additionalComment: "Management Engine KT"},
243 PCISlot{PCIAddr: PCIAddr{Dev: 0x19, Func: 0}, writeEmpty: true, alias: "gbe", additionalComment: "Intel Gigabit Ethernet"},
Iru Cai9874b1a2023-02-12 08:42:24 +0800244 PCISlot{PCIAddr: PCIAddr{Dev: 0x1a, Func: 0}, writeEmpty: true, alias: "ehci2", additionalComment: "USB2 EHCI #2"},
Arthur Heymansbc3261f2023-01-30 13:32:44 +0100245 PCISlot{PCIAddr: PCIAddr{Dev: 0x1b, Func: 0}, writeEmpty: true, alias: "hda", additionalComment: "High Definition Audio"},
246 PCISlot{PCIAddr: PCIAddr{Dev: 0x1c, Func: 0}, writeEmpty: true, alias: "pcie_rp1", additionalComment: "PCIe Port #1"},
247 PCISlot{PCIAddr: PCIAddr{Dev: 0x1c, Func: 1}, writeEmpty: true, alias: "pcie_rp2", additionalComment: "PCIe Port #2"},
248 PCISlot{PCIAddr: PCIAddr{Dev: 0x1c, Func: 2}, writeEmpty: true, alias: "pcie_rp3", additionalComment: "PCIe Port #3"},
249 PCISlot{PCIAddr: PCIAddr{Dev: 0x1c, Func: 3}, writeEmpty: true, alias: "pcie_rp4", additionalComment: "PCIe Port #4"},
250 PCISlot{PCIAddr: PCIAddr{Dev: 0x1c, Func: 4}, writeEmpty: true, alias: "pcie_rp5", additionalComment: "PCIe Port #5"},
251 PCISlot{PCIAddr: PCIAddr{Dev: 0x1c, Func: 5}, writeEmpty: true, alias: "pcie_rp6", additionalComment: "PCIe Port #6"},
252 PCISlot{PCIAddr: PCIAddr{Dev: 0x1c, Func: 6}, writeEmpty: true, alias: "pcie_rp7", additionalComment: "PCIe Port #7"},
253 PCISlot{PCIAddr: PCIAddr{Dev: 0x1c, Func: 7}, writeEmpty: true, alias: "pcie_rp8", additionalComment: "PCIe Port #8"},
254 PCISlot{PCIAddr: PCIAddr{Dev: 0x1d, Func: 0}, writeEmpty: true, alias: "ehci1", additionalComment: "USB2 EHCI #1"},
255 PCISlot{PCIAddr: PCIAddr{Dev: 0x1e, Func: 0}, writeEmpty: true, alias: "pci_bridge", additionalComment: "PCI bridge"},
256 PCISlot{PCIAddr: PCIAddr{Dev: 0x1f, Func: 0}, writeEmpty: true, alias: "lpc", additionalComment: "LPC bridge"},
257 PCISlot{PCIAddr: PCIAddr{Dev: 0x1f, Func: 2}, writeEmpty: true, alias: "sata1", additionalComment: "SATA Controller 1"},
258 PCISlot{PCIAddr: PCIAddr{Dev: 0x1f, Func: 3}, writeEmpty: true, alias: "smbus", additionalComment: "SMBus"},
259 PCISlot{PCIAddr: PCIAddr{Dev: 0x1f, Func: 5}, writeEmpty: true, alias: "sata2", additionalComment: "SATA Controller 2"},
260 PCISlot{PCIAddr: PCIAddr{Dev: 0x1f, Func: 6}, writeEmpty: true, alias: "thermal", additionalComment: "Thermal"},
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200261 },
262 }
263
264 b.node = &cur
265
266 xhciDev, ok := PCIMap[PCIAddr{Bus: 0, Dev: 0x14, Func: 0}]
267
268 if ok {
269 cur.Registers["xhci_switchable_ports"] = FormatHexLE32(xhciDev.ConfigDump[0xd4:0xd8])
270 cur.Registers["superspeed_capable_ports"] = FormatHexLE32(xhciDev.ConfigDump[0xdc:0xe0])
271 cur.Registers["xhci_overcurrent_mapping"] = FormatHexLE32(xhciDev.ConfigDump[0xc0:0xc4])
272 }
273
274 PutPCIChip(addr, cur)
Angel Pons447e3392020-03-05 00:32:02 +0100275 PutPCIDevParent(addr, "", "lpc")
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200276
277 DSDTIncludes = append(DSDTIncludes, DSDTInclude{
Angel Pons6779d232020-01-08 15:05:56 +0100278 File: "southbridge/intel/common/acpi/platform.asl",
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200279 })
280 DSDTIncludes = append(DSDTIncludes, DSDTInclude{
Arthur Heymansbc3261f2023-01-30 13:32:44 +0100281 File: "southbridge/intel/bd82x6x/acpi/globalnvs.asl",
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200282 })
283 DSDTIncludes = append(DSDTIncludes, DSDTInclude{
Angel Pons6779d232020-01-08 15:05:56 +0100284 File: "southbridge/intel/common/acpi/sleepstates.asl",
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200285 })
286 DSDTPCI0Includes = append(DSDTPCI0Includes, DSDTInclude{
287 File: "southbridge/intel/bd82x6x/acpi/pch.asl",
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200288 })
289
Angel Pons6779d232020-01-08 15:05:56 +0100290 AddBootBlockFile("early_init.c", "")
291 AddROMStageFile("early_init.c", "")
292
293 sb := Create(ctx, "early_init.c")
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200294 defer sb.Close()
Arthur Heymans59302852017-05-01 10:33:56 +0200295 Add_gpl(sb)
Angel Pons9b1ae442019-03-16 16:12:21 +0100296
Elyes HAOUASe65280c2020-07-19 09:01:46 +0200297 sb.WriteString(`
Angel Pons6779d232020-01-08 15:05:56 +0100298#include <bootblock_common.h>
Nicholas Chin87e0b5b2021-10-09 14:11:42 -0600299#include <device/pci_ops.h>
Angel Pons1b252fc2019-01-16 21:24:59 +0100300#include <northbridge/intel/sandybridge/raminit_native.h>
301#include <southbridge/intel/bd82x6x/pch.h>
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200302
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200303`)
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200304 sb.WriteString("const struct southbridge_usb_port mainboard_usb_ports[] = {\n")
305
306 currentMap := map[uint32]int{
307 0x20000153: 0,
308 0x20000f57: 1,
309 0x2000055b: 2,
310 0x20000f51: 3,
311 0x2000094a: 4,
Patrick Rudolphd323d842023-10-29 19:59:56 +0100312 0x2000035f: 5,
313 0x20000f53: 6,
Keith Hui51a01bd2024-05-31 22:40:22 -0400314 0x20000f5b: 7,
315 0x20000553: 9,
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200316 }
317
318 for port := uint(0); port < 14; port++ {
319 var pinmask uint32
320 OCPin := -1
321 if port < 8 {
322 pinmask = inteltool.RCBA[0x35a0]
323 } else {
324 pinmask = inteltool.RCBA[0x35a4]
325 }
326 for pin := uint(0); pin < 4; pin++ {
327 if ((pinmask >> ((port % 8) + 8*pin)) & 1) != 0 {
328 OCPin = int(pin)
329 if port >= 8 {
330 OCPin += 4
331 }
332 }
333 }
Patrick Rudolphd323d842023-10-29 19:59:56 +0100334 current, ok := currentMap[inteltool.RCBA[uint16(0x3500+4*port)]]
335 comment := ""
336 if !ok {
337 comment = fmt.Sprintf("// FIXME: Unknown current: RCBA(0x%x)=0x%x", 0x3500+4*port, uint16(0x3500+4*port))
338 }
339 fmt.Fprintf(sb, "\t{ %d, %d, %d }, %s\n",
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200340 ((inteltool.RCBA[0x359c]>>port)&1)^1,
Patrick Rudolphd323d842023-10-29 19:59:56 +0100341 current,
342 OCPin,
343 comment)
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200344 }
345 sb.WriteString("};\n")
346
347 guessedMap := GuessSPDMap(ctx)
348
349 sb.WriteString(`
Angel Pons6779d232020-01-08 15:05:56 +0100350void bootblock_mainboard_early_init(void)
Vladimir Serbinenko609bd942016-01-31 14:00:54 +0100351{
Angel Pons6779d232020-01-08 15:05:56 +0100352`)
353 RestorePCI16Simple(sb, addr, 0x82)
Vladimir Serbinenko609bd942016-01-31 14:00:54 +0100354
Angel Pons6779d232020-01-08 15:05:56 +0100355 RestorePCI16Simple(sb, addr, 0x80)
356
357 sb.WriteString(`}
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100358
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200359/* FIXME: Put proper SPD map here. */
Kyösti Mälkki40156082016-12-04 11:17:07 +0200360void mainboard_get_spd(spd_raw_data *spd, bool id_only)
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200361{
362`)
363 for i, spd := range guessedMap {
Kyösti Mälkki40156082016-12-04 11:17:07 +0200364 fmt.Fprintf(sb, "\tread_spd(&spd[%d], 0x%02x, id_only);\n", i, spd)
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200365 }
366 sb.WriteString("}\n")
367
Iru Cai1e2676b2019-01-12 21:05:10 +0800368 gnvs := Create(ctx, "acpi_tables.c")
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200369 defer gnvs.Close()
370
Arthur Heymans59302852017-05-01 10:33:56 +0200371 Add_gpl(gnvs)
Kyösti Mälkki732eaf22021-01-08 07:25:47 +0200372 gnvs.WriteString(`#include <acpi/acpi_gnvs.h>
Nicholas Chin87e0b5b2021-10-09 14:11:42 -0600373#include <soc/nvs.h>
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200374
375/* FIXME: check this function. */
Kyösti Mälkki732eaf22021-01-08 07:25:47 +0200376void mainboard_fill_gnvs(struct global_nvs *gnvs)
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200377{
Angel Pons6779d232020-01-08 15:05:56 +0100378 /* The lid is open by default. */
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200379 gnvs->lids = 1;
380
Peter Lemenkovf04b2622020-04-17 10:36:41 +0200381 /* Temperature at which OS will shutdown */
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200382 gnvs->tcrt = 100;
Peter Lemenkovf04b2622020-04-17 10:36:41 +0200383 /* Temperature at which OS will throttle CPU */
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200384 gnvs->tpsv = 90;
385}
386`)
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200387}
388
389func init() {
390 /* BD82X6X LPC */
Vladimir Serbinenko42d55e02016-01-02 01:47:26 +0100391 for id := 0x1c40; id <= 0x1c5f; id++ {
Vladimir Serbinenko6b2d83c2016-01-11 18:43:25 +0100392 RegisterPCI(0x8086, uint16(id), bd82x6x{variant: "BD82X6X"})
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200393 }
394
395 /* C216 LPC */
Vladimir Serbinenko42d55e02016-01-02 01:47:26 +0100396 for id := 0x1e41; id <= 0x1e5f; id++ {
Vladimir Serbinenko6b2d83c2016-01-11 18:43:25 +0100397 RegisterPCI(0x8086, uint16(id), bd82x6x{variant: "C216"})
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200398 }
399
400 /* PCIe bridge */
401 for _, id := range []uint16{
Angel Pons8296fdd2019-02-10 19:52:51 +0100402 0x1c10, 0x1c12, 0x1c14, 0x1c16,
403 0x1c18, 0x1c1a, 0x1c1c, 0x1c1e,
404 0x1e10, 0x1e12, 0x1e14, 0x1e16,
405 0x1e18, 0x1e1a, 0x1e1c, 0x1e1e,
406 0x1e25, 0x244e, 0x2448,
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200407 } {
408 RegisterPCI(0x8086, id, GenericPCI{})
409 }
410
411 /* SMBus controller */
412 RegisterPCI(0x8086, 0x1c22, GenericPCI{MissingParent: "smbus"})
413 RegisterPCI(0x8086, 0x1e22, GenericPCI{MissingParent: "smbus"})
414
415 /* SATA */
416 for _, id := range []uint16{
417 0x1c00, 0x1c01, 0x1c02, 0x1c03,
418 0x1e00, 0x1e01, 0x1e02, 0x1e03,
419 } {
420 RegisterPCI(0x8086, id, GenericPCI{})
421 }
422
423 /* EHCI */
424 for _, id := range []uint16{
425 0x1c26, 0x1c2d, 0x1e26, 0x1e2d,
426 } {
427 RegisterPCI(0x8086, id, GenericPCI{})
428 }
429
430 /* XHCI */
431 RegisterPCI(0x8086, 0x1e31, GenericPCI{})
432
433 /* ME and children */
434 for _, id := range []uint16{
435 0x1c3a, 0x1c3b, 0x1c3c, 0x1c3d,
436 0x1e3a, 0x1e3b, 0x1e3c, 0x1e3d,
437 } {
438 RegisterPCI(0x8086, id, GenericPCI{})
439 }
440
441 /* Ethernet */
442 RegisterPCI(0x8086, 0x1502, GenericPCI{})
Dan Elkouby3781e1f2018-03-24 21:15:08 +0300443 RegisterPCI(0x8086, 0x1503, GenericPCI{})
Vladimir Serbinenko3129f792014-10-15 21:51:47 +0200444
445}