]> Git Repo - J-u-boot.git/blob - arch/arm/mach-rmobile/Kconfig.64
arm: rmobile: Add HopeRun HiHope RZ/G2N board support
[J-u-boot.git] / arch / arm / mach-rmobile / Kconfig.64
1 if RCAR_GEN3
2
3 menu "Select Target SoC"
4
5 config R8A774A1
6         bool "Renesas SoC R8A774A1"
7         imply CLK_R8A774A1
8         imply PINCTRL_PFC_R8A774A1
9
10 config R8A774B1
11         bool "Renesas SoC R8A774B1"
12         imply CLK_R8A774B1
13         imply PINCTRL_PFC_R8A774B1
14
15 config R8A774C0
16         bool "Renesas SoC R8A774C0"
17         imply CLK_R8A774C0
18
19 config R8A774E1
20         bool "Renesas SoC R8A774E1"
21         imply CLK_R8A774E1
22         imply PINCTRL_PFC_R8A774E1
23
24 config R8A7795
25         bool "Renesas SoC R8A7795"
26         imply CLK_R8A7795
27         imply PINCTRL_PFC_R8A7795
28
29 config R8A7796
30         bool "Renesas SoC R8A7796"
31         imply CLK_R8A7796
32         imply PINCTRL_PFC_R8A7796
33
34 config R8A77965
35         bool "Renesas SoC R8A77965"
36         imply CLK_R8A77965
37         imply PINCTRL_PFC_R8A77965
38
39 config R8A77970
40         bool "Renesas SoC R8A77970"
41         imply CLK_R8A77970
42         imply PINCTRL_PFC_R8A77970
43
44 config R8A77980
45         bool "Renesas SoC R8A77980"
46         imply CLK_R8A77980
47         imply PINCTRL_PFC_R8A77980
48
49 config R8A77990
50         bool "Renesas SoC R8A77990"
51         imply CLK_R8A77990
52         imply PINCTRL_PFC_R8A77990
53
54 config R8A77995
55         bool "Renesas SoC R8A77995"
56         imply CLK_R8A77995
57         imply PINCTRL_PFC_R8A77995
58
59 endmenu
60
61 choice
62         prompt "Renesas ARM64 SoCs board select"
63         optional
64
65 config TARGET_BEACON_RZG2H
66         bool "Beacon EmbeddedWorks RZ/G2H Dev Kit"
67         select R8A774E1
68         select PINCTRL_PFC_R8A774E1
69
70 config TARGET_BEACON_RZG2M
71         bool "Beacon EmbeddedWorks RZ/G2M Dev Kit"
72         select R8A774A1
73         select PINCTRL_PFC_R8A774A1
74
75 config TARGET_BEACON_RZG2N
76         bool "Beacon EmbeddedWorks RZ/G2N Dev Kit"
77         select R8A774B1
78         select PINCTRL_PFC_R8A774B1
79
80 config TARGET_CONDOR
81         bool "Condor board"
82         imply R8A77980
83         help
84           Support for Renesas R-Car Gen3 Condor platform
85
86 config TARGET_DRAAK
87         bool "Draak board"
88         imply R8A77995
89         help
90           Support for Renesas R-Car Gen3 Draak platform
91
92 config TARGET_EAGLE
93         bool "Eagle board"
94         imply R8A77970
95         help
96           Support for Renesas R-Car Gen3 Eagle platform
97
98 config TARGET_EBISU
99         bool "Ebisu board"
100         imply R8A77990
101         help
102           Support for Renesas R-Car Gen3 Ebisu platform
103
104 config TARGET_HIHOPE_RZG2
105         bool "HiHope RZ/G2 board"
106         imply R8A774A1
107         imply R8A774B1
108         imply SYS_MALLOC_F
109         imply MULTI_DTB_FIT
110         imply MULTI_DTB_FIT_USER_DEFINED_AREA
111         help
112           Support for RZG2 HiHope platform
113
114 config TARGET_SALVATOR_X
115         bool "Salvator-X board"
116         imply R8A7795
117         imply R8A7796
118         imply R8A77965
119         imply SYS_MALLOC_F
120         imply MULTI_DTB_FIT
121         imply MULTI_DTB_FIT_USER_DEFINED_AREA
122         help
123           Support for Renesas R-Car Gen3 platform
124
125 config TARGET_ULCB
126         bool "ULCB board"
127         imply R8A7795
128         imply R8A7796
129         imply R8A77965
130         imply SYS_MALLOC_F
131         imply MULTI_DTB_FIT
132         imply MULTI_DTB_FIT_USER_DEFINED_AREA
133         help
134           Support for Renesas R-Car Gen3 ULCB platform
135
136 endchoice
137
138 config SYS_SOC
139         default "rmobile"
140
141 source "board/renesas/condor/Kconfig"
142 source "board/renesas/draak/Kconfig"
143 source "board/renesas/eagle/Kconfig"
144 source "board/renesas/ebisu/Kconfig"
145 source "board/renesas/salvator-x/Kconfig"
146 source "board/renesas/ulcb/Kconfig"
147 source "board/beacon/beacon-rzg2m/Kconfig"
148 source "board/hoperun/hihope-rzg2/Kconfig"
149
150 config MULTI_DTB_FIT_UNCOMPRESS_SZ
151         default 0x80000 if TARGET_HIHOPE_RZG2
152         default 0x80000 if TARGET_SALVATOR_X
153         default 0x80000 if TARGET_ULCB
154
155 config MULTI_DTB_FIT_USER_DEF_ADDR
156         default 0x49000000 if TARGET_HIHOPE_RZG2
157         default 0x49000000 if TARGET_SALVATOR_X
158         default 0x49000000 if TARGET_ULCB
159
160 config SYS_MALLOC_F_LEN
161         default 0x8000 if RCAR_GEN3
162
163 endif
This page took 0.034568 seconds and 4 git commands to generate.