-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net: txgbe: Add software nodes to support phylink
Register software nodes for GPIO, I2C, SFP and PHYLINK. Define the device properties. Signed-off-by: Jiawen Wu <jiawenwu@trustnetic.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Reviewed-by: Piotr Raczynski <piotr.raczynski@intel.com> Reviewed-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
- Loading branch information
Jiawen Wu
authored and
Paolo Abeni
committed
Jun 8, 2023
1 parent
4a56212
commit c3e382a
Showing
6 changed files
with
171 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,5 @@ obj-$(CONFIG_TXGBE) += txgbe.o | |
|
||
txgbe-objs := txgbe_main.o \ | ||
txgbe_hw.o \ | ||
txgbe_phy.o \ | ||
txgbe_ethtool.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* Copyright (c) 2015 - 2023 Beijing WangXun Technology Co., Ltd. */ | ||
|
||
#include <linux/gpio/property.h> | ||
#include <linux/i2c.h> | ||
#include <linux/pci.h> | ||
|
||
#include "../libwx/wx_type.h" | ||
#include "txgbe_type.h" | ||
#include "txgbe_phy.h" | ||
|
||
static int txgbe_swnodes_register(struct txgbe *txgbe) | ||
{ | ||
struct txgbe_nodes *nodes = &txgbe->nodes; | ||
struct pci_dev *pdev = txgbe->wx->pdev; | ||
struct software_node *swnodes; | ||
u32 id; | ||
|
||
id = (pdev->bus->number << 8) | pdev->devfn; | ||
|
||
snprintf(nodes->gpio_name, sizeof(nodes->gpio_name), "txgbe_gpio-%x", id); | ||
snprintf(nodes->i2c_name, sizeof(nodes->i2c_name), "txgbe_i2c-%x", id); | ||
snprintf(nodes->sfp_name, sizeof(nodes->sfp_name), "txgbe_sfp-%x", id); | ||
snprintf(nodes->phylink_name, sizeof(nodes->phylink_name), "txgbe_phylink-%x", id); | ||
|
||
swnodes = nodes->swnodes; | ||
|
||
/* GPIO 0: tx fault | ||
* GPIO 1: tx disable | ||
* GPIO 2: sfp module absent | ||
* GPIO 3: rx signal lost | ||
* GPIO 4: rate select, 1G(0) 10G(1) | ||
* GPIO 5: rate select, 1G(0) 10G(1) | ||
*/ | ||
nodes->gpio_props[0] = PROPERTY_ENTRY_STRING("pinctrl-names", "default"); | ||
swnodes[SWNODE_GPIO] = NODE_PROP(nodes->gpio_name, nodes->gpio_props); | ||
nodes->gpio0_ref[0] = SOFTWARE_NODE_REFERENCE(&swnodes[SWNODE_GPIO], 0, GPIO_ACTIVE_HIGH); | ||
nodes->gpio1_ref[0] = SOFTWARE_NODE_REFERENCE(&swnodes[SWNODE_GPIO], 1, GPIO_ACTIVE_HIGH); | ||
nodes->gpio2_ref[0] = SOFTWARE_NODE_REFERENCE(&swnodes[SWNODE_GPIO], 2, GPIO_ACTIVE_LOW); | ||
nodes->gpio3_ref[0] = SOFTWARE_NODE_REFERENCE(&swnodes[SWNODE_GPIO], 3, GPIO_ACTIVE_HIGH); | ||
nodes->gpio4_ref[0] = SOFTWARE_NODE_REFERENCE(&swnodes[SWNODE_GPIO], 4, GPIO_ACTIVE_HIGH); | ||
nodes->gpio5_ref[0] = SOFTWARE_NODE_REFERENCE(&swnodes[SWNODE_GPIO], 5, GPIO_ACTIVE_HIGH); | ||
|
||
nodes->i2c_props[0] = PROPERTY_ENTRY_STRING("compatible", "snps,designware-i2c"); | ||
nodes->i2c_props[1] = PROPERTY_ENTRY_BOOL("wx,i2c-snps-model"); | ||
nodes->i2c_props[2] = PROPERTY_ENTRY_U32("clock-frequency", I2C_MAX_STANDARD_MODE_FREQ); | ||
swnodes[SWNODE_I2C] = NODE_PROP(nodes->i2c_name, nodes->i2c_props); | ||
nodes->i2c_ref[0] = SOFTWARE_NODE_REFERENCE(&swnodes[SWNODE_I2C]); | ||
|
||
nodes->sfp_props[0] = PROPERTY_ENTRY_STRING("compatible", "sff,sfp"); | ||
nodes->sfp_props[1] = PROPERTY_ENTRY_REF_ARRAY("i2c-bus", nodes->i2c_ref); | ||
nodes->sfp_props[2] = PROPERTY_ENTRY_REF_ARRAY("tx-fault-gpios", nodes->gpio0_ref); | ||
nodes->sfp_props[3] = PROPERTY_ENTRY_REF_ARRAY("tx-disable-gpios", nodes->gpio1_ref); | ||
nodes->sfp_props[4] = PROPERTY_ENTRY_REF_ARRAY("mod-def0-gpios", nodes->gpio2_ref); | ||
nodes->sfp_props[5] = PROPERTY_ENTRY_REF_ARRAY("los-gpios", nodes->gpio3_ref); | ||
nodes->sfp_props[6] = PROPERTY_ENTRY_REF_ARRAY("rate-select1-gpios", nodes->gpio4_ref); | ||
nodes->sfp_props[7] = PROPERTY_ENTRY_REF_ARRAY("rate-select0-gpios", nodes->gpio5_ref); | ||
swnodes[SWNODE_SFP] = NODE_PROP(nodes->sfp_name, nodes->sfp_props); | ||
nodes->sfp_ref[0] = SOFTWARE_NODE_REFERENCE(&swnodes[SWNODE_SFP]); | ||
|
||
nodes->phylink_props[0] = PROPERTY_ENTRY_STRING("managed", "in-band-status"); | ||
nodes->phylink_props[1] = PROPERTY_ENTRY_REF_ARRAY("sfp", nodes->sfp_ref); | ||
swnodes[SWNODE_PHYLINK] = NODE_PROP(nodes->phylink_name, nodes->phylink_props); | ||
|
||
nodes->group[SWNODE_GPIO] = &swnodes[SWNODE_GPIO]; | ||
nodes->group[SWNODE_I2C] = &swnodes[SWNODE_I2C]; | ||
nodes->group[SWNODE_SFP] = &swnodes[SWNODE_SFP]; | ||
nodes->group[SWNODE_PHYLINK] = &swnodes[SWNODE_PHYLINK]; | ||
|
||
return software_node_register_node_group(nodes->group); | ||
} | ||
|
||
int txgbe_init_phy(struct txgbe *txgbe) | ||
{ | ||
int ret; | ||
|
||
ret = txgbe_swnodes_register(txgbe); | ||
if (ret) { | ||
wx_err(txgbe->wx, "failed to register software nodes\n"); | ||
return ret; | ||
} | ||
|
||
return 0; | ||
} | ||
|
||
void txgbe_remove_phy(struct txgbe *txgbe) | ||
{ | ||
software_node_unregister_node_group(txgbe->nodes.group); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
/* Copyright (c) 2015 - 2023 Beijing WangXun Technology Co., Ltd. */ | ||
|
||
#ifndef _TXGBE_PHY_H_ | ||
#define _TXGBE_PHY_H_ | ||
|
||
int txgbe_init_phy(struct txgbe *txgbe); | ||
void txgbe_remove_phy(struct txgbe *txgbe); | ||
|
||
#endif /* _TXGBE_NODE_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters