Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. if ROCKCHIP_RK3368
  2. choice
  3. prompt "RK3368 board"
  4. config TARGET_LION_RK3368
  5. bool "Theobroma Systems RK3368-uQ7 (Lion) module"
  6. help
  7. The RK3368-uQ7 is a micro-Qseven form-factor (40mm x 70mm,
  8. MXM-230 connector) system-on-module designed by Theobroma
  9. Systems for industrial applications.
  10. It provides the following features:
  11. - 8x Cortex-A53 (in 2 clusters of 4 cores each)
  12. - (on-module) up to 4GB of DDR3 memory
  13. - (on-module) SPI-NOR flash
  14. - (on-module) eMMC
  15. - Gigabit Ethernet (with an on-module KSZ9031 PHY)
  16. - USB
  17. - HDMI
  18. - MIPI-DSI/single-channel LVDS (muxed on the 'LVDS-A' pin-group)
  19. - various 'slow' interfaces (e.g. UART, SPI, I2C, I2S, ...)
  20. - on-module STM32 providing CAN, RTC and fan-control
  21. - (optional on-module) EAL4+-certified security module
  22. config TARGET_SHEEP
  23. bool "Sheep board"
  24. help
  25. Sheep board is designed by Rockchip as a EVB board
  26. for rk3368.
  27. config TARGET_GEEKBOX
  28. bool "GeekBox"
  29. config TARGET_EVB_PX5
  30. bool "Evb-PX5"
  31. help
  32. PX5 EVB is designed by Rockchip for automotive field
  33. with integrated CVBS (TP2825) / MIPI DSI / CSI / LVDS
  34. HDMI video input/output interface, audio codec ES8396,
  35. WIFI/BT (on RTL8723BS), Gsensor BMA250E and light&proximity
  36. sensor STK3410.
  37. endchoice
  38. config SYS_SOC
  39. default "rockchip"
  40. source "board/theobroma-systems/lion_rk3368/Kconfig"
  41. source "board/rockchip/sheep_rk3368/Kconfig"
  42. source "board/geekbuying/geekbox/Kconfig"
  43. source "board/rockchip/evb_px5/Kconfig"
  44. config SPL_LDSCRIPT
  45. default "arch/arm/cpu/armv8/u-boot-spl.lds"
  46. endif