blob: 41893920cb4de6c518e22a7655407a7623c837bf [file] [log] [blame]
Heiko Stuebnerfc367852019-07-16 22:18:21 +02001if ROCKCHIP_PX30
2
3config TARGET_EVB_PX30
4 bool "EVB_PX30"
Jagan Tekic6e50172020-10-28 19:03:43 +05305 help
6 This target config option used for below listed px30 boards.
7
8 EVB_PX30:
9 * EVB_PX30 is an evaluation board for Rockchip PX30.
Heiko Stuebnerfc367852019-07-16 22:18:21 +020010
Heiko Stuebnera9ca71e2020-07-01 11:28:42 +020011config TARGET_ODROID_GO2
12 bool "ODROID_GO2"
13
Jagan Teki57a0a562020-10-28 19:03:45 +053014config TARGET_PX30_CORE
15 bool "Engicam PX30.Core"
16 help
17 PX30.Core EDIMM2.2:
18 * PX30.Core is an EDIMM SOM based on Rockchip PX30 from Engicam.
19 * EDIMM2.2 is a Form Factor Capacitive Evaluation Board from Engicam.
20 * PX30.Core needs to mount on top of EDIMM2.2 for creating complete
21 PX30.Core EDIMM2.2 Starter Kit.
22
Jagan Tekic7a3d132020-10-28 19:03:47 +053023 PX30.Core CTOUCH2:
24 * PX30.Core is an EDIMM SOM based on Rockchip PX30 from Engicam.
25 * CTOUCH2.0 is a general purpose Carrier board with capacitive
26 touch interface support.
27 * PX30.Core needs to mount on top of CTOUCH2.0 for creating complete
28 PX30.Core C.TOUCH Carrier board.
29
Jagan Teki19e0c952021-11-15 23:08:21 +053030 PX30.Core CTOUCH2-OF10:
31 * PX30.Core is an EDIMM SOM based on Rockchip PX30 from Engicam.
32 * CTOUCH2.0 is a general purpose Carrier board with capacitive
33 touch interface support.
34 * 10.1" OF is a capacitive touch 10.1" Open Frame panel solutions.
35 * PX30.Core needs to mount on top of C.TOUCH 2.0 carrier with pluged
36 10.1" OF for creating complete PX30.Core C.TOUCH 2.0 10.1" Open Frame.
37
Quentin Schulz00a6f602023-01-09 11:36:45 +010038config TARGET_RINGNECK_PX30
39 bool "Theobroma Systems PX30-µQ7 (Ringneck)"
40 help
41 The PX30-uQ7 (Ringneck) SoM is a µQseven-compatible (40mmx70mm,
42 MXM-230 connector) system-on-module from Theobroma Systems[1],
43 featuring the Rockchip PX30.
44
45 It provides the following feature set:
46 * up to 4GB DDR4
47 * up to 128GB on-module eMMC (with 8-bit 1.8V interface)
48 * SD card (on a baseboard) via edge connector
49 * Fast Ethernet with on-module TI DP83825I PHY
50 * MIPI-DSI/LVDS
51 * MIPI-CSI
52 * USB
53 - 1x USB 2.0 dual-role
54 - 3x USB 2.0 host
55 * on-module companion controller (STM32 Cortex-M0 or ATtiny), implementing:
56 - low-power RTC functionality (ISL1208 emulation)
57 - fan controller (AMC6821 emulation)
58 - USB<->CAN bridge controller (STM32 only)
59 * on-module Espressif ESP32 for Bluetooth + 2.4GHz WiFi
60 * on-module NXP SE05x Secure Element
61
Heiko Stuebnerfc367852019-07-16 22:18:21 +020062config ROCKCHIP_BOOT_MODE_REG
63 default 0xff010200
64
Johan Jonkerf6fc8952022-04-09 18:55:02 +020065config ROCKCHIP_STIMER_BASE
66 default 0xff220020
67
Heiko Stuebnerfc367852019-07-16 22:18:21 +020068config SYS_SOC
69 default "px30"
70
71config SYS_MALLOC_F_LEN
72 default 0x400
73
Simon Glassf4d60392021-08-08 12:20:12 -060074config SPL_SERIAL
Heiko Stuebnerfc367852019-07-16 22:18:21 +020075 default y
76
77config TPL_LDSCRIPT
78 default "arch/arm/mach-rockchip/u-boot-tpl-v8.lds"
79
80config TPL_TEXT_BASE
81 default 0xff0e1000
82
Heiko Stuebnerfc367852019-07-16 22:18:21 +020083config TPL_STACK
84 default 0xff0e4fff
85
Paul Kocialkowski7250b232019-11-28 15:27:51 +010086config DEBUG_UART_CHANNEL
87 int "Mux channel to use for debug UART2/UART3"
Heiko Stuebnerfc367852019-07-16 22:18:21 +020088 depends on DEBUG_UART_BOARD_INIT
89 default 0
90 help
Paul Kocialkowski7250b232019-11-28 15:27:51 +010091 UART2 and UART3 can use two different set of pins to route the output.
Heiko Stuebnerfc367852019-07-16 22:18:21 +020092 For using the UART for early debugging the route to use needs
93 to be declared (0 or 1).
94
Jagan Teki57a0a562020-10-28 19:03:45 +053095source "board/engicam/px30_core/Kconfig"
Heiko Stuebnera9ca71e2020-07-01 11:28:42 +020096source "board/hardkernel/odroid_go2/Kconfig"
Heiko Stuebnerfc367852019-07-16 22:18:21 +020097source "board/rockchip/evb_px30/Kconfig"
Quentin Schulz00a6f602023-01-09 11:36:45 +010098source "board/theobroma-systems/ringneck_px30/Kconfig"
Heiko Stuebnerfc367852019-07-16 22:18:21 +020099
100endif