MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / include / linux / rio_drv.h
blob7adb2a1aac92603449fe1810944b2c7513a6e393
1 /*
2 * RapidIO driver services
4 * Copyright 2005 MontaVista Software, Inc.
5 * Matt Porter <mporter@kernel.crashing.org>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
13 #ifndef LINUX_RIO_DRV_H
14 #define LINUX_RIO_DRV_H
16 #ifdef __KERNEL__
18 #include <linux/types.h>
19 #include <linux/ioport.h>
20 #include <linux/list.h>
21 #include <linux/errno.h>
22 #include <linux/device.h>
23 #include <linux/string.h>
24 #include <linux/rio.h>
26 extern int __rio_local_read_config_32(struct rio_mport *port, u32 offset,
27 u32 * data);
28 extern int __rio_local_write_config_32(struct rio_mport *port, u32 offset,
29 u32 data);
30 extern int __rio_local_read_config_16(struct rio_mport *port, u32 offset,
31 u16 * data);
32 extern int __rio_local_write_config_16(struct rio_mport *port, u32 offset,
33 u16 data);
34 extern int __rio_local_read_config_8(struct rio_mport *port, u32 offset,
35 u8 * data);
36 extern int __rio_local_write_config_8(struct rio_mport *port, u32 offset,
37 u8 data);
39 extern int rio_mport_read_config_32(struct rio_mport *port, u16 destid,
40 u8 hopcount, u32 offset, u32 * data);
41 extern int rio_mport_write_config_32(struct rio_mport *port, u16 destid,
42 u8 hopcount, u32 offset, u32 data);
43 extern int rio_mport_read_config_16(struct rio_mport *port, u16 destid,
44 u8 hopcount, u32 offset, u16 * data);
45 extern int rio_mport_write_config_16(struct rio_mport *port, u16 destid,
46 u8 hopcount, u32 offset, u16 data);
47 extern int rio_mport_read_config_8(struct rio_mport *port, u16 destid,
48 u8 hopcount, u32 offset, u8 * data);
49 extern int rio_mport_write_config_8(struct rio_mport *port, u16 destid,
50 u8 hopcount, u32 offset, u8 data);
52 /**
53 * rio_local_read_config_32 - Read 32 bits from local configuration space
54 * @port: Master port
55 * @offset: Offset into local configuration space
56 * @data: Pointer to read data into
58 * Reads 32 bits of data from the specified offset within the local
59 * device's configuration space.
61 static inline int rio_local_read_config_32(struct rio_mport *port, u32 offset,
62 u32 * data)
64 return __rio_local_read_config_32(port, offset, data);
67 /**
68 * rio_local_write_config_32 - Write 32 bits to local configuration space
69 * @port: Master port
70 * @offset: Offset into local configuration space
71 * @data: Data to be written
73 * Writes 32 bits of data to the specified offset within the local
74 * device's configuration space.
76 static inline int rio_local_write_config_32(struct rio_mport *port, u32 offset,
77 u32 data)
79 return __rio_local_write_config_32(port, offset, data);
82 /**
83 * rio_local_read_config_16 - Read 16 bits from local configuration space
84 * @port: Master port
85 * @offset: Offset into local configuration space
86 * @data: Pointer to read data into
88 * Reads 16 bits of data from the specified offset within the local
89 * device's configuration space.
91 static inline int rio_local_read_config_16(struct rio_mport *port, u32 offset,
92 u16 * data)
94 return __rio_local_read_config_16(port, offset, data);
97 /**
98 * rio_local_write_config_16 - Write 16 bits to local configuration space
99 * @port: Master port
100 * @offset: Offset into local configuration space
101 * @data: Data to be written
103 * Writes 16 bits of data to the specified offset within the local
104 * device's configuration space.
107 static inline int rio_local_write_config_16(struct rio_mport *port, u32 offset,
108 u16 data)
110 return __rio_local_write_config_16(port, offset, data);
114 * rio_local_read_config_8 - Read 8 bits from local configuration space
115 * @port: Master port
116 * @offset: Offset into local configuration space
117 * @data: Pointer to read data into
119 * Reads 8 bits of data from the specified offset within the local
120 * device's configuration space.
122 static inline int rio_local_read_config_8(struct rio_mport *port, u32 offset,
123 u8 * data)
125 return __rio_local_read_config_8(port, offset, data);
129 * rio_local_write_config_8 - Write 8 bits to local configuration space
130 * @port: Master port
131 * @offset: Offset into local configuration space
132 * @data: Data to be written
134 * Writes 8 bits of data to the specified offset within the local
135 * device's configuration space.
137 static inline int rio_local_write_config_8(struct rio_mport *port, u32 offset,
138 u8 data)
140 return __rio_local_write_config_8(port, offset, data);
144 * rio_read_config_32 - Read 32 bits from configuration space
145 * @rdev: RIO device
146 * @offset: Offset into device configuration space
147 * @data: Pointer to read data into
149 * Reads 32 bits of data from the specified offset within the
150 * RIO device's configuration space.
152 static inline int rio_read_config_32(struct rio_dev *rdev, u32 offset,
153 u32 * data)
155 u8 hopcount = 0xff;
156 u16 destid = rdev->destid;
158 if (rdev->rswitch) {
159 destid = rdev->rswitch->destid;
160 hopcount = rdev->rswitch->hopcount;
163 return rio_mport_read_config_32(rdev->net->hport, destid, hopcount,
164 offset, data);
168 * rio_write_config_32 - Write 32 bits to configuration space
169 * @rdev: RIO device
170 * @offset: Offset into device configuration space
171 * @data: Data to be written
173 * Writes 32 bits of data to the specified offset within the
174 * RIO device's configuration space.
176 static inline int rio_write_config_32(struct rio_dev *rdev, u32 offset,
177 u32 data)
179 u8 hopcount = 0xff;
180 u16 destid = rdev->destid;
182 if (rdev->rswitch) {
183 destid = rdev->rswitch->destid;
184 hopcount = rdev->rswitch->hopcount;
187 return rio_mport_write_config_32(rdev->net->hport, destid, hopcount,
188 offset, data);
192 * rio_read_config_16 - Read 16 bits from configuration space
193 * @rdev: RIO device
194 * @offset: Offset into device configuration space
195 * @data: Pointer to read data into
197 * Reads 16 bits of data from the specified offset within the
198 * RIO device's configuration space.
200 static inline int rio_read_config_16(struct rio_dev *rdev, u32 offset,
201 u16 * data)
203 u8 hopcount = 0xff;
204 u16 destid = rdev->destid;
206 if (rdev->rswitch) {
207 destid = rdev->rswitch->destid;
208 hopcount = rdev->rswitch->hopcount;
211 return rio_mport_read_config_16(rdev->net->hport, destid, hopcount,
212 offset, data);
216 * rio_write_config_16 - Write 16 bits to configuration space
217 * @rdev: RIO device
218 * @offset: Offset into device configuration space
219 * @data: Data to be written
221 * Writes 16 bits of data to the specified offset within the
222 * RIO device's configuration space.
224 static inline int rio_write_config_16(struct rio_dev *rdev, u32 offset,
225 u16 data)
227 u8 hopcount = 0xff;
228 u16 destid = rdev->destid;
230 if (rdev->rswitch) {
231 destid = rdev->rswitch->destid;
232 hopcount = rdev->rswitch->hopcount;
235 return rio_mport_write_config_16(rdev->net->hport, destid, hopcount,
236 offset, data);
240 * rio_read_config_8 - Read 8 bits from configuration space
241 * @rdev: RIO device
242 * @offset: Offset into device configuration space
243 * @data: Pointer to read data into
245 * Reads 8 bits of data from the specified offset within the
246 * RIO device's configuration space.
248 static inline int rio_read_config_8(struct rio_dev *rdev, u32 offset, u8 * data)
250 u8 hopcount = 0xff;
251 u16 destid = rdev->destid;
253 if (rdev->rswitch) {
254 destid = rdev->rswitch->destid;
255 hopcount = rdev->rswitch->hopcount;
258 return rio_mport_read_config_8(rdev->net->hport, destid, hopcount,
259 offset, data);
263 * rio_write_config_8 - Write 8 bits to configuration space
264 * @rdev: RIO device
265 * @offset: Offset into device configuration space
266 * @data: Data to be written
268 * Writes 8 bits of data to the specified offset within the
269 * RIO device's configuration space.
271 static inline int rio_write_config_8(struct rio_dev *rdev, u32 offset, u8 data)
273 u8 hopcount = 0xff;
274 u16 destid = rdev->destid;
276 if (rdev->rswitch) {
277 destid = rdev->rswitch->destid;
278 hopcount = rdev->rswitch->hopcount;
281 return rio_mport_write_config_8(rdev->net->hport, destid, hopcount,
282 offset, data);
285 extern int rio_mport_send_doorbell(struct rio_mport *mport, u16 destid,
286 u16 data);
289 * rio_send_doorbell - Send a doorbell message to a device
290 * @rdev: RIO device
291 * @data: Doorbell message data
293 * Send a doorbell message to a RIO device. The doorbell message
294 * has a 16-bit info field provided by the @data argument.
296 static inline int rio_send_doorbell(struct rio_dev *rdev, u16 data)
298 return rio_mport_send_doorbell(rdev->net->hport, rdev->destid, data);
302 * rio_init_mbox_res - Initialize a RIO mailbox resource
303 * @res: resource struct
304 * @start: start of mailbox range
305 * @end: end of mailbox range
307 * This function is used to initialize the fields of a resource
308 * for use as a mailbox resource. It initializes a range of
309 * mailboxes using the start and end arguments.
311 static inline void rio_init_mbox_res(struct resource *res, int start, int end)
313 memset(res, 0, sizeof(struct resource));
314 res->start = start;
315 res->end = end;
316 res->flags = RIO_RESOURCE_MAILBOX;
320 * rio_init_dbell_res - Initialize a RIO doorbell resource
321 * @res: resource struct
322 * @start: start of doorbell range
323 * @end: end of doorbell range
325 * This function is used to initialize the fields of a resource
326 * for use as a doorbell resource. It initializes a range of
327 * doorbell messages using the start and end arguments.
329 static inline void rio_init_dbell_res(struct resource *res, u16 start, u16 end)
331 memset(res, 0, sizeof(struct resource));
332 res->start = start;
333 res->end = end;
334 res->flags = RIO_RESOURCE_DOORBELL;
338 * RIO_DEVICE - macro used to describe a specific RIO device
339 * @dev: the 16 bit RIO device ID
340 * @ven: the 16 bit RIO vendor ID
342 * This macro is used to create a struct rio_device_id that matches a
343 * specific device. The assembly vendor and assembly device fields
344 * will be set to %RIO_ANY_ID.
346 #define RIO_DEVICE(dev,ven) \
347 .did = (dev), .vid = (ven), \
348 .asm_did = RIO_ANY_ID, .asm_vid = RIO_ANY_ID
350 /* Mailbox management */
351 extern int rio_request_outb_mbox(struct rio_mport *, void *, int, int,
352 void (*)(struct rio_mport *, void *,int, int));
353 extern int rio_release_outb_mbox(struct rio_mport *, int);
356 * rio_add_outb_message - Add RIO message to an outbound mailbox queue
357 * @mport: RIO master port containing the outbound queue
358 * @rdev: RIO device the message is be sent to
359 * @mbox: The outbound mailbox queue
360 * @buffer: Pointer to the message buffer
361 * @len: Length of the message buffer
363 * Adds a RIO message buffer to an outbound mailbox queue for
364 * transmission. Returns 0 on success.
366 static inline int rio_add_outb_message(struct rio_mport *mport,
367 struct rio_dev *rdev, int mbox,
368 void *buffer, size_t len)
370 return rio_hw_add_outb_message(mport, rdev, mbox, buffer, len);
373 extern int rio_request_inb_mbox(struct rio_mport *, void *, int, int,
374 void (*)(struct rio_mport *, void *, int, int));
375 extern int rio_release_inb_mbox(struct rio_mport *, int);
378 * rio_add_inb_buffer - Add buffer to an inbound mailbox queue
379 * @mport: Master port containing the inbound mailbox
380 * @mbox: The inbound mailbox number
381 * @buffer: Pointer to the message buffer
383 * Adds a buffer to an inbound mailbox queue for reception. Returns
384 * 0 on success.
386 static inline int rio_add_inb_buffer(struct rio_mport *mport, int mbox,
387 void *buffer)
389 return rio_hw_add_inb_buffer(mport, mbox, buffer);
393 * rio_get_inb_message - Get A RIO message from an inbound mailbox queue
394 * @mport: Master port containing the inbound mailbox
395 * @mbox: The inbound mailbox number
396 * @buffer: Pointer to the message buffer
398 * Get a RIO message from an inbound mailbox queue. Returns 0 on success.
400 static inline void *rio_get_inb_message(struct rio_mport *mport, int mbox)
402 return rio_hw_get_inb_message(mport, mbox);
405 /* Doorbell management */
406 extern int rio_request_inb_dbell(struct rio_mport *, void *, u16, u16,
407 void (*)(struct rio_mport *, void *, u16, u16, u16));
408 extern int rio_release_inb_dbell(struct rio_mport *, u16, u16);
409 extern struct resource *rio_request_outb_dbell(struct rio_dev *, u16, u16);
410 extern int rio_release_outb_dbell(struct rio_dev *, struct resource *);
412 /* Memory region management */
413 int rio_claim_resource(struct rio_dev *, int);
414 int rio_request_regions(struct rio_dev *, char *);
415 void rio_release_regions(struct rio_dev *);
416 int rio_request_region(struct rio_dev *, int, char *);
417 void rio_release_region(struct rio_dev *, int);
419 /* LDM support */
420 int rio_register_driver(struct rio_driver *);
421 void rio_unregister_driver(struct rio_driver *);
422 struct rio_dev *rio_dev_get(struct rio_dev *);
423 void rio_dev_put(struct rio_dev *);
426 * rio_name - Get the unique RIO device identifier
427 * @rdev: RIO device
429 * Get the unique RIO device identifier. Returns the device
430 * identifier string.
432 static inline char *rio_name(struct rio_dev *rdev)
434 return rdev->dev.bus_id;
438 * rio_get_drvdata - Get RIO driver specific data
439 * @rdev: RIO device
441 * Get RIO driver specific data. Returns a pointer to the
442 * driver specific data.
444 static inline void *rio_get_drvdata(struct rio_dev *rdev)
446 return dev_get_drvdata(&rdev->dev);
450 * rio_set_drvdata - Set RIO driver specific data
451 * @rdev: RIO device
452 * @data: Pointer to driver specific data
454 * Set RIO driver specific data. device struct driver data pointer
455 * is set to the @data argument.
457 static inline void rio_set_drvdata(struct rio_dev *rdev, void *data)
459 dev_set_drvdata(&rdev->dev, data);
462 /* Misc driver helpers */
463 extern u16 rio_local_get_device_id(struct rio_mport *port);
464 extern struct rio_dev *rio_get_device(u16 vid, u16 did, struct rio_dev *from);
465 extern struct rio_dev *rio_get_asm(u16 vid, u16 did, u16 asm_vid, u16 asm_did,
466 struct rio_dev *from);
468 #endif /* __KERNEL__ */
469 #endif /* LINUX_RIO_DRV_H */