1if RCAR_32 2 3config RCAR_GEN2 4 bool "Renesas RCar Gen2" 5 6config R8A7740 7 bool "Renesas SoC R8A7740" 8 9config R8A7790 10 bool "Renesas SoC R8A7790" 11 select RCAR_GEN2 12 13config R8A7791 14 bool "Renesas SoC R8A7791" 15 select RCAR_GEN2 16 17config R8A7792 18 bool "Renesas SoC R8A7792" 19 select RCAR_GEN2 20 21config R8A7793 22 bool "Renesas SoC R8A7793" 23 select RCAR_GEN2 24 25config R8A7794 26 bool "Renesas SoC R8A7794" 27 select RCAR_GEN2 28 29choice 30 prompt "Renesas ARM SoCs board select" 31 optional 32 33config TARGET_ARMADILLO_800EVA 34 bool "armadillo 800 eva board" 35 36config TARGET_BLANCHE 37 bool "Blanche board" 38 select DM 39 select DM_SERIAL 40 41config TARGET_GOSE 42 bool "Gose board" 43 select DM 44 select DM_SERIAL 45 46config TARGET_KOELSCH 47 bool "Koelsch board" 48 select DM 49 select DM_SERIAL 50 51config TARGET_LAGER 52 bool "Lager board" 53 select DM 54 select DM_SERIAL 55 56config TARGET_KZM9G 57 bool "KZM9D board" 58 59config TARGET_ALT 60 bool "Alt board" 61 select DM 62 select DM_SERIAL 63 64config TARGET_SILK 65 bool "Silk board" 66 select DM 67 select DM_SERIAL 68 69config TARGET_PORTER 70 bool "Porter board" 71 select DM 72 select DM_SERIAL 73 select SUPPORT_SPL 74 select SPL_DM if SPL 75 76config TARGET_STOUT 77 bool "Stout board" 78 select DM 79 select DM_SERIAL 80 81endchoice 82 83config SYS_SOC 84 default "rmobile" 85 86config RMOBILE_EXTRAM_BOOT 87 bool "Enable boot from RAM" 88 depends on TARGET_ALT || TARGET_BLANCHE || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK || TARGET_STOUT 89 default n 90 91choice 92 prompt "Qos setting primary" 93 depends on TARGET_ALT || TARGET_BLANCHE || TARGET_GOSE || TARGET_KOELSCH || TARGET_LAGER 94 default QOS_PRI_NORMAL 95 96config QOS_PRI_NORMAL 97 bool "Non primary" 98 help 99 Select normal mode for QoS setting. 100 101config QOS_PRI_MEDIA 102 bool "Media primary" 103 help 104 Select multimedia primary mode for QoS setting. 105 106config QOS_PRI_GFX 107 bool "GFX primary" 108 help 109 Select GFX(graphics) primary mode for QoS setting. 110 111endchoice 112 113source "board/atmark-techno/armadillo-800eva/Kconfig" 114source "board/renesas/blanche/Kconfig" 115source "board/renesas/gose/Kconfig" 116source "board/renesas/koelsch/Kconfig" 117source "board/renesas/lager/Kconfig" 118source "board/kmc/kzm9g/Kconfig" 119source "board/renesas/alt/Kconfig" 120source "board/renesas/silk/Kconfig" 121source "board/renesas/porter/Kconfig" 122source "board/renesas/stout/Kconfig" 123 124endif 125