More kconfig cleanups:
- Use "default n" for all components that shall be "select"ed. - Use "0x0" instead of "0" for hex variables for clarity and to reduce the risk of people passing integer instead of hex values to such variables. - Add TODO comments for boards that have irq_tables.c but don' set CONFIG_HAVE_PIRQ_TABLE = 1. Someone with the hardware should test enabling. - ASUS M2V-MX SE doesn't have irq_tables.c so don't define IRQ_SLOT_COUNT in its Kconfig file. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4749 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
ebb43d6943
commit
748475b800
|
@ -56,11 +56,11 @@ config PCI_BUS_SEGN_BITS
|
|||
|
||||
config MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID
|
||||
hex
|
||||
default 0
|
||||
default 0x0
|
||||
|
||||
config MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID
|
||||
hex
|
||||
default 0
|
||||
default 0x0
|
||||
|
||||
config CPU_ADDR_BITS
|
||||
int
|
||||
|
@ -68,7 +68,7 @@ config CPU_ADDR_BITS
|
|||
|
||||
config AGP_APERTURE_SIZE
|
||||
hex
|
||||
default 0
|
||||
default 0x0
|
||||
|
||||
config XIP_ROM_BASE
|
||||
hex
|
||||
|
@ -174,7 +174,7 @@ config USE_FAILOVER_IMAGE
|
|||
|
||||
config HAVE_HARD_RESET
|
||||
bool
|
||||
default 0
|
||||
default n
|
||||
|
||||
config HAVE_INIT_TIMER
|
||||
bool
|
||||
|
|
|
@ -29,7 +29,7 @@ config ROMBASE
|
|||
|
||||
config PAYLOAD_SIZE
|
||||
hex
|
||||
default 0
|
||||
default 0x0
|
||||
|
||||
config ROM_PAYLOAD_START
|
||||
hex
|
||||
|
|
|
@ -19,7 +19,7 @@ config DCACHE_RAM_SIZE
|
|||
|
||||
config DCACHE_RAM_GLOBAL_VAR_SIZE
|
||||
hex
|
||||
default 0
|
||||
default 0x0
|
||||
|
||||
config MAX_PHYSICAL_CPUS
|
||||
int
|
||||
|
|
|
@ -41,5 +41,5 @@ config CBB
|
|||
|
||||
config CDB
|
||||
hex
|
||||
default 0
|
||||
default 0x0
|
||||
depends on CPU_AMD_SOCKET_F_1207
|
||||
|
|
|
@ -115,8 +115,3 @@ config HT_CHAIN_END_UNITID_BASE
|
|||
default 0x20
|
||||
depends on BOARD_ASUS_M2V_MX_SE
|
||||
|
||||
# FIXME?
|
||||
config IRQ_SLOT_COUNT
|
||||
int
|
||||
default 11
|
||||
depends on BOARD_ASUS_M2V_MX_SE
|
||||
|
|
|
@ -69,10 +69,10 @@ default CONFIG_UDELAY_IO=1
|
|||
##
|
||||
## Build code to export a programmable irq routing table
|
||||
##
|
||||
# FIXME: There's an irq_tables.c file, but CONFIG_HAVE_PIRQ_TABLE is 0.
|
||||
default CONFIG_HAVE_PIRQ_TABLE=0
|
||||
default CONFIG_IRQ_SLOT_COUNT=2
|
||||
default CONFIG_PIRQ_ROUTE=1
|
||||
#object irq_tables.o
|
||||
|
||||
##
|
||||
## Build code to export a CMOS option table
|
||||
|
|
|
@ -70,8 +70,6 @@ default CONFIG_GX1_VIDEO = 1
|
|||
default CONFIG_GX1_VIDEOMODE = 0
|
||||
default CONFIG_SPLASH_GRAPHIC = 1
|
||||
default CONFIG_VIDEO_MB = 2
|
||||
default CONFIG_HAVE_PIRQ_TABLE=0
|
||||
default CONFIG_PIRQ_ROUTE=1
|
||||
|
||||
default CONFIG_ROM_SIZE = 256 * 1024
|
||||
default CONFIG_MAINBOARD_VENDOR = "TeleVideo"
|
||||
|
@ -82,6 +80,7 @@ default CONFIG_HAVE_HARD_RESET = 0
|
|||
default CONFIG_UDELAY_TSC = 1
|
||||
default CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2 = 1
|
||||
default CONFIG_HAVE_PIRQ_TABLE = 1
|
||||
default CONFIG_PIRQ_ROUTE=1
|
||||
default CONFIG_IRQ_SLOT_COUNT = 3 # Soldered NIC, internal USB, mini PCI slot
|
||||
default CONFIG_HAVE_OPTION_TABLE = 0
|
||||
default CONFIG_ROM_IMAGE_SIZE = 64 * 1024
|
||||
|
|
|
@ -116,6 +116,7 @@ default CONFIG_HAVE_MP_TABLE = 0
|
|||
default CONFIG_UDELAY_TSC = 1
|
||||
default CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2 = 1
|
||||
default CONFIG_HAVE_HARD_RESET = 0
|
||||
# TODO: There is an irq_tables.c file, should it be used?
|
||||
default CONFIG_HAVE_PIRQ_TABLE = 0
|
||||
default CONFIG_IRQ_SLOT_COUNT = 13
|
||||
default CONFIG_HAVE_ACPI_TABLES = 1
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
config SOUTHBRIDGE_INTEL_I82371EB
|
||||
bool
|
||||
default n
|
||||
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
config SUPERIO_FINTEK_F71805F
|
||||
bool
|
||||
default n
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
config SUPERIO_INTEL_I3100
|
||||
bool
|
||||
default n
|
||||
|
|
|
@ -1,14 +1,21 @@
|
|||
config SUPERIO_ITE_IT8661F
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_ITE_IT8671F
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_ITE_IT8673F
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_ITE_IT8705F
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_ITE_IT8712F
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_ITE_IT8716F
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_ITE_IT8718F
|
||||
bool
|
||||
default n
|
||||
|
|
|
@ -1,18 +1,27 @@
|
|||
config SUPERIO_NSC_PC8374
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_NSC_PC87309
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_NSC_PC87351
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_NSC_PC87360
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_NSC_PC87366
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_NSC_PC87417
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_NSC_PC87427
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_NSC_PC97307
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_NSC_PC97317
|
||||
bool
|
||||
default n
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
config SUPERIO_SERVERENGINES_PILOT
|
||||
bool
|
||||
default n
|
||||
|
|
|
@ -1,12 +1,18 @@
|
|||
config SUPERIO_SMSC_FDC37M60X
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_SMSC_LPC47B272
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_SMSC_LPC47B397
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_SMSC_LPC47M10X
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_SMSC_LPC47N217
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_SMSC_SMSCSUPERIO
|
||||
bool
|
||||
default n
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
config SUPERIO_VIA_VT1211
|
||||
bool
|
||||
default n
|
||||
|
|
|
@ -1,18 +1,27 @@
|
|||
config SUPERIO_WINBOND_W83627DHG
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_WINBOND_W83627EHG
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_WINBOND_W83627HF
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_WINBOND_W83627THF
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_WINBOND_W83627THG
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_WINBOND_W83627UHG
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_WINBOND_W83697HF
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_WINBOND_W83977F
|
||||
bool
|
||||
default n
|
||||
config SUPERIO_WINBOND_W83977TF
|
||||
bool
|
||||
default n
|
||||
|
|
Loading…
Reference in New Issue