Kconfig 626 B

123456789101112131415161718192021222324252627282930313233
  1. if ARCH_MX31
  2. config MX31
  3. bool
  4. default y
  5. choice
  6. prompt "MX31 board select"
  7. optional
  8. config TARGET_MX31PDK
  9. bool "Support the i.MX31 PDK board from Freescale/NXP"
  10. select BOARD_EARLY_INIT_F
  11. select BOARD_LATE_INIT
  12. select SUPPORT_SPL
  13. endchoice
  14. config MX31_HCLK_FREQ
  15. int "i.MX31 HCLK frequency"
  16. default 26000000
  17. help
  18. Frequency in Hz of the high frequency input clock. Typically
  19. 26000000 Hz.
  20. config MX31_CLK32
  21. int "i.MX31 CLK32 Frequency"
  22. default 32768
  23. help
  24. Frequency in Hz of the low frequency input clock. Typically
  25. 32768 or 32000 Hz.
  26. endif