blob: 8ac7e8ecb51c316addcd33b68ce70bfde871508f [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 Michael Gold <mgold@ncf.ca>
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/i82810 # Northbridge
Stefan Reinauer0aa37c42013-02-12 15:20:54 -080022 device cpu_cluster 0 on # APIC cluster
Patrick Georgi892b0912009-09-24 09:03:06 +000023 chip cpu/intel/socket_PGA370 # CPU
Patrick Georgi8d313682010-05-05 13:12:42 +000024 device lapic 0 on end # APIC
Patrick Georgi892b0912009-09-24 09:03:06 +000025 end
26 end
Stefan Reinauer4aff4452013-02-12 14:17:15 -080027 device domain 0 on # PCI domain
Patrick Georgi892b0912009-09-24 09:03:06 +000028 device pci 0.0 on end # Graphics Memory Controller Hub (GMCH)
Myles Watsond27c08c2009-11-06 23:42:26 +000029 device pci 1.0 on end
Stefan Reinauer138be832010-02-27 01:50:21 +000030 chip southbridge/intel/i82801ax # Southbridge
Patrick Georgi892b0912009-09-24 09:03:06 +000031 register "pirqa_routing" = "0x03"
32 register "pirqb_routing" = "0x05"
33 register "pirqc_routing" = "0x09"
34 register "pirqd_routing" = "0x0b"
35
36 register "ide0_enable" = "1"
37 register "ide1_enable" = "1"
38
39 device pci 1e.0 on # PCI bridge
40 device pci 5.0 on end # Audio controller (ESS ES1988)
41 end
42 device pci 1f.0 on # ISA bridge
43 chip superio/smsc/smscsuperio # Super I/O (SMSC LPC47U332)
44 device pnp 4e.0 on # Floppy
45 io 0x60 = 0x3f0
46 irq 0x70 = 6
47 drq 0x74 = 2
48 end
49 device pnp 4e.3 on # Parallel port
50 io 0x60 = 0x378
51 irq 0x70 = 7
52 drq 0x74 = 3
53 end
54 device pnp 4e.4 on # COM1
55 io 0x60 = 0x3f8
56 irq 0x70 = 4
57 end
58 device pnp 4e.5 on # MIDI port (MPU-401)
59 io 0x60 = 0x330
60 irq 0x70 = 10
61 end
62 device pnp 4e.7 on # PS/2 keyboard / mouse
63 io 0x60 = 0x60 # XXX: not relocatable
64 io 0x62 = 0x64 # XXX: not relocatable
65 irq 0x70 = 1 # PS/2 keyboard interrupt
66 irq 0x72 = 12 # PS/2 mouse interrupt
67 end
68 device pnp 4e.9 on # Game port
69 io 0x60 = 0x201
70 end
71 device pnp 4e.a on # Runtime registers
72 io 0x60 = 0x400
73 end
74 device pnp 4e.b off end # SMBus
75 end
76 end
77 device pci 1f.1 on end # IDE
78 device pci 1f.2 on end # USB
79 device pci 1f.3 on end # SMbus
80 device pci 1f.5 off end # Audio controller
81 device pci 1f.6 off end # Modem
82 end
83 end
84end