Commit 270a71e6 authored by Jiawen Wu's avatar Jiawen Wu Committed by Jakub Kicinski

net: txgbe: Remove structure txgbe_adapter

Move the total private structure to libwx.
Signed-off-by: default avatarJiawen Wu <jiawenwu@trustnetic.com>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 9607a3e6
...@@ -802,7 +802,7 @@ static int wx_del_mac_filter(struct wx *wx, u8 *addr, u16 pool) ...@@ -802,7 +802,7 @@ static int wx_del_mac_filter(struct wx *wx, u8 *addr, u16 pool)
**/ **/
int wx_set_mac(struct net_device *netdev, void *p) int wx_set_mac(struct net_device *netdev, void *p)
{ {
struct wx *wx = container_of(&netdev, struct wx, netdev); struct wx *wx = netdev_priv(netdev);
struct sockaddr *addr = p; struct sockaddr *addr = p;
int retval; int retval;
......
...@@ -316,7 +316,9 @@ struct wx { ...@@ -316,7 +316,9 @@ struct wx {
u8 revision_id; u8 revision_id;
u16 oem_ssid; u16 oem_ssid;
u16 oem_svid; u16 oem_svid;
u16 msg_enable;
bool adapter_stopped; bool adapter_stopped;
char eeprom_id[32];
enum wx_reset_type reset_type; enum wx_reset_type reset_type;
}; };
......
...@@ -253,25 +253,22 @@ int txgbe_validate_eeprom_checksum(struct wx *wx, u16 *checksum_val) ...@@ -253,25 +253,22 @@ int txgbe_validate_eeprom_checksum(struct wx *wx, u16 *checksum_val)
return status; return status;
} }
static void txgbe_reset_misc(struct txgbe_adapter *adapter) static void txgbe_reset_misc(struct wx *wx)
{ {
struct wx *wx = &adapter->wx;
wx_reset_misc(wx); wx_reset_misc(wx);
txgbe_init_thermal_sensor_thresh(wx); txgbe_init_thermal_sensor_thresh(wx);
} }
/** /**
* txgbe_reset_hw - Perform hardware reset * txgbe_reset_hw - Perform hardware reset
* @adapter: pointer to adapter structure * @wx: pointer to wx structure
* *
* Resets the hardware by resetting the transmit and receive units, masks * Resets the hardware by resetting the transmit and receive units, masks
* and clears all interrupts, perform a PHY reset, and perform a link (MAC) * and clears all interrupts, perform a PHY reset, and perform a link (MAC)
* reset. * reset.
**/ **/
int txgbe_reset_hw(struct txgbe_adapter *adapter) int txgbe_reset_hw(struct wx *wx)
{ {
struct wx *wx = &adapter->wx;
int status; int status;
/* Call adapter stop to disable tx/rx and clear interrupts */ /* Call adapter stop to disable tx/rx and clear interrupts */
...@@ -289,7 +286,7 @@ int txgbe_reset_hw(struct txgbe_adapter *adapter) ...@@ -289,7 +286,7 @@ int txgbe_reset_hw(struct txgbe_adapter *adapter)
if (status != 0) if (status != 0)
return status; return status;
txgbe_reset_misc(adapter); txgbe_reset_misc(wx);
/* Store the permanent mac address */ /* Store the permanent mac address */
wx_get_mac_addr(wx, wx->mac.perm_addr); wx_get_mac_addr(wx, wx->mac.perm_addr);
......
...@@ -6,6 +6,6 @@ ...@@ -6,6 +6,6 @@
int txgbe_read_pba_string(struct wx *wx, u8 *pba_num, u32 pba_num_size); int txgbe_read_pba_string(struct wx *wx, u8 *pba_num, u32 pba_num_size);
int txgbe_validate_eeprom_checksum(struct wx *wx, u16 *checksum_val); int txgbe_validate_eeprom_checksum(struct wx *wx, u16 *checksum_val);
int txgbe_reset_hw(struct txgbe_adapter *adapter); int txgbe_reset_hw(struct wx *wx);
#endif /* _TXGBE_HW_H_ */ #endif /* _TXGBE_HW_H_ */
...@@ -34,26 +34,26 @@ static const struct pci_device_id txgbe_pci_tbl[] = { ...@@ -34,26 +34,26 @@ static const struct pci_device_id txgbe_pci_tbl[] = {
#define DEFAULT_DEBUG_LEVEL_SHIFT 3 #define DEFAULT_DEBUG_LEVEL_SHIFT 3
static void txgbe_check_minimum_link(struct txgbe_adapter *adapter) static void txgbe_check_minimum_link(struct wx *wx)
{ {
struct pci_dev *pdev; struct pci_dev *pdev;
pdev = adapter->pdev; pdev = wx->pdev;
pcie_print_link_status(pdev); pcie_print_link_status(pdev);
} }
/** /**
* txgbe_enumerate_functions - Get the number of ports this device has * txgbe_enumerate_functions - Get the number of ports this device has
* @adapter: adapter structure * @wx: wx structure
* *
* This function enumerates the phsyical functions co-located on a single slot, * This function enumerates the phsyical functions co-located on a single slot,
* in order to determine how many ports a device has. This is most useful in * in order to determine how many ports a device has. This is most useful in
* determining the required GT/s of PCIe bandwidth necessary for optimal * determining the required GT/s of PCIe bandwidth necessary for optimal
* performance. * performance.
**/ **/
static int txgbe_enumerate_functions(struct txgbe_adapter *adapter) static int txgbe_enumerate_functions(struct wx *wx)
{ {
struct pci_dev *entry, *pdev = adapter->pdev; struct pci_dev *entry, *pdev = wx->pdev;
int physfns = 0; int physfns = 0;
list_for_each_entry(entry, &pdev->bus->devices, bus_list) { list_for_each_entry(entry, &pdev->bus->devices, bus_list) {
...@@ -72,23 +72,20 @@ static int txgbe_enumerate_functions(struct txgbe_adapter *adapter) ...@@ -72,23 +72,20 @@ static int txgbe_enumerate_functions(struct txgbe_adapter *adapter)
return physfns; return physfns;
} }
static void txgbe_up_complete(struct txgbe_adapter *adapter) static void txgbe_up_complete(struct wx *wx)
{ {
struct wx *wx = &adapter->wx;
wx_control_hw(wx, true); wx_control_hw(wx, true);
} }
static void txgbe_reset(struct txgbe_adapter *adapter) static void txgbe_reset(struct wx *wx)
{ {
struct net_device *netdev = adapter->netdev; struct net_device *netdev = wx->netdev;
struct wx *wx = &adapter->wx;
u8 old_addr[ETH_ALEN]; u8 old_addr[ETH_ALEN];
int err; int err;
err = txgbe_reset_hw(adapter); err = txgbe_reset_hw(wx);
if (err != 0) if (err != 0)
dev_err(&adapter->pdev->dev, "Hardware Error: %d\n", err); wx_err(wx, "Hardware Error: %d\n", err);
/* do not flush user set addresses */ /* do not flush user set addresses */
memcpy(old_addr, &wx->mac_table[0].addr, netdev->addr_len); memcpy(old_addr, &wx->mac_table[0].addr, netdev->addr_len);
...@@ -96,10 +93,9 @@ static void txgbe_reset(struct txgbe_adapter *adapter) ...@@ -96,10 +93,9 @@ static void txgbe_reset(struct txgbe_adapter *adapter)
wx_mac_set_default_filter(wx, old_addr); wx_mac_set_default_filter(wx, old_addr);
} }
static void txgbe_disable_device(struct txgbe_adapter *adapter) static void txgbe_disable_device(struct wx *wx)
{ {
struct net_device *netdev = adapter->netdev; struct net_device *netdev = wx->netdev;
struct wx *wx = &adapter->wx;
wx_disable_pcie_master(wx); wx_disable_pcie_master(wx);
/* disable receives */ /* disable receives */
...@@ -111,8 +107,7 @@ static void txgbe_disable_device(struct txgbe_adapter *adapter) ...@@ -111,8 +107,7 @@ static void txgbe_disable_device(struct txgbe_adapter *adapter)
if (wx->bus.func < 2) if (wx->bus.func < 2)
wr32m(wx, TXGBE_MIS_PRB_CTL, TXGBE_MIS_PRB_CTL_LAN_UP(wx->bus.func), 0); wr32m(wx, TXGBE_MIS_PRB_CTL, TXGBE_MIS_PRB_CTL_LAN_UP(wx->bus.func), 0);
else else
dev_err(&adapter->pdev->dev, wx_err(wx, "%s: invalid bus lan id %d\n",
"%s: invalid bus lan id %d\n",
__func__, wx->bus.func); __func__, wx->bus.func);
if (!(((wx->subsystem_device_id & WX_NCSI_MASK) == WX_NCSI_SUP) || if (!(((wx->subsystem_device_id & WX_NCSI_MASK) == WX_NCSI_SUP) ||
...@@ -125,25 +120,20 @@ static void txgbe_disable_device(struct txgbe_adapter *adapter) ...@@ -125,25 +120,20 @@ static void txgbe_disable_device(struct txgbe_adapter *adapter)
wr32m(wx, WX_TDM_CTL, WX_TDM_CTL_TE, 0); wr32m(wx, WX_TDM_CTL, WX_TDM_CTL_TE, 0);
} }
static void txgbe_down(struct txgbe_adapter *adapter) static void txgbe_down(struct wx *wx)
{ {
txgbe_disable_device(adapter); txgbe_disable_device(wx);
txgbe_reset(adapter); txgbe_reset(wx);
} }
/** /**
* txgbe_sw_init - Initialize general software structures (struct txgbe_adapter) * txgbe_sw_init - Initialize general software structures (struct wx)
* @adapter: board private structure to initialize * @wx: board private structure to initialize
**/ **/
static int txgbe_sw_init(struct txgbe_adapter *adapter) static int txgbe_sw_init(struct wx *wx)
{ {
struct pci_dev *pdev = adapter->pdev;
struct wx *wx = &adapter->wx;
int err; int err;
wx->hw_addr = adapter->io_addr;
wx->pdev = pdev;
wx->mac.num_rar_entries = TXGBE_SP_RAR_ENTRIES; wx->mac.num_rar_entries = TXGBE_SP_RAR_ENTRIES;
wx->mac.max_tx_queues = TXGBE_SP_MAX_TX_QUEUES; wx->mac.max_tx_queues = TXGBE_SP_MAX_TX_QUEUES;
wx->mac.max_rx_queues = TXGBE_SP_MAX_RX_QUEUES; wx->mac.max_rx_queues = TXGBE_SP_MAX_RX_QUEUES;
...@@ -152,8 +142,7 @@ static int txgbe_sw_init(struct txgbe_adapter *adapter) ...@@ -152,8 +142,7 @@ static int txgbe_sw_init(struct txgbe_adapter *adapter)
/* PCI config space info */ /* PCI config space info */
err = wx_sw_init(wx); err = wx_sw_init(wx);
if (err < 0) { if (err < 0) {
netif_err(adapter, probe, adapter->netdev, wx_err(wx, "read of internal subsystem device id failed\n");
"read of internal subsystem device id failed\n");
return err; return err;
} }
...@@ -181,23 +170,23 @@ static int txgbe_sw_init(struct txgbe_adapter *adapter) ...@@ -181,23 +170,23 @@ static int txgbe_sw_init(struct txgbe_adapter *adapter)
**/ **/
static int txgbe_open(struct net_device *netdev) static int txgbe_open(struct net_device *netdev)
{ {
struct txgbe_adapter *adapter = netdev_priv(netdev); struct wx *wx = netdev_priv(netdev);
txgbe_up_complete(adapter); txgbe_up_complete(wx);
return 0; return 0;
} }
/** /**
* txgbe_close_suspend - actions necessary to both suspend and close flows * txgbe_close_suspend - actions necessary to both suspend and close flows
* @adapter: the private adapter struct * @wx: the private wx struct
* *
* This function should contain the necessary work common to both suspending * This function should contain the necessary work common to both suspending
* and closing of the device. * and closing of the device.
*/ */
static void txgbe_close_suspend(struct txgbe_adapter *adapter) static void txgbe_close_suspend(struct wx *wx)
{ {
txgbe_disable_device(adapter); txgbe_disable_device(wx);
} }
/** /**
...@@ -213,25 +202,25 @@ static void txgbe_close_suspend(struct txgbe_adapter *adapter) ...@@ -213,25 +202,25 @@ static void txgbe_close_suspend(struct txgbe_adapter *adapter)
**/ **/
static int txgbe_close(struct net_device *netdev) static int txgbe_close(struct net_device *netdev)
{ {
struct txgbe_adapter *adapter = netdev_priv(netdev); struct wx *wx = netdev_priv(netdev);
txgbe_down(adapter); txgbe_down(wx);
wx_control_hw(&adapter->wx, false); wx_control_hw(wx, false);
return 0; return 0;
} }
static void txgbe_dev_shutdown(struct pci_dev *pdev, bool *enable_wake) static void txgbe_dev_shutdown(struct pci_dev *pdev, bool *enable_wake)
{ {
struct txgbe_adapter *adapter = pci_get_drvdata(pdev); struct wx *wx = pci_get_drvdata(pdev);
struct net_device *netdev = adapter->netdev; struct net_device *netdev;
struct wx *wx = &adapter->wx;
netdev = wx->netdev;
netif_device_detach(netdev); netif_device_detach(netdev);
rtnl_lock(); rtnl_lock();
if (netif_running(netdev)) if (netif_running(netdev))
txgbe_close_suspend(adapter); txgbe_close_suspend(wx);
rtnl_unlock(); rtnl_unlock();
wx_control_hw(wx, false); wx_control_hw(wx, false);
...@@ -273,16 +262,15 @@ static const struct net_device_ops txgbe_netdev_ops = { ...@@ -273,16 +262,15 @@ static const struct net_device_ops txgbe_netdev_ops = {
* Returns 0 on success, negative on failure * Returns 0 on success, negative on failure
* *
* txgbe_probe initializes an adapter identified by a pci_dev structure. * txgbe_probe initializes an adapter identified by a pci_dev structure.
* The OS initialization, configuring of the adapter private structure, * The OS initialization, configuring of the wx private structure,
* and a hardware reset occur. * and a hardware reset occur.
**/ **/
static int txgbe_probe(struct pci_dev *pdev, static int txgbe_probe(struct pci_dev *pdev,
const struct pci_device_id __always_unused *ent) const struct pci_device_id __always_unused *ent)
{ {
struct txgbe_adapter *adapter = NULL;
struct wx *wx = NULL;
struct net_device *netdev; struct net_device *netdev;
int err, expected_gts; int err, expected_gts;
struct wx *wx = NULL;
u16 eeprom_verh = 0, eeprom_verl = 0, offset = 0; u16 eeprom_verh = 0, eeprom_verl = 0, offset = 0;
u16 eeprom_cfg_blkh = 0, eeprom_cfg_blkl = 0; u16 eeprom_cfg_blkh = 0, eeprom_cfg_blkl = 0;
...@@ -314,7 +302,7 @@ static int txgbe_probe(struct pci_dev *pdev, ...@@ -314,7 +302,7 @@ static int txgbe_probe(struct pci_dev *pdev,
pci_set_master(pdev); pci_set_master(pdev);
netdev = devm_alloc_etherdev_mqs(&pdev->dev, netdev = devm_alloc_etherdev_mqs(&pdev->dev,
sizeof(struct txgbe_adapter), sizeof(struct wx),
TXGBE_MAX_TX_QUEUES, TXGBE_MAX_TX_QUEUES,
TXGBE_MAX_RX_QUEUES); TXGBE_MAX_RX_QUEUES);
if (!netdev) { if (!netdev) {
...@@ -324,17 +312,16 @@ static int txgbe_probe(struct pci_dev *pdev, ...@@ -324,17 +312,16 @@ static int txgbe_probe(struct pci_dev *pdev,
SET_NETDEV_DEV(netdev, &pdev->dev); SET_NETDEV_DEV(netdev, &pdev->dev);
adapter = netdev_priv(netdev); wx = netdev_priv(netdev);
adapter->netdev = netdev;
adapter->pdev = pdev;
wx = &adapter->wx;
wx->netdev = netdev; wx->netdev = netdev;
adapter->msg_enable = (1 << DEFAULT_DEBUG_LEVEL_SHIFT) - 1; wx->pdev = pdev;
adapter->io_addr = devm_ioremap(&pdev->dev, wx->msg_enable = (1 << DEFAULT_DEBUG_LEVEL_SHIFT) - 1;
wx->hw_addr = devm_ioremap(&pdev->dev,
pci_resource_start(pdev, 0), pci_resource_start(pdev, 0),
pci_resource_len(pdev, 0)); pci_resource_len(pdev, 0));
if (!adapter->io_addr) { if (!wx->hw_addr) {
err = -EIO; err = -EIO;
goto err_pci_release_regions; goto err_pci_release_regions;
} }
...@@ -342,7 +329,7 @@ static int txgbe_probe(struct pci_dev *pdev, ...@@ -342,7 +329,7 @@ static int txgbe_probe(struct pci_dev *pdev,
netdev->netdev_ops = &txgbe_netdev_ops; netdev->netdev_ops = &txgbe_netdev_ops;
/* setup the private structure */ /* setup the private structure */
err = txgbe_sw_init(adapter); err = txgbe_sw_init(wx);
if (err) if (err)
goto err_free_mac_table; goto err_free_mac_table;
...@@ -360,7 +347,7 @@ static int txgbe_probe(struct pci_dev *pdev, ...@@ -360,7 +347,7 @@ static int txgbe_probe(struct pci_dev *pdev,
goto err_free_mac_table; goto err_free_mac_table;
} }
err = txgbe_reset_hw(adapter); err = txgbe_reset_hw(wx);
if (err) { if (err) {
dev_err(&pdev->dev, "HW Init failed: %d\n", err); dev_err(&pdev->dev, "HW Init failed: %d\n", err);
goto err_free_mac_table; goto err_free_mac_table;
...@@ -406,15 +393,15 @@ static int txgbe_probe(struct pci_dev *pdev, ...@@ -406,15 +393,15 @@ static int txgbe_probe(struct pci_dev *pdev,
build = (eeprom_cfg_blkl << 8) | (eeprom_cfg_blkh >> 8); build = (eeprom_cfg_blkl << 8) | (eeprom_cfg_blkh >> 8);
patch = eeprom_cfg_blkh & 0x00ff; patch = eeprom_cfg_blkh & 0x00ff;
snprintf(adapter->eeprom_id, sizeof(adapter->eeprom_id), snprintf(wx->eeprom_id, sizeof(wx->eeprom_id),
"0x%08x, %d.%d.%d", etrack_id, major, build, "0x%08x, %d.%d.%d", etrack_id, major, build,
patch); patch);
} else { } else {
snprintf(adapter->eeprom_id, sizeof(adapter->eeprom_id), snprintf(wx->eeprom_id, sizeof(wx->eeprom_id),
"0x%08x", etrack_id); "0x%08x", etrack_id);
} }
} else { } else {
snprintf(adapter->eeprom_id, sizeof(adapter->eeprom_id), snprintf(wx->eeprom_id, sizeof(wx->eeprom_id),
"0x%08x", etrack_id); "0x%08x", etrack_id);
} }
...@@ -422,7 +409,7 @@ static int txgbe_probe(struct pci_dev *pdev, ...@@ -422,7 +409,7 @@ static int txgbe_probe(struct pci_dev *pdev,
if (err) if (err)
goto err_release_hw; goto err_release_hw;
pci_set_drvdata(pdev, adapter); pci_set_drvdata(pdev, wx);
/* calculate the expected PCIe bandwidth required for optimal /* calculate the expected PCIe bandwidth required for optimal
* performance. Note that some older parts will never have enough * performance. Note that some older parts will never have enough
...@@ -430,11 +417,11 @@ static int txgbe_probe(struct pci_dev *pdev, ...@@ -430,11 +417,11 @@ static int txgbe_probe(struct pci_dev *pdev,
* parts to ensure that no warning is displayed, as this could confuse * parts to ensure that no warning is displayed, as this could confuse
* users otherwise. * users otherwise.
*/ */
expected_gts = txgbe_enumerate_functions(adapter) * 10; expected_gts = txgbe_enumerate_functions(wx) * 10;
/* don't check link if we failed to enumerate functions */ /* don't check link if we failed to enumerate functions */
if (expected_gts > 0) if (expected_gts > 0)
txgbe_check_minimum_link(adapter); txgbe_check_minimum_link(wx);
else else
dev_warn(&pdev->dev, "Failed to enumerate PF devices.\n"); dev_warn(&pdev->dev, "Failed to enumerate PF devices.\n");
...@@ -443,7 +430,7 @@ static int txgbe_probe(struct pci_dev *pdev, ...@@ -443,7 +430,7 @@ static int txgbe_probe(struct pci_dev *pdev,
if (err) if (err)
strncpy(part_str, "Unknown", TXGBE_PBANUM_LENGTH); strncpy(part_str, "Unknown", TXGBE_PBANUM_LENGTH);
netif_info(adapter, probe, netdev, "%pM\n", netdev->dev_addr); netif_info(wx, probe, netdev, "%pM\n", netdev->dev_addr);
return 0; return 0;
...@@ -471,16 +458,16 @@ static int txgbe_probe(struct pci_dev *pdev, ...@@ -471,16 +458,16 @@ static int txgbe_probe(struct pci_dev *pdev,
**/ **/
static void txgbe_remove(struct pci_dev *pdev) static void txgbe_remove(struct pci_dev *pdev)
{ {
struct txgbe_adapter *adapter = pci_get_drvdata(pdev); struct wx *wx = pci_get_drvdata(pdev);
struct net_device *netdev; struct net_device *netdev;
netdev = adapter->netdev; netdev = wx->netdev;
unregister_netdev(netdev); unregister_netdev(netdev);
pci_release_selected_regions(pdev, pci_release_selected_regions(pdev,
pci_select_bars(pdev, IORESOURCE_MEM)); pci_select_bars(pdev, IORESOURCE_MEM));
kfree(adapter->wx.mac_table); kfree(wx->mac_table);
pci_disable_pcie_error_reporting(pdev); pci_disable_pcie_error_reporting(pdev);
......
...@@ -77,18 +77,6 @@ ...@@ -77,18 +77,6 @@
#define TXGBE_SP_RAR_ENTRIES 128 #define TXGBE_SP_RAR_ENTRIES 128
#define TXGBE_SP_MC_TBL_SIZE 128 #define TXGBE_SP_MC_TBL_SIZE 128
/* board specific private data structure */
struct txgbe_adapter {
u8 __iomem *io_addr;
/* OS defined structs */
struct net_device *netdev;
struct pci_dev *pdev;
struct wx wx;
u16 msg_enable;
char eeprom_id[32];
};
extern char txgbe_driver_name[]; extern char txgbe_driver_name[];
#endif /* _TXGBE_TYPE_H_ */ #endif /* _TXGBE_TYPE_H_ */
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