- Major update of the dynamic device tree so it can handle
* subtractive resources * merging with the static device tree * more device types than just pci - The piece to watch out for is the new enable_resources method that was needed in all of the drivers git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1096 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
d4c14524f5
commit
e9a271e32c
25 changed files with 876 additions and 377 deletions
|
|
@ -224,38 +224,38 @@ mainboardinit cpu/k8/disable_mmx_sse.inc
|
|||
dir /pc80
|
||||
|
||||
northbridge amd/amdk8 "mc0"
|
||||
#pci 0:18.0
|
||||
#pci 0:18.0
|
||||
#pci 0:18.0
|
||||
#pci 0:18.1
|
||||
#pci 0:18.2
|
||||
#pci 0:18.3
|
||||
pci 0:18.0
|
||||
pci 0:18.0
|
||||
pci 0:18.0
|
||||
pci 0:18.1
|
||||
pci 0:18.2
|
||||
pci 0:18.3
|
||||
southbridge amd/amd8131 "amd8131"
|
||||
#pci 0:0.0
|
||||
#pci 0:0.1
|
||||
#pci 0:1.0
|
||||
#pci 0:1.1
|
||||
pci 0:0.0
|
||||
pci 0:0.1
|
||||
pci 0:1.0
|
||||
pci 0:1.1
|
||||
end
|
||||
southbridge amd/amd8111 "amd8111"
|
||||
#pci 0:0.0
|
||||
#pci 0:1.0
|
||||
#pci 0:1.1
|
||||
#pci 0:1.2
|
||||
#pci 0:1.3
|
||||
#pci 0:1.5 off
|
||||
#pci 0:1.6 off
|
||||
pci 0:0.0
|
||||
pci 0:1.0
|
||||
pci 0:1.1
|
||||
pci 0:1.2
|
||||
pci 0:1.3
|
||||
pci 0:1.5
|
||||
pci 0:1.6
|
||||
superio NSC/pc87360
|
||||
#pnp 1:2e.0
|
||||
#pnp 1:2e.1
|
||||
#pnp 1:2e.2
|
||||
#pnp 1:2e.3
|
||||
#pnp 1:2e.4
|
||||
#pnp 1:2e.5
|
||||
#pnp 1:2e.6
|
||||
#pnp 1:2e.7
|
||||
#pnp 1:2e.8
|
||||
#pnp 1:2e.9
|
||||
#pnp 1:2e.a
|
||||
pnp 1:2e.0
|
||||
pnp 1:2e.1
|
||||
pnp 1:2e.2
|
||||
pnp 1:2e.3
|
||||
pnp 1:2e.4
|
||||
pnp 1:2e.5
|
||||
pnp 1:2e.6
|
||||
pnp 1:2e.7
|
||||
pnp 1:2e.8
|
||||
pnp 1:2e.9
|
||||
pnp 1:2e.a
|
||||
register "com1" = "{1, 0, 0x3f8, 4}"
|
||||
register "lpt" = "{1}"
|
||||
end
|
||||
|
|
|
|||
|
|
@ -30,10 +30,11 @@ static void ti_firewire_init(struct device *dev)
|
|||
}
|
||||
|
||||
static struct device_operations ti_firewire_ops = {
|
||||
.read_resources = pci_dev_read_resources,
|
||||
.set_resources = pci_dev_set_resources,
|
||||
.init = ti_firewire_init,
|
||||
.scan_bus = 0,
|
||||
.read_resources = pci_dev_read_resources,
|
||||
.set_resources = pci_dev_set_resources,
|
||||
.enable_resources = pci_dev_enable_resources,
|
||||
.init = ti_firewire_init,
|
||||
.scan_bus = 0,
|
||||
};
|
||||
|
||||
static struct pci_driver ti_firewire_driver __pci_driver = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue