Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. menu "mpc8xx CPU"
  2. depends on MPC8xx
  3. config SYS_CPU
  4. default "mpc8xx"
  5. choice
  6. prompt "Target select"
  7. optional
  8. config TARGET_MCR3000
  9. bool "Support MCR3000 board from CSSI"
  10. endchoice
  11. choice
  12. prompt "CPU select"
  13. default MPC866
  14. config MPC866
  15. bool "MPC866"
  16. config MPC885
  17. bool "MPC885"
  18. endchoice
  19. config 8xx_GCLK_FREQ
  20. int "CPU GCLK Frequency"
  21. comment "Specific commands"
  22. config CMD_IMMAP
  23. bool "Enable various commands to dump IMMR information"
  24. help
  25. This enables various commands such as:
  26. siuinfo - print System Interface Unit (SIU) registers
  27. memcinfo - print Memory Controller registers
  28. comment "Configuration Registers"
  29. config SYS_SIUMCR
  30. hex "SIUMCR register"
  31. help
  32. SIU Module Configuration (11-6)
  33. config SYS_SYPCR
  34. hex "SYPCR register"
  35. help
  36. System Protection Control (11-9)
  37. config SYS_TBSCR
  38. hex "TBSCR register"
  39. help
  40. Time Base Status and Control (11-26)
  41. config SYS_PISCR
  42. hex "PISCR register"
  43. help
  44. Periodic Interrupt Status and Control (11-31)
  45. config SYS_PLPRCR_BOOL
  46. bool "Customise PLPRCR"
  47. config SYS_PLPRCR
  48. hex "PLPRCR register"
  49. depends on SYS_PLPRCR_BOOL
  50. help
  51. PLL, Low-Power, and Reset Control Register (15-30)
  52. config SYS_SCCR
  53. hex "SCCR register"
  54. help
  55. System Clock and reset Control Register (15-27)
  56. config SYS_SCCR_MASK
  57. hex "MASK for setting SCCR register"
  58. config SYS_DER
  59. hex "DER register"
  60. help
  61. Debug Event Register (37-47)
  62. comment "Memory mapping"
  63. config SYS_BR0_PRELIM
  64. hex "Preliminary value for BR0"
  65. config SYS_OR0_PRELIM
  66. hex "Preliminary value for OR0"
  67. config SYS_BR1_PRELIM_BOOL
  68. bool "Define Bank 1"
  69. config SYS_BR1_PRELIM
  70. hex "Preliminary value for BR1"
  71. depends on SYS_BR1_PRELIM_BOOL
  72. config SYS_OR1_PRELIM
  73. hex "Preliminary value for OR1"
  74. depends on SYS_BR1_PRELIM_BOOL
  75. config SYS_BR2_PRELIM_BOOL
  76. bool "Define Bank 2"
  77. config SYS_BR2_PRELIM
  78. hex "Preliminary value for BR2"
  79. depends on SYS_BR2_PRELIM_BOOL
  80. config SYS_OR2_PRELIM
  81. hex "Preliminary value for OR2"
  82. depends on SYS_BR2_PRELIM_BOOL
  83. config SYS_BR3_PRELIM_BOOL
  84. bool "Define Bank 3"
  85. config SYS_BR3_PRELIM
  86. hex "Preliminary value for BR3"
  87. depends on SYS_BR3_PRELIM_BOOL
  88. config SYS_OR3_PRELIM
  89. hex "Preliminary value for OR3"
  90. depends on SYS_BR3_PRELIM_BOOL
  91. config SYS_BR4_PRELIM_BOOL
  92. bool "Define Bank 4"
  93. config SYS_BR4_PRELIM
  94. hex "Preliminary value for BR4"
  95. depends on SYS_BR4_PRELIM_BOOL
  96. config SYS_OR4_PRELIM
  97. hex "Preliminary value for OR4"
  98. depends on SYS_BR4_PRELIM_BOOL
  99. config SYS_BR5_PRELIM_BOOL
  100. bool "Define Bank 5"
  101. config SYS_BR5_PRELIM
  102. hex "Preliminary value for BR5"
  103. depends on SYS_BR5_PRELIM_BOOL
  104. config SYS_OR5_PRELIM
  105. hex "Preliminary value for OR5"
  106. depends on SYS_BR5_PRELIM_BOOL
  107. config SYS_BR6_PRELIM_BOOL
  108. bool "Define Bank 6"
  109. config SYS_BR6_PRELIM
  110. hex "Preliminary value for BR6"
  111. depends on SYS_BR6_PRELIM_BOOL
  112. config SYS_OR6_PRELIM
  113. hex "Preliminary value for OR6"
  114. depends on SYS_BR6_PRELIM_BOOL
  115. config SYS_BR7_PRELIM_BOOL
  116. bool "Define Bank 7"
  117. config SYS_BR7_PRELIM
  118. hex "Preliminary value for BR7"
  119. depends on SYS_BR7_PRELIM_BOOL
  120. config SYS_OR7_PRELIM
  121. hex "Preliminary value for OR7"
  122. depends on SYS_BR7_PRELIM_BOOL
  123. config SYS_IMMR
  124. hex "Value for IMMR"
  125. source "board/cssi/MCR3000/Kconfig"
  126. endmenu