men-chameleon-bus.txt 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. MEN Chameleon Bus
  2. =================
  3. Table of Contents
  4. =================
  5. 1 Introduction
  6. 1.1 Scope of this Document
  7. 1.2 Limitations of the current implementation
  8. 2 Architecture
  9. 2.1 MEN Chameleon Bus
  10. 2.2 Carrier Devices
  11. 2.3 Parser
  12. 3 Resource handling
  13. 3.1 Memory Resources
  14. 3.2 IRQs
  15. 4 Writing an MCB driver
  16. 4.1 The driver structure
  17. 4.2 Probing and attaching
  18. 4.3 Initializing the driver
  19. 1 Introduction
  20. ===============
  21. This document describes the architecture and implementation of the MEN
  22. Chameleon Bus (called MCB throughout this document).
  23. 1.1 Scope of this Document
  24. ---------------------------
  25. This document is intended to be a short overview of the current
  26. implementation and does by no means describe the complete possibilities of MCB
  27. based devices.
  28. 1.2 Limitations of the current implementation
  29. ----------------------------------------------
  30. The current implementation is limited to PCI and PCIe based carrier devices
  31. that only use a single memory resource and share the PCI legacy IRQ. Not
  32. implemented are:
  33. - Multi-resource MCB devices like the VME Controller or M-Module carrier.
  34. - MCB devices that need another MCB device, like SRAM for a DMA Controller's
  35. buffer descriptors or a video controller's video memory.
  36. - A per-carrier IRQ domain for carrier devices that have one (or more) IRQs
  37. per MCB device like PCIe based carriers with MSI or MSI-X support.
  38. 2 Architecture
  39. ===============
  40. MCB is divided into 3 functional blocks:
  41. - The MEN Chameleon Bus itself,
  42. - drivers for MCB Carrier Devices and
  43. - the parser for the Chameleon table.
  44. 2.1 MEN Chameleon Bus
  45. ----------------------
  46. The MEN Chameleon Bus is an artificial bus system that attaches to a so
  47. called Chameleon FPGA device found on some hardware produced my MEN Mikro
  48. Elektronik GmbH. These devices are multi-function devices implemented in a
  49. single FPGA and usually attached via some sort of PCI or PCIe link. Each
  50. FPGA contains a header section describing the content of the FPGA. The
  51. header lists the device id, PCI BAR, offset from the beginning of the PCI
  52. BAR, size in the FPGA, interrupt number and some other properties currently
  53. not handled by the MCB implementation.
  54. 2.2 Carrier Devices
  55. --------------------
  56. A carrier device is just an abstraction for the real world physical bus the
  57. Chameleon FPGA is attached to. Some IP Core drivers may need to interact with
  58. properties of the carrier device (like querying the IRQ number of a PCI
  59. device). To provide abstraction from the real hardware bus, an MCB carrier
  60. device provides callback methods to translate the driver's MCB function calls
  61. to hardware related function calls. For example a carrier device may
  62. implement the get_irq() method which can be translated into a hardware bus
  63. query for the IRQ number the device should use.
  64. 2.3 Parser
  65. -----------
  66. The parser reads the first 512 bytes of a Chameleon device and parses the
  67. Chameleon table. Currently the parser only supports the Chameleon v2 variant
  68. of the Chameleon table but can easily be adopted to support an older or
  69. possible future variant. While parsing the table's entries new MCB devices
  70. are allocated and their resources are assigned according to the resource
  71. assignment in the Chameleon table. After resource assignment is finished, the
  72. MCB devices are registered at the MCB and thus at the driver core of the
  73. Linux kernel.
  74. 3 Resource handling
  75. ====================
  76. The current implementation assigns exactly one memory and one IRQ resource
  77. per MCB device. But this is likely going to change in the future.
  78. 3.1 Memory Resources
  79. ---------------------
  80. Each MCB device has exactly one memory resource, which can be requested from
  81. the MCB bus. This memory resource is the physical address of the MCB device
  82. inside the carrier and is intended to be passed to ioremap() and friends. It
  83. is already requested from the kernel by calling request_mem_region().
  84. 3.2 IRQs
  85. ---------
  86. Each MCB device has exactly one IRQ resource, which can be requested from the
  87. MCB bus. If a carrier device driver implements the ->get_irq() callback
  88. method, the IRQ number assigned by the carrier device will be returned,
  89. otherwise the IRQ number inside the Chameleon table will be returned. This
  90. number is suitable to be passed to request_irq().
  91. 4 Writing an MCB driver
  92. =======================
  93. 4.1 The driver structure
  94. -------------------------
  95. Each MCB driver has a structure to identify the device driver as well as
  96. device ids which identify the IP Core inside the FPGA. The driver structure
  97. also contains callback methods which get executed on driver probe and
  98. removal from the system.
  99. static const struct mcb_device_id foo_ids[] = {
  100. { .device = 0x123 },
  101. { }
  102. };
  103. MODULE_DEVICE_TABLE(mcb, foo_ids);
  104. static struct mcb_driver foo_driver = {
  105. driver = {
  106. .name = "foo-bar",
  107. .owner = THIS_MODULE,
  108. },
  109. .probe = foo_probe,
  110. .remove = foo_remove,
  111. .id_table = foo_ids,
  112. };
  113. 4.2 Probing and attaching
  114. --------------------------
  115. When a driver is loaded and the MCB devices it services are found, the MCB
  116. core will call the driver's probe callback method. When the driver is removed
  117. from the system, the MCB core will call the driver's remove callback method.
  118. static init foo_probe(struct mcb_device *mdev, const struct mcb_device_id *id);
  119. static void foo_remove(struct mcb_device *mdev);
  120. 4.3 Initializing the driver
  121. ----------------------------
  122. When the kernel is booted or your foo driver module is inserted, you have to
  123. perform driver initialization. Usually it is enough to register your driver
  124. module at the MCB core.
  125. static int __init foo_init(void)
  126. {
  127. return mcb_register_driver(&foo_driver);
  128. }
  129. module_init(foo_init);
  130. static void __exit foo_exit(void)
  131. {
  132. mcb_unregister_driver(&foo_driver);
  133. }
  134. module_exit(foo_exit);
  135. The module_mcb_driver() macro can be used to reduce the above code.
  136. module_mcb_driver(foo_driver);