Revisión | 89b7f25b3214a38f3aead5c266cfa005f9c6948b (tree) |
---|---|
Tiempo | 2020-07-26 18:09:12 |
Autor | Yoshinori Sato <ysato@user...> |
Commiter | Yoshinori Sato |
rx/Kconfig Add target.
@@ -8,21 +8,35 @@ choice | ||
8 | 8 | prompt "Target select" |
9 | 9 | optional |
10 | 10 | |
11 | -config TARGET_RX_SIM | |
12 | - bool "RX Simulator" | |
13 | - select CPU_RX610 | |
11 | +config TARGET_RX_QEMU | |
12 | + bool "QEMU rx-virt" | |
13 | + select CPU_RX62N | |
14 | + select ENV_IS_NOWHERE | |
14 | 15 | |
15 | 16 | config TARGET_TKDN_ULT62N |
16 | 17 | bool "Tokuden Ultimate RX62N" |
17 | 18 | select CPU_RX62N |
18 | 19 | |
20 | +config TARGET_AP_RX64M | |
21 | + bool "Alpha project AP-RX64M-0A" | |
22 | + select CPU_RX64M | |
23 | + select BOARD_EARLY_INIT_F | |
24 | + | |
25 | +config TARGET_AP_RX72M | |
26 | + bool "Alpha project AP-RX72M-0A" | |
27 | + select CPU_RX72M | |
28 | + select BOARD_EARLY_INIT_F | |
19 | 29 | endchoice |
20 | 30 | |
21 | -config CPU_RX610 | |
31 | +config CPU_RX62N | |
22 | 32 | bool |
23 | 33 | select DM_SERIAL |
24 | 34 | |
25 | -config CPU_RX62N | |
35 | +config CPU_RX64N | |
36 | + bool | |
37 | + select DM_SERIAL | |
38 | + | |
39 | +config CPU_RX72M | |
26 | 40 | bool |
27 | 41 | select DM_SERIAL |
28 | 42 |
@@ -30,10 +44,14 @@ config SYS_ARCH | ||
30 | 44 | default "rx" |
31 | 45 | |
32 | 46 | config SYS_CPU |
33 | - default "rx600" if CPU_RX610 | |
34 | 47 | default "rx600" if CPU_RX62N |
48 | + default "rxv2" if CPU_RX64M | |
49 | +# RX72M is RXv3. But same code of RXv2 | |
50 | + default "rxv2" if CPU_RX72M | |
35 | 51 | |
36 | -source "board/rxsim/Kconfig" | |
52 | +source "board/qemu-rx/Kconfig" | |
37 | 53 | source "board/tokuden/ult62n/Kconfig" |
54 | +source "board/alphaproject/ap_rx64m_0a/Kconfig" | |
55 | +source "board/alphaproject/ap_rx72m_0a/Kconfig" | |
38 | 56 | |
39 | 57 | endmenu |