Kconfig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. if CRIS_MACH_ARTPEC3
  2. menu "Artpec-3 options"
  3. depends on CRIS_MACH_ARTPEC3
  4. config ETRAX_DRAM_VIRTUAL_BASE
  5. hex
  6. default "c0000000"
  7. config ETRAX_L2CACHE
  8. bool
  9. default y
  10. config ETRAX_SERIAL_PORTS
  11. int
  12. default 5
  13. config ETRAX_DDR2_MRS
  14. hex "DDR2 MRS"
  15. default "0"
  16. config ETRAX_DDR2_TIMING
  17. hex "DDR2 SDRAM timing"
  18. default "0"
  19. help
  20. SDRAM timing parameters.
  21. config ETRAX_DDR2_CONFIG
  22. hex "DDR2 config"
  23. default "0"
  24. config ETRAX_DDR2_LATENCY
  25. hex "DDR2 latency"
  26. default "0"
  27. config ETRAX_PIO_CE0_CFG
  28. hex "PIO CE0 configuration"
  29. default "0"
  30. config ETRAX_PIO_CE1_CFG
  31. hex "PIO CE1 configuration"
  32. default "0"
  33. config ETRAX_PIO_CE2_CFG
  34. hex "PIO CE2 configuration"
  35. default "0"
  36. config ETRAX_DEF_GIO_PA_OE
  37. hex "GIO_PA_OE"
  38. default "00000000"
  39. help
  40. Configures the direction of general port A bits. 1 is out, 0 is in.
  41. This is often totally different depending on the product used.
  42. There are some guidelines though - if you know that only LED's are
  43. connected to port PA, then they are usually connected to bits 2-4
  44. and you can therefore use 1c. On other boards which don't have the
  45. LED's at the general ports, these bits are used for all kinds of
  46. stuff. If you don't know what to use, it is always safe to put all
  47. as inputs, although floating inputs isn't good.
  48. config ETRAX_DEF_GIO_PA_OUT
  49. hex "GIO_PA_OUT"
  50. default "00000000"
  51. help
  52. Configures the initial data for the general port A bits. Most
  53. products should use 00 here.
  54. config ETRAX_DEF_GIO_PB_OE
  55. hex "GIO_PB_OE"
  56. default "000000000"
  57. help
  58. Configures the direction of general port B bits. 1 is out, 0 is in.
  59. This is often totally different depending on the product used.
  60. There are some guidelines though - if you know that only LED's are
  61. connected to port PA, then they are usually connected to bits 2-4
  62. and you can therefore use 1c. On other boards which don't have the
  63. LED's at the general ports, these bits are used for all kinds of
  64. stuff. If you don't know what to use, it is always safe to put all
  65. as inputs, although floating inputs isn't good.
  66. config ETRAX_DEF_GIO_PB_OUT
  67. hex "GIO_PB_OUT"
  68. default "000000000"
  69. help
  70. Configures the initial data for the general port B bits. Most
  71. products should use 00000 here.
  72. config ETRAX_DEF_GIO_PC_OE
  73. hex "GIO_PC_OE"
  74. default "00000"
  75. help
  76. Configures the direction of general port C bits. 1 is out, 0 is in.
  77. This is often totally different depending on the product used.
  78. There are some guidelines though - if you know that only LED's are
  79. connected to port PA, then they are usually connected to bits 2-4
  80. and you can therefore use 1c. On other boards which don't have the
  81. LED's at the general ports, these bits are used for all kinds of
  82. stuff. If you don't know what to use, it is always safe to put all
  83. as inputs, although floating inputs isn't good.
  84. config ETRAX_DEF_GIO_PC_OUT
  85. hex "GIO_PC_OUT"
  86. default "00000"
  87. help
  88. Configures the initial data for the general port C bits. Most
  89. products should use 00000 here.
  90. endmenu
  91. endif