]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/rapidio/rio-scan.c
rapidio/rionet: rework to support multiple RIO master ports
[mirror_ubuntu-bionic-kernel.git] / drivers / rapidio / rio-scan.c
CommitLineData
eb188d0e
MP
1/*
2 * RapidIO enumeration and discovery support
3 *
4 * Copyright 2005 MontaVista Software, Inc.
5 * Matt Porter <mporter@kernel.crashing.org>
6 *
e5cabeb3
AB
7 * Copyright 2009 Integrated Device Technology, Inc.
8 * Alex Bounine <alexandre.bounine@idt.com>
9 * - Added Port-Write/Error Management initialization and handling
10 *
933af4a6
TM
11 * Copyright 2009 Sysgo AG
12 * Thomas Moll <thomas.moll@sysgo.com>
13 * - Added Input- Output- enable functionality, to allow full communication
14 *
eb188d0e
MP
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.
19 */
20
eb188d0e
MP
21#include <linux/types.h>
22#include <linux/kernel.h>
23
24#include <linux/delay.h>
fa78cc51 25#include <linux/dma-mapping.h>
eb188d0e
MP
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>
fa3dbaa0 34#include <linux/sched.h>
de25968c
TS
35#include <linux/jiffies.h>
36#include <linux/slab.h>
eb188d0e
MP
37
38#include "rio.h"
39
40LIST_HEAD(rio_devices);
eb188d0e 41
e5cabeb3
AB
42static void rio_init_em(struct rio_dev *rdev);
43
fa78cc51
MP
44DEFINE_SPINLOCK(rio_global_list_lock);
45
eb188d0e 46static int next_destid = 0;
af84ca38 47static int next_comptag = 1;
eb188d0e 48
eb188d0e
MP
49static int rio_mport_phys_table[] = {
50 RIO_EFB_PAR_EP_ID,
51 RIO_EFB_PAR_EP_REC_ID,
52 RIO_EFB_SER_EP_ID,
53 RIO_EFB_SER_EP_REC_ID,
54 -1,
55};
56
eb188d0e
MP
57/**
58 * rio_get_device_id - Get the base/extended device id for a device
59 * @port: RIO master port
60 * @destid: Destination ID of device
61 * @hopcount: Hopcount to device
62 *
63 * Reads the base/extended device id from a device. Returns the
64 * 8/16-bit device ID.
65 */
66static u16 rio_get_device_id(struct rio_mport *port, u16 destid, u8 hopcount)
67{
68 u32 result;
69
70 rio_mport_read_config_32(port, destid, hopcount, RIO_DID_CSR, &result);
71
e0423236 72 return RIO_GET_DID(port->sys_size, result);
eb188d0e
MP
73}
74
75/**
76 * rio_set_device_id - Set the base/extended device id for a device
77 * @port: RIO master port
78 * @destid: Destination ID of device
79 * @hopcount: Hopcount to device
80 * @did: Device ID value to be written
81 *
82 * Writes the base/extended device id from a device.
83 */
fa78cc51 84static void rio_set_device_id(struct rio_mport *port, u16 destid, u8 hopcount, u16 did)
eb188d0e
MP
85{
86 rio_mport_write_config_32(port, destid, hopcount, RIO_DID_CSR,
e0423236 87 RIO_SET_DID(port->sys_size, did));
eb188d0e
MP
88}
89
90/**
91 * rio_local_set_device_id - Set the base/extended device id for a port
92 * @port: RIO master port
93 * @did: Device ID value to be written
94 *
95 * Writes the base/extended device id from a device.
96 */
97static void rio_local_set_device_id(struct rio_mport *port, u16 did)
98{
e0423236
ZW
99 rio_local_write_config_32(port, RIO_DID_CSR, RIO_SET_DID(port->sys_size,
100 did));
eb188d0e
MP
101}
102
103/**
104 * rio_clear_locks- Release all host locks and signal enumeration complete
a7071efc 105 * @net: RIO network to run on
eb188d0e
MP
106 *
107 * Marks the component tag CSR on each device with the enumeration
108 * complete flag. When complete, it then release the host locks on
109 * each device. Returns 0 on success or %-EINVAL on failure.
110 */
a7071efc 111static int rio_clear_locks(struct rio_net *net)
eb188d0e 112{
a7071efc 113 struct rio_mport *port = net->hport;
eb188d0e
MP
114 struct rio_dev *rdev;
115 u32 result;
116 int ret = 0;
117
eb188d0e
MP
118 /* Release host device id locks */
119 rio_local_write_config_32(port, RIO_HOST_DID_LOCK_CSR,
120 port->host_deviceid);
121 rio_local_read_config_32(port, RIO_HOST_DID_LOCK_CSR, &result);
122 if ((result & 0xffff) != 0xffff) {
123 printk(KERN_INFO
124 "RIO: badness when releasing host lock on master port, result %8.8x\n",
125 result);
126 ret = -EINVAL;
127 }
a7071efc 128 list_for_each_entry(rdev, &net->devices, net_list) {
eb188d0e
MP
129 rio_write_config_32(rdev, RIO_HOST_DID_LOCK_CSR,
130 port->host_deviceid);
131 rio_read_config_32(rdev, RIO_HOST_DID_LOCK_CSR, &result);
132 if ((result & 0xffff) != 0xffff) {
133 printk(KERN_INFO
134 "RIO: badness when releasing host lock on vid %4.4x did %4.4x\n",
135 rdev->vid, rdev->did);
136 ret = -EINVAL;
137 }
af84ca38
AB
138
139 /* Mark device as discovered and enable master */
140 rio_read_config_32(rdev,
141 rdev->phys_efptr + RIO_PORT_GEN_CTL_CSR,
142 &result);
143 result |= RIO_PORT_GEN_DISCOVERED | RIO_PORT_GEN_MASTER;
144 rio_write_config_32(rdev,
145 rdev->phys_efptr + RIO_PORT_GEN_CTL_CSR,
146 result);
eb188d0e
MP
147 }
148
149 return ret;
150}
151
152/**
153 * rio_enum_host- Set host lock and initialize host destination ID
154 * @port: Master port to issue transaction
155 *
156 * Sets the local host master port lock and destination ID register
157 * with the host device ID value. The host device ID value is provided
158 * by the platform. Returns %0 on success or %-1 on failure.
159 */
160static int rio_enum_host(struct rio_mport *port)
161{
162 u32 result;
163
164 /* Set master port host device id lock */
165 rio_local_write_config_32(port, RIO_HOST_DID_LOCK_CSR,
166 port->host_deviceid);
167
168 rio_local_read_config_32(port, RIO_HOST_DID_LOCK_CSR, &result);
169 if ((result & 0xffff) != port->host_deviceid)
170 return -1;
171
172 /* Set master port destid and init destid ctr */
173 rio_local_set_device_id(port, port->host_deviceid);
174
175 if (next_destid == port->host_deviceid)
176 next_destid++;
177
178 return 0;
179}
180
181/**
182 * rio_device_has_destid- Test if a device contains a destination ID register
183 * @port: Master port to issue transaction
184 * @src_ops: RIO device source operations
185 * @dst_ops: RIO device destination operations
186 *
187 * Checks the provided @src_ops and @dst_ops for the necessary transaction
188 * capabilities that indicate whether or not a device will implement a
189 * destination ID register. Returns 1 if true or 0 if false.
190 */
191static int rio_device_has_destid(struct rio_mport *port, int src_ops,
192 int dst_ops)
193{
fa78cc51
MP
194 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;
195
196 return !!((src_ops | dst_ops) & mask);
eb188d0e
MP
197}
198
199/**
200 * rio_release_dev- Frees a RIO device struct
201 * @dev: LDM device associated with a RIO device struct
202 *
203 * Gets the RIO device struct associated a RIO device struct.
204 * The RIO device struct is freed.
205 */
206static void rio_release_dev(struct device *dev)
207{
208 struct rio_dev *rdev;
209
210 rdev = to_rio_dev(dev);
211 kfree(rdev);
212}
213
214/**
215 * rio_is_switch- Tests if a RIO device has switch capabilities
216 * @rdev: RIO device
217 *
218 * Gets the RIO device Processing Element Features register
219 * contents and tests for switch capabilities. Returns 1 if
220 * the device is a switch or 0 if it is not a switch.
221 * The RIO device struct is freed.
222 */
223static int rio_is_switch(struct rio_dev *rdev)
224{
225 if (rdev->pef & RIO_PEF_SWITCH)
226 return 1;
227 return 0;
228}
229
230/**
058f88d6 231 * rio_switch_init - Sets switch operations for a particular vendor switch
eb188d0e 232 * @rdev: RIO device
058f88d6 233 * @do_enum: Enumeration/Discovery mode flag
eb188d0e 234 *
058f88d6
AB
235 * Searches the RIO switch ops table for known switch types. If the vid
236 * and did match a switch table entry, then call switch initialization
237 * routine to setup switch-specific routines.
eb188d0e 238 */
058f88d6 239static void rio_switch_init(struct rio_dev *rdev, int do_enum)
eb188d0e 240{
058f88d6
AB
241 struct rio_switch_ops *cur = __start_rio_switch_ops;
242 struct rio_switch_ops *end = __end_rio_switch_ops;
eb188d0e
MP
243
244 while (cur < end) {
245 if ((cur->vid == rdev->vid) && (cur->did == rdev->did)) {
058f88d6
AB
246 pr_debug("RIO: calling init routine for %s\n",
247 rio_name(rdev));
248 cur->init_hook(rdev, do_enum);
07590ff0 249 break;
eb188d0e
MP
250 }
251 cur++;
252 }
253
07590ff0
AB
254 if ((cur >= end) && (rdev->pef & RIO_PEF_STD_RT)) {
255 pr_debug("RIO: adding STD routing ops for %s\n",
256 rio_name(rdev));
257 rdev->rswitch->add_entry = rio_std_route_add_entry;
258 rdev->rswitch->get_entry = rio_std_route_get_entry;
259 rdev->rswitch->clr_table = rio_std_route_clr_table;
260 }
261
eb188d0e
MP
262 if (!rdev->rswitch->add_entry || !rdev->rswitch->get_entry)
263 printk(KERN_ERR "RIO: missing routing ops for %s\n",
264 rio_name(rdev));
265}
266
267/**
268 * rio_add_device- Adds a RIO device to the device model
269 * @rdev: RIO device
270 *
271 * Adds the RIO device to the global device list and adds the RIO
272 * device to the RIO device list. Creates the generic sysfs nodes
273 * for an RIO device.
274 */
5f28c520 275static int __devinit rio_add_device(struct rio_dev *rdev)
eb188d0e 276{
5f28c520
YL
277 int err;
278
279 err = device_add(&rdev->dev);
280 if (err)
281 return err;
eb188d0e
MP
282
283 spin_lock(&rio_global_list_lock);
284 list_add_tail(&rdev->global_list, &rio_devices);
285 spin_unlock(&rio_global_list_lock);
286
287 rio_create_sysfs_dev_files(rdev);
5f28c520
YL
288
289 return 0;
eb188d0e
MP
290}
291
933af4a6 292/**
25985edc 293 * rio_enable_rx_tx_port - enable input receiver and output transmitter of
933af4a6
TM
294 * given port
295 * @port: Master port associated with the RIO network
296 * @local: local=1 select local port otherwise a far device is reached
297 * @destid: Destination ID of the device to check host bit
298 * @hopcount: Number of hops to reach the target
299 * @port_num: Port (-number on switch) to enable on a far end device
300 *
301 * Returns 0 or 1 from on General Control Command and Status Register
302 * (EXT_PTR+0x3C)
303 */
304inline int rio_enable_rx_tx_port(struct rio_mport *port,
305 int local, u16 destid,
306 u8 hopcount, u8 port_num) {
307#ifdef CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS
308 u32 regval;
309 u32 ext_ftr_ptr;
310
311 /*
312 * enable rx input tx output port
313 */
314 pr_debug("rio_enable_rx_tx_port(local = %d, destid = %d, hopcount = "
315 "%d, port_num = %d)\n", local, destid, hopcount, port_num);
316
317 ext_ftr_ptr = rio_mport_get_physefb(port, local, destid, hopcount);
318
319 if (local) {
320 rio_local_read_config_32(port, ext_ftr_ptr +
321 RIO_PORT_N_CTL_CSR(0),
322 &regval);
323 } else {
324 if (rio_mport_read_config_32(port, destid, hopcount,
325 ext_ftr_ptr + RIO_PORT_N_CTL_CSR(port_num), &regval) < 0)
326 return -EIO;
327 }
328
329 if (regval & RIO_PORT_N_CTL_P_TYP_SER) {
330 /* serial */
331 regval = regval | RIO_PORT_N_CTL_EN_RX_SER
332 | RIO_PORT_N_CTL_EN_TX_SER;
333 } else {
334 /* parallel */
335 regval = regval | RIO_PORT_N_CTL_EN_RX_PAR
336 | RIO_PORT_N_CTL_EN_TX_PAR;
337 }
338
339 if (local) {
340 rio_local_write_config_32(port, ext_ftr_ptr +
341 RIO_PORT_N_CTL_CSR(0), regval);
342 } else {
343 if (rio_mport_write_config_32(port, destid, hopcount,
344 ext_ftr_ptr + RIO_PORT_N_CTL_CSR(port_num), regval) < 0)
345 return -EIO;
346 }
347#endif
348 return 0;
349}
350
eb188d0e
MP
351/**
352 * rio_setup_device- Allocates and sets up a RIO device
353 * @net: RIO network
354 * @port: Master port to send transactions
355 * @destid: Current destination ID
356 * @hopcount: Current hopcount
357 * @do_enum: Enumeration/Discovery mode flag
358 *
359 * Allocates a RIO device and configures fields based on configuration
360 * space contents. If device has a destination ID register, a destination
361 * ID is either assigned in enumeration mode or read from configuration
362 * space in discovery mode. If the device has switch capabilities, then
363 * a switch is allocated and configured appropriately. Returns a pointer
364 * to a RIO device on success or NULL on failure.
365 *
366 */
181a6ff0 367static struct rio_dev __devinit *rio_setup_device(struct rio_net *net,
eb188d0e
MP
368 struct rio_mport *port, u16 destid,
369 u8 hopcount, int do_enum)
370{
5f28c520 371 int ret = 0;
eb188d0e 372 struct rio_dev *rdev;
5f28c520 373 struct rio_switch *rswitch = NULL;
eb188d0e 374 int result, rdid;
ded05782
AB
375 size_t size;
376 u32 swpinfo = 0;
eb188d0e 377
ded05782
AB
378 size = sizeof(struct rio_dev);
379 if (rio_mport_read_config_32(port, destid, hopcount,
380 RIO_PEF_CAR, &result))
381 return NULL;
382
383 if (result & (RIO_PEF_SWITCH | RIO_PEF_MULTIPORT)) {
384 rio_mport_read_config_32(port, destid, hopcount,
385 RIO_SWP_INFO_CAR, &swpinfo);
386 if (result & RIO_PEF_SWITCH) {
387 size += (RIO_GET_TOTAL_PORTS(swpinfo) *
388 sizeof(rswitch->nextdev[0])) + sizeof(*rswitch);
389 }
390 }
391
392 rdev = kzalloc(size, GFP_KERNEL);
eb188d0e 393 if (!rdev)
5f28c520 394 return NULL;
eb188d0e 395
eb188d0e 396 rdev->net = net;
ded05782
AB
397 rdev->pef = result;
398 rdev->swpinfo = swpinfo;
eb188d0e
MP
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;
e5cabeb3 412 if (rdev->pef & RIO_PEF_EXT_FEATURES) {
eb188d0e 413 rdev->efptr = result & 0xffff;
e5cabeb3
AB
414 rdev->phys_efptr = rio_mport_get_physefb(port, 0, destid,
415 hopcount);
416
417 rdev->em_efptr = rio_mport_get_feature(port, 0, destid,
418 hopcount, RIO_EFB_ERR_MGMNT);
419 }
eb188d0e
MP
420
421 rio_mport_read_config_32(port, destid, hopcount, RIO_SRC_OPS_CAR,
422 &rdev->src_ops);
423 rio_mport_read_config_32(port, destid, hopcount, RIO_DST_OPS_CAR,
424 &rdev->dst_ops);
425
af84ca38
AB
426 if (do_enum) {
427 /* Assign component tag to device */
428 if (next_comptag >= 0x10000) {
429 pr_err("RIO: Component Tag Counter Overflow\n");
430 goto cleanup;
431 }
432 rio_mport_write_config_32(port, destid, hopcount,
433 RIO_COMPONENT_TAG_CSR, next_comptag);
434 rdev->comp_tag = next_comptag++;
558bda65
AB
435 } else {
436 rio_mport_read_config_32(port, destid, hopcount,
437 RIO_COMPONENT_TAG_CSR,
438 &rdev->comp_tag);
af84ca38
AB
439 }
440
c70555b0
AB
441 if (rio_device_has_destid(port, rdev->src_ops, rdev->dst_ops)) {
442 if (do_enum) {
443 rio_set_device_id(port, destid, hopcount, next_destid);
444 rdev->destid = next_destid++;
445 if (next_destid == port->host_deviceid)
446 next_destid++;
447 } else
448 rdev->destid = rio_get_device_id(port, destid, hopcount);
a93192a5
AB
449
450 rdev->hopcount = 0xff;
451 } else {
452 /* Switch device has an associated destID which
453 * will be adjusted later
454 */
455 rdev->destid = destid;
456 rdev->hopcount = hopcount;
457 }
eb188d0e
MP
458
459 /* If a PE has both switch and other functions, show it as a switch */
460 if (rio_is_switch(rdev)) {
ded05782 461 rswitch = rdev->rswitch;
558bda65 462 rswitch->switchid = rdev->comp_tag & RIO_CTAG_UDEVID;
e5cabeb3 463 rswitch->port_ok = 0;
e0423236
ZW
464 rswitch->route_table = kzalloc(sizeof(u8)*
465 RIO_MAX_ROUTE_ENTRIES(port->sys_size),
466 GFP_KERNEL);
5f28c520
YL
467 if (!rswitch->route_table)
468 goto cleanup;
eb188d0e 469 /* Initialize switch route table */
e0423236
ZW
470 for (rdid = 0; rdid < RIO_MAX_ROUTE_ENTRIES(port->sys_size);
471 rdid++)
eb188d0e 472 rswitch->route_table[rdid] = RIO_INVALID_ROUTE;
b53c7583 473 dev_set_name(&rdev->dev, "%02x:s:%04x", rdev->net->id,
ded05782 474 rswitch->switchid);
058f88d6 475 rio_switch_init(rdev, do_enum);
eb188d0e 476
ded05782
AB
477 if (do_enum && rswitch->clr_table)
478 rswitch->clr_table(port, destid, hopcount,
479 RIO_GLOBAL_TABLE);
07590ff0 480
a7071efc 481 list_add_tail(&rswitch->node, &net->switches);
eb188d0e 482
933af4a6
TM
483 } else {
484 if (do_enum)
485 /*Enable Input Output Port (transmitter reviever)*/
486 rio_enable_rx_tx_port(port, 0, destid, hopcount, 0);
487
b53c7583
KS
488 dev_set_name(&rdev->dev, "%02x:e:%04x", rdev->net->id,
489 rdev->destid);
933af4a6 490 }
eb188d0e
MP
491
492 rdev->dev.bus = &rio_bus_type;
2c70f022 493 rdev->dev.parent = &rio_bus;
eb188d0e
MP
494
495 device_initialize(&rdev->dev);
496 rdev->dev.release = rio_release_dev;
497 rio_dev_get(rdev);
498
284901a9 499 rdev->dma_mask = DMA_BIT_MASK(32);
fa78cc51 500 rdev->dev.dma_mask = &rdev->dma_mask;
284901a9 501 rdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
eb188d0e 502
284fb68d 503 if (rdev->dst_ops & RIO_DST_OPS_DOORBELL)
eb188d0e
MP
504 rio_init_dbell_res(&rdev->riores[RIO_DOORBELL_RESOURCE],
505 0, 0xffff);
506
5f28c520
YL
507 ret = rio_add_device(rdev);
508 if (ret)
509 goto cleanup;
eb188d0e 510
eb188d0e 511 return rdev;
5f28c520
YL
512
513cleanup:
166c050b 514 if (rswitch)
5f28c520 515 kfree(rswitch->route_table);
ded05782 516
5f28c520
YL
517 kfree(rdev);
518 return NULL;
eb188d0e
MP
519}
520
521/**
522 * rio_sport_is_active- Tests if a switch port has an active connection.
523 * @port: Master port to send transaction
524 * @destid: Associated destination ID for switch
525 * @hopcount: Hopcount to reach switch
526 * @sport: Switch port number
527 *
528 * Reads the port error status CSR for a particular switch port to
529 * determine if the port has an active link. Returns
e5cabeb3 530 * %RIO_PORT_N_ERR_STS_PORT_OK if the port is active or %0 if it is
eb188d0e
MP
531 * inactive.
532 */
533static int
534rio_sport_is_active(struct rio_mport *port, u16 destid, u8 hopcount, int sport)
535{
e5cabeb3 536 u32 result = 0;
eb188d0e
MP
537 u32 ext_ftr_ptr;
538
e5cabeb3 539 ext_ftr_ptr = rio_mport_get_efb(port, 0, destid, hopcount, 0);
eb188d0e 540
e5cabeb3
AB
541 while (ext_ftr_ptr) {
542 rio_mport_read_config_32(port, destid, hopcount,
543 ext_ftr_ptr, &result);
544 result = RIO_GET_BLOCK_ID(result);
545 if ((result == RIO_EFB_SER_EP_FREE_ID) ||
546 (result == RIO_EFB_SER_EP_FREE_ID_V13P) ||
547 (result == RIO_EFB_SER_EP_FREC_ID))
eb188d0e 548 break;
e5cabeb3
AB
549
550 ext_ftr_ptr = rio_mport_get_efb(port, 0, destid, hopcount,
551 ext_ftr_ptr);
552 }
eb188d0e
MP
553
554 if (ext_ftr_ptr)
555 rio_mport_read_config_32(port, destid, hopcount,
556 ext_ftr_ptr +
557 RIO_PORT_N_ERR_STS_CSR(sport),
558 &result);
559
e5cabeb3 560 return result & RIO_PORT_N_ERR_STS_PORT_OK;
eb188d0e
MP
561}
562
818a04a0
AB
563/**
564 * rio_lock_device - Acquires host device lock for specified device
565 * @port: Master port to send transaction
566 * @destid: Destination ID for device/switch
567 * @hopcount: Hopcount to reach switch
568 * @wait_ms: Max wait time in msec (0 = no timeout)
569 *
570 * Attepts to acquire host device lock for specified device
571 * Returns 0 if device lock acquired or EINVAL if timeout expires.
572 */
573static int
574rio_lock_device(struct rio_mport *port, u16 destid, u8 hopcount, int wait_ms)
575{
576 u32 result;
577 int tcnt = 0;
578
579 /* Attempt to acquire device lock */
580 rio_mport_write_config_32(port, destid, hopcount,
581 RIO_HOST_DID_LOCK_CSR, port->host_deviceid);
582 rio_mport_read_config_32(port, destid, hopcount,
583 RIO_HOST_DID_LOCK_CSR, &result);
584
585 while (result != port->host_deviceid) {
586 if (wait_ms != 0 && tcnt == wait_ms) {
587 pr_debug("RIO: timeout when locking device %x:%x\n",
588 destid, hopcount);
589 return -EINVAL;
590 }
591
592 /* Delay a bit */
593 mdelay(1);
594 tcnt++;
595 /* Try to acquire device lock again */
596 rio_mport_write_config_32(port, destid,
597 hopcount,
598 RIO_HOST_DID_LOCK_CSR,
599 port->host_deviceid);
600 rio_mport_read_config_32(port, destid,
601 hopcount,
602 RIO_HOST_DID_LOCK_CSR, &result);
603 }
604
605 return 0;
606}
607
608/**
609 * rio_unlock_device - Releases host device lock for specified device
610 * @port: Master port to send transaction
611 * @destid: Destination ID for device/switch
612 * @hopcount: Hopcount to reach switch
613 *
614 * Returns 0 if device lock released or EINVAL if fails.
615 */
616static int
617rio_unlock_device(struct rio_mport *port, u16 destid, u8 hopcount)
618{
619 u32 result;
620
621 /* Release device lock */
622 rio_mport_write_config_32(port, destid,
623 hopcount,
624 RIO_HOST_DID_LOCK_CSR,
625 port->host_deviceid);
626 rio_mport_read_config_32(port, destid, hopcount,
627 RIO_HOST_DID_LOCK_CSR, &result);
628 if ((result & 0xffff) != 0xffff) {
629 pr_debug("RIO: badness when releasing device lock %x:%x\n",
630 destid, hopcount);
631 return -EINVAL;
632 }
633
634 return 0;
635}
636
eb188d0e
MP
637/**
638 * rio_route_add_entry- Add a route entry to a switch routing table
a93192a5 639 * @rdev: RIO device
eb188d0e
MP
640 * @table: Routing table ID
641 * @route_destid: Destination ID to be routed
642 * @route_port: Port number to be routed
818a04a0 643 * @lock: lock switch device flag
eb188d0e
MP
644 *
645 * Calls the switch specific add_entry() method to add a route entry
646 * on a switch. The route table can be specified using the @table
647 * argument if a switch has per port routing tables or the normal
648 * use is to specific all tables (or the global table) by passing
649 * %RIO_GLOBAL_TABLE in @table. Returns %0 on success or %-EINVAL
650 * on failure.
651 */
818a04a0 652static int
a93192a5 653rio_route_add_entry(struct rio_dev *rdev,
818a04a0 654 u16 table, u16 route_destid, u8 route_port, int lock)
eb188d0e 655{
818a04a0
AB
656 int rc;
657
658 if (lock) {
a93192a5
AB
659 rc = rio_lock_device(rdev->net->hport, rdev->destid,
660 rdev->hopcount, 1000);
818a04a0
AB
661 if (rc)
662 return rc;
663 }
664
a93192a5
AB
665 rc = rdev->rswitch->add_entry(rdev->net->hport, rdev->destid,
666 rdev->hopcount, table,
667 route_destid, route_port);
818a04a0 668 if (lock)
a93192a5
AB
669 rio_unlock_device(rdev->net->hport, rdev->destid,
670 rdev->hopcount);
818a04a0
AB
671
672 return rc;
eb188d0e
MP
673}
674
675/**
676 * rio_route_get_entry- Read a route entry in a switch routing table
a93192a5 677 * @rdev: RIO device
eb188d0e
MP
678 * @table: Routing table ID
679 * @route_destid: Destination ID to be routed
680 * @route_port: Pointer to read port number into
818a04a0 681 * @lock: lock switch device flag
eb188d0e
MP
682 *
683 * Calls the switch specific get_entry() method to read a route entry
684 * in a switch. The route table can be specified using the @table
685 * argument if a switch has per port routing tables or the normal
686 * use is to specific all tables (or the global table) by passing
687 * %RIO_GLOBAL_TABLE in @table. Returns %0 on success or %-EINVAL
688 * on failure.
689 */
690static int
a93192a5 691rio_route_get_entry(struct rio_dev *rdev, u16 table,
818a04a0 692 u16 route_destid, u8 *route_port, int lock)
eb188d0e 693{
818a04a0
AB
694 int rc;
695
696 if (lock) {
a93192a5
AB
697 rc = rio_lock_device(rdev->net->hport, rdev->destid,
698 rdev->hopcount, 1000);
818a04a0
AB
699 if (rc)
700 return rc;
701 }
702
a93192a5
AB
703 rc = rdev->rswitch->get_entry(rdev->net->hport, rdev->destid,
704 rdev->hopcount, table,
705 route_destid, route_port);
818a04a0 706 if (lock)
a93192a5
AB
707 rio_unlock_device(rdev->net->hport, rdev->destid,
708 rdev->hopcount);
818a04a0
AB
709
710 return rc;
eb188d0e
MP
711}
712
713/**
714 * rio_get_host_deviceid_lock- Reads the Host Device ID Lock CSR on a device
715 * @port: Master port to send transaction
716 * @hopcount: Number of hops to the device
717 *
718 * Used during enumeration to read the Host Device ID Lock CSR on a
719 * RIO device. Returns the value of the lock register.
720 */
721static u16 rio_get_host_deviceid_lock(struct rio_mport *port, u8 hopcount)
722{
723 u32 result;
724
e0423236 725 rio_mport_read_config_32(port, RIO_ANY_DESTID(port->sys_size), hopcount,
eb188d0e
MP
726 RIO_HOST_DID_LOCK_CSR, &result);
727
728 return (u16) (result & 0xffff);
729}
730
eb188d0e
MP
731/**
732 * rio_enum_peer- Recursively enumerate a RIO network through a master port
733 * @net: RIO network being enumerated
734 * @port: Master port to send transactions
735 * @hopcount: Number of hops into the network
68fe4df5
AB
736 * @prev: Previous RIO device connected to the enumerated one
737 * @prev_port: Port on previous RIO device
eb188d0e
MP
738 *
739 * Recursively enumerates a RIO network. Transactions are sent via the
740 * master port passed in @port.
741 */
181a6ff0 742static int __devinit rio_enum_peer(struct rio_net *net, struct rio_mport *port,
68fe4df5 743 u8 hopcount, struct rio_dev *prev, int prev_port)
eb188d0e
MP
744{
745 int port_num;
eb188d0e 746 int cur_destid;
c70555b0
AB
747 int sw_destid;
748 int sw_inport;
eb188d0e
MP
749 struct rio_dev *rdev;
750 u16 destid;
af84ca38 751 u32 regval;
eb188d0e
MP
752 int tmp;
753
e274e0ed
AB
754 if (rio_mport_chk_dev_access(port,
755 RIO_ANY_DESTID(port->sys_size), hopcount)) {
756 pr_debug("RIO: device access check failed\n");
757 return -1;
758 }
759
eb188d0e
MP
760 if (rio_get_host_deviceid_lock(port, hopcount) == port->host_deviceid) {
761 pr_debug("RIO: PE already discovered by this host\n");
762 /*
763 * Already discovered by this host. Add it as another
af84ca38 764 * link to the existing device.
eb188d0e 765 */
af84ca38
AB
766 rio_mport_read_config_32(port, RIO_ANY_DESTID(port->sys_size),
767 hopcount, RIO_COMPONENT_TAG_CSR, &regval);
768
769 if (regval) {
770 rdev = rio_get_comptag((regval & 0xffff), NULL);
771
772 if (rdev && prev && rio_is_switch(prev)) {
773 pr_debug("RIO: redundant path to %s\n",
774 rio_name(rdev));
775 prev->rswitch->nextdev[prev_port] = rdev;
776 }
777 }
778
eb188d0e
MP
779 return 0;
780 }
781
782 /* Attempt to acquire device lock */
e0423236
ZW
783 rio_mport_write_config_32(port, RIO_ANY_DESTID(port->sys_size),
784 hopcount,
eb188d0e
MP
785 RIO_HOST_DID_LOCK_CSR, port->host_deviceid);
786 while ((tmp = rio_get_host_deviceid_lock(port, hopcount))
787 < port->host_deviceid) {
788 /* Delay a bit */
789 mdelay(1);
790 /* Attempt to acquire device lock again */
e0423236
ZW
791 rio_mport_write_config_32(port, RIO_ANY_DESTID(port->sys_size),
792 hopcount,
eb188d0e
MP
793 RIO_HOST_DID_LOCK_CSR,
794 port->host_deviceid);
795 }
796
797 if (rio_get_host_deviceid_lock(port, hopcount) > port->host_deviceid) {
798 pr_debug(
799 "RIO: PE locked by a higher priority host...retreating\n");
800 return -1;
801 }
802
803 /* Setup new RIO device */
e0423236
ZW
804 rdev = rio_setup_device(net, port, RIO_ANY_DESTID(port->sys_size),
805 hopcount, 1);
806 if (rdev) {
eb188d0e
MP
807 /* Add device to the global and bus/net specific list. */
808 list_add_tail(&rdev->net_list, &net->devices);
68fe4df5
AB
809 rdev->prev = prev;
810 if (prev && rio_is_switch(prev))
811 prev->rswitch->nextdev[prev_port] = rdev;
eb188d0e
MP
812 } else
813 return -1;
814
815 if (rio_is_switch(rdev)) {
ae05cbd5 816 sw_inport = RIO_GET_PORT_NUM(rdev->swpinfo);
a93192a5 817 rio_route_add_entry(rdev, RIO_GLOBAL_TABLE,
818a04a0 818 port->host_deviceid, sw_inport, 0);
c70555b0 819 rdev->rswitch->route_table[port->host_deviceid] = sw_inport;
eb188d0e
MP
820
821 for (destid = 0; destid < next_destid; destid++) {
c70555b0
AB
822 if (destid == port->host_deviceid)
823 continue;
a93192a5 824 rio_route_add_entry(rdev, RIO_GLOBAL_TABLE,
818a04a0 825 destid, sw_inport, 0);
c70555b0 826 rdev->rswitch->route_table[destid] = sw_inport;
eb188d0e
MP
827 }
828
eb188d0e
MP
829 pr_debug(
830 "RIO: found %s (vid %4.4x did %4.4x) with %d ports\n",
68fe4df5
AB
831 rio_name(rdev), rdev->vid, rdev->did,
832 RIO_GET_TOTAL_PORTS(rdev->swpinfo));
c70555b0 833 sw_destid = next_destid;
68fe4df5
AB
834 for (port_num = 0;
835 port_num < RIO_GET_TOTAL_PORTS(rdev->swpinfo);
836 port_num++) {
8d4630dc
AB
837 if (sw_inport == port_num) {
838 rio_enable_rx_tx_port(port, 0,
933af4a6
TM
839 RIO_ANY_DESTID(port->sys_size),
840 hopcount, port_num);
e5cabeb3 841 rdev->rswitch->port_ok |= (1 << port_num);
eb188d0e 842 continue;
e5cabeb3 843 }
eb188d0e
MP
844
845 cur_destid = next_destid;
846
847 if (rio_sport_is_active
e0423236
ZW
848 (port, RIO_ANY_DESTID(port->sys_size), hopcount,
849 port_num)) {
eb188d0e
MP
850 pr_debug(
851 "RIO: scanning device on port %d\n",
852 port_num);
8d4630dc
AB
853 rio_enable_rx_tx_port(port, 0,
854 RIO_ANY_DESTID(port->sys_size),
855 hopcount, port_num);
e5cabeb3 856 rdev->rswitch->port_ok |= (1 << port_num);
a93192a5 857 rio_route_add_entry(rdev, RIO_GLOBAL_TABLE,
e0423236 858 RIO_ANY_DESTID(port->sys_size),
818a04a0 859 port_num, 0);
eb188d0e 860
68fe4df5
AB
861 if (rio_enum_peer(net, port, hopcount + 1,
862 rdev, port_num) < 0)
eb188d0e
MP
863 return -1;
864
865 /* Update routing tables */
866 if (next_destid > cur_destid) {
867 for (destid = cur_destid;
868 destid < next_destid; destid++) {
c70555b0
AB
869 if (destid == port->host_deviceid)
870 continue;
a93192a5 871 rio_route_add_entry(rdev,
eb188d0e
MP
872 RIO_GLOBAL_TABLE,
873 destid,
818a04a0
AB
874 port_num,
875 0);
eb188d0e
MP
876 rdev->rswitch->
877 route_table[destid] =
878 port_num;
879 }
eb188d0e 880 }
e5cabeb3
AB
881 } else {
882 /* If switch supports Error Management,
883 * set PORT_LOCKOUT bit for unused port
884 */
885 if (rdev->em_efptr)
886 rio_set_port_lockout(rdev, port_num, 1);
887
888 rdev->rswitch->port_ok &= ~(1 << port_num);
eb188d0e
MP
889 }
890 }
c70555b0 891
e5cabeb3
AB
892 /* Direct Port-write messages to the enumeratiing host */
893 if ((rdev->src_ops & RIO_SRC_OPS_PORT_WRITE) &&
894 (rdev->em_efptr)) {
895 rio_write_config_32(rdev,
896 rdev->em_efptr + RIO_EM_PW_TGT_DEVID,
897 (port->host_deviceid << 16) |
898 (port->sys_size << 15));
899 }
900
901 rio_init_em(rdev);
902
c70555b0
AB
903 /* Check for empty switch */
904 if (next_destid == sw_destid) {
905 next_destid++;
906 if (next_destid == port->host_deviceid)
907 next_destid++;
908 }
909
a93192a5 910 rdev->destid = sw_destid;
eb188d0e
MP
911 } else
912 pr_debug("RIO: found %s (vid %4.4x did %4.4x)\n",
913 rio_name(rdev), rdev->vid, rdev->did);
914
915 return 0;
916}
917
918/**
919 * rio_enum_complete- Tests if enumeration of a network is complete
920 * @port: Master port to send transaction
921 *
a571259f 922 * Tests the PGCCSR discovered bit for non-zero value (enumeration
e5cabeb3 923 * complete flag). Return %1 if enumeration is complete or %0 if
eb188d0e
MP
924 * enumeration is incomplete.
925 */
926static int rio_enum_complete(struct rio_mport *port)
927{
af84ca38 928 u32 regval;
eb188d0e 929
af84ca38
AB
930 rio_local_read_config_32(port, port->phys_efptr + RIO_PORT_GEN_CTL_CSR,
931 &regval);
a571259f 932 return (regval & RIO_PORT_GEN_DISCOVERED) ? 1 : 0;
eb188d0e
MP
933}
934
935/**
936 * rio_disc_peer- Recursively discovers a RIO network through a master port
937 * @net: RIO network being discovered
938 * @port: Master port to send transactions
939 * @destid: Current destination ID in network
940 * @hopcount: Number of hops into the network
9b310acc
RD
941 * @prev: previous rio_dev
942 * @prev_port: previous port number
eb188d0e
MP
943 *
944 * Recursively discovers a RIO network. Transactions are sent via the
945 * master port passed in @port.
946 */
181a6ff0 947static int __devinit
eb188d0e 948rio_disc_peer(struct rio_net *net, struct rio_mport *port, u16 destid,
17e96205 949 u8 hopcount, struct rio_dev *prev, int prev_port)
eb188d0e
MP
950{
951 u8 port_num, route_port;
eb188d0e
MP
952 struct rio_dev *rdev;
953 u16 ndestid;
954
955 /* Setup new RIO device */
956 if ((rdev = rio_setup_device(net, port, destid, hopcount, 0))) {
957 /* Add device to the global and bus/net specific list. */
958 list_add_tail(&rdev->net_list, &net->devices);
17e96205
AB
959 rdev->prev = prev;
960 if (prev && rio_is_switch(prev))
961 prev->rswitch->nextdev[prev_port] = rdev;
eb188d0e
MP
962 } else
963 return -1;
964
965 if (rio_is_switch(rdev)) {
eb188d0e 966 /* Associated destid is how we accessed this switch */
a93192a5 967 rdev->destid = destid;
eb188d0e 968
eb188d0e
MP
969 pr_debug(
970 "RIO: found %s (vid %4.4x did %4.4x) with %d ports\n",
68fe4df5
AB
971 rio_name(rdev), rdev->vid, rdev->did,
972 RIO_GET_TOTAL_PORTS(rdev->swpinfo));
973 for (port_num = 0;
974 port_num < RIO_GET_TOTAL_PORTS(rdev->swpinfo);
975 port_num++) {
ae05cbd5 976 if (RIO_GET_PORT_NUM(rdev->swpinfo) == port_num)
eb188d0e
MP
977 continue;
978
979 if (rio_sport_is_active
980 (port, destid, hopcount, port_num)) {
981 pr_debug(
982 "RIO: scanning device on port %d\n",
983 port_num);
818a04a0
AB
984
985 rio_lock_device(port, destid, hopcount, 1000);
986
e0423236
ZW
987 for (ndestid = 0;
988 ndestid < RIO_ANY_DESTID(port->sys_size);
eb188d0e 989 ndestid++) {
a93192a5 990 rio_route_get_entry(rdev,
eb188d0e
MP
991 RIO_GLOBAL_TABLE,
992 ndestid,
818a04a0 993 &route_port, 0);
eb188d0e
MP
994 if (route_port == port_num)
995 break;
996 }
997
af84ca38
AB
998 if (ndestid == RIO_ANY_DESTID(port->sys_size))
999 continue;
818a04a0 1000 rio_unlock_device(port, destid, hopcount);
17e96205
AB
1001 if (rio_disc_peer(net, port, ndestid,
1002 hopcount + 1, rdev, port_num) < 0)
eb188d0e
MP
1003 return -1;
1004 }
1005 }
1006 } else
1007 pr_debug("RIO: found %s (vid %4.4x did %4.4x)\n",
1008 rio_name(rdev), rdev->vid, rdev->did);
1009
1010 return 0;
1011}
1012
1013/**
1014 * rio_mport_is_active- Tests if master port link is active
1015 * @port: Master port to test
1016 *
1017 * Reads the port error status CSR for the master port to
1018 * determine if the port has an active link. Returns
e5cabeb3 1019 * %RIO_PORT_N_ERR_STS_PORT_OK if the master port is active
eb188d0e
MP
1020 * or %0 if it is inactive.
1021 */
1022static int rio_mport_is_active(struct rio_mport *port)
1023{
1024 u32 result = 0;
1025 u32 ext_ftr_ptr;
1026 int *entry = rio_mport_phys_table;
1027
1028 do {
1029 if ((ext_ftr_ptr =
1030 rio_mport_get_feature(port, 1, 0, 0, *entry)))
1031 break;
1032 } while (*++entry >= 0);
1033
1034 if (ext_ftr_ptr)
1035 rio_local_read_config_32(port,
1036 ext_ftr_ptr +
1037 RIO_PORT_N_ERR_STS_CSR(port->index),
1038 &result);
1039
e5cabeb3 1040 return result & RIO_PORT_N_ERR_STS_PORT_OK;
eb188d0e
MP
1041}
1042
1043/**
1044 * rio_alloc_net- Allocate and configure a new RIO network
1045 * @port: Master port associated with the RIO network
1046 *
1047 * Allocates a RIO network structure, initializes per-network
1048 * list heads, and adds the associated master port to the
1049 * network list of associated master ports. Returns a
1050 * RIO network pointer on success or %NULL on failure.
1051 */
1052static struct rio_net __devinit *rio_alloc_net(struct rio_mport *port)
1053{
1054 struct rio_net *net;
1055
dd00cc48 1056 net = kzalloc(sizeof(struct rio_net), GFP_KERNEL);
eb188d0e 1057 if (net) {
eb188d0e
MP
1058 INIT_LIST_HEAD(&net->node);
1059 INIT_LIST_HEAD(&net->devices);
a7071efc 1060 INIT_LIST_HEAD(&net->switches);
eb188d0e
MP
1061 INIT_LIST_HEAD(&net->mports);
1062 list_add_tail(&port->nnode, &net->mports);
1063 net->hport = port;
005842ef 1064 net->id = port->id;
eb188d0e
MP
1065 }
1066 return net;
1067}
1068
c70555b0
AB
1069/**
1070 * rio_update_route_tables- Updates route tables in switches
a7071efc 1071 * @net: RIO network to run update on
c70555b0
AB
1072 *
1073 * For each enumerated device, ensure that each switch in a system
1074 * has correct routing entries. Add routes for devices that where
1075 * unknown dirung the first enumeration pass through the switch.
1076 */
a7071efc 1077static void rio_update_route_tables(struct rio_net *net)
c70555b0 1078{
ded05782 1079 struct rio_dev *rdev, *swrdev;
c70555b0
AB
1080 struct rio_switch *rswitch;
1081 u8 sport;
1082 u16 destid;
1083
a7071efc 1084 list_for_each_entry(rdev, &net->devices, net_list) {
c70555b0 1085
a93192a5 1086 destid = rdev->destid;
c70555b0 1087
a7071efc 1088 list_for_each_entry(rswitch, &net->switches, node) {
c70555b0
AB
1089
1090 if (rio_is_switch(rdev) && (rdev->rswitch == rswitch))
1091 continue;
1092
1093 if (RIO_INVALID_ROUTE == rswitch->route_table[destid]) {
ded05782
AB
1094 swrdev = sw_to_rio_dev(rswitch);
1095
07590ff0 1096 /* Skip if destid ends in empty switch*/
ded05782 1097 if (swrdev->destid == destid)
07590ff0 1098 continue;
c70555b0 1099
ded05782 1100 sport = RIO_GET_PORT_NUM(swrdev->swpinfo);
c70555b0
AB
1101
1102 if (rswitch->add_entry) {
ded05782 1103 rio_route_add_entry(swrdev,
818a04a0
AB
1104 RIO_GLOBAL_TABLE, destid,
1105 sport, 0);
c70555b0
AB
1106 rswitch->route_table[destid] = sport;
1107 }
1108 }
1109 }
1110 }
1111}
1112
e5cabeb3
AB
1113/**
1114 * rio_init_em - Initializes RIO Error Management (for switches)
97ef6f74 1115 * @rdev: RIO device
e5cabeb3
AB
1116 *
1117 * For each enumerated switch, call device-specific error management
1118 * initialization routine (if supplied by the switch driver).
1119 */
1120static void rio_init_em(struct rio_dev *rdev)
1121{
1122 if (rio_is_switch(rdev) && (rdev->em_efptr) &&
1123 (rdev->rswitch->em_init)) {
1124 rdev->rswitch->em_init(rdev);
1125 }
1126}
1127
1128/**
1129 * rio_pw_enable - Enables/disables port-write handling by a master port
1130 * @port: Master port associated with port-write handling
1131 * @enable: 1=enable, 0=disable
1132 */
1133static void rio_pw_enable(struct rio_mport *port, int enable)
1134{
1135 if (port->ops->pwenable)
1136 port->ops->pwenable(port, enable);
1137}
1138
eb188d0e
MP
1139/**
1140 * rio_enum_mport- Start enumeration through a master port
1141 * @mport: Master port to send transactions
1142 *
1143 * Starts the enumeration process. If somebody has enumerated our
1144 * master port device, then give up. If not and we have an active
1145 * link, then start recursive peer enumeration. Returns %0 if
1146 * enumeration succeeds or %-EBUSY if enumeration fails.
1147 */
37d33d15 1148int __devinit rio_enum_mport(struct rio_mport *mport)
eb188d0e
MP
1149{
1150 struct rio_net *net = NULL;
1151 int rc = 0;
1152
1153 printk(KERN_INFO "RIO: enumerate master port %d, %s\n", mport->id,
1154 mport->name);
1155 /* If somebody else enumerated our master port device, bail. */
1156 if (rio_enum_host(mport) < 0) {
1157 printk(KERN_INFO
1158 "RIO: master port %d device has been enumerated by a remote host\n",
1159 mport->id);
1160 rc = -EBUSY;
1161 goto out;
1162 }
1163
1164 /* If master port has an active link, allocate net and enum peers */
1165 if (rio_mport_is_active(mport)) {
1166 if (!(net = rio_alloc_net(mport))) {
1167 printk(KERN_ERR "RIO: failed to allocate new net\n");
1168 rc = -ENOMEM;
1169 goto out;
1170 }
933af4a6
TM
1171
1172 /* Enable Input Output Port (transmitter reviever) */
1173 rio_enable_rx_tx_port(mport, 1, 0, 0, 0);
1174
af84ca38
AB
1175 /* Set component tag for host */
1176 rio_local_write_config_32(mport, RIO_COMPONENT_TAG_CSR,
1177 next_comptag++);
1178
68fe4df5 1179 if (rio_enum_peer(net, mport, 0, NULL, 0) < 0) {
eb188d0e
MP
1180 /* A higher priority host won enumeration, bail. */
1181 printk(KERN_INFO
1182 "RIO: master port %d device has lost enumeration to a remote host\n",
1183 mport->id);
a7071efc 1184 rio_clear_locks(net);
eb188d0e
MP
1185 rc = -EBUSY;
1186 goto out;
1187 }
a7071efc
AB
1188 rio_update_route_tables(net);
1189 rio_clear_locks(net);
e5cabeb3 1190 rio_pw_enable(mport, 1);
eb188d0e
MP
1191 } else {
1192 printk(KERN_INFO "RIO: master port %d link inactive\n",
1193 mport->id);
1194 rc = -EINVAL;
1195 }
1196
1197 out:
1198 return rc;
1199}
1200
1201/**
1202 * rio_build_route_tables- Generate route tables from switch route entries
a7071efc 1203 * @net: RIO network to run route tables scan on
eb188d0e
MP
1204 *
1205 * For each switch device, generate a route table by copying existing
1206 * route entries from the switch.
1207 */
a7071efc 1208static void rio_build_route_tables(struct rio_net *net)
eb188d0e 1209{
a7071efc 1210 struct rio_switch *rswitch;
eb188d0e
MP
1211 struct rio_dev *rdev;
1212 int i;
1213 u8 sport;
1214
a7071efc
AB
1215 list_for_each_entry(rswitch, &net->switches, node) {
1216 rdev = sw_to_rio_dev(rswitch);
818a04a0 1217
a7071efc
AB
1218 rio_lock_device(net->hport, rdev->destid,
1219 rdev->hopcount, 1000);
1220 for (i = 0;
1221 i < RIO_MAX_ROUTE_ENTRIES(net->hport->sys_size);
1222 i++) {
1223 if (rio_route_get_entry(rdev, RIO_GLOBAL_TABLE,
1224 i, &sport, 0) < 0)
1225 continue;
1226 rswitch->route_table[i] = sport;
eb188d0e 1227 }
a7071efc
AB
1228
1229 rio_unlock_device(net->hport, rdev->destid, rdev->hopcount);
1230 }
eb188d0e
MP
1231}
1232
eb188d0e
MP
1233/**
1234 * rio_disc_mport- Start discovery through a master port
1235 * @mport: Master port to send transactions
1236 *
1237 * Starts the discovery process. If we have an active link,
1238 * then wait for the signal that enumeration is complete.
1239 * When enumeration completion is signaled, start recursive
1240 * peer discovery. Returns %0 if discovery succeeds or %-EBUSY
1241 * on failure.
1242 */
37d33d15 1243int __devinit rio_disc_mport(struct rio_mport *mport)
eb188d0e
MP
1244{
1245 struct rio_net *net = NULL;
fa3dbaa0 1246 unsigned long to_end;
eb188d0e
MP
1247
1248 printk(KERN_INFO "RIO: discover master port %d, %s\n", mport->id,
1249 mport->name);
1250
1251 /* If master port has an active link, allocate net and discover peers */
1252 if (rio_mport_is_active(mport)) {
fa3dbaa0 1253 pr_debug("RIO: wait for enumeration to complete...\n");
eb188d0e 1254
fa3dbaa0
AB
1255 to_end = jiffies + CONFIG_RAPIDIO_DISC_TIMEOUT * HZ;
1256 while (time_before(jiffies, to_end)) {
1257 if (rio_enum_complete(mport))
1258 goto enum_done;
1259 schedule_timeout_uninterruptible(msecs_to_jiffies(10));
eb188d0e 1260 }
eb188d0e 1261
fa3dbaa0
AB
1262 pr_debug("RIO: discovery timeout on mport %d %s\n",
1263 mport->id, mport->name);
1264 goto bail;
1265enum_done:
1266 pr_debug("RIO: ... enumeration done\n");
1267
1268 net = rio_alloc_net(mport);
1269 if (!net) {
1270 printk(KERN_ERR "RIO: Failed to allocate new net\n");
1271 goto bail;
1272 }
818a04a0
AB
1273
1274 /* Read DestID assigned by enumerator */
1275 rio_local_read_config_32(mport, RIO_DID_CSR,
1276 &mport->host_deviceid);
1277 mport->host_deviceid = RIO_GET_DID(mport->sys_size,
1278 mport->host_deviceid);
1279
e0423236 1280 if (rio_disc_peer(net, mport, RIO_ANY_DESTID(mport->sys_size),
17e96205 1281 0, NULL, 0) < 0) {
eb188d0e
MP
1282 printk(KERN_INFO
1283 "RIO: master port %d device has failed discovery\n",
1284 mport->id);
1285 goto bail;
1286 }
1287
a7071efc 1288 rio_build_route_tables(net);
eb188d0e
MP
1289 }
1290
1291 return 0;
fa3dbaa0 1292bail:
eb188d0e
MP
1293 return -EBUSY;
1294}