aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/via/cn700/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'src/northbridge/via/cn700/Kconfig')
-rw-r--r--src/northbridge/via/cn700/Kconfig46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/northbridge/via/cn700/Kconfig b/src/northbridge/via/cn700/Kconfig
deleted file mode 100644
index 1619ff15a3..0000000000
--- a/src/northbridge/via/cn700/Kconfig
+++ /dev/null
@@ -1,46 +0,0 @@
-config NORTHBRIDGE_VIA_CN700
- bool
- select NO_MMCONF_SUPPORT
- select HAVE_DEBUG_RAM_SETUP
- select LATE_CBMEM_INIT
-
-# TODO: Values are from the CX700 datasheet, not sure if this matches CN700.
-# TODO: What should be the per-chipset default value here?
-choice
- prompt "Onboard graphics"
- default CN700_VIDEO_MB_32MB
- depends on NORTHBRIDGE_VIA_CN700
-
-# TODO: Disabling onboard graphics is not yet supported in the code.
-config CN700_VIDEO_MB_OFF
- bool "Disabled, 0KB"
-config CN700_VIDEO_MB_8MB
- bool "Enabled, 8MB"
-config CN700_VIDEO_MB_16MB
- bool "Enabled, 16MB"
-config CN700_VIDEO_MB_32MB
- bool "Enabled, 32MB"
-config CN700_VIDEO_MB_64MB
- bool "Enabled, 64MB"
-config CN700_VIDEO_MB_128MB
- bool "Enabled, 128MB"
-
-endchoice
-
-if NORTHBRIDGE_VIA_CN700
-
-config VIDEO_MB
- int
- default 0 if CN700_VIDEO_MB_OFF
- default 8 if CN700_VIDEO_MB_8MB
- default 16 if CN700_VIDEO_MB_16MB
- default 32 if CN700_VIDEO_MB_32MB
- default 64 if CN700_VIDEO_MB_64MB
- default 128 if CN700_VIDEO_MB_128MB
-
-config VGA_BIOS_ID
- string
- depends on VGA_BIOS
- default "1106,3344"
-
-endif