Commit 679395fd authored by Alexandre Bounine's avatar Alexandre Bounine Committed by Linus Torvalds

rapidio: use default route value for CPS switches

Fix to use correct default value for routing table entries.
Signed-off-by: default avatarAlexandre Bounine <alexandre.bounine@idt.com>
Cc: Matt Porter <mporter@kernel.crashing.org>
Cc: Li Yang <leoli@freescale.com>
Cc: Kumar Gala <galak@kernel.crashing.org>
Cc: Thomas Moll <thomas.moll@sysgo.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 7a88d628
...@@ -15,7 +15,8 @@ ...@@ -15,7 +15,8 @@
#include <linux/rio_ids.h> #include <linux/rio_ids.h>
#include "../rio.h" #include "../rio.h"
#define CPS_NO_ROUTE 0xdf #define CPS_DEFAULT_ROUTE 0xde
#define CPS_NO_ROUTE 0xdf
#define IDTCPS_RIO_DOMAIN 0xf20020 #define IDTCPS_RIO_DOMAIN 0xf20020
...@@ -53,10 +54,11 @@ idtcps_route_get_entry(struct rio_mport *mport, u16 destid, u8 hopcount, ...@@ -53,10 +54,11 @@ idtcps_route_get_entry(struct rio_mport *mport, u16 destid, u8 hopcount,
rio_mport_read_config_32(mport, destid, hopcount, rio_mport_read_config_32(mport, destid, hopcount,
RIO_STD_RTE_CONF_PORT_SEL_CSR, &result); RIO_STD_RTE_CONF_PORT_SEL_CSR, &result);
if (CPS_NO_ROUTE == (u8)result) if (CPS_DEFAULT_ROUTE == (u8)result ||
result = RIO_INVALID_ROUTE; CPS_NO_ROUTE == (u8)result)
*route_port = RIO_INVALID_ROUTE;
*route_port = (u8)result; else
*route_port = (u8)result;
} }
return 0; return 0;
...@@ -74,9 +76,9 @@ idtcps_route_clr_table(struct rio_mport *mport, u16 destid, u8 hopcount, ...@@ -74,9 +76,9 @@ idtcps_route_clr_table(struct rio_mport *mport, u16 destid, u8 hopcount,
RIO_STD_RTE_CONF_DESTID_SEL_CSR, i); RIO_STD_RTE_CONF_DESTID_SEL_CSR, i);
rio_mport_write_config_32(mport, destid, hopcount, rio_mport_write_config_32(mport, destid, hopcount,
RIO_STD_RTE_CONF_PORT_SEL_CSR, RIO_STD_RTE_CONF_PORT_SEL_CSR,
(RIO_INVALID_ROUTE << 24) | (CPS_DEFAULT_ROUTE << 24) |
(RIO_INVALID_ROUTE << 16) | (CPS_DEFAULT_ROUTE << 16) |
(RIO_INVALID_ROUTE << 8) | RIO_INVALID_ROUTE); (CPS_DEFAULT_ROUTE << 8) | CPS_DEFAULT_ROUTE);
i += 4; i += 4;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment