Fix common misspellings
[deliverable/linux.git] / drivers / staging / vme / vme_api.txt
CommitLineData
bf39f9a5
MW
1 VME Device Driver API
2 =====================
3
4Driver registration
5===================
6
7As with other subsystems within the Linux kernel, VME device drivers register
8with the VME subsystem, typically called from the devices init routine. This is
25985edc 9achieved via a call to the following function:
bf39f9a5
MW
10
11 int vme_register_driver (struct vme_driver *driver);
12
13If driver registration is successful this function returns zero, if an error
14occurred a negative error code will be returned.
15
16A pointer to a structure of type 'vme_driver' must be provided to the
17registration function. The structure is as follows:
18
19 struct vme_driver {
20 struct list_head node;
21 char *name;
22 const struct vme_device_id *bind_table;
23 int (*probe) (struct device *, int, int);
24 int (*remove) (struct device *, int, int);
25 void (*shutdown) (void);
26 struct device_driver driver;
27 };
28
29At the minimum, the '.name', '.probe' and '.bind_table' elements of this
30structure should be correctly set. The '.name' element is a pointer to a string
31holding the device driver's name. The '.probe' element should contain a pointer
32to the probe routine.
33
34The arguments of the probe routine are as follows:
35
36 probe(struct device *dev, int bus, int slot);
37
38The '.bind_table' is a pointer to an array of type 'vme_device_id':
39
40 struct vme_device_id {
41 int bus;
42 int slot;
43 };
44
45Each structure in this array should provide a bus and slot number where the core
46should probe, using the driver's probe routine, for a device on the specified
47VME bus.
48
49The VME subsystem supports a single VME driver per 'slot'. There are considered
50to be 32 slots per bus, one for each slot-ID as defined in the ANSI/VITA 1-1994
51specification and are analogious to the physical slots on the VME backplane.
52
53A function is also provided to unregister the driver from the VME core and is
54usually called from the device driver's exit routine:
55
56 void vme_unregister_driver (struct vme_driver *driver);
57
58
59Resource management
60===================
61
62Once a driver has registered with the VME core the provided probe routine will
63be called for each of the bus/slot combination that becomes valid as VME buses
64are themselves registered. The probe routine is passed a pointer to the devices
65device structure. This pointer should be saved, it will be required for
66requesting VME resources.
67
68The driver can request ownership of one or more master windows, slave windows
69and/or dma channels. Rather than allowing the device driver to request a
70specific window or DMA channel (which may be used by a different driver) this
71driver allows a resource to be assigned based on the required attributes of the
72driver in question:
73
74 struct vme_resource * vme_master_request(struct device *dev,
75 vme_address_t aspace, vme_cycle_t cycle, vme_width_t width);
76
77 struct vme_resource * vme_slave_request(struct device *dev,
78 vme_address_t aspace, vme_cycle_t cycle);
79
4f723df4
MW
80 struct vme_resource *vme_dma_request(struct device *dev,
81 vme_dma_route_t route);
bf39f9a5
MW
82
83For slave windows these attributes are split into those of type 'vme_address_t'
4f723df4
MW
84and 'vme_cycle_t'. Master windows add a further set of attributes
85'vme_cycle_t'. These attributes are defined as bitmasks and as such any
86combination of the attributes can be requested for a single window, the core
87will assign a window that meets the requirements, returning a pointer of type
88vme_resource that should be used to identify the allocated resource when it is
89used. For DMA controllers, the request function requires the potential
90direction of any transfers to be provided in the route attributes. This is
91typically VME-to-MEM and/or MEM-to-VME, though some hardware can support
92VME-to-VME and MEM-to-MEM transfers as well as test pattern generation. If an
93unallocated window fitting the requirements can not be found a NULL pointer
94will be returned.
bf39f9a5
MW
95
96Functions are also provided to free window allocations once they are no longer
97required. These functions should be passed the pointer to the resource provided
98during resource allocation:
99
100 void vme_master_free(struct vme_resource *res);
101
102 void vme_slave_free(struct vme_resource *res);
103
104 void vme_dma_free(struct vme_resource *res);
105
106
107Master windows
108==============
109
110Master windows provide access from the local processor[s] out onto the VME bus.
25985edc 111The number of windows available and the available access modes is dependent on
bf39f9a5
MW
112the underlying chipset. A window must be configured before it can be used.
113
114
115Master window configuration
116---------------------------
117
118Once a master window has been assigned the following functions can be used to
119configure it and retrieve the current settings:
120
121 int vme_master_set (struct vme_resource *res, int enabled,
122 unsigned long long base, unsigned long long size,
123 vme_address_t aspace, vme_cycle_t cycle, vme_width_t width);
124
125 int vme_master_get (struct vme_resource *res, int *enabled,
126 unsigned long long *base, unsigned long long *size,
127 vme_address_t *aspace, vme_cycle_t *cycle, vme_width_t *width);
128
129The address spaces, transfer widths and cycle types are the same as described
130under resource management, however some of the options are mutually exclusive.
131For example, only one address space may be specified.
132
133These functions return 0 on success or an error code should the call fail.
134
135
136Master window access
137--------------------
138
139The following functions can be used to read from and write to configured master
140windows. These functions return the number of bytes copied:
141
142 ssize_t vme_master_read(struct vme_resource *res, void *buf,
143 size_t count, loff_t offset);
144
145 ssize_t vme_master_write(struct vme_resource *res, void *buf,
146 size_t count, loff_t offset);
147
148In addition to simple reads and writes, a function is provided to do a
149read-modify-write transaction. This function returns the original value of the
150VME bus location :
151
152 unsigned int vme_master_rmw (struct vme_resource *res,
153 unsigned int mask, unsigned int compare, unsigned int swap,
154 loff_t offset);
155
156This functions by reading the offset, applying the mask. If the bits selected in
157the mask match with the values of the corresponding bits in the compare field,
158the value of swap is written the specified offset.
159
160
161Slave windows
162=============
163
164Slave windows provide devices on the VME bus access into mapped portions of the
165local memory. The number of windows available and the access modes that can be
25985edc 166used is dependent on the underlying chipset. A window must be configured before
bf39f9a5
MW
167it can be used.
168
169
170Slave window configuration
171--------------------------
172
173Once a slave window has been assigned the following functions can be used to
174configure it and retrieve the current settings:
175
176 int vme_slave_set (struct vme_resource *res, int enabled,
177 unsigned long long base, unsigned long long size,
178 dma_addr_t mem, vme_address_t aspace, vme_cycle_t cycle);
179
180 int vme_slave_get (struct vme_resource *res, int *enabled,
181 unsigned long long *base, unsigned long long *size,
182 dma_addr_t *mem, vme_address_t *aspace, vme_cycle_t *cycle);
183
184The address spaces, transfer widths and cycle types are the same as described
185under resource management, however some of the options are mutually exclusive.
186For example, only one address space may be specified.
187
188These functions return 0 on success or an error code should the call fail.
189
190
191Slave window buffer allocation
192------------------------------
193
194Functions are provided to allow the user to allocate and free a contiguous
195buffers which will be accessible by the VME bridge. These functions do not have
196to be used, other methods can be used to allocate a buffer, though care must be
197taken to ensure that they are contiguous and accessible by the VME bridge:
198
199 void * vme_alloc_consistent(struct vme_resource *res, size_t size,
200 dma_addr_t *mem);
201
202 void vme_free_consistent(struct vme_resource *res, size_t size,
203 void *virt, dma_addr_t mem);
204
205
206Slave window access
207-------------------
208
209Slave windows map local memory onto the VME bus, the standard methods for
210accessing memory should be used.
211
212
213DMA channels
214============
215
216The VME DMA transfer provides the ability to run link-list DMA transfers. The
217API introduces the concept of DMA lists. Each DMA list is a link-list which can
218be passed to a DMA controller. Multiple lists can be created, extended,
219executed, reused and destroyed.
220
221
222List Management
223---------------
224
225The following functions are provided to create and destroy DMA lists. Execution
226of a list will not automatically destroy the list, thus enabling a list to be
227reused for repetitive tasks:
228
229 struct vme_dma_list *vme_new_dma_list(struct vme_resource *res);
230
231 int vme_dma_list_free(struct vme_dma_list *list);
232
233
234List Population
235---------------
236
237An item can be added to a list using the following function ( the source and
238destination attributes need to be created before calling this function, this is
239covered under "Transfer Attributes"):
240
241 int vme_dma_list_add(struct vme_dma_list *list,
242 struct vme_dma_attr *src, struct vme_dma_attr *dest,
243 size_t count);
244
4f723df4
MW
245NOTE: The detailed attributes of the transfers source and destination
246 are not checked until an entry is added to a DMA list, the request
247 for a DMA channel purely checks the directions in which the
248 controller is expected to transfer data. As a result it is
249 possible for this call to return an error, for example if the
250 source or destination is in an unsupported VME address space.
bf39f9a5
MW
251
252Transfer Attributes
253-------------------
254
255The attributes for the source and destination are handled separately from adding
256an item to a list. This is due to the diverse attributes required for each type
257of source and destination. There are functions to create attributes for PCI, VME
258and pattern sources and destinations (where appropriate):
259
260Pattern source:
261
262 struct vme_dma_attr *vme_dma_pattern_attribute(u32 pattern,
263 vme_pattern_t type);
264
265PCI source or destination:
266
267 struct vme_dma_attr *vme_dma_pci_attribute(dma_addr_t mem);
268
269VME source or destination:
270
271 struct vme_dma_attr *vme_dma_vme_attribute(unsigned long long base,
272 vme_address_t aspace, vme_cycle_t cycle, vme_width_t width);
273
274The following function should be used to free an attribute:
275
276 void vme_dma_free_attribute(struct vme_dma_attr *attr);
277
278
279List Execution
280--------------
281
282The following function queues a list for execution. The function will return
283once the list has been executed:
284
285 int vme_dma_list_exec(struct vme_dma_list *list);
286
287
288Interrupts
289==========
290
291The VME API provides functions to attach and detach callbacks to specific VME
292level and status ID combinations and for the generation of VME interrupts with
293specific VME level and status IDs.
294
295
296Attaching Interrupt Handlers
297----------------------------
298
299The following functions can be used to attach and free a specific VME level and
300status ID combination. Any given combination can only be assigned a single
301callback function. A void pointer parameter is provided, the value of which is
302passed to the callback function, the use of this pointer is user undefined:
303
c813f592 304 int vme_irq_request(struct device *dev, int level, int statid,
bf39f9a5
MW
305 void (*callback)(int, int, void *), void *priv);
306
c813f592 307 void vme_irq_free(struct device *dev, int level, int statid);
bf39f9a5
MW
308
309The callback parameters are as follows. Care must be taken in writing a callback
310function, callback functions run in interrupt context:
311
312 void callback(int level, int statid, void *priv);
313
314
315Interrupt Generation
316--------------------
317
318The following function can be used to generate a VME interrupt at a given VME
319level and VME status ID:
320
c813f592 321 int vme_irq_generate(struct device *dev, int level, int statid);
bf39f9a5
MW
322
323
324Location monitors
325=================
326
327The VME API provides the following functionality to configure the location
328monitor.
329
330
331Location Monitor Management
332---------------------------
333
334The following functions are provided to request the use of a block of location
335monitors and to free them after they are no longer required:
336
337 struct vme_resource * vme_lm_request(struct device *dev);
338
339 void vme_lm_free(struct vme_resource * res);
340
341Each block may provide a number of location monitors, monitoring adjacent
342locations. The following function can be used to determine how many locations
343are provided:
344
345 int vme_lm_count(struct vme_resource * res);
346
347
348Location Monitor Configuration
349------------------------------
350
351Once a bank of location monitors has been allocated, the following functions
352are provided to configure the location and mode of the location monitor:
353
354 int vme_lm_set(struct vme_resource *res, unsigned long long base,
355 vme_address_t aspace, vme_cycle_t cycle);
356
357 int vme_lm_get(struct vme_resource *res, unsigned long long *base,
358 vme_address_t *aspace, vme_cycle_t *cycle);
359
360
361Location Monitor Use
362--------------------
363
364The following functions allow a callback to be attached and detached from each
365location monitor location. Each location monitor can monitor a number of
366adjacent locations:
367
368 int vme_lm_attach(struct vme_resource *res, int num,
369 void (*callback)(int));
370
371 int vme_lm_detach(struct vme_resource *res, int num);
372
373The callback function is declared as follows.
374
375 void callback(int num);
376
377
378Slot Detection
379==============
380
381This function returns the slot ID of the provided bridge.
382
383 int vme_slot_get(struct device *dev);
This page took 0.211767 seconds and 5 git commands to generate.