Blame view

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