Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. if ARCH_SHMOBILE
  2. comment "SH-Mobile System Type"
  3. config ARCH_SH7367
  4. bool "SH-Mobile G3 (SH7367)"
  5. select CPU_V6
  6. select HAVE_CLK
  7. select COMMON_CLKDEV
  8. select GENERIC_TIME
  9. select GENERIC_CLOCKEVENTS
  10. comment "SH-Mobile Board Type"
  11. config MACH_G3EVM
  12. bool "G3EVM board"
  13. depends on ARCH_SH7367
  14. comment "SH-Mobile System Configuration"
  15. menu "Memory configuration"
  16. config MEMORY_START
  17. hex "Physical memory start address"
  18. default "0x50000000" if MACH_G3EVM
  19. default "0x00000000"
  20. ---help---
  21. Tweak this only when porting to a new machine which does not
  22. already have a defconfig. Changing it from the known correct
  23. value on any of the known systems will only lead to disaster.
  24. config MEMORY_SIZE
  25. hex "Physical memory size"
  26. default "0x08000000" if MACH_G3EVM
  27. default "0x04000000"
  28. help
  29. This sets the default memory size assumed by your kernel. It can
  30. be overridden as normal by the 'mem=' argument on the kernel command
  31. line.
  32. endmenu
  33. menu "Timer and clock configuration"
  34. config SH_TIMER_CMT
  35. bool "CMT timer driver"
  36. default y
  37. help
  38. This enables build of the CMT timer driver.
  39. endmenu
  40. endif