summaryrefslogtreecommitdiff
path: root/src/northbridge/via/cn400/Kconfig
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2014-12-17 13:59:20 -0800
committerStefan Reinauer <stefan.reinauer@coreboot.org>2014-12-18 02:14:45 +0100
commit295d9e6569413556afeec7835d6e82aab5878516 (patch)
tree2eb2f542087a33b5138b4649dcbfa44ff387f343 /src/northbridge/via/cn400/Kconfig
parent42874ace62a0fe7b3c54c729e3c57c330449b86b (diff)
Drop VIA Epia-N
ROMCC cleanup. Change-Id: Id72e6fcb89165f28cad8bf3a5b632d3fa094b7dd Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: http://review.coreboot.org/7855 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'src/northbridge/via/cn400/Kconfig')
-rw-r--r--src/northbridge/via/cn400/Kconfig36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/northbridge/via/cn400/Kconfig b/src/northbridge/via/cn400/Kconfig
deleted file mode 100644
index 42fa096894..0000000000
--- a/src/northbridge/via/cn400/Kconfig
+++ /dev/null
@@ -1,36 +0,0 @@
-config NORTHBRIDGE_VIA_CN400
- bool
-
-# TODO: Values are from the CX700 datasheet, not sure if this matches CN400.
-# TODO: What should be the per-chipset default value here?
-choice
- prompt "Onboard graphics"
- default CN400_VIDEO_MB_32MB
- depends on NORTHBRIDGE_VIA_CN400
-
-# TODO: Disabling onboard graphics is not yet supported in the source code.
-config CN400_VIDEO_MB_OFF
- bool "Disabled, 0KB"
-config CN400_VIDEO_MB_8MB
- bool "Enabled, 8MB"
-config CN400_VIDEO_MB_16MB
- bool "Enabled, 16MB"
-config CN400_VIDEO_MB_32MB
- bool "Enabled, 32MB"
-config CN400_VIDEO_MB_64MB
- bool "Enabled, 64MB"
-config CN400_VIDEO_MB_128MB
- bool "Enabled, 128MB"
-
-endchoice
-
-config VIDEO_MB
- int
- default 0 if CN400_VIDEO_MB_OFF
- default 8 if CN400_VIDEO_MB_8MB
- default 16 if CN400_VIDEO_MB_16MB
- default 32 if CN400_VIDEO_MB_32MB
- default 64 if CN400_VIDEO_MB_64MB
- default 128 if CN400_VIDEO_MB_128MB
- depends on NORTHBRIDGE_VIA_CN400
-