blob: 54545f378ca77a6637258d8fbcb29776dc21a596 [file] [log] [blame]
Simon Glass2cffe662015-08-30 16:55:38 -06001if ROCKCHIP_RK3288
2
Simon Glassec3be542015-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 Ziyuan3da09a82016-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.comb1aeb092016-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.com7a614ac2016-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
Xu Ziyuan535b3dc2016-08-01 08:46:19 +080036config TARGET_MINIARM_RK3288
37 bool "miniarm-RK3288"
38 help
39 Miniarm is a RK3288-based development board with 2 USB ports, HDMI,
40 micro-SD card, audio, Gigabit Ethernet. It also includes on-board
41 8GB eMMC and 2GB of SDRAM. Expansion connectors provide access to
42 I2C, SPI, UART, GPIOs.
43
Simon Glass9d5d1cc2015-08-30 16:55:42 -060044config TARGET_CHROMEBOOK_JERRY
45 bool "Google/Rockchip Veyron-Jerry Chromebook"
46 help
47 Jerry is a RK3288-based clamshell device with 2 USB 3.0 ports,
48 HDMI, an 11.9 inch EDP display, micro-SD card, touchpad and
49 WiFi. It includes a Chrome OS EC (Cortex-M3) to provide access to
50 the keyboard and battery functions.
51
Simon Glassbf8d7bf2016-11-13 14:22:16 -070052config TARGET_CHROMEBIT_MICKEY
53 bool "Google/Rockchip Veyron-Mickey Chromebit"
54 help
55 Mickey is a small RK3288-based device with one USB 3.0 port, HDMI
56 and WiFi. It has a separate power port and is designed to connect
57 to the HDMI input of a monitor or TV. It has no internal battery.
58 Typically a USB hub or wireless keyboard/touchpad is used to get
59 keyboard and mouse access.
60
Simon Glasse51b2e72016-11-13 14:24:54 -070061config TARGET_CHROMEBOOK_MINNIE
62 bool "Google/Rockchip Veyron-Minnie Chromebook"
63 help
Martin Michlmayr29572242016-12-17 17:40:26 -080064 Minnie is a RK3288-based convertible clamshell device with 2 USB 3.0
Simon Glasse51b2e72016-11-13 14:24:54 -070065 ports, micro HDMI, a 10.1-inch 1280x800 EDP display, micro-SD card,
66 HD camera, touchpad, WiFi and Bluetooth. It includes a Chrome OS
67 EC (Cortex-M3) to provide access to the keyboard and battery
68 functions. It includes 2 or 4GB of SDRAM and 16 or 32GB of
69 internal MMC. The product name is ASUS Chromebook Flip.
70
Simon Glasse513abb2016-01-21 19:45:24 -070071config TARGET_ROCK2
72 bool "Radxa Rock 2"
73 help
74 Rock 2 is a SOM and base-board combination based on RK3288. It
75 includes Ethernet, HDMI, 3 USB, micro-SD, audio, SATA, WiFi and
76 space for a real-time-clock battery. There is also an expansion
77 interface which provides access to many pins.
78
Simon Glass94906e42016-01-21 19:45:17 -070079config ROCKCHIP_FAST_SPL
80 bool "Change the CPU to full speed in SPL"
81 depends on TARGET_CHROMEBOOK_JERRY
82 help
83 Some boards want to boot as fast as possible. We can increase the
84 CPU frequency in SPL if the power supply is configured to the correct
85 voltage. This option is only available on boards which support it
86 and have the required PMIC code.
87
Simon Glass2cffe662015-08-30 16:55:38 -060088config SYS_SOC
89 default "rockchip"
90
huang lin2bf81112015-11-17 14:20:10 +080091config SYS_MALLOC_F_LEN
92 default 0x0800
93
Simon Glassd4c61802016-09-12 23:18:34 -060094config SPL_DRIVERS_MISC_SUPPORT
95 default y
96
Simon Glassf2a89462016-09-12 23:18:41 -060097config SPL_LIBCOMMON_SUPPORT
98 default y
99
Simon Glassb16c92c2016-09-12 23:18:43 -0600100config SPL_LIBGENERIC_SUPPORT
101 default y
102
Simon Glasse076d6f2016-09-12 23:18:56 -0600103config SPL_SERIAL_SUPPORT
104 default y
105
Xu Ziyuan535b3dc2016-08-01 08:46:19 +0800106source "board/chipspark/popmetal_rk3288/Kconfig"
Simon Glass9d5d1cc2015-08-30 16:55:42 -0600107
Simon Glassec3be542015-08-30 16:55:41 -0600108source "board/firefly/firefly-rk3288/Kconfig"
109
Simon Glassba8635d2016-11-13 14:22:10 -0700110source "board/google/veyron/Kconfig"
Xu Ziyuan535b3dc2016-08-01 08:46:19 +0800111
Simon Glasse513abb2016-01-21 19:45:24 -0700112source "board/radxa/rock2/Kconfig"
113
jk.kernel@gmail.com01e0c342016-07-26 18:28:27 +0800114source "board/rockchip/evb_rk3288/Kconfig"
Xu Ziyuan3da09a82016-07-05 18:06:30 +0800115
jk.kernel@gmail.comb1aeb092016-07-26 18:28:29 +0800116source "board/rockchip/fennec_rk3288/Kconfig"
117
Xu Ziyuan535b3dc2016-08-01 08:46:19 +0800118source "board/rockchip/miniarm_rk3288/Kconfig"
jk.kernel@gmail.com7a614ac2016-07-26 18:28:30 +0800119
Simon Glass2cffe662015-08-30 16:55:38 -0600120endif