aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/rio.h
diff options
context:
space:
mode:
authorAlexandre Bounine <alexandre.bounine@idt.com>2010-05-26 17:43:59 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2010-05-27 12:12:50 -0400
commite5cabeb3d60f9cd3e3950aff071319ae0e2d08d8 (patch)
treee866f1a9076608630a40f21f0a50c073dedb0e57 /include/linux/rio.h
parent818a04a0bb93643d57dd8935815de2ff307b58a3 (diff)
rapidio: add Port-Write handling for EM
Add RapidIO Port-Write message handling in the context of Error Management Extensions Specification Rev.1.3. Signed-off-by: Alexandre Bounine <alexandre.bounine@idt.com> Tested-by: Thomas Moll <thomas.moll@sysgo.com> Cc: Matt Porter <mporter@kernel.crashing.org> Cc: Li Yang <leoli@freescale.com> Cc: Kumar Gala <galak@kernel.crashing.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/rio.h')
-rw-r--r--include/linux/rio.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/include/linux/rio.h b/include/linux/rio.h
index 29d98997c6c8..4ec31f44f406 100644
--- a/include/linux/rio.h
+++ b/include/linux/rio.h
@@ -64,10 +64,13 @@
64#define RIO_INB_MBOX_RESOURCE 1 64#define RIO_INB_MBOX_RESOURCE 1
65#define RIO_OUTB_MBOX_RESOURCE 2 65#define RIO_OUTB_MBOX_RESOURCE 2
66 66
67#define RIO_PW_MSG_SIZE 64
68
67extern struct bus_type rio_bus_type; 69extern struct bus_type rio_bus_type;
68extern struct list_head rio_devices; /* list of all devices */ 70extern struct list_head rio_devices; /* list of all devices */
69 71
70struct rio_mport; 72struct rio_mport;
73union rio_pw_msg;
71 74
72/** 75/**
73 * struct rio_dev - RIO device info 76 * struct rio_dev - RIO device info
@@ -107,11 +110,15 @@ struct rio_dev {
107 u32 swpinfo; /* Only used for switches */ 110 u32 swpinfo; /* Only used for switches */
108 u32 src_ops; 111 u32 src_ops;
109 u32 dst_ops; 112 u32 dst_ops;
113 u32 comp_tag;
114 u32 phys_efptr;
115 u32 em_efptr;
110 u64 dma_mask; 116 u64 dma_mask;
111 struct rio_switch *rswitch; /* RIO switch info */ 117 struct rio_switch *rswitch; /* RIO switch info */
112 struct rio_driver *driver; /* RIO driver claiming this device */ 118 struct rio_driver *driver; /* RIO driver claiming this device */
113 struct device dev; /* LDM device structure */ 119 struct device dev; /* LDM device structure */
114 struct resource riores[RIO_MAX_DEV_RESOURCES]; 120 struct resource riores[RIO_MAX_DEV_RESOURCES];
121 int (*pwcback) (struct rio_dev *rdev, union rio_pw_msg *msg, int step);
115 u16 destid; 122 u16 destid;
116}; 123};
117 124
@@ -211,9 +218,12 @@ struct rio_net {
211 * @hopcount: Hopcount to this switch 218 * @hopcount: Hopcount to this switch
212 * @destid: Associated destid in the path 219 * @destid: Associated destid in the path
213 * @route_table: Copy of switch routing table 220 * @route_table: Copy of switch routing table
221 * @port_ok: Status of each port (one bit per port) - OK=1 or UNINIT=0
214 * @add_entry: Callback for switch-specific route add function 222 * @add_entry: Callback for switch-specific route add function
215 * @get_entry: Callback for switch-specific route get function 223 * @get_entry: Callback for switch-specific route get function
216 * @clr_table: Callback for switch-specific clear route table function 224 * @clr_table: Callback for switch-specific clear route table function
225 * @em_init: Callback for switch-specific error management initialization function
226 * @em_handle: Callback for switch-specific error management handler function
217 */ 227 */
218struct rio_switch { 228struct rio_switch {
219 struct list_head node; 229 struct list_head node;
@@ -221,12 +231,15 @@ struct rio_switch {
221 u16 hopcount; 231 u16 hopcount;
222 u16 destid; 232 u16 destid;
223 u8 *route_table; 233 u8 *route_table;
234 u32 port_ok;
224 int (*add_entry) (struct rio_mport * mport, u16 destid, u8 hopcount, 235 int (*add_entry) (struct rio_mport * mport, u16 destid, u8 hopcount,
225 u16 table, u16 route_destid, u8 route_port); 236 u16 table, u16 route_destid, u8 route_port);
226 int (*get_entry) (struct rio_mport * mport, u16 destid, u8 hopcount, 237 int (*get_entry) (struct rio_mport * mport, u16 destid, u8 hopcount,
227 u16 table, u16 route_destid, u8 * route_port); 238 u16 table, u16 route_destid, u8 * route_port);
228 int (*clr_table) (struct rio_mport *mport, u16 destid, u8 hopcount, 239 int (*clr_table) (struct rio_mport *mport, u16 destid, u8 hopcount,
229 u16 table); 240 u16 table);
241 int (*em_init) (struct rio_dev *dev);
242 int (*em_handle) (struct rio_dev *dev, u8 swport);
230}; 243};
231 244
232/* Low-level architecture-dependent routines */ 245/* Low-level architecture-dependent routines */
@@ -238,6 +251,7 @@ struct rio_switch {
238 * @cread: Callback to perform network read of config space. 251 * @cread: Callback to perform network read of config space.
239 * @cwrite: Callback to perform network write of config space. 252 * @cwrite: Callback to perform network write of config space.
240 * @dsend: Callback to send a doorbell message. 253 * @dsend: Callback to send a doorbell message.
254 * @pwenable: Callback to enable/disable port-write message handling.
241 */ 255 */
242struct rio_ops { 256struct rio_ops {
243 int (*lcread) (struct rio_mport *mport, int index, u32 offset, int len, 257 int (*lcread) (struct rio_mport *mport, int index, u32 offset, int len,
@@ -249,6 +263,7 @@ struct rio_ops {
249 int (*cwrite) (struct rio_mport *mport, int index, u16 destid, 263 int (*cwrite) (struct rio_mport *mport, int index, u16 destid,
250 u8 hopcount, u32 offset, int len, u32 data); 264 u8 hopcount, u32 offset, int len, u32 data);
251 int (*dsend) (struct rio_mport *mport, int index, u16 destid, u16 data); 265 int (*dsend) (struct rio_mport *mport, int index, u16 destid, u16 data);
266 int (*pwenable) (struct rio_mport *mport, int enable);
252}; 267};
253 268
254#define RIO_RESOURCE_MEM 0x00000100 269#define RIO_RESOURCE_MEM 0x00000100
@@ -325,6 +340,33 @@ struct rio_route_ops {
325 u16 table); 340 u16 table);
326}; 341};
327 342
343/**
344 * struct rio_em_ops - Per-switch error management operations
345 * @vid: RIO vendor ID
346 * @did: RIO device ID
347 * @init_hook: Switch specific error management initialization (may be NULL)
348 * @handler_hook: Switch specific error management handler (may be NULL)
349 *
350 * Defines the operations that are necessary to initialize and handle
351 * error management events for a particular RIO switch device.
352 */
353struct rio_em_ops {
354 u16 vid, did;
355 int (*init_hook) (struct rio_dev *dev);
356 int (*handler_hook) (struct rio_dev *dev, u8 swport);
357};
358
359union rio_pw_msg {
360 struct {
361 u32 comptag; /* Component Tag CSR */
362 u32 errdetect; /* Port N Error Detect CSR */
363 u32 is_port; /* Implementation specific + PortID */
364 u32 ltlerrdet; /* LTL Error Detect CSR */
365 u32 padding[12];
366 } em;
367 u32 raw[RIO_PW_MSG_SIZE/sizeof(u32)];
368};
369
328/* Architecture and hardware-specific functions */ 370/* Architecture and hardware-specific functions */
329extern int rio_init_mports(void); 371extern int rio_init_mports(void);
330extern void rio_register_mport(struct rio_mport *); 372extern void rio_register_mport(struct rio_mport *);