blob: 8ec1920d192e1c9f2cb8bb898f0810d97e4546a1 [file] [log] [blame]
Simon Glass2444dae2015-08-30 16:55:38 -06001if ROCKCHIP_RK3288
2
Simon Glass17aa5482015-08-30 16:55:41 -06003config TARGET_FIREFLY_RK3288
4 bool "Firefly-RK3288"
5 help
6 Firefly is a RK3288-based development board with 2 USB ports,
7 HDMI, VGA, micro-SD card, audio, WiFi and Gigabit Ethernet, It
8 also includes on-board eMMC and 1GB of SDRAM. Expansion connectors
9 provide access to display pins, I2C, SPI, UART and GPIOs.
10
Xu Ziyuan744368d2016-07-05 18:06:30 +080011config TARGET_EVB_RK3288
12 bool "Evb-RK3288"
13 help
14 EVB-RK3288 is a RK3288-based development board with 2 USB ports,
15 HDMI, VGA, micro-SD card, audio, WiFi and Gigabit Ethernet, It
16 also includes on-board eMMC and 2GB of SDRAM. Expansion connectors
17 provide access to display pins, I2C, SPI, UART and GPIOs.
18
jk.kernel@gmail.comd7ca67b2016-07-26 18:28:29 +080019config TARGET_FENNEC_RK3288
20 bool "Fennec-RK3288"
21 help
22 Fennec is a RK3288-based development board with 2 USB ports,
23 HDMI, micro-SD card, audio, WiFi and Gigabit Ethernet. It also
24 includes on-board eMMC and 2GB of SDRAM. Expansion connectors
25 provide access to display pins, I2C, SPI, UART and GPIOs.
26
jk.kernel@gmail.comdd63fbc2016-07-26 18:28:30 +080027config TARGET_POPMETAL_RK3288
28 bool "PopMetal-RK3288"
29 help
30 PopMetal is a RK3288-based development board with 3 USB host ports,
31 1 micro USB OTG port, HDMI, VGA, micro-SD card, audio, WiFi, Gigabit
32 Ethernet and lots of sensors. It also includes on-board 8 GeMMC and
33 2GB DDR3. Expansion connectors provide access to I2C, SPI, UART,
34 GPIOs and display interface.
35
Simon Glasse2e947f2015-08-30 16:55:42 -060036config TARGET_CHROMEBOOK_JERRY
37 bool "Google/Rockchip Veyron-Jerry Chromebook"
38 help
39 Jerry is a RK3288-based clamshell device with 2 USB 3.0 ports,
40 HDMI, an 11.9 inch EDP display, micro-SD card, touchpad and
41 WiFi. It includes a Chrome OS EC (Cortex-M3) to provide access to
42 the keyboard and battery functions.
43
Simon Glass7c1058f2016-01-21 19:45:24 -070044config TARGET_ROCK2
45 bool "Radxa Rock 2"
46 help
47 Rock 2 is a SOM and base-board combination based on RK3288. It
48 includes Ethernet, HDMI, 3 USB, micro-SD, audio, SATA, WiFi and
49 space for a real-time-clock battery. There is also an expansion
50 interface which provides access to many pins.
51
Simon Glassdae594f2016-01-21 19:45:17 -070052config ROCKCHIP_FAST_SPL
53 bool "Change the CPU to full speed in SPL"
54 depends on TARGET_CHROMEBOOK_JERRY
55 help
56 Some boards want to boot as fast as possible. We can increase the
57 CPU frequency in SPL if the power supply is configured to the correct
58 voltage. This option is only available on boards which support it
59 and have the required PMIC code.
60
Simon Glass2444dae2015-08-30 16:55:38 -060061config SYS_SOC
62 default "rockchip"
63
huang lin81178032015-11-17 14:20:10 +080064config SYS_MALLOC_F_LEN
65 default 0x0800
66
Simon Glasse2e947f2015-08-30 16:55:42 -060067source "board/google/chromebook_jerry/Kconfig"
68
Simon Glass17aa5482015-08-30 16:55:41 -060069source "board/firefly/firefly-rk3288/Kconfig"
70
Simon Glass7c1058f2016-01-21 19:45:24 -070071source "board/radxa/rock2/Kconfig"
72
jk.kernel@gmail.comcba6bb12016-07-26 18:28:27 +080073source "board/rockchip/evb_rk3288/Kconfig"
Xu Ziyuan744368d2016-07-05 18:06:30 +080074
jk.kernel@gmail.comd7ca67b2016-07-26 18:28:29 +080075source "board/rockchip/fennec_rk3288/Kconfig"
76
jk.kernel@gmail.comdd63fbc2016-07-26 18:28:30 +080077source "board/chipspark/popmetal_rk3288/Kconfig"
78
Simon Glass2444dae2015-08-30 16:55:38 -060079endif