Author: oxygene Date: 2009-10-06 22:48:07 +0200 (Tue, 06 Oct 2009) New Revision: 4728
Modified: trunk/coreboot-v2/src/Kconfig trunk/coreboot-v2/src/console/Kconfig trunk/coreboot-v2/src/cpu/Kconfig trunk/coreboot-v2/src/cpu/intel/model_1067x/Kconfig trunk/coreboot-v2/src/cpu/x86/Kconfig trunk/coreboot-v2/src/mainboard/amd/serengeti_cheetah/Kconfig trunk/coreboot-v2/src/mainboard/asus/m2v-mx_se/Kconfig trunk/coreboot-v2/src/mainboard/dell/s1850/Kconfig trunk/coreboot-v2/src/mainboard/emulation/qemu-x86/Kconfig trunk/coreboot-v2/src/mainboard/gigabyte/m57sli/Kconfig trunk/coreboot-v2/src/mainboard/intel/eagleheights/Kconfig trunk/coreboot-v2/src/mainboard/kontron/986lcd-m/Kconfig trunk/coreboot-v2/src/mainboard/sunw/ultra40/Kconfig trunk/coreboot-v2/src/mainboard/supermicro/h8dme/Kconfig trunk/coreboot-v2/src/mainboard/tyan/s1846/Kconfig trunk/coreboot-v2/src/mainboard/tyan/s2850/Kconfig trunk/coreboot-v2/src/mainboard/tyan/s2875/Kconfig trunk/coreboot-v2/src/mainboard/tyan/s2881/Kconfig trunk/coreboot-v2/src/mainboard/tyan/s2891/Kconfig trunk/coreboot-v2/src/mainboard/tyan/s2892/Kconfig trunk/coreboot-v2/src/mainboard/tyan/s2895/Kconfig trunk/coreboot-v2/src/mainboard/via/epia-n/Kconfig trunk/coreboot-v2/src/mainboard/via/epia/Kconfig Log: Various fixes to Kconfig: All kconfig-boards should have a complete set of variables now, though they might still have the wrong values.
Signed-off-by: Patrick Georgi patrick.georgi@coresystems.de Acked-by: Ronald G. Minnich rminnich@gmail.com
Modified: trunk/coreboot-v2/src/Kconfig =================================================================== --- trunk/coreboot-v2/src/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -61,6 +61,10 @@ int default 36
+config AGP_APERTURE_SIZE + hex + default 0 + config XIP_ROM_BASE hex default 0xfffe0000
Modified: trunk/coreboot-v2/src/console/Kconfig =================================================================== --- trunk/coreboot-v2/src/console/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/console/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -24,6 +24,11 @@ depends on SERIAL_SET_SPEED default 115200
+config TTYS0_LCS + int + default 3 + depends on CONSOLE_SERIAL8250 + config USBDEBUG_DIRECT bool "USB debug dongle support. Not supported on all chipsets." default n
Modified: trunk/coreboot-v2/src/cpu/Kconfig =================================================================== --- trunk/coreboot-v2/src/cpu/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/cpu/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -21,6 +21,10 @@ hex default 0
+config MAX_PHYSICAL_CPUS + int + default 1 + config SMP bool default y if MAX_CPUS != 1 @@ -39,3 +43,10 @@ help Set this in socket or model if the CPU has SSE. If the CPUs for the socket always have MX, set it there. + +config VAR_MTRR_HOLE + bool + default y + help + Unset this if you don't want the MTRR code to use + subtractive MTRRs
Modified: trunk/coreboot-v2/src/cpu/intel/model_1067x/Kconfig =================================================================== --- trunk/coreboot-v2/src/cpu/intel/model_1067x/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/cpu/intel/model_1067x/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -1,5 +1,5 @@ config CPU_INTEL_CORE2 bool - default y + default n select SMP select HAVE_MOVNTI
Modified: trunk/coreboot-v2/src/cpu/x86/Kconfig =================================================================== --- trunk/coreboot-v2/src/cpu/x86/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/cpu/x86/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -6,6 +6,14 @@ bool default n
+config UDELAY_IO + bool + default n + +config UDELAY_LAPIC + bool + default n + config UDELAY_TSC bool default n
Modified: trunk/coreboot-v2/src/mainboard/amd/serengeti_cheetah/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/amd/serengeti_cheetah/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/amd/serengeti_cheetah/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -147,3 +147,7 @@ default y depends on BOARD_AMD_SERENGETI_CHEETAH
+config IRQ_SLOT_COUNT + int + default 11 + depends on BOARD_AMD_SERENGETI_CHEETAH
Modified: trunk/coreboot-v2/src/mainboard/asus/m2v-mx_se/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/asus/m2v-mx_se/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/asus/m2v-mx_se/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -115,3 +115,8 @@ default 0x20 depends on BOARD_ASUS_M2V_MX_SE
+# FIXME? +config IRQ_SLOT_COUNT + int + default 11 + depends on BOARD_ASUS_M2V_MX_SE
Modified: trunk/coreboot-v2/src/mainboard/dell/s1850/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/dell/s1850/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/dell/s1850/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -48,3 +48,7 @@ default n depends on BOARD_DELL_S1850
+config IRQ_SLOT_COUNT + int + default 9 + depends on BOARD_DELL_S1850
Modified: trunk/coreboot-v2/src/mainboard/emulation/qemu-x86/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/emulation/qemu-x86/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/emulation/qemu-x86/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -15,3 +15,8 @@ string default "QEMU-x86" depends on BOARD_EMULATION_QEMU_X86 + +config IRQ_SLOT_COUNT + int + default 6 + depends on BOARD_EMULATION_QEMU_X86
Modified: trunk/coreboot-v2/src/mainboard/gigabyte/m57sli/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/gigabyte/m57sli/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/gigabyte/m57sli/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -18,7 +18,6 @@ select SB_HT_CHAIN_UNITID_OFFSET_ONLY select HAVE_ACPI_TABLES select K8_REV_F_SUPPORT - select HAVE_FANCTL
config MAINBOARD_DIR string @@ -144,3 +143,14 @@ hex default 0x2b80 depends on BOARD_GIGABYTE_M57SLI + +config IRQ_SLOT_COUNT + int + default 11 + depends on BOARD_GIGABYTE_M57SLI + +# not globally defined yet, so can't "select" this +config HAVE_FANCTL + bool + default y + depends on BOARD_GIGABYTE_M57SLI
Modified: trunk/coreboot-v2/src/mainboard/intel/eagleheights/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/eagleheights/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/intel/eagleheights/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -53,3 +53,12 @@ default 0xe0000000 depends on BOARD_INTEL_EAGLEHEIGHTS
+config IRQ_SLOT_COUNT + int + default 18 + depends on BOARD_INTEL_EAGLEHEIGHTS + +config MAX_PHYSICAL_CPUS + int + default 2 + depends on BOARD_INTEL_EAGLEHEIGHTS
Modified: trunk/coreboot-v2/src/mainboard/kontron/986lcd-m/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/kontron/986lcd-m/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/kontron/986lcd-m/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -45,3 +45,13 @@ hex default 0xf0000000 depends on BOARD_KONTRON_986LCD_M + +config IRQ_SLOT_COUNT + int + default 18 + depends on BOARD_KONTRON_986LCD_M + +config MAX_PHYSICAL_CPUS + int + default 2 + depends on BOARD_KONTRON_986LCD_M
Modified: trunk/coreboot-v2/src/mainboard/sunw/ultra40/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/sunw/ultra40/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/sunw/ultra40/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -116,3 +116,7 @@ default y depends on BOARD_SUNW_ULTRA40
+config IRQ_SLOT_COUNT + int + default 11 + depends on BOARD_SUNW_ULTRA40
Modified: trunk/coreboot-v2/src/mainboard/supermicro/h8dme/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/supermicro/h8dme/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/supermicro/h8dme/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -116,3 +116,7 @@ default y depends on BOARD_SUPERMICRO_H8DME
+config IRQ_SLOT_COUNT + int + default 11 + depends on BOARD_SUPERMICRO_H8DME
Modified: trunk/coreboot-v2/src/mainboard/tyan/s1846/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/tyan/s1846/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/tyan/s1846/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -42,3 +42,8 @@ default n depends on BOARD_TYAN_S1846
+#Override manually, as in Config.lb (FIXME) +config IRQ_SLOT_COUNT + int + default 0 + depends on BOARD_TYAN_S1846
Modified: trunk/coreboot-v2/src/mainboard/tyan/s2850/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/tyan/s2850/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/tyan/s2850/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -53,3 +53,8 @@ bool default n depends on BOARD_TYAN_S2850 + +config IRQ_SLOT_COUNT + int + default 12 + depends on BOARD_TYAN_S2850
Modified: trunk/coreboot-v2/src/mainboard/tyan/s2875/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/tyan/s2875/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/tyan/s2875/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -59,3 +59,8 @@ bool default n depends on BOARD_TYAN_S2875 + +config IRQ_SLOT_COUNT + int + default 13 + depends on BOARD_TYAN_S2875
Modified: trunk/coreboot-v2/src/mainboard/tyan/s2881/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/tyan/s2881/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/tyan/s2881/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -125,3 +125,7 @@ default n depends on BOARD_TYAN_S2881
+config IRQ_SLOT_COUNT + int + default 9 + depends on BOARD_TYAN_S2881
Modified: trunk/coreboot-v2/src/mainboard/tyan/s2891/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/tyan/s2891/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/tyan/s2891/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -125,3 +125,7 @@ default y depends on BOARD_TYAN_S2891
+config IRQ_SLOT_COUNT + int + default 11 + depends on BOARD_TYAN_S2891
Modified: trunk/coreboot-v2/src/mainboard/tyan/s2892/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/tyan/s2892/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/tyan/s2892/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -125,3 +125,7 @@ default y depends on BOARD_TYAN_S2892
+config IRQ_SLOT_COUNT + int + default 11 + depends on BOARD_TYAN_S2892
Modified: trunk/coreboot-v2/src/mainboard/tyan/s2895/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/tyan/s2895/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/tyan/s2895/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -125,3 +125,7 @@ default y depends on BOARD_TYAN_S2895
+config IRQ_SLOT_COUNT + int + default 11 + depends on BOARD_TYAN_S2895
Modified: trunk/coreboot-v2/src/mainboard/via/epia/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/via/epia/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/via/epia/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -31,3 +31,8 @@ hex default 0x4000 depends on BOARD_VIA_EPIA + +config IRQ_SLOT_COUNT + int + default 5 + depends on BOARD_VIA_EPIA
Modified: trunk/coreboot-v2/src/mainboard/via/epia-n/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/via/epia-n/Kconfig 2009-10-06 20:36:34 UTC (rev 4727) +++ trunk/coreboot-v2/src/mainboard/via/epia-n/Kconfig 2009-10-06 20:48:07 UTC (rev 4728) @@ -36,3 +36,13 @@ hex default 0x4000 depends on BOARD_VIA_EPIA_N + +config IRQ_SLOT_COUNT + int + default 7 + depends on BOARD_VIA_EPIA_N + +config EPIA_VT8237R_INIT + bool + default y + depends on BOARD_VIA_EPIA_N