blob: b51ebe6f81664888ed4eb0a11c5182b790f52ec4 [file] [log] [blame]
Patrick Georgi892b0912009-09-24 09:03:06 +00001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; either version 2 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program; if not, write to the Free Software
18## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19##
20
21chip northbridge/intel/i440bx # Northbridge
22 device apic_cluster 0 on # APIC cluster
23 chip cpu/intel/slot_2 # CPU (FIXME: It's slot 1, actually)
24 device apic 0 on end # APIC
25 end
26 end
27 device pci_domain 0 on # PCI domain
28 device pci 0.0 on end # Host bridge
29 device pci 1.0 on end # PCI/AGP bridge
30 chip southbridge/intel/i82371eb # Southbridge
31 device pci 7.0 on # ISA bridge
32 chip superio/ite/it8671f # Super I/O
33 device pnp 370.0 on # Floppy
34 io 0x60 = 0x3f0
35 irq 0x70 = 6
36 drq 0x74 = 2
37 end
38 device pnp 370.1 on # COM1
39 io 0x60 = 0x3f8
40 irq 0x70 = 4
41 end
42 device pnp 370.2 on # COM2
43 io 0x60 = 0x2f8
44 irq 0x70 = 3
45 end
46 device pnp 370.3 on # Parallel port
47 io 0x60 = 0x378
48 irq 0x70 = 7
49 end
50 device pnp 370.5 on # PS/2 keyboard
51 io 0x60 = 0x60
52 io 0x62 = 0x64
53 irq 0x70 = 1
54 end
55 device pnp 370.6 on # PS/2 mouse
56 irq 0x70 = 12
57 end
58 end
59 end
60 device pci 7.1 on end # IDE
61 device pci 7.2 on end # USB
62 device pci 7.3 on end # ACPI
63 register "ide0_enable" = "1"
64 register "ide1_enable" = "1"
65 register "ide_legacy_enable" = "1"
66 # Enable UDMA/33 for higher speed if your IDE device(s) support it.
67 register "ide0_drive0_udma33_enable" = "0"
68 register "ide0_drive1_udma33_enable" = "0"
69 register "ide1_drive0_udma33_enable" = "0"
70 register "ide1_drive1_udma33_enable" = "0"
71 end
72 end
73end