imx: imx8qm/qxp: check whether m4 partition booted
[oweals/u-boot.git] / arch / sh / Kconfig
1 menu "SuperH architecture"
2         depends on SH
3
4 config CPU_SH4
5         bool
6
7 config CPU_SH4A
8         bool
9         select CPU_SH4
10
11 config SH_32BIT
12         bool "32bit mode"
13         depends on CPU_SH4A
14         default n
15         help
16           SH4A has 2 physical memory maps. This use 32bit mode.
17           And this is board specific. Please check your board if you
18           want to use this.
19
20 choice
21         prompt "Target select"
22         optional
23
24 config TARGET_MIGOR
25         bool "Migo-R"
26         select CPU_SH4
27
28 config TARGET_R2DPLUS
29         bool "Renesas R2D-PLUS"
30         select CPU_SH4
31
32 config TARGET_R7780MP
33         bool "R7780MP board"
34         select CPU_SH4A
35
36 config TARGET_SH7752EVB
37         bool "SH7752EVB"
38         select CPU_SH4A
39
40 config TARGET_SH7753EVB
41         bool "SH7753EVB"
42         select CPU_SH4
43
44 config TARGET_SH7757LCR
45         bool "SH7757LCR"
46         select CPU_SH4A
47
48 config TARGET_SH7763RDP
49         bool "SH7763RDP"
50         select CPU_SH4
51
52 endchoice
53
54 config SYS_ARCH
55         default "sh"
56
57 config SYS_CPU
58         default "sh4" if CPU_SH4
59
60 source "arch/sh/lib/Kconfig"
61
62 source "board/renesas/MigoR/Kconfig"
63 source "board/renesas/r2dplus/Kconfig"
64 source "board/renesas/r7780mp/Kconfig"
65 source "board/renesas/sh7752evb/Kconfig"
66 source "board/renesas/sh7753evb/Kconfig"
67 source "board/renesas/sh7757lcr/Kconfig"
68 source "board/renesas/sh7763rdp/Kconfig"
69
70 endmenu