Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. menu "SuperH architecture"
  2. depends on SH
  3. config CPU_SH4
  4. bool
  5. config CPU_SH4A
  6. bool
  7. select CPU_SH4
  8. config SH_32BIT
  9. bool "32bit mode"
  10. depends on CPU_SH4A
  11. default n
  12. help
  13. SH4A has 2 physical memory maps. This use 32bit mode.
  14. And this is board specific. Please check your board if you
  15. want to use this.
  16. choice
  17. prompt "Target select"
  18. optional
  19. config TARGET_MIGOR
  20. bool "Migo-R"
  21. select CPU_SH4
  22. config TARGET_R2DPLUS
  23. bool "Renesas R2D-PLUS"
  24. select CPU_SH4
  25. config TARGET_R7780MP
  26. bool "R7780MP board"
  27. select CPU_SH4A
  28. config TARGET_SH7752EVB
  29. bool "SH7752EVB"
  30. select CPU_SH4A
  31. config TARGET_SH7753EVB
  32. bool "SH7753EVB"
  33. select CPU_SH4
  34. config TARGET_SH7757LCR
  35. bool "SH7757LCR"
  36. select CPU_SH4A
  37. config TARGET_SH7763RDP
  38. bool "SH7763RDP"
  39. select CPU_SH4
  40. endchoice
  41. config SYS_ARCH
  42. default "sh"
  43. config SYS_CPU
  44. default "sh4" if CPU_SH4
  45. source "arch/sh/lib/Kconfig"
  46. source "board/renesas/MigoR/Kconfig"
  47. source "board/renesas/r2dplus/Kconfig"
  48. source "board/renesas/r7780mp/Kconfig"
  49. source "board/renesas/sh7752evb/Kconfig"
  50. source "board/renesas/sh7753evb/Kconfig"
  51. source "board/renesas/sh7757lcr/Kconfig"
  52. source "board/renesas/sh7763rdp/Kconfig"
  53. endmenu