4aff4458f5
The name pci_domain was a bit misleading, since the construct is only PCI specific in a particular (northbridge/cpu) implementation, but not by concept. As implementations and hardware change, be more generic about our naming. This will allow us to support non-PCI systems without adding new keywords. Change-Id: Ide885a1d5e15d37560c79b936a39252150560e85 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/2376 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
55 lines
1.7 KiB
Text
55 lines
1.7 KiB
Text
chip northbridge/intel/i440bx # Northbridge
|
|
device lapic_cluster 0 on # APIC cluster
|
|
chip cpu/intel/slot_1 # CPU
|
|
device lapic 0 on end # APIC
|
|
end
|
|
end
|
|
device domain 0 on # PCI domain
|
|
device pci 0.0 on end # Host bridge
|
|
device pci 1.0 on end # PCI/AGP bridge
|
|
chip southbridge/intel/i82371eb # Southbridge
|
|
device pci 7.0 on # ISA bridge
|
|
chip superio/nsc/pc87309 # Super I/O
|
|
device pnp 2e.0 on # Floppy
|
|
io 0x60 = 0x3f0
|
|
irq 0x70 = 6
|
|
drq 0x74 = 2
|
|
end
|
|
device pnp 2e.1 on # Parallel port
|
|
io 0x60 = 0x378
|
|
irq 0x70 = 7
|
|
end
|
|
device pnp 2e.2 on # COM2 / IR
|
|
io 0x60 = 0x2f8
|
|
irq 0x70 = 3
|
|
end
|
|
device pnp 2e.3 on # COM1
|
|
io 0x60 = 0x3f8
|
|
irq 0x70 = 4
|
|
end
|
|
device pnp 2e.4 on # Power management
|
|
end
|
|
device pnp 2e.5 on # PS/2 mouse
|
|
irq 0x70 = 12
|
|
end
|
|
device pnp 2e.6 on # PS/2 keyboard
|
|
io 0x60 = 0x60
|
|
io 0x62 = 0x64
|
|
irq 0x70 = 1
|
|
end
|
|
end
|
|
end
|
|
device pci 7.1 on end # IDE
|
|
device pci 7.2 on end # USB
|
|
device pci 7.3 on end # ACPI
|
|
register "ide0_enable" = "1"
|
|
register "ide1_enable" = "1"
|
|
register "ide_legacy_enable" = "1"
|
|
# Enable UDMA/33 for higher speed if your IDE device(s) support it.
|
|
register "ide0_drive0_udma33_enable" = "0"
|
|
register "ide0_drive1_udma33_enable" = "0"
|
|
register "ide1_drive0_udma33_enable" = "0"
|
|
register "ide1_drive1_udma33_enable" = "0"
|
|
end
|
|
end
|
|
end
|