Patrick Georgi | 0588d19 | 2009-08-12 15:00:51 +0000 | [diff] [blame] | 1 | config NORTHBRIDGE_VIA_CX700 |
| 2 | bool |
Jens Rottmann | 0d11f2d | 2010-08-26 12:46:02 +0000 | [diff] [blame] | 3 | select HAVE_DEBUG_RAM_SETUP |
| 4 | select HAVE_DEBUG_SMBUS |
Stefan Reinauer | 389240f | 2010-02-05 16:10:01 +0000 | [diff] [blame] | 5 | select HAVE_HARD_RESET |
| 6 | select IOAPIC |
| 7 | select SMP |
Kyösti Mälkki | 3bf3854 | 2014-12-18 22:22:04 +0200 | [diff] [blame] | 8 | select LATE_CBMEM_INIT |
Patrick Georgi | 0523875 | 2009-10-08 15:12:31 +0000 | [diff] [blame] | 9 | |
Stefan Reinauer | 714e2a1 | 2010-04-24 23:15:23 +0000 | [diff] [blame] | 10 | # TODO: What should be the per-chipset default value here? |
| 11 | choice |
| 12 | prompt "Onboard graphics" |
| 13 | default CX700_VIDEO_MB_32MB |
Patrick Georgi | 0523875 | 2009-10-08 15:12:31 +0000 | [diff] [blame] | 14 | depends on NORTHBRIDGE_VIA_CX700 |
| 15 | |
Stefan Reinauer | 714e2a1 | 2010-04-24 23:15:23 +0000 | [diff] [blame] | 16 | # TODO: Setting the amount of gfx memory is not yet supported in the source code. |
| 17 | config CX700_VIDEO_MB_OFF |
| 18 | bool "Disabled, 0KB" |
| 19 | config CX700_VIDEO_MB_8MB |
| 20 | bool "Enabled, 8MB" |
| 21 | config CX700_VIDEO_MB_16MB |
| 22 | bool "Enabled, 16MB" |
| 23 | config CX700_VIDEO_MB_32MB |
| 24 | bool "Enabled, 32MB" |
| 25 | config CX700_VIDEO_MB_64MB |
| 26 | bool "Enabled, 64MB" |
| 27 | config CX700_VIDEO_MB_128MB |
| 28 | bool "Enabled, 128MB" |
| 29 | |
| 30 | endchoice |
| 31 | |
Patrick Georgi | 9aeb694 | 2012-10-05 21:54:38 +0200 | [diff] [blame] | 32 | if NORTHBRIDGE_VIA_CX700 |
| 33 | |
Stefan Reinauer | 714e2a1 | 2010-04-24 23:15:23 +0000 | [diff] [blame] | 34 | config VIDEO_MB |
| 35 | int |
| 36 | default 0 if CX700_VIDEO_MB_OFF |
| 37 | default 8 if CX700_VIDEO_MB_8MB |
| 38 | default 16 if CX700_VIDEO_MB_16MB |
| 39 | default 32 if CX700_VIDEO_MB_32MB |
| 40 | default 64 if CX700_VIDEO_MB_64MB |
| 41 | default 128 if CX700_VIDEO_MB_128MB |
Patrick Georgi | 0523875 | 2009-10-08 15:12:31 +0000 | [diff] [blame] | 42 | |
Patrick Georgi | 9aeb694 | 2012-10-05 21:54:38 +0200 | [diff] [blame] | 43 | config HPET_ADDRESS_OVERRIDE |
| 44 | def_bool y |
| 45 | |
| 46 | config HPET_ADDRESS |
| 47 | hex |
| 48 | default 0xfe800000 |
| 49 | |
| 50 | config HPET_MIN_TICKS |
| 51 | hex |
| 52 | default 0x90 |
| 53 | |
| 54 | endif |