2 * RapidIO enumeration and discovery support
4 * Copyright 2005 MontaVista Software, Inc.
5 * Matt Porter <mporter@kernel.crashing.org>
7 * Copyright 2009 Integrated Device Technology, Inc.
8 * Alex Bounine <alexandre.bounine@idt.com>
9 * - Added Port-Write/Error Management initialization and handling
11 * Copyright 2009 Sysgo AG
12 * Thomas Moll <thomas.moll@sysgo.com>
13 * - Added Input- Output- enable functionality, to allow full communication
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License as published by the
17 * Free Software Foundation; either version 2 of the License, or (at your
18 * option) any later version.
21 #include <linux/types.h>
22 #include <linux/kernel.h>
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/sched.h>
35 #include <linux/jiffies.h>
36 #include <linux/slab.h>
40 LIST_HEAD(rio_devices
);
42 static void rio_init_em(struct rio_dev
*rdev
);
44 DEFINE_SPINLOCK(rio_global_list_lock
);
46 static int next_destid
= 0;
47 static int next_comptag
= 1;
49 static int rio_mport_phys_table
[] = {
51 RIO_EFB_PAR_EP_REC_ID
,
53 RIO_EFB_SER_EP_REC_ID
,
59 * rio_destid_alloc - Allocate next available destID for given network
62 * Returns next available device destination ID for the specified RIO network.
63 * Marks allocated ID as one in use.
64 * Returns RIO_INVALID_DESTID if new destID is not available.
66 static u16
rio_destid_alloc(struct rio_net
*net
)
69 struct rio_id_table
*idtab
= &net
->destid_table
;
71 spin_lock(&idtab
->lock
);
72 destid
= find_first_zero_bit(idtab
->table
, idtab
->max
);
74 if (destid
< idtab
->max
) {
75 set_bit(destid
, idtab
->table
);
76 destid
+= idtab
->start
;
78 destid
= RIO_INVALID_DESTID
;
80 spin_unlock(&idtab
->lock
);
85 * rio_destid_reserve - Reserve the specivied destID
87 * @destid: destID to reserve
89 * Tries to reserve the specified destID.
90 * Returns 0 if successfull.
92 static int rio_destid_reserve(struct rio_net
*net
, u16 destid
)
95 struct rio_id_table
*idtab
= &net
->destid_table
;
97 destid
-= idtab
->start
;
98 spin_lock(&idtab
->lock
);
99 oldbit
= test_and_set_bit(destid
, idtab
->table
);
100 spin_unlock(&idtab
->lock
);
105 * rio_destid_free - free a previously allocated destID
107 * @destid: destID to free
109 * Makes the specified destID available for use.
111 static void rio_destid_free(struct rio_net
*net
, u16 destid
)
113 struct rio_id_table
*idtab
= &net
->destid_table
;
115 destid
-= idtab
->start
;
116 spin_lock(&idtab
->lock
);
117 clear_bit(destid
, idtab
->table
);
118 spin_unlock(&idtab
->lock
);
122 * rio_destid_first - return first destID in use
125 static u16
rio_destid_first(struct rio_net
*net
)
128 struct rio_id_table
*idtab
= &net
->destid_table
;
130 spin_lock(&idtab
->lock
);
131 destid
= find_first_bit(idtab
->table
, idtab
->max
);
132 if (destid
>= idtab
->max
)
133 destid
= RIO_INVALID_DESTID
;
135 destid
+= idtab
->start
;
136 spin_unlock(&idtab
->lock
);
141 * rio_destid_next - return next destID in use
143 * @from: destination ID from which search shall continue
145 static u16
rio_destid_next(struct rio_net
*net
, u16 from
)
148 struct rio_id_table
*idtab
= &net
->destid_table
;
150 spin_lock(&idtab
->lock
);
151 destid
= find_next_bit(idtab
->table
, idtab
->max
, from
);
152 if (destid
>= idtab
->max
)
153 destid
= RIO_INVALID_DESTID
;
155 destid
+= idtab
->start
;
156 spin_unlock(&idtab
->lock
);
161 * rio_get_device_id - Get the base/extended device id for a device
162 * @port: RIO master port
163 * @destid: Destination ID of device
164 * @hopcount: Hopcount to device
166 * Reads the base/extended device id from a device. Returns the
167 * 8/16-bit device ID.
169 static u16
rio_get_device_id(struct rio_mport
*port
, u16 destid
, u8 hopcount
)
173 rio_mport_read_config_32(port
, destid
, hopcount
, RIO_DID_CSR
, &result
);
175 return RIO_GET_DID(port
->sys_size
, result
);
179 * rio_set_device_id - Set the base/extended device id for a device
180 * @port: RIO master port
181 * @destid: Destination ID of device
182 * @hopcount: Hopcount to device
183 * @did: Device ID value to be written
185 * Writes the base/extended device id from a device.
187 static void rio_set_device_id(struct rio_mport
*port
, u16 destid
, u8 hopcount
, u16 did
)
189 rio_mport_write_config_32(port
, destid
, hopcount
, RIO_DID_CSR
,
190 RIO_SET_DID(port
->sys_size
, did
));
194 * rio_local_set_device_id - Set the base/extended device id for a port
195 * @port: RIO master port
196 * @did: Device ID value to be written
198 * Writes the base/extended device id from a device.
200 static void rio_local_set_device_id(struct rio_mport
*port
, u16 did
)
202 rio_local_write_config_32(port
, RIO_DID_CSR
, RIO_SET_DID(port
->sys_size
,
207 * rio_clear_locks- Release all host locks and signal enumeration complete
208 * @net: RIO network to run on
210 * Marks the component tag CSR on each device with the enumeration
211 * complete flag. When complete, it then release the host locks on
212 * each device. Returns 0 on success or %-EINVAL on failure.
214 static int rio_clear_locks(struct rio_net
*net
)
216 struct rio_mport
*port
= net
->hport
;
217 struct rio_dev
*rdev
;
221 /* Release host device id locks */
222 rio_local_write_config_32(port
, RIO_HOST_DID_LOCK_CSR
,
223 port
->host_deviceid
);
224 rio_local_read_config_32(port
, RIO_HOST_DID_LOCK_CSR
, &result
);
225 if ((result
& 0xffff) != 0xffff) {
227 "RIO: badness when releasing host lock on master port, result %8.8x\n",
231 list_for_each_entry(rdev
, &net
->devices
, net_list
) {
232 rio_write_config_32(rdev
, RIO_HOST_DID_LOCK_CSR
,
233 port
->host_deviceid
);
234 rio_read_config_32(rdev
, RIO_HOST_DID_LOCK_CSR
, &result
);
235 if ((result
& 0xffff) != 0xffff) {
237 "RIO: badness when releasing host lock on vid %4.4x did %4.4x\n",
238 rdev
->vid
, rdev
->did
);
242 /* Mark device as discovered and enable master */
243 rio_read_config_32(rdev
,
244 rdev
->phys_efptr
+ RIO_PORT_GEN_CTL_CSR
,
246 result
|= RIO_PORT_GEN_DISCOVERED
| RIO_PORT_GEN_MASTER
;
247 rio_write_config_32(rdev
,
248 rdev
->phys_efptr
+ RIO_PORT_GEN_CTL_CSR
,
256 * rio_enum_host- Set host lock and initialize host destination ID
257 * @port: Master port to issue transaction
259 * Sets the local host master port lock and destination ID register
260 * with the host device ID value. The host device ID value is provided
261 * by the platform. Returns %0 on success or %-1 on failure.
263 static int rio_enum_host(struct rio_mport
*port
)
267 /* Set master port host device id lock */
268 rio_local_write_config_32(port
, RIO_HOST_DID_LOCK_CSR
,
269 port
->host_deviceid
);
271 rio_local_read_config_32(port
, RIO_HOST_DID_LOCK_CSR
, &result
);
272 if ((result
& 0xffff) != port
->host_deviceid
)
275 /* Set master port destid and init destid ctr */
276 rio_local_set_device_id(port
, port
->host_deviceid
);
281 * rio_device_has_destid- Test if a device contains a destination ID register
282 * @port: Master port to issue transaction
283 * @src_ops: RIO device source operations
284 * @dst_ops: RIO device destination operations
286 * Checks the provided @src_ops and @dst_ops for the necessary transaction
287 * capabilities that indicate whether or not a device will implement a
288 * destination ID register. Returns 1 if true or 0 if false.
290 static int rio_device_has_destid(struct rio_mport
*port
, int src_ops
,
293 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
;
295 return !!((src_ops
| dst_ops
) & mask
);
299 * rio_release_dev- Frees a RIO device struct
300 * @dev: LDM device associated with a RIO device struct
302 * Gets the RIO device struct associated a RIO device struct.
303 * The RIO device struct is freed.
305 static void rio_release_dev(struct device
*dev
)
307 struct rio_dev
*rdev
;
309 rdev
= to_rio_dev(dev
);
314 * rio_is_switch- Tests if a RIO device has switch capabilities
317 * Gets the RIO device Processing Element Features register
318 * contents and tests for switch capabilities. Returns 1 if
319 * the device is a switch or 0 if it is not a switch.
320 * The RIO device struct is freed.
322 static int rio_is_switch(struct rio_dev
*rdev
)
324 if (rdev
->pef
& RIO_PEF_SWITCH
)
330 * rio_switch_init - Sets switch operations for a particular vendor switch
332 * @do_enum: Enumeration/Discovery mode flag
334 * Searches the RIO switch ops table for known switch types. If the vid
335 * and did match a switch table entry, then call switch initialization
336 * routine to setup switch-specific routines.
338 static void rio_switch_init(struct rio_dev
*rdev
, int do_enum
)
340 struct rio_switch_ops
*cur
= __start_rio_switch_ops
;
341 struct rio_switch_ops
*end
= __end_rio_switch_ops
;
344 if ((cur
->vid
== rdev
->vid
) && (cur
->did
== rdev
->did
)) {
345 pr_debug("RIO: calling init routine for %s\n",
347 cur
->init_hook(rdev
, do_enum
);
353 if ((cur
>= end
) && (rdev
->pef
& RIO_PEF_STD_RT
)) {
354 pr_debug("RIO: adding STD routing ops for %s\n",
356 rdev
->rswitch
->add_entry
= rio_std_route_add_entry
;
357 rdev
->rswitch
->get_entry
= rio_std_route_get_entry
;
358 rdev
->rswitch
->clr_table
= rio_std_route_clr_table
;
361 if (!rdev
->rswitch
->add_entry
|| !rdev
->rswitch
->get_entry
)
362 printk(KERN_ERR
"RIO: missing routing ops for %s\n",
367 * rio_add_device- Adds a RIO device to the device model
370 * Adds the RIO device to the global device list and adds the RIO
371 * device to the RIO device list. Creates the generic sysfs nodes
374 static int rio_add_device(struct rio_dev
*rdev
)
378 err
= device_add(&rdev
->dev
);
382 spin_lock(&rio_global_list_lock
);
383 list_add_tail(&rdev
->global_list
, &rio_devices
);
384 spin_unlock(&rio_global_list_lock
);
386 rio_create_sysfs_dev_files(rdev
);
392 * rio_enable_rx_tx_port - enable input receiver and output transmitter of
394 * @port: Master port associated with the RIO network
395 * @local: local=1 select local port otherwise a far device is reached
396 * @destid: Destination ID of the device to check host bit
397 * @hopcount: Number of hops to reach the target
398 * @port_num: Port (-number on switch) to enable on a far end device
400 * Returns 0 or 1 from on General Control Command and Status Register
403 inline int rio_enable_rx_tx_port(struct rio_mport
*port
,
404 int local
, u16 destid
,
405 u8 hopcount
, u8 port_num
) {
406 #ifdef CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS
411 * enable rx input tx output port
413 pr_debug("rio_enable_rx_tx_port(local = %d, destid = %d, hopcount = "
414 "%d, port_num = %d)\n", local
, destid
, hopcount
, port_num
);
416 ext_ftr_ptr
= rio_mport_get_physefb(port
, local
, destid
, hopcount
);
419 rio_local_read_config_32(port
, ext_ftr_ptr
+
420 RIO_PORT_N_CTL_CSR(0),
423 if (rio_mport_read_config_32(port
, destid
, hopcount
,
424 ext_ftr_ptr
+ RIO_PORT_N_CTL_CSR(port_num
), ®val
) < 0)
428 if (regval
& RIO_PORT_N_CTL_P_TYP_SER
) {
430 regval
= regval
| RIO_PORT_N_CTL_EN_RX_SER
431 | RIO_PORT_N_CTL_EN_TX_SER
;
434 regval
= regval
| RIO_PORT_N_CTL_EN_RX_PAR
435 | RIO_PORT_N_CTL_EN_TX_PAR
;
439 rio_local_write_config_32(port
, ext_ftr_ptr
+
440 RIO_PORT_N_CTL_CSR(0), regval
);
442 if (rio_mport_write_config_32(port
, destid
, hopcount
,
443 ext_ftr_ptr
+ RIO_PORT_N_CTL_CSR(port_num
), regval
) < 0)
451 * rio_setup_device- Allocates and sets up a RIO device
453 * @port: Master port to send transactions
454 * @destid: Current destination ID
455 * @hopcount: Current hopcount
456 * @do_enum: Enumeration/Discovery mode flag
458 * Allocates a RIO device and configures fields based on configuration
459 * space contents. If device has a destination ID register, a destination
460 * ID is either assigned in enumeration mode or read from configuration
461 * space in discovery mode. If the device has switch capabilities, then
462 * a switch is allocated and configured appropriately. Returns a pointer
463 * to a RIO device on success or NULL on failure.
466 static struct rio_dev
*rio_setup_device(struct rio_net
*net
,
467 struct rio_mport
*port
, u16 destid
,
468 u8 hopcount
, int do_enum
)
471 struct rio_dev
*rdev
;
472 struct rio_switch
*rswitch
= NULL
;
477 size
= sizeof(struct rio_dev
);
478 if (rio_mport_read_config_32(port
, destid
, hopcount
,
479 RIO_PEF_CAR
, &result
))
482 if (result
& (RIO_PEF_SWITCH
| RIO_PEF_MULTIPORT
)) {
483 rio_mport_read_config_32(port
, destid
, hopcount
,
484 RIO_SWP_INFO_CAR
, &swpinfo
);
485 if (result
& RIO_PEF_SWITCH
) {
486 size
+= (RIO_GET_TOTAL_PORTS(swpinfo
) *
487 sizeof(rswitch
->nextdev
[0])) + sizeof(*rswitch
);
491 rdev
= kzalloc(size
, GFP_KERNEL
);
497 rdev
->swpinfo
= swpinfo
;
498 rio_mport_read_config_32(port
, destid
, hopcount
, RIO_DEV_ID_CAR
,
500 rdev
->did
= result
>> 16;
501 rdev
->vid
= result
& 0xffff;
502 rio_mport_read_config_32(port
, destid
, hopcount
, RIO_DEV_INFO_CAR
,
504 rio_mport_read_config_32(port
, destid
, hopcount
, RIO_ASM_ID_CAR
,
506 rdev
->asm_did
= result
>> 16;
507 rdev
->asm_vid
= result
& 0xffff;
508 rio_mport_read_config_32(port
, destid
, hopcount
, RIO_ASM_INFO_CAR
,
510 rdev
->asm_rev
= result
>> 16;
511 if (rdev
->pef
& RIO_PEF_EXT_FEATURES
) {
512 rdev
->efptr
= result
& 0xffff;
513 rdev
->phys_efptr
= rio_mport_get_physefb(port
, 0, destid
,
516 rdev
->em_efptr
= rio_mport_get_feature(port
, 0, destid
,
517 hopcount
, RIO_EFB_ERR_MGMNT
);
520 rio_mport_read_config_32(port
, destid
, hopcount
, RIO_SRC_OPS_CAR
,
522 rio_mport_read_config_32(port
, destid
, hopcount
, RIO_DST_OPS_CAR
,
526 /* Assign component tag to device */
527 if (next_comptag
>= 0x10000) {
528 pr_err("RIO: Component Tag Counter Overflow\n");
531 rio_mport_write_config_32(port
, destid
, hopcount
,
532 RIO_COMPONENT_TAG_CSR
, next_comptag
);
533 rdev
->comp_tag
= next_comptag
++;
535 rio_mport_read_config_32(port
, destid
, hopcount
,
536 RIO_COMPONENT_TAG_CSR
,
540 if (rio_device_has_destid(port
, rdev
->src_ops
, rdev
->dst_ops
)) {
542 rio_set_device_id(port
, destid
, hopcount
, next_destid
);
543 rdev
->destid
= next_destid
;
544 next_destid
= rio_destid_alloc(net
);
546 rdev
->destid
= rio_get_device_id(port
, destid
, hopcount
);
548 rdev
->hopcount
= 0xff;
550 /* Switch device has an associated destID which
551 * will be adjusted later
553 rdev
->destid
= destid
;
554 rdev
->hopcount
= hopcount
;
557 /* If a PE has both switch and other functions, show it as a switch */
558 if (rio_is_switch(rdev
)) {
559 rswitch
= rdev
->rswitch
;
560 rswitch
->switchid
= rdev
->comp_tag
& RIO_CTAG_UDEVID
;
561 rswitch
->port_ok
= 0;
562 rswitch
->route_table
= kzalloc(sizeof(u8
)*
563 RIO_MAX_ROUTE_ENTRIES(port
->sys_size
),
565 if (!rswitch
->route_table
)
567 /* Initialize switch route table */
568 for (rdid
= 0; rdid
< RIO_MAX_ROUTE_ENTRIES(port
->sys_size
);
570 rswitch
->route_table
[rdid
] = RIO_INVALID_ROUTE
;
571 dev_set_name(&rdev
->dev
, "%02x:s:%04x", rdev
->net
->id
,
573 rio_switch_init(rdev
, do_enum
);
575 if (do_enum
&& rswitch
->clr_table
)
576 rswitch
->clr_table(port
, destid
, hopcount
,
579 list_add_tail(&rswitch
->node
, &net
->switches
);
583 /*Enable Input Output Port (transmitter reviever)*/
584 rio_enable_rx_tx_port(port
, 0, destid
, hopcount
, 0);
586 dev_set_name(&rdev
->dev
, "%02x:e:%04x", rdev
->net
->id
,
590 rdev
->dev
.bus
= &rio_bus_type
;
591 rdev
->dev
.parent
= &rio_bus
;
593 device_initialize(&rdev
->dev
);
594 rdev
->dev
.release
= rio_release_dev
;
597 rdev
->dma_mask
= DMA_BIT_MASK(32);
598 rdev
->dev
.dma_mask
= &rdev
->dma_mask
;
599 rdev
->dev
.coherent_dma_mask
= DMA_BIT_MASK(32);
601 if (rdev
->dst_ops
& RIO_DST_OPS_DOORBELL
)
602 rio_init_dbell_res(&rdev
->riores
[RIO_DOORBELL_RESOURCE
],
605 ret
= rio_add_device(rdev
);
613 kfree(rswitch
->route_table
);
620 * rio_sport_is_active- Tests if a switch port has an active connection.
621 * @port: Master port to send transaction
622 * @destid: Associated destination ID for switch
623 * @hopcount: Hopcount to reach switch
624 * @sport: Switch port number
626 * Reads the port error status CSR for a particular switch port to
627 * determine if the port has an active link. Returns
628 * %RIO_PORT_N_ERR_STS_PORT_OK if the port is active or %0 if it is
632 rio_sport_is_active(struct rio_mport
*port
, u16 destid
, u8 hopcount
, int sport
)
637 ext_ftr_ptr
= rio_mport_get_efb(port
, 0, destid
, hopcount
, 0);
639 while (ext_ftr_ptr
) {
640 rio_mport_read_config_32(port
, destid
, hopcount
,
641 ext_ftr_ptr
, &result
);
642 result
= RIO_GET_BLOCK_ID(result
);
643 if ((result
== RIO_EFB_SER_EP_FREE_ID
) ||
644 (result
== RIO_EFB_SER_EP_FREE_ID_V13P
) ||
645 (result
== RIO_EFB_SER_EP_FREC_ID
))
648 ext_ftr_ptr
= rio_mport_get_efb(port
, 0, destid
, hopcount
,
653 rio_mport_read_config_32(port
, destid
, hopcount
,
655 RIO_PORT_N_ERR_STS_CSR(sport
),
658 return result
& RIO_PORT_N_ERR_STS_PORT_OK
;
662 * rio_lock_device - Acquires host device lock for specified device
663 * @port: Master port to send transaction
664 * @destid: Destination ID for device/switch
665 * @hopcount: Hopcount to reach switch
666 * @wait_ms: Max wait time in msec (0 = no timeout)
668 * Attepts to acquire host device lock for specified device
669 * Returns 0 if device lock acquired or EINVAL if timeout expires.
672 rio_lock_device(struct rio_mport
*port
, u16 destid
, u8 hopcount
, int wait_ms
)
677 /* Attempt to acquire device lock */
678 rio_mport_write_config_32(port
, destid
, hopcount
,
679 RIO_HOST_DID_LOCK_CSR
, port
->host_deviceid
);
680 rio_mport_read_config_32(port
, destid
, hopcount
,
681 RIO_HOST_DID_LOCK_CSR
, &result
);
683 while (result
!= port
->host_deviceid
) {
684 if (wait_ms
!= 0 && tcnt
== wait_ms
) {
685 pr_debug("RIO: timeout when locking device %x:%x\n",
693 /* Try to acquire device lock again */
694 rio_mport_write_config_32(port
, destid
,
696 RIO_HOST_DID_LOCK_CSR
,
697 port
->host_deviceid
);
698 rio_mport_read_config_32(port
, destid
,
700 RIO_HOST_DID_LOCK_CSR
, &result
);
707 * rio_unlock_device - Releases host device lock for specified device
708 * @port: Master port to send transaction
709 * @destid: Destination ID for device/switch
710 * @hopcount: Hopcount to reach switch
712 * Returns 0 if device lock released or EINVAL if fails.
715 rio_unlock_device(struct rio_mport
*port
, u16 destid
, u8 hopcount
)
719 /* Release device lock */
720 rio_mport_write_config_32(port
, destid
,
722 RIO_HOST_DID_LOCK_CSR
,
723 port
->host_deviceid
);
724 rio_mport_read_config_32(port
, destid
, hopcount
,
725 RIO_HOST_DID_LOCK_CSR
, &result
);
726 if ((result
& 0xffff) != 0xffff) {
727 pr_debug("RIO: badness when releasing device lock %x:%x\n",
736 * rio_route_add_entry- Add a route entry to a switch routing table
738 * @table: Routing table ID
739 * @route_destid: Destination ID to be routed
740 * @route_port: Port number to be routed
741 * @lock: lock switch device flag
743 * Calls the switch specific add_entry() method to add a route entry
744 * on a switch. The route table can be specified using the @table
745 * argument if a switch has per port routing tables or the normal
746 * use is to specific all tables (or the global table) by passing
747 * %RIO_GLOBAL_TABLE in @table. Returns %0 on success or %-EINVAL
751 rio_route_add_entry(struct rio_dev
*rdev
,
752 u16 table
, u16 route_destid
, u8 route_port
, int lock
)
757 rc
= rio_lock_device(rdev
->net
->hport
, rdev
->destid
,
758 rdev
->hopcount
, 1000);
763 rc
= rdev
->rswitch
->add_entry(rdev
->net
->hport
, rdev
->destid
,
764 rdev
->hopcount
, table
,
765 route_destid
, route_port
);
767 rio_unlock_device(rdev
->net
->hport
, rdev
->destid
,
774 * rio_route_get_entry- Read a route entry in a switch routing table
776 * @table: Routing table ID
777 * @route_destid: Destination ID to be routed
778 * @route_port: Pointer to read port number into
779 * @lock: lock switch device flag
781 * Calls the switch specific get_entry() method to read a route entry
782 * in a switch. The route table can be specified using the @table
783 * argument if a switch has per port routing tables or the normal
784 * use is to specific all tables (or the global table) by passing
785 * %RIO_GLOBAL_TABLE in @table. Returns %0 on success or %-EINVAL
789 rio_route_get_entry(struct rio_dev
*rdev
, u16 table
,
790 u16 route_destid
, u8
*route_port
, int lock
)
795 rc
= rio_lock_device(rdev
->net
->hport
, rdev
->destid
,
796 rdev
->hopcount
, 1000);
801 rc
= rdev
->rswitch
->get_entry(rdev
->net
->hport
, rdev
->destid
,
802 rdev
->hopcount
, table
,
803 route_destid
, route_port
);
805 rio_unlock_device(rdev
->net
->hport
, rdev
->destid
,
812 * rio_get_host_deviceid_lock- Reads the Host Device ID Lock CSR on a device
813 * @port: Master port to send transaction
814 * @hopcount: Number of hops to the device
816 * Used during enumeration to read the Host Device ID Lock CSR on a
817 * RIO device. Returns the value of the lock register.
819 static u16
rio_get_host_deviceid_lock(struct rio_mport
*port
, u8 hopcount
)
823 rio_mport_read_config_32(port
, RIO_ANY_DESTID(port
->sys_size
), hopcount
,
824 RIO_HOST_DID_LOCK_CSR
, &result
);
826 return (u16
) (result
& 0xffff);
830 * rio_enum_peer- Recursively enumerate a RIO network through a master port
831 * @net: RIO network being enumerated
832 * @port: Master port to send transactions
833 * @hopcount: Number of hops into the network
834 * @prev: Previous RIO device connected to the enumerated one
835 * @prev_port: Port on previous RIO device
837 * Recursively enumerates a RIO network. Transactions are sent via the
838 * master port passed in @port.
840 static int rio_enum_peer(struct rio_net
*net
, struct rio_mport
*port
,
841 u8 hopcount
, struct rio_dev
*prev
, int prev_port
)
843 struct rio_dev
*rdev
;
847 if (rio_mport_chk_dev_access(port
,
848 RIO_ANY_DESTID(port
->sys_size
), hopcount
)) {
849 pr_debug("RIO: device access check failed\n");
853 if (rio_get_host_deviceid_lock(port
, hopcount
) == port
->host_deviceid
) {
854 pr_debug("RIO: PE already discovered by this host\n");
856 * Already discovered by this host. Add it as another
857 * link to the existing device.
859 rio_mport_read_config_32(port
, RIO_ANY_DESTID(port
->sys_size
),
860 hopcount
, RIO_COMPONENT_TAG_CSR
, ®val
);
863 rdev
= rio_get_comptag((regval
& 0xffff), NULL
);
865 if (rdev
&& prev
&& rio_is_switch(prev
)) {
866 pr_debug("RIO: redundant path to %s\n",
868 prev
->rswitch
->nextdev
[prev_port
] = rdev
;
875 /* Attempt to acquire device lock */
876 rio_mport_write_config_32(port
, RIO_ANY_DESTID(port
->sys_size
),
878 RIO_HOST_DID_LOCK_CSR
, port
->host_deviceid
);
879 while ((tmp
= rio_get_host_deviceid_lock(port
, hopcount
))
880 < port
->host_deviceid
) {
883 /* Attempt to acquire device lock again */
884 rio_mport_write_config_32(port
, RIO_ANY_DESTID(port
->sys_size
),
886 RIO_HOST_DID_LOCK_CSR
,
887 port
->host_deviceid
);
890 if (rio_get_host_deviceid_lock(port
, hopcount
) > port
->host_deviceid
) {
892 "RIO: PE locked by a higher priority host...retreating\n");
896 /* Setup new RIO device */
897 rdev
= rio_setup_device(net
, port
, RIO_ANY_DESTID(port
->sys_size
),
900 /* Add device to the global and bus/net specific list. */
901 list_add_tail(&rdev
->net_list
, &net
->devices
);
903 if (prev
&& rio_is_switch(prev
))
904 prev
->rswitch
->nextdev
[prev_port
] = rdev
;
908 if (rio_is_switch(rdev
)) {
915 sw_inport
= RIO_GET_PORT_NUM(rdev
->swpinfo
);
916 rio_route_add_entry(rdev
, RIO_GLOBAL_TABLE
,
917 port
->host_deviceid
, sw_inport
, 0);
918 rdev
->rswitch
->route_table
[port
->host_deviceid
] = sw_inport
;
920 destid
= rio_destid_first(net
);
921 while (destid
!= RIO_INVALID_DESTID
&& destid
< next_destid
) {
922 if (destid
!= port
->host_deviceid
) {
923 rio_route_add_entry(rdev
, RIO_GLOBAL_TABLE
,
924 destid
, sw_inport
, 0);
925 rdev
->rswitch
->route_table
[destid
] = sw_inport
;
927 destid
= rio_destid_next(net
, destid
+ 1);
930 "RIO: found %s (vid %4.4x did %4.4x) with %d ports\n",
931 rio_name(rdev
), rdev
->vid
, rdev
->did
,
932 RIO_GET_TOTAL_PORTS(rdev
->swpinfo
));
933 sw_destid
= next_destid
;
935 port_num
< RIO_GET_TOTAL_PORTS(rdev
->swpinfo
);
937 if (sw_inport
== port_num
) {
938 rio_enable_rx_tx_port(port
, 0,
939 RIO_ANY_DESTID(port
->sys_size
),
941 rdev
->rswitch
->port_ok
|= (1 << port_num
);
945 cur_destid
= next_destid
;
947 if (rio_sport_is_active
948 (port
, RIO_ANY_DESTID(port
->sys_size
), hopcount
,
951 "RIO: scanning device on port %d\n",
953 rio_enable_rx_tx_port(port
, 0,
954 RIO_ANY_DESTID(port
->sys_size
),
956 rdev
->rswitch
->port_ok
|= (1 << port_num
);
957 rio_route_add_entry(rdev
, RIO_GLOBAL_TABLE
,
958 RIO_ANY_DESTID(port
->sys_size
),
961 if (rio_enum_peer(net
, port
, hopcount
+ 1,
965 /* Update routing tables */
966 destid
= rio_destid_next(net
, cur_destid
+ 1);
967 if (destid
!= RIO_INVALID_DESTID
) {
968 for (destid
= cur_destid
;
969 destid
< next_destid
;) {
970 if (destid
!= port
->host_deviceid
) {
971 rio_route_add_entry(rdev
,
977 route_table
[destid
] =
980 destid
= rio_destid_next(net
,
985 /* If switch supports Error Management,
986 * set PORT_LOCKOUT bit for unused port
989 rio_set_port_lockout(rdev
, port_num
, 1);
991 rdev
->rswitch
->port_ok
&= ~(1 << port_num
);
995 /* Direct Port-write messages to the enumeratiing host */
996 if ((rdev
->src_ops
& RIO_SRC_OPS_PORT_WRITE
) &&
998 rio_write_config_32(rdev
,
999 rdev
->em_efptr
+ RIO_EM_PW_TGT_DEVID
,
1000 (port
->host_deviceid
<< 16) |
1001 (port
->sys_size
<< 15));
1006 /* Check for empty switch */
1007 if (next_destid
== sw_destid
)
1008 next_destid
= rio_destid_alloc(net
);
1010 rdev
->destid
= sw_destid
;
1012 pr_debug("RIO: found %s (vid %4.4x did %4.4x)\n",
1013 rio_name(rdev
), rdev
->vid
, rdev
->did
);
1019 * rio_enum_complete- Tests if enumeration of a network is complete
1020 * @port: Master port to send transaction
1022 * Tests the PGCCSR discovered bit for non-zero value (enumeration
1023 * complete flag). Return %1 if enumeration is complete or %0 if
1024 * enumeration is incomplete.
1026 static int rio_enum_complete(struct rio_mport
*port
)
1030 rio_local_read_config_32(port
, port
->phys_efptr
+ RIO_PORT_GEN_CTL_CSR
,
1032 return (regval
& RIO_PORT_GEN_DISCOVERED
) ? 1 : 0;
1036 * rio_disc_peer- Recursively discovers a RIO network through a master port
1037 * @net: RIO network being discovered
1038 * @port: Master port to send transactions
1039 * @destid: Current destination ID in network
1040 * @hopcount: Number of hops into the network
1041 * @prev: previous rio_dev
1042 * @prev_port: previous port number
1044 * Recursively discovers a RIO network. Transactions are sent via the
1045 * master port passed in @port.
1048 rio_disc_peer(struct rio_net
*net
, struct rio_mport
*port
, u16 destid
,
1049 u8 hopcount
, struct rio_dev
*prev
, int prev_port
)
1051 u8 port_num
, route_port
;
1052 struct rio_dev
*rdev
;
1055 /* Setup new RIO device */
1056 if ((rdev
= rio_setup_device(net
, port
, destid
, hopcount
, 0))) {
1057 /* Add device to the global and bus/net specific list. */
1058 list_add_tail(&rdev
->net_list
, &net
->devices
);
1060 if (prev
&& rio_is_switch(prev
))
1061 prev
->rswitch
->nextdev
[prev_port
] = rdev
;
1065 if (rio_is_switch(rdev
)) {
1066 /* Associated destid is how we accessed this switch */
1067 rdev
->destid
= destid
;
1070 "RIO: found %s (vid %4.4x did %4.4x) with %d ports\n",
1071 rio_name(rdev
), rdev
->vid
, rdev
->did
,
1072 RIO_GET_TOTAL_PORTS(rdev
->swpinfo
));
1074 port_num
< RIO_GET_TOTAL_PORTS(rdev
->swpinfo
);
1076 if (RIO_GET_PORT_NUM(rdev
->swpinfo
) == port_num
)
1079 if (rio_sport_is_active
1080 (port
, destid
, hopcount
, port_num
)) {
1082 "RIO: scanning device on port %d\n",
1085 rio_lock_device(port
, destid
, hopcount
, 1000);
1088 ndestid
< RIO_ANY_DESTID(port
->sys_size
);
1090 rio_route_get_entry(rdev
,
1094 if (route_port
== port_num
)
1098 if (ndestid
== RIO_ANY_DESTID(port
->sys_size
))
1100 rio_unlock_device(port
, destid
, hopcount
);
1101 if (rio_disc_peer(net
, port
, ndestid
,
1102 hopcount
+ 1, rdev
, port_num
) < 0)
1107 pr_debug("RIO: found %s (vid %4.4x did %4.4x)\n",
1108 rio_name(rdev
), rdev
->vid
, rdev
->did
);
1114 * rio_mport_is_active- Tests if master port link is active
1115 * @port: Master port to test
1117 * Reads the port error status CSR for the master port to
1118 * determine if the port has an active link. Returns
1119 * %RIO_PORT_N_ERR_STS_PORT_OK if the master port is active
1120 * or %0 if it is inactive.
1122 static int rio_mport_is_active(struct rio_mport
*port
)
1126 int *entry
= rio_mport_phys_table
;
1130 rio_mport_get_feature(port
, 1, 0, 0, *entry
)))
1132 } while (*++entry
>= 0);
1135 rio_local_read_config_32(port
,
1137 RIO_PORT_N_ERR_STS_CSR(port
->index
),
1140 return result
& RIO_PORT_N_ERR_STS_PORT_OK
;
1144 * rio_alloc_net- Allocate and configure a new RIO network
1145 * @port: Master port associated with the RIO network
1146 * @do_enum: Enumeration/Discovery mode flag
1147 * @start: logical minimal start id for new net
1149 * Allocates a RIO network structure, initializes per-network
1150 * list heads, and adds the associated master port to the
1151 * network list of associated master ports. Returns a
1152 * RIO network pointer on success or %NULL on failure.
1154 static struct rio_net
*rio_alloc_net(struct rio_mport
*port
,
1155 int do_enum
, u16 start
)
1157 struct rio_net
*net
;
1159 net
= kzalloc(sizeof(struct rio_net
), GFP_KERNEL
);
1160 if (net
&& do_enum
) {
1161 net
->destid_table
.table
= kcalloc(
1162 BITS_TO_LONGS(RIO_MAX_ROUTE_ENTRIES(port
->sys_size
)),
1166 if (net
->destid_table
.table
== NULL
) {
1167 pr_err("RIO: failed to allocate destID table\n");
1171 net
->destid_table
.start
= start
;
1172 net
->destid_table
.max
=
1173 RIO_MAX_ROUTE_ENTRIES(port
->sys_size
);
1174 spin_lock_init(&net
->destid_table
.lock
);
1179 INIT_LIST_HEAD(&net
->node
);
1180 INIT_LIST_HEAD(&net
->devices
);
1181 INIT_LIST_HEAD(&net
->switches
);
1182 INIT_LIST_HEAD(&net
->mports
);
1183 list_add_tail(&port
->nnode
, &net
->mports
);
1191 * rio_update_route_tables- Updates route tables in switches
1192 * @net: RIO network to run update on
1194 * For each enumerated device, ensure that each switch in a system
1195 * has correct routing entries. Add routes for devices that where
1196 * unknown dirung the first enumeration pass through the switch.
1198 static void rio_update_route_tables(struct rio_net
*net
)
1200 struct rio_dev
*rdev
, *swrdev
;
1201 struct rio_switch
*rswitch
;
1205 list_for_each_entry(rdev
, &net
->devices
, net_list
) {
1207 destid
= rdev
->destid
;
1209 list_for_each_entry(rswitch
, &net
->switches
, node
) {
1211 if (rio_is_switch(rdev
) && (rdev
->rswitch
== rswitch
))
1214 if (RIO_INVALID_ROUTE
== rswitch
->route_table
[destid
]) {
1215 swrdev
= sw_to_rio_dev(rswitch
);
1217 /* Skip if destid ends in empty switch*/
1218 if (swrdev
->destid
== destid
)
1221 sport
= RIO_GET_PORT_NUM(swrdev
->swpinfo
);
1223 if (rswitch
->add_entry
) {
1224 rio_route_add_entry(swrdev
,
1225 RIO_GLOBAL_TABLE
, destid
,
1227 rswitch
->route_table
[destid
] = sport
;
1235 * rio_init_em - Initializes RIO Error Management (for switches)
1238 * For each enumerated switch, call device-specific error management
1239 * initialization routine (if supplied by the switch driver).
1241 static void rio_init_em(struct rio_dev
*rdev
)
1243 if (rio_is_switch(rdev
) && (rdev
->em_efptr
) &&
1244 (rdev
->rswitch
->em_init
)) {
1245 rdev
->rswitch
->em_init(rdev
);
1250 * rio_pw_enable - Enables/disables port-write handling by a master port
1251 * @port: Master port associated with port-write handling
1252 * @enable: 1=enable, 0=disable
1254 static void rio_pw_enable(struct rio_mport
*port
, int enable
)
1256 if (port
->ops
->pwenable
)
1257 port
->ops
->pwenable(port
, enable
);
1261 * rio_enum_mport- Start enumeration through a master port
1262 * @mport: Master port to send transactions
1264 * Starts the enumeration process. If somebody has enumerated our
1265 * master port device, then give up. If not and we have an active
1266 * link, then start recursive peer enumeration. Returns %0 if
1267 * enumeration succeeds or %-EBUSY if enumeration fails.
1269 int rio_enum_mport(struct rio_mport
*mport
)
1271 struct rio_net
*net
= NULL
;
1274 printk(KERN_INFO
"RIO: enumerate master port %d, %s\n", mport
->id
,
1276 /* If somebody else enumerated our master port device, bail. */
1277 if (rio_enum_host(mport
) < 0) {
1279 "RIO: master port %d device has been enumerated by a remote host\n",
1285 /* If master port has an active link, allocate net and enum peers */
1286 if (rio_mport_is_active(mport
)) {
1287 net
= rio_alloc_net(mport
, 1, 0);
1289 printk(KERN_ERR
"RIO: failed to allocate new net\n");
1294 /* reserve mport destID in new net */
1295 rio_destid_reserve(net
, mport
->host_deviceid
);
1297 /* Enable Input Output Port (transmitter reviever) */
1298 rio_enable_rx_tx_port(mport
, 1, 0, 0, 0);
1300 /* Set component tag for host */
1301 rio_local_write_config_32(mport
, RIO_COMPONENT_TAG_CSR
,
1304 next_destid
= rio_destid_alloc(net
);
1306 if (rio_enum_peer(net
, mport
, 0, NULL
, 0) < 0) {
1307 /* A higher priority host won enumeration, bail. */
1309 "RIO: master port %d device has lost enumeration to a remote host\n",
1311 rio_clear_locks(net
);
1315 /* free the last allocated destID (unused) */
1316 rio_destid_free(net
, next_destid
);
1317 rio_update_route_tables(net
);
1318 rio_clear_locks(net
);
1319 rio_pw_enable(mport
, 1);
1321 printk(KERN_INFO
"RIO: master port %d link inactive\n",
1331 * rio_build_route_tables- Generate route tables from switch route entries
1332 * @net: RIO network to run route tables scan on
1334 * For each switch device, generate a route table by copying existing
1335 * route entries from the switch.
1337 static void rio_build_route_tables(struct rio_net
*net
)
1339 struct rio_switch
*rswitch
;
1340 struct rio_dev
*rdev
;
1344 list_for_each_entry(rswitch
, &net
->switches
, node
) {
1345 rdev
= sw_to_rio_dev(rswitch
);
1347 rio_lock_device(net
->hport
, rdev
->destid
,
1348 rdev
->hopcount
, 1000);
1350 i
< RIO_MAX_ROUTE_ENTRIES(net
->hport
->sys_size
);
1352 if (rio_route_get_entry(rdev
, RIO_GLOBAL_TABLE
,
1355 rswitch
->route_table
[i
] = sport
;
1358 rio_unlock_device(net
->hport
, rdev
->destid
, rdev
->hopcount
);
1363 * rio_disc_mport- Start discovery through a master port
1364 * @mport: Master port to send transactions
1366 * Starts the discovery process. If we have an active link,
1367 * then wait for the signal that enumeration is complete.
1368 * When enumeration completion is signaled, start recursive
1369 * peer discovery. Returns %0 if discovery succeeds or %-EBUSY
1372 int rio_disc_mport(struct rio_mport
*mport
)
1374 struct rio_net
*net
= NULL
;
1375 unsigned long to_end
;
1377 printk(KERN_INFO
"RIO: discover master port %d, %s\n", mport
->id
,
1380 /* If master port has an active link, allocate net and discover peers */
1381 if (rio_mport_is_active(mport
)) {
1382 pr_debug("RIO: wait for enumeration to complete...\n");
1384 to_end
= jiffies
+ CONFIG_RAPIDIO_DISC_TIMEOUT
* HZ
;
1385 while (time_before(jiffies
, to_end
)) {
1386 if (rio_enum_complete(mport
))
1391 pr_debug("RIO: discovery timeout on mport %d %s\n",
1392 mport
->id
, mport
->name
);
1395 pr_debug("RIO: ... enumeration done\n");
1397 net
= rio_alloc_net(mport
, 0, 0);
1399 printk(KERN_ERR
"RIO: Failed to allocate new net\n");
1403 /* Read DestID assigned by enumerator */
1404 rio_local_read_config_32(mport
, RIO_DID_CSR
,
1405 &mport
->host_deviceid
);
1406 mport
->host_deviceid
= RIO_GET_DID(mport
->sys_size
,
1407 mport
->host_deviceid
);
1409 if (rio_disc_peer(net
, mport
, RIO_ANY_DESTID(mport
->sys_size
),
1412 "RIO: master port %d device has failed discovery\n",
1417 rio_build_route_tables(net
);