aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/i855/Kconfig
diff options
context:
space:
mode:
authorMartin Roth <gaumless@gmail.com>2017-10-15 14:52:44 -0600
committerMartin Roth <martinroth@google.com>2018-01-15 23:24:43 +0000
commit779b32beffae83ece727a43f2ce216513bf66c15 (patch)
treefeb93fadaf6e91ff1ab58a66f00ab90d6b8bafd5 /src/northbridge/intel/i855/Kconfig
parent0026a53562595cafb466e4ff836c50a7817d5297 (diff)
Intel i855 board & chips: Remove - using LATE_CBMEM_INIT
All boards and chips that are still using LATE_CBMEM_INIT are being removed as previously discussed. If these boards and chips are updated to not use LATE_CBMEM_INIT, they can be restored to the active codebase from the 4.7 branch. chips: northbridge/intel/i855 Mainboards: mainboard/lanner/em8510 Change-Id: Ic9ba0ba7e2b6e602a5749cc531dd705c49e3f08d Signed-off-by: Martin Roth <gaumless@gmail.com> Reviewed-on: https://review.coreboot.org/22029 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/northbridge/intel/i855/Kconfig')
-rw-r--r--src/northbridge/intel/i855/Kconfig35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/northbridge/intel/i855/Kconfig b/src/northbridge/intel/i855/Kconfig
deleted file mode 100644
index a9439dcd40..0000000000
--- a/src/northbridge/intel/i855/Kconfig
+++ /dev/null
@@ -1,35 +0,0 @@
-config NORTHBRIDGE_INTEL_I855
- bool
- select NO_MMCONF_SUPPORT
- select HAVE_DEBUG_RAM_SETUP
- select LATE_CBMEM_INIT
-
-choice
- prompt "Onboard graphics"
- default I855_VIDEO_MB_8MB
- depends on NORTHBRIDGE_INTEL_I855
-
-config I855_VIDEO_MB_OFF
- bool "Disabled, 0KB"
-config I855_VIDEO_MB_1MB
- bool "Enabled, 1MB"
-config I855_VIDEO_MB_4MB
- bool "Enabled, 4MB"
-config I855_VIDEO_MB_8MB
- bool "Enabled, 8MB"
-config I855_VIDEO_MB_16MB
- bool "Enabled, 16MB"
-config I855_VIDEO_MB_32MB
- bool "Enabled, 32MB"
-
-endchoice
-
-config VIDEO_MB
- int
- default 0 if I855_VIDEO_MB_OFF
- default 1 if I855_VIDEO_MB_1MB
- default 4 if I855_VIDEO_MB_4MB
- default 8 if I855_VIDEO_MB_8MB
- default 16 if I855_VIDEO_MB_16MB
- default 32 if I855_VIDEO_MB_32MB
- depends on NORTHBRIDGE_INTEL_I855