util/sconfig: Remove unused ioapic and irq keywords
[coreboot.git] / src / southbridge / intel / i82801dx / i82801dx.c
blobea906561a629cbd6b3469bfd9d5338e67025a4d0
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <device/device.h>
4 #include <device/pci.h>
5 #include <device/pci_ops.h>
6 #include <stdint.h>
8 #include "i82801dx.h"
10 void i82801dx_enable(struct device *dev)
12 unsigned int index = 0;
13 uint8_t bHasDisableBit = 0;
14 uint16_t cur_disable_mask, new_disable_mask;
16 // all 82801dbm devices are in bus 0
17 unsigned int devfn = PCI_DEVFN(0x1f, 0); // lpc
18 struct device *lpc_dev = pcidev_path_on_root(devfn); // 0
19 if (!lpc_dev)
20 return;
22 // Calculate disable bit position for specified device:function
23 // NOTE: For ICH-4, only the following devices can be disabled:
24 // D31: F0, F1, F3, F5, F6,
25 // D29: F0, F1, F2, F7
27 if (PCI_SLOT(dev->path.pci.devfn) == 31) {
28 index = PCI_FUNC(dev->path.pci.devfn);
30 switch (index) {
31 case 0:
32 case 1:
33 case 3:
34 case 5:
35 case 6:
36 bHasDisableBit = 1;
37 break;
39 default:
40 break;
43 if (index == 0)
44 index = 14; // D31:F0 bit is an exception
46 } else if (PCI_SLOT(dev->path.pci.devfn) == 29) {
47 index = 8 + PCI_FUNC(dev->path.pci.devfn);
49 if ((PCI_FUNC(dev->path.pci.devfn) < 3)
50 || (PCI_FUNC(dev->path.pci.devfn) == 7))
51 bHasDisableBit = 1;
54 if (bHasDisableBit) {
55 cur_disable_mask = pci_read_config16(lpc_dev, FUNC_DIS);
56 new_disable_mask = cur_disable_mask & ~(1 << index); // enable it
57 if (!dev->enabled) {
58 new_disable_mask |= (1 << index); // disable it
60 if (new_disable_mask != cur_disable_mask) {
61 pci_write_config16(lpc_dev, FUNC_DIS, new_disable_mask);
66 struct chip_operations southbridge_intel_i82801dx_ops = {
67 CHIP_NAME("Intel ICH4/ICH4-M (82801Dx) Series Southbridge")
68 .enable_dev = i82801dx_enable,