aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/via/cx700/Kconfig
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2018-05-24 02:02:42 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2018-05-31 03:44:42 +0000
commite99f0390b9b8e04b197b165e6e63826ce9631d35 (patch)
tree87644b5d2db42a7ec85f480cc1e75fdde7523e87 /src/northbridge/via/cx700/Kconfig
parentec953bc2f95111f6a925d380f9db0ea95392fd89 (diff)
Remove VIA CX700 northbridge support
Change-Id: Id46e3d40393598f6b03ae4fd3186182635f072ca Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/26678 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/northbridge/via/cx700/Kconfig')
-rw-r--r--src/northbridge/via/cx700/Kconfig55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/northbridge/via/cx700/Kconfig b/src/northbridge/via/cx700/Kconfig
deleted file mode 100644
index ec2c75ba1d..0000000000
--- a/src/northbridge/via/cx700/Kconfig
+++ /dev/null
@@ -1,55 +0,0 @@
-config NORTHBRIDGE_VIA_CX700
- bool
- select NO_MMCONF_SUPPORT
- select HAVE_DEBUG_RAM_SETUP
- select HAVE_DEBUG_SMBUS
- select HAVE_HARD_RESET
- select IOAPIC
- select SMP
- select LATE_CBMEM_INIT
-
-# TODO: What should be the per-chipset default value here?
-choice
- prompt "Onboard graphics"
- default CX700_VIDEO_MB_32MB
- depends on NORTHBRIDGE_VIA_CX700
-
-# TODO: Setting the amount of gfx memory is not yet supported in the source code.
-config CX700_VIDEO_MB_OFF
- bool "Disabled, 0KB"
-config CX700_VIDEO_MB_8MB
- bool "Enabled, 8MB"
-config CX700_VIDEO_MB_16MB
- bool "Enabled, 16MB"
-config CX700_VIDEO_MB_32MB
- bool "Enabled, 32MB"
-config CX700_VIDEO_MB_64MB
- bool "Enabled, 64MB"
-config CX700_VIDEO_MB_128MB
- bool "Enabled, 128MB"
-
-endchoice
-
-if NORTHBRIDGE_VIA_CX700
-
-config VIDEO_MB
- int
- default 0 if CX700_VIDEO_MB_OFF
- default 8 if CX700_VIDEO_MB_8MB
- default 16 if CX700_VIDEO_MB_16MB
- default 32 if CX700_VIDEO_MB_32MB
- default 64 if CX700_VIDEO_MB_64MB
- default 128 if CX700_VIDEO_MB_128MB
-
-config HPET_ADDRESS_OVERRIDE
- def_bool y
-
-config HPET_ADDRESS
- hex
- default 0xfe800000
-
-config HPET_MIN_TICKS
- hex
- default 0x90
-
-endif