Make CONFIG_HAVE_HIGH_TABLES consistent in where and how it is set.
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4691 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
babb03a5be
commit
53ad9f585d
|
@ -7,7 +7,6 @@ config BOARD_INTEL_EAGLEHEIGHTS
|
||||||
select SUPERIO_INTEL_I3100
|
select SUPERIO_INTEL_I3100
|
||||||
select SUPERIO_SMSC_SMSCSUPERIO
|
select SUPERIO_SMSC_SMSCSUPERIO
|
||||||
select HAVE_PIRQ_TABLE
|
select HAVE_PIRQ_TABLE
|
||||||
select HAVE_HIGH_TABLES
|
|
||||||
select MMCONF_SUPPORT
|
select MMCONF_SUPPORT
|
||||||
select USE_PRINTK_IN_CAR
|
select USE_PRINTK_IN_CAR
|
||||||
select UDELAY_TSC
|
select UDELAY_TSC
|
||||||
|
@ -21,6 +20,11 @@ config MAINBOARD_DIR
|
||||||
default intel/eagleheights
|
default intel/eagleheights
|
||||||
depends on BOARD_INTEL_EAGLEHEIGHTS
|
depends on BOARD_INTEL_EAGLEHEIGHTS
|
||||||
|
|
||||||
|
config MMCONF_BASE_ADDRESS
|
||||||
|
hex
|
||||||
|
default 0xe0000000
|
||||||
|
depends on BOARD_INTEL_EAGLEHEIGHTS
|
||||||
|
|
||||||
config DCACHE_RAM_BASE
|
config DCACHE_RAM_BASE
|
||||||
hex
|
hex
|
||||||
default 0xffdf8000
|
default 0xffdf8000
|
||||||
|
|
|
@ -20,15 +20,11 @@
|
||||||
config NORTHBRIDGE_AMD_AMDFAM10
|
config NORTHBRIDGE_AMD_AMDFAM10
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
select HAVE_HIGH_TABLES
|
||||||
|
|
||||||
config AGP_APERTURE_SIZE
|
config AGP_APERTURE_SIZE
|
||||||
hex
|
hex
|
||||||
default 0x4000000
|
default 0x4000000
|
||||||
depends on NORTHBRIDGE_AMD_AMDFAM10
|
depends on NORTHBRIDGE_AMD_AMDFAM10
|
||||||
|
|
||||||
config HAVE_HIGH_TABLES
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
depends on NORTHBRIDGE_AMD_AMDFAM10
|
|
||||||
|
|
||||||
source src/northbridge/amd/amdfam10/root_complex/Kconfig
|
source src/northbridge/amd/amdfam10/root_complex/Kconfig
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
config NORTHBRIDGE_AMD_AMDK8
|
config NORTHBRIDGE_AMD_AMDK8
|
||||||
bool
|
bool
|
||||||
|
select HAVE_HIGH_TABLES
|
||||||
default n
|
default n
|
||||||
|
|
||||||
config AGP_APERTURE_SIZE
|
config AGP_APERTURE_SIZE
|
||||||
|
@ -26,11 +27,6 @@ config AGP_APERTURE_SIZE
|
||||||
default 0x4000000
|
default 0x4000000
|
||||||
depends on NORTHBRIDGE_AMD_AMDK8
|
depends on NORTHBRIDGE_AMD_AMDK8
|
||||||
|
|
||||||
config HAVE_HIGH_TABLES
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
depends on NORTHBRIDGE_AMD_AMDK8
|
|
||||||
|
|
||||||
config HYPERTRANSPORT_PLUGIN_SUPPORT
|
config HYPERTRANSPORT_PLUGIN_SUPPORT
|
||||||
bool
|
bool
|
||||||
default y
|
default y
|
||||||
|
|
|
@ -1,8 +1,3 @@
|
||||||
|
|
||||||
#default CONFIG_AGP_APERTURE_SIZE=0x4000000
|
|
||||||
#default CONFIG_HAVE_HIGH_TABLES=1
|
|
||||||
|
|
||||||
|
|
||||||
driver-y += northbridge.o
|
driver-y += northbridge.o
|
||||||
driver-y += misc_control.o
|
driver-y += misc_control.o
|
||||||
obj-y += get_sblk_pci1234.o
|
obj-y += get_sblk_pci1234.o
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
config NORTHBRIDGE_INTEL_E7501
|
config NORTHBRIDGE_INTEL_E7501
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
select HAVE_HIGH_TABLES
|
||||||
|
|
||||||
config HAVE_HIGH_TABLES
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
depends on NORTHBRIDGE_INTEL_E7501
|
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
config NORTHBRIDGE_INTEL_E7520
|
config NORTHBRIDGE_INTEL_E7520
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
select HAVE_HIGH_TABLES
|
||||||
|
|
||||||
config HAVE_HIGH_TABLES
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
depends on NORTHBRIDGE_INTEL_E7520
|
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
config NORTHBRIDGE_INTEL_E7525
|
config NORTHBRIDGE_INTEL_E7525
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
select HAVE_HIGH_TABLES
|
||||||
|
|
||||||
config HAVE_HIGH_TABLES
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
depends on NORTHBRIDGE_INTEL_E7525
|
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
config NORTHBRIDGE_INTEL_I3100
|
config NORTHBRIDGE_INTEL_I3100
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
select HAVE_HIGH_TABLES
|
||||||
|
|
||||||
config HAVE_HIGH_TABLES
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
depends on NORTHBRIDGE_INTEL_I3100
|
|
||||||
|
|
|
@ -21,9 +21,5 @@
|
||||||
config NORTHBRIDGE_INTEL_I440BX
|
config NORTHBRIDGE_INTEL_I440BX
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
select HAVE_HIGH_TABLES
|
||||||
config HAVE_HIGH_TABLES
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
depends on NORTHBRIDGE_INTEL_I440BX
|
|
||||||
|
|
||||||
|
|
|
@ -21,9 +21,5 @@
|
||||||
config NORTHBRIDGE_INTEL_I82810
|
config NORTHBRIDGE_INTEL_I82810
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
select HAVE_HIGH_TABLES
|
||||||
config HAVE_HIGH_TABLES
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
depends on NORTHBRIDGE_INTEL_I82810
|
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
config NORTHBRIDGE_INTEL_I82830
|
config NORTHBRIDGE_INTEL_I82830
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
select HAVE_HIGH_TABLES
|
||||||
|
|
||||||
config HAVE_HIGH_TABLES
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
depends on NORTHBRIDGE_INTEL_I82830
|
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
config NORTHBRIDGE_INTEL_I855GME
|
config NORTHBRIDGE_INTEL_I855GME
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
select HAVE_HIGH_TABLES
|
||||||
|
|
||||||
config HAVE_HIGH_TABLES
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
depends on NORTHBRIDGE_INTEL_I855GME
|
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
config NORTHBRIDGE_INTEL_I855PM
|
config NORTHBRIDGE_INTEL_I855PM
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
select HAVE_HIGH_TABLES
|
||||||
|
|
||||||
config HAVE_HIGH_TABLES
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
depends on NORTHBRIDGE_INTEL_I855PM
|
|
||||||
|
|
|
@ -19,10 +19,5 @@
|
||||||
|
|
||||||
config NORTHBRIDGE_INTEL_I945
|
config NORTHBRIDGE_INTEL_I945
|
||||||
bool
|
bool
|
||||||
|
select HAVE_HIGH_TABLES
|
||||||
default n
|
default n
|
||||||
|
|
||||||
config HAVE_HIGH_TABLES
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
depends on NORTHBRIDGE_INTEL_I945
|
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,9 @@
|
||||||
config NORTHBRIDGE_VIA_CN700
|
config NORTHBRIDGE_VIA_CN700
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
select HAVE_HIGH_TABLES
|
||||||
|
|
||||||
config FALLBACK_SIZE
|
config FALLBACK_SIZE
|
||||||
int
|
int
|
||||||
default 0
|
default 0
|
||||||
depends on NORTHBRIDGE_VIA_CN700
|
depends on NORTHBRIDGE_VIA_CN700
|
||||||
|
|
||||||
config HAVE_HIGH_TABLES
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
depends on NORTHBRIDGE_VIA_CN700
|
|
||||||
|
|
|
@ -1,13 +1,10 @@
|
||||||
config NORTHBRIDGE_VIA_VT8601
|
config NORTHBRIDGE_VIA_VT8601
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
select HAVE_HIGH_TABLES
|
||||||
|
|
||||||
config FALLBACK_SIZE
|
config FALLBACK_SIZE
|
||||||
int
|
int
|
||||||
default 0
|
default 0
|
||||||
depends on NORTHBRIDGE_VIA_VT8601
|
depends on NORTHBRIDGE_VIA_VT8601
|
||||||
|
|
||||||
config HAVE_HIGH_TABLES
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
depends on NORTHBRIDGE_VIA_VT8601
|
|
||||||
|
|
|
@ -1,13 +1,10 @@
|
||||||
config NORTHBRIDGE_VIA_VT8623
|
config NORTHBRIDGE_VIA_VT8623
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
select HAVE_HIGH_TABLES
|
||||||
|
|
||||||
config FALLBACK_SIZE
|
config FALLBACK_SIZE
|
||||||
int
|
int
|
||||||
default 0
|
default 0
|
||||||
depends on NORTHBRIDGE_VIA_VT8623
|
depends on NORTHBRIDGE_VIA_VT8623
|
||||||
|
|
||||||
config HAVE_HIGH_TABLES
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
depends on NORTHBRIDGE_VIA_VT8623
|
|
||||||
|
|
Loading…
Reference in New Issue