2 * Copyright (c) 2007 Freescale Semiconductor, Inc. All rights reserved.
4 * Description: QE UCC Gigabit Ethernet Ethtool API Set
6 * Author: Li Yang <leoli@freescale.com>
9 * Can only get/set setttings of the first queue.
10 * Need to re-open the interface manually after changing some parameters.
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/errno.h>
21 #include <linux/stddef.h>
22 #include <linux/interrupt.h>
23 #include <linux/netdevice.h>
24 #include <linux/etherdevice.h>
25 #include <linux/skbuff.h>
26 #include <linux/spinlock.h>
28 #include <linux/delay.h>
29 #include <linux/dma-mapping.h>
30 #include <linux/ethtool.h>
31 #include <linux/mii.h>
32 #include <linux/phy.h>
36 #include <asm/uaccess.h>
37 #include <asm/types.h>
41 static char hw_stat_gstrings[][ETH_GSTRING_LEN] = {
50 "tx-multicast-frames",
51 "tx-broadcast-frames",
55 "rx-multicast-frames",
56 "rx-broadcast-frames",
57 "stats-counter-carry",
62 static char tx_fw_stat_gstrings[][ETH_GSTRING_LEN] = {
63 "tx-single-collision",
64 "tx-multiple-collision",
68 "tx-carrier-sense-errors",
70 "tx-excessive-differ-frames",
73 "tx-1024-1518-frames",
77 static char rx_fw_stat_gstrings[][ETH_GSTRING_LEN] = {
79 "rx-alignment-errors",
80 "rx-in-range-length-errors",
81 "rx-out-of-range-length-errors",
86 "rx-busy-drop-frames",
89 "rx-mismatch-drop-frames",
93 "rx-1024-1518-frames",
101 "rx-ip-checksum-errors",
104 #define UEC_HW_STATS_LEN ARRAY_SIZE(hw_stat_gstrings)
105 #define UEC_TX_FW_STATS_LEN ARRAY_SIZE(tx_fw_stat_gstrings)
106 #define UEC_RX_FW_STATS_LEN ARRAY_SIZE(rx_fw_stat_gstrings)
109 uec_get_settings(struct net_device *netdev, struct ethtool_cmd *ecmd)
111 struct ucc_geth_private *ugeth = netdev_priv(netdev);
112 struct phy_device *phydev = ugeth->phydev;
113 struct ucc_geth_info *ug_info = ugeth->ug_info;
119 ecmd->maxrxpkt = ug_info->interruptcoalescingmaxvalue[0];
121 return phy_ethtool_gset(phydev, ecmd);
125 uec_set_settings(struct net_device *netdev, struct ethtool_cmd *ecmd)
127 struct ucc_geth_private *ugeth = netdev_priv(netdev);
128 struct phy_device *phydev = ugeth->phydev;
133 return phy_ethtool_sset(phydev, ecmd);
137 uec_get_pauseparam(struct net_device *netdev,
138 struct ethtool_pauseparam *pause)
140 struct ucc_geth_private *ugeth = netdev_priv(netdev);
142 pause->autoneg = ugeth->phydev->autoneg;
144 if (ugeth->ug_info->receiveFlowControl)
146 if (ugeth->ug_info->transmitFlowControl)
151 uec_set_pauseparam(struct net_device *netdev,
152 struct ethtool_pauseparam *pause)
154 struct ucc_geth_private *ugeth = netdev_priv(netdev);
157 ugeth->ug_info->receiveFlowControl = pause->rx_pause;
158 ugeth->ug_info->transmitFlowControl = pause->tx_pause;
160 if (ugeth->phydev->autoneg) {
161 if (netif_running(netdev)) {
162 /* FIXME: automatically restart */
164 "Please re-open the interface.\n");
167 struct ucc_geth_info *ug_info = ugeth->ug_info;
169 ret = init_flow_control_params(ug_info->aufc,
170 ug_info->receiveFlowControl,
171 ug_info->transmitFlowControl,
172 ug_info->pausePeriod,
173 ug_info->extensionField,
174 &ugeth->uccf->uf_regs->upsmr,
175 &ugeth->ug_regs->uempr,
176 &ugeth->ug_regs->maccfg1);
183 uec_get_msglevel(struct net_device *netdev)
185 struct ucc_geth_private *ugeth = netdev_priv(netdev);
186 return ugeth->msg_enable;
190 uec_set_msglevel(struct net_device *netdev, uint32_t data)
192 struct ucc_geth_private *ugeth = netdev_priv(netdev);
193 ugeth->msg_enable = data;
197 uec_get_regs_len(struct net_device *netdev)
199 return sizeof(struct ucc_geth);
203 uec_get_regs(struct net_device *netdev,
204 struct ethtool_regs *regs, void *p)
207 struct ucc_geth_private *ugeth = netdev_priv(netdev);
208 u32 __iomem *ug_regs = (u32 __iomem *)ugeth->ug_regs;
211 for (i = 0; i < sizeof(struct ucc_geth) / sizeof(u32); i++)
212 buff[i] = in_be32(&ug_regs[i]);
216 uec_get_ringparam(struct net_device *netdev,
217 struct ethtool_ringparam *ring)
219 struct ucc_geth_private *ugeth = netdev_priv(netdev);
220 struct ucc_geth_info *ug_info = ugeth->ug_info;
223 ring->rx_max_pending = UCC_GETH_BD_RING_SIZE_MAX;
224 ring->rx_mini_max_pending = UCC_GETH_BD_RING_SIZE_MAX;
225 ring->rx_jumbo_max_pending = UCC_GETH_BD_RING_SIZE_MAX;
226 ring->tx_max_pending = UCC_GETH_BD_RING_SIZE_MAX;
228 ring->rx_pending = ug_info->bdRingLenRx[queue];
229 ring->rx_mini_pending = ug_info->bdRingLenRx[queue];
230 ring->rx_jumbo_pending = ug_info->bdRingLenRx[queue];
231 ring->tx_pending = ug_info->bdRingLenTx[queue];
235 uec_set_ringparam(struct net_device *netdev,
236 struct ethtool_ringparam *ring)
238 struct ucc_geth_private *ugeth = netdev_priv(netdev);
239 struct ucc_geth_info *ug_info = ugeth->ug_info;
240 int queue = 0, ret = 0;
242 if (ring->rx_pending < UCC_GETH_RX_BD_RING_SIZE_MIN) {
243 printk("%s: RxBD ring size must be no smaller than %d.\n",
244 netdev->name, UCC_GETH_RX_BD_RING_SIZE_MIN);
247 if (ring->rx_pending % UCC_GETH_RX_BD_RING_SIZE_ALIGNMENT) {
248 printk("%s: RxBD ring size must be multiple of %d.\n",
249 netdev->name, UCC_GETH_RX_BD_RING_SIZE_ALIGNMENT);
252 if (ring->tx_pending < UCC_GETH_TX_BD_RING_SIZE_MIN) {
253 printk("%s: TxBD ring size must be no smaller than %d.\n",
254 netdev->name, UCC_GETH_TX_BD_RING_SIZE_MIN);
258 ug_info->bdRingLenRx[queue] = ring->rx_pending;
259 ug_info->bdRingLenTx[queue] = ring->tx_pending;
261 if (netif_running(netdev)) {
262 /* FIXME: restart automatically */
264 "Please re-open the interface.\n");
270 static int uec_get_sset_count(struct net_device *netdev, int sset)
272 struct ucc_geth_private *ugeth = netdev_priv(netdev);
273 u32 stats_mode = ugeth->ug_info->statisticsMode;
278 if (stats_mode & UCC_GETH_STATISTICS_GATHERING_MODE_HARDWARE)
279 len += UEC_HW_STATS_LEN;
280 if (stats_mode & UCC_GETH_STATISTICS_GATHERING_MODE_FIRMWARE_TX)
281 len += UEC_TX_FW_STATS_LEN;
282 if (stats_mode & UCC_GETH_STATISTICS_GATHERING_MODE_FIRMWARE_RX)
283 len += UEC_RX_FW_STATS_LEN;
292 static void uec_get_strings(struct net_device *netdev, u32 stringset, u8 *buf)
294 struct ucc_geth_private *ugeth = netdev_priv(netdev);
295 u32 stats_mode = ugeth->ug_info->statisticsMode;
297 if (stats_mode & UCC_GETH_STATISTICS_GATHERING_MODE_HARDWARE) {
298 memcpy(buf, hw_stat_gstrings, UEC_HW_STATS_LEN *
300 buf += UEC_HW_STATS_LEN * ETH_GSTRING_LEN;
302 if (stats_mode & UCC_GETH_STATISTICS_GATHERING_MODE_FIRMWARE_TX) {
303 memcpy(buf, tx_fw_stat_gstrings, UEC_TX_FW_STATS_LEN *
305 buf += UEC_TX_FW_STATS_LEN * ETH_GSTRING_LEN;
307 if (stats_mode & UCC_GETH_STATISTICS_GATHERING_MODE_FIRMWARE_RX)
308 memcpy(buf, rx_fw_stat_gstrings, UEC_RX_FW_STATS_LEN *
312 static void uec_get_ethtool_stats(struct net_device *netdev,
313 struct ethtool_stats *stats, uint64_t *data)
315 struct ucc_geth_private *ugeth = netdev_priv(netdev);
316 u32 stats_mode = ugeth->ug_info->statisticsMode;
320 if (stats_mode & UCC_GETH_STATISTICS_GATHERING_MODE_HARDWARE) {
322 base = (u32 __iomem *)&ugeth->ug_regs->tx64;
326 for (i = 0; i < UEC_HW_STATS_LEN; i++)
327 data[j++] = base ? in_be32(&base[i]) : 0;
329 if (stats_mode & UCC_GETH_STATISTICS_GATHERING_MODE_FIRMWARE_TX) {
330 base = (u32 __iomem *)ugeth->p_tx_fw_statistics_pram;
331 for (i = 0; i < UEC_TX_FW_STATS_LEN; i++)
332 data[j++] = base ? in_be32(&base[i]) : 0;
334 if (stats_mode & UCC_GETH_STATISTICS_GATHERING_MODE_FIRMWARE_RX) {
335 base = (u32 __iomem *)ugeth->p_rx_fw_statistics_pram;
336 for (i = 0; i < UEC_RX_FW_STATS_LEN; i++)
337 data[j++] = base ? in_be32(&base[i]) : 0;
341 static int uec_nway_reset(struct net_device *netdev)
343 struct ucc_geth_private *ugeth = netdev_priv(netdev);
345 return phy_start_aneg(ugeth->phydev);
348 /* Report driver information */
350 uec_get_drvinfo(struct net_device *netdev,
351 struct ethtool_drvinfo *drvinfo)
353 strncpy(drvinfo->driver, DRV_NAME, 32);
354 strncpy(drvinfo->version, DRV_VERSION, 32);
355 strncpy(drvinfo->fw_version, "N/A", 32);
356 strncpy(drvinfo->bus_info, "QUICC ENGINE", 32);
357 drvinfo->eedump_len = 0;
358 drvinfo->regdump_len = uec_get_regs_len(netdev);
363 static void uec_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
365 struct ucc_geth_private *ugeth = netdev_priv(netdev);
366 struct phy_device *phydev = ugeth->phydev;
368 if (phydev && phydev->irq)
369 wol->supported |= WAKE_PHY;
370 if (qe_alive_during_sleep())
371 wol->supported |= WAKE_MAGIC;
373 wol->wolopts = ugeth->wol_en;
376 static int uec_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
378 struct ucc_geth_private *ugeth = netdev_priv(netdev);
379 struct phy_device *phydev = ugeth->phydev;
381 if (wol->wolopts & ~(WAKE_PHY | WAKE_MAGIC))
383 else if (wol->wolopts & WAKE_PHY && (!phydev || !phydev->irq))
385 else if (wol->wolopts & WAKE_MAGIC && !qe_alive_during_sleep())
388 ugeth->wol_en = wol->wolopts;
389 device_set_wakeup_enable(&netdev->dev, ugeth->wol_en);
395 #define uec_get_wol NULL
396 #define uec_set_wol NULL
397 #endif /* CONFIG_PM */
399 static const struct ethtool_ops uec_ethtool_ops = {
400 .get_settings = uec_get_settings,
401 .set_settings = uec_set_settings,
402 .get_drvinfo = uec_get_drvinfo,
403 .get_regs_len = uec_get_regs_len,
404 .get_regs = uec_get_regs,
405 .get_msglevel = uec_get_msglevel,
406 .set_msglevel = uec_set_msglevel,
407 .nway_reset = uec_nway_reset,
408 .get_link = ethtool_op_get_link,
409 .get_ringparam = uec_get_ringparam,
410 .set_ringparam = uec_set_ringparam,
411 .get_pauseparam = uec_get_pauseparam,
412 .set_pauseparam = uec_set_pauseparam,
413 .set_sg = ethtool_op_set_sg,
414 .get_sset_count = uec_get_sset_count,
415 .get_strings = uec_get_strings,
416 .get_ethtool_stats = uec_get_ethtool_stats,
417 .get_wol = uec_get_wol,
418 .set_wol = uec_set_wol,
421 void uec_set_ethtool_ops(struct net_device *netdev)
423 SET_ETHTOOL_OPS(netdev, &uec_ethtool_ops);