diff options
-rw-r--r-- | arch/powerpc/sysdev/fsl_rio.c | 6 | ||||
-rw-r--r-- | drivers/net/rionet.c | 16 | ||||
-rw-r--r-- | drivers/rapidio/Kconfig | 8 | ||||
-rw-r--r-- | drivers/rapidio/rio-scan.c | 55 | ||||
-rw-r--r-- | drivers/rapidio/rio-sysfs.c | 3 | ||||
-rw-r--r-- | drivers/rapidio/rio.c | 2 | ||||
-rw-r--r-- | drivers/rapidio/rio.h | 9 | ||||
-rw-r--r-- | include/linux/rio.h | 14 |
8 files changed, 71 insertions, 42 deletions
diff --git a/arch/powerpc/sysdev/fsl_rio.c b/arch/powerpc/sysdev/fsl_rio.c index d2d14708e714..14c106cf4aa2 100644 --- a/arch/powerpc/sysdev/fsl_rio.c +++ b/arch/powerpc/sysdev/fsl_rio.c | |||
@@ -1007,6 +1007,12 @@ int fsl_rio_setup(struct of_device *dev) | |||
1007 | rio_register_mport(port); | 1007 | rio_register_mport(port); |
1008 | 1008 | ||
1009 | priv->regs_win = ioremap(regs.start, regs.end - regs.start + 1); | 1009 | priv->regs_win = ioremap(regs.start, regs.end - regs.start + 1); |
1010 | |||
1011 | port->sys_size = (in_be32((priv->regs_win + RIO_PEF_CAR)) | ||
1012 | & RIO_PEF_CTLS) >> 4; | ||
1013 | dev_info(&dev->dev, "RapidIO Common Transport System size: %d\n", | ||
1014 | port->sys_size ? 65536 : 256); | ||
1015 | |||
1010 | priv->atmu_regs = (struct rio_atmu_regs *)(priv->regs_win | 1016 | priv->atmu_regs = (struct rio_atmu_regs *)(priv->regs_win |
1011 | + RIO_ATMU_REGS_OFFSET); | 1017 | + RIO_ATMU_REGS_OFFSET); |
1012 | priv->maint_atmu_regs = priv->atmu_regs + 1; | 1018 | priv->maint_atmu_regs = priv->atmu_regs + 1; |
diff --git a/drivers/net/rionet.c b/drivers/net/rionet.c index e7fd08adbbac..2b8fd68bc516 100644 --- a/drivers/net/rionet.c +++ b/drivers/net/rionet.c | |||
@@ -77,7 +77,7 @@ static int rionet_capable = 1; | |||
77 | * could be made into a hash table to save memory depending | 77 | * could be made into a hash table to save memory depending |
78 | * on system trade-offs. | 78 | * on system trade-offs. |
79 | */ | 79 | */ |
80 | static struct rio_dev *rionet_active[RIO_MAX_ROUTE_ENTRIES]; | 80 | static struct rio_dev **rionet_active; |
81 | 81 | ||
82 | #define is_rionet_capable(pef, src_ops, dst_ops) \ | 82 | #define is_rionet_capable(pef, src_ops, dst_ops) \ |
83 | ((pef & RIO_PEF_INB_MBOX) && \ | 83 | ((pef & RIO_PEF_INB_MBOX) && \ |
@@ -195,7 +195,8 @@ static int rionet_start_xmit(struct sk_buff *skb, struct net_device *ndev) | |||
195 | } | 195 | } |
196 | 196 | ||
197 | if (eth->h_dest[0] & 0x01) { | 197 | if (eth->h_dest[0] & 0x01) { |
198 | for (i = 0; i < RIO_MAX_ROUTE_ENTRIES; i++) | 198 | for (i = 0; i < RIO_MAX_ROUTE_ENTRIES(rnet->mport->sys_size); |
199 | i++) | ||
199 | if (rionet_active[i]) | 200 | if (rionet_active[i]) |
200 | rionet_queue_tx_msg(skb, ndev, | 201 | rionet_queue_tx_msg(skb, ndev, |
201 | rionet_active[i]); | 202 | rionet_active[i]); |
@@ -385,6 +386,8 @@ static void rionet_remove(struct rio_dev *rdev) | |||
385 | struct net_device *ndev = NULL; | 386 | struct net_device *ndev = NULL; |
386 | struct rionet_peer *peer, *tmp; | 387 | struct rionet_peer *peer, *tmp; |
387 | 388 | ||
389 | free_pages((unsigned long)rionet_active, rdev->net->hport->sys_size ? | ||
390 | __ilog2(sizeof(void *)) + 4 : 0); | ||
388 | unregister_netdev(ndev); | 391 | unregister_netdev(ndev); |
389 | kfree(ndev); | 392 | kfree(ndev); |
390 | 393 | ||
@@ -443,6 +446,15 @@ static int rionet_setup_netdev(struct rio_mport *mport) | |||
443 | goto out; | 446 | goto out; |
444 | } | 447 | } |
445 | 448 | ||
449 | rionet_active = (struct rio_dev **)__get_free_pages(GFP_KERNEL, | ||
450 | mport->sys_size ? __ilog2(sizeof(void *)) + 4 : 0); | ||
451 | if (!rionet_active) { | ||
452 | rc = -ENOMEM; | ||
453 | goto out; | ||
454 | } | ||
455 | memset((void *)rionet_active, 0, sizeof(void *) * | ||
456 | RIO_MAX_ROUTE_ENTRIES(mport->sys_size)); | ||
457 | |||
446 | /* Set up private area */ | 458 | /* Set up private area */ |
447 | rnet = (struct rionet_private *)ndev->priv; | 459 | rnet = (struct rionet_private *)ndev->priv; |
448 | rnet->mport = mport; | 460 | rnet->mport = mport; |
diff --git a/drivers/rapidio/Kconfig b/drivers/rapidio/Kconfig index 4142115d298e..c32822ad84a4 100644 --- a/drivers/rapidio/Kconfig +++ b/drivers/rapidio/Kconfig | |||
@@ -1,14 +1,6 @@ | |||
1 | # | 1 | # |
2 | # RapidIO configuration | 2 | # RapidIO configuration |
3 | # | 3 | # |
4 | config RAPIDIO_8_BIT_TRANSPORT | ||
5 | bool "8-bit transport addressing" | ||
6 | depends on RAPIDIO | ||
7 | ---help--- | ||
8 | By default, the kernel assumes a 16-bit addressed RapidIO | ||
9 | network. By selecting this option, the kernel will support | ||
10 | an 8-bit addressed network. | ||
11 | |||
12 | config RAPIDIO_DISC_TIMEOUT | 4 | config RAPIDIO_DISC_TIMEOUT |
13 | int "Discovery timeout duration (seconds)" | 5 | int "Discovery timeout duration (seconds)" |
14 | depends on RAPIDIO | 6 | depends on RAPIDIO |
diff --git a/drivers/rapidio/rio-scan.c b/drivers/rapidio/rio-scan.c index 44420723a359..a926c896475e 100644 --- a/drivers/rapidio/rio-scan.c +++ b/drivers/rapidio/rio-scan.c | |||
@@ -73,7 +73,7 @@ static u16 rio_get_device_id(struct rio_mport *port, u16 destid, u8 hopcount) | |||
73 | 73 | ||
74 | rio_mport_read_config_32(port, destid, hopcount, RIO_DID_CSR, &result); | 74 | rio_mport_read_config_32(port, destid, hopcount, RIO_DID_CSR, &result); |
75 | 75 | ||
76 | return RIO_GET_DID(result); | 76 | return RIO_GET_DID(port->sys_size, result); |
77 | } | 77 | } |
78 | 78 | ||
79 | /** | 79 | /** |
@@ -88,7 +88,7 @@ static u16 rio_get_device_id(struct rio_mport *port, u16 destid, u8 hopcount) | |||
88 | static void rio_set_device_id(struct rio_mport *port, u16 destid, u8 hopcount, u16 did) | 88 | static void rio_set_device_id(struct rio_mport *port, u16 destid, u8 hopcount, u16 did) |
89 | { | 89 | { |
90 | rio_mport_write_config_32(port, destid, hopcount, RIO_DID_CSR, | 90 | rio_mport_write_config_32(port, destid, hopcount, RIO_DID_CSR, |
91 | RIO_SET_DID(did)); | 91 | RIO_SET_DID(port->sys_size, did)); |
92 | } | 92 | } |
93 | 93 | ||
94 | /** | 94 | /** |
@@ -100,7 +100,8 @@ static void rio_set_device_id(struct rio_mport *port, u16 destid, u8 hopcount, u | |||
100 | */ | 100 | */ |
101 | static void rio_local_set_device_id(struct rio_mport *port, u16 did) | 101 | static void rio_local_set_device_id(struct rio_mport *port, u16 did) |
102 | { | 102 | { |
103 | rio_local_write_config_32(port, RIO_DID_CSR, RIO_SET_DID(did)); | 103 | rio_local_write_config_32(port, RIO_DID_CSR, RIO_SET_DID(port->sys_size, |
104 | did)); | ||
104 | } | 105 | } |
105 | 106 | ||
106 | /** | 107 | /** |
@@ -350,8 +351,18 @@ static struct rio_dev *rio_setup_device(struct rio_net *net, | |||
350 | rswitch->switchid = next_switchid; | 351 | rswitch->switchid = next_switchid; |
351 | rswitch->hopcount = hopcount; | 352 | rswitch->hopcount = hopcount; |
352 | rswitch->destid = destid; | 353 | rswitch->destid = destid; |
354 | rswitch->route_table = kzalloc(sizeof(u8)* | ||
355 | RIO_MAX_ROUTE_ENTRIES(port->sys_size), | ||
356 | GFP_KERNEL); | ||
357 | if (!rswitch->route_table) { | ||
358 | kfree(rdev); | ||
359 | rdev = NULL; | ||
360 | kfree(rswitch); | ||
361 | goto out; | ||
362 | } | ||
353 | /* Initialize switch route table */ | 363 | /* Initialize switch route table */ |
354 | for (rdid = 0; rdid < RIO_MAX_ROUTE_ENTRIES; rdid++) | 364 | for (rdid = 0; rdid < RIO_MAX_ROUTE_ENTRIES(port->sys_size); |
365 | rdid++) | ||
355 | rswitch->route_table[rdid] = RIO_INVALID_ROUTE; | 366 | rswitch->route_table[rdid] = RIO_INVALID_ROUTE; |
356 | rdev->rswitch = rswitch; | 367 | rdev->rswitch = rswitch; |
357 | sprintf(rio_name(rdev), "%02x:s:%04x", rdev->net->id, | 368 | sprintf(rio_name(rdev), "%02x:s:%04x", rdev->net->id, |
@@ -480,7 +491,7 @@ static u16 rio_get_host_deviceid_lock(struct rio_mport *port, u8 hopcount) | |||
480 | { | 491 | { |
481 | u32 result; | 492 | u32 result; |
482 | 493 | ||
483 | rio_mport_read_config_32(port, RIO_ANY_DESTID, hopcount, | 494 | rio_mport_read_config_32(port, RIO_ANY_DESTID(port->sys_size), hopcount, |
484 | RIO_HOST_DID_LOCK_CSR, &result); | 495 | RIO_HOST_DID_LOCK_CSR, &result); |
485 | 496 | ||
486 | return (u16) (result & 0xffff); | 497 | return (u16) (result & 0xffff); |
@@ -571,14 +582,16 @@ static int rio_enum_peer(struct rio_net *net, struct rio_mport *port, | |||
571 | } | 582 | } |
572 | 583 | ||
573 | /* Attempt to acquire device lock */ | 584 | /* Attempt to acquire device lock */ |
574 | rio_mport_write_config_32(port, RIO_ANY_DESTID, hopcount, | 585 | rio_mport_write_config_32(port, RIO_ANY_DESTID(port->sys_size), |
586 | hopcount, | ||
575 | RIO_HOST_DID_LOCK_CSR, port->host_deviceid); | 587 | RIO_HOST_DID_LOCK_CSR, port->host_deviceid); |
576 | while ((tmp = rio_get_host_deviceid_lock(port, hopcount)) | 588 | while ((tmp = rio_get_host_deviceid_lock(port, hopcount)) |
577 | < port->host_deviceid) { | 589 | < port->host_deviceid) { |
578 | /* Delay a bit */ | 590 | /* Delay a bit */ |
579 | mdelay(1); | 591 | mdelay(1); |
580 | /* Attempt to acquire device lock again */ | 592 | /* Attempt to acquire device lock again */ |
581 | rio_mport_write_config_32(port, RIO_ANY_DESTID, hopcount, | 593 | rio_mport_write_config_32(port, RIO_ANY_DESTID(port->sys_size), |
594 | hopcount, | ||
582 | RIO_HOST_DID_LOCK_CSR, | 595 | RIO_HOST_DID_LOCK_CSR, |
583 | port->host_deviceid); | 596 | port->host_deviceid); |
584 | } | 597 | } |
@@ -590,7 +603,9 @@ static int rio_enum_peer(struct rio_net *net, struct rio_mport *port, | |||
590 | } | 603 | } |
591 | 604 | ||
592 | /* Setup new RIO device */ | 605 | /* Setup new RIO device */ |
593 | if ((rdev = rio_setup_device(net, port, RIO_ANY_DESTID, hopcount, 1))) { | 606 | rdev = rio_setup_device(net, port, RIO_ANY_DESTID(port->sys_size), |
607 | hopcount, 1); | ||
608 | if (rdev) { | ||
594 | /* Add device to the global and bus/net specific list. */ | 609 | /* Add device to the global and bus/net specific list. */ |
595 | list_add_tail(&rdev->net_list, &net->devices); | 610 | list_add_tail(&rdev->net_list, &net->devices); |
596 | } else | 611 | } else |
@@ -598,7 +613,8 @@ static int rio_enum_peer(struct rio_net *net, struct rio_mport *port, | |||
598 | 613 | ||
599 | if (rio_is_switch(rdev)) { | 614 | if (rio_is_switch(rdev)) { |
600 | next_switchid++; | 615 | next_switchid++; |
601 | sw_inport = rio_get_swpinfo_inport(port, RIO_ANY_DESTID, hopcount); | 616 | sw_inport = rio_get_swpinfo_inport(port, |
617 | RIO_ANY_DESTID(port->sys_size), hopcount); | ||
602 | rio_route_add_entry(port, rdev->rswitch, RIO_GLOBAL_TABLE, | 618 | rio_route_add_entry(port, rdev->rswitch, RIO_GLOBAL_TABLE, |
603 | port->host_deviceid, sw_inport); | 619 | port->host_deviceid, sw_inport); |
604 | rdev->rswitch->route_table[port->host_deviceid] = sw_inport; | 620 | rdev->rswitch->route_table[port->host_deviceid] = sw_inport; |
@@ -612,7 +628,8 @@ static int rio_enum_peer(struct rio_net *net, struct rio_mport *port, | |||
612 | } | 628 | } |
613 | 629 | ||
614 | num_ports = | 630 | num_ports = |
615 | rio_get_swpinfo_tports(port, RIO_ANY_DESTID, hopcount); | 631 | rio_get_swpinfo_tports(port, RIO_ANY_DESTID(port->sys_size), |
632 | hopcount); | ||
616 | pr_debug( | 633 | pr_debug( |
617 | "RIO: found %s (vid %4.4x did %4.4x) with %d ports\n", | 634 | "RIO: found %s (vid %4.4x did %4.4x) with %d ports\n", |
618 | rio_name(rdev), rdev->vid, rdev->did, num_ports); | 635 | rio_name(rdev), rdev->vid, rdev->did, num_ports); |
@@ -624,13 +641,15 @@ static int rio_enum_peer(struct rio_net *net, struct rio_mport *port, | |||
624 | cur_destid = next_destid; | 641 | cur_destid = next_destid; |
625 | 642 | ||
626 | if (rio_sport_is_active | 643 | if (rio_sport_is_active |
627 | (port, RIO_ANY_DESTID, hopcount, port_num)) { | 644 | (port, RIO_ANY_DESTID(port->sys_size), hopcount, |
645 | port_num)) { | ||
628 | pr_debug( | 646 | pr_debug( |
629 | "RIO: scanning device on port %d\n", | 647 | "RIO: scanning device on port %d\n", |
630 | port_num); | 648 | port_num); |
631 | rio_route_add_entry(port, rdev->rswitch, | 649 | rio_route_add_entry(port, rdev->rswitch, |
632 | RIO_GLOBAL_TABLE, | 650 | RIO_GLOBAL_TABLE, |
633 | RIO_ANY_DESTID, port_num); | 651 | RIO_ANY_DESTID(port->sys_size), |
652 | port_num); | ||
634 | 653 | ||
635 | if (rio_enum_peer(net, port, hopcount + 1) < 0) | 654 | if (rio_enum_peer(net, port, hopcount + 1) < 0) |
636 | return -1; | 655 | return -1; |
@@ -735,7 +754,8 @@ rio_disc_peer(struct rio_net *net, struct rio_mport *port, u16 destid, | |||
735 | pr_debug( | 754 | pr_debug( |
736 | "RIO: scanning device on port %d\n", | 755 | "RIO: scanning device on port %d\n", |
737 | port_num); | 756 | port_num); |
738 | for (ndestid = 0; ndestid < RIO_ANY_DESTID; | 757 | for (ndestid = 0; |
758 | ndestid < RIO_ANY_DESTID(port->sys_size); | ||
739 | ndestid++) { | 759 | ndestid++) { |
740 | rio_route_get_entry(port, rdev->rswitch, | 760 | rio_route_get_entry(port, rdev->rswitch, |
741 | RIO_GLOBAL_TABLE, | 761 | RIO_GLOBAL_TABLE, |
@@ -917,7 +937,9 @@ static void rio_build_route_tables(void) | |||
917 | 937 | ||
918 | list_for_each_entry(rdev, &rio_devices, global_list) | 938 | list_for_each_entry(rdev, &rio_devices, global_list) |
919 | if (rio_is_switch(rdev)) | 939 | if (rio_is_switch(rdev)) |
920 | for (i = 0; i < RIO_MAX_ROUTE_ENTRIES; i++) { | 940 | for (i = 0; |
941 | i < RIO_MAX_ROUTE_ENTRIES(rdev->net->hport->sys_size); | ||
942 | i++) { | ||
921 | if (rio_route_get_entry | 943 | if (rio_route_get_entry |
922 | (rdev->net->hport, rdev->rswitch, RIO_GLOBAL_TABLE, | 944 | (rdev->net->hport, rdev->rswitch, RIO_GLOBAL_TABLE, |
923 | i, &sport) < 0) | 945 | i, &sport) < 0) |
@@ -981,7 +1003,8 @@ int rio_disc_mport(struct rio_mport *mport) | |||
981 | del_timer_sync(&rio_enum_timer); | 1003 | del_timer_sync(&rio_enum_timer); |
982 | 1004 | ||
983 | pr_debug("done\n"); | 1005 | pr_debug("done\n"); |
984 | if (rio_disc_peer(net, mport, RIO_ANY_DESTID, 0) < 0) { | 1006 | if (rio_disc_peer(net, mport, RIO_ANY_DESTID(mport->sys_size), |
1007 | 0) < 0) { | ||
985 | printk(KERN_INFO | 1008 | printk(KERN_INFO |
986 | "RIO: master port %d device has failed discovery\n", | 1009 | "RIO: master port %d device has failed discovery\n", |
987 | mport->id); | 1010 | mport->id); |
diff --git a/drivers/rapidio/rio-sysfs.c b/drivers/rapidio/rio-sysfs.c index 659e31164cf0..97a147f050d6 100644 --- a/drivers/rapidio/rio-sysfs.c +++ b/drivers/rapidio/rio-sysfs.c | |||
@@ -43,7 +43,8 @@ static ssize_t routes_show(struct device *dev, struct device_attribute *attr, ch | |||
43 | if (!rdev->rswitch) | 43 | if (!rdev->rswitch) |
44 | goto out; | 44 | goto out; |
45 | 45 | ||
46 | for (i = 0; i < RIO_MAX_ROUTE_ENTRIES; i++) { | 46 | for (i = 0; i < RIO_MAX_ROUTE_ENTRIES(rdev->net->hport->sys_size); |
47 | i++) { | ||
47 | if (rdev->rswitch->route_table[i] == RIO_INVALID_ROUTE) | 48 | if (rdev->rswitch->route_table[i] == RIO_INVALID_ROUTE) |
48 | continue; | 49 | continue; |
49 | str += | 50 | str += |
diff --git a/drivers/rapidio/rio.c b/drivers/rapidio/rio.c index 80c5f1ba2e49..680661abbc4b 100644 --- a/drivers/rapidio/rio.c +++ b/drivers/rapidio/rio.c | |||
@@ -43,7 +43,7 @@ u16 rio_local_get_device_id(struct rio_mport *port) | |||
43 | 43 | ||
44 | rio_local_read_config_32(port, RIO_DID_CSR, &result); | 44 | rio_local_read_config_32(port, RIO_DID_CSR, &result); |
45 | 45 | ||
46 | return (RIO_GET_DID(result)); | 46 | return (RIO_GET_DID(port->sys_size, result)); |
47 | } | 47 | } |
48 | 48 | ||
49 | /** | 49 | /** |
diff --git a/drivers/rapidio/rio.h b/drivers/rapidio/rio.h index 80e3f03b5041..7786d02581f2 100644 --- a/drivers/rapidio/rio.h +++ b/drivers/rapidio/rio.h | |||
@@ -51,10 +51,5 @@ extern struct rio_route_ops __end_rio_route_ops[]; | |||
51 | DECLARE_RIO_ROUTE_SECTION(.rio_route_ops, \ | 51 | DECLARE_RIO_ROUTE_SECTION(.rio_route_ops, \ |
52 | vid, did, add_hook, get_hook) | 52 | vid, did, add_hook, get_hook) |
53 | 53 | ||
54 | #ifdef CONFIG_RAPIDIO_8_BIT_TRANSPORT | 54 | #define RIO_GET_DID(size, x) (size ? (x & 0xffff) : ((x & 0x00ff0000) >> 16)) |
55 | #define RIO_GET_DID(x) ((x & 0x00ff0000) >> 16) | 55 | #define RIO_SET_DID(size, x) (size ? (x & 0xffff) : ((x & 0x000000ff) << 16)) |
56 | #define RIO_SET_DID(x) ((x & 0x000000ff) << 16) | ||
57 | #else | ||
58 | #define RIO_GET_DID(x) (x & 0xffff) | ||
59 | #define RIO_SET_DID(x) (x & 0xffff) | ||
60 | #endif | ||
diff --git a/include/linux/rio.h b/include/linux/rio.h index 258c453f43f6..4a064bcd7c0c 100644 --- a/include/linux/rio.h +++ b/include/linux/rio.h | |||
@@ -23,7 +23,6 @@ | |||
23 | #include <linux/device.h> | 23 | #include <linux/device.h> |
24 | #include <linux/rio_regs.h> | 24 | #include <linux/rio_regs.h> |
25 | 25 | ||
26 | #define RIO_ANY_DESTID 0xff | ||
27 | #define RIO_NO_HOPCOUNT -1 | 26 | #define RIO_NO_HOPCOUNT -1 |
28 | #define RIO_INVALID_DESTID 0xffff | 27 | #define RIO_INVALID_DESTID 0xffff |
29 | 28 | ||
@@ -39,11 +38,8 @@ | |||
39 | entry is invalid (no route | 38 | entry is invalid (no route |
40 | exists for the device ID) */ | 39 | exists for the device ID) */ |
41 | 40 | ||
42 | #ifdef CONFIG_RAPIDIO_8_BIT_TRANSPORT | 41 | #define RIO_MAX_ROUTE_ENTRIES(size) (size ? (1 << 16) : (1 << 8)) |
43 | #define RIO_MAX_ROUTE_ENTRIES (1 << 8) | 42 | #define RIO_ANY_DESTID(size) (size ? 0xffff : 0xff) |
44 | #else | ||
45 | #define RIO_MAX_ROUTE_ENTRIES (1 << 16) | ||
46 | #endif | ||
47 | 43 | ||
48 | #define RIO_MAX_MBOX 4 | 44 | #define RIO_MAX_MBOX 4 |
49 | #define RIO_MAX_MSG_SIZE 0x1000 | 45 | #define RIO_MAX_MSG_SIZE 0x1000 |
@@ -178,6 +174,10 @@ struct rio_mport { | |||
178 | unsigned char id; /* port ID, unique among all ports */ | 174 | unsigned char id; /* port ID, unique among all ports */ |
179 | unsigned char index; /* port index, unique among all port | 175 | unsigned char index; /* port index, unique among all port |
180 | interfaces of the same type */ | 176 | interfaces of the same type */ |
177 | unsigned int sys_size; /* RapidIO common transport system size. | ||
178 | * 0 - Small size. 256 devices. | ||
179 | * 1 - Large size, 65536 devices. | ||
180 | */ | ||
181 | unsigned char name[40]; | 181 | unsigned char name[40]; |
182 | void *priv; /* Master port private data */ | 182 | void *priv; /* Master port private data */ |
183 | }; | 183 | }; |
@@ -213,7 +213,7 @@ struct rio_switch { | |||
213 | u16 switchid; | 213 | u16 switchid; |
214 | u16 hopcount; | 214 | u16 hopcount; |
215 | u16 destid; | 215 | u16 destid; |
216 | u8 route_table[RIO_MAX_ROUTE_ENTRIES]; | 216 | u8 *route_table; |
217 | int (*add_entry) (struct rio_mport * mport, u16 destid, u8 hopcount, | 217 | int (*add_entry) (struct rio_mport * mport, u16 destid, u8 hopcount, |
218 | u16 table, u16 route_destid, u8 route_port); | 218 | u16 table, u16 route_destid, u8 route_port); |
219 | int (*get_entry) (struct rio_mport * mport, u16 destid, u8 hopcount, | 219 | int (*get_entry) (struct rio_mport * mport, u16 destid, u8 hopcount, |