Kconfig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. if ARCH_ROCKCHIP
  2. config ROCKCHIP_RK3036
  3. bool "Support Rockchip RK3036"
  4. select CPU_V7
  5. select SUPPORT_SPL
  6. select SPL
  7. help
  8. The Rockchip RK3036 is a ARM-based SoC with a dual-core Cortex-A7
  9. including NEON and GPU, Mali-400 graphics, several DDR3 options
  10. and video codec support. Peripherals include Gigabit Ethernet,
  11. USB2 host and OTG, SDIO, I2S, UART, SPI, I2C and PWMs.
  12. config ROCKCHIP_RK3288
  13. bool "Support Rockchip RK3288"
  14. select CPU_V7
  15. select SUPPORT_SPL
  16. select SPL
  17. help
  18. The Rockchip RK3288 is a ARM-based SoC with a quad-core Cortex-A17
  19. including NEON and GPU, 1MB L2 cache, Mali-T7 graphics, two
  20. video interfaces supporting HDMI and eDP, several DDR3 options
  21. and video codec support. Peripherals include Gigabit Ethernet,
  22. USB2 host and OTG, SDIO, I2S, UARTs, SPI, I2C and PWMs.
  23. config ROCKCHIP_RK3399
  24. bool "Support Rockchip RK3399"
  25. select ARM64
  26. help
  27. The Rockchip RK3399 is a ARM-based SoC with a dual-core Cortex-A72
  28. and quad-core Cortex-A53.
  29. including NEON and GPU, 1MB L2 cache, Mali-T7 graphics, two
  30. video interfaces supporting HDMI and eDP, several DDR3 options
  31. and video codec support. Peripherals include Gigabit Ethernet,
  32. USB2 host and OTG, SDIO, I2S, UARTs, SPI, I2C and PWMs.
  33. config ROCKCHIP_SPL_BACK_TO_BROM
  34. bool "SPL returns to bootrom"
  35. default y if ROCKCHIP_RK3036
  36. help
  37. Rockchip SoCs have ability to load SPL & U-Boot binary. If enabled,
  38. SPL will return to the boot rom, which will then load the U-Boot
  39. binary to keep going on.
  40. config SPL_MMC_SUPPORT
  41. default y if !ROCKCHIP_SPL_BACK_TO_BROM
  42. source "arch/arm/mach-rockchip/rk3036/Kconfig"
  43. source "arch/arm/mach-rockchip/rk3288/Kconfig"
  44. source "arch/arm/mach-rockchip/rk3399/Kconfig"
  45. endif