]> git.sur5r.net Git - u-boot/blob - arch/arm/mach-rockchip/rk3288/Kconfig
Merge git://git.denx.de/u-boot-samsung
[u-boot] / arch / arm / mach-rockchip / rk3288 / Kconfig
1 if ROCKCHIP_RK3288
2
3 config TARGET_FIREFLY_RK3288
4         bool "Firefly-RK3288"
5         select BOARD_LATE_INIT
6         help
7           Firefly is a RK3288-based development board with 2 USB ports,
8           HDMI, VGA, micro-SD card, audio, WiFi  and Gigabit Ethernet, It
9           also includes on-board eMMC and 1GB of SDRAM. Expansion connectors
10           provide access to display pins, I2C, SPI, UART and GPIOs.
11
12 config TARGET_EVB_RK3288
13         bool "Evb-RK3288"
14         select BOARD_LATE_INIT
15         help
16           EVB-RK3288 is a RK3288-based development board with 2 USB ports,
17           HDMI, VGA, micro-SD card, audio, WiFi  and Gigabit Ethernet, It
18           also includes on-board eMMC and 2GB of SDRAM. Expansion connectors
19           provide access to display pins, I2C, SPI, UART and GPIOs.
20
21 config TARGET_FENNEC_RK3288
22         bool "Fennec-RK3288"
23         select BOARD_LATE_INIT
24         help
25           Fennec is a RK3288-based development board with 2 USB ports,
26           HDMI, micro-SD card, audio, WiFi and Gigabit Ethernet. It also
27           includes on-board eMMC and 2GB of SDRAM. Expansion connectors
28           provide access to display pins, I2C, SPI, UART and GPIOs.
29
30 config TARGET_POPMETAL_RK3288
31         bool "PopMetal-RK3288"
32         select BOARD_LATE_INIT
33         help
34           PopMetal is a RK3288-based development board with 3 USB host ports,
35           1 micro USB OTG port, HDMI, VGA, micro-SD card, audio, WiFi, Gigabit
36           Ethernet and lots of sensors. It also includes on-board 8 GeMMC and
37           2GB DDR3. Expansion connectors provide access to I2C, SPI, UART,
38           GPIOs and display interface.
39
40 config TARGET_TINKER_RK3288
41         bool "Tinker-RK3288"
42         select BOARD_LATE_INIT
43         help
44           Tinker is a RK3288-based development board with 2 USB ports, HDMI,
45           micro-SD card, audio, Gigabit Ethernet. It also includes on-board
46           8GB eMMC and 2GB of SDRAM. Expansion connectors provide access to
47           I2C, SPI, UART, GPIOs.
48
49 config TARGET_CHROMEBOOK_JERRY
50         bool "Google/Rockchip Veyron-Jerry Chromebook"
51         select BOARD_LATE_INIT
52         help
53           Jerry is a RK3288-based clamshell device with 2 USB 3.0 ports,
54           HDMI, an 11.9 inch EDP display, micro-SD card, touchpad and
55           WiFi. It includes a Chrome OS EC (Cortex-M3) to provide access to
56           the keyboard and battery functions.
57
58 config TARGET_CHROMEBIT_MICKEY
59         bool "Google/Rockchip Veyron-Mickey Chromebit"
60         select BOARD_LATE_INIT
61         help
62           Mickey is a small RK3288-based device with one USB 3.0 port, HDMI
63           and WiFi. It has a separate power port and is designed to connect
64           to the HDMI input of a monitor or TV. It has no internal battery.
65           Typically a USB hub or wireless keyboard/touchpad is used to get
66           keyboard and mouse access.
67
68 config TARGET_CHROMEBOOK_MINNIE
69         bool "Google/Rockchip Veyron-Minnie Chromebook"
70         select BOARD_LATE_INIT
71         help
72           Minnie is a RK3288-based convertible clamshell device with 2 USB 3.0
73           ports, micro HDMI, a 10.1-inch 1280x800 EDP display, micro-SD card,
74           HD camera, touchpad, WiFi and Bluetooth. It includes a Chrome OS
75           EC (Cortex-M3) to provide access to the keyboard and battery
76           functions. It includes 2 or 4GB of SDRAM and 16 or 32GB of
77           internal MMC. The product name is ASUS Chromebook Flip.
78
79 config TARGET_ROCK2
80         bool "Radxa Rock 2"
81         select BOARD_LATE_INIT
82         help
83           Rock 2 is a SOM and base-board combination based on RK3288. It
84           includes Ethernet, HDMI, 3 USB, micro-SD, audio, SATA, WiFi and
85           space for a real-time-clock battery. There is also an expansion
86           interface which provides access to many pins.
87
88 config ROCKCHIP_FAST_SPL
89         bool "Change the CPU to full speed in SPL"
90         depends on TARGET_CHROMEBOOK_JERRY
91         help
92           Some boards want to boot as fast as possible. We can increase the
93           CPU frequency in SPL if the power supply is configured to the correct
94           voltage. This option is only available on boards which support it
95           and have the required PMIC code.
96
97 config SYS_SOC
98         default "rockchip"
99
100 config SYS_MALLOC_F_LEN
101         default 0x0800
102
103 config SPL_DRIVERS_MISC_SUPPORT
104         default y
105
106 config SPL_LIBCOMMON_SUPPORT
107         default y
108
109 config SPL_LIBGENERIC_SUPPORT
110         default y
111
112 config SPL_SERIAL_SUPPORT
113         default y
114
115 source "board/chipspark/popmetal_rk3288/Kconfig"
116
117 source "board/firefly/firefly-rk3288/Kconfig"
118
119 source "board/google/veyron/Kconfig"
120
121 source "board/radxa/rock2/Kconfig"
122
123 source "board/rockchip/evb_rk3288/Kconfig"
124
125 source "board/rockchip/fennec_rk3288/Kconfig"
126
127 source "board/rockchip/tinker_rk3288/Kconfig"
128
129 endif