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/jiffies.h>
35 #include <linux/slab.h>
39 LIST_HEAD(rio_devices
);
40 static LIST_HEAD(rio_switches
);
42 static void rio_enum_timeout(unsigned long);
44 static void rio_init_em(struct rio_dev
*rdev
);
46 DEFINE_SPINLOCK(rio_global_list_lock
);
48 static int next_destid
= 0;
49 static int next_switchid
= 0;
50 static int next_net
= 0;
51 static int next_comptag
;
53 static struct timer_list rio_enum_timer
=
54 TIMER_INITIALIZER(rio_enum_timeout
, 0, 0);
56 static int rio_mport_phys_table
[] = {
58 RIO_EFB_PAR_EP_REC_ID
,
60 RIO_EFB_SER_EP_REC_ID
,
65 * rio_get_device_id - Get the base/extended device id for a device
66 * @port: RIO master port
67 * @destid: Destination ID of device
68 * @hopcount: Hopcount to device
70 * Reads the base/extended device id from a device. Returns the
73 static u16
rio_get_device_id(struct rio_mport
*port
, u16 destid
, u8 hopcount
)
77 rio_mport_read_config_32(port
, destid
, hopcount
, RIO_DID_CSR
, &result
);
79 return RIO_GET_DID(port
->sys_size
, result
);
83 * rio_set_device_id - Set the base/extended device id for a device
84 * @port: RIO master port
85 * @destid: Destination ID of device
86 * @hopcount: Hopcount to device
87 * @did: Device ID value to be written
89 * Writes the base/extended device id from a device.
91 static void rio_set_device_id(struct rio_mport
*port
, u16 destid
, u8 hopcount
, u16 did
)
93 rio_mport_write_config_32(port
, destid
, hopcount
, RIO_DID_CSR
,
94 RIO_SET_DID(port
->sys_size
, did
));
98 * rio_local_set_device_id - Set the base/extended device id for a port
99 * @port: RIO master port
100 * @did: Device ID value to be written
102 * Writes the base/extended device id from a device.
104 static void rio_local_set_device_id(struct rio_mport
*port
, u16 did
)
106 rio_local_write_config_32(port
, RIO_DID_CSR
, RIO_SET_DID(port
->sys_size
,
111 * rio_clear_locks- Release all host locks and signal enumeration complete
112 * @port: Master port to issue transaction
114 * Marks the component tag CSR on each device with the enumeration
115 * complete flag. When complete, it then release the host locks on
116 * each device. Returns 0 on success or %-EINVAL on failure.
118 static int rio_clear_locks(struct rio_mport
*port
)
120 struct rio_dev
*rdev
;
124 /* Assign component tag to all devices */
126 rio_local_write_config_32(port
, RIO_COMPONENT_TAG_CSR
, next_comptag
++);
128 list_for_each_entry(rdev
, &rio_devices
, global_list
) {
129 /* Mark device as discovered */
130 rio_read_config_32(rdev
,
131 rdev
->phys_efptr
+ RIO_PORT_GEN_CTL_CSR
,
133 rio_write_config_32(rdev
,
134 rdev
->phys_efptr
+ RIO_PORT_GEN_CTL_CSR
,
135 result
| RIO_PORT_GEN_DISCOVERED
);
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");
145 /* Release host device id locks */
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) {
151 "RIO: badness when releasing host lock on master port, result %8.8x\n",
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) {
161 "RIO: badness when releasing host lock on vid %4.4x did %4.4x\n",
162 rdev
->vid
, rdev
->did
);
171 * rio_enum_host- Set host lock and initialize host destination ID
172 * @port: Master port to issue transaction
174 * Sets the local host master port lock and destination ID register
175 * with the host device ID value. The host device ID value is provided
176 * by the platform. Returns %0 on success or %-1 on failure.
178 static int rio_enum_host(struct rio_mport
*port
)
182 /* Set master port host device id lock */
183 rio_local_write_config_32(port
, RIO_HOST_DID_LOCK_CSR
,
184 port
->host_deviceid
);
186 rio_local_read_config_32(port
, RIO_HOST_DID_LOCK_CSR
, &result
);
187 if ((result
& 0xffff) != port
->host_deviceid
)
190 /* Set master port destid and init destid ctr */
191 rio_local_set_device_id(port
, port
->host_deviceid
);
193 if (next_destid
== port
->host_deviceid
)
200 * rio_device_has_destid- Test if a device contains a destination ID register
201 * @port: Master port to issue transaction
202 * @src_ops: RIO device source operations
203 * @dst_ops: RIO device destination operations
205 * Checks the provided @src_ops and @dst_ops for the necessary transaction
206 * capabilities that indicate whether or not a device will implement a
207 * destination ID register. Returns 1 if true or 0 if false.
209 static int rio_device_has_destid(struct rio_mport
*port
, int src_ops
,
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
;
214 return !!((src_ops
| dst_ops
) & mask
);
218 * rio_release_dev- Frees a RIO device struct
219 * @dev: LDM device associated with a RIO device struct
221 * Gets the RIO device struct associated a RIO device struct.
222 * The RIO device struct is freed.
224 static void rio_release_dev(struct device
*dev
)
226 struct rio_dev
*rdev
;
228 rdev
= to_rio_dev(dev
);
233 * rio_is_switch- Tests if a RIO device has switch capabilities
236 * Gets the RIO device Processing Element Features register
237 * contents and tests for switch capabilities. Returns 1 if
238 * the device is a switch or 0 if it is not a switch.
239 * The RIO device struct is freed.
241 static int rio_is_switch(struct rio_dev
*rdev
)
243 if (rdev
->pef
& RIO_PEF_SWITCH
)
249 * rio_switch_init - Sets switch operations for a particular vendor switch
251 * @do_enum: Enumeration/Discovery mode flag
253 * Searches the RIO switch ops table for known switch types. If the vid
254 * and did match a switch table entry, then call switch initialization
255 * routine to setup switch-specific routines.
257 static void rio_switch_init(struct rio_dev
*rdev
, int do_enum
)
259 struct rio_switch_ops
*cur
= __start_rio_switch_ops
;
260 struct rio_switch_ops
*end
= __end_rio_switch_ops
;
263 if ((cur
->vid
== rdev
->vid
) && (cur
->did
== rdev
->did
)) {
264 pr_debug("RIO: calling init routine for %s\n",
266 cur
->init_hook(rdev
, do_enum
);
272 if ((cur
>= end
) && (rdev
->pef
& RIO_PEF_STD_RT
)) {
273 pr_debug("RIO: adding STD routing ops for %s\n",
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
;
280 if (!rdev
->rswitch
->add_entry
|| !rdev
->rswitch
->get_entry
)
281 printk(KERN_ERR
"RIO: missing routing ops for %s\n",
286 * rio_add_device- Adds a RIO device to the device model
289 * Adds the RIO device to the global device list and adds the RIO
290 * device to the RIO device list. Creates the generic sysfs nodes
293 static int __devinit
rio_add_device(struct rio_dev
*rdev
)
297 err
= device_add(&rdev
->dev
);
301 spin_lock(&rio_global_list_lock
);
302 list_add_tail(&rdev
->global_list
, &rio_devices
);
303 spin_unlock(&rio_global_list_lock
);
305 rio_create_sysfs_dev_files(rdev
);
311 * rio_enable_rx_tx_port - enable input reciever and output transmitter of
313 * @port: Master port associated with the RIO network
314 * @local: local=1 select local port otherwise a far device is reached
315 * @destid: Destination ID of the device to check host bit
316 * @hopcount: Number of hops to reach the target
317 * @port_num: Port (-number on switch) to enable on a far end device
319 * Returns 0 or 1 from on General Control Command and Status Register
322 inline 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
330 * enable rx input tx output port
332 pr_debug("rio_enable_rx_tx_port(local = %d, destid = %d, hopcount = "
333 "%d, port_num = %d)\n", local
, destid
, hopcount
, port_num
);
335 ext_ftr_ptr
= rio_mport_get_physefb(port
, local
, destid
, hopcount
);
338 rio_local_read_config_32(port
, ext_ftr_ptr
+
339 RIO_PORT_N_CTL_CSR(0),
342 if (rio_mport_read_config_32(port
, destid
, hopcount
,
343 ext_ftr_ptr
+ RIO_PORT_N_CTL_CSR(port_num
), ®val
) < 0)
347 if (regval
& RIO_PORT_N_CTL_P_TYP_SER
) {
349 regval
= regval
| RIO_PORT_N_CTL_EN_RX_SER
350 | RIO_PORT_N_CTL_EN_TX_SER
;
353 regval
= regval
| RIO_PORT_N_CTL_EN_RX_PAR
354 | RIO_PORT_N_CTL_EN_TX_PAR
;
358 rio_local_write_config_32(port
, ext_ftr_ptr
+
359 RIO_PORT_N_CTL_CSR(0), regval
);
361 if (rio_mport_write_config_32(port
, destid
, hopcount
,
362 ext_ftr_ptr
+ RIO_PORT_N_CTL_CSR(port_num
), regval
) < 0)
370 * rio_setup_device- Allocates and sets up a RIO device
372 * @port: Master port to send transactions
373 * @destid: Current destination ID
374 * @hopcount: Current hopcount
375 * @do_enum: Enumeration/Discovery mode flag
377 * Allocates a RIO device and configures fields based on configuration
378 * space contents. If device has a destination ID register, a destination
379 * ID is either assigned in enumeration mode or read from configuration
380 * space in discovery mode. If the device has switch capabilities, then
381 * a switch is allocated and configured appropriately. Returns a pointer
382 * to a RIO device on success or NULL on failure.
385 static struct rio_dev __devinit
*rio_setup_device(struct rio_net
*net
,
386 struct rio_mport
*port
, u16 destid
,
387 u8 hopcount
, int do_enum
)
390 struct rio_dev
*rdev
;
391 struct rio_switch
*rswitch
= NULL
;
394 rdev
= kzalloc(sizeof(struct rio_dev
), GFP_KERNEL
);
399 rio_mport_read_config_32(port
, destid
, hopcount
, RIO_DEV_ID_CAR
,
401 rdev
->did
= result
>> 16;
402 rdev
->vid
= result
& 0xffff;
403 rio_mport_read_config_32(port
, destid
, hopcount
, RIO_DEV_INFO_CAR
,
405 rio_mport_read_config_32(port
, destid
, hopcount
, RIO_ASM_ID_CAR
,
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
,
411 rdev
->asm_rev
= result
>> 16;
412 rio_mport_read_config_32(port
, destid
, hopcount
, RIO_PEF_CAR
,
414 if (rdev
->pef
& RIO_PEF_EXT_FEATURES
) {
415 rdev
->efptr
= result
& 0xffff;
416 rdev
->phys_efptr
= rio_mport_get_physefb(port
, 0, destid
,
419 rdev
->em_efptr
= rio_mport_get_feature(port
, 0, destid
,
420 hopcount
, RIO_EFB_ERR_MGMNT
);
423 rio_mport_read_config_32(port
, destid
, hopcount
, RIO_SRC_OPS_CAR
,
425 rio_mport_read_config_32(port
, destid
, hopcount
, RIO_DST_OPS_CAR
,
428 if (rio_device_has_destid(port
, rdev
->src_ops
, rdev
->dst_ops
)) {
430 rio_set_device_id(port
, destid
, hopcount
, next_destid
);
431 rdev
->destid
= next_destid
++;
432 if (next_destid
== port
->host_deviceid
)
435 rdev
->destid
= rio_get_device_id(port
, destid
, hopcount
);
437 /* Switch device has an associated destID */
438 rdev
->destid
= RIO_INVALID_DESTID
;
440 /* If a PE has both switch and other functions, show it as a switch */
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
);
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
),
454 if (!rswitch
->route_table
)
456 /* Initialize switch route table */
457 for (rdid
= 0; rdid
< RIO_MAX_ROUTE_ENTRIES(port
->sys_size
);
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
);
465 if (do_enum
&& rdev
->rswitch
->clr_table
)
466 rdev
->rswitch
->clr_table(port
, destid
, hopcount
,
469 list_add_tail(&rswitch
->node
, &rio_switches
);
473 /*Enable Input Output Port (transmitter reviever)*/
474 rio_enable_rx_tx_port(port
, 0, destid
, hopcount
, 0);
476 dev_set_name(&rdev
->dev
, "%02x:e:%04x", rdev
->net
->id
,
480 rdev
->dev
.bus
= &rio_bus_type
;
482 device_initialize(&rdev
->dev
);
483 rdev
->dev
.release
= rio_release_dev
;
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);
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
],
495 ret
= rio_add_device(rdev
);
503 kfree(rswitch
->route_table
);
511 * rio_sport_is_active- Tests if a switch port has an active connection.
512 * @port: Master port to send transaction
513 * @destid: Associated destination ID for switch
514 * @hopcount: Hopcount to reach switch
515 * @sport: Switch port number
517 * Reads the port error status CSR for a particular switch port to
518 * determine if the port has an active link. Returns
519 * %RIO_PORT_N_ERR_STS_PORT_OK if the port is active or %0 if it is
523 rio_sport_is_active(struct rio_mport
*port
, u16 destid
, u8 hopcount
, int sport
)
528 ext_ftr_ptr
= rio_mport_get_efb(port
, 0, destid
, hopcount
, 0);
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
))
539 ext_ftr_ptr
= rio_mport_get_efb(port
, 0, destid
, hopcount
,
544 rio_mport_read_config_32(port
, destid
, hopcount
,
546 RIO_PORT_N_ERR_STS_CSR(sport
),
549 return result
& RIO_PORT_N_ERR_STS_PORT_OK
;
553 * rio_lock_device - Acquires host device lock for specified device
554 * @port: Master port to send transaction
555 * @destid: Destination ID for device/switch
556 * @hopcount: Hopcount to reach switch
557 * @wait_ms: Max wait time in msec (0 = no timeout)
559 * Attepts to acquire host device lock for specified device
560 * Returns 0 if device lock acquired or EINVAL if timeout expires.
563 rio_lock_device(struct rio_mport
*port
, u16 destid
, u8 hopcount
, int wait_ms
)
568 /* Attempt to acquire device lock */
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
);
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",
584 /* Try to acquire device lock again */
585 rio_mport_write_config_32(port
, destid
,
587 RIO_HOST_DID_LOCK_CSR
,
588 port
->host_deviceid
);
589 rio_mport_read_config_32(port
, destid
,
591 RIO_HOST_DID_LOCK_CSR
, &result
);
598 * rio_unlock_device - Releases host device lock for specified device
599 * @port: Master port to send transaction
600 * @destid: Destination ID for device/switch
601 * @hopcount: Hopcount to reach switch
603 * Returns 0 if device lock released or EINVAL if fails.
606 rio_unlock_device(struct rio_mport
*port
, u16 destid
, u8 hopcount
)
610 /* Release device lock */
611 rio_mport_write_config_32(port
, destid
,
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",
627 * rio_route_add_entry- Add a route entry to a switch routing table
628 * @mport: Master port to send transaction
629 * @rswitch: Switch device
630 * @table: Routing table ID
631 * @route_destid: Destination ID to be routed
632 * @route_port: Port number to be routed
633 * @lock: lock switch device flag
635 * Calls the switch specific add_entry() method to add a route entry
636 * on a switch. The route table can be specified using the @table
637 * argument if a switch has per port routing tables or the normal
638 * use is to specific all tables (or the global table) by passing
639 * %RIO_GLOBAL_TABLE in @table. Returns %0 on success or %-EINVAL
643 rio_route_add_entry(struct rio_mport
*mport
, struct rio_switch
*rswitch
,
644 u16 table
, u16 route_destid
, u8 route_port
, int lock
)
649 rc
= rio_lock_device(mport
, rswitch
->destid
,
650 rswitch
->hopcount
, 1000);
655 rc
= rswitch
->add_entry(mport
, rswitch
->destid
,
656 rswitch
->hopcount
, table
,
657 route_destid
, route_port
);
659 rio_unlock_device(mport
, rswitch
->destid
, rswitch
->hopcount
);
665 * rio_route_get_entry- Read a route entry in a switch routing table
666 * @mport: Master port to send transaction
667 * @rswitch: Switch device
668 * @table: Routing table ID
669 * @route_destid: Destination ID to be routed
670 * @route_port: Pointer to read port number into
671 * @lock: lock switch device flag
673 * Calls the switch specific get_entry() method to read a route entry
674 * in a switch. The route table can be specified using the @table
675 * argument if a switch has per port routing tables or the normal
676 * use is to specific all tables (or the global table) by passing
677 * %RIO_GLOBAL_TABLE in @table. Returns %0 on success or %-EINVAL
681 rio_route_get_entry(struct rio_mport
*mport
, struct rio_switch
*rswitch
, u16 table
,
682 u16 route_destid
, u8
*route_port
, int lock
)
687 rc
= rio_lock_device(mport
, rswitch
->destid
,
688 rswitch
->hopcount
, 1000);
693 rc
= rswitch
->get_entry(mport
, rswitch
->destid
,
694 rswitch
->hopcount
, table
,
695 route_destid
, route_port
);
697 rio_unlock_device(mport
, rswitch
->destid
, rswitch
->hopcount
);
703 * rio_get_host_deviceid_lock- Reads the Host Device ID Lock CSR on a device
704 * @port: Master port to send transaction
705 * @hopcount: Number of hops to the device
707 * Used during enumeration to read the Host Device ID Lock CSR on a
708 * RIO device. Returns the value of the lock register.
710 static u16
rio_get_host_deviceid_lock(struct rio_mport
*port
, u8 hopcount
)
714 rio_mport_read_config_32(port
, RIO_ANY_DESTID(port
->sys_size
), hopcount
,
715 RIO_HOST_DID_LOCK_CSR
, &result
);
717 return (u16
) (result
& 0xffff);
721 * rio_get_swpinfo_inport- Gets the ingress port number
722 * @mport: Master port to send transaction
723 * @destid: Destination ID associated with the switch
724 * @hopcount: Number of hops to the device
726 * Returns port number being used to access the switch device.
729 rio_get_swpinfo_inport(struct rio_mport
*mport
, u16 destid
, u8 hopcount
)
733 rio_mport_read_config_32(mport
, destid
, hopcount
, RIO_SWP_INFO_CAR
,
736 return (u8
) (result
& 0xff);
740 * rio_get_swpinfo_tports- Gets total number of ports on the switch
741 * @mport: Master port to send transaction
742 * @destid: Destination ID associated with the switch
743 * @hopcount: Number of hops to the device
745 * Returns total numbers of ports implemented by the switch device.
747 static u8
rio_get_swpinfo_tports(struct rio_mport
*mport
, u16 destid
,
752 rio_mport_read_config_32(mport
, destid
, hopcount
, RIO_SWP_INFO_CAR
,
755 return RIO_GET_TOTAL_PORTS(result
);
759 * rio_net_add_mport- Add a master port to a RIO network
761 * @port: Master port to add
763 * Adds a master port to the network list of associated master
766 static void rio_net_add_mport(struct rio_net
*net
, struct rio_mport
*port
)
768 spin_lock(&rio_global_list_lock
);
769 list_add_tail(&port
->nnode
, &net
->mports
);
770 spin_unlock(&rio_global_list_lock
);
774 * rio_enum_peer- Recursively enumerate a RIO network through a master port
775 * @net: RIO network being enumerated
776 * @port: Master port to send transactions
777 * @hopcount: Number of hops into the network
779 * Recursively enumerates a RIO network. Transactions are sent via the
780 * master port passed in @port.
782 static int __devinit
rio_enum_peer(struct rio_net
*net
, struct rio_mport
*port
,
790 struct rio_dev
*rdev
;
794 if (rio_get_host_deviceid_lock(port
, hopcount
) == port
->host_deviceid
) {
795 pr_debug("RIO: PE already discovered by this host\n");
797 * Already discovered by this host. Add it as another
798 * master port for the current network.
800 rio_net_add_mport(net
, port
);
804 /* Attempt to acquire device lock */
805 rio_mport_write_config_32(port
, RIO_ANY_DESTID(port
->sys_size
),
807 RIO_HOST_DID_LOCK_CSR
, port
->host_deviceid
);
808 while ((tmp
= rio_get_host_deviceid_lock(port
, hopcount
))
809 < port
->host_deviceid
) {
812 /* Attempt to acquire device lock again */
813 rio_mport_write_config_32(port
, RIO_ANY_DESTID(port
->sys_size
),
815 RIO_HOST_DID_LOCK_CSR
,
816 port
->host_deviceid
);
819 if (rio_get_host_deviceid_lock(port
, hopcount
) > port
->host_deviceid
) {
821 "RIO: PE locked by a higher priority host...retreating\n");
825 /* Setup new RIO device */
826 rdev
= rio_setup_device(net
, port
, RIO_ANY_DESTID(port
->sys_size
),
829 /* Add device to the global and bus/net specific list. */
830 list_add_tail(&rdev
->net_list
, &net
->devices
);
834 if (rio_is_switch(rdev
)) {
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
;
842 for (destid
= 0; destid
< next_destid
; destid
++) {
843 if (destid
== port
->host_deviceid
)
845 rio_route_add_entry(port
, rdev
->rswitch
, RIO_GLOBAL_TABLE
,
846 destid
, sw_inport
, 0);
847 rdev
->rswitch
->route_table
[destid
] = sw_inport
;
851 rio_get_swpinfo_tports(port
, RIO_ANY_DESTID(port
->sys_size
),
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 /*Enable Input Output Port (transmitter reviever)*/
859 rio_enable_rx_tx_port(port
, 0,
860 RIO_ANY_DESTID(port
->sys_size
),
863 if (sw_inport
== port_num
) {
864 rdev
->rswitch
->port_ok
|= (1 << port_num
);
868 cur_destid
= next_destid
;
870 if (rio_sport_is_active
871 (port
, RIO_ANY_DESTID(port
->sys_size
), hopcount
,
874 "RIO: scanning device on port %d\n",
876 rdev
->rswitch
->port_ok
|= (1 << port_num
);
877 rio_route_add_entry(port
, rdev
->rswitch
,
879 RIO_ANY_DESTID(port
->sys_size
),
882 if (rio_enum_peer(net
, port
, hopcount
+ 1) < 0)
885 /* Update routing tables */
886 if (next_destid
> cur_destid
) {
887 for (destid
= cur_destid
;
888 destid
< next_destid
; destid
++) {
889 if (destid
== port
->host_deviceid
)
891 rio_route_add_entry(port
, rdev
->rswitch
,
897 route_table
[destid
] =
902 /* If switch supports Error Management,
903 * set PORT_LOCKOUT bit for unused port
906 rio_set_port_lockout(rdev
, port_num
, 1);
908 rdev
->rswitch
->port_ok
&= ~(1 << port_num
);
912 /* Direct Port-write messages to the enumeratiing host */
913 if ((rdev
->src_ops
& RIO_SRC_OPS_PORT_WRITE
) &&
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));
923 /* Check for empty switch */
924 if (next_destid
== sw_destid
) {
926 if (next_destid
== port
->host_deviceid
)
930 rdev
->rswitch
->destid
= sw_destid
;
932 pr_debug("RIO: found %s (vid %4.4x did %4.4x)\n",
933 rio_name(rdev
), rdev
->vid
, rdev
->did
);
939 * rio_enum_complete- Tests if enumeration of a network is complete
940 * @port: Master port to send transaction
942 * Tests the Component Tag CSR for non-zero value (enumeration
943 * complete flag). Return %1 if enumeration is complete or %0 if
944 * enumeration is incomplete.
946 static int rio_enum_complete(struct rio_mport
*port
)
950 rio_local_read_config_32(port
, RIO_COMPONENT_TAG_CSR
, &tag_csr
);
951 return (tag_csr
& 0xffff) ? 1 : 0;
955 * rio_disc_peer- Recursively discovers a RIO network through a master port
956 * @net: RIO network being discovered
957 * @port: Master port to send transactions
958 * @destid: Current destination ID in network
959 * @hopcount: Number of hops into the network
961 * Recursively discovers a RIO network. Transactions are sent via the
962 * master port passed in @port.
965 rio_disc_peer(struct rio_net
*net
, struct rio_mport
*port
, u16 destid
,
968 u8 port_num
, route_port
;
970 struct rio_dev
*rdev
;
973 /* Setup new RIO device */
974 if ((rdev
= rio_setup_device(net
, port
, destid
, hopcount
, 0))) {
975 /* Add device to the global and bus/net specific list. */
976 list_add_tail(&rdev
->net_list
, &net
->devices
);
980 if (rio_is_switch(rdev
)) {
983 /* Associated destid is how we accessed this switch */
984 rdev
->rswitch
->destid
= destid
;
986 num_ports
= rio_get_swpinfo_tports(port
, destid
, hopcount
);
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
) ==
995 if (rio_sport_is_active
996 (port
, destid
, hopcount
, port_num
)) {
998 "RIO: scanning device on port %d\n",
1001 rio_lock_device(port
, destid
, hopcount
, 1000);
1004 ndestid
< RIO_ANY_DESTID(port
->sys_size
);
1006 rio_route_get_entry(port
, rdev
->rswitch
,
1010 if (route_port
== port_num
)
1014 rio_unlock_device(port
, destid
, hopcount
);
1016 (net
, port
, ndestid
, hopcount
+ 1) < 0)
1021 pr_debug("RIO: found %s (vid %4.4x did %4.4x)\n",
1022 rio_name(rdev
), rdev
->vid
, rdev
->did
);
1028 * rio_mport_is_active- Tests if master port link is active
1029 * @port: Master port to test
1031 * Reads the port error status CSR for the master port to
1032 * determine if the port has an active link. Returns
1033 * %RIO_PORT_N_ERR_STS_PORT_OK if the master port is active
1034 * or %0 if it is inactive.
1036 static int rio_mport_is_active(struct rio_mport
*port
)
1040 int *entry
= rio_mport_phys_table
;
1044 rio_mport_get_feature(port
, 1, 0, 0, *entry
)))
1046 } while (*++entry
>= 0);
1049 rio_local_read_config_32(port
,
1051 RIO_PORT_N_ERR_STS_CSR(port
->index
),
1054 return result
& RIO_PORT_N_ERR_STS_PORT_OK
;
1058 * rio_alloc_net- Allocate and configure a new RIO network
1059 * @port: Master port associated with the RIO network
1061 * Allocates a RIO network structure, initializes per-network
1062 * list heads, and adds the associated master port to the
1063 * network list of associated master ports. Returns a
1064 * RIO network pointer on success or %NULL on failure.
1066 static struct rio_net __devinit
*rio_alloc_net(struct rio_mport
*port
)
1068 struct rio_net
*net
;
1070 net
= kzalloc(sizeof(struct rio_net
), GFP_KERNEL
);
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
);
1077 net
->id
= next_net
++;
1083 * rio_update_route_tables- Updates route tables in switches
1084 * @port: Master port associated with the RIO network
1086 * For each enumerated device, ensure that each switch in a system
1087 * has correct routing entries. Add routes for devices that where
1088 * unknown dirung the first enumeration pass through the switch.
1090 static void rio_update_route_tables(struct rio_mport
*port
)
1092 struct rio_dev
*rdev
;
1093 struct rio_switch
*rswitch
;
1097 list_for_each_entry(rdev
, &rio_devices
, global_list
) {
1099 destid
= (rio_is_switch(rdev
))?rdev
->rswitch
->destid
:rdev
->destid
;
1101 list_for_each_entry(rswitch
, &rio_switches
, node
) {
1103 if (rio_is_switch(rdev
) && (rdev
->rswitch
== rswitch
))
1106 if (RIO_INVALID_ROUTE
== rswitch
->route_table
[destid
]) {
1107 /* Skip if destid ends in empty switch*/
1108 if (rswitch
->destid
== destid
)
1111 sport
= rio_get_swpinfo_inport(port
,
1112 rswitch
->destid
, rswitch
->hopcount
);
1114 if (rswitch
->add_entry
) {
1115 rio_route_add_entry(port
, rswitch
,
1116 RIO_GLOBAL_TABLE
, destid
,
1118 rswitch
->route_table
[destid
] = sport
;
1126 * rio_init_em - Initializes RIO Error Management (for switches)
1129 * For each enumerated switch, call device-specific error management
1130 * initialization routine (if supplied by the switch driver).
1132 static void rio_init_em(struct rio_dev
*rdev
)
1134 if (rio_is_switch(rdev
) && (rdev
->em_efptr
) &&
1135 (rdev
->rswitch
->em_init
)) {
1136 rdev
->rswitch
->em_init(rdev
);
1141 * rio_pw_enable - Enables/disables port-write handling by a master port
1142 * @port: Master port associated with port-write handling
1143 * @enable: 1=enable, 0=disable
1145 static void rio_pw_enable(struct rio_mport
*port
, int enable
)
1147 if (port
->ops
->pwenable
)
1148 port
->ops
->pwenable(port
, enable
);
1152 * rio_enum_mport- Start enumeration through a master port
1153 * @mport: Master port to send transactions
1155 * Starts the enumeration process. If somebody has enumerated our
1156 * master port device, then give up. If not and we have an active
1157 * link, then start recursive peer enumeration. Returns %0 if
1158 * enumeration succeeds or %-EBUSY if enumeration fails.
1160 int __devinit
rio_enum_mport(struct rio_mport
*mport
)
1162 struct rio_net
*net
= NULL
;
1165 printk(KERN_INFO
"RIO: enumerate master port %d, %s\n", mport
->id
,
1167 /* If somebody else enumerated our master port device, bail. */
1168 if (rio_enum_host(mport
) < 0) {
1170 "RIO: master port %d device has been enumerated by a remote host\n",
1176 /* If master port has an active link, allocate net and enum peers */
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");
1184 /* Enable Input Output Port (transmitter reviever) */
1185 rio_enable_rx_tx_port(mport
, 1, 0, 0, 0);
1187 if (rio_enum_peer(net
, mport
, 0) < 0) {
1188 /* A higher priority host won enumeration, bail. */
1190 "RIO: master port %d device has lost enumeration to a remote host\n",
1192 rio_clear_locks(mport
);
1196 rio_update_route_tables(mport
);
1197 rio_clear_locks(mport
);
1198 rio_pw_enable(mport
, 1);
1200 printk(KERN_INFO
"RIO: master port %d link inactive\n",
1210 * rio_build_route_tables- Generate route tables from switch route entries
1212 * For each switch device, generate a route table by copying existing
1213 * route entries from the switch.
1215 static void rio_build_route_tables(void)
1217 struct rio_dev
*rdev
;
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);
1226 i
< RIO_MAX_ROUTE_ENTRIES(rdev
->net
->hport
->sys_size
);
1228 if (rio_route_get_entry
1229 (rdev
->net
->hport
, rdev
->rswitch
,
1230 RIO_GLOBAL_TABLE
, i
, &sport
, 0) < 0)
1232 rdev
->rswitch
->route_table
[i
] = sport
;
1235 rio_unlock_device(rdev
->net
->hport
,
1236 rdev
->rswitch
->destid
,
1237 rdev
->rswitch
->hopcount
);
1242 * rio_enum_timeout- Signal that enumeration timed out
1243 * @data: Address of timeout flag.
1245 * When the enumeration complete timer expires, set a flag that
1246 * signals to the discovery process that enumeration did not
1247 * complete in a sane amount of time.
1249 static void rio_enum_timeout(unsigned long data
)
1251 /* Enumeration timed out, set flag */
1256 * rio_disc_mport- Start discovery through a master port
1257 * @mport: Master port to send transactions
1259 * Starts the discovery process. If we have an active link,
1260 * then wait for the signal that enumeration is complete.
1261 * When enumeration completion is signaled, start recursive
1262 * peer discovery. Returns %0 if discovery succeeds or %-EBUSY
1265 int __devinit
rio_disc_mport(struct rio_mport
*mport
)
1267 struct rio_net
*net
= NULL
;
1268 int enum_timeout_flag
= 0;
1270 printk(KERN_INFO
"RIO: discover master port %d, %s\n", mport
->id
,
1273 /* If master port has an active link, allocate net and discover peers */
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");
1280 pr_debug("RIO: wait for enumeration complete...");
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
)) {
1288 if (enum_timeout_flag
) {
1289 del_timer_sync(&rio_enum_timer
);
1293 del_timer_sync(&rio_enum_timer
);
1297 /* Read DestID assigned by enumerator */
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
);
1303 if (rio_disc_peer(net
, mport
, RIO_ANY_DESTID(mport
->sys_size
),
1306 "RIO: master port %d device has failed discovery\n",
1311 rio_build_route_tables();
1317 pr_debug("timeout\n");