Commit 0d768fc6 authored by Yisen.Zhuang\(Zhuangyuzeng\)'s avatar Yisen.Zhuang\(Zhuangyuzeng\) Committed by David S. Miller

net: hns: add attribute port-mode-offset for dsaf port node

Port mode offset for each dsaf port is different. The current code is not
so readability. This patch adds configuration named port-mode-offset to
make the code simple and more readability. If port-mode-offset isn't
exists, default value 0 will be used.
Signed-off-by: default avatarDaode Huang <huangdaode@hisilicon.com>
Signed-off-by: default avatarYisen Zhuang <Yisen.Zhuang@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 850bfa3b
...@@ -665,6 +665,7 @@ static int hns_mac_get_info(struct hns_mac_cb *mac_cb) ...@@ -665,6 +665,7 @@ static int hns_mac_get_info(struct hns_mac_cb *mac_cb)
mac_cb->max_frm = MAC_DEFAULT_MTU; mac_cb->max_frm = MAC_DEFAULT_MTU;
mac_cb->tx_pause_frm_time = MAC_DEFAULT_PAUSE_TIME; mac_cb->tx_pause_frm_time = MAC_DEFAULT_PAUSE_TIME;
mac_cb->port_rst_off = mac_cb->mac_id; mac_cb->port_rst_off = mac_cb->mac_id;
mac_cb->port_mode_off = 0;
/* if the dsaf node doesn't contain a port subnode, get phy-handle /* if the dsaf node doesn't contain a port subnode, get phy-handle
* from dsaf node * from dsaf node
...@@ -703,6 +704,15 @@ static int hns_mac_get_info(struct hns_mac_cb *mac_cb) ...@@ -703,6 +704,15 @@ static int hns_mac_get_info(struct hns_mac_cb *mac_cb)
mac_cb->mac_id); mac_cb->mac_id);
} }
ret = fwnode_property_read_u32(mac_cb->fw_port,
"port-mode-offset",
&mac_cb->port_mode_off);
if (ret) {
dev_dbg(mac_cb->dev,
"mac%d port-mode-offset not found, use default value.\n",
mac_cb->mac_id);
}
syscon = syscon_node_to_regmap( syscon = syscon_node_to_regmap(
of_parse_phandle(to_of_node(mac_cb->fw_port), of_parse_phandle(to_of_node(mac_cb->fw_port),
"cpld-syscon", 0)); "cpld-syscon", 0));
......
...@@ -319,6 +319,7 @@ struct hns_mac_cb { ...@@ -319,6 +319,7 @@ struct hns_mac_cb {
struct regmap *cpld_ctrl; struct regmap *cpld_ctrl;
u32 cpld_ctrl_reg; u32 cpld_ctrl_reg;
u32 port_rst_off; u32 port_rst_off;
u32 port_mode_off;
struct mac_entry_idx addr_entry_idx[DSAF_MAX_VM_NUM]; struct mac_entry_idx addr_entry_idx[DSAF_MAX_VM_NUM];
u8 sfp_prsnt; u8 sfp_prsnt;
u8 cpld_led_value; u8 cpld_led_value;
......
...@@ -265,37 +265,31 @@ phy_interface_t hns_mac_get_phy_if(struct hns_mac_cb *mac_cb) ...@@ -265,37 +265,31 @@ phy_interface_t hns_mac_get_phy_if(struct hns_mac_cb *mac_cb)
{ {
u32 mode; u32 mode;
u32 reg; u32 reg;
u32 shift;
u32 phy_offset;
bool is_ver1 = AE_IS_VER1(mac_cb->dsaf_dev->dsaf_ver); bool is_ver1 = AE_IS_VER1(mac_cb->dsaf_dev->dsaf_ver);
int mac_id = mac_cb->mac_id; int mac_id = mac_cb->mac_id;
phy_interface_t phy_if = PHY_INTERFACE_MODE_NA; phy_interface_t phy_if;
if (is_ver1 && HNS_DSAF_IS_DEBUG(mac_cb->dsaf_dev)) { if (is_ver1) {
phy_if = PHY_INTERFACE_MODE_SGMII; if (HNS_DSAF_IS_DEBUG(mac_cb->dsaf_dev))
} else if (mac_id >= 0 && mac_id <= 3 && return PHY_INTERFACE_MODE_SGMII;
!HNS_DSAF_IS_DEBUG(mac_cb->dsaf_dev)) {
reg = is_ver1 ? HNS_MAC_HILINK4_REG : HNS_MAC_HILINK4V2_REG; if (mac_id >= 0 && mac_id <= 3)
mode = dsaf_read_sub(mac_cb->dsaf_dev, reg); reg = HNS_MAC_HILINK4_REG;
/* mac_id 0, 1, 2, 3 ---> hilink4 lane 0, 1, 2, 3 */
shift = is_ver1 ? 0 : mac_id;
if (dsaf_get_bit(mode, shift))
phy_if = PHY_INTERFACE_MODE_XGMII;
else else
phy_if = PHY_INTERFACE_MODE_SGMII; reg = HNS_MAC_HILINK3_REG;
} else { } else{
reg = is_ver1 ? HNS_MAC_HILINK3_REG : HNS_MAC_HILINK3V2_REG; if (!HNS_DSAF_IS_DEBUG(mac_cb->dsaf_dev) && mac_id <= 3)
mode = dsaf_read_sub(mac_cb->dsaf_dev, reg); reg = HNS_MAC_HILINK4V2_REG;
/* mac_id 4, 5,---> hilink3 lane 2, 3
* debug port 0(6), 1(7) ---> hilink3 lane 0, 1
*/
phy_offset = mac_cb->dsaf_dev->reset_offset - 1;
shift = is_ver1 ? 0 : mac_id >= 4 ? mac_id - 2 : phy_offset;
if (dsaf_get_bit(mode, shift))
phy_if = PHY_INTERFACE_MODE_XGMII;
else else
phy_if = PHY_INTERFACE_MODE_SGMII; reg = HNS_MAC_HILINK3V2_REG;
} }
mode = dsaf_read_sub(mac_cb->dsaf_dev, reg);
if (dsaf_get_bit(mode, mac_cb->port_mode_off))
phy_if = PHY_INTERFACE_MODE_XGMII;
else
phy_if = PHY_INTERFACE_MODE_SGMII;
return phy_if; return phy_if;
} }
......
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