1 /* Copyright (c) 2013-2016, The Linux Foundation. All rights reserved.
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
13 /* Qualcomm Technologies, Inc. EMAC Gigabit Ethernet Driver */
15 #include <linux/if_ether.h>
16 #include <linux/if_vlan.h>
17 #include <linux/interrupt.h>
19 #include <linux/module.h>
21 #include <linux/of_net.h>
22 #include <linux/of_device.h>
23 #include <linux/phy.h>
24 #include <linux/platform_device.h>
25 #include <linux/acpi.h>
29 #include "emac-sgmii.h"
31 #define EMAC_MSG_DEFAULT (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK | \
32 NETIF_MSG_TIMER | NETIF_MSG_IFDOWN | NETIF_MSG_IFUP)
34 #define EMAC_RRD_SIZE 4
35 /* The RRD size if timestamping is enabled: */
36 #define EMAC_TS_RRD_SIZE 6
37 #define EMAC_TPD_SIZE 4
38 #define EMAC_RFD_SIZE 2
40 #define REG_MAC_RX_STATUS_BIN EMAC_RXMAC_STATC_REG0
41 #define REG_MAC_RX_STATUS_END EMAC_RXMAC_STATC_REG22
42 #define REG_MAC_TX_STATUS_BIN EMAC_TXMAC_STATC_REG0
43 #define REG_MAC_TX_STATUS_END EMAC_TXMAC_STATC_REG24
45 #define RXQ0_NUM_RFD_PREF_DEF 8
46 #define TXQ0_NUM_TPD_PREF_DEF 5
48 #define EMAC_PREAMBLE_DEF 7
50 #define DMAR_DLY_CNT_DEF 15
51 #define DMAW_DLY_CNT_DEF 4
53 #define IMR_NORMAL_MASK (ISR_ERROR | ISR_OVER | ISR_TX_PKT)
75 /* in sync with enum emac_clk_id */
76 static const char * const emac_clk_name
[] = {
77 "axi_clk", "cfg_ahb_clk", "high_speed_clk", "mdio_clk", "tx_clk",
81 void emac_reg_update32(void __iomem
*addr
, u32 mask
, u32 val
)
83 u32 data
= readl(addr
);
85 writel(((data
& ~mask
) | val
), addr
);
89 int emac_reinit_locked(struct emac_adapter
*adpt
)
93 mutex_lock(&adpt
->reset_lock
);
96 emac_sgmii_reset(adpt
);
97 ret
= emac_mac_up(adpt
);
99 mutex_unlock(&adpt
->reset_lock
);
105 static int emac_napi_rtx(struct napi_struct
*napi
, int budget
)
107 struct emac_rx_queue
*rx_q
=
108 container_of(napi
, struct emac_rx_queue
, napi
);
109 struct emac_adapter
*adpt
= netdev_priv(rx_q
->netdev
);
110 struct emac_irq
*irq
= rx_q
->irq
;
113 emac_mac_rx_process(adpt
, rx_q
, &work_done
, budget
);
115 if (work_done
< budget
) {
116 napi_complete_done(napi
, work_done
);
118 irq
->mask
|= rx_q
->intr
;
119 writel(irq
->mask
, adpt
->base
+ EMAC_INT_MASK
);
125 /* Transmit the packet */
126 static int emac_start_xmit(struct sk_buff
*skb
, struct net_device
*netdev
)
128 struct emac_adapter
*adpt
= netdev_priv(netdev
);
130 return emac_mac_tx_buf_send(adpt
, &adpt
->tx_q
, skb
);
133 static irqreturn_t
emac_isr(int _irq
, void *data
)
135 struct emac_irq
*irq
= data
;
136 struct emac_adapter
*adpt
=
137 container_of(irq
, struct emac_adapter
, irq
);
138 struct emac_rx_queue
*rx_q
= &adpt
->rx_q
;
141 /* disable the interrupt */
142 writel(0, adpt
->base
+ EMAC_INT_MASK
);
144 isr
= readl_relaxed(adpt
->base
+ EMAC_INT_STATUS
);
146 status
= isr
& irq
->mask
;
150 if (status
& ISR_ERROR
) {
151 net_err_ratelimited("%s: error interrupt 0x%lx\n",
152 adpt
->netdev
->name
, status
& ISR_ERROR
);
154 schedule_work(&adpt
->work_thread
);
157 /* Schedule the napi for receive queue with interrupt
160 if (status
& rx_q
->intr
) {
161 if (napi_schedule_prep(&rx_q
->napi
)) {
162 irq
->mask
&= ~rx_q
->intr
;
163 __napi_schedule(&rx_q
->napi
);
167 if (status
& TX_PKT_INT
)
168 emac_mac_tx_process(adpt
, &adpt
->tx_q
);
170 if (status
& ISR_OVER
)
171 net_warn_ratelimited("%s: TX/RX overflow interrupt\n",
175 /* enable the interrupt */
176 writel(irq
->mask
, adpt
->base
+ EMAC_INT_MASK
);
181 /* Configure VLAN tag strip/insert feature */
182 static int emac_set_features(struct net_device
*netdev
,
183 netdev_features_t features
)
185 netdev_features_t changed
= features
^ netdev
->features
;
186 struct emac_adapter
*adpt
= netdev_priv(netdev
);
188 /* We only need to reprogram the hardware if the VLAN tag features
189 * have changed, and if it's already running.
191 if (!(changed
& (NETIF_F_HW_VLAN_CTAG_TX
| NETIF_F_HW_VLAN_CTAG_RX
)))
194 if (!netif_running(netdev
))
197 /* emac_mac_mode_config() uses netdev->features to configure the EMAC,
198 * so make sure it's set first.
200 netdev
->features
= features
;
202 return emac_reinit_locked(adpt
);
205 /* Configure Multicast and Promiscuous modes */
206 static void emac_rx_mode_set(struct net_device
*netdev
)
208 struct emac_adapter
*adpt
= netdev_priv(netdev
);
209 struct netdev_hw_addr
*ha
;
211 emac_mac_mode_config(adpt
);
213 /* update multicast address filtering */
214 emac_mac_multicast_addr_clear(adpt
);
215 netdev_for_each_mc_addr(ha
, netdev
)
216 emac_mac_multicast_addr_set(adpt
, ha
->addr
);
219 /* Change the Maximum Transfer Unit (MTU) */
220 static int emac_change_mtu(struct net_device
*netdev
, int new_mtu
)
222 struct emac_adapter
*adpt
= netdev_priv(netdev
);
224 netif_info(adpt
, hw
, adpt
->netdev
,
225 "changing MTU from %d to %d\n", netdev
->mtu
,
227 netdev
->mtu
= new_mtu
;
229 if (netif_running(netdev
))
230 return emac_reinit_locked(adpt
);
235 /* Called when the network interface is made active */
236 static int emac_open(struct net_device
*netdev
)
238 struct emac_adapter
*adpt
= netdev_priv(netdev
);
239 struct emac_irq
*irq
= &adpt
->irq
;
242 ret
= request_irq(irq
->irq
, emac_isr
, 0, "emac-core0", irq
);
244 netdev_err(adpt
->netdev
, "could not request emac-core0 irq\n");
248 /* allocate rx/tx dma buffer & descriptors */
249 ret
= emac_mac_rx_tx_rings_alloc_all(adpt
);
251 netdev_err(adpt
->netdev
, "error allocating rx/tx rings\n");
252 free_irq(irq
->irq
, irq
);
256 ret
= adpt
->phy
.open(adpt
);
258 emac_mac_rx_tx_rings_free_all(adpt
);
259 free_irq(irq
->irq
, irq
);
263 ret
= emac_mac_up(adpt
);
265 emac_mac_rx_tx_rings_free_all(adpt
);
266 free_irq(irq
->irq
, irq
);
267 adpt
->phy
.close(adpt
);
274 /* Called when the network interface is disabled */
275 static int emac_close(struct net_device
*netdev
)
277 struct emac_adapter
*adpt
= netdev_priv(netdev
);
279 mutex_lock(&adpt
->reset_lock
);
281 adpt
->phy
.close(adpt
);
283 emac_mac_rx_tx_rings_free_all(adpt
);
285 free_irq(adpt
->irq
.irq
, &adpt
->irq
);
287 mutex_unlock(&adpt
->reset_lock
);
292 /* Respond to a TX hang */
293 static void emac_tx_timeout(struct net_device
*netdev
)
295 struct emac_adapter
*adpt
= netdev_priv(netdev
);
297 schedule_work(&adpt
->work_thread
);
300 /* IOCTL support for the interface */
301 static int emac_ioctl(struct net_device
*netdev
, struct ifreq
*ifr
, int cmd
)
303 if (!netif_running(netdev
))
309 return phy_mii_ioctl(netdev
->phydev
, ifr
, cmd
);
313 * emac_update_hw_stats - read the EMAC stat registers
315 * Reads the stats registers and write the values to adpt->stats.
317 * adpt->stats.lock must be held while calling this function,
318 * and while reading from adpt->stats.
320 void emac_update_hw_stats(struct emac_adapter
*adpt
)
322 struct emac_stats
*stats
= &adpt
->stats
;
323 u64
*stats_itr
= &adpt
->stats
.rx_ok
;
324 void __iomem
*base
= adpt
->base
;
327 addr
= REG_MAC_RX_STATUS_BIN
;
328 while (addr
<= REG_MAC_RX_STATUS_END
) {
329 *stats_itr
+= readl_relaxed(base
+ addr
);
334 /* additional rx status */
335 stats
->rx_crc_align
+= readl_relaxed(base
+ EMAC_RXMAC_STATC_REG23
);
336 stats
->rx_jabbers
+= readl_relaxed(base
+ EMAC_RXMAC_STATC_REG24
);
338 /* update tx status */
339 addr
= REG_MAC_TX_STATUS_BIN
;
340 stats_itr
= &stats
->tx_ok
;
342 while (addr
<= REG_MAC_TX_STATUS_END
) {
343 *stats_itr
+= readl_relaxed(base
+ addr
);
348 /* additional tx status */
349 stats
->tx_col
+= readl_relaxed(base
+ EMAC_TXMAC_STATC_REG25
);
352 /* Provide network statistics info for the interface */
353 static void emac_get_stats64(struct net_device
*netdev
,
354 struct rtnl_link_stats64
*net_stats
)
356 struct emac_adapter
*adpt
= netdev_priv(netdev
);
357 struct emac_stats
*stats
= &adpt
->stats
;
359 spin_lock(&stats
->lock
);
361 emac_update_hw_stats(adpt
);
363 /* return parsed statistics */
364 net_stats
->rx_packets
= stats
->rx_ok
;
365 net_stats
->tx_packets
= stats
->tx_ok
;
366 net_stats
->rx_bytes
= stats
->rx_byte_cnt
;
367 net_stats
->tx_bytes
= stats
->tx_byte_cnt
;
368 net_stats
->multicast
= stats
->rx_mcast
;
369 net_stats
->collisions
= stats
->tx_1_col
+ stats
->tx_2_col
* 2 +
370 stats
->tx_late_col
+ stats
->tx_abort_col
;
372 net_stats
->rx_errors
= stats
->rx_frag
+ stats
->rx_fcs_err
+
373 stats
->rx_len_err
+ stats
->rx_sz_ov
+
375 net_stats
->rx_fifo_errors
= stats
->rx_rxf_ov
;
376 net_stats
->rx_length_errors
= stats
->rx_len_err
;
377 net_stats
->rx_crc_errors
= stats
->rx_fcs_err
;
378 net_stats
->rx_frame_errors
= stats
->rx_align_err
;
379 net_stats
->rx_over_errors
= stats
->rx_rxf_ov
;
380 net_stats
->rx_missed_errors
= stats
->rx_rxf_ov
;
382 net_stats
->tx_errors
= stats
->tx_late_col
+ stats
->tx_abort_col
+
383 stats
->tx_underrun
+ stats
->tx_trunc
;
384 net_stats
->tx_fifo_errors
= stats
->tx_underrun
;
385 net_stats
->tx_aborted_errors
= stats
->tx_abort_col
;
386 net_stats
->tx_window_errors
= stats
->tx_late_col
;
388 spin_unlock(&stats
->lock
);
391 static const struct net_device_ops emac_netdev_ops
= {
392 .ndo_open
= emac_open
,
393 .ndo_stop
= emac_close
,
394 .ndo_validate_addr
= eth_validate_addr
,
395 .ndo_start_xmit
= emac_start_xmit
,
396 .ndo_set_mac_address
= eth_mac_addr
,
397 .ndo_change_mtu
= emac_change_mtu
,
398 .ndo_do_ioctl
= emac_ioctl
,
399 .ndo_tx_timeout
= emac_tx_timeout
,
400 .ndo_get_stats64
= emac_get_stats64
,
401 .ndo_set_features
= emac_set_features
,
402 .ndo_set_rx_mode
= emac_rx_mode_set
,
405 /* Watchdog task routine, called to reinitialize the EMAC */
406 static void emac_work_thread(struct work_struct
*work
)
408 struct emac_adapter
*adpt
=
409 container_of(work
, struct emac_adapter
, work_thread
);
411 emac_reinit_locked(adpt
);
414 /* Initialize various data structures */
415 static void emac_init_adapter(struct emac_adapter
*adpt
)
419 adpt
->rrd_size
= EMAC_RRD_SIZE
;
420 adpt
->tpd_size
= EMAC_TPD_SIZE
;
421 adpt
->rfd_size
= EMAC_RFD_SIZE
;
424 adpt
->tx_desc_cnt
= EMAC_DEF_TX_DESCS
;
425 adpt
->rx_desc_cnt
= EMAC_DEF_RX_DESCS
;
428 adpt
->dma_order
= emac_dma_ord_out
;
429 adpt
->dmar_block
= emac_dma_req_4096
;
430 adpt
->dmaw_block
= emac_dma_req_128
;
431 adpt
->dmar_dly_cnt
= DMAR_DLY_CNT_DEF
;
432 adpt
->dmaw_dly_cnt
= DMAW_DLY_CNT_DEF
;
433 adpt
->tpd_burst
= TXQ0_NUM_TPD_PREF_DEF
;
434 adpt
->rfd_burst
= RXQ0_NUM_RFD_PREF_DEF
;
437 reg
= ((EMAC_DEF_RX_IRQ_MOD
>> 1) << IRQ_MODERATOR2_INIT_SHFT
) |
438 ((EMAC_DEF_TX_IRQ_MOD
>> 1) << IRQ_MODERATOR_INIT_SHFT
);
442 adpt
->preamble
= EMAC_PREAMBLE_DEF
;
444 /* default to automatic flow control */
445 adpt
->automatic
= true;
447 /* Disable single-pause-frame mode by default */
448 adpt
->single_pause_mode
= false;
452 static int emac_clks_get(struct platform_device
*pdev
,
453 struct emac_adapter
*adpt
)
457 for (i
= 0; i
< EMAC_CLK_CNT
; i
++) {
458 struct clk
*clk
= devm_clk_get(&pdev
->dev
, emac_clk_name
[i
]);
462 "could not claim clock %s (error=%li)\n",
463 emac_clk_name
[i
], PTR_ERR(clk
));
474 /* Initialize clocks */
475 static int emac_clks_phase1_init(struct platform_device
*pdev
,
476 struct emac_adapter
*adpt
)
480 /* On ACPI platforms, clocks are controlled by firmware and/or
481 * ACPI, not by drivers.
483 if (has_acpi_companion(&pdev
->dev
))
486 ret
= emac_clks_get(pdev
, adpt
);
490 ret
= clk_prepare_enable(adpt
->clk
[EMAC_CLK_AXI
]);
494 ret
= clk_prepare_enable(adpt
->clk
[EMAC_CLK_CFG_AHB
]);
498 ret
= clk_set_rate(adpt
->clk
[EMAC_CLK_HIGH_SPEED
], 19200000);
502 return clk_prepare_enable(adpt
->clk
[EMAC_CLK_HIGH_SPEED
]);
505 /* Enable clocks; needs emac_clks_phase1_init to be called before */
506 static int emac_clks_phase2_init(struct platform_device
*pdev
,
507 struct emac_adapter
*adpt
)
511 if (has_acpi_companion(&pdev
->dev
))
514 ret
= clk_set_rate(adpt
->clk
[EMAC_CLK_TX
], 125000000);
518 ret
= clk_prepare_enable(adpt
->clk
[EMAC_CLK_TX
]);
522 ret
= clk_set_rate(adpt
->clk
[EMAC_CLK_HIGH_SPEED
], 125000000);
526 ret
= clk_set_rate(adpt
->clk
[EMAC_CLK_MDIO
], 25000000);
530 ret
= clk_prepare_enable(adpt
->clk
[EMAC_CLK_MDIO
]);
534 ret
= clk_prepare_enable(adpt
->clk
[EMAC_CLK_RX
]);
538 return clk_prepare_enable(adpt
->clk
[EMAC_CLK_SYS
]);
541 static void emac_clks_teardown(struct emac_adapter
*adpt
)
546 for (i
= 0; i
< EMAC_CLK_CNT
; i
++)
547 clk_disable_unprepare(adpt
->clk
[i
]);
550 /* Get the resources */
551 static int emac_probe_resources(struct platform_device
*pdev
,
552 struct emac_adapter
*adpt
)
554 struct net_device
*netdev
= adpt
->netdev
;
555 struct resource
*res
;
556 char maddr
[ETH_ALEN
];
559 /* get mac address */
560 if (device_get_mac_address(&pdev
->dev
, maddr
, ETH_ALEN
))
561 ether_addr_copy(netdev
->dev_addr
, maddr
);
563 eth_hw_addr_random(netdev
);
565 /* Core 0 interrupt */
566 ret
= platform_get_irq(pdev
, 0);
569 "error: missing core0 irq resource (error=%i)\n", ret
);
574 /* base register address */
575 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
576 adpt
->base
= devm_ioremap_resource(&pdev
->dev
, res
);
577 if (IS_ERR(adpt
->base
))
578 return PTR_ERR(adpt
->base
);
580 /* CSR register address */
581 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
582 adpt
->csr
= devm_ioremap_resource(&pdev
->dev
, res
);
583 if (IS_ERR(adpt
->csr
))
584 return PTR_ERR(adpt
->csr
);
586 netdev
->base_addr
= (unsigned long)adpt
->base
;
591 static const struct of_device_id emac_dt_match
[] = {
593 .compatible
= "qcom,fsm9900-emac",
597 MODULE_DEVICE_TABLE(of
, emac_dt_match
);
599 #if IS_ENABLED(CONFIG_ACPI)
600 static const struct acpi_device_id emac_acpi_match
[] = {
606 MODULE_DEVICE_TABLE(acpi
, emac_acpi_match
);
609 static int emac_probe(struct platform_device
*pdev
)
611 struct net_device
*netdev
;
612 struct emac_adapter
*adpt
;
613 struct emac_sgmii
*phy
;
618 /* The TPD buffer address is limited to:
619 * 1. PTP: 45bits. (Driver doesn't support yet.)
620 * 2. NON-PTP: 46bits.
622 ret
= dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(46));
624 dev_err(&pdev
->dev
, "could not set DMA mask\n");
628 netdev
= alloc_etherdev(sizeof(struct emac_adapter
));
632 dev_set_drvdata(&pdev
->dev
, netdev
);
633 SET_NETDEV_DEV(netdev
, &pdev
->dev
);
634 emac_set_ethtool_ops(netdev
);
636 adpt
= netdev_priv(netdev
);
637 adpt
->netdev
= netdev
;
638 adpt
->msg_enable
= EMAC_MSG_DEFAULT
;
641 atomic_set(&phy
->decode_error_count
, 0);
643 mutex_init(&adpt
->reset_lock
);
644 spin_lock_init(&adpt
->stats
.lock
);
646 adpt
->irq
.mask
= RX_PKT_INT0
| IMR_NORMAL_MASK
;
648 ret
= emac_probe_resources(pdev
, adpt
);
650 goto err_undo_netdev
;
652 /* initialize clocks */
653 ret
= emac_clks_phase1_init(pdev
, adpt
);
655 dev_err(&pdev
->dev
, "could not initialize clocks\n");
656 goto err_undo_netdev
;
659 netdev
->watchdog_timeo
= EMAC_WATCHDOG_TIME
;
660 netdev
->irq
= adpt
->irq
.irq
;
662 netdev
->netdev_ops
= &emac_netdev_ops
;
664 emac_init_adapter(adpt
);
666 /* init external phy */
667 ret
= emac_phy_config(pdev
, adpt
);
669 goto err_undo_clocks
;
671 /* init internal sgmii phy */
672 ret
= emac_sgmii_config(pdev
, adpt
);
674 goto err_undo_mdiobus
;
677 ret
= emac_clks_phase2_init(pdev
, adpt
);
679 dev_err(&pdev
->dev
, "could not initialize clocks\n");
680 goto err_undo_mdiobus
;
683 /* set hw features */
684 netdev
->features
= NETIF_F_SG
| NETIF_F_HW_CSUM
| NETIF_F_RXCSUM
|
685 NETIF_F_TSO
| NETIF_F_TSO6
| NETIF_F_HW_VLAN_CTAG_RX
|
686 NETIF_F_HW_VLAN_CTAG_TX
;
687 netdev
->hw_features
= netdev
->features
;
689 netdev
->vlan_features
|= NETIF_F_SG
| NETIF_F_HW_CSUM
|
690 NETIF_F_TSO
| NETIF_F_TSO6
;
692 /* MTU range: 46 - 9194 */
693 netdev
->min_mtu
= EMAC_MIN_ETH_FRAME_SIZE
-
694 (ETH_HLEN
+ ETH_FCS_LEN
+ VLAN_HLEN
);
695 netdev
->max_mtu
= EMAC_MAX_ETH_FRAME_SIZE
-
696 (ETH_HLEN
+ ETH_FCS_LEN
+ VLAN_HLEN
);
698 INIT_WORK(&adpt
->work_thread
, emac_work_thread
);
700 /* Initialize queues */
701 emac_mac_rx_tx_ring_init_all(pdev
, adpt
);
703 netif_napi_add(netdev
, &adpt
->rx_q
.napi
, emac_napi_rtx
,
706 ret
= register_netdev(netdev
);
708 dev_err(&pdev
->dev
, "could not register net device\n");
712 reg
= readl_relaxed(adpt
->base
+ EMAC_DMA_MAS_CTRL
);
713 devid
= (reg
& DEV_ID_NUM_BMSK
) >> DEV_ID_NUM_SHFT
;
714 revid
= (reg
& DEV_REV_NUM_BMSK
) >> DEV_REV_NUM_SHFT
;
715 reg
= readl_relaxed(adpt
->base
+ EMAC_CORE_HW_VERSION
);
717 netif_info(adpt
, probe
, netdev
,
718 "hardware id %d.%d, hardware version %d.%d.%d\n",
720 (reg
& MAJOR_BMSK
) >> MAJOR_SHFT
,
721 (reg
& MINOR_BMSK
) >> MINOR_SHFT
,
722 (reg
& STEP_BMSK
) >> STEP_SHFT
);
727 netif_napi_del(&adpt
->rx_q
.napi
);
729 put_device(&adpt
->phydev
->mdio
.dev
);
730 mdiobus_unregister(adpt
->mii_bus
);
732 emac_clks_teardown(adpt
);
739 static int emac_remove(struct platform_device
*pdev
)
741 struct net_device
*netdev
= dev_get_drvdata(&pdev
->dev
);
742 struct emac_adapter
*adpt
= netdev_priv(netdev
);
744 unregister_netdev(netdev
);
745 netif_napi_del(&adpt
->rx_q
.napi
);
747 emac_clks_teardown(adpt
);
749 put_device(&adpt
->phydev
->mdio
.dev
);
750 mdiobus_unregister(adpt
->mii_bus
);
753 if (adpt
->phy
.digital
)
754 iounmap(adpt
->phy
.digital
);
755 iounmap(adpt
->phy
.base
);
760 static void emac_shutdown(struct platform_device
*pdev
)
762 struct net_device
*netdev
= dev_get_drvdata(&pdev
->dev
);
763 struct emac_adapter
*adpt
= netdev_priv(netdev
);
764 struct emac_sgmii
*sgmii
= &adpt
->phy
;
766 if (netdev
->flags
& IFF_UP
) {
767 /* Closing the SGMII turns off its interrupts */
770 /* Resetting the MAC turns off all DMA and its interrupts */
771 emac_mac_reset(adpt
);
775 static struct platform_driver emac_platform_driver
= {
777 .remove
= emac_remove
,
780 .of_match_table
= emac_dt_match
,
781 .acpi_match_table
= ACPI_PTR(emac_acpi_match
),
783 .shutdown
= emac_shutdown
,
786 module_platform_driver(emac_platform_driver
);
788 MODULE_LICENSE("GPL v2");
789 MODULE_ALIAS("platform:qcom-emac");