Nobuhiro Iwamatsu | 7a500a7 | 2016-06-17 13:52:13 +0900 | [diff] [blame] | 1 | if RCAR_32 |
| 2 | |
| 3 | choice |
| 4 | prompt "Renesus ARM SoCs board select" |
| 5 | optional |
| 6 | |
| 7 | config TARGET_ARMADILLO_800EVA |
| 8 | bool "armadillo 800 eva board" |
| 9 | |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 10 | config TARGET_BLANCHE |
| 11 | bool "Blanche board" |
| 12 | select DM |
| 13 | select DM_SERIAL |
| 14 | |
Nobuhiro Iwamatsu | 7a500a7 | 2016-06-17 13:52:13 +0900 | [diff] [blame] | 15 | config TARGET_GOSE |
| 16 | bool "Gose board" |
| 17 | select DM |
| 18 | select DM_SERIAL |
| 19 | |
| 20 | config TARGET_KOELSCH |
| 21 | bool "Koelsch board" |
| 22 | select DM |
| 23 | select DM_SERIAL |
| 24 | |
| 25 | config TARGET_LAGER |
| 26 | bool "Lager board" |
| 27 | select DM |
| 28 | select DM_SERIAL |
| 29 | |
| 30 | config TARGET_KZM9G |
| 31 | bool "KZM9D board" |
| 32 | |
| 33 | config TARGET_ALT |
| 34 | bool "Alt board" |
| 35 | select DM |
| 36 | select DM_SERIAL |
| 37 | |
| 38 | config TARGET_SILK |
| 39 | bool "Silk board" |
| 40 | select DM |
| 41 | select DM_SERIAL |
| 42 | |
| 43 | config TARGET_PORTER |
| 44 | bool "Porter board" |
| 45 | select DM |
| 46 | select DM_SERIAL |
| 47 | |
| 48 | config TARGET_STOUT |
| 49 | bool "Stout board" |
| 50 | select DM |
| 51 | select DM_SERIAL |
| 52 | |
| 53 | endchoice |
| 54 | |
| 55 | config SYS_SOC |
| 56 | default "rmobile" |
| 57 | |
| 58 | config RMOBILE_EXTRAM_BOOT |
| 59 | bool "Enable boot from RAM" |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 60 | depends on TARGET_ALT || TARGET_BLANCHE || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK || TARGET_STOUT |
Nobuhiro Iwamatsu | 7a500a7 | 2016-06-17 13:52:13 +0900 | [diff] [blame] | 61 | default n |
| 62 | |
| 63 | choice |
| 64 | prompt "Qos setting primary" |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 65 | depends on TARGET_ALT || TARGET_BLANCHE || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER |
Nobuhiro Iwamatsu | 7a500a7 | 2016-06-17 13:52:13 +0900 | [diff] [blame] | 66 | default QOS_PRI_NORMAL |
| 67 | |
| 68 | config QOS_PRI_NORMAL |
| 69 | bool "Non primary" |
| 70 | help |
| 71 | Select normal mode for QoS setting. |
| 72 | |
| 73 | config QOS_PRI_MEDIA |
| 74 | bool "Media primary" |
| 75 | help |
| 76 | Select multimedia primary mode for QoS setting. |
| 77 | |
| 78 | config QOS_PRI_GFX |
| 79 | bool "GFX primary" |
| 80 | help |
| 81 | Select GFX(graphics) primary mode for QoS setting. |
| 82 | |
| 83 | endchoice |
| 84 | |
| 85 | source "board/atmark-techno/armadillo-800eva/Kconfig" |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 86 | source "board/renesas/blanche/Kconfig" |
Nobuhiro Iwamatsu | 7a500a7 | 2016-06-17 13:52:13 +0900 | [diff] [blame] | 87 | source "board/renesas/gose/Kconfig" |
| 88 | source "board/renesas/koelsch/Kconfig" |
| 89 | source "board/renesas/lager/Kconfig" |
| 90 | source "board/kmc/kzm9g/Kconfig" |
| 91 | source "board/renesas/alt/Kconfig" |
| 92 | source "board/renesas/silk/Kconfig" |
| 93 | source "board/renesas/porter/Kconfig" |
| 94 | source "board/renesas/stout/Kconfig" |
| 95 | |
| 96 | endif |