Kconfig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. if ARCH_IOP3XX
  2. menu "IOP3xx Implementation Options"
  3. comment "IOP3xx Platform Types"
  4. config ARCH_IQ80321
  5. bool "Enable support for IQ80321"
  6. select ARCH_IOP321
  7. help
  8. Say Y here if you want to run your kernel on the Intel IQ80321
  9. evaluation kit for the IOP321 chipset.
  10. config ARCH_IQ31244
  11. bool "Enable support for IQ31244"
  12. select ARCH_IOP321
  13. help
  14. Say Y here if you want to run your kernel on the Intel IQ31244
  15. evaluation kit for the IOP321 chipset.
  16. config ARCH_IQ80331
  17. bool "Enable support for IQ80331"
  18. select ARCH_IOP331
  19. help
  20. Say Y here if you want to run your kernel on the Intel IQ80331
  21. evaluation kit for the IOP331 chipset.
  22. config MACH_IQ80332
  23. bool "Enable support for IQ80332"
  24. select ARCH_IOP331
  25. help
  26. Say Y here if you want to run your kernel on the Intel IQ80332
  27. evaluation kit for the IOP332 chipset
  28. config ARCH_EP80219
  29. bool "Enable support for EP80219"
  30. select ARCH_IOP321
  31. select ARCH_IQ31244
  32. # Which IOP variant are we running?
  33. config ARCH_IOP321
  34. bool
  35. help
  36. The IQ80321 uses the IOP321 variant.
  37. The IQ31244 and EP80219 uses the IOP321 variant.
  38. config ARCH_IOP331
  39. bool
  40. default ARCH_IQ80331
  41. help
  42. The IQ80331, IQ80332, and IQ80333 uses the IOP331 variant.
  43. comment "IOP3xx Chipset Features"
  44. config IOP331_STEPD
  45. bool "Chip stepping D of the IOP80331 processor or IOP80333"
  46. depends on (ARCH_IOP331)
  47. help
  48. Say Y here if you have StepD of the IOP80331 or IOP8033
  49. based platforms.
  50. endmenu
  51. endif