1if TARGET_VCT 2 3config SYS_BOARD 4 default "vct" 5 6config SYS_VENDOR 7 default "micronas" 8 9config SYS_CONFIG_NAME 10 default "vct" 11 12config SYS_TEXT_BASE 13 default 0x87000000 14 15config SYS_DCACHE_SIZE 16 default 16384 17 18config SYS_DCACHE_LINE_SIZE 19 default 32 20 21config SYS_ICACHE_SIZE 22 default 16384 23 24config SYS_ICACHE_LINE_SIZE 25 default 32 26 27menu "vct board options" 28 29choice 30 prompt "Board variant" 31 optional 32 33config VCT_PLATINUM 34 bool "Enable VCT_PLATINUM" 35 36config VCT_PLATINUMAVC 37 bool "Enable VCT_PLATINUMAVC" 38 39config VCT_PREMIUM 40 bool "Enable VCT_PLATINUMAVC" 41 42endchoice 43 44config VCT_ONENAND 45 bool "Enable VCT_ONENAND" 46 47config VCT_SMALL_IMAGE 48 bool "Enable VCT_SMALL_IMAGE" 49 50endmenu 51 52endif 53