1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21#include <linux/types.h>
22#include <linux/kernel.h>
23
24#include <linux/delay.h>
25#include <linux/dma-mapping.h>
26#include <linux/init.h>
27#include <linux/rio.h>
28#include <linux/rio_drv.h>
29#include <linux/rio_ids.h>
30#include <linux/rio_regs.h>
31#include <linux/module.h>
32#include <linux/spinlock.h>
33#include <linux/timer.h>
34#include <linux/jiffies.h>
35#include <linux/slab.h>
36
37#include "rio.h"
38
39LIST_HEAD(rio_devices);
40static LIST_HEAD(rio_switches);
41
42static void rio_enum_timeout(unsigned long);
43
44static void rio_init_em(struct rio_dev *rdev);
45
46DEFINE_SPINLOCK(rio_global_list_lock);
47
48static int next_destid = 0;
49static int next_switchid = 0;
50static int next_net = 0;
51static int next_comptag;
52
53static struct timer_list rio_enum_timer =
54TIMER_INITIALIZER(rio_enum_timeout, 0, 0);
55
56static int rio_mport_phys_table[] = {
57 RIO_EFB_PAR_EP_ID,
58 RIO_EFB_PAR_EP_REC_ID,
59 RIO_EFB_SER_EP_ID,
60 RIO_EFB_SER_EP_REC_ID,
61 -1,
62};
63
64
65
66
67
68
69
70
71
72
73static u16 rio_get_device_id(struct rio_mport *port, u16 destid, u8 hopcount)
74{
75 u32 result;
76
77 rio_mport_read_config_32(port, destid, hopcount, RIO_DID_CSR, &result);
78
79 return RIO_GET_DID(port->sys_size, result);
80}
81
82
83
84
85
86
87
88
89
90
91static void rio_set_device_id(struct rio_mport *port, u16 destid, u8 hopcount, u16 did)
92{
93 rio_mport_write_config_32(port, destid, hopcount, RIO_DID_CSR,
94 RIO_SET_DID(port->sys_size, did));
95}
96
97
98
99
100
101
102
103
104static void rio_local_set_device_id(struct rio_mport *port, u16 did)
105{
106 rio_local_write_config_32(port, RIO_DID_CSR, RIO_SET_DID(port->sys_size,
107 did));
108}
109
110
111
112
113
114
115
116
117
118static int rio_clear_locks(struct rio_mport *port)
119{
120 struct rio_dev *rdev;
121 u32 result;
122 int ret = 0;
123
124
125 next_comptag = 1;
126 rio_local_write_config_32(port, RIO_COMPONENT_TAG_CSR, next_comptag++);
127
128 list_for_each_entry(rdev, &rio_devices, global_list) {
129
130 rio_read_config_32(rdev,
131 rdev->phys_efptr + RIO_PORT_GEN_CTL_CSR,
132 &result);
133 rio_write_config_32(rdev,
134 rdev->phys_efptr + RIO_PORT_GEN_CTL_CSR,
135 result | RIO_PORT_GEN_DISCOVERED);
136
137 rio_write_config_32(rdev, RIO_COMPONENT_TAG_CSR, next_comptag);
138 rdev->comp_tag = next_comptag++;
139 if (next_comptag >= 0x10000) {
140 pr_err("RIO: Component Tag Counter Overflow\n");
141 break;
142 }
143 }
144
145
146 rio_local_write_config_32(port, RIO_HOST_DID_LOCK_CSR,
147 port->host_deviceid);
148 rio_local_read_config_32(port, RIO_HOST_DID_LOCK_CSR, &result);
149 if ((result & 0xffff) != 0xffff) {
150 printk(KERN_INFO
151 "RIO: badness when releasing host lock on master port, result %8.8x\n",
152 result);
153 ret = -EINVAL;
154 }
155 list_for_each_entry(rdev, &rio_devices, global_list) {
156 rio_write_config_32(rdev, RIO_HOST_DID_LOCK_CSR,
157 port->host_deviceid);
158 rio_read_config_32(rdev, RIO_HOST_DID_LOCK_CSR, &result);
159 if ((result & 0xffff) != 0xffff) {
160 printk(KERN_INFO
161 "RIO: badness when releasing host lock on vid %4.4x did %4.4x\n",
162 rdev->vid, rdev->did);
163 ret = -EINVAL;
164 }
165 }
166
167 return ret;
168}
169
170
171
172
173
174
175
176
177
178static int rio_enum_host(struct rio_mport *port)
179{
180 u32 result;
181
182
183 rio_local_write_config_32(port, RIO_HOST_DID_LOCK_CSR,
184 port->host_deviceid);
185
186 rio_local_read_config_32(port, RIO_HOST_DID_LOCK_CSR, &result);
187 if ((result & 0xffff) != port->host_deviceid)
188 return -1;
189
190
191 rio_local_set_device_id(port, port->host_deviceid);
192
193 if (next_destid == port->host_deviceid)
194 next_destid++;
195
196 return 0;
197}
198
199
200
201
202
203
204
205
206
207
208
209static int rio_device_has_destid(struct rio_mport *port, int src_ops,
210 int dst_ops)
211{
212 u32 mask = RIO_OPS_READ | RIO_OPS_WRITE | RIO_OPS_ATOMIC_TST_SWP | RIO_OPS_ATOMIC_INC | RIO_OPS_ATOMIC_DEC | RIO_OPS_ATOMIC_SET | RIO_OPS_ATOMIC_CLR;
213
214 return !!((src_ops | dst_ops) & mask);
215}
216
217
218
219
220
221
222
223
224static void rio_release_dev(struct device *dev)
225{
226 struct rio_dev *rdev;
227
228 rdev = to_rio_dev(dev);
229 kfree(rdev);
230}
231
232
233
234
235
236
237
238
239
240
241static int rio_is_switch(struct rio_dev *rdev)
242{
243 if (rdev->pef & RIO_PEF_SWITCH)
244 return 1;
245 return 0;
246}
247
248
249
250
251
252
253
254
255
256
257static void rio_switch_init(struct rio_dev *rdev, int do_enum)
258{
259 struct rio_switch_ops *cur = __start_rio_switch_ops;
260 struct rio_switch_ops *end = __end_rio_switch_ops;
261
262 while (cur < end) {
263 if ((cur->vid == rdev->vid) && (cur->did == rdev->did)) {
264 pr_debug("RIO: calling init routine for %s\n",
265 rio_name(rdev));
266 cur->init_hook(rdev, do_enum);
267 break;
268 }
269 cur++;
270 }
271
272 if ((cur >= end) && (rdev->pef & RIO_PEF_STD_RT)) {
273 pr_debug("RIO: adding STD routing ops for %s\n",
274 rio_name(rdev));
275 rdev->rswitch->add_entry = rio_std_route_add_entry;
276 rdev->rswitch->get_entry = rio_std_route_get_entry;
277 rdev->rswitch->clr_table = rio_std_route_clr_table;
278 }
279
280 if (!rdev->rswitch->add_entry || !rdev->rswitch->get_entry)
281 printk(KERN_ERR "RIO: missing routing ops for %s\n",
282 rio_name(rdev));
283}
284
285
286
287
288
289
290
291
292
293static int __devinit rio_add_device(struct rio_dev *rdev)
294{
295 int err;
296
297 err = device_add(&rdev->dev);
298 if (err)
299 return err;
300
301 spin_lock(&rio_global_list_lock);
302 list_add_tail(&rdev->global_list, &rio_devices);
303 spin_unlock(&rio_global_list_lock);
304
305 rio_create_sysfs_dev_files(rdev);
306
307 return 0;
308}
309
310
311
312
313
314
315
316
317
318
319
320
321
322inline int rio_enable_rx_tx_port(struct rio_mport *port,
323 int local, u16 destid,
324 u8 hopcount, u8 port_num) {
325#ifdef CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS
326 u32 regval;
327 u32 ext_ftr_ptr;
328
329
330
331
332 pr_debug("rio_enable_rx_tx_port(local = %d, destid = %d, hopcount = "
333 "%d, port_num = %d)\n", local, destid, hopcount, port_num);
334
335 ext_ftr_ptr = rio_mport_get_physefb(port, local, destid, hopcount);
336
337 if (local) {
338 rio_local_read_config_32(port, ext_ftr_ptr +
339 RIO_PORT_N_CTL_CSR(0),
340 ®val);
341 } else {
342 if (rio_mport_read_config_32(port, destid, hopcount,
343 ext_ftr_ptr + RIO_PORT_N_CTL_CSR(port_num), ®val) < 0)
344 return -EIO;
345 }
346
347 if (regval & RIO_PORT_N_CTL_P_TYP_SER) {
348
349 regval = regval | RIO_PORT_N_CTL_EN_RX_SER
350 | RIO_PORT_N_CTL_EN_TX_SER;
351 } else {
352
353 regval = regval | RIO_PORT_N_CTL_EN_RX_PAR
354 | RIO_PORT_N_CTL_EN_TX_PAR;
355 }
356
357 if (local) {
358 rio_local_write_config_32(port, ext_ftr_ptr +
359 RIO_PORT_N_CTL_CSR(0), regval);
360 } else {
361 if (rio_mport_write_config_32(port, destid, hopcount,
362 ext_ftr_ptr + RIO_PORT_N_CTL_CSR(port_num), regval) < 0)
363 return -EIO;
364 }
365#endif
366 return 0;
367}
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385static struct rio_dev __devinit *rio_setup_device(struct rio_net *net,
386 struct rio_mport *port, u16 destid,
387 u8 hopcount, int do_enum)
388{
389 int ret = 0;
390 struct rio_dev *rdev;
391 struct rio_switch *rswitch = NULL;
392 int result, rdid;
393
394 rdev = kzalloc(sizeof(struct rio_dev), GFP_KERNEL);
395 if (!rdev)
396 return NULL;
397
398 rdev->net = net;
399 rio_mport_read_config_32(port, destid, hopcount, RIO_DEV_ID_CAR,
400 &result);
401 rdev->did = result >> 16;
402 rdev->vid = result & 0xffff;
403 rio_mport_read_config_32(port, destid, hopcount, RIO_DEV_INFO_CAR,
404 &rdev->device_rev);
405 rio_mport_read_config_32(port, destid, hopcount, RIO_ASM_ID_CAR,
406 &result);
407 rdev->asm_did = result >> 16;
408 rdev->asm_vid = result & 0xffff;
409 rio_mport_read_config_32(port, destid, hopcount, RIO_ASM_INFO_CAR,
410 &result);
411 rdev->asm_rev = result >> 16;
412 rio_mport_read_config_32(port, destid, hopcount, RIO_PEF_CAR,
413 &rdev->pef);
414 if (rdev->pef & RIO_PEF_EXT_FEATURES) {
415 rdev->efptr = result & 0xffff;
416 rdev->phys_efptr = rio_mport_get_physefb(port, 0, destid,
417 hopcount);
418
419 rdev->em_efptr = rio_mport_get_feature(port, 0, destid,
420 hopcount, RIO_EFB_ERR_MGMNT);
421 }
422
423 rio_mport_read_config_32(port, destid, hopcount, RIO_SRC_OPS_CAR,
424 &rdev->src_ops);
425 rio_mport_read_config_32(port, destid, hopcount, RIO_DST_OPS_CAR,
426 &rdev->dst_ops);
427
428 if (rio_device_has_destid(port, rdev->src_ops, rdev->dst_ops)) {
429 if (do_enum) {
430 rio_set_device_id(port, destid, hopcount, next_destid);
431 rdev->destid = next_destid++;
432 if (next_destid == port->host_deviceid)
433 next_destid++;
434 } else
435 rdev->destid = rio_get_device_id(port, destid, hopcount);
436 } else
437
438 rdev->destid = RIO_INVALID_DESTID;
439
440
441 if (rio_is_switch(rdev)) {
442 rio_mport_read_config_32(port, destid, hopcount,
443 RIO_SWP_INFO_CAR, &rdev->swpinfo);
444 rswitch = kzalloc(sizeof(struct rio_switch), GFP_KERNEL);
445 if (!rswitch)
446 goto cleanup;
447 rswitch->switchid = next_switchid;
448 rswitch->hopcount = hopcount;
449 rswitch->destid = destid;
450 rswitch->port_ok = 0;
451 rswitch->route_table = kzalloc(sizeof(u8)*
452 RIO_MAX_ROUTE_ENTRIES(port->sys_size),
453 GFP_KERNEL);
454 if (!rswitch->route_table)
455 goto cleanup;
456
457 for (rdid = 0; rdid < RIO_MAX_ROUTE_ENTRIES(port->sys_size);
458 rdid++)
459 rswitch->route_table[rdid] = RIO_INVALID_ROUTE;
460 rdev->rswitch = rswitch;
461 dev_set_name(&rdev->dev, "%02x:s:%04x", rdev->net->id,
462 rdev->rswitch->switchid);
463 rio_switch_init(rdev, do_enum);
464
465 if (do_enum && rdev->rswitch->clr_table)
466 rdev->rswitch->clr_table(port, destid, hopcount,
467 RIO_GLOBAL_TABLE);
468
469 list_add_tail(&rswitch->node, &rio_switches);
470
471 } else {
472 if (do_enum)
473
474 rio_enable_rx_tx_port(port, 0, destid, hopcount, 0);
475
476 dev_set_name(&rdev->dev, "%02x:e:%04x", rdev->net->id,
477 rdev->destid);
478 }
479
480 rdev->dev.bus = &rio_bus_type;
481
482 device_initialize(&rdev->dev);
483 rdev->dev.release = rio_release_dev;
484 rio_dev_get(rdev);
485
486 rdev->dma_mask = DMA_BIT_MASK(32);
487 rdev->dev.dma_mask = &rdev->dma_mask;
488 rdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
489
490 if ((rdev->pef & RIO_PEF_INB_DOORBELL) &&
491 (rdev->dst_ops & RIO_DST_OPS_DOORBELL))
492 rio_init_dbell_res(&rdev->riores[RIO_DOORBELL_RESOURCE],
493 0, 0xffff);
494
495 ret = rio_add_device(rdev);
496 if (ret)
497 goto cleanup;
498
499 return rdev;
500
501cleanup:
502 if (rswitch) {
503 kfree(rswitch->route_table);
504 kfree(rswitch);
505 }
506 kfree(rdev);
507 return NULL;
508}
509
510
511
512
513
514
515
516
517
518
519
520
521
522static int
523rio_sport_is_active(struct rio_mport *port, u16 destid, u8 hopcount, int sport)
524{
525 u32 result = 0;
526 u32 ext_ftr_ptr;
527
528 ext_ftr_ptr = rio_mport_get_efb(port, 0, destid, hopcount, 0);
529
530 while (ext_ftr_ptr) {
531 rio_mport_read_config_32(port, destid, hopcount,
532 ext_ftr_ptr, &result);
533 result = RIO_GET_BLOCK_ID(result);
534 if ((result == RIO_EFB_SER_EP_FREE_ID) ||
535 (result == RIO_EFB_SER_EP_FREE_ID_V13P) ||
536 (result == RIO_EFB_SER_EP_FREC_ID))
537 break;
538
539 ext_ftr_ptr = rio_mport_get_efb(port, 0, destid, hopcount,
540 ext_ftr_ptr);
541 }
542
543 if (ext_ftr_ptr)
544 rio_mport_read_config_32(port, destid, hopcount,
545 ext_ftr_ptr +
546 RIO_PORT_N_ERR_STS_CSR(sport),
547 &result);
548
549 return result & RIO_PORT_N_ERR_STS_PORT_OK;
550}
551
552
553
554
555
556
557
558
559
560
561
562static int
563rio_lock_device(struct rio_mport *port, u16 destid, u8 hopcount, int wait_ms)
564{
565 u32 result;
566 int tcnt = 0;
567
568
569 rio_mport_write_config_32(port, destid, hopcount,
570 RIO_HOST_DID_LOCK_CSR, port->host_deviceid);
571 rio_mport_read_config_32(port, destid, hopcount,
572 RIO_HOST_DID_LOCK_CSR, &result);
573
574 while (result != port->host_deviceid) {
575 if (wait_ms != 0 && tcnt == wait_ms) {
576 pr_debug("RIO: timeout when locking device %x:%x\n",
577 destid, hopcount);
578 return -EINVAL;
579 }
580
581
582 mdelay(1);
583 tcnt++;
584
585 rio_mport_write_config_32(port, destid,
586 hopcount,
587 RIO_HOST_DID_LOCK_CSR,
588 port->host_deviceid);
589 rio_mport_read_config_32(port, destid,
590 hopcount,
591 RIO_HOST_DID_LOCK_CSR, &result);
592 }
593
594 return 0;
595}
596
597
598
599
600
601
602
603
604
605static int
606rio_unlock_device(struct rio_mport *port, u16 destid, u8 hopcount)
607{
608 u32 result;
609
610
611 rio_mport_write_config_32(port, destid,
612 hopcount,
613 RIO_HOST_DID_LOCK_CSR,
614 port->host_deviceid);
615 rio_mport_read_config_32(port, destid, hopcount,
616 RIO_HOST_DID_LOCK_CSR, &result);
617 if ((result & 0xffff) != 0xffff) {
618 pr_debug("RIO: badness when releasing device lock %x:%x\n",
619 destid, hopcount);
620 return -EINVAL;
621 }
622
623 return 0;
624}
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642static int
643rio_route_add_entry(struct rio_mport *mport, struct rio_switch *rswitch,
644 u16 table, u16 route_destid, u8 route_port, int lock)
645{
646 int rc;
647
648 if (lock) {
649 rc = rio_lock_device(mport, rswitch->destid,
650 rswitch->hopcount, 1000);
651 if (rc)
652 return rc;
653 }
654
655 rc = rswitch->add_entry(mport, rswitch->destid,
656 rswitch->hopcount, table,
657 route_destid, route_port);
658 if (lock)
659 rio_unlock_device(mport, rswitch->destid, rswitch->hopcount);
660
661 return rc;
662}
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680static int
681rio_route_get_entry(struct rio_mport *mport, struct rio_switch *rswitch, u16 table,
682 u16 route_destid, u8 *route_port, int lock)
683{
684 int rc;
685
686 if (lock) {
687 rc = rio_lock_device(mport, rswitch->destid,
688 rswitch->hopcount, 1000);
689 if (rc)
690 return rc;
691 }
692
693 rc = rswitch->get_entry(mport, rswitch->destid,
694 rswitch->hopcount, table,
695 route_destid, route_port);
696 if (lock)
697 rio_unlock_device(mport, rswitch->destid, rswitch->hopcount);
698
699 return rc;
700}
701
702
703
704
705
706
707
708
709
710static u16 rio_get_host_deviceid_lock(struct rio_mport *port, u8 hopcount)
711{
712 u32 result;
713
714 rio_mport_read_config_32(port, RIO_ANY_DESTID(port->sys_size), hopcount,
715 RIO_HOST_DID_LOCK_CSR, &result);
716
717 return (u16) (result & 0xffff);
718}
719
720
721
722
723
724
725
726
727
728static u8
729rio_get_swpinfo_inport(struct rio_mport *mport, u16 destid, u8 hopcount)
730{
731 u32 result;
732
733 rio_mport_read_config_32(mport, destid, hopcount, RIO_SWP_INFO_CAR,
734 &result);
735
736 return (u8) (result & 0xff);
737}
738
739
740
741
742
743
744
745
746
747static u8 rio_get_swpinfo_tports(struct rio_mport *mport, u16 destid,
748 u8 hopcount)
749{
750 u32 result;
751
752 rio_mport_read_config_32(mport, destid, hopcount, RIO_SWP_INFO_CAR,
753 &result);
754
755 return RIO_GET_TOTAL_PORTS(result);
756}
757
758
759
760
761
762
763
764
765
766static void rio_net_add_mport(struct rio_net *net, struct rio_mport *port)
767{
768 spin_lock(&rio_global_list_lock);
769 list_add_tail(&port->nnode, &net->mports);
770 spin_unlock(&rio_global_list_lock);
771}
772
773
774
775
776
777
778
779
780
781
782static int __devinit rio_enum_peer(struct rio_net *net, struct rio_mport *port,
783 u8 hopcount)
784{
785 int port_num;
786 int num_ports;
787 int cur_destid;
788 int sw_destid;
789 int sw_inport;
790 struct rio_dev *rdev;
791 u16 destid;
792 int tmp;
793
794 if (rio_get_host_deviceid_lock(port, hopcount) == port->host_deviceid) {
795 pr_debug("RIO: PE already discovered by this host\n");
796
797
798
799
800 rio_net_add_mport(net, port);
801 return 0;
802 }
803
804
805 rio_mport_write_config_32(port, RIO_ANY_DESTID(port->sys_size),
806 hopcount,
807 RIO_HOST_DID_LOCK_CSR, port->host_deviceid);
808 while ((tmp = rio_get_host_deviceid_lock(port, hopcount))
809 < port->host_deviceid) {
810
811 mdelay(1);
812
813 rio_mport_write_config_32(port, RIO_ANY_DESTID(port->sys_size),
814 hopcount,
815 RIO_HOST_DID_LOCK_CSR,
816 port->host_deviceid);
817 }
818
819 if (rio_get_host_deviceid_lock(port, hopcount) > port->host_deviceid) {
820 pr_debug(
821 "RIO: PE locked by a higher priority host...retreating\n");
822 return -1;
823 }
824
825
826 rdev = rio_setup_device(net, port, RIO_ANY_DESTID(port->sys_size),
827 hopcount, 1);
828 if (rdev) {
829
830 list_add_tail(&rdev->net_list, &net->devices);
831 } else
832 return -1;
833
834 if (rio_is_switch(rdev)) {
835 next_switchid++;
836 sw_inport = rio_get_swpinfo_inport(port,
837 RIO_ANY_DESTID(port->sys_size), hopcount);
838 rio_route_add_entry(port, rdev->rswitch, RIO_GLOBAL_TABLE,
839 port->host_deviceid, sw_inport, 0);
840 rdev->rswitch->route_table[port->host_deviceid] = sw_inport;
841
842 for (destid = 0; destid < next_destid; destid++) {
843 if (destid == port->host_deviceid)
844 continue;
845 rio_route_add_entry(port, rdev->rswitch, RIO_GLOBAL_TABLE,
846 destid, sw_inport, 0);
847 rdev->rswitch->route_table[destid] = sw_inport;
848 }
849
850 num_ports =
851 rio_get_swpinfo_tports(port, RIO_ANY_DESTID(port->sys_size),
852 hopcount);
853 pr_debug(
854 "RIO: found %s (vid %4.4x did %4.4x) with %d ports\n",
855 rio_name(rdev), rdev->vid, rdev->did, num_ports);
856 sw_destid = next_destid;
857 for (port_num = 0; port_num < num_ports; port_num++) {
858
859 rio_enable_rx_tx_port(port, 0,
860 RIO_ANY_DESTID(port->sys_size),
861 hopcount, port_num);
862
863 if (sw_inport == port_num) {
864 rdev->rswitch->port_ok |= (1 << port_num);
865 continue;
866 }
867
868 cur_destid = next_destid;
869
870 if (rio_sport_is_active
871 (port, RIO_ANY_DESTID(port->sys_size), hopcount,
872 port_num)) {
873 pr_debug(
874 "RIO: scanning device on port %d\n",
875 port_num);
876 rdev->rswitch->port_ok |= (1 << port_num);
877 rio_route_add_entry(port, rdev->rswitch,
878 RIO_GLOBAL_TABLE,
879 RIO_ANY_DESTID(port->sys_size),
880 port_num, 0);
881
882 if (rio_enum_peer(net, port, hopcount + 1) < 0)
883 return -1;
884
885
886 if (next_destid > cur_destid) {
887 for (destid = cur_destid;
888 destid < next_destid; destid++) {
889 if (destid == port->host_deviceid)
890 continue;
891 rio_route_add_entry(port, rdev->rswitch,
892 RIO_GLOBAL_TABLE,
893 destid,
894 port_num,
895 0);
896 rdev->rswitch->
897 route_table[destid] =
898 port_num;
899 }
900 }
901 } else {
902
903
904
905 if (rdev->em_efptr)
906 rio_set_port_lockout(rdev, port_num, 1);
907
908 rdev->rswitch->port_ok &= ~(1 << port_num);
909 }
910 }
911
912
913 if ((rdev->src_ops & RIO_SRC_OPS_PORT_WRITE) &&
914 (rdev->em_efptr)) {
915 rio_write_config_32(rdev,
916 rdev->em_efptr + RIO_EM_PW_TGT_DEVID,
917 (port->host_deviceid << 16) |
918 (port->sys_size << 15));
919 }
920
921 rio_init_em(rdev);
922
923
924 if (next_destid == sw_destid) {
925 next_destid++;
926 if (next_destid == port->host_deviceid)
927 next_destid++;
928 }
929
930 rdev->rswitch->destid = sw_destid;
931 } else
932 pr_debug("RIO: found %s (vid %4.4x did %4.4x)\n",
933 rio_name(rdev), rdev->vid, rdev->did);
934
935 return 0;
936}
937
938
939
940
941
942
943
944
945
946static int rio_enum_complete(struct rio_mport *port)
947{
948 u32 tag_csr;
949
950 rio_local_read_config_32(port, RIO_COMPONENT_TAG_CSR, &tag_csr);
951 return (tag_csr & 0xffff) ? 1 : 0;
952}
953
954
955
956
957
958
959
960
961
962
963
964static int __devinit
965rio_disc_peer(struct rio_net *net, struct rio_mport *port, u16 destid,
966 u8 hopcount)
967{
968 u8 port_num, route_port;
969 int num_ports;
970 struct rio_dev *rdev;
971 u16 ndestid;
972
973
974 if ((rdev = rio_setup_device(net, port, destid, hopcount, 0))) {
975
976 list_add_tail(&rdev->net_list, &net->devices);
977 } else
978 return -1;
979
980 if (rio_is_switch(rdev)) {
981 next_switchid++;
982
983
984 rdev->rswitch->destid = destid;
985
986 num_ports = rio_get_swpinfo_tports(port, destid, hopcount);
987 pr_debug(
988 "RIO: found %s (vid %4.4x did %4.4x) with %d ports\n",
989 rio_name(rdev), rdev->vid, rdev->did, num_ports);
990 for (port_num = 0; port_num < num_ports; port_num++) {
991 if (rio_get_swpinfo_inport(port, destid, hopcount) ==
992 port_num)
993 continue;
994
995 if (rio_sport_is_active
996 (port, destid, hopcount, port_num)) {
997 pr_debug(
998 "RIO: scanning device on port %d\n",
999 port_num);
1000
1001 rio_lock_device(port, destid, hopcount, 1000);
1002
1003 for (ndestid = 0;
1004 ndestid < RIO_ANY_DESTID(port->sys_size);
1005 ndestid++) {
1006 rio_route_get_entry(port, rdev->rswitch,
1007 RIO_GLOBAL_TABLE,
1008 ndestid,
1009 &route_port, 0);
1010 if (route_port == port_num)
1011 break;
1012 }
1013
1014 rio_unlock_device(port, destid, hopcount);
1015 if (rio_disc_peer
1016 (net, port, ndestid, hopcount + 1) < 0)
1017 return -1;
1018 }
1019 }
1020 } else
1021 pr_debug("RIO: found %s (vid %4.4x did %4.4x)\n",
1022 rio_name(rdev), rdev->vid, rdev->did);
1023
1024 return 0;
1025}
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036static int rio_mport_is_active(struct rio_mport *port)
1037{
1038 u32 result = 0;
1039 u32 ext_ftr_ptr;
1040 int *entry = rio_mport_phys_table;
1041
1042 do {
1043 if ((ext_ftr_ptr =
1044 rio_mport_get_feature(port, 1, 0, 0, *entry)))
1045 break;
1046 } while (*++entry >= 0);
1047
1048 if (ext_ftr_ptr)
1049 rio_local_read_config_32(port,
1050 ext_ftr_ptr +
1051 RIO_PORT_N_ERR_STS_CSR(port->index),
1052 &result);
1053
1054 return result & RIO_PORT_N_ERR_STS_PORT_OK;
1055}
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066static struct rio_net __devinit *rio_alloc_net(struct rio_mport *port)
1067{
1068 struct rio_net *net;
1069
1070 net = kzalloc(sizeof(struct rio_net), GFP_KERNEL);
1071 if (net) {
1072 INIT_LIST_HEAD(&net->node);
1073 INIT_LIST_HEAD(&net->devices);
1074 INIT_LIST_HEAD(&net->mports);
1075 list_add_tail(&port->nnode, &net->mports);
1076 net->hport = port;
1077 net->id = next_net++;
1078 }
1079 return net;
1080}
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090static void rio_update_route_tables(struct rio_mport *port)
1091{
1092 struct rio_dev *rdev;
1093 struct rio_switch *rswitch;
1094 u8 sport;
1095 u16 destid;
1096
1097 list_for_each_entry(rdev, &rio_devices, global_list) {
1098
1099 destid = (rio_is_switch(rdev))?rdev->rswitch->destid:rdev->destid;
1100
1101 list_for_each_entry(rswitch, &rio_switches, node) {
1102
1103 if (rio_is_switch(rdev) && (rdev->rswitch == rswitch))
1104 continue;
1105
1106 if (RIO_INVALID_ROUTE == rswitch->route_table[destid]) {
1107
1108 if (rswitch->destid == destid)
1109 continue;
1110
1111 sport = rio_get_swpinfo_inport(port,
1112 rswitch->destid, rswitch->hopcount);
1113
1114 if (rswitch->add_entry) {
1115 rio_route_add_entry(port, rswitch,
1116 RIO_GLOBAL_TABLE, destid,
1117 sport, 0);
1118 rswitch->route_table[destid] = sport;
1119 }
1120 }
1121 }
1122 }
1123}
1124
1125
1126
1127
1128
1129
1130
1131
1132static void rio_init_em(struct rio_dev *rdev)
1133{
1134 if (rio_is_switch(rdev) && (rdev->em_efptr) &&
1135 (rdev->rswitch->em_init)) {
1136 rdev->rswitch->em_init(rdev);
1137 }
1138}
1139
1140
1141
1142
1143
1144
1145static void rio_pw_enable(struct rio_mport *port, int enable)
1146{
1147 if (port->ops->pwenable)
1148 port->ops->pwenable(port, enable);
1149}
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160int __devinit rio_enum_mport(struct rio_mport *mport)
1161{
1162 struct rio_net *net = NULL;
1163 int rc = 0;
1164
1165 printk(KERN_INFO "RIO: enumerate master port %d, %s\n", mport->id,
1166 mport->name);
1167
1168 if (rio_enum_host(mport) < 0) {
1169 printk(KERN_INFO
1170 "RIO: master port %d device has been enumerated by a remote host\n",
1171 mport->id);
1172 rc = -EBUSY;
1173 goto out;
1174 }
1175
1176
1177 if (rio_mport_is_active(mport)) {
1178 if (!(net = rio_alloc_net(mport))) {
1179 printk(KERN_ERR "RIO: failed to allocate new net\n");
1180 rc = -ENOMEM;
1181 goto out;
1182 }
1183
1184
1185 rio_enable_rx_tx_port(mport, 1, 0, 0, 0);
1186
1187 if (rio_enum_peer(net, mport, 0) < 0) {
1188
1189 printk(KERN_INFO
1190 "RIO: master port %d device has lost enumeration to a remote host\n",
1191 mport->id);
1192 rio_clear_locks(mport);
1193 rc = -EBUSY;
1194 goto out;
1195 }
1196 rio_update_route_tables(mport);
1197 rio_clear_locks(mport);
1198 rio_pw_enable(mport, 1);
1199 } else {
1200 printk(KERN_INFO "RIO: master port %d link inactive\n",
1201 mport->id);
1202 rc = -EINVAL;
1203 }
1204
1205 out:
1206 return rc;
1207}
1208
1209
1210
1211
1212
1213
1214
1215static void rio_build_route_tables(void)
1216{
1217 struct rio_dev *rdev;
1218 int i;
1219 u8 sport;
1220
1221 list_for_each_entry(rdev, &rio_devices, global_list)
1222 if (rio_is_switch(rdev)) {
1223 rio_lock_device(rdev->net->hport, rdev->rswitch->destid,
1224 rdev->rswitch->hopcount, 1000);
1225 for (i = 0;
1226 i < RIO_MAX_ROUTE_ENTRIES(rdev->net->hport->sys_size);
1227 i++) {
1228 if (rio_route_get_entry
1229 (rdev->net->hport, rdev->rswitch,
1230 RIO_GLOBAL_TABLE, i, &sport, 0) < 0)
1231 continue;
1232 rdev->rswitch->route_table[i] = sport;
1233 }
1234
1235 rio_unlock_device(rdev->net->hport,
1236 rdev->rswitch->destid,
1237 rdev->rswitch->hopcount);
1238 }
1239}
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249static void rio_enum_timeout(unsigned long data)
1250{
1251
1252 *(int *)data = 1;
1253}
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265int __devinit rio_disc_mport(struct rio_mport *mport)
1266{
1267 struct rio_net *net = NULL;
1268 int enum_timeout_flag = 0;
1269
1270 printk(KERN_INFO "RIO: discover master port %d, %s\n", mport->id,
1271 mport->name);
1272
1273
1274 if (rio_mport_is_active(mport)) {
1275 if (!(net = rio_alloc_net(mport))) {
1276 printk(KERN_ERR "RIO: Failed to allocate new net\n");
1277 goto bail;
1278 }
1279
1280 pr_debug("RIO: wait for enumeration complete...");
1281
1282 rio_enum_timer.expires =
1283 jiffies + CONFIG_RAPIDIO_DISC_TIMEOUT * HZ;
1284 rio_enum_timer.data = (unsigned long)&enum_timeout_flag;
1285 add_timer(&rio_enum_timer);
1286 while (!rio_enum_complete(mport)) {
1287 mdelay(1);
1288 if (enum_timeout_flag) {
1289 del_timer_sync(&rio_enum_timer);
1290 goto timeout;
1291 }
1292 }
1293 del_timer_sync(&rio_enum_timer);
1294
1295 pr_debug("done\n");
1296
1297
1298 rio_local_read_config_32(mport, RIO_DID_CSR,
1299 &mport->host_deviceid);
1300 mport->host_deviceid = RIO_GET_DID(mport->sys_size,
1301 mport->host_deviceid);
1302
1303 if (rio_disc_peer(net, mport, RIO_ANY_DESTID(mport->sys_size),
1304 0) < 0) {
1305 printk(KERN_INFO
1306 "RIO: master port %d device has failed discovery\n",
1307 mport->id);
1308 goto bail;
1309 }
1310
1311 rio_build_route_tables();
1312 }
1313
1314 return 0;
1315
1316 timeout:
1317 pr_debug("timeout\n");
1318 bail:
1319 return -EBUSY;
1320}
1321