Merge branch 'powerpc-next' of master.kernel.org:/pub/scm/linux/kernel/git/galak...
[deliverable/linux.git] / include / linux / rio.h
1 /*
2 * RapidIO interconnect services
3 * (RapidIO Interconnect Specification, http://www.rapidio.org)
4 *
5 * Copyright 2005 MontaVista Software, Inc.
6 * Matt Porter <mporter@kernel.crashing.org>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 */
13
14 #ifndef LINUX_RIO_H
15 #define LINUX_RIO_H
16
17 #ifdef __KERNEL__
18
19 #include <linux/types.h>
20 #include <linux/ioport.h>
21 #include <linux/list.h>
22 #include <linux/errno.h>
23 #include <linux/device.h>
24 #include <linux/rio_regs.h>
25
26 #define RIO_NO_HOPCOUNT -1
27 #define RIO_INVALID_DESTID 0xffff
28
29 #define RIO_MAX_MPORT_RESOURCES 16
30 #define RIO_MAX_DEV_RESOURCES 16
31
32 #define RIO_GLOBAL_TABLE 0xff /* Indicates access of a switch's
33 global routing table if it
34 has multiple (or per port)
35 tables */
36
37 #define RIO_INVALID_ROUTE 0xff /* Indicates that a route table
38 entry is invalid (no route
39 exists for the device ID) */
40
41 #define RIO_MAX_ROUTE_ENTRIES(size) (size ? (1 << 16) : (1 << 8))
42 #define RIO_ANY_DESTID(size) (size ? 0xffff : 0xff)
43
44 #define RIO_MAX_MBOX 4
45 #define RIO_MAX_MSG_SIZE 0x1000
46
47 /*
48 * Error values that may be returned by RIO functions.
49 */
50 #define RIO_SUCCESSFUL 0x00
51 #define RIO_BAD_SIZE 0x81
52
53 /*
54 * For RIO devices, the region numbers are assigned this way:
55 *
56 * 0 RapidIO outbound doorbells
57 * 1-15 RapidIO memory regions
58 *
59 * For RIO master ports, the region number are assigned this way:
60 *
61 * 0 RapidIO inbound doorbells
62 * 1 RapidIO inbound mailboxes
63 * 1 RapidIO outbound mailboxes
64 */
65 #define RIO_DOORBELL_RESOURCE 0
66 #define RIO_INB_MBOX_RESOURCE 1
67 #define RIO_OUTB_MBOX_RESOURCE 2
68
69 extern struct bus_type rio_bus_type;
70 extern struct list_head rio_devices; /* list of all devices */
71
72 struct rio_mport;
73
74 /**
75 * struct rio_dev - RIO device info
76 * @global_list: Node in list of all RIO devices
77 * @net_list: Node in list of RIO devices in a network
78 * @net: Network this device is a part of
79 * @did: Device ID
80 * @vid: Vendor ID
81 * @device_rev: Device revision
82 * @asm_did: Assembly device ID
83 * @asm_vid: Assembly vendor ID
84 * @asm_rev: Assembly revision
85 * @efptr: Extended feature pointer
86 * @pef: Processing element features
87 * @swpinfo: Switch port info
88 * @src_ops: Source operation capabilities
89 * @dst_ops: Destination operation capabilities
90 * @dma_mask: Mask of bits of RIO address this device implements
91 * @rswitch: Pointer to &struct rio_switch if valid for this device
92 * @driver: Driver claiming this device
93 * @dev: Device model device
94 * @riores: RIO resources this device owns
95 * @destid: Network destination ID
96 */
97 struct rio_dev {
98 struct list_head global_list; /* node in list of all RIO devices */
99 struct list_head net_list; /* node in per net list */
100 struct rio_net *net; /* RIO net this device resides in */
101 u16 did;
102 u16 vid;
103 u32 device_rev;
104 u16 asm_did;
105 u16 asm_vid;
106 u16 asm_rev;
107 u16 efptr;
108 u32 pef;
109 u32 swpinfo; /* Only used for switches */
110 u32 src_ops;
111 u32 dst_ops;
112 u64 dma_mask;
113 struct rio_switch *rswitch; /* RIO switch info */
114 struct rio_driver *driver; /* RIO driver claiming this device */
115 struct device dev; /* LDM device structure */
116 struct resource riores[RIO_MAX_DEV_RESOURCES];
117 u16 destid;
118 };
119
120 #define rio_dev_g(n) list_entry(n, struct rio_dev, global_list)
121 #define rio_dev_f(n) list_entry(n, struct rio_dev, net_list)
122 #define to_rio_dev(n) container_of(n, struct rio_dev, dev)
123
124 /**
125 * struct rio_msg - RIO message event
126 * @res: Mailbox resource
127 * @mcback: Message event callback
128 */
129 struct rio_msg {
130 struct resource *res;
131 void (*mcback) (struct rio_mport * mport, void *dev_id, int mbox, int slot);
132 };
133
134 /**
135 * struct rio_dbell - RIO doorbell event
136 * @node: Node in list of doorbell events
137 * @res: Doorbell resource
138 * @dinb: Doorbell event callback
139 * @dev_id: Device specific pointer to pass on event
140 */
141 struct rio_dbell {
142 struct list_head node;
143 struct resource *res;
144 void (*dinb) (struct rio_mport *mport, void *dev_id, u16 src, u16 dst, u16 info);
145 void *dev_id;
146 };
147
148 enum rio_phy_type {
149 RIO_PHY_PARALLEL,
150 RIO_PHY_SERIAL,
151 };
152
153 /**
154 * struct rio_mport - RIO master port info
155 * @dbells: List of doorbell events
156 * @node: Node in global list of master ports
157 * @nnode: Node in network list of master ports
158 * @iores: I/O mem resource that this master port interface owns
159 * @riores: RIO resources that this master port interfaces owns
160 * @inb_msg: RIO inbound message event descriptors
161 * @outb_msg: RIO outbound message event descriptors
162 * @host_deviceid: Host device ID associated with this master port
163 * @ops: configuration space functions
164 * @id: Port ID, unique among all ports
165 * @index: Port index, unique among all port interfaces of the same type
166 * @sys_size: RapidIO common transport system size
167 * @phy_type: RapidIO phy type
168 * @name: Port name string
169 * @priv: Master port private data
170 */
171 struct rio_mport {
172 struct list_head dbells; /* list of doorbell events */
173 struct list_head node; /* node in global list of ports */
174 struct list_head nnode; /* node in net list of ports */
175 struct resource iores;
176 struct resource riores[RIO_MAX_MPORT_RESOURCES];
177 struct rio_msg inb_msg[RIO_MAX_MBOX];
178 struct rio_msg outb_msg[RIO_MAX_MBOX];
179 int host_deviceid; /* Host device ID */
180 struct rio_ops *ops; /* maintenance transaction functions */
181 unsigned char id; /* port ID, unique among all ports */
182 unsigned char index; /* port index, unique among all port
183 interfaces of the same type */
184 unsigned int sys_size; /* RapidIO common transport system size.
185 * 0 - Small size. 256 devices.
186 * 1 - Large size, 65536 devices.
187 */
188 enum rio_phy_type phy_type; /* RapidIO phy type */
189 unsigned char name[40];
190 void *priv; /* Master port private data */
191 };
192
193 /**
194 * struct rio_net - RIO network info
195 * @node: Node in global list of RIO networks
196 * @devices: List of devices in this network
197 * @mports: List of master ports accessing this network
198 * @hport: Default port for accessing this network
199 * @id: RIO network ID
200 */
201 struct rio_net {
202 struct list_head node; /* node in list of networks */
203 struct list_head devices; /* list of devices in this net */
204 struct list_head mports; /* list of ports accessing net */
205 struct rio_mport *hport; /* primary port for accessing net */
206 unsigned char id; /* RIO network ID */
207 };
208
209 /**
210 * struct rio_switch - RIO switch info
211 * @node: Node in global list of switches
212 * @switchid: Switch ID that is unique across a network
213 * @hopcount: Hopcount to this switch
214 * @destid: Associated destid in the path
215 * @route_table: Copy of switch routing table
216 * @add_entry: Callback for switch-specific route add function
217 * @get_entry: Callback for switch-specific route get function
218 */
219 struct rio_switch {
220 struct list_head node;
221 u16 switchid;
222 u16 hopcount;
223 u16 destid;
224 u8 *route_table;
225 int (*add_entry) (struct rio_mport * mport, u16 destid, u8 hopcount,
226 u16 table, u16 route_destid, u8 route_port);
227 int (*get_entry) (struct rio_mport * mport, u16 destid, u8 hopcount,
228 u16 table, u16 route_destid, u8 * route_port);
229 };
230
231 /* Low-level architecture-dependent routines */
232
233 /**
234 * struct rio_ops - Low-level RIO configuration space operations
235 * @lcread: Callback to perform local (master port) read of config space.
236 * @lcwrite: Callback to perform local (master port) write of config space.
237 * @cread: Callback to perform network read of config space.
238 * @cwrite: Callback to perform network write of config space.
239 * @dsend: Callback to send a doorbell message.
240 */
241 struct rio_ops {
242 int (*lcread) (struct rio_mport *mport, int index, u32 offset, int len,
243 u32 *data);
244 int (*lcwrite) (struct rio_mport *mport, int index, u32 offset, int len,
245 u32 data);
246 int (*cread) (struct rio_mport *mport, int index, u16 destid,
247 u8 hopcount, u32 offset, int len, u32 *data);
248 int (*cwrite) (struct rio_mport *mport, int index, u16 destid,
249 u8 hopcount, u32 offset, int len, u32 data);
250 int (*dsend) (struct rio_mport *mport, int index, u16 destid, u16 data);
251 };
252
253 #define RIO_RESOURCE_MEM 0x00000100
254 #define RIO_RESOURCE_DOORBELL 0x00000200
255 #define RIO_RESOURCE_MAILBOX 0x00000400
256
257 #define RIO_RESOURCE_CACHEABLE 0x00010000
258 #define RIO_RESOURCE_PCI 0x00020000
259
260 #define RIO_RESOURCE_BUSY 0x80000000
261
262 /**
263 * struct rio_driver - RIO driver info
264 * @node: Node in list of drivers
265 * @name: RIO driver name
266 * @id_table: RIO device ids to be associated with this driver
267 * @probe: RIO device inserted
268 * @remove: RIO device removed
269 * @suspend: RIO device suspended
270 * @resume: RIO device awakened
271 * @enable_wake: RIO device enable wake event
272 * @driver: LDM driver struct
273 *
274 * Provides info on a RIO device driver for insertion/removal and
275 * power management purposes.
276 */
277 struct rio_driver {
278 struct list_head node;
279 char *name;
280 const struct rio_device_id *id_table;
281 int (*probe) (struct rio_dev * dev, const struct rio_device_id * id);
282 void (*remove) (struct rio_dev * dev);
283 int (*suspend) (struct rio_dev * dev, u32 state);
284 int (*resume) (struct rio_dev * dev);
285 int (*enable_wake) (struct rio_dev * dev, u32 state, int enable);
286 struct device_driver driver;
287 };
288
289 #define to_rio_driver(drv) container_of(drv,struct rio_driver, driver)
290
291 /**
292 * struct rio_device_id - RIO device identifier
293 * @did: RIO device ID
294 * @vid: RIO vendor ID
295 * @asm_did: RIO assembly device ID
296 * @asm_vid: RIO assembly vendor ID
297 *
298 * Identifies a RIO device based on both the device/vendor IDs and
299 * the assembly device/vendor IDs.
300 */
301 struct rio_device_id {
302 u16 did, vid;
303 u16 asm_did, asm_vid;
304 };
305
306 /**
307 * struct rio_route_ops - Per-switch route operations
308 * @vid: RIO vendor ID
309 * @did: RIO device ID
310 * @add_hook: Callback that adds a route entry
311 * @get_hook: Callback that gets a route entry
312 *
313 * Defines the operations that are necessary to manipulate the route
314 * tables for a particular RIO switch device.
315 */
316 struct rio_route_ops {
317 u16 vid, did;
318 int (*add_hook) (struct rio_mport * mport, u16 destid, u8 hopcount,
319 u16 table, u16 route_destid, u8 route_port);
320 int (*get_hook) (struct rio_mport * mport, u16 destid, u8 hopcount,
321 u16 table, u16 route_destid, u8 * route_port);
322 };
323
324 /* Architecture and hardware-specific functions */
325 extern int rio_init_mports(void);
326 extern void rio_register_mport(struct rio_mport *);
327 extern int rio_hw_add_outb_message(struct rio_mport *, struct rio_dev *, int,
328 void *, size_t);
329 extern int rio_hw_add_inb_buffer(struct rio_mport *, int, void *);
330 extern void *rio_hw_get_inb_message(struct rio_mport *, int);
331 extern int rio_open_inb_mbox(struct rio_mport *, void *, int, int);
332 extern void rio_close_inb_mbox(struct rio_mport *, int);
333 extern int rio_open_outb_mbox(struct rio_mport *, void *, int, int);
334 extern void rio_close_outb_mbox(struct rio_mport *, int);
335
336 #endif /* __KERNEL__ */
337 #endif /* LINUX_RIO_H */
This page took 0.04072 seconds and 6 git commands to generate.