changed dev->enable to dev->enabled. Sorry, I am the only one who can't speak
[coreboot.git] / src / southbridge / amd / amd8111 / amd8111.c
1 #include <console/console.h>
2 #include <device/device.h>
3 #include <device/pci.h>
4 #include <device/pci_ids.h>
5 #include <device/chip.h>
6 #include "amd8111.h"
7
8 void amd8111_enable(device_t dev)
9 {
10         device_t lpc_dev;
11         device_t bus_dev;
12         unsigned index;
13         uint16_t reg_old, reg;
14
15         /* See if we are on the behind the amd8111 pci bridge */
16         bus_dev = dev->bus->dev;
17         if ((bus_dev->vendor == PCI_VENDOR_ID_AMD) && 
18             (bus_dev->device == PCI_DEVICE_ID_AMD_8111_PCI)) {
19                 unsigned devfn;
20                 devfn = bus_dev->path.u.pci.devfn + (1 << 3);
21                 lpc_dev = dev_find_slot(bus_dev->bus->secondary, devfn);
22                 index = ((dev->path.u.pci.devfn & ~7) >> 3) + 8;
23         } else {
24                 unsigned devfn;
25                 devfn = (dev->path.u.pci.devfn) & ~7;
26                 lpc_dev = dev_find_slot(dev->bus->secondary, devfn);
27                 index = dev->path.u.pci.devfn & 7;
28         }
29
30         if ((!lpc_dev) || (index >= 16)) {
31                 return;
32         }
33         if ((lpc_dev->vendor != PCI_VENDOR_ID_AMD) ||
34             (lpc_dev->device != PCI_DEVICE_ID_AMD_8111_ISA)) {
35                 uint32_t id;
36                 id = pci_read_config32(lpc_dev, PCI_VENDOR_ID);
37                 if (id != (PCI_VENDOR_ID_AMD | (PCI_DEVICE_ID_AMD_8111_ISA << 16))) {
38                         return;
39                 }
40         }
41         reg = reg_old = pci_read_config16(lpc_dev, 0x48);
42         reg &= ~(1 << index);
43         if (dev->enabled) {
44                 reg |= (1 << index);
45         }
46         if (reg != reg_old) {
47                 pci_write_config16(lpc_dev, 0x48, reg);
48         }
49 }
50
51 struct chip_control southbridge_amd_amd8111_control = {
52         .name       = "AMD 8111 Southbridge",
53         .enable_dev = amd8111_enable,
54 };