Kconfig 667 B

12345678910111213141516171819202122232425262728293031323334
  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_LATE_INIT
  11. select SUPPORT_SPL
  12. select BOARD_EARLY_INIT_F
  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. source "board/freescale/mx31pdk/Kconfig"
  27. endif