blob: f5373c6f9f0a063ef4a39e67dad3f73585e69f1d [file] [log] [blame]
Heiko Stuebnerfc367852019-07-16 22:18:21 +02001if ROCKCHIP_PX30
2
3config TARGET_EVB_PX30
4 bool "EVB_PX30"
5
Heiko Stuebnera9ca71e2020-07-01 11:28:42 +02006config TARGET_ODROID_GO2
7 bool "ODROID_GO2"
8
Heiko Stuebnerfc367852019-07-16 22:18:21 +02009config ROCKCHIP_BOOT_MODE_REG
10 default 0xff010200
11
12config SYS_SOC
13 default "px30"
14
15config SYS_MALLOC_F_LEN
16 default 0x400
17
18config SPL_SERIAL_SUPPORT
19 default y
20
21config TPL_LDSCRIPT
22 default "arch/arm/mach-rockchip/u-boot-tpl-v8.lds"
23
24config TPL_TEXT_BASE
25 default 0xff0e1000
26
27config TPL_MAX_SIZE
28 default 10240
29
30config TPL_STACK
31 default 0xff0e4fff
32
Paul Kocialkowski7250b232019-11-28 15:27:51 +010033config DEBUG_UART_CHANNEL
34 int "Mux channel to use for debug UART2/UART3"
Heiko Stuebnerfc367852019-07-16 22:18:21 +020035 depends on DEBUG_UART_BOARD_INIT
36 default 0
37 help
Paul Kocialkowski7250b232019-11-28 15:27:51 +010038 UART2 and UART3 can use two different set of pins to route the output.
Heiko Stuebnerfc367852019-07-16 22:18:21 +020039 For using the UART for early debugging the route to use needs
40 to be declared (0 or 1).
41
Heiko Stuebnera9ca71e2020-07-01 11:28:42 +020042source "board/hardkernel/odroid_go2/Kconfig"
Heiko Stuebnerfc367852019-07-16 22:18:21 +020043source "board/rockchip/evb_px30/Kconfig"
44
45endif