• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisión89b7f25b3214a38f3aead5c266cfa005f9c6948b (tree)
Tiempo2020-07-26 18:09:12
AutorYoshinori Sato <ysato@user...>
CommiterYoshinori Sato

Log Message

rx/Kconfig Add target.

Cambiar Resumen

Diferencia incremental

--- a/arch/rx/Kconfig
+++ b/arch/rx/Kconfig
@@ -8,21 +8,35 @@ choice
88 prompt "Target select"
99 optional
1010
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
1415
1516 config TARGET_TKDN_ULT62N
1617 bool "Tokuden Ultimate RX62N"
1718 select CPU_RX62N
1819
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
1929 endchoice
2030
21-config CPU_RX610
31+config CPU_RX62N
2232 bool
2333 select DM_SERIAL
2434
25-config CPU_RX62N
35+config CPU_RX64N
36+ bool
37+ select DM_SERIAL
38+
39+config CPU_RX72M
2640 bool
2741 select DM_SERIAL
2842
@@ -30,10 +44,14 @@ config SYS_ARCH
3044 default "rx"
3145
3246 config SYS_CPU
33- default "rx600" if CPU_RX610
3447 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
3551
36-source "board/rxsim/Kconfig"
52+source "board/qemu-rx/Kconfig"
3753 source "board/tokuden/ult62n/Kconfig"
54+source "board/alphaproject/ap_rx64m_0a/Kconfig"
55+source "board/alphaproject/ap_rx72m_0a/Kconfig"
3856
3957 endmenu