Kconfig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. menu "Companion Chips"
  2. config HD6446X_SERIES
  3. bool
  4. choice
  5. prompt "HD6446x options"
  6. depends on HD6446X_SERIES
  7. default HD64461
  8. config HD64461
  9. bool "Hitachi HD64461 companion chip support"
  10. ---help---
  11. The Hitachi HD64461 provides an interface for
  12. the SH7709 CPU, supporting a LCD controller,
  13. CRT color controller, IrDA up to 4 Mbps, and a
  14. PCMCIA controller supporting 2 slots.
  15. More information is available at
  16. <http://semiconductor.hitachi.com/windowsce/superh/sld013.htm>.
  17. Say Y if you want support for the HD64461.
  18. Otherwise, say N.
  19. config HD64465
  20. bool "Hitachi HD64465 companion chip support"
  21. ---help---
  22. The Hitachi HD64465 provides an interface for
  23. the SH7750 CPU, supporting a LCD controller,
  24. CRT color controller, IrDA, USB, PCMCIA,
  25. keyboard controller, and a printer interface.
  26. More information is available at
  27. <http://global.hitachi.com/New/cnews/E/1998/981019B.html>.
  28. Say Y if you want support for the HD64465.
  29. Otherwise, say N.
  30. endchoice
  31. # These will also be split into the Kconfig's below
  32. config HD64461_IRQ
  33. int "HD64461 IRQ"
  34. depends on HD64461
  35. default "36"
  36. help
  37. The default setting of the HD64461 IRQ is 36.
  38. Do not change this unless you know what you are doing.
  39. config HD64461_IOBASE
  40. hex "HD64461 start address"
  41. depends on HD64461
  42. default "0xb0000000"
  43. config HD64461_ENABLER
  44. bool "HD64461 PCMCIA enabler"
  45. depends on HD64461
  46. help
  47. Say Y here if you want to enable PCMCIA support
  48. via the HD64461 companion chip.
  49. Otherwise, say N.
  50. config HD64465_IOBASE
  51. hex "HD64465 start address"
  52. depends on HD64465
  53. default "0xb0000000"
  54. help
  55. The default setting of the HD64465 IO base address is 0xb0000000.
  56. Do not change this unless you know what you are doing.
  57. config HD64465_IRQ
  58. int "HD64465 IRQ"
  59. depends on HD64465
  60. default "5"
  61. help
  62. The default setting of the HD64465 IRQ is 5.
  63. Do not change this unless you know what you are doing.
  64. endmenu