Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. if ROCKCHIP_PX30
  2. config TARGET_EVB_PX30
  3. bool "EVB_PX30"
  4. help
  5. This target config option used for below listed px30 boards.
  6. EVB_PX30:
  7. * EVB_PX30 is an evaluation board for Rockchip PX30.
  8. config TARGET_ODROID_GO2
  9. bool "ODROID_GO2"
  10. config TARGET_PX30_CORE
  11. bool "Engicam PX30.Core"
  12. help
  13. PX30.Core EDIMM2.2:
  14. * PX30.Core is an EDIMM SOM based on Rockchip PX30 from Engicam.
  15. * EDIMM2.2 is a Form Factor Capacitive Evaluation Board from Engicam.
  16. * PX30.Core needs to mount on top of EDIMM2.2 for creating complete
  17. PX30.Core EDIMM2.2 Starter Kit.
  18. PX30.Core CTOUCH2:
  19. * PX30.Core is an EDIMM SOM based on Rockchip PX30 from Engicam.
  20. * CTOUCH2.0 is a general purpose Carrier board with capacitive
  21. touch interface support.
  22. * PX30.Core needs to mount on top of CTOUCH2.0 for creating complete
  23. PX30.Core C.TOUCH Carrier board.
  24. PX30.Core CTOUCH2-OF10:
  25. * PX30.Core is an EDIMM SOM based on Rockchip PX30 from Engicam.
  26. * CTOUCH2.0 is a general purpose Carrier board with capacitive
  27. touch interface support.
  28. * 10.1" OF is a capacitive touch 10.1" Open Frame panel solutions.
  29. * PX30.Core needs to mount on top of C.TOUCH 2.0 carrier with pluged
  30. 10.1" OF for creating complete PX30.Core C.TOUCH 2.0 10.1" Open Frame.
  31. config ROCKCHIP_BOOT_MODE_REG
  32. default 0xff010200
  33. config SYS_SOC
  34. default "px30"
  35. config SYS_MALLOC_F_LEN
  36. default 0x400
  37. config SPL_SERIAL
  38. default y
  39. config TPL_LDSCRIPT
  40. default "arch/arm/mach-rockchip/u-boot-tpl-v8.lds"
  41. config TPL_TEXT_BASE
  42. default 0xff0e1000
  43. config TPL_MAX_SIZE
  44. default 10240
  45. config TPL_STACK
  46. default 0xff0e4fff
  47. config DEBUG_UART_CHANNEL
  48. int "Mux channel to use for debug UART2/UART3"
  49. depends on DEBUG_UART_BOARD_INIT
  50. default 0
  51. help
  52. UART2 and UART3 can use two different set of pins to route the output.
  53. For using the UART for early debugging the route to use needs
  54. to be declared (0 or 1).
  55. source "board/engicam/px30_core/Kconfig"
  56. source "board/hardkernel/odroid_go2/Kconfig"
  57. source "board/rockchip/evb_px30/Kconfig"
  58. endif