blob: 8b55174f41e20959b863fb560c9087ce4aa62b0c [file] [log] [blame]
Uwe Hermannbca3b922009-08-26 17:10:00 +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
Nils Jacobsdd6ad342010-05-14 09:48:05 +00008## the Free Software Foundation; version 2 of the License.
Uwe Hermannbca3b922009-08-26 17:10:00 +00009##
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13## GNU General Public License for more details.
14##
Jens Rottmann9a684fc2010-08-30 16:36:51 +000015if BOARD_ASUS_P2B_DS
Uwe Hermannbca3b922009-08-26 17:10:00 +000016
Elyes HAOUASf0c5be22018-11-27 20:36:44 +010017config BOARD_SPECIFIC_OPTIONS
Jens Rottmann9a684fc2010-08-30 16:36:51 +000018 def_bool y
Uwe Hermann53c72762010-03-13 20:36:11 +000019 select CPU_INTEL_SLOT_1
Uwe Hermannbca3b922009-08-26 17:10:00 +000020 select NORTHBRIDGE_INTEL_I440BX
21 select SOUTHBRIDGE_INTEL_I82371EB
22 select SUPERIO_WINBOND_W83977TF
23 select HAVE_PIRQ_TABLE
24 select HAVE_MP_TABLE
25 select SMP
Uwe Hermannda22d212010-10-30 21:27:13 +000026 select IOAPIC
Uwe Hermannd65509d2009-10-16 17:37:20 +000027 select BOARD_ROMSIZE_KB_256
Keith Hui9c1e1f02010-03-13 20:16:48 +000028 select SDRAMPWR_4DIMM
Uwe Hermannbca3b922009-08-26 17:10:00 +000029
30config MAINBOARD_DIR
31 string
Patrick Georgi0bb83462019-11-22 20:58:58 +010032 default "asus/p2b-ds"
Uwe Hermannbca3b922009-08-26 17:10:00 +000033
34config MAINBOARD_PART_NUMBER
35 string
36 default "P2B-DS"
Uwe Hermannbca3b922009-08-26 17:10:00 +000037
Uwe Hermannbca3b922009-08-26 17:10:00 +000038config IRQ_SLOT_COUNT
39 int
40 default 7
Uwe Hermannbca3b922009-08-26 17:10:00 +000041
42config MAX_CPUS
43 int
44 default 2
Uwe Hermannbca3b922009-08-26 17:10:00 +000045
Jens Rottmann9a684fc2010-08-30 16:36:51 +000046endif # BOARD_ASUS_P2B_DS