Kconfig 605 B

123456789101112131415161718192021222324252627282930313233343536
  1. if TARGET_PUMA_RK3399
  2. config SYS_BOARD
  3. default "puma_rk3399"
  4. config SYS_VENDOR
  5. default "theobroma-systems"
  6. config SYS_CONFIG_NAME
  7. default "puma_rk3399"
  8. config BOARD_SPECIFIC_OPTIONS # dummy
  9. def_bool y
  10. config ENV_SIZE
  11. default 0x4000
  12. config ENV_OFFSET
  13. default 0x3fc000 if ENV_IS_IN_SPI_FLASH
  14. choice
  15. prompt "Theobroma Systems RK3399-Q7 DDR Option"
  16. default TARGET_PUMA_RK3399_RAM_DDR3_1333
  17. config TARGET_PUMA_RK3399_RAM_DDR3_1333
  18. bool "DDR3-1333MHz"
  19. config TARGET_PUMA_RK3399_RAM_DDR3_1600
  20. bool "DDR3-1600MHz"
  21. config TARGET_PUMA_RK3399_RAM_DDR3_1866
  22. bool "DDR3-1866MHz"
  23. endchoice
  24. endif