blob: fc9cef9dcefc6d74f3de6e79f403c108a625d406 [file] [log] [blame]
Thomas Gleixner1ccea772019-05-19 15:51:43 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002/*
3 * smc911x.c
4 * This is a driver for SMSC's LAN911{5,6,7,8} single-chip Ethernet devices.
5 *
6 * Copyright (C) 2005 Sensoria Corp
7 * Derived from the unified SMC91x driver by Nicolas Pitre
Jeff Garzikd5498be2006-04-20 17:39:14 -04008 * and the smsc911x.c reference driver by SMSC
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07009 *
Dustin McIntire0a0c72c2006-04-19 20:24:51 -070010 * Arguments:
11 * watchdog = TX watchdog timeout
12 * tx_fifo_kb = Size of TX FIFO in KB
13 *
14 * History:
15 * 04/16/05 Dustin McIntire Initial version
16 */
17static const char version[] =
18 "smc911x.c: v1.0 04-16-2005 by Dustin McIntire <dustin@sensoria.com>\n";
19
20/* Debugging options */
21#define ENABLE_SMC_DEBUG_RX 0
22#define ENABLE_SMC_DEBUG_TX 0
23#define ENABLE_SMC_DEBUG_DMA 0
24#define ENABLE_SMC_DEBUG_PKTS 0
25#define ENABLE_SMC_DEBUG_MISC 0
26#define ENABLE_SMC_DEBUG_FUNC 0
27
28#define SMC_DEBUG_RX ((ENABLE_SMC_DEBUG_RX ? 1 : 0) << 0)
29#define SMC_DEBUG_TX ((ENABLE_SMC_DEBUG_TX ? 1 : 0) << 1)
30#define SMC_DEBUG_DMA ((ENABLE_SMC_DEBUG_DMA ? 1 : 0) << 2)
31#define SMC_DEBUG_PKTS ((ENABLE_SMC_DEBUG_PKTS ? 1 : 0) << 3)
32#define SMC_DEBUG_MISC ((ENABLE_SMC_DEBUG_MISC ? 1 : 0) << 4)
33#define SMC_DEBUG_FUNC ((ENABLE_SMC_DEBUG_FUNC ? 1 : 0) << 5)
34
35#ifndef SMC_DEBUG
36#define SMC_DEBUG ( SMC_DEBUG_RX | \
37 SMC_DEBUG_TX | \
38 SMC_DEBUG_DMA | \
39 SMC_DEBUG_PKTS | \
40 SMC_DEBUG_MISC | \
41 SMC_DEBUG_FUNC \
42 )
43#endif
44
Dustin McIntire0a0c72c2006-04-19 20:24:51 -070045#include <linux/module.h>
46#include <linux/kernel.h>
47#include <linux/sched.h>
Dustin McIntire0a0c72c2006-04-19 20:24:51 -070048#include <linux/delay.h>
49#include <linux/interrupt.h>
50#include <linux/errno.h>
51#include <linux/ioport.h>
52#include <linux/crc32.h>
53#include <linux/device.h>
54#include <linux/platform_device.h>
55#include <linux/spinlock.h>
56#include <linux/ethtool.h>
57#include <linux/mii.h>
58#include <linux/workqueue.h>
59
60#include <linux/netdevice.h>
61#include <linux/etherdevice.h>
62#include <linux/skbuff.h>
63
Robert Jarzmik79d3b592016-03-16 18:26:02 +010064#include <linux/dmaengine.h>
Robert Jarzmik79d3b592016-03-16 18:26:02 +010065
Dustin McIntire0a0c72c2006-04-19 20:24:51 -070066#include <asm/io.h>
Dustin McIntire0a0c72c2006-04-19 20:24:51 -070067
68#include "smc911x.h"
69
70/*
71 * Transmit timeout, default 5 seconds.
72 */
73static int watchdog = 5000;
74module_param(watchdog, int, 0400);
75MODULE_PARM_DESC(watchdog, "transmit timeout in milliseconds");
76
77static int tx_fifo_kb=8;
78module_param(tx_fifo_kb, int, 0400);
79MODULE_PARM_DESC(tx_fifo_kb,"transmit FIFO size in KB (1<x<15)(default=8)");
80
81MODULE_LICENSE("GPL");
Kay Sievers72abb462008-04-18 13:50:44 -070082MODULE_ALIAS("platform:smc911x");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -070083
84/*
85 * The internal workings of the driver. If you are changing anything
86 * here with the SMC stuff, you should have the datasheet and know
87 * what you are doing.
88 */
89#define CARDNAME "smc911x"
90
91/*
92 * Use power-down feature of the chip
93 */
94#define POWER_DOWN 1
95
Dustin McIntire0a0c72c2006-04-19 20:24:51 -070096#if SMC_DEBUG > 0
Ben Boeckeldcdf8712013-11-01 08:53:32 -040097#define DBG(n, dev, args...) \
Dustin McIntire0a0c72c2006-04-19 20:24:51 -070098 do { \
99 if (SMC_DEBUG & (n)) \
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400100 netdev_dbg(dev, args); \
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700101 } while (0)
102
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400103#define PRINTK(dev, args...) netdev_info(dev, args)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700104#else
Andrew Lunn40f6d1d2020-11-10 04:02:45 +0100105#define DBG(n, dev, args...) \
106 while (0) { \
107 netdev_dbg(dev, args); \
108 }
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400109#define PRINTK(dev, args...) netdev_dbg(dev, args)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700110#endif
111
112#if SMC_DEBUG_PKTS > 0
113static void PRINT_PKT(u_char *buf, int length)
114{
115 int i;
116 int remainder;
117 int lines;
118
119 lines = length / 16;
120 remainder = length % 16;
121
122 for (i = 0; i < lines ; i ++) {
123 int cur;
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400124 printk(KERN_DEBUG);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700125 for (cur = 0; cur < 8; cur++) {
126 u_char a, b;
127 a = *buf++;
128 b = *buf++;
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400129 pr_cont("%02x%02x ", a, b);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700130 }
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400131 pr_cont("\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700132 }
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400133 printk(KERN_DEBUG);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700134 for (i = 0; i < remainder/2 ; i++) {
135 u_char a, b;
136 a = *buf++;
137 b = *buf++;
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400138 pr_cont("%02x%02x ", a, b);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700139 }
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400140 pr_cont("\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700141}
142#else
143#define PRINT_PKT(x...) do { } while (0)
144#endif
145
146
147/* this enables an interrupt in the interrupt mask register */
Magnus Damm699559f2008-06-09 16:33:54 -0700148#define SMC_ENABLE_INT(lp, x) do { \
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700149 unsigned int __mask; \
Magnus Damm699559f2008-06-09 16:33:54 -0700150 __mask = SMC_GET_INT_EN((lp)); \
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700151 __mask |= (x); \
Magnus Damm699559f2008-06-09 16:33:54 -0700152 SMC_SET_INT_EN((lp), __mask); \
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700153} while (0)
154
155/* this disables an interrupt from the interrupt mask register */
Magnus Damm699559f2008-06-09 16:33:54 -0700156#define SMC_DISABLE_INT(lp, x) do { \
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700157 unsigned int __mask; \
Magnus Damm699559f2008-06-09 16:33:54 -0700158 __mask = SMC_GET_INT_EN((lp)); \
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700159 __mask &= ~(x); \
Magnus Damm699559f2008-06-09 16:33:54 -0700160 SMC_SET_INT_EN((lp), __mask); \
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700161} while (0)
162
163/*
164 * this does a soft reset on the device
165 */
166static void smc911x_reset(struct net_device *dev)
167{
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700168 struct smc911x_local *lp = netdev_priv(dev);
Catalin Marinas319edaf2008-10-20 18:15:30 +0100169 unsigned int reg, timeout=0, resets=1, irq_cfg;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700170 unsigned long flags;
171
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400172 DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700173
174 /* Take out of PM setting first */
Magnus Damm699559f2008-06-09 16:33:54 -0700175 if ((SMC_GET_PMT_CTRL(lp) & PMT_CTRL_READY_) == 0) {
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700176 /* Write to the bytetest will take out of powerdown */
Magnus Damm699559f2008-06-09 16:33:54 -0700177 SMC_SET_BYTE_TEST(lp, 0);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700178 timeout=10;
179 do {
180 udelay(10);
Magnus Damm699559f2008-06-09 16:33:54 -0700181 reg = SMC_GET_PMT_CTRL(lp) & PMT_CTRL_READY_;
Roel Kluindb2961c2008-04-18 13:50:48 -0700182 } while (--timeout && !reg);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700183 if (timeout == 0) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400184 PRINTK(dev, "smc911x_reset timeout waiting for PM restore\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700185 return;
186 }
187 }
188
189 /* Disable all interrupts */
190 spin_lock_irqsave(&lp->lock, flags);
Magnus Damm699559f2008-06-09 16:33:54 -0700191 SMC_SET_INT_EN(lp, 0);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700192 spin_unlock_irqrestore(&lp->lock, flags);
193
194 while (resets--) {
Magnus Damm699559f2008-06-09 16:33:54 -0700195 SMC_SET_HW_CFG(lp, HW_CFG_SRST_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700196 timeout=10;
197 do {
198 udelay(10);
Magnus Damm699559f2008-06-09 16:33:54 -0700199 reg = SMC_GET_HW_CFG(lp);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700200 /* If chip indicates reset timeout then try again */
201 if (reg & HW_CFG_SRST_TO_) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400202 PRINTK(dev, "chip reset timeout, retrying...\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700203 resets++;
204 break;
205 }
Roel Kluindb2961c2008-04-18 13:50:48 -0700206 } while (--timeout && (reg & HW_CFG_SRST_));
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700207 }
208 if (timeout == 0) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400209 PRINTK(dev, "smc911x_reset timeout waiting for reset\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700210 return;
211 }
212
213 /* make sure EEPROM has finished loading before setting GPIO_CFG */
214 timeout=1000;
Roel Kluin46578a692009-02-02 21:39:02 -0800215 while (--timeout && (SMC_GET_E2P_CMD(lp) & E2P_CMD_EPC_BUSY_))
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700216 udelay(10);
Roel Kluin46578a692009-02-02 21:39:02 -0800217
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700218 if (timeout == 0){
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400219 PRINTK(dev, "smc911x_reset timeout waiting for EEPROM busy\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700220 return;
221 }
222
223 /* Initialize interrupts */
Magnus Damm699559f2008-06-09 16:33:54 -0700224 SMC_SET_INT_EN(lp, 0);
225 SMC_ACK_INT(lp, -1);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700226
227 /* Reset the FIFO level and flow control settings */
Magnus Damm699559f2008-06-09 16:33:54 -0700228 SMC_SET_HW_CFG(lp, (lp->tx_fifo_kb & 0xF) << 16);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700229//TODO: Figure out what appropriate pause time is
Magnus Damm699559f2008-06-09 16:33:54 -0700230 SMC_SET_FLOW(lp, FLOW_FCPT_ | FLOW_FCEN_);
231 SMC_SET_AFC_CFG(lp, lp->afc_cfg);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700232
233
234 /* Set to LED outputs */
Magnus Damm699559f2008-06-09 16:33:54 -0700235 SMC_SET_GPIO_CFG(lp, 0x70070000);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700236
Jeff Garzikd5498be2006-04-20 17:39:14 -0400237 /*
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700238 * Deassert IRQ for 1*10us for edge type interrupts
Jeff Garzikd5498be2006-04-20 17:39:14 -0400239 * and drive IRQ pin push-pull
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700240 */
Catalin Marinas319edaf2008-10-20 18:15:30 +0100241 irq_cfg = (1 << 24) | INT_CFG_IRQ_EN_ | INT_CFG_IRQ_TYPE_;
242#ifdef SMC_DYNAMIC_BUS_CONFIG
243 if (lp->cfg.irq_polarity)
244 irq_cfg |= INT_CFG_IRQ_POL_;
245#endif
246 SMC_SET_IRQ_CFG(lp, irq_cfg);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700247
248 /* clear anything saved */
249 if (lp->pending_tx_skb != NULL) {
250 dev_kfree_skb (lp->pending_tx_skb);
251 lp->pending_tx_skb = NULL;
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700252 dev->stats.tx_errors++;
253 dev->stats.tx_aborted_errors++;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700254 }
255}
256
257/*
258 * Enable Interrupts, Receive, and Transmit
259 */
260static void smc911x_enable(struct net_device *dev)
261{
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700262 struct smc911x_local *lp = netdev_priv(dev);
263 unsigned mask, cfg, cr;
264 unsigned long flags;
265
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400266 DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700267
Catalin Marinasb891a902008-10-20 18:15:37 +0100268 spin_lock_irqsave(&lp->lock, flags);
269
Magnus Damm699559f2008-06-09 16:33:54 -0700270 SMC_SET_MAC_ADDR(lp, dev->dev_addr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700271
272 /* Enable TX */
Magnus Damm699559f2008-06-09 16:33:54 -0700273 cfg = SMC_GET_HW_CFG(lp);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700274 cfg &= HW_CFG_TX_FIF_SZ_ | 0xFFF;
275 cfg |= HW_CFG_SF_;
Magnus Damm699559f2008-06-09 16:33:54 -0700276 SMC_SET_HW_CFG(lp, cfg);
277 SMC_SET_FIFO_TDA(lp, 0xFF);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700278 /* Update TX stats on every 64 packets received or every 1 sec */
Magnus Damm699559f2008-06-09 16:33:54 -0700279 SMC_SET_FIFO_TSL(lp, 64);
280 SMC_SET_GPT_CFG(lp, GPT_CFG_TIMER_EN_ | 10000);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700281
Magnus Damm699559f2008-06-09 16:33:54 -0700282 SMC_GET_MAC_CR(lp, cr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700283 cr |= MAC_CR_TXEN_ | MAC_CR_HBDIS_;
Magnus Damm699559f2008-06-09 16:33:54 -0700284 SMC_SET_MAC_CR(lp, cr);
285 SMC_SET_TX_CFG(lp, TX_CFG_TX_ON_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700286
287 /* Add 2 byte padding to start of packets */
Magnus Damm699559f2008-06-09 16:33:54 -0700288 SMC_SET_RX_CFG(lp, (2<<8) & RX_CFG_RXDOFF_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700289
290 /* Turn on receiver and enable RX */
291 if (cr & MAC_CR_RXEN_)
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400292 DBG(SMC_DEBUG_RX, dev, "Receiver already enabled\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700293
Magnus Damm699559f2008-06-09 16:33:54 -0700294 SMC_SET_MAC_CR(lp, cr | MAC_CR_RXEN_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700295
296 /* Interrupt on every received packet */
Magnus Damm699559f2008-06-09 16:33:54 -0700297 SMC_SET_FIFO_RSA(lp, 0x01);
298 SMC_SET_FIFO_RSL(lp, 0x00);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700299
300 /* now, enable interrupts */
Jeff Garzikd5498be2006-04-20 17:39:14 -0400301 mask = INT_EN_TDFA_EN_ | INT_EN_TSFL_EN_ | INT_EN_RSFL_EN_ |
302 INT_EN_GPT_INT_EN_ | INT_EN_RXDFH_INT_EN_ | INT_EN_RXE_EN_ |
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700303 INT_EN_PHY_INT_EN_;
304 if (IS_REV_A(lp->revision))
305 mask|=INT_EN_RDFL_EN_;
306 else {
307 mask|=INT_EN_RDFO_EN_;
308 }
Magnus Damm699559f2008-06-09 16:33:54 -0700309 SMC_ENABLE_INT(lp, mask);
Catalin Marinasb891a902008-10-20 18:15:37 +0100310
311 spin_unlock_irqrestore(&lp->lock, flags);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700312}
313
314/*
315 * this puts the device in an inactive state
316 */
317static void smc911x_shutdown(struct net_device *dev)
318{
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700319 struct smc911x_local *lp = netdev_priv(dev);
320 unsigned cr;
321 unsigned long flags;
322
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400323 DBG(SMC_DEBUG_FUNC, dev, "%s: --> %s\n", CARDNAME, __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700324
325 /* Disable IRQ's */
Magnus Damm699559f2008-06-09 16:33:54 -0700326 SMC_SET_INT_EN(lp, 0);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700327
328 /* Turn of Rx and TX */
329 spin_lock_irqsave(&lp->lock, flags);
Magnus Damm699559f2008-06-09 16:33:54 -0700330 SMC_GET_MAC_CR(lp, cr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700331 cr &= ~(MAC_CR_TXEN_ | MAC_CR_RXEN_ | MAC_CR_HBDIS_);
Magnus Damm699559f2008-06-09 16:33:54 -0700332 SMC_SET_MAC_CR(lp, cr);
333 SMC_SET_TX_CFG(lp, TX_CFG_STOP_TX_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700334 spin_unlock_irqrestore(&lp->lock, flags);
335}
336
337static inline void smc911x_drop_pkt(struct net_device *dev)
Jeff Garzikd5498be2006-04-20 17:39:14 -0400338{
Magnus Damm699559f2008-06-09 16:33:54 -0700339 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700340 unsigned int fifo_count, timeout, reg;
341
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400342 DBG(SMC_DEBUG_FUNC | SMC_DEBUG_RX, dev, "%s: --> %s\n",
343 CARDNAME, __func__);
Magnus Damm699559f2008-06-09 16:33:54 -0700344 fifo_count = SMC_GET_RX_FIFO_INF(lp) & 0xFFFF;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700345 if (fifo_count <= 4) {
346 /* Manually dump the packet data */
347 while (fifo_count--)
Magnus Damm699559f2008-06-09 16:33:54 -0700348 SMC_GET_RX_FIFO(lp);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700349 } else {
350 /* Fast forward through the bad packet */
Magnus Damm699559f2008-06-09 16:33:54 -0700351 SMC_SET_RX_DP_CTRL(lp, RX_DP_CTRL_FFWD_BUSY_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700352 timeout=50;
353 do {
354 udelay(10);
Magnus Damm699559f2008-06-09 16:33:54 -0700355 reg = SMC_GET_RX_DP_CTRL(lp) & RX_DP_CTRL_FFWD_BUSY_;
Roel Kluindb2961c2008-04-18 13:50:48 -0700356 } while (--timeout && reg);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700357 if (timeout == 0) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400358 PRINTK(dev, "timeout waiting for RX fast forward\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700359 }
360 }
361}
362
363/*
364 * This is the procedure to handle the receipt of a packet.
365 * It should be called after checking for packet presence in
Jeff Garzikd5498be2006-04-20 17:39:14 -0400366 * the RX status FIFO. It must be called with the spin lock
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700367 * already held.
368 */
369static inline void smc911x_rcv(struct net_device *dev)
370{
Magnus Damm699559f2008-06-09 16:33:54 -0700371 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700372 unsigned int pkt_len, status;
373 struct sk_buff *skb;
374 unsigned char *data;
375
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400376 DBG(SMC_DEBUG_FUNC | SMC_DEBUG_RX, dev, "--> %s\n",
377 __func__);
Magnus Damm699559f2008-06-09 16:33:54 -0700378 status = SMC_GET_RX_STS_FIFO(lp);
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400379 DBG(SMC_DEBUG_RX, dev, "Rx pkt len %d status 0x%08x\n",
380 (status & 0x3fff0000) >> 16, status & 0xc000ffff);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700381 pkt_len = (status & RX_STS_PKT_LEN_) >> 16;
Jeff Garzikd5498be2006-04-20 17:39:14 -0400382 if (status & RX_STS_ES_) {
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700383 /* Deal with a bad packet */
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700384 dev->stats.rx_errors++;
Jeff Garzikd5498be2006-04-20 17:39:14 -0400385 if (status & RX_STS_CRC_ERR_)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700386 dev->stats.rx_crc_errors++;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700387 else {
388 if (status & RX_STS_LEN_ERR_)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700389 dev->stats.rx_length_errors++;
Jeff Garzikd5498be2006-04-20 17:39:14 -0400390 if (status & RX_STS_MCAST_)
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700391 dev->stats.multicast++;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700392 }
393 /* Remove the bad packet data from the RX FIFO */
394 smc911x_drop_pkt(dev);
395 } else {
396 /* Receive a valid packet */
397 /* Alloc a buffer with extra room for DMA alignment */
Pradeep A. Dalvidae2e9f2012-02-06 11:16:13 +0000398 skb = netdev_alloc_skb(dev, pkt_len+32);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700399 if (unlikely(skb == NULL)) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400400 PRINTK(dev, "Low memory, rcvd packet dropped.\n");
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700401 dev->stats.rx_dropped++;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700402 smc911x_drop_pkt(dev);
403 return;
404 }
Jeff Garzikd5498be2006-04-20 17:39:14 -0400405 /* Align IP header to 32 bits
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700406 * Note that the device is configured to add a 2
Jeff Garzikd5498be2006-04-20 17:39:14 -0400407 * byte padding to the packet start, so we really
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700408 * want to write to the orignal data pointer */
409 data = skb->data;
410 skb_reserve(skb, 2);
411 skb_put(skb,pkt_len-4);
412#ifdef SMC_USE_DMA
413 {
414 unsigned int fifo;
415 /* Lower the FIFO threshold if possible */
Magnus Damm699559f2008-06-09 16:33:54 -0700416 fifo = SMC_GET_FIFO_INT(lp);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700417 if (fifo & 0xFF) fifo--;
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400418 DBG(SMC_DEBUG_RX, dev, "Setting RX stat FIFO threshold to %d\n",
419 fifo & 0xff);
Magnus Damm699559f2008-06-09 16:33:54 -0700420 SMC_SET_FIFO_INT(lp, fifo);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700421 /* Setup RX DMA */
Magnus Damm699559f2008-06-09 16:33:54 -0700422 SMC_SET_RX_CFG(lp, RX_CFG_RX_END_ALGN16_ | ((2<<8) & RX_CFG_RXDOFF_));
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700423 lp->rxdma_active = 1;
424 lp->current_rx_skb = skb;
Magnus Damm699559f2008-06-09 16:33:54 -0700425 SMC_PULL_DATA(lp, data, (pkt_len+2+15) & ~15);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700426 /* Packet processing deferred to DMA RX interrupt */
427 }
428#else
Magnus Damm699559f2008-06-09 16:33:54 -0700429 SMC_SET_RX_CFG(lp, RX_CFG_RX_END_ALGN4_ | ((2<<8) & RX_CFG_RXDOFF_));
430 SMC_PULL_DATA(lp, data, pkt_len+2+3);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700431
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400432 DBG(SMC_DEBUG_PKTS, dev, "Received packet\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700433 PRINT_PKT(data, ((pkt_len - 4) <= 64) ? pkt_len - 4 : 64);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700434 skb->protocol = eth_type_trans(skb, dev);
435 netif_rx(skb);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700436 dev->stats.rx_packets++;
437 dev->stats.rx_bytes += pkt_len-4;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700438#endif
439 }
440}
441
442/*
443 * This is called to actually send a packet to the chip.
444 */
445static void smc911x_hardware_send_pkt(struct net_device *dev)
446{
447 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700448 struct sk_buff *skb;
449 unsigned int cmdA, cmdB, len;
450 unsigned char *buf;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700451
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400452 DBG(SMC_DEBUG_FUNC | SMC_DEBUG_TX, dev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700453 BUG_ON(lp->pending_tx_skb == NULL);
454
455 skb = lp->pending_tx_skb;
456 lp->pending_tx_skb = NULL;
457
Jeff Garzikd5498be2006-04-20 17:39:14 -0400458 /* cmdA {25:24] data alignment [20:16] start offset [10:0] buffer length */
459 /* cmdB {31:16] pkt tag [10:0] length */
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700460#ifdef SMC_USE_DMA
461 /* 16 byte buffer alignment mode */
462 buf = (char*)((u32)(skb->data) & ~0xF);
Jeff Garzikd5498be2006-04-20 17:39:14 -0400463 len = (skb->len + 0xF + ((u32)skb->data & 0xF)) & ~0xF;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700464 cmdA = (1<<24) | (((u32)skb->data & 0xF)<<16) |
465 TX_CMD_A_INT_FIRST_SEG_ | TX_CMD_A_INT_LAST_SEG_ |
466 skb->len;
467#else
Andrew Lunn6e4a9302020-11-10 04:02:47 +0100468 buf = (char *)((uintptr_t)skb->data & ~0x3);
469 len = (skb->len + 3 + ((uintptr_t)skb->data & 3)) & ~0x3;
470 cmdA = (((uintptr_t)skb->data & 0x3) << 16) |
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700471 TX_CMD_A_INT_FIRST_SEG_ | TX_CMD_A_INT_LAST_SEG_ |
472 skb->len;
473#endif
Jeff Garzikd5498be2006-04-20 17:39:14 -0400474 /* tag is packet length so we can use this in stats update later */
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700475 cmdB = (skb->len << 16) | (skb->len & 0x7FF);
Jeff Garzikd5498be2006-04-20 17:39:14 -0400476
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400477 DBG(SMC_DEBUG_TX, dev, "TX PKT LENGTH 0x%04x (%d) BUF 0x%p CMDA 0x%08x CMDB 0x%08x\n",
478 len, len, buf, cmdA, cmdB);
Magnus Damm699559f2008-06-09 16:33:54 -0700479 SMC_SET_TX_FIFO(lp, cmdA);
480 SMC_SET_TX_FIFO(lp, cmdB);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700481
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400482 DBG(SMC_DEBUG_PKTS, dev, "Transmitted packet\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700483 PRINT_PKT(buf, len <= 64 ? len : 64);
484
485 /* Send pkt via PIO or DMA */
486#ifdef SMC_USE_DMA
487 lp->current_tx_skb = skb;
Magnus Damm699559f2008-06-09 16:33:54 -0700488 SMC_PUSH_DATA(lp, buf, len);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700489 /* DMA complete IRQ will free buffer and set jiffies */
490#else
Magnus Damm699559f2008-06-09 16:33:54 -0700491 SMC_PUSH_DATA(lp, buf, len);
Florian Westphal860e9532016-05-03 16:33:13 +0200492 netif_trans_update(dev);
Will Newton70d9d152008-10-28 10:52:36 +0000493 dev_kfree_skb_irq(skb);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700494#endif
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700495 if (!lp->tx_throttle) {
496 netif_wake_queue(dev);
497 }
Magnus Damm699559f2008-06-09 16:33:54 -0700498 SMC_ENABLE_INT(lp, INT_EN_TDFA_EN_ | INT_EN_TSFL_EN_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700499}
500
501/*
502 * Since I am not sure if I will have enough room in the chip's ram
503 * to store the packet, I call this routine which either sends it
504 * now, or set the card to generates an interrupt when ready
505 * for the packet.
506 */
YueHaibing6323d572018-09-26 17:06:29 +0800507static netdev_tx_t
508smc911x_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700509{
510 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700511 unsigned int free;
512 unsigned long flags;
513
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400514 DBG(SMC_DEBUG_FUNC | SMC_DEBUG_TX, dev, "--> %s\n",
515 __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700516
Catalin Marinasb891a902008-10-20 18:15:37 +0100517 spin_lock_irqsave(&lp->lock, flags);
518
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700519 BUG_ON(lp->pending_tx_skb != NULL);
520
Magnus Damm699559f2008-06-09 16:33:54 -0700521 free = SMC_GET_TX_FIFO_INF(lp) & TX_FIFO_INF_TDFREE_;
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400522 DBG(SMC_DEBUG_TX, dev, "TX free space %d\n", free);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700523
524 /* Turn off the flow when running out of space in FIFO */
525 if (free <= SMC911X_TX_FIFO_LOW_THRESHOLD) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400526 DBG(SMC_DEBUG_TX, dev, "Disabling data flow due to low FIFO space (%d)\n",
527 free);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700528 /* Reenable when at least 1 packet of size MTU present */
Magnus Damm699559f2008-06-09 16:33:54 -0700529 SMC_SET_FIFO_TDA(lp, (SMC911X_TX_FIFO_LOW_THRESHOLD)/64);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700530 lp->tx_throttle = 1;
531 netif_stop_queue(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700532 }
533
Jeff Garzikd5498be2006-04-20 17:39:14 -0400534 /* Drop packets when we run out of space in TX FIFO
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700535 * Account for overhead required for:
Jeff Garzikd5498be2006-04-20 17:39:14 -0400536 *
537 * Tx command words 8 bytes
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700538 * Start offset 15 bytes
539 * End padding 15 bytes
Jeff Garzikd5498be2006-04-20 17:39:14 -0400540 */
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700541 if (unlikely(free < (skb->len + 8 + 15 + 15))) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400542 netdev_warn(dev, "No Tx free space %d < %d\n",
543 free, skb->len);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700544 lp->pending_tx_skb = NULL;
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700545 dev->stats.tx_errors++;
546 dev->stats.tx_dropped++;
Catalin Marinasb891a902008-10-20 18:15:37 +0100547 spin_unlock_irqrestore(&lp->lock, flags);
Eric W. Biedermand27ab532014-03-15 18:06:09 -0700548 dev_kfree_skb_any(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000549 return NETDEV_TX_OK;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700550 }
Jeff Garzikd5498be2006-04-20 17:39:14 -0400551
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700552#ifdef SMC_USE_DMA
553 {
554 /* If the DMA is already running then defer this packet Tx until
Jeff Garzikd5498be2006-04-20 17:39:14 -0400555 * the DMA IRQ starts it
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700556 */
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700557 if (lp->txdma_active) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400558 DBG(SMC_DEBUG_TX | SMC_DEBUG_DMA, dev, "Tx DMA running, deferring packet\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700559 lp->pending_tx_skb = skb;
560 netif_stop_queue(dev);
561 spin_unlock_irqrestore(&lp->lock, flags);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000562 return NETDEV_TX_OK;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700563 } else {
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400564 DBG(SMC_DEBUG_TX | SMC_DEBUG_DMA, dev, "Activating Tx DMA\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700565 lp->txdma_active = 1;
566 }
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700567 }
568#endif
569 lp->pending_tx_skb = skb;
570 smc911x_hardware_send_pkt(dev);
Catalin Marinasb891a902008-10-20 18:15:37 +0100571 spin_unlock_irqrestore(&lp->lock, flags);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700572
Patrick McHardy6ed10652009-06-23 06:03:08 +0000573 return NETDEV_TX_OK;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700574}
575
576/*
577 * This handles a TX status interrupt, which is only called when:
578 * - a TX error occurred, or
579 * - TX of a packet completed.
580 */
581static void smc911x_tx(struct net_device *dev)
582{
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700583 struct smc911x_local *lp = netdev_priv(dev);
584 unsigned int tx_status;
585
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400586 DBG(SMC_DEBUG_FUNC | SMC_DEBUG_TX, dev, "--> %s\n",
587 __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700588
589 /* Collect the TX status */
Magnus Damm699559f2008-06-09 16:33:54 -0700590 while (((SMC_GET_TX_FIFO_INF(lp) & TX_FIFO_INF_TSUSED_) >> 16) != 0) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400591 DBG(SMC_DEBUG_TX, dev, "Tx stat FIFO used 0x%04x\n",
592 (SMC_GET_TX_FIFO_INF(lp) & TX_FIFO_INF_TSUSED_) >> 16);
Magnus Damm699559f2008-06-09 16:33:54 -0700593 tx_status = SMC_GET_TX_STS_FIFO(lp);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700594 dev->stats.tx_packets++;
595 dev->stats.tx_bytes+=tx_status>>16;
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400596 DBG(SMC_DEBUG_TX, dev, "Tx FIFO tag 0x%04x status 0x%04x\n",
597 (tx_status & 0xffff0000) >> 16,
598 tx_status & 0x0000ffff);
Jeff Garzikd5498be2006-04-20 17:39:14 -0400599 /* count Tx errors, but ignore lost carrier errors when in
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700600 * full-duplex mode */
Jeff Garzikd5498be2006-04-20 17:39:14 -0400601 if ((tx_status & TX_STS_ES_) && !(lp->ctl_rfduplx &&
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700602 !(tx_status & 0x00000306))) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700603 dev->stats.tx_errors++;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700604 }
605 if (tx_status & TX_STS_MANY_COLL_) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700606 dev->stats.collisions+=16;
607 dev->stats.tx_aborted_errors++;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700608 } else {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700609 dev->stats.collisions+=(tx_status & TX_STS_COLL_CNT_) >> 3;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700610 }
611 /* carrier error only has meaning for half-duplex communication */
Jeff Garzikd5498be2006-04-20 17:39:14 -0400612 if ((tx_status & (TX_STS_LOC_ | TX_STS_NO_CARR_)) &&
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700613 !lp->ctl_rfduplx) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700614 dev->stats.tx_carrier_errors++;
Jeff Garzikd5498be2006-04-20 17:39:14 -0400615 }
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700616 if (tx_status & TX_STS_LATE_COLL_) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700617 dev->stats.collisions++;
618 dev->stats.tx_aborted_errors++;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700619 }
620 }
621}
622
623
624/*---PHY CONTROL AND CONFIGURATION-----------------------------------------*/
625/*
626 * Reads a register from the MII Management serial interface
627 */
628
629static int smc911x_phy_read(struct net_device *dev, int phyaddr, int phyreg)
630{
Magnus Damm699559f2008-06-09 16:33:54 -0700631 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700632 unsigned int phydata;
633
Magnus Damm699559f2008-06-09 16:33:54 -0700634 SMC_GET_MII(lp, phyreg, phyaddr, phydata);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700635
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400636 DBG(SMC_DEBUG_MISC, dev, "%s: phyaddr=0x%x, phyreg=0x%02x, phydata=0x%04x\n",
637 __func__, phyaddr, phyreg, phydata);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700638 return phydata;
639}
640
641
642/*
643 * Writes a register to the MII Management serial interface
644 */
645static void smc911x_phy_write(struct net_device *dev, int phyaddr, int phyreg,
646 int phydata)
647{
Magnus Damm699559f2008-06-09 16:33:54 -0700648 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700649
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400650 DBG(SMC_DEBUG_MISC, dev, "%s: phyaddr=0x%x, phyreg=0x%x, phydata=0x%x\n",
651 __func__, phyaddr, phyreg, phydata);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700652
Magnus Damm699559f2008-06-09 16:33:54 -0700653 SMC_SET_MII(lp, phyreg, phyaddr, phydata);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700654}
655
656/*
657 * Finds and reports the PHY address (115 and 117 have external
658 * PHY interface 118 has internal only
659 */
660static void smc911x_phy_detect(struct net_device *dev)
661{
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700662 struct smc911x_local *lp = netdev_priv(dev);
663 int phyaddr;
664 unsigned int cfg, id1, id2;
665
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400666 DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700667
668 lp->phy_type = 0;
669
670 /*
671 * Scan all 32 PHY addresses if necessary, starting at
672 * PHY#1 to PHY#31, and then PHY#0 last.
673 */
674 switch(lp->version) {
Guennadi Liakhovetskic6dcb822008-10-12 21:05:14 -0700675 case CHIP_9115:
676 case CHIP_9117:
677 case CHIP_9215:
678 case CHIP_9217:
Magnus Damm699559f2008-06-09 16:33:54 -0700679 cfg = SMC_GET_HW_CFG(lp);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700680 if (cfg & HW_CFG_EXT_PHY_DET_) {
681 cfg &= ~HW_CFG_PHY_CLK_SEL_;
682 cfg |= HW_CFG_PHY_CLK_SEL_CLK_DIS_;
Magnus Damm699559f2008-06-09 16:33:54 -0700683 SMC_SET_HW_CFG(lp, cfg);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700684 udelay(10); /* Wait for clocks to stop */
685
686 cfg |= HW_CFG_EXT_PHY_EN_;
Magnus Damm699559f2008-06-09 16:33:54 -0700687 SMC_SET_HW_CFG(lp, cfg);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700688 udelay(10); /* Wait for clocks to stop */
689
690 cfg &= ~HW_CFG_PHY_CLK_SEL_;
691 cfg |= HW_CFG_PHY_CLK_SEL_EXT_PHY_;
Magnus Damm699559f2008-06-09 16:33:54 -0700692 SMC_SET_HW_CFG(lp, cfg);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700693 udelay(10); /* Wait for clocks to stop */
694
695 cfg |= HW_CFG_SMI_SEL_;
Magnus Damm699559f2008-06-09 16:33:54 -0700696 SMC_SET_HW_CFG(lp, cfg);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700697
698 for (phyaddr = 1; phyaddr < 32; ++phyaddr) {
699
700 /* Read the PHY identifiers */
Magnus Damm699559f2008-06-09 16:33:54 -0700701 SMC_GET_PHY_ID1(lp, phyaddr & 31, id1);
702 SMC_GET_PHY_ID2(lp, phyaddr & 31, id2);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700703
704 /* Make sure it is a valid identifier */
Jeff Garzikd5498be2006-04-20 17:39:14 -0400705 if (id1 != 0x0000 && id1 != 0xffff &&
706 id1 != 0x8000 && id2 != 0x0000 &&
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700707 id2 != 0xffff && id2 != 0x8000) {
708 /* Save the PHY's address */
709 lp->mii.phy_id = phyaddr & 31;
710 lp->phy_type = id1 << 16 | id2;
711 break;
712 }
713 }
Guennadi Liakhovetskif3073ac2008-10-11 15:07:16 -0700714 if (phyaddr < 32)
715 /* Found an external PHY */
716 break;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700717 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500718 fallthrough;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700719 default:
720 /* Internal media only */
Magnus Damm699559f2008-06-09 16:33:54 -0700721 SMC_GET_PHY_ID1(lp, 1, id1);
722 SMC_GET_PHY_ID2(lp, 1, id2);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700723 /* Save the PHY's address */
724 lp->mii.phy_id = 1;
725 lp->phy_type = id1 << 16 | id2;
726 }
727
Hans Wennborg45dfab62014-08-03 17:19:46 -0700728 DBG(SMC_DEBUG_MISC, dev, "phy_id1=0x%x, phy_id2=0x%x phyaddr=0x%x\n",
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400729 id1, id2, lp->mii.phy_id);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700730}
731
732/*
733 * Sets the PHY to a configuration as determined by the user.
734 * Called with spin_lock held.
735 */
736static int smc911x_phy_fixed(struct net_device *dev)
737{
738 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700739 int phyaddr = lp->mii.phy_id;
740 int bmcr;
741
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400742 DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700743
744 /* Enter Link Disable state */
Magnus Damm699559f2008-06-09 16:33:54 -0700745 SMC_GET_PHY_BMCR(lp, phyaddr, bmcr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700746 bmcr |= BMCR_PDOWN;
Magnus Damm699559f2008-06-09 16:33:54 -0700747 SMC_SET_PHY_BMCR(lp, phyaddr, bmcr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700748
749 /*
750 * Set our fixed capabilities
751 * Disable auto-negotiation
752 */
753 bmcr &= ~BMCR_ANENABLE;
754 if (lp->ctl_rfduplx)
755 bmcr |= BMCR_FULLDPLX;
756
757 if (lp->ctl_rspeed == 100)
758 bmcr |= BMCR_SPEED100;
759
760 /* Write our capabilities to the phy control register */
Magnus Damm699559f2008-06-09 16:33:54 -0700761 SMC_SET_PHY_BMCR(lp, phyaddr, bmcr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700762
763 /* Re-Configure the Receive/Phy Control register */
764 bmcr &= ~BMCR_PDOWN;
Magnus Damm699559f2008-06-09 16:33:54 -0700765 SMC_SET_PHY_BMCR(lp, phyaddr, bmcr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700766
767 return 1;
768}
769
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000770/**
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700771 * smc911x_phy_reset - reset the phy
772 * @dev: net device
773 * @phy: phy address
774 *
775 * Issue a software reset for the specified PHY and
776 * wait up to 100ms for the reset to complete. We should
777 * not access the PHY for 50ms after issuing the reset.
778 *
779 * The time to wait appears to be dependent on the PHY.
780 *
781 */
782static int smc911x_phy_reset(struct net_device *dev, int phy)
783{
784 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700785 int timeout;
786 unsigned long flags;
787 unsigned int reg;
788
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400789 DBG(SMC_DEBUG_FUNC, dev, "--> %s()\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700790
791 spin_lock_irqsave(&lp->lock, flags);
Magnus Damm699559f2008-06-09 16:33:54 -0700792 reg = SMC_GET_PMT_CTRL(lp);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700793 reg &= ~0xfffff030;
794 reg |= PMT_CTRL_PHY_RST_;
Magnus Damm699559f2008-06-09 16:33:54 -0700795 SMC_SET_PMT_CTRL(lp, reg);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700796 spin_unlock_irqrestore(&lp->lock, flags);
797 for (timeout = 2; timeout; timeout--) {
798 msleep(50);
799 spin_lock_irqsave(&lp->lock, flags);
Magnus Damm699559f2008-06-09 16:33:54 -0700800 reg = SMC_GET_PMT_CTRL(lp);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700801 spin_unlock_irqrestore(&lp->lock, flags);
802 if (!(reg & PMT_CTRL_PHY_RST_)) {
Jeff Garzikd5498be2006-04-20 17:39:14 -0400803 /* extra delay required because the phy may
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700804 * not be completed with its reset
Jeff Garzikd5498be2006-04-20 17:39:14 -0400805 * when PHY_BCR_RESET_ is cleared. 256us
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700806 * should suffice, but use 500us to be safe
807 */
808 udelay(500);
809 break;
810 }
811 }
812
813 return reg & PMT_CTRL_PHY_RST_;
814}
815
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000816/**
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700817 * smc911x_phy_powerdown - powerdown phy
818 * @dev: net device
819 * @phy: phy address
820 *
821 * Power down the specified PHY
822 */
823static void smc911x_phy_powerdown(struct net_device *dev, int phy)
824{
Magnus Damm699559f2008-06-09 16:33:54 -0700825 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700826 unsigned int bmcr;
827
828 /* Enter Link Disable state */
Magnus Damm699559f2008-06-09 16:33:54 -0700829 SMC_GET_PHY_BMCR(lp, phy, bmcr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700830 bmcr |= BMCR_PDOWN;
Magnus Damm699559f2008-06-09 16:33:54 -0700831 SMC_SET_PHY_BMCR(lp, phy, bmcr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700832}
833
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000834/**
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700835 * smc911x_phy_check_media - check the media status and adjust BMCR
836 * @dev: net device
837 * @init: set true for initialisation
838 *
839 * Select duplex mode depending on negotiation state. This
840 * also updates our carrier state.
841 */
842static void smc911x_phy_check_media(struct net_device *dev, int init)
843{
844 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700845 int phyaddr = lp->mii.phy_id;
846 unsigned int bmcr, cr;
847
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400848 DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700849
850 if (mii_check_media(&lp->mii, netif_msg_link(lp), init)) {
851 /* duplex state has changed */
Magnus Damm699559f2008-06-09 16:33:54 -0700852 SMC_GET_PHY_BMCR(lp, phyaddr, bmcr);
853 SMC_GET_MAC_CR(lp, cr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700854 if (lp->mii.full_duplex) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400855 DBG(SMC_DEBUG_MISC, dev, "Configuring for full-duplex mode\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700856 bmcr |= BMCR_FULLDPLX;
857 cr |= MAC_CR_RCVOWN_;
858 } else {
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400859 DBG(SMC_DEBUG_MISC, dev, "Configuring for half-duplex mode\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700860 bmcr &= ~BMCR_FULLDPLX;
861 cr &= ~MAC_CR_RCVOWN_;
862 }
Magnus Damm699559f2008-06-09 16:33:54 -0700863 SMC_SET_PHY_BMCR(lp, phyaddr, bmcr);
864 SMC_SET_MAC_CR(lp, cr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700865 }
866}
867
868/*
869 * Configures the specified PHY through the MII management interface
870 * using Autonegotiation.
871 * Calls smc911x_phy_fixed() if the user has requested a certain config.
872 * If RPC ANEG bit is set, the media selection is dependent purely on
873 * the selection by the MII (either in the MII BMCR reg or the result
874 * of autonegotiation.) If the RPC ANEG bit is cleared, the selection
875 * is controlled by the RPC SPEED and RPC DPLX bits.
876 */
Andrew Mortonef8142a2006-12-22 01:08:33 -0800877static void smc911x_phy_configure(struct work_struct *work)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700878{
Andrew Mortonef8142a2006-12-22 01:08:33 -0800879 struct smc911x_local *lp = container_of(work, struct smc911x_local,
880 phy_configure);
881 struct net_device *dev = lp->netdev;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700882 int phyaddr = lp->mii.phy_id;
883 int my_phy_caps; /* My PHY capabilities */
884 int my_ad_caps; /* My Advertised capabilities */
Andrew Lunn6015e6f2020-11-10 04:02:44 +0100885 int status __always_unused;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700886 unsigned long flags;
887
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400888 DBG(SMC_DEBUG_FUNC, dev, "--> %s()\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700889
890 /*
891 * We should not be called if phy_type is zero.
892 */
893 if (lp->phy_type == 0)
David S. Miller4bb073c2008-06-12 02:22:02 -0700894 return;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700895
896 if (smc911x_phy_reset(dev, phyaddr)) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400897 netdev_info(dev, "PHY reset timed out\n");
David S. Miller4bb073c2008-06-12 02:22:02 -0700898 return;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700899 }
900 spin_lock_irqsave(&lp->lock, flags);
901
902 /*
903 * Enable PHY Interrupts (for register 18)
904 * Interrupts listed here are enabled
905 */
Magnus Damm699559f2008-06-09 16:33:54 -0700906 SMC_SET_PHY_INT_MASK(lp, phyaddr, PHY_INT_MASK_ENERGY_ON_ |
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700907 PHY_INT_MASK_ANEG_COMP_ | PHY_INT_MASK_REMOTE_FAULT_ |
908 PHY_INT_MASK_LINK_DOWN_);
909
910 /* If the user requested no auto neg, then go set his request */
911 if (lp->mii.force_media) {
912 smc911x_phy_fixed(dev);
913 goto smc911x_phy_configure_exit;
914 }
915
916 /* Copy our capabilities from MII_BMSR to MII_ADVERTISE */
Magnus Damm699559f2008-06-09 16:33:54 -0700917 SMC_GET_PHY_BMSR(lp, phyaddr, my_phy_caps);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700918 if (!(my_phy_caps & BMSR_ANEGCAPABLE)) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400919 netdev_info(dev, "Auto negotiation NOT supported\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700920 smc911x_phy_fixed(dev);
921 goto smc911x_phy_configure_exit;
922 }
923
924 /* CSMA capable w/ both pauses */
925 my_ad_caps = ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
926
927 if (my_phy_caps & BMSR_100BASE4)
928 my_ad_caps |= ADVERTISE_100BASE4;
929 if (my_phy_caps & BMSR_100FULL)
930 my_ad_caps |= ADVERTISE_100FULL;
931 if (my_phy_caps & BMSR_100HALF)
932 my_ad_caps |= ADVERTISE_100HALF;
933 if (my_phy_caps & BMSR_10FULL)
934 my_ad_caps |= ADVERTISE_10FULL;
935 if (my_phy_caps & BMSR_10HALF)
936 my_ad_caps |= ADVERTISE_10HALF;
937
938 /* Disable capabilities not selected by our user */
939 if (lp->ctl_rspeed != 100)
940 my_ad_caps &= ~(ADVERTISE_100BASE4|ADVERTISE_100FULL|ADVERTISE_100HALF);
941
Nathan Chancellor5c61e222019-12-09 14:50:27 -0700942 if (!lp->ctl_rfduplx)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700943 my_ad_caps &= ~(ADVERTISE_100FULL|ADVERTISE_10FULL);
944
945 /* Update our Auto-Neg Advertisement Register */
Magnus Damm699559f2008-06-09 16:33:54 -0700946 SMC_SET_PHY_MII_ADV(lp, phyaddr, my_ad_caps);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700947 lp->mii.advertising = my_ad_caps;
948
949 /*
950 * Read the register back. Without this, it appears that when
951 * auto-negotiation is restarted, sometimes it isn't ready and
952 * the link does not come up.
953 */
954 udelay(10);
Magnus Damm699559f2008-06-09 16:33:54 -0700955 SMC_GET_PHY_MII_ADV(lp, phyaddr, status);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700956
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400957 DBG(SMC_DEBUG_MISC, dev, "phy caps=0x%04x\n", my_phy_caps);
958 DBG(SMC_DEBUG_MISC, dev, "phy advertised caps=0x%04x\n", my_ad_caps);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700959
960 /* Restart auto-negotiation process in order to advertise my caps */
Magnus Damm699559f2008-06-09 16:33:54 -0700961 SMC_SET_PHY_BMCR(lp, phyaddr, BMCR_ANENABLE | BMCR_ANRESTART);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700962
963 smc911x_phy_check_media(dev, 1);
964
965smc911x_phy_configure_exit:
966 spin_unlock_irqrestore(&lp->lock, flags);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700967}
968
969/*
970 * smc911x_phy_interrupt
971 *
972 * Purpose: Handle interrupts relating to PHY register 18. This is
973 * called from the "hard" interrupt handler under our private spinlock.
974 */
975static void smc911x_phy_interrupt(struct net_device *dev)
976{
977 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700978 int phyaddr = lp->mii.phy_id;
Andrew Lunn6015e6f2020-11-10 04:02:44 +0100979 int status __always_unused;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700980
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400981 DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700982
983 if (lp->phy_type == 0)
984 return;
985
986 smc911x_phy_check_media(dev, 0);
987 /* read to clear status bits */
Magnus Damm699559f2008-06-09 16:33:54 -0700988 SMC_GET_PHY_INT_SRC(lp, phyaddr,status);
Ben Boeckeldcdf8712013-11-01 08:53:32 -0400989 DBG(SMC_DEBUG_MISC, dev, "PHY interrupt status 0x%04x\n",
990 status & 0xffff);
991 DBG(SMC_DEBUG_MISC, dev, "AFC_CFG 0x%08x\n",
992 SMC_GET_AFC_CFG(lp));
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700993}
994
995/*--- END PHY CONTROL AND CONFIGURATION-------------------------------------*/
996
997/*
998 * This is the main routine of the driver, to handle the device when
999 * it needs some attention.
1000 */
David Howells7d12e782006-10-05 14:55:46 +01001001static irqreturn_t smc911x_interrupt(int irq, void *dev_id)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001002{
1003 struct net_device *dev = dev_id;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001004 struct smc911x_local *lp = netdev_priv(dev);
1005 unsigned int status, mask, timeout;
1006 unsigned int rx_overrun=0, cr, pkts;
1007 unsigned long flags;
1008
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001009 DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001010
1011 spin_lock_irqsave(&lp->lock, flags);
1012
1013 /* Spurious interrupt check */
Magnus Damm699559f2008-06-09 16:33:54 -07001014 if ((SMC_GET_IRQ_CFG(lp) & (INT_CFG_IRQ_INT_ | INT_CFG_IRQ_EN_)) !=
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001015 (INT_CFG_IRQ_INT_ | INT_CFG_IRQ_EN_)) {
Peter Korsgaarda4d09272006-08-14 23:00:17 -07001016 spin_unlock_irqrestore(&lp->lock, flags);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001017 return IRQ_NONE;
1018 }
1019
Magnus Damm699559f2008-06-09 16:33:54 -07001020 mask = SMC_GET_INT_EN(lp);
1021 SMC_SET_INT_EN(lp, 0);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001022
1023 /* set a timeout value, so I don't stay here forever */
1024 timeout = 8;
1025
1026
1027 do {
Magnus Damm699559f2008-06-09 16:33:54 -07001028 status = SMC_GET_INT(lp);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001029
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001030 DBG(SMC_DEBUG_MISC, dev, "INT 0x%08x MASK 0x%08x OUTSIDE MASK 0x%08x\n",
1031 status, mask, status & ~mask);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001032
1033 status &= mask;
1034 if (!status)
1035 break;
1036
1037 /* Handle SW interrupt condition */
1038 if (status & INT_STS_SW_INT_) {
Magnus Damm699559f2008-06-09 16:33:54 -07001039 SMC_ACK_INT(lp, INT_STS_SW_INT_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001040 mask &= ~INT_EN_SW_INT_EN_;
1041 }
1042 /* Handle various error conditions */
1043 if (status & INT_STS_RXE_) {
Magnus Damm699559f2008-06-09 16:33:54 -07001044 SMC_ACK_INT(lp, INT_STS_RXE_);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001045 dev->stats.rx_errors++;
Jeff Garzikd5498be2006-04-20 17:39:14 -04001046 }
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001047 if (status & INT_STS_RXDFH_INT_) {
Magnus Damm699559f2008-06-09 16:33:54 -07001048 SMC_ACK_INT(lp, INT_STS_RXDFH_INT_);
1049 dev->stats.rx_dropped+=SMC_GET_RX_DROP(lp);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001050 }
1051 /* Undocumented interrupt-what is the right thing to do here? */
1052 if (status & INT_STS_RXDF_INT_) {
Magnus Damm699559f2008-06-09 16:33:54 -07001053 SMC_ACK_INT(lp, INT_STS_RXDF_INT_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001054 }
1055
1056 /* Rx Data FIFO exceeds set level */
1057 if (status & INT_STS_RDFL_) {
1058 if (IS_REV_A(lp->revision)) {
1059 rx_overrun=1;
Magnus Damm699559f2008-06-09 16:33:54 -07001060 SMC_GET_MAC_CR(lp, cr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001061 cr &= ~MAC_CR_RXEN_;
Magnus Damm699559f2008-06-09 16:33:54 -07001062 SMC_SET_MAC_CR(lp, cr);
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001063 DBG(SMC_DEBUG_RX, dev, "RX overrun\n");
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001064 dev->stats.rx_errors++;
1065 dev->stats.rx_fifo_errors++;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001066 }
Magnus Damm699559f2008-06-09 16:33:54 -07001067 SMC_ACK_INT(lp, INT_STS_RDFL_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001068 }
1069 if (status & INT_STS_RDFO_) {
1070 if (!IS_REV_A(lp->revision)) {
Magnus Damm699559f2008-06-09 16:33:54 -07001071 SMC_GET_MAC_CR(lp, cr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001072 cr &= ~MAC_CR_RXEN_;
Magnus Damm699559f2008-06-09 16:33:54 -07001073 SMC_SET_MAC_CR(lp, cr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001074 rx_overrun=1;
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001075 DBG(SMC_DEBUG_RX, dev, "RX overrun\n");
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001076 dev->stats.rx_errors++;
1077 dev->stats.rx_fifo_errors++;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001078 }
Magnus Damm699559f2008-06-09 16:33:54 -07001079 SMC_ACK_INT(lp, INT_STS_RDFO_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001080 }
1081 /* Handle receive condition */
1082 if ((status & INT_STS_RSFL_) || rx_overrun) {
1083 unsigned int fifo;
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001084 DBG(SMC_DEBUG_RX, dev, "RX irq\n");
Magnus Damm699559f2008-06-09 16:33:54 -07001085 fifo = SMC_GET_RX_FIFO_INF(lp);
Jeff Garzikd5498be2006-04-20 17:39:14 -04001086 pkts = (fifo & RX_FIFO_INF_RXSUSED_) >> 16;
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001087 DBG(SMC_DEBUG_RX, dev, "Rx FIFO pkts %d, bytes %d\n",
1088 pkts, fifo & 0xFFFF);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001089 if (pkts != 0) {
1090#ifdef SMC_USE_DMA
1091 unsigned int fifo;
1092 if (lp->rxdma_active){
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001093 DBG(SMC_DEBUG_RX | SMC_DEBUG_DMA, dev,
1094 "RX DMA active\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001095 /* The DMA is already running so up the IRQ threshold */
Magnus Damm699559f2008-06-09 16:33:54 -07001096 fifo = SMC_GET_FIFO_INT(lp) & ~0xFF;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001097 fifo |= pkts & 0xFF;
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001098 DBG(SMC_DEBUG_RX, dev,
1099 "Setting RX stat FIFO threshold to %d\n",
1100 fifo & 0xff);
Magnus Damm699559f2008-06-09 16:33:54 -07001101 SMC_SET_FIFO_INT(lp, fifo);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001102 } else
1103#endif
1104 smc911x_rcv(dev);
1105 }
Magnus Damm699559f2008-06-09 16:33:54 -07001106 SMC_ACK_INT(lp, INT_STS_RSFL_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001107 }
1108 /* Handle transmit FIFO available */
1109 if (status & INT_STS_TDFA_) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001110 DBG(SMC_DEBUG_TX, dev, "TX data FIFO space available irq\n");
Magnus Damm699559f2008-06-09 16:33:54 -07001111 SMC_SET_FIFO_TDA(lp, 0xFF);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001112 lp->tx_throttle = 0;
1113#ifdef SMC_USE_DMA
1114 if (!lp->txdma_active)
1115#endif
1116 netif_wake_queue(dev);
Magnus Damm699559f2008-06-09 16:33:54 -07001117 SMC_ACK_INT(lp, INT_STS_TDFA_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001118 }
1119 /* Handle transmit done condition */
1120#if 1
1121 if (status & (INT_STS_TSFL_ | INT_STS_GPT_INT_)) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001122 DBG(SMC_DEBUG_TX | SMC_DEBUG_MISC, dev,
1123 "Tx stat FIFO limit (%d) /GPT irq\n",
1124 (SMC_GET_FIFO_INT(lp) & 0x00ff0000) >> 16);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001125 smc911x_tx(dev);
Magnus Damm699559f2008-06-09 16:33:54 -07001126 SMC_SET_GPT_CFG(lp, GPT_CFG_TIMER_EN_ | 10000);
1127 SMC_ACK_INT(lp, INT_STS_TSFL_);
1128 SMC_ACK_INT(lp, INT_STS_TSFL_ | INT_STS_GPT_INT_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001129 }
1130#else
1131 if (status & INT_STS_TSFL_) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001132 DBG(SMC_DEBUG_TX, dev, "TX status FIFO limit (%d) irq\n", ?);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001133 smc911x_tx(dev);
Magnus Damm699559f2008-06-09 16:33:54 -07001134 SMC_ACK_INT(lp, INT_STS_TSFL_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001135 }
1136
1137 if (status & INT_STS_GPT_INT_) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001138 DBG(SMC_DEBUG_RX, dev, "IRQ_CFG 0x%08x FIFO_INT 0x%08x RX_CFG 0x%08x\n",
1139 SMC_GET_IRQ_CFG(lp),
1140 SMC_GET_FIFO_INT(lp),
1141 SMC_GET_RX_CFG(lp));
1142 DBG(SMC_DEBUG_RX, dev, "Rx Stat FIFO Used 0x%02x Data FIFO Used 0x%04x Stat FIFO 0x%08x\n",
1143 (SMC_GET_RX_FIFO_INF(lp) & 0x00ff0000) >> 16,
1144 SMC_GET_RX_FIFO_INF(lp) & 0xffff,
1145 SMC_GET_RX_STS_FIFO_PEEK(lp));
Magnus Damm699559f2008-06-09 16:33:54 -07001146 SMC_SET_GPT_CFG(lp, GPT_CFG_TIMER_EN_ | 10000);
1147 SMC_ACK_INT(lp, INT_STS_GPT_INT_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001148 }
1149#endif
1150
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001151 /* Handle PHY interrupt condition */
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001152 if (status & INT_STS_PHY_INT_) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001153 DBG(SMC_DEBUG_MISC, dev, "PHY irq\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001154 smc911x_phy_interrupt(dev);
Magnus Damm699559f2008-06-09 16:33:54 -07001155 SMC_ACK_INT(lp, INT_STS_PHY_INT_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001156 }
1157 } while (--timeout);
1158
1159 /* restore mask state */
Magnus Damm699559f2008-06-09 16:33:54 -07001160 SMC_SET_INT_EN(lp, mask);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001161
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001162 DBG(SMC_DEBUG_MISC, dev, "Interrupt done (%d loops)\n",
1163 8-timeout);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001164
1165 spin_unlock_irqrestore(&lp->lock, flags);
1166
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001167 return IRQ_HANDLED;
1168}
1169
1170#ifdef SMC_USE_DMA
1171static void
Robert Jarzmik79d3b592016-03-16 18:26:02 +01001172smc911x_tx_dma_irq(void *data)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001173{
Robert Jarzmik79d3b592016-03-16 18:26:02 +01001174 struct smc911x_local *lp = data;
1175 struct net_device *dev = lp->netdev;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001176 struct sk_buff *skb = lp->current_tx_skb;
1177 unsigned long flags;
1178
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001179 DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001180
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001181 DBG(SMC_DEBUG_TX | SMC_DEBUG_DMA, dev, "TX DMA irq handler\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001182 BUG_ON(skb == NULL);
Christoph Hellwig0eb16452019-02-11 14:20:04 +01001183 dma_unmap_single(lp->dev, tx_dmabuf, tx_dmalen, DMA_TO_DEVICE);
Florian Westphal860e9532016-05-03 16:33:13 +02001184 netif_trans_update(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001185 dev_kfree_skb_irq(skb);
1186 lp->current_tx_skb = NULL;
1187 if (lp->pending_tx_skb != NULL)
1188 smc911x_hardware_send_pkt(dev);
1189 else {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001190 DBG(SMC_DEBUG_TX | SMC_DEBUG_DMA, dev,
1191 "No pending Tx packets. DMA disabled\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001192 spin_lock_irqsave(&lp->lock, flags);
1193 lp->txdma_active = 0;
1194 if (!lp->tx_throttle) {
1195 netif_wake_queue(dev);
1196 }
1197 spin_unlock_irqrestore(&lp->lock, flags);
1198 }
1199
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001200 DBG(SMC_DEBUG_TX | SMC_DEBUG_DMA, dev,
1201 "TX DMA irq completed\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001202}
1203static void
Robert Jarzmik79d3b592016-03-16 18:26:02 +01001204smc911x_rx_dma_irq(void *data)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001205{
Robert Jarzmik79d3b592016-03-16 18:26:02 +01001206 struct smc911x_local *lp = data;
1207 struct net_device *dev = lp->netdev;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001208 struct sk_buff *skb = lp->current_rx_skb;
1209 unsigned long flags;
1210 unsigned int pkts;
1211
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001212 DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
1213 DBG(SMC_DEBUG_RX | SMC_DEBUG_DMA, dev, "RX DMA irq handler\n");
Christoph Hellwig0eb16452019-02-11 14:20:04 +01001214 dma_unmap_single(lp->dev, rx_dmabuf, rx_dmalen, DMA_FROM_DEVICE);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001215 BUG_ON(skb == NULL);
1216 lp->current_rx_skb = NULL;
1217 PRINT_PKT(skb->data, skb->len);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001218 skb->protocol = eth_type_trans(skb, dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001219 dev->stats.rx_packets++;
1220 dev->stats.rx_bytes += skb->len;
Wang Chend30f53a2007-12-04 10:01:37 +08001221 netif_rx(skb);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001222
1223 spin_lock_irqsave(&lp->lock, flags);
Dmitry Baryshkovd766a4e2008-10-21 04:36:29 +04001224 pkts = (SMC_GET_RX_FIFO_INF(lp) & RX_FIFO_INF_RXSUSED_) >> 16;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001225 if (pkts != 0) {
1226 smc911x_rcv(dev);
1227 }else {
1228 lp->rxdma_active = 0;
1229 }
1230 spin_unlock_irqrestore(&lp->lock, flags);
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001231 DBG(SMC_DEBUG_RX | SMC_DEBUG_DMA, dev,
1232 "RX DMA irq completed. DMA RX FIFO PKTS %d\n",
1233 pkts);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001234}
1235#endif /* SMC_USE_DMA */
1236
1237#ifdef CONFIG_NET_POLL_CONTROLLER
1238/*
1239 * Polling receive - used by netconsole and other diagnostic tools
1240 * to allow network i/o with interrupts disabled.
1241 */
1242static void smc911x_poll_controller(struct net_device *dev)
1243{
1244 disable_irq(dev->irq);
Vitaly Wool9b6d2ef2006-12-22 01:08:24 -08001245 smc911x_interrupt(dev->irq, dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001246 enable_irq(dev->irq);
1247}
1248#endif
1249
1250/* Our watchdog timed out. Called by the networking layer */
Michael S. Tsirkin0290bd22019-12-10 09:23:51 -05001251static void smc911x_timeout(struct net_device *dev, unsigned int txqueue)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001252{
1253 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001254 int status, mask;
1255 unsigned long flags;
1256
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001257 DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001258
1259 spin_lock_irqsave(&lp->lock, flags);
Magnus Damm699559f2008-06-09 16:33:54 -07001260 status = SMC_GET_INT(lp);
1261 mask = SMC_GET_INT_EN(lp);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001262 spin_unlock_irqrestore(&lp->lock, flags);
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001263 DBG(SMC_DEBUG_MISC, dev, "INT 0x%02x MASK 0x%02x\n",
1264 status, mask);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001265
1266 /* Dump the current TX FIFO contents and restart */
Magnus Damm699559f2008-06-09 16:33:54 -07001267 mask = SMC_GET_TX_CFG(lp);
1268 SMC_SET_TX_CFG(lp, mask | TX_CFG_TXS_DUMP_ | TX_CFG_TXD_DUMP_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001269 /*
1270 * Reconfiguring the PHY doesn't seem like a bad idea here, but
1271 * smc911x_phy_configure() calls msleep() which calls schedule_timeout()
1272 * which calls schedule(). Hence we use a work queue.
1273 */
David S. Miller4bb073c2008-06-12 02:22:02 -07001274 if (lp->phy_type != 0)
1275 schedule_work(&lp->phy_configure);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001276
1277 /* We can accept TX packets again */
Florian Westphal860e9532016-05-03 16:33:13 +02001278 netif_trans_update(dev); /* prevent tx timeout */
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001279 netif_wake_queue(dev);
1280}
1281
1282/*
1283 * This routine will, depending on the values passed to it,
1284 * either make it accept multicast packets, go into
1285 * promiscuous mode (for TCPDUMP and cousins) or accept
1286 * a select set of multicast packets
1287 */
1288static void smc911x_set_multicast_list(struct net_device *dev)
1289{
1290 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001291 unsigned int multicast_table[2];
1292 unsigned int mcr, update_multicast = 0;
1293 unsigned long flags;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001294
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001295 DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001296
1297 spin_lock_irqsave(&lp->lock, flags);
Magnus Damm699559f2008-06-09 16:33:54 -07001298 SMC_GET_MAC_CR(lp, mcr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001299 spin_unlock_irqrestore(&lp->lock, flags);
1300
1301 if (dev->flags & IFF_PROMISC) {
1302
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001303 DBG(SMC_DEBUG_MISC, dev, "RCR_PRMS\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001304 mcr |= MAC_CR_PRMS_;
1305 }
1306 /*
1307 * Here, I am setting this to accept all multicast packets.
1308 * I don't need to zero the multicast table, because the flag is
1309 * checked before the table is
1310 */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001311 else if (dev->flags & IFF_ALLMULTI || netdev_mc_count(dev) > 16) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001312 DBG(SMC_DEBUG_MISC, dev, "RCR_ALMUL\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001313 mcr |= MAC_CR_MCPAS_;
1314 }
1315
1316 /*
1317 * This sets the internal hardware table to filter out unwanted
1318 * multicast packets before they take up memory.
1319 *
1320 * The SMC chip uses a hash table where the high 6 bits of the CRC of
1321 * address are the offset into the table. If that bit is 1, then the
1322 * multicast packet is accepted. Otherwise, it's dropped silently.
1323 *
1324 * To use the 6 bits as an offset into the table, the high 1 bit is
1325 * the number of the 32 bit register, while the low 5 bits are the bit
1326 * within that register.
1327 */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001328 else if (!netdev_mc_empty(dev)) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001329 struct netdev_hw_addr *ha;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001330
1331 /* Set the Hash perfec mode */
1332 mcr |= MAC_CR_HPFILT_;
1333
1334 /* start with a table of all zeros: reject all */
1335 memset(multicast_table, 0, sizeof(multicast_table));
1336
Jiri Pirko22bedad32010-04-01 21:22:57 +00001337 netdev_for_each_mc_addr(ha, dev) {
Peter Korsgaard7b31f7f2007-11-22 12:25:13 +01001338 u32 position;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001339
Peter Korsgaard7b31f7f2007-11-22 12:25:13 +01001340 /* upper 6 bits are used as hash index */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001341 position = ether_crc(ETH_ALEN, ha->addr)>>26;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001342
Peter Korsgaard7b31f7f2007-11-22 12:25:13 +01001343 multicast_table[position>>5] |= 1 << (position&0x1f);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001344 }
1345
1346 /* be sure I get rid of flags I might have set */
1347 mcr &= ~(MAC_CR_PRMS_ | MAC_CR_MCPAS_);
1348
1349 /* now, the table can be loaded into the chipset */
1350 update_multicast = 1;
1351 } else {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001352 DBG(SMC_DEBUG_MISC, dev, "~(MAC_CR_PRMS_|MAC_CR_MCPAS_)\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001353 mcr &= ~(MAC_CR_PRMS_ | MAC_CR_MCPAS_);
1354
1355 /*
1356 * since I'm disabling all multicast entirely, I need to
1357 * clear the multicast list
1358 */
1359 memset(multicast_table, 0, sizeof(multicast_table));
1360 update_multicast = 1;
1361 }
1362
1363 spin_lock_irqsave(&lp->lock, flags);
Magnus Damm699559f2008-06-09 16:33:54 -07001364 SMC_SET_MAC_CR(lp, mcr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001365 if (update_multicast) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001366 DBG(SMC_DEBUG_MISC, dev,
1367 "update mcast hash table 0x%08x 0x%08x\n",
1368 multicast_table[0], multicast_table[1]);
Magnus Damm699559f2008-06-09 16:33:54 -07001369 SMC_SET_HASHL(lp, multicast_table[0]);
1370 SMC_SET_HASHH(lp, multicast_table[1]);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001371 }
1372 spin_unlock_irqrestore(&lp->lock, flags);
1373}
1374
1375
1376/*
1377 * Open and Initialize the board
1378 *
1379 * Set up everything, reset the card, etc..
1380 */
1381static int
1382smc911x_open(struct net_device *dev)
1383{
Andrew Mortonef8142a2006-12-22 01:08:33 -08001384 struct smc911x_local *lp = netdev_priv(dev);
1385
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001386 DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001387
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001388 /* reset the hardware */
1389 smc911x_reset(dev);
1390
1391 /* Configure the PHY, initialize the link state */
Andrew Mortonef8142a2006-12-22 01:08:33 -08001392 smc911x_phy_configure(&lp->phy_configure);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001393
1394 /* Turn on Tx + Rx */
1395 smc911x_enable(dev);
1396
1397 netif_start_queue(dev);
1398
1399 return 0;
1400}
1401
1402/*
1403 * smc911x_close
1404 *
1405 * this makes the board clean up everything that it can
1406 * and not talk to the outside world. Caused by
1407 * an 'ifconfig ethX down'
1408 */
1409static int smc911x_close(struct net_device *dev)
1410{
1411 struct smc911x_local *lp = netdev_priv(dev);
1412
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001413 DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001414
1415 netif_stop_queue(dev);
1416 netif_carrier_off(dev);
1417
1418 /* clear everything */
1419 smc911x_shutdown(dev);
1420
1421 if (lp->phy_type != 0) {
1422 /* We need to ensure that no calls to
1423 * smc911x_phy_configure are pending.
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001424 */
David S. Miller4bb073c2008-06-12 02:22:02 -07001425 cancel_work_sync(&lp->phy_configure);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001426 smc911x_phy_powerdown(dev, lp->mii.phy_id);
1427 }
1428
1429 if (lp->pending_tx_skb) {
1430 dev_kfree_skb(lp->pending_tx_skb);
1431 lp->pending_tx_skb = NULL;
1432 }
1433
1434 return 0;
1435}
1436
1437/*
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001438 * Ethtool support
1439 */
1440static int
Philippe Reynes9e0b5162017-02-28 23:49:38 +01001441smc911x_ethtool_get_link_ksettings(struct net_device *dev,
1442 struct ethtool_link_ksettings *cmd)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001443{
1444 struct smc911x_local *lp = netdev_priv(dev);
yuval.shaia@oracle.com82c01a82017-06-04 20:22:00 +03001445 int status;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001446 unsigned long flags;
Philippe Reynes9e0b5162017-02-28 23:49:38 +01001447 u32 supported;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001448
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001449 DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001450
1451 if (lp->phy_type != 0) {
1452 spin_lock_irqsave(&lp->lock, flags);
yuval.shaia@oracle.com82c01a82017-06-04 20:22:00 +03001453 mii_ethtool_get_link_ksettings(&lp->mii, cmd);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001454 spin_unlock_irqrestore(&lp->lock, flags);
1455 } else {
Philippe Reynes9e0b5162017-02-28 23:49:38 +01001456 supported = SUPPORTED_10baseT_Half |
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001457 SUPPORTED_10baseT_Full |
1458 SUPPORTED_TP | SUPPORTED_AUI;
1459
1460 if (lp->ctl_rspeed == 10)
Philippe Reynes9e0b5162017-02-28 23:49:38 +01001461 cmd->base.speed = SPEED_10;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001462 else if (lp->ctl_rspeed == 100)
Philippe Reynes9e0b5162017-02-28 23:49:38 +01001463 cmd->base.speed = SPEED_100;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001464
Philippe Reynes9e0b5162017-02-28 23:49:38 +01001465 cmd->base.autoneg = AUTONEG_DISABLE;
1466 cmd->base.port = 0;
Magnus Damm699559f2008-06-09 16:33:54 -07001467 SMC_GET_PHY_SPECIAL(lp, lp->mii.phy_id, status);
Philippe Reynes9e0b5162017-02-28 23:49:38 +01001468 cmd->base.duplex =
Jeff Garzikd5498be2006-04-20 17:39:14 -04001469 (status & (PHY_SPECIAL_SPD_10FULL_ | PHY_SPECIAL_SPD_100FULL_)) ?
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001470 DUPLEX_FULL : DUPLEX_HALF;
Philippe Reynes9e0b5162017-02-28 23:49:38 +01001471
1472 ethtool_convert_legacy_u32_to_link_mode(
1473 cmd->link_modes.supported, supported);
1474
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001475 }
1476
yuval.shaia@oracle.com82c01a82017-06-04 20:22:00 +03001477 return 0;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001478}
1479
1480static int
Philippe Reynes9e0b5162017-02-28 23:49:38 +01001481smc911x_ethtool_set_link_ksettings(struct net_device *dev,
1482 const struct ethtool_link_ksettings *cmd)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001483{
1484 struct smc911x_local *lp = netdev_priv(dev);
1485 int ret;
1486 unsigned long flags;
1487
1488 if (lp->phy_type != 0) {
1489 spin_lock_irqsave(&lp->lock, flags);
Philippe Reynes9e0b5162017-02-28 23:49:38 +01001490 ret = mii_ethtool_set_link_ksettings(&lp->mii, cmd);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001491 spin_unlock_irqrestore(&lp->lock, flags);
1492 } else {
Philippe Reynes9e0b5162017-02-28 23:49:38 +01001493 if (cmd->base.autoneg != AUTONEG_DISABLE ||
1494 cmd->base.speed != SPEED_10 ||
1495 (cmd->base.duplex != DUPLEX_HALF &&
1496 cmd->base.duplex != DUPLEX_FULL) ||
1497 (cmd->base.port != PORT_TP &&
1498 cmd->base.port != PORT_AUI))
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001499 return -EINVAL;
1500
Philippe Reynes9e0b5162017-02-28 23:49:38 +01001501 lp->ctl_rfduplx = cmd->base.duplex == DUPLEX_FULL;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001502
1503 ret = 0;
1504 }
1505
1506 return ret;
1507}
1508
1509static void
1510smc911x_ethtool_getdrvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1511{
Jiri Pirko7826d432013-01-06 00:44:26 +00001512 strlcpy(info->driver, CARDNAME, sizeof(info->driver));
1513 strlcpy(info->version, version, sizeof(info->version));
1514 strlcpy(info->bus_info, dev_name(dev->dev.parent),
1515 sizeof(info->bus_info));
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001516}
1517
1518static int smc911x_ethtool_nwayreset(struct net_device *dev)
1519{
1520 struct smc911x_local *lp = netdev_priv(dev);
1521 int ret = -EINVAL;
1522 unsigned long flags;
1523
1524 if (lp->phy_type != 0) {
1525 spin_lock_irqsave(&lp->lock, flags);
1526 ret = mii_nway_restart(&lp->mii);
1527 spin_unlock_irqrestore(&lp->lock, flags);
1528 }
1529
1530 return ret;
1531}
1532
1533static u32 smc911x_ethtool_getmsglevel(struct net_device *dev)
1534{
1535 struct smc911x_local *lp = netdev_priv(dev);
1536 return lp->msg_enable;
1537}
1538
1539static void smc911x_ethtool_setmsglevel(struct net_device *dev, u32 level)
1540{
1541 struct smc911x_local *lp = netdev_priv(dev);
1542 lp->msg_enable = level;
1543}
1544
1545static int smc911x_ethtool_getregslen(struct net_device *dev)
1546{
1547 /* System regs + MAC regs + PHY regs */
Jeff Garzikd5498be2006-04-20 17:39:14 -04001548 return (((E2P_CMD - ID_REV)/4 + 1) +
1549 (WUCSR - MAC_CR)+1 + 32) * sizeof(u32);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001550}
1551
Jeff Garzikd5498be2006-04-20 17:39:14 -04001552static void smc911x_ethtool_getregs(struct net_device *dev,
Colin Ian King73fc9812021-09-02 23:25:57 +01001553 struct ethtool_regs *regs, void *buf)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001554{
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001555 struct smc911x_local *lp = netdev_priv(dev);
1556 unsigned long flags;
1557 u32 reg,i,j=0;
1558 u32 *data = (u32*)buf;
1559
1560 regs->version = lp->version;
1561 for(i=ID_REV;i<=E2P_CMD;i+=4) {
Magnus Damm699559f2008-06-09 16:33:54 -07001562 data[j++] = SMC_inl(lp, i);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001563 }
1564 for(i=MAC_CR;i<=WUCSR;i++) {
1565 spin_lock_irqsave(&lp->lock, flags);
Magnus Damm699559f2008-06-09 16:33:54 -07001566 SMC_GET_MAC_CSR(lp, i, reg);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001567 spin_unlock_irqrestore(&lp->lock, flags);
Jeff Garzikd5498be2006-04-20 17:39:14 -04001568 data[j++] = reg;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001569 }
1570 for(i=0;i<=31;i++) {
1571 spin_lock_irqsave(&lp->lock, flags);
Magnus Damm699559f2008-06-09 16:33:54 -07001572 SMC_GET_MII(lp, i, lp->mii.phy_id, reg);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001573 spin_unlock_irqrestore(&lp->lock, flags);
Jeff Garzikd5498be2006-04-20 17:39:14 -04001574 data[j++] = reg & 0xFFFF;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001575 }
1576}
1577
1578static int smc911x_ethtool_wait_eeprom_ready(struct net_device *dev)
1579{
Magnus Damm699559f2008-06-09 16:33:54 -07001580 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001581 unsigned int timeout;
1582 int e2p_cmd;
1583
Magnus Damm699559f2008-06-09 16:33:54 -07001584 e2p_cmd = SMC_GET_E2P_CMD(lp);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001585 for(timeout=10;(e2p_cmd & E2P_CMD_EPC_BUSY_) && timeout; timeout--) {
1586 if (e2p_cmd & E2P_CMD_EPC_TIMEOUT_) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001587 PRINTK(dev, "%s timeout waiting for EEPROM to respond\n",
1588 __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001589 return -EFAULT;
Jeff Garzikd5498be2006-04-20 17:39:14 -04001590 }
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001591 mdelay(1);
Magnus Damm699559f2008-06-09 16:33:54 -07001592 e2p_cmd = SMC_GET_E2P_CMD(lp);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001593 }
1594 if (timeout == 0) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001595 PRINTK(dev, "%s timeout waiting for EEPROM CMD not busy\n",
1596 __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001597 return -ETIMEDOUT;
1598 }
1599 return 0;
1600}
1601
Jeff Garzikd5498be2006-04-20 17:39:14 -04001602static inline int smc911x_ethtool_write_eeprom_cmd(struct net_device *dev,
Colin Ian King73fc9812021-09-02 23:25:57 +01001603 int cmd, int addr)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001604{
Magnus Damm699559f2008-06-09 16:33:54 -07001605 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001606 int ret;
1607
Jeff Garzikd5498be2006-04-20 17:39:14 -04001608 if ((ret = smc911x_ethtool_wait_eeprom_ready(dev))!=0)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001609 return ret;
Magnus Damm699559f2008-06-09 16:33:54 -07001610 SMC_SET_E2P_CMD(lp, E2P_CMD_EPC_BUSY_ |
Jeff Garzikd5498be2006-04-20 17:39:14 -04001611 ((cmd) & (0x7<<28)) |
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001612 ((addr) & 0xFF));
1613 return 0;
1614}
1615
Jeff Garzikd5498be2006-04-20 17:39:14 -04001616static inline int smc911x_ethtool_read_eeprom_byte(struct net_device *dev,
Colin Ian King73fc9812021-09-02 23:25:57 +01001617 u8 *data)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001618{
Magnus Damm699559f2008-06-09 16:33:54 -07001619 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001620 int ret;
1621
Jeff Garzikd5498be2006-04-20 17:39:14 -04001622 if ((ret = smc911x_ethtool_wait_eeprom_ready(dev))!=0)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001623 return ret;
Magnus Damm699559f2008-06-09 16:33:54 -07001624 *data = SMC_GET_E2P_DATA(lp);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001625 return 0;
1626}
1627
Jeff Garzikd5498be2006-04-20 17:39:14 -04001628static inline int smc911x_ethtool_write_eeprom_byte(struct net_device *dev,
Colin Ian King73fc9812021-09-02 23:25:57 +01001629 u8 data)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001630{
Magnus Damm699559f2008-06-09 16:33:54 -07001631 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001632 int ret;
1633
Jeff Garzikd5498be2006-04-20 17:39:14 -04001634 if ((ret = smc911x_ethtool_wait_eeprom_ready(dev))!=0)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001635 return ret;
Magnus Damm699559f2008-06-09 16:33:54 -07001636 SMC_SET_E2P_DATA(lp, data);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001637 return 0;
1638}
1639
Jeff Garzikd5498be2006-04-20 17:39:14 -04001640static int smc911x_ethtool_geteeprom(struct net_device *dev,
Colin Ian King73fc9812021-09-02 23:25:57 +01001641 struct ethtool_eeprom *eeprom, u8 *data)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001642{
1643 u8 eebuf[SMC911X_EEPROM_LEN];
1644 int i, ret;
1645
1646 for(i=0;i<SMC911X_EEPROM_LEN;i++) {
1647 if ((ret=smc911x_ethtool_write_eeprom_cmd(dev, E2P_CMD_EPC_CMD_READ_, i ))!=0)
1648 return ret;
1649 if ((ret=smc911x_ethtool_read_eeprom_byte(dev, &eebuf[i]))!=0)
1650 return ret;
Jakub Kicinski6dde7ac2022-01-31 13:17:30 -08001651 }
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001652 memcpy(data, eebuf+eeprom->offset, eeprom->len);
Jeff Garzikd5498be2006-04-20 17:39:14 -04001653 return 0;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001654}
1655
Jeff Garzikd5498be2006-04-20 17:39:14 -04001656static int smc911x_ethtool_seteeprom(struct net_device *dev,
Colin Ian King73fc9812021-09-02 23:25:57 +01001657 struct ethtool_eeprom *eeprom, u8 *data)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001658{
1659 int i, ret;
1660
1661 /* Enable erase */
1662 if ((ret=smc911x_ethtool_write_eeprom_cmd(dev, E2P_CMD_EPC_CMD_EWEN_, 0 ))!=0)
1663 return ret;
1664 for(i=eeprom->offset;i<(eeprom->offset+eeprom->len);i++) {
1665 /* erase byte */
1666 if ((ret=smc911x_ethtool_write_eeprom_cmd(dev, E2P_CMD_EPC_CMD_ERASE_, i ))!=0)
1667 return ret;
1668 /* write byte */
1669 if ((ret=smc911x_ethtool_write_eeprom_byte(dev, *data))!=0)
Jakub Kicinski6dde7ac2022-01-31 13:17:30 -08001670 return ret;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001671 if ((ret=smc911x_ethtool_write_eeprom_cmd(dev, E2P_CMD_EPC_CMD_WRITE_, i ))!=0)
1672 return ret;
Jakub Kicinski6dde7ac2022-01-31 13:17:30 -08001673 }
1674 return 0;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001675}
1676
1677static int smc911x_ethtool_geteeprom_len(struct net_device *dev)
1678{
1679 return SMC911X_EEPROM_LEN;
1680}
1681
Jeff Garzik7282d492006-09-13 14:30:00 -04001682static const struct ethtool_ops smc911x_ethtool_ops = {
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001683 .get_drvinfo = smc911x_ethtool_getdrvinfo,
1684 .get_msglevel = smc911x_ethtool_getmsglevel,
1685 .set_msglevel = smc911x_ethtool_setmsglevel,
1686 .nway_reset = smc911x_ethtool_nwayreset,
1687 .get_link = ethtool_op_get_link,
1688 .get_regs_len = smc911x_ethtool_getregslen,
1689 .get_regs = smc911x_ethtool_getregs,
1690 .get_eeprom_len = smc911x_ethtool_geteeprom_len,
1691 .get_eeprom = smc911x_ethtool_geteeprom,
1692 .set_eeprom = smc911x_ethtool_seteeprom,
Philippe Reynes9e0b5162017-02-28 23:49:38 +01001693 .get_link_ksettings = smc911x_ethtool_get_link_ksettings,
1694 .set_link_ksettings = smc911x_ethtool_set_link_ksettings,
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001695};
1696
1697/*
1698 * smc911x_findirq
1699 *
1700 * This routine has a simple purpose -- make the SMC chip generate an
1701 * interrupt, so an auto-detect routine can detect it, and find the IRQ,
1702 */
Bill Pemberton9f1e13d2012-12-03 09:23:39 -05001703static int smc911x_findirq(struct net_device *dev)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001704{
Magnus Damm699559f2008-06-09 16:33:54 -07001705 struct smc911x_local *lp = netdev_priv(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001706 int timeout = 20;
1707 unsigned long cookie;
1708
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001709 DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001710
1711 cookie = probe_irq_on();
1712
1713 /*
1714 * Force a SW interrupt
1715 */
1716
Magnus Damm699559f2008-06-09 16:33:54 -07001717 SMC_SET_INT_EN(lp, INT_EN_SW_INT_EN_);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001718
1719 /*
1720 * Wait until positive that the interrupt has been generated
1721 */
1722 do {
1723 int int_status;
1724 udelay(10);
Magnus Damm699559f2008-06-09 16:33:54 -07001725 int_status = SMC_GET_INT_EN(lp);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001726 if (int_status & INT_EN_SW_INT_EN_)
1727 break; /* got the interrupt */
1728 } while (--timeout);
1729
1730 /*
1731 * there is really nothing that I can do here if timeout fails,
1732 * as autoirq_report will return a 0 anyway, which is what I
1733 * want in this case. Plus, the clean up is needed in both
1734 * cases.
1735 */
1736
1737 /* and disable all interrupts again */
Magnus Damm699559f2008-06-09 16:33:54 -07001738 SMC_SET_INT_EN(lp, 0);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001739
1740 /* and return what I found */
1741 return probe_irq_off(cookie);
1742}
1743
Alexander Beregalovec4e0cf2009-04-15 12:52:59 +00001744static const struct net_device_ops smc911x_netdev_ops = {
1745 .ndo_open = smc911x_open,
1746 .ndo_stop = smc911x_close,
1747 .ndo_start_xmit = smc911x_hard_start_xmit,
1748 .ndo_tx_timeout = smc911x_timeout,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001749 .ndo_set_rx_mode = smc911x_set_multicast_list,
Alexander Beregalovec4e0cf2009-04-15 12:52:59 +00001750 .ndo_validate_addr = eth_validate_addr,
1751 .ndo_set_mac_address = eth_mac_addr,
1752#ifdef CONFIG_NET_POLL_CONTROLLER
1753 .ndo_poll_controller = smc911x_poll_controller,
1754#endif
1755};
1756
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001757/*
1758 * Function: smc911x_probe(unsigned long ioaddr)
1759 *
1760 * Purpose:
1761 * Tests to see if a given ioaddr points to an SMC911x chip.
1762 * Returns a 0 on success
1763 *
1764 * Algorithm:
1765 * (1) see if the endian word is OK
1766 * (1) see if I recognize the chip ID in the appropriate register
1767 *
1768 * Here I do typical initialization tasks.
1769 *
1770 * o Initialize the structure if needed
1771 * o print out my vanity message if not done so already
1772 * o print out what type of hardware is detected
1773 * o print out the ethernet address
1774 * o find the IRQ
1775 * o set up my private data
1776 * o configure the dev structure with my subroutines
1777 * o actually GRAB the irq.
1778 * o GRAB the region
1779 */
Bill Pemberton9f1e13d2012-12-03 09:23:39 -05001780static int smc911x_probe(struct net_device *dev)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001781{
1782 struct smc911x_local *lp = netdev_priv(dev);
1783 int i, retval;
1784 unsigned int val, chip_id, revision;
1785 const char *version_string;
Magnus Damm12c03f52008-06-09 16:33:55 -07001786 unsigned long irq_flags;
Arnd Bergmannabc34d72016-03-21 09:30:59 +01001787#ifdef SMC_USE_DMA
Robert Jarzmik79d3b592016-03-16 18:26:02 +01001788 struct dma_slave_config config;
1789 dma_cap_mask_t mask;
Arnd Bergmannabc34d72016-03-21 09:30:59 +01001790#endif
Jakub Kicinski02bfb6be2021-10-18 07:29:31 -07001791 u8 addr[ETH_ALEN];
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001792
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001793 DBG(SMC_DEBUG_FUNC, dev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001794
1795 /* First, see if the endian word is recognized */
Magnus Damm699559f2008-06-09 16:33:54 -07001796 val = SMC_GET_BYTE_TEST(lp);
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001797 DBG(SMC_DEBUG_MISC, dev, "%s: endian probe returned 0x%04x\n",
1798 CARDNAME, val);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001799 if (val != 0x87654321) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001800 netdev_err(dev, "Invalid chip endian 0x%08x\n", val);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001801 retval = -ENODEV;
1802 goto err_out;
1803 }
1804
1805 /*
1806 * check if the revision register is something that I
1807 * recognize. These might need to be added to later,
1808 * as future revisions could be added.
1809 */
Magnus Damm699559f2008-06-09 16:33:54 -07001810 chip_id = SMC_GET_PN(lp);
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001811 DBG(SMC_DEBUG_MISC, dev, "%s: id probe returned 0x%04x\n",
1812 CARDNAME, chip_id);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001813 for(i=0;chip_ids[i].id != 0; i++) {
1814 if (chip_ids[i].id == chip_id) break;
1815 }
1816 if (!chip_ids[i].id) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001817 netdev_err(dev, "Unknown chip ID %04x\n", chip_id);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001818 retval = -ENODEV;
1819 goto err_out;
1820 }
1821 version_string = chip_ids[i].name;
1822
Magnus Damm699559f2008-06-09 16:33:54 -07001823 revision = SMC_GET_REV(lp);
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001824 DBG(SMC_DEBUG_MISC, dev, "%s: revision = 0x%04x\n", CARDNAME, revision);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001825
1826 /* At this point I'll assume that the chip is an SMC911x. */
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001827 DBG(SMC_DEBUG_MISC, dev, "%s: Found a %s\n",
1828 CARDNAME, chip_ids[i].name);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001829
1830 /* Validate the TX FIFO size requested */
1831 if ((tx_fifo_kb < 2) || (tx_fifo_kb > 14)) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001832 netdev_err(dev, "Invalid TX FIFO size requested %d\n",
1833 tx_fifo_kb);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001834 retval = -EINVAL;
1835 goto err_out;
1836 }
Jeff Garzikd5498be2006-04-20 17:39:14 -04001837
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001838 /* fill in some of the fields */
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001839 lp->version = chip_ids[i].id;
1840 lp->revision = revision;
1841 lp->tx_fifo_kb = tx_fifo_kb;
1842 /* Reverse calculate the RX FIFO size from the TX */
1843 lp->tx_fifo_size=(lp->tx_fifo_kb<<10) - 512;
1844 lp->rx_fifo_size= ((0x4000 - 512 - lp->tx_fifo_size) / 16) * 15;
1845
1846 /* Set the automatic flow control values */
1847 switch(lp->tx_fifo_kb) {
Jeff Garzikd5498be2006-04-20 17:39:14 -04001848 /*
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001849 * AFC_HI is about ((Rx Data Fifo Size)*2/3)/64
1850 * AFC_LO is AFC_HI/2
1851 * BACK_DUR is about 5uS*(AFC_LO) rounded down
1852 */
1853 case 2:/* 13440 Rx Data Fifo Size */
1854 lp->afc_cfg=0x008C46AF;break;
1855 case 3:/* 12480 Rx Data Fifo Size */
1856 lp->afc_cfg=0x0082419F;break;
1857 case 4:/* 11520 Rx Data Fifo Size */
1858 lp->afc_cfg=0x00783C9F;break;
1859 case 5:/* 10560 Rx Data Fifo Size */
1860 lp->afc_cfg=0x006E374F;break;
1861 case 6:/* 9600 Rx Data Fifo Size */
1862 lp->afc_cfg=0x0064328F;break;
1863 case 7:/* 8640 Rx Data Fifo Size */
1864 lp->afc_cfg=0x005A2D7F;break;
1865 case 8:/* 7680 Rx Data Fifo Size */
1866 lp->afc_cfg=0x0050287F;break;
1867 case 9:/* 6720 Rx Data Fifo Size */
1868 lp->afc_cfg=0x0046236F;break;
1869 case 10:/* 5760 Rx Data Fifo Size */
1870 lp->afc_cfg=0x003C1E6F;break;
1871 case 11:/* 4800 Rx Data Fifo Size */
1872 lp->afc_cfg=0x0032195F;break;
Jeff Garzikd5498be2006-04-20 17:39:14 -04001873 /*
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001874 * AFC_HI is ~1520 bytes less than RX Data Fifo Size
1875 * AFC_LO is AFC_HI/2
1876 * BACK_DUR is about 5uS*(AFC_LO) rounded down
1877 */
1878 case 12:/* 3840 Rx Data Fifo Size */
1879 lp->afc_cfg=0x0024124F;break;
1880 case 13:/* 2880 Rx Data Fifo Size */
1881 lp->afc_cfg=0x0015073F;break;
1882 case 14:/* 1920 Rx Data Fifo Size */
1883 lp->afc_cfg=0x0006032F;break;
1884 default:
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001885 PRINTK(dev, "ERROR -- no AFC_CFG setting found");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001886 break;
1887 }
1888
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001889 DBG(SMC_DEBUG_MISC | SMC_DEBUG_TX | SMC_DEBUG_RX, dev,
1890 "%s: tx_fifo %d rx_fifo %d afc_cfg 0x%08x\n", CARDNAME,
1891 lp->tx_fifo_size, lp->rx_fifo_size, lp->afc_cfg);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001892
1893 spin_lock_init(&lp->lock);
1894
1895 /* Get the MAC address */
Jakub Kicinski02bfb6be2021-10-18 07:29:31 -07001896 SMC_GET_MAC_ADDR(lp, addr);
1897 eth_hw_addr_set(dev, addr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001898
1899 /* now, reset the chip, and put it into a known state */
1900 smc911x_reset(dev);
1901
1902 /*
1903 * If dev->irq is 0, then the device has to be banged on to see
1904 * what the IRQ is.
1905 *
1906 * Specifying an IRQ is done with the assumption that the user knows
1907 * what (s)he is doing. No checking is done!!!!
1908 */
1909 if (dev->irq < 1) {
1910 int trials;
1911
1912 trials = 3;
1913 while (trials--) {
Magnus Damm699559f2008-06-09 16:33:54 -07001914 dev->irq = smc911x_findirq(dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001915 if (dev->irq)
1916 break;
1917 /* kick the card and try again */
1918 smc911x_reset(dev);
1919 }
1920 }
1921 if (dev->irq == 0) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001922 netdev_warn(dev, "Couldn't autodetect your IRQ. Use irq=xx.\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001923 retval = -ENODEV;
1924 goto err_out;
1925 }
1926 dev->irq = irq_canonicalize(dev->irq);
1927
Alexander Beregalovec4e0cf2009-04-15 12:52:59 +00001928 dev->netdev_ops = &smc911x_netdev_ops;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001929 dev->watchdog_timeo = msecs_to_jiffies(watchdog);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001930 dev->ethtool_ops = &smc911x_ethtool_ops;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001931
Andrew Mortonef8142a2006-12-22 01:08:33 -08001932 INIT_WORK(&lp->phy_configure, smc911x_phy_configure);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001933 lp->mii.phy_id_mask = 0x1f;
1934 lp->mii.reg_num_mask = 0x1f;
1935 lp->mii.force_media = 0;
1936 lp->mii.full_duplex = 0;
1937 lp->mii.dev = dev;
1938 lp->mii.mdio_read = smc911x_phy_read;
1939 lp->mii.mdio_write = smc911x_phy_write;
1940
1941 /*
1942 * Locate the phy, if any.
1943 */
1944 smc911x_phy_detect(dev);
1945
1946 /* Set default parameters */
1947 lp->msg_enable = NETIF_MSG_LINK;
1948 lp->ctl_rfduplx = 1;
1949 lp->ctl_rspeed = 100;
1950
Magnus Damm12c03f52008-06-09 16:33:55 -07001951#ifdef SMC_DYNAMIC_BUS_CONFIG
1952 irq_flags = lp->cfg.irq_flags;
1953#else
1954 irq_flags = IRQF_SHARED | SMC_IRQ_SENSE;
1955#endif
1956
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001957 /* Grab the IRQ */
Joe Perchesa0607fd2009-11-18 23:29:17 -08001958 retval = request_irq(dev->irq, smc911x_interrupt,
Magnus Damm12c03f52008-06-09 16:33:55 -07001959 irq_flags, dev->name, dev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001960 if (retval)
1961 goto err_out;
1962
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001963#ifdef SMC_USE_DMA
Robert Jarzmik79d3b592016-03-16 18:26:02 +01001964
1965 dma_cap_zero(mask);
1966 dma_cap_set(DMA_SLAVE, mask);
Robert Jarzmik9d7bc29c2018-06-17 19:02:10 +02001967 lp->rxdma = dma_request_channel(mask, NULL, NULL);
1968 lp->txdma = dma_request_channel(mask, NULL, NULL);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001969 lp->rxdma_active = 0;
1970 lp->txdma_active = 0;
Robert Jarzmik79d3b592016-03-16 18:26:02 +01001971
1972 memset(&config, 0, sizeof(config));
1973 config.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1974 config.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1975 config.src_addr = lp->physaddr + RX_DATA_FIFO;
1976 config.dst_addr = lp->physaddr + TX_DATA_FIFO;
1977 config.src_maxburst = 32;
1978 config.dst_maxburst = 32;
1979 retval = dmaengine_slave_config(lp->rxdma, &config);
1980 if (retval) {
1981 dev_err(lp->dev, "dma rx channel configuration failed: %d\n",
1982 retval);
1983 goto err_out;
1984 }
1985 retval = dmaengine_slave_config(lp->txdma, &config);
1986 if (retval) {
1987 dev_err(lp->dev, "dma tx channel configuration failed: %d\n",
1988 retval);
1989 goto err_out;
1990 }
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001991#endif
1992
1993 retval = register_netdev(dev);
1994 if (retval == 0) {
1995 /* now, print out the card info, in a short format.. */
Ben Boeckeldcdf8712013-11-01 08:53:32 -04001996 netdev_info(dev, "%s (rev %d) at %#lx IRQ %d",
1997 version_string, lp->revision,
1998 dev->base_addr, dev->irq);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07001999
2000#ifdef SMC_USE_DMA
Robert Jarzmik79d3b592016-03-16 18:26:02 +01002001 if (lp->rxdma)
2002 pr_cont(" RXDMA %p", lp->rxdma);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002003
Robert Jarzmik79d3b592016-03-16 18:26:02 +01002004 if (lp->txdma)
2005 pr_cont(" TXDMA %p", lp->txdma);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002006#endif
Ben Boeckeldcdf8712013-11-01 08:53:32 -04002007 pr_cont("\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002008 if (!is_valid_ether_addr(dev->dev_addr)) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04002009 netdev_warn(dev, "Invalid ethernet MAC address. Please set using ifconfig\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002010 } else {
2011 /* Print the Ethernet address */
Ben Boeckeldcdf8712013-11-01 08:53:32 -04002012 netdev_info(dev, "Ethernet addr: %pM\n",
2013 dev->dev_addr);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002014 }
2015
2016 if (lp->phy_type == 0) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04002017 PRINTK(dev, "No PHY found\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002018 } else if ((lp->phy_type & ~0xff) == LAN911X_INTERNAL_PHY_ID) {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04002019 PRINTK(dev, "LAN911x Internal PHY\n");
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002020 } else {
Ben Boeckeldcdf8712013-11-01 08:53:32 -04002021 PRINTK(dev, "External PHY 0x%08x\n", lp->phy_type);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002022 }
2023 }
Jeff Garzikd5498be2006-04-20 17:39:14 -04002024
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002025err_out:
2026#ifdef SMC_USE_DMA
2027 if (retval) {
Robert Jarzmik79d3b592016-03-16 18:26:02 +01002028 if (lp->rxdma)
2029 dma_release_channel(lp->rxdma);
2030 if (lp->txdma)
2031 dma_release_channel(lp->txdma);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002032 }
2033#endif
2034 return retval;
2035}
2036
2037/*
Ben Boeckeldcdf8712013-11-01 08:53:32 -04002038 * smc911x_drv_probe(void)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002039 *
2040 * Output:
2041 * 0 --> there is a device
2042 * anything else, error
2043 */
Bill Pemberton9f1e13d2012-12-03 09:23:39 -05002044static int smc911x_drv_probe(struct platform_device *pdev)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002045{
2046 struct net_device *ndev;
2047 struct resource *res;
Andrew Mortonef8142a2006-12-22 01:08:33 -08002048 struct smc911x_local *lp;
Fabio Estevam6b807782013-01-17 16:46:02 +00002049 void __iomem *addr;
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002050 int ret;
2051
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002052 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2053 if (!res) {
2054 ret = -ENODEV;
2055 goto out;
2056 }
2057
2058 /*
2059 * Request the regions.
2060 */
2061 if (!request_mem_region(res->start, SMC911X_IO_EXTENT, CARDNAME)) {
2062 ret = -EBUSY;
2063 goto out;
2064 }
2065
2066 ndev = alloc_etherdev(sizeof(struct smc911x_local));
2067 if (!ndev) {
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002068 ret = -ENOMEM;
2069 goto release_1;
2070 }
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002071 SET_NETDEV_DEV(ndev, &pdev->dev);
2072
2073 ndev->dma = (unsigned char)-1;
2074 ndev->irq = platform_get_irq(pdev, 0);
Jiasheng Jiangcb93b3e2021-12-22 15:41:12 +08002075 if (ndev->irq < 0) {
2076 ret = ndev->irq;
2077 goto release_both;
2078 }
2079
Andrew Mortonef8142a2006-12-22 01:08:33 -08002080 lp = netdev_priv(ndev);
2081 lp->netdev = ndev;
Magnus Damm12c03f52008-06-09 16:33:55 -07002082#ifdef SMC_DYNAMIC_BUS_CONFIG
Andrew Mortona3160842008-12-01 12:24:46 +00002083 {
Jingoo Hanc82e5e52013-08-30 14:02:06 +09002084 struct smc911x_platdata *pd = dev_get_platdata(&pdev->dev);
Andrew Mortona3160842008-12-01 12:24:46 +00002085 if (!pd) {
2086 ret = -EINVAL;
2087 goto release_both;
2088 }
2089 memcpy(&lp->cfg, pd, sizeof(lp->cfg));
Magnus Damm12c03f52008-06-09 16:33:55 -07002090 }
Magnus Damm12c03f52008-06-09 16:33:55 -07002091#endif
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002092
2093 addr = ioremap(res->start, SMC911X_IO_EXTENT);
2094 if (!addr) {
2095 ret = -ENOMEM;
2096 goto release_both;
2097 }
2098
2099 platform_set_drvdata(pdev, ndev);
Magnus Damm699559f2008-06-09 16:33:54 -07002100 lp->base = addr;
2101 ndev->base_addr = res->start;
2102 ret = smc911x_probe(ndev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002103 if (ret != 0) {
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002104 iounmap(addr);
2105release_both:
2106 free_netdev(ndev);
2107release_1:
2108 release_mem_region(res->start, SMC911X_IO_EXTENT);
2109out:
Ben Boeckeldcdf8712013-11-01 08:53:32 -04002110 pr_info("%s: not found (%d).\n", CARDNAME, ret);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002111 }
2112#ifdef SMC_USE_DMA
2113 else {
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002114 lp->physaddr = res->start;
2115 lp->dev = &pdev->dev;
2116 }
2117#endif
2118
2119 return ret;
2120}
2121
Bill Pemberton9f1e13d2012-12-03 09:23:39 -05002122static int smc911x_drv_remove(struct platform_device *pdev)
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002123{
2124 struct net_device *ndev = platform_get_drvdata(pdev);
Magnus Damm699559f2008-06-09 16:33:54 -07002125 struct smc911x_local *lp = netdev_priv(ndev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002126 struct resource *res;
2127
Ben Boeckeldcdf8712013-11-01 08:53:32 -04002128 DBG(SMC_DEBUG_FUNC, ndev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002129
2130 unregister_netdev(ndev);
2131
2132 free_irq(ndev->irq, ndev);
2133
2134#ifdef SMC_USE_DMA
2135 {
Robert Jarzmik79d3b592016-03-16 18:26:02 +01002136 if (lp->rxdma)
2137 dma_release_channel(lp->rxdma);
2138 if (lp->txdma)
2139 dma_release_channel(lp->txdma);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002140 }
2141#endif
Magnus Damm699559f2008-06-09 16:33:54 -07002142 iounmap(lp->base);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002143 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2144 release_mem_region(res->start, SMC911X_IO_EXTENT);
2145
2146 free_netdev(ndev);
2147 return 0;
2148}
2149
2150static int smc911x_drv_suspend(struct platform_device *dev, pm_message_t state)
2151{
2152 struct net_device *ndev = platform_get_drvdata(dev);
Magnus Damm699559f2008-06-09 16:33:54 -07002153 struct smc911x_local *lp = netdev_priv(ndev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002154
Ben Boeckeldcdf8712013-11-01 08:53:32 -04002155 DBG(SMC_DEBUG_FUNC, ndev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002156 if (ndev) {
2157 if (netif_running(ndev)) {
2158 netif_device_detach(ndev);
2159 smc911x_shutdown(ndev);
2160#if POWER_DOWN
2161 /* Set D2 - Energy detect only setting */
Magnus Damm699559f2008-06-09 16:33:54 -07002162 SMC_SET_PMT_CTRL(lp, 2<<12);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002163#endif
2164 }
2165 }
2166 return 0;
2167}
2168
2169static int smc911x_drv_resume(struct platform_device *dev)
2170{
2171 struct net_device *ndev = platform_get_drvdata(dev);
2172
Ben Boeckeldcdf8712013-11-01 08:53:32 -04002173 DBG(SMC_DEBUG_FUNC, ndev, "--> %s\n", __func__);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002174 if (ndev) {
2175 struct smc911x_local *lp = netdev_priv(ndev);
2176
2177 if (netif_running(ndev)) {
2178 smc911x_reset(ndev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002179 if (lp->phy_type != 0)
Andrew Mortonef8142a2006-12-22 01:08:33 -08002180 smc911x_phy_configure(&lp->phy_configure);
Dasgupta, Romit347c8d82008-11-06 15:46:18 +05302181 smc911x_enable(ndev);
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002182 netif_device_attach(ndev);
2183 }
2184 }
2185 return 0;
2186}
2187
2188static struct platform_driver smc911x_driver = {
2189 .probe = smc911x_drv_probe,
Bill Pemberton9f1e13d2012-12-03 09:23:39 -05002190 .remove = smc911x_drv_remove,
Dustin McIntire0a0c72c2006-04-19 20:24:51 -07002191 .suspend = smc911x_drv_suspend,
2192 .resume = smc911x_drv_resume,
2193 .driver = {
2194 .name = CARDNAME,
2195 },
2196};
Jeff Garzikd5498be2006-04-20 17:39:14 -04002197
Axel Lindb62f682011-11-27 16:44:17 +00002198module_platform_driver(smc911x_driver);