blob: 9f3ad4f623b054765117c59372791b6976b94fa2 [file] [log] [blame]
Heiko Stuebnere9ccb2f2019-07-16 22:18:21 +02001if ROCKCHIP_PX30
2
3config TARGET_EVB_PX30
4 bool "EVB_PX30"
5
6config ROCKCHIP_BOOT_MODE_REG
7 default 0xff010200
8
9config SYS_SOC
10 default "px30"
11
12config SYS_MALLOC_F_LEN
13 default 0x400
14
15config SPL_SERIAL_SUPPORT
16 default y
17
18config TPL_LDSCRIPT
19 default "arch/arm/mach-rockchip/u-boot-tpl-v8.lds"
20
21config TPL_TEXT_BASE
22 default 0xff0e1000
23
24config TPL_MAX_SIZE
25 default 10240
26
27config TPL_STACK
28 default 0xff0e4fff
29
Paul Kocialkowskiec4fafd2019-11-28 15:27:51 +010030config DEBUG_UART_CHANNEL
31 int "Mux channel to use for debug UART2/UART3"
Heiko Stuebnere9ccb2f2019-07-16 22:18:21 +020032 depends on DEBUG_UART_BOARD_INIT
33 default 0
34 help
Paul Kocialkowskiec4fafd2019-11-28 15:27:51 +010035 UART2 and UART3 can use two different set of pins to route the output.
Heiko Stuebnere9ccb2f2019-07-16 22:18:21 +020036 For using the UART for early debugging the route to use needs
37 to be declared (0 or 1).
38
39source "board/rockchip/evb_px30/Kconfig"
40
41endif