blob: cb5b12fcd027934560cc8bf74d2347c40aee5009 [file] [log] [blame]
Arthur Heymans7b9c1392017-04-09 20:40:39 +02001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2008-2009 coresystems GmbH
5## 2012 secunet security Networks AG
6##
7## This program is free software; you can redistribute it and/or modify
8## it under the terms of the GNU General Public License as published by
9## the Free Software Foundation; version 2 of the License.
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
17config SOUTHBRIDGE_INTEL_I82801JX
18 bool
19 select SOUTHBRIDGE_INTEL_COMMON
Arthur Heymans16fe7902017-04-12 17:01:31 +020020 select SOUTHBRIDGE_INTEL_COMMON_SMBUS
Arthur Heymans0c891d22017-09-25 12:43:31 +020021 select SOUTHBRIDGE_INTEL_COMMON_SPI
Arthur Heymansa8a9f342017-12-24 08:11:13 +010022 select SOUTHBRIDGE_INTEL_COMMON_RCBA_PIRQ
Arthur Heymans7b9c1392017-04-09 20:40:39 +020023 select IOAPIC
24 select HAVE_USBDEBUG
25 select HAVE_HARD_RESET
26 select USE_WATCHDOG_ON_BOOT
27 select HAVE_SMI_HANDLER
28 select HAVE_USBDEBUG_OPTIONS
29 select SOUTHBRIDGE_INTEL_COMMON_GPIO
Stefan Tauneref8b9572018-09-06 00:34:28 +020030 select INTEL_DESCRIPTOR_MODE_CAPABLE
Arthur Heymansad501492017-04-12 00:15:39 +020031 select COMMON_FADT
Arthur Heymans7b9c1392017-04-09 20:40:39 +020032
33if SOUTHBRIDGE_INTEL_I82801JX
34
35config EHCI_BAR
36 hex
37 default 0xfef00000
38
Angel Ponsa52016c2018-09-11 13:49:45 +020039## Some enterprise variants may require an IFD
40config INTEL_DESCRIPTOR_MODE_REQUIRED
41 bool
42 default n
43
Arthur Heymans7b9c1392017-04-09 20:40:39 +020044config HPET_MIN_TICKS
45 hex
46 default 0x80
47
48config BOOTBLOCK_SOUTHBRIDGE_INIT
49 string
Arthur Heymans349e0852017-04-09 20:48:37 +020050 default "southbridge/intel/i82801jx/bootblock.c"
Arthur Heymans7b9c1392017-04-09 20:40:39 +020051
52endif