Kconfig.bus 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # SPDX-License-Identifier: GPL-2.0
  2. if MMU
  3. comment "Bus Support"
  4. config DIO
  5. bool "DIO bus support"
  6. depends on HP300
  7. default y
  8. help
  9. Say Y here to enable support for the "DIO" expansion bus used in
  10. HP300 machines. If you are using such a system you almost certainly
  11. want this.
  12. config NUBUS
  13. bool
  14. depends on MAC
  15. default y
  16. config ZORRO
  17. bool "Amiga Zorro (AutoConfig) bus support"
  18. depends on AMIGA
  19. help
  20. This enables support for the Zorro bus in the Amiga. If you have
  21. expansion cards in your Amiga that conform to the Amiga
  22. AutoConfig(tm) specification, say Y, otherwise N. Note that even
  23. expansion cards that do not fit in the Zorro slots but fit in e.g.
  24. the CPU slot may fall in this category, so you have to say Y to let
  25. Linux use these.
  26. config AMIGA_PCMCIA
  27. bool "Amiga 1200/600 PCMCIA support"
  28. depends on AMIGA
  29. help
  30. Include support in the kernel for pcmcia on Amiga 1200 and Amiga
  31. 600. If you intend to use pcmcia cards say Y; otherwise say N.
  32. config ISA
  33. bool
  34. depends on Q40 || AMIGA_PCMCIA
  35. default y
  36. help
  37. Find out whether you have ISA slots on your motherboard. ISA is the
  38. name of a bus system, i.e. the way the CPU talks to the other stuff
  39. inside your box. Other bus systems are PCI, EISA, MicroChannel
  40. (MCA) or VESA. ISA is an older system, now being displaced by PCI;
  41. newer boards don't support it. If you have ISA, say Y, otherwise N.
  42. config ATARI_ROM_ISA
  43. bool "Atari ROM port ISA adapter support"
  44. depends on ATARI
  45. help
  46. This option enables support for the ROM port ISA adapter used to
  47. operate ISA cards on Atari. Only 8 bit cards are supported, and
  48. no interrupt lines are connected.
  49. The only driver currently using this adapter is the EtherNEC
  50. driver for RTL8019AS based NE2000 compatible network cards.
  51. config GENERIC_ISA_DMA
  52. def_bool ISA
  53. source "drivers/zorro/Kconfig"
  54. endif
  55. if COLDFIRE
  56. config ISA_DMA_API
  57. def_bool !M5272
  58. endif