diff options
author | Yuval Mintz <yuvalmin@broadcom.com> | 2013-01-14 00:11:45 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-01-15 15:07:58 -0500 |
commit | 4ba7699be9e038b3f4d4857ef5d2150ebd9a7b60 (patch) | |
tree | 075a9a5fee8b80803686801d5f03176a96510941 | |
parent | a336ca7cc5c87677c77381e01754e9491b20e38c (diff) |
bnx2x: Added nvram personalities support
When a device is configured to act as either iscsi or fcoe
device in its nvram, prevent the other from being misused by
preventing its activation in the driver.
Signed-off-by: Yuval Mintz <yuvalmin@broadcom.com>
Signed-off-by: Ariel Elior <ariele@broadcom.com>
Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/broadcom/bnx2x/bnx2x_hsi.h | 4 | ||||
-rw-r--r-- | drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_hsi.h b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_hsi.h index 3369a50ac6b4..d2e79be3a905 100644 --- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_hsi.h +++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_hsi.h | |||
@@ -899,6 +899,10 @@ struct port_feat_cfg { /* port 0: 0x454 port 1: 0x4c8 */ | |||
899 | #define PORT_FEAT_CFG_DCBX_DISABLED 0x00000000 | 899 | #define PORT_FEAT_CFG_DCBX_DISABLED 0x00000000 |
900 | #define PORT_FEAT_CFG_DCBX_ENABLED 0x00000100 | 900 | #define PORT_FEAT_CFG_DCBX_ENABLED 0x00000100 |
901 | 901 | ||
902 | #define PORT_FEAT_CFG_STORAGE_PERSONALITY_MASK 0x00000C00 | ||
903 | #define PORT_FEAT_CFG_STORAGE_PERSONALITY_FCOE 0x00000400 | ||
904 | #define PORT_FEAT_CFG_STORAGE_PERSONALITY_ISCSI 0x00000800 | ||
905 | |||
902 | #define PORT_FEATURE_EN_SIZE_MASK 0x0f000000 | 906 | #define PORT_FEATURE_EN_SIZE_MASK 0x0f000000 |
903 | #define PORT_FEATURE_EN_SIZE_SHIFT 24 | 907 | #define PORT_FEATURE_EN_SIZE_SHIFT 24 |
904 | #define PORT_FEATURE_WOL_ENABLED 0x01000000 | 908 | #define PORT_FEATURE_WOL_ENABLED 0x01000000 |
diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c index 4c91f3bf4d3b..f4d4896d71f3 100644 --- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c +++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c | |||
@@ -10570,6 +10570,13 @@ static void bnx2x_get_port_hwinfo(struct bnx2x *bp) | |||
10570 | bp->wol = (!(bp->flags & NO_WOL_FLAG) && | 10570 | bp->wol = (!(bp->flags & NO_WOL_FLAG) && |
10571 | (config & PORT_FEATURE_WOL_ENABLED)); | 10571 | (config & PORT_FEATURE_WOL_ENABLED)); |
10572 | 10572 | ||
10573 | if ((config & PORT_FEAT_CFG_STORAGE_PERSONALITY_MASK) == | ||
10574 | PORT_FEAT_CFG_STORAGE_PERSONALITY_FCOE && !IS_MF(bp)) | ||
10575 | bp->flags |= NO_ISCSI_FLAG; | ||
10576 | if ((config & PORT_FEAT_CFG_STORAGE_PERSONALITY_MASK) == | ||
10577 | PORT_FEAT_CFG_STORAGE_PERSONALITY_ISCSI && !(IS_MF(bp))) | ||
10578 | bp->flags |= NO_FCOE_FLAG; | ||
10579 | |||
10573 | BNX2X_DEV_INFO("lane_config 0x%08x speed_cap_mask0 0x%08x link_config0 0x%08x\n", | 10580 | BNX2X_DEV_INFO("lane_config 0x%08x speed_cap_mask0 0x%08x link_config0 0x%08x\n", |
10574 | bp->link_params.lane_config, | 10581 | bp->link_params.lane_config, |
10575 | bp->link_params.speed_cap_mask[0], | 10582 | bp->link_params.speed_cap_mask[0], |