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