blob: 8fa732e46bf66aa91df68abfdaa8eeecc7aa3014 [file] [log] [blame]
Matt Porter394b7012005-11-07 01:00:15 -08001/*
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 *
Alexandre Bouninee5cabeb2010-05-26 14:43:59 -07008 * Copyright 2009 Integrated Device Technology, Inc.
9 * Alex Bounine <alexandre.bounine@idt.com>
10 * - Added Port-Write/Error Management initialization and handling
11 *
Matt Porter394b7012005-11-07 01:00:15 -080012 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
16 */
17
Matt Porter394b7012005-11-07 01:00:15 -080018#include <linux/types.h>
19#include <linux/kernel.h>
20
21#include <linux/delay.h>
22#include <linux/init.h>
23#include <linux/rio.h>
24#include <linux/rio_drv.h>
25#include <linux/rio_ids.h>
26#include <linux/rio_regs.h>
27#include <linux/module.h>
28#include <linux/spinlock.h>
Tim Schmielaude259682006-01-08 01:02:05 -080029#include <linux/slab.h>
Kumar Gala5febf1c2008-01-23 05:53:47 -060030#include <linux/interrupt.h>
Matt Porter394b7012005-11-07 01:00:15 -080031
32#include "rio.h"
33
34static LIST_HEAD(rio_mports);
35
36/**
37 * rio_local_get_device_id - Get the base/extended device id for a port
38 * @port: RIO master port from which to get the deviceid
39 *
40 * Reads the base/extended device id from the local device
41 * implementing the master port. Returns the 8/16-bit device
42 * id.
43 */
44u16 rio_local_get_device_id(struct rio_mport *port)
45{
46 u32 result;
47
48 rio_local_read_config_32(port, RIO_DID_CSR, &result);
49
Zhang Weie0423232008-04-18 13:33:42 -070050 return (RIO_GET_DID(port->sys_size, result));
Matt Porter394b7012005-11-07 01:00:15 -080051}
52
53/**
54 * rio_request_inb_mbox - request inbound mailbox service
55 * @mport: RIO master port from which to allocate the mailbox resource
Matt Porter6978bbc2005-11-07 01:00:20 -080056 * @dev_id: Device specific pointer to pass on event
Matt Porter394b7012005-11-07 01:00:15 -080057 * @mbox: Mailbox number to claim
58 * @entries: Number of entries in inbound mailbox queue
59 * @minb: Callback to execute when inbound message is received
60 *
61 * Requests ownership of an inbound mailbox resource and binds
62 * a callback function to the resource. Returns %0 on success.
63 */
64int rio_request_inb_mbox(struct rio_mport *mport,
Matt Porter6978bbc2005-11-07 01:00:20 -080065 void *dev_id,
Matt Porter394b7012005-11-07 01:00:15 -080066 int mbox,
67 int entries,
Matt Porter6978bbc2005-11-07 01:00:20 -080068 void (*minb) (struct rio_mport * mport, void *dev_id, int mbox,
Matt Porter394b7012005-11-07 01:00:15 -080069 int slot))
70{
71 int rc = 0;
72
73 struct resource *res = kmalloc(sizeof(struct resource), GFP_KERNEL);
74
75 if (res) {
76 rio_init_mbox_res(res, mbox, mbox);
77
78 /* Make sure this mailbox isn't in use */
79 if ((rc =
80 request_resource(&mport->riores[RIO_INB_MBOX_RESOURCE],
81 res)) < 0) {
82 kfree(res);
83 goto out;
84 }
85
86 mport->inb_msg[mbox].res = res;
87
88 /* Hook the inbound message callback */
89 mport->inb_msg[mbox].mcback = minb;
90
Matt Porter6978bbc2005-11-07 01:00:20 -080091 rc = rio_open_inb_mbox(mport, dev_id, mbox, entries);
Matt Porter394b7012005-11-07 01:00:15 -080092 } else
93 rc = -ENOMEM;
94
95 out:
96 return rc;
97}
98
99/**
100 * rio_release_inb_mbox - release inbound mailbox message service
101 * @mport: RIO master port from which to release the mailbox resource
102 * @mbox: Mailbox number to release
103 *
104 * Releases ownership of an inbound mailbox resource. Returns 0
105 * if the request has been satisfied.
106 */
107int rio_release_inb_mbox(struct rio_mport *mport, int mbox)
108{
109 rio_close_inb_mbox(mport, mbox);
110
111 /* Release the mailbox resource */
112 return release_resource(mport->inb_msg[mbox].res);
113}
114
115/**
116 * rio_request_outb_mbox - request outbound mailbox service
117 * @mport: RIO master port from which to allocate the mailbox resource
Matt Porter6978bbc2005-11-07 01:00:20 -0800118 * @dev_id: Device specific pointer to pass on event
Matt Porter394b7012005-11-07 01:00:15 -0800119 * @mbox: Mailbox number to claim
120 * @entries: Number of entries in outbound mailbox queue
121 * @moutb: Callback to execute when outbound message is sent
122 *
123 * Requests ownership of an outbound mailbox resource and binds
124 * a callback function to the resource. Returns 0 on success.
125 */
126int rio_request_outb_mbox(struct rio_mport *mport,
Matt Porter6978bbc2005-11-07 01:00:20 -0800127 void *dev_id,
Matt Porter394b7012005-11-07 01:00:15 -0800128 int mbox,
129 int entries,
Matt Porter6978bbc2005-11-07 01:00:20 -0800130 void (*moutb) (struct rio_mport * mport, void *dev_id, int mbox, int slot))
Matt Porter394b7012005-11-07 01:00:15 -0800131{
132 int rc = 0;
133
134 struct resource *res = kmalloc(sizeof(struct resource), GFP_KERNEL);
135
136 if (res) {
137 rio_init_mbox_res(res, mbox, mbox);
138
139 /* Make sure this outbound mailbox isn't in use */
140 if ((rc =
141 request_resource(&mport->riores[RIO_OUTB_MBOX_RESOURCE],
142 res)) < 0) {
143 kfree(res);
144 goto out;
145 }
146
147 mport->outb_msg[mbox].res = res;
148
149 /* Hook the inbound message callback */
150 mport->outb_msg[mbox].mcback = moutb;
151
Matt Porter6978bbc2005-11-07 01:00:20 -0800152 rc = rio_open_outb_mbox(mport, dev_id, mbox, entries);
Matt Porter394b7012005-11-07 01:00:15 -0800153 } else
154 rc = -ENOMEM;
155
156 out:
157 return rc;
158}
159
160/**
161 * rio_release_outb_mbox - release outbound mailbox message service
162 * @mport: RIO master port from which to release the mailbox resource
163 * @mbox: Mailbox number to release
164 *
165 * Releases ownership of an inbound mailbox resource. Returns 0
166 * if the request has been satisfied.
167 */
168int rio_release_outb_mbox(struct rio_mport *mport, int mbox)
169{
170 rio_close_outb_mbox(mport, mbox);
171
172 /* Release the mailbox resource */
173 return release_resource(mport->outb_msg[mbox].res);
174}
175
176/**
177 * rio_setup_inb_dbell - bind inbound doorbell callback
178 * @mport: RIO master port to bind the doorbell callback
Matt Porter6978bbc2005-11-07 01:00:20 -0800179 * @dev_id: Device specific pointer to pass on event
Matt Porter394b7012005-11-07 01:00:15 -0800180 * @res: Doorbell message resource
181 * @dinb: Callback to execute when doorbell is received
182 *
183 * Adds a doorbell resource/callback pair into a port's
184 * doorbell event list. Returns 0 if the request has been
185 * satisfied.
186 */
187static int
Matt Porter6978bbc2005-11-07 01:00:20 -0800188rio_setup_inb_dbell(struct rio_mport *mport, void *dev_id, struct resource *res,
189 void (*dinb) (struct rio_mport * mport, void *dev_id, u16 src, u16 dst,
Matt Porter394b7012005-11-07 01:00:15 -0800190 u16 info))
191{
192 int rc = 0;
193 struct rio_dbell *dbell;
194
195 if (!(dbell = kmalloc(sizeof(struct rio_dbell), GFP_KERNEL))) {
196 rc = -ENOMEM;
197 goto out;
198 }
199
200 dbell->res = res;
201 dbell->dinb = dinb;
Matt Porter6978bbc2005-11-07 01:00:20 -0800202 dbell->dev_id = dev_id;
Matt Porter394b7012005-11-07 01:00:15 -0800203
204 list_add_tail(&dbell->node, &mport->dbells);
205
206 out:
207 return rc;
208}
209
210/**
211 * rio_request_inb_dbell - request inbound doorbell message service
212 * @mport: RIO master port from which to allocate the doorbell resource
Matt Porter6978bbc2005-11-07 01:00:20 -0800213 * @dev_id: Device specific pointer to pass on event
Matt Porter394b7012005-11-07 01:00:15 -0800214 * @start: Doorbell info range start
215 * @end: Doorbell info range end
216 * @dinb: Callback to execute when doorbell is received
217 *
218 * Requests ownership of an inbound doorbell resource and binds
219 * a callback function to the resource. Returns 0 if the request
220 * has been satisfied.
221 */
222int rio_request_inb_dbell(struct rio_mport *mport,
Matt Porter6978bbc2005-11-07 01:00:20 -0800223 void *dev_id,
Matt Porter394b7012005-11-07 01:00:15 -0800224 u16 start,
225 u16 end,
Matt Porter6978bbc2005-11-07 01:00:20 -0800226 void (*dinb) (struct rio_mport * mport, void *dev_id, u16 src,
Matt Porter394b7012005-11-07 01:00:15 -0800227 u16 dst, u16 info))
228{
229 int rc = 0;
230
231 struct resource *res = kmalloc(sizeof(struct resource), GFP_KERNEL);
232
233 if (res) {
234 rio_init_dbell_res(res, start, end);
235
236 /* Make sure these doorbells aren't in use */
237 if ((rc =
238 request_resource(&mport->riores[RIO_DOORBELL_RESOURCE],
239 res)) < 0) {
240 kfree(res);
241 goto out;
242 }
243
244 /* Hook the doorbell callback */
Matt Porter6978bbc2005-11-07 01:00:20 -0800245 rc = rio_setup_inb_dbell(mport, dev_id, res, dinb);
Matt Porter394b7012005-11-07 01:00:15 -0800246 } else
247 rc = -ENOMEM;
248
249 out:
250 return rc;
251}
252
253/**
254 * rio_release_inb_dbell - release inbound doorbell message service
255 * @mport: RIO master port from which to release the doorbell resource
256 * @start: Doorbell info range start
257 * @end: Doorbell info range end
258 *
259 * Releases ownership of an inbound doorbell resource and removes
260 * callback from the doorbell event list. Returns 0 if the request
261 * has been satisfied.
262 */
263int rio_release_inb_dbell(struct rio_mport *mport, u16 start, u16 end)
264{
265 int rc = 0, found = 0;
266 struct rio_dbell *dbell;
267
268 list_for_each_entry(dbell, &mport->dbells, node) {
269 if ((dbell->res->start == start) && (dbell->res->end == end)) {
270 found = 1;
271 break;
272 }
273 }
274
275 /* If we can't find an exact match, fail */
276 if (!found) {
277 rc = -EINVAL;
278 goto out;
279 }
280
281 /* Delete from list */
282 list_del(&dbell->node);
283
284 /* Release the doorbell resource */
285 rc = release_resource(dbell->res);
286
287 /* Free the doorbell event */
288 kfree(dbell);
289
290 out:
291 return rc;
292}
293
294/**
295 * rio_request_outb_dbell - request outbound doorbell message range
296 * @rdev: RIO device from which to allocate the doorbell resource
297 * @start: Doorbell message range start
298 * @end: Doorbell message range end
299 *
300 * Requests ownership of a doorbell message range. Returns a resource
301 * if the request has been satisfied or %NULL on failure.
302 */
303struct resource *rio_request_outb_dbell(struct rio_dev *rdev, u16 start,
304 u16 end)
305{
306 struct resource *res = kmalloc(sizeof(struct resource), GFP_KERNEL);
307
308 if (res) {
309 rio_init_dbell_res(res, start, end);
310
311 /* Make sure these doorbells aren't in use */
312 if (request_resource(&rdev->riores[RIO_DOORBELL_RESOURCE], res)
313 < 0) {
314 kfree(res);
315 res = NULL;
316 }
317 }
318
319 return res;
320}
321
322/**
323 * rio_release_outb_dbell - release outbound doorbell message range
324 * @rdev: RIO device from which to release the doorbell resource
325 * @res: Doorbell resource to be freed
326 *
327 * Releases ownership of a doorbell message range. Returns 0 if the
328 * request has been satisfied.
329 */
330int rio_release_outb_dbell(struct rio_dev *rdev, struct resource *res)
331{
332 int rc = release_resource(res);
333
334 kfree(res);
335
336 return rc;
337}
338
339/**
Alexandre Bouninee5cabeb2010-05-26 14:43:59 -0700340 * rio_request_inb_pwrite - request inbound port-write message service
341 * @mport: RIO device to which register inbound port-write callback routine
342 * @pwcback: Callback routine to execute when port-write is received
343 *
344 * Binds a port-write callback function to the RapidIO device.
345 * Returns 0 if the request has been satisfied.
346 */
347int rio_request_inb_pwrite(struct rio_dev *rdev,
348 int (*pwcback)(struct rio_dev *rdev, union rio_pw_msg *msg, int step))
349{
350 int rc = 0;
351
352 spin_lock(&rio_global_list_lock);
353 if (rdev->pwcback != NULL)
354 rc = -ENOMEM;
355 else
356 rdev->pwcback = pwcback;
357
358 spin_unlock(&rio_global_list_lock);
359 return rc;
360}
361EXPORT_SYMBOL_GPL(rio_request_inb_pwrite);
362
363/**
364 * rio_release_inb_pwrite - release inbound port-write message service
365 * @rdev: RIO device which registered for inbound port-write callback
366 *
367 * Removes callback from the rio_dev structure. Returns 0 if the request
368 * has been satisfied.
369 */
370int rio_release_inb_pwrite(struct rio_dev *rdev)
371{
372 int rc = -ENOMEM;
373
374 spin_lock(&rio_global_list_lock);
375 if (rdev->pwcback) {
376 rdev->pwcback = NULL;
377 rc = 0;
378 }
379
380 spin_unlock(&rio_global_list_lock);
381 return rc;
382}
383EXPORT_SYMBOL_GPL(rio_release_inb_pwrite);
384
385/**
386 * rio_mport_get_physefb - Helper function that returns register offset
387 * for Physical Layer Extended Features Block.
388 * @rdev: RIO device
389 */
390u32
391rio_mport_get_physefb(struct rio_mport *port, int local,
392 u16 destid, u8 hopcount)
393{
394 u32 ext_ftr_ptr;
395 u32 ftr_header;
396
397 ext_ftr_ptr = rio_mport_get_efb(port, local, destid, hopcount, 0);
398
399 while (ext_ftr_ptr) {
400 if (local)
401 rio_local_read_config_32(port, ext_ftr_ptr,
402 &ftr_header);
403 else
404 rio_mport_read_config_32(port, destid, hopcount,
405 ext_ftr_ptr, &ftr_header);
406
407 ftr_header = RIO_GET_BLOCK_ID(ftr_header);
408 switch (ftr_header) {
409
410 case RIO_EFB_SER_EP_ID_V13P:
411 case RIO_EFB_SER_EP_REC_ID_V13P:
412 case RIO_EFB_SER_EP_FREE_ID_V13P:
413 case RIO_EFB_SER_EP_ID:
414 case RIO_EFB_SER_EP_REC_ID:
415 case RIO_EFB_SER_EP_FREE_ID:
416 case RIO_EFB_SER_EP_FREC_ID:
417
418 return ext_ftr_ptr;
419
420 default:
421 break;
422 }
423
424 ext_ftr_ptr = rio_mport_get_efb(port, local, destid,
425 hopcount, ext_ftr_ptr);
426 }
427
428 return ext_ftr_ptr;
429}
430
431/**
432 * rio_get_comptag - Begin or continue searching for a RIO device by component tag
433 * @comp_tag: RIO component tad to match
434 * @from: Previous RIO device found in search, or %NULL for new search
435 *
436 * Iterates through the list of known RIO devices. If a RIO device is
437 * found with a matching @comp_tag, a pointer to its device
438 * structure is returned. Otherwise, %NULL is returned. A new search
439 * is initiated by passing %NULL to the @from argument. Otherwise, if
440 * @from is not %NULL, searches continue from next device on the global
441 * list.
442 */
443static struct rio_dev *rio_get_comptag(u32 comp_tag, struct rio_dev *from)
444{
445 struct list_head *n;
446 struct rio_dev *rdev;
447
448 WARN_ON(in_interrupt());
449 spin_lock(&rio_global_list_lock);
450 n = from ? from->global_list.next : rio_devices.next;
451
452 while (n && (n != &rio_devices)) {
453 rdev = rio_dev_g(n);
454 if (rdev->comp_tag == comp_tag)
455 goto exit;
456 n = n->next;
457 }
458 rdev = NULL;
459exit:
460 spin_unlock(&rio_global_list_lock);
461 return rdev;
462}
463
464/**
465 * rio_set_port_lockout - Sets/clears LOCKOUT bit (RIO EM 1.3) for a switch port.
466 * @rdev: Pointer to RIO device control structure
467 * @pnum: Switch port number to set LOCKOUT bit
468 * @lock: Operation : set (=1) or clear (=0)
469 */
470int rio_set_port_lockout(struct rio_dev *rdev, u32 pnum, int lock)
471{
472 u8 hopcount = 0xff;
473 u16 destid = rdev->destid;
474 u32 regval;
475
476 if (rdev->rswitch) {
477 destid = rdev->rswitch->destid;
478 hopcount = rdev->rswitch->hopcount;
479 }
480
481 rio_mport_read_config_32(rdev->net->hport, destid, hopcount,
482 rdev->phys_efptr + RIO_PORT_N_CTL_CSR(pnum),
483 &regval);
484 if (lock)
485 regval |= RIO_PORT_N_CTL_LOCKOUT;
486 else
487 regval &= ~RIO_PORT_N_CTL_LOCKOUT;
488
489 rio_mport_write_config_32(rdev->net->hport, destid, hopcount,
490 rdev->phys_efptr + RIO_PORT_N_CTL_CSR(pnum),
491 regval);
492 return 0;
493}
494
495/**
496 * rio_inb_pwrite_handler - process inbound port-write message
497 * @pw_msg: pointer to inbound port-write message
498 *
499 * Processes an inbound port-write message. Returns 0 if the request
500 * has been satisfied.
501 */
502int rio_inb_pwrite_handler(union rio_pw_msg *pw_msg)
503{
504 struct rio_dev *rdev;
505 struct rio_mport *mport;
506 u8 hopcount;
507 u16 destid;
508 u32 err_status;
509 int rc, portnum;
510
511 rdev = rio_get_comptag(pw_msg->em.comptag, NULL);
512 if (rdev == NULL) {
513 /* Someting bad here (probably enumeration error) */
514 pr_err("RIO: %s No matching device for CTag 0x%08x\n",
515 __func__, pw_msg->em.comptag);
516 return -EIO;
517 }
518
519 pr_debug("RIO: Port-Write message from %s\n", rio_name(rdev));
520
521#ifdef DEBUG_PW
522 {
523 u32 i;
524 for (i = 0; i < RIO_PW_MSG_SIZE/sizeof(u32);) {
525 pr_debug("0x%02x: %08x %08x %08x %08x",
526 i*4, pw_msg->raw[i], pw_msg->raw[i + 1],
527 pw_msg->raw[i + 2], pw_msg->raw[i + 3]);
528 i += 4;
529 }
530 pr_debug("\n");
531 }
532#endif
533
534 /* Call an external service function (if such is registered
535 * for this device). This may be the service for endpoints that send
536 * device-specific port-write messages. End-point messages expected
537 * to be handled completely by EP specific device driver.
538 * For switches rc==0 signals that no standard processing required.
539 */
540 if (rdev->pwcback != NULL) {
541 rc = rdev->pwcback(rdev, pw_msg, 0);
542 if (rc == 0)
543 return 0;
544 }
545
546 /* For End-point devices processing stops here */
547 if (!(rdev->pef & RIO_PEF_SWITCH))
548 return 0;
549
550 if (rdev->phys_efptr == 0) {
551 pr_err("RIO_PW: Bad switch initialization for %s\n",
552 rio_name(rdev));
553 return 0;
554 }
555
556 mport = rdev->net->hport;
557 destid = rdev->rswitch->destid;
558 hopcount = rdev->rswitch->hopcount;
559
560 /*
561 * Process the port-write notification from switch
562 */
563
564 portnum = pw_msg->em.is_port & 0xFF;
565
566 if (rdev->rswitch->em_handle)
567 rdev->rswitch->em_handle(rdev, portnum);
568
569 rio_mport_read_config_32(mport, destid, hopcount,
570 rdev->phys_efptr + RIO_PORT_N_ERR_STS_CSR(portnum),
571 &err_status);
572 pr_debug("RIO_PW: SP%d_ERR_STS_CSR=0x%08x\n", portnum, err_status);
573
574 if (pw_msg->em.errdetect) {
575 pr_debug("RIO_PW: RIO_EM_P%d_ERR_DETECT=0x%08x\n",
576 portnum, pw_msg->em.errdetect);
577 /* Clear EM Port N Error Detect CSR */
578 rio_mport_write_config_32(mport, destid, hopcount,
579 rdev->em_efptr + RIO_EM_PN_ERR_DETECT(portnum), 0);
580 }
581
582 if (pw_msg->em.ltlerrdet) {
583 pr_debug("RIO_PW: RIO_EM_LTL_ERR_DETECT=0x%08x\n",
584 pw_msg->em.ltlerrdet);
585 /* Clear EM L/T Layer Error Detect CSR */
586 rio_mport_write_config_32(mport, destid, hopcount,
587 rdev->em_efptr + RIO_EM_LTL_ERR_DETECT, 0);
588 }
589
590 /* Clear Port Errors */
591 rio_mport_write_config_32(mport, destid, hopcount,
592 rdev->phys_efptr + RIO_PORT_N_ERR_STS_CSR(portnum),
593 err_status & RIO_PORT_N_ERR_STS_CLR_MASK);
594
595 if (rdev->rswitch->port_ok & (1 << portnum)) {
596 if (err_status & RIO_PORT_N_ERR_STS_PORT_UNINIT) {
597 rdev->rswitch->port_ok &= ~(1 << portnum);
598 rio_set_port_lockout(rdev, portnum, 1);
599
600 rio_mport_write_config_32(mport, destid, hopcount,
601 rdev->phys_efptr +
602 RIO_PORT_N_ACK_STS_CSR(portnum),
603 RIO_PORT_N_ACK_CLEAR);
604
605 /* Schedule Extraction Service */
606 pr_debug("RIO_PW: Device Extraction on [%s]-P%d\n",
607 rio_name(rdev), portnum);
608 }
609 } else {
610 if (err_status & RIO_PORT_N_ERR_STS_PORT_OK) {
611 rdev->rswitch->port_ok |= (1 << portnum);
612 rio_set_port_lockout(rdev, portnum, 0);
613
614 /* Schedule Insertion Service */
615 pr_debug("RIO_PW: Device Insertion on [%s]-P%d\n",
616 rio_name(rdev), portnum);
617 }
618 }
619
620 /* Clear Port-Write Pending bit */
621 rio_mport_write_config_32(mport, destid, hopcount,
622 rdev->phys_efptr + RIO_PORT_N_ERR_STS_CSR(portnum),
623 RIO_PORT_N_ERR_STS_PW_PEND);
624
625 return 0;
626}
627EXPORT_SYMBOL_GPL(rio_inb_pwrite_handler);
628
629/**
630 * rio_mport_get_efb - get pointer to next extended features block
631 * @port: Master port to issue transaction
632 * @local: Indicate a local master port or remote device access
633 * @destid: Destination ID of the device
634 * @hopcount: Number of switch hops to the device
635 * @from: Offset of current Extended Feature block header (if 0 starts
636 * from ExtFeaturePtr)
637 */
638u32
639rio_mport_get_efb(struct rio_mport *port, int local, u16 destid,
640 u8 hopcount, u32 from)
641{
642 u32 reg_val;
643
644 if (from == 0) {
645 if (local)
646 rio_local_read_config_32(port, RIO_ASM_INFO_CAR,
647 &reg_val);
648 else
649 rio_mport_read_config_32(port, destid, hopcount,
650 RIO_ASM_INFO_CAR, &reg_val);
651 return reg_val & RIO_EXT_FTR_PTR_MASK;
652 } else {
653 if (local)
654 rio_local_read_config_32(port, from, &reg_val);
655 else
656 rio_mport_read_config_32(port, destid, hopcount,
657 from, &reg_val);
658 return RIO_GET_BLOCK_ID(reg_val);
659 }
660}
661
662/**
Matt Porter394b7012005-11-07 01:00:15 -0800663 * rio_mport_get_feature - query for devices' extended features
664 * @port: Master port to issue transaction
665 * @local: Indicate a local master port or remote device access
666 * @destid: Destination ID of the device
667 * @hopcount: Number of switch hops to the device
668 * @ftr: Extended feature code
669 *
670 * Tell if a device supports a given RapidIO capability.
671 * Returns the offset of the requested extended feature
672 * block within the device's RIO configuration space or
673 * 0 in case the device does not support it. Possible
674 * values for @ftr:
675 *
676 * %RIO_EFB_PAR_EP_ID LP/LVDS EP Devices
677 *
678 * %RIO_EFB_PAR_EP_REC_ID LP/LVDS EP Recovery Devices
679 *
680 * %RIO_EFB_PAR_EP_FREE_ID LP/LVDS EP Free Devices
681 *
682 * %RIO_EFB_SER_EP_ID LP/Serial EP Devices
683 *
684 * %RIO_EFB_SER_EP_REC_ID LP/Serial EP Recovery Devices
685 *
686 * %RIO_EFB_SER_EP_FREE_ID LP/Serial EP Free Devices
687 */
688u32
689rio_mport_get_feature(struct rio_mport * port, int local, u16 destid,
690 u8 hopcount, int ftr)
691{
692 u32 asm_info, ext_ftr_ptr, ftr_header;
693
694 if (local)
695 rio_local_read_config_32(port, RIO_ASM_INFO_CAR, &asm_info);
696 else
697 rio_mport_read_config_32(port, destid, hopcount,
698 RIO_ASM_INFO_CAR, &asm_info);
699
700 ext_ftr_ptr = asm_info & RIO_EXT_FTR_PTR_MASK;
701
702 while (ext_ftr_ptr) {
703 if (local)
704 rio_local_read_config_32(port, ext_ftr_ptr,
705 &ftr_header);
706 else
707 rio_mport_read_config_32(port, destid, hopcount,
708 ext_ftr_ptr, &ftr_header);
709 if (RIO_GET_BLOCK_ID(ftr_header) == ftr)
710 return ext_ftr_ptr;
711 if (!(ext_ftr_ptr = RIO_GET_BLOCK_PTR(ftr_header)))
712 break;
713 }
714
715 return 0;
716}
717
718/**
719 * rio_get_asm - Begin or continue searching for a RIO device by vid/did/asm_vid/asm_did
720 * @vid: RIO vid to match or %RIO_ANY_ID to match all vids
721 * @did: RIO did to match or %RIO_ANY_ID to match all dids
722 * @asm_vid: RIO asm_vid to match or %RIO_ANY_ID to match all asm_vids
723 * @asm_did: RIO asm_did to match or %RIO_ANY_ID to match all asm_dids
724 * @from: Previous RIO device found in search, or %NULL for new search
725 *
726 * Iterates through the list of known RIO devices. If a RIO device is
727 * found with a matching @vid, @did, @asm_vid, @asm_did, the reference
728 * count to the device is incrememted and a pointer to its device
729 * structure is returned. Otherwise, %NULL is returned. A new search
730 * is initiated by passing %NULL to the @from argument. Otherwise, if
731 * @from is not %NULL, searches continue from next device on the global
732 * list. The reference count for @from is always decremented if it is
733 * not %NULL.
734 */
735struct rio_dev *rio_get_asm(u16 vid, u16 did,
736 u16 asm_vid, u16 asm_did, struct rio_dev *from)
737{
738 struct list_head *n;
739 struct rio_dev *rdev;
740
741 WARN_ON(in_interrupt());
742 spin_lock(&rio_global_list_lock);
743 n = from ? from->global_list.next : rio_devices.next;
744
745 while (n && (n != &rio_devices)) {
746 rdev = rio_dev_g(n);
747 if ((vid == RIO_ANY_ID || rdev->vid == vid) &&
748 (did == RIO_ANY_ID || rdev->did == did) &&
749 (asm_vid == RIO_ANY_ID || rdev->asm_vid == asm_vid) &&
750 (asm_did == RIO_ANY_ID || rdev->asm_did == asm_did))
751 goto exit;
752 n = n->next;
753 }
754 rdev = NULL;
755 exit:
756 rio_dev_put(from);
757 rdev = rio_dev_get(rdev);
758 spin_unlock(&rio_global_list_lock);
759 return rdev;
760}
761
762/**
763 * rio_get_device - Begin or continue searching for a RIO device by vid/did
764 * @vid: RIO vid to match or %RIO_ANY_ID to match all vids
765 * @did: RIO did to match or %RIO_ANY_ID to match all dids
766 * @from: Previous RIO device found in search, or %NULL for new search
767 *
768 * Iterates through the list of known RIO devices. If a RIO device is
769 * found with a matching @vid and @did, the reference count to the
770 * device is incrememted and a pointer to its device structure is returned.
771 * Otherwise, %NULL is returned. A new search is initiated by passing %NULL
772 * to the @from argument. Otherwise, if @from is not %NULL, searches
773 * continue from next device on the global list. The reference count for
774 * @from is always decremented if it is not %NULL.
775 */
776struct rio_dev *rio_get_device(u16 vid, u16 did, struct rio_dev *from)
777{
778 return rio_get_asm(vid, did, RIO_ANY_ID, RIO_ANY_ID, from);
779}
780
Alexandre Bounine07590ff2010-05-26 14:43:57 -0700781/**
782 * rio_std_route_add_entry - Add switch route table entry using standard
783 * registers defined in RIO specification rev.1.3
784 * @mport: Master port to issue transaction
785 * @destid: Destination ID of the device
786 * @hopcount: Number of switch hops to the device
787 * @table: routing table ID (global or port-specific)
788 * @route_destid: destID entry in the RT
789 * @route_port: destination port for specified destID
790 */
791int rio_std_route_add_entry(struct rio_mport *mport, u16 destid, u8 hopcount,
792 u16 table, u16 route_destid, u8 route_port)
793{
794 if (table == RIO_GLOBAL_TABLE) {
795 rio_mport_write_config_32(mport, destid, hopcount,
796 RIO_STD_RTE_CONF_DESTID_SEL_CSR,
797 (u32)route_destid);
798 rio_mport_write_config_32(mport, destid, hopcount,
799 RIO_STD_RTE_CONF_PORT_SEL_CSR,
800 (u32)route_port);
801 }
Alexandre Bouninee5cabeb2010-05-26 14:43:59 -0700802
Alexandre Bounine07590ff2010-05-26 14:43:57 -0700803 udelay(10);
804 return 0;
805}
806
807/**
808 * rio_std_route_get_entry - Read switch route table entry (port number)
809 * assosiated with specified destID using standard registers defined in RIO
810 * specification rev.1.3
811 * @mport: Master port to issue transaction
812 * @destid: Destination ID of the device
813 * @hopcount: Number of switch hops to the device
814 * @table: routing table ID (global or port-specific)
815 * @route_destid: destID entry in the RT
816 * @route_port: returned destination port for specified destID
817 */
818int rio_std_route_get_entry(struct rio_mport *mport, u16 destid, u8 hopcount,
819 u16 table, u16 route_destid, u8 *route_port)
820{
821 u32 result;
822
823 if (table == RIO_GLOBAL_TABLE) {
824 rio_mport_write_config_32(mport, destid, hopcount,
825 RIO_STD_RTE_CONF_DESTID_SEL_CSR, route_destid);
826 rio_mport_read_config_32(mport, destid, hopcount,
827 RIO_STD_RTE_CONF_PORT_SEL_CSR, &result);
828
829 *route_port = (u8)result;
830 }
831
832 return 0;
833}
834
835/**
836 * rio_std_route_clr_table - Clear swotch route table using standard registers
837 * defined in RIO specification rev.1.3.
838 * @mport: Master port to issue transaction
839 * @local: Indicate a local master port or remote device access
840 * @destid: Destination ID of the device
841 * @hopcount: Number of switch hops to the device
842 * @table: routing table ID (global or port-specific)
843 */
844int rio_std_route_clr_table(struct rio_mport *mport, u16 destid, u8 hopcount,
845 u16 table)
846{
847 u32 max_destid = 0xff;
848 u32 i, pef, id_inc = 1, ext_cfg = 0;
849 u32 port_sel = RIO_INVALID_ROUTE;
850
851 if (table == RIO_GLOBAL_TABLE) {
852 rio_mport_read_config_32(mport, destid, hopcount,
853 RIO_PEF_CAR, &pef);
854
855 if (mport->sys_size) {
856 rio_mport_read_config_32(mport, destid, hopcount,
857 RIO_SWITCH_RT_LIMIT,
858 &max_destid);
859 max_destid &= RIO_RT_MAX_DESTID;
860 }
861
862 if (pef & RIO_PEF_EXT_RT) {
863 ext_cfg = 0x80000000;
864 id_inc = 4;
865 port_sel = (RIO_INVALID_ROUTE << 24) |
866 (RIO_INVALID_ROUTE << 16) |
867 (RIO_INVALID_ROUTE << 8) |
868 RIO_INVALID_ROUTE;
869 }
870
871 for (i = 0; i <= max_destid;) {
872 rio_mport_write_config_32(mport, destid, hopcount,
873 RIO_STD_RTE_CONF_DESTID_SEL_CSR,
874 ext_cfg | i);
875 rio_mport_write_config_32(mport, destid, hopcount,
876 RIO_STD_RTE_CONF_PORT_SEL_CSR,
877 port_sel);
878 i += id_inc;
879 }
880 }
881
882 udelay(10);
883 return 0;
884}
885
Matt Porter394b7012005-11-07 01:00:15 -0800886static void rio_fixup_device(struct rio_dev *dev)
887{
888}
889
890static int __devinit rio_init(void)
891{
892 struct rio_dev *dev = NULL;
893
894 while ((dev = rio_get_device(RIO_ANY_ID, RIO_ANY_ID, dev)) != NULL) {
895 rio_fixup_device(dev);
896 }
897 return 0;
898}
899
900device_initcall(rio_init);
901
Al Viro37d33d12008-11-22 17:36:24 +0000902int __devinit rio_init_mports(void)
Matt Porter394b7012005-11-07 01:00:15 -0800903{
904 int rc = 0;
905 struct rio_mport *port;
906
907 list_for_each_entry(port, &rio_mports, node) {
908 if (!request_mem_region(port->iores.start,
909 port->iores.end - port->iores.start,
910 port->name)) {
911 printk(KERN_ERR
Kumar Gala5febf1c2008-01-23 05:53:47 -0600912 "RIO: Error requesting master port region 0x%016llx-0x%016llx\n",
913 (u64)port->iores.start, (u64)port->iores.end - 1);
Matt Porter394b7012005-11-07 01:00:15 -0800914 rc = -ENOMEM;
915 goto out;
916 }
917
918 if (port->host_deviceid >= 0)
919 rio_enum_mport(port);
920 else
921 rio_disc_mport(port);
922 }
923
924 out:
925 return rc;
926}
927
928void rio_register_mport(struct rio_mport *port)
929{
930 list_add_tail(&port->node, &rio_mports);
931}
932
933EXPORT_SYMBOL_GPL(rio_local_get_device_id);
934EXPORT_SYMBOL_GPL(rio_get_device);
935EXPORT_SYMBOL_GPL(rio_get_asm);
936EXPORT_SYMBOL_GPL(rio_request_inb_dbell);
937EXPORT_SYMBOL_GPL(rio_release_inb_dbell);
938EXPORT_SYMBOL_GPL(rio_request_outb_dbell);
939EXPORT_SYMBOL_GPL(rio_release_outb_dbell);
940EXPORT_SYMBOL_GPL(rio_request_inb_mbox);
941EXPORT_SYMBOL_GPL(rio_release_inb_mbox);
942EXPORT_SYMBOL_GPL(rio_request_outb_mbox);
943EXPORT_SYMBOL_GPL(rio_release_outb_mbox);