Linux Audio

Check our new training course

Loading...
v6.8
   1// SPDX-License-Identifier: GPL-2.0-or-later
   2/*
   3 * drivers/net/ethernet/ibm/emac/core.c
   4 *
   5 * Driver for PowerPC 4xx on-chip ethernet controller.
   6 *
   7 * Copyright 2007 Benjamin Herrenschmidt, IBM Corp.
   8 *                <benh@kernel.crashing.org>
   9 *
  10 * Based on the arch/ppc version of the driver:
  11 *
  12 * Copyright (c) 2004, 2005 Zultys Technologies.
  13 * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
  14 *
  15 * Based on original work by
  16 * 	Matt Porter <mporter@kernel.crashing.org>
  17 *	(c) 2003 Benjamin Herrenschmidt <benh@kernel.crashing.org>
  18 *      Armin Kuster <akuster@mvista.com>
  19 * 	Johnnie Peters <jpeters@mvista.com>
 
 
 
 
 
 
  20 */
  21
  22#include <linux/module.h>
  23#include <linux/sched.h>
  24#include <linux/string.h>
  25#include <linux/errno.h>
  26#include <linux/delay.h>
  27#include <linux/types.h>
  28#include <linux/pci.h>
  29#include <linux/etherdevice.h>
  30#include <linux/skbuff.h>
  31#include <linux/crc32.h>
  32#include <linux/ethtool.h>
  33#include <linux/mii.h>
  34#include <linux/bitops.h>
  35#include <linux/workqueue.h>
  36#include <linux/of.h>
  37#include <linux/of_address.h>
  38#include <linux/of_irq.h>
  39#include <linux/of_net.h>
  40#include <linux/of_mdio.h>
  41#include <linux/of_platform.h>
  42#include <linux/platform_device.h>
  43#include <linux/slab.h>
  44
  45#include <asm/processor.h>
  46#include <asm/io.h>
  47#include <asm/dma.h>
  48#include <linux/uaccess.h>
  49#include <asm/dcr.h>
  50#include <asm/dcr-regs.h>
  51
  52#include "core.h"
  53
  54/*
  55 * Lack of dma_unmap_???? calls is intentional.
  56 *
  57 * API-correct usage requires additional support state information to be
  58 * maintained for every RX and TX buffer descriptor (BD). Unfortunately, due to
  59 * EMAC design (e.g. TX buffer passed from network stack can be split into
  60 * several BDs, dma_map_single/dma_map_page can be used to map particular BD),
  61 * maintaining such information will add additional overhead.
  62 * Current DMA API implementation for 4xx processors only ensures cache coherency
  63 * and dma_unmap_???? routines are empty and are likely to stay this way.
  64 * I decided to omit dma_unmap_??? calls because I don't want to add additional
  65 * complexity just for the sake of following some abstract API, when it doesn't
  66 * add any real benefit to the driver. I understand that this decision maybe
  67 * controversial, but I really tried to make code API-correct and efficient
  68 * at the same time and didn't come up with code I liked :(.                --ebs
  69 */
  70
  71#define DRV_NAME        "emac"
  72#define DRV_VERSION     "3.54"
  73#define DRV_DESC        "PPC 4xx OCP EMAC driver"
  74
  75MODULE_DESCRIPTION(DRV_DESC);
  76MODULE_AUTHOR
  77    ("Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>");
  78MODULE_LICENSE("GPL");
  79
  80/* minimum number of free TX descriptors required to wake up TX process */
  81#define EMAC_TX_WAKEUP_THRESH		(NUM_TX_BUFF / 4)
  82
  83/* If packet size is less than this number, we allocate small skb and copy packet
  84 * contents into it instead of just sending original big skb up
  85 */
  86#define EMAC_RX_COPY_THRESH		CONFIG_IBM_EMAC_RX_COPY_THRESHOLD
  87
  88/* Since multiple EMACs share MDIO lines in various ways, we need
  89 * to avoid re-using the same PHY ID in cases where the arch didn't
  90 * setup precise phy_map entries
  91 *
  92 * XXX This is something that needs to be reworked as we can have multiple
  93 * EMAC "sets" (multiple ASICs containing several EMACs) though we can
  94 * probably require in that case to have explicit PHY IDs in the device-tree
  95 */
  96static u32 busy_phy_map;
  97static DEFINE_MUTEX(emac_phy_map_lock);
  98
  99/* This is the wait queue used to wait on any event related to probe, that
 100 * is discovery of MALs, other EMACs, ZMII/RGMIIs, etc...
 101 */
 102static DECLARE_WAIT_QUEUE_HEAD(emac_probe_wait);
 103
 104/* Having stable interface names is a doomed idea. However, it would be nice
 105 * if we didn't have completely random interface names at boot too :-) It's
 106 * just a matter of making everybody's life easier. Since we are doing
 107 * threaded probing, it's a bit harder though. The base idea here is that
 108 * we make up a list of all emacs in the device-tree before we register the
 109 * driver. Every emac will then wait for the previous one in the list to
 110 * initialize before itself. We should also keep that list ordered by
 111 * cell_index.
 112 * That list is only 4 entries long, meaning that additional EMACs don't
 113 * get ordering guarantees unless EMAC_BOOT_LIST_SIZE is increased.
 114 */
 115
 116#define EMAC_BOOT_LIST_SIZE	4
 117static struct device_node *emac_boot_list[EMAC_BOOT_LIST_SIZE];
 118
 119/* How long should I wait for dependent devices ? */
 120#define EMAC_PROBE_DEP_TIMEOUT	(HZ * 5)
 121
 122/* I don't want to litter system log with timeout errors
 123 * when we have brain-damaged PHY.
 124 */
 125static inline void emac_report_timeout_error(struct emac_instance *dev,
 126					     const char *error)
 127{
 128	if (emac_has_feature(dev, EMAC_FTR_440GX_PHY_CLK_FIX |
 129				  EMAC_FTR_460EX_PHY_CLK_FIX |
 130				  EMAC_FTR_440EP_PHY_CLK_FIX))
 131		DBG(dev, "%s" NL, error);
 132	else if (net_ratelimit())
 133		printk(KERN_ERR "%pOF: %s\n", dev->ofdev->dev.of_node, error);
 134}
 135
 136/* EMAC PHY clock workaround:
 137 * 440EP/440GR has more sane SDR0_MFR register implementation than 440GX,
 138 * which allows controlling each EMAC clock
 139 */
 140static inline void emac_rx_clk_tx(struct emac_instance *dev)
 141{
 142#ifdef CONFIG_PPC_DCR_NATIVE
 143	if (emac_has_feature(dev, EMAC_FTR_440EP_PHY_CLK_FIX))
 144		dcri_clrset(SDR0, SDR0_MFR,
 145			    0, SDR0_MFR_ECS >> dev->cell_index);
 146#endif
 147}
 148
 149static inline void emac_rx_clk_default(struct emac_instance *dev)
 150{
 151#ifdef CONFIG_PPC_DCR_NATIVE
 152	if (emac_has_feature(dev, EMAC_FTR_440EP_PHY_CLK_FIX))
 153		dcri_clrset(SDR0, SDR0_MFR,
 154			    SDR0_MFR_ECS >> dev->cell_index, 0);
 155#endif
 156}
 157
 158/* PHY polling intervals */
 159#define PHY_POLL_LINK_ON	HZ
 160#define PHY_POLL_LINK_OFF	(HZ / 5)
 161
 162/* Graceful stop timeouts in us.
 163 * We should allow up to 1 frame time (full-duplex, ignoring collisions)
 164 */
 165#define STOP_TIMEOUT_10		1230
 166#define STOP_TIMEOUT_100	124
 167#define STOP_TIMEOUT_1000	13
 168#define STOP_TIMEOUT_1000_JUMBO	73
 169
 170static unsigned char default_mcast_addr[] = {
 171	0x01, 0x80, 0xC2, 0x00, 0x00, 0x01
 172};
 173
 174/* Please, keep in sync with struct ibm_emac_stats/ibm_emac_error_stats */
 175static const char emac_stats_keys[EMAC_ETHTOOL_STATS_COUNT][ETH_GSTRING_LEN] = {
 176	"rx_packets", "rx_bytes", "tx_packets", "tx_bytes", "rx_packets_csum",
 177	"tx_packets_csum", "tx_undo", "rx_dropped_stack", "rx_dropped_oom",
 178	"rx_dropped_error", "rx_dropped_resize", "rx_dropped_mtu",
 179	"rx_stopped", "rx_bd_errors", "rx_bd_overrun", "rx_bd_bad_packet",
 180	"rx_bd_runt_packet", "rx_bd_short_event", "rx_bd_alignment_error",
 181	"rx_bd_bad_fcs", "rx_bd_packet_too_long", "rx_bd_out_of_range",
 182	"rx_bd_in_range", "rx_parity", "rx_fifo_overrun", "rx_overrun",
 183	"rx_bad_packet", "rx_runt_packet", "rx_short_event",
 184	"rx_alignment_error", "rx_bad_fcs", "rx_packet_too_long",
 185	"rx_out_of_range", "rx_in_range", "tx_dropped", "tx_bd_errors",
 186	"tx_bd_bad_fcs", "tx_bd_carrier_loss", "tx_bd_excessive_deferral",
 187	"tx_bd_excessive_collisions", "tx_bd_late_collision",
 188	"tx_bd_multple_collisions", "tx_bd_single_collision",
 189	"tx_bd_underrun", "tx_bd_sqe", "tx_parity", "tx_underrun", "tx_sqe",
 190	"tx_errors"
 191};
 192
 193static irqreturn_t emac_irq(int irq, void *dev_instance);
 194static void emac_clean_tx_ring(struct emac_instance *dev);
 195static void __emac_set_multicast_list(struct emac_instance *dev);
 196
 197static inline int emac_phy_supports_gige(int phy_mode)
 198{
 199	return  phy_interface_mode_is_rgmii(phy_mode) ||
 200		phy_mode == PHY_INTERFACE_MODE_GMII ||
 201		phy_mode == PHY_INTERFACE_MODE_SGMII ||
 202		phy_mode == PHY_INTERFACE_MODE_TBI ||
 203		phy_mode == PHY_INTERFACE_MODE_RTBI;
 204}
 205
 206static inline int emac_phy_gpcs(int phy_mode)
 207{
 208	return  phy_mode == PHY_INTERFACE_MODE_SGMII ||
 209		phy_mode == PHY_INTERFACE_MODE_TBI ||
 210		phy_mode == PHY_INTERFACE_MODE_RTBI;
 211}
 212
 213static inline void emac_tx_enable(struct emac_instance *dev)
 214{
 215	struct emac_regs __iomem *p = dev->emacp;
 216	u32 r;
 217
 218	DBG(dev, "tx_enable" NL);
 219
 220	r = in_be32(&p->mr0);
 221	if (!(r & EMAC_MR0_TXE))
 222		out_be32(&p->mr0, r | EMAC_MR0_TXE);
 223}
 224
 225static void emac_tx_disable(struct emac_instance *dev)
 226{
 227	struct emac_regs __iomem *p = dev->emacp;
 228	u32 r;
 229
 230	DBG(dev, "tx_disable" NL);
 231
 232	r = in_be32(&p->mr0);
 233	if (r & EMAC_MR0_TXE) {
 234		int n = dev->stop_timeout;
 235		out_be32(&p->mr0, r & ~EMAC_MR0_TXE);
 236		while (!(in_be32(&p->mr0) & EMAC_MR0_TXI) && n) {
 237			udelay(1);
 238			--n;
 239		}
 240		if (unlikely(!n))
 241			emac_report_timeout_error(dev, "TX disable timeout");
 242	}
 243}
 244
 245static void emac_rx_enable(struct emac_instance *dev)
 246{
 247	struct emac_regs __iomem *p = dev->emacp;
 248	u32 r;
 249
 250	if (unlikely(test_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags)))
 251		goto out;
 252
 253	DBG(dev, "rx_enable" NL);
 254
 255	r = in_be32(&p->mr0);
 256	if (!(r & EMAC_MR0_RXE)) {
 257		if (unlikely(!(r & EMAC_MR0_RXI))) {
 258			/* Wait if previous async disable is still in progress */
 259			int n = dev->stop_timeout;
 260			while (!(r = in_be32(&p->mr0) & EMAC_MR0_RXI) && n) {
 261				udelay(1);
 262				--n;
 263			}
 264			if (unlikely(!n))
 265				emac_report_timeout_error(dev,
 266							  "RX disable timeout");
 267		}
 268		out_be32(&p->mr0, r | EMAC_MR0_RXE);
 269	}
 270 out:
 271	;
 272}
 273
 274static void emac_rx_disable(struct emac_instance *dev)
 275{
 276	struct emac_regs __iomem *p = dev->emacp;
 277	u32 r;
 278
 279	DBG(dev, "rx_disable" NL);
 280
 281	r = in_be32(&p->mr0);
 282	if (r & EMAC_MR0_RXE) {
 283		int n = dev->stop_timeout;
 284		out_be32(&p->mr0, r & ~EMAC_MR0_RXE);
 285		while (!(in_be32(&p->mr0) & EMAC_MR0_RXI) && n) {
 286			udelay(1);
 287			--n;
 288		}
 289		if (unlikely(!n))
 290			emac_report_timeout_error(dev, "RX disable timeout");
 291	}
 292}
 293
 294static inline void emac_netif_stop(struct emac_instance *dev)
 295{
 296	netif_tx_lock_bh(dev->ndev);
 297	netif_addr_lock(dev->ndev);
 298	dev->no_mcast = 1;
 299	netif_addr_unlock(dev->ndev);
 300	netif_tx_unlock_bh(dev->ndev);
 301	netif_trans_update(dev->ndev);	/* prevent tx timeout */
 302	mal_poll_disable(dev->mal, &dev->commac);
 303	netif_tx_disable(dev->ndev);
 304}
 305
 306static inline void emac_netif_start(struct emac_instance *dev)
 307{
 308	netif_tx_lock_bh(dev->ndev);
 309	netif_addr_lock(dev->ndev);
 310	dev->no_mcast = 0;
 311	if (dev->mcast_pending && netif_running(dev->ndev))
 312		__emac_set_multicast_list(dev);
 313	netif_addr_unlock(dev->ndev);
 314	netif_tx_unlock_bh(dev->ndev);
 315
 316	netif_wake_queue(dev->ndev);
 317
 318	/* NOTE: unconditional netif_wake_queue is only appropriate
 319	 * so long as all callers are assured to have free tx slots
 320	 * (taken from tg3... though the case where that is wrong is
 321	 *  not terribly harmful)
 322	 */
 323	mal_poll_enable(dev->mal, &dev->commac);
 324}
 325
 326static inline void emac_rx_disable_async(struct emac_instance *dev)
 327{
 328	struct emac_regs __iomem *p = dev->emacp;
 329	u32 r;
 330
 331	DBG(dev, "rx_disable_async" NL);
 332
 333	r = in_be32(&p->mr0);
 334	if (r & EMAC_MR0_RXE)
 335		out_be32(&p->mr0, r & ~EMAC_MR0_RXE);
 336}
 337
 338static int emac_reset(struct emac_instance *dev)
 339{
 340	struct emac_regs __iomem *p = dev->emacp;
 341	int n = 20;
 342	bool __maybe_unused try_internal_clock = false;
 343
 344	DBG(dev, "reset" NL);
 345
 346	if (!dev->reset_failed) {
 347		/* 40x erratum suggests stopping RX channel before reset,
 348		 * we stop TX as well
 349		 */
 350		emac_rx_disable(dev);
 351		emac_tx_disable(dev);
 352	}
 353
 354#ifdef CONFIG_PPC_DCR_NATIVE
 355do_retry:
 356	/*
 357	 * PPC460EX/GT Embedded Processor Advanced User's Manual
 358	 * section 28.10.1 Mode Register 0 (EMACx_MR0) states:
 359	 * Note: The PHY must provide a TX Clk in order to perform a soft reset
 360	 * of the EMAC. If none is present, select the internal clock
 361	 * (SDR0_ETH_CFG[EMACx_PHY_CLK] = 1).
 362	 * After a soft reset, select the external clock.
 363	 *
 364	 * The AR8035-A PHY Meraki MR24 does not provide a TX Clk if the
 365	 * ethernet cable is not attached. This causes the reset to timeout
 366	 * and the PHY detection code in emac_init_phy() is unable to
 367	 * communicate and detect the AR8035-A PHY. As a result, the emac
 368	 * driver bails out early and the user has no ethernet.
 369	 * In order to stay compatible with existing configurations, the
 370	 * driver will temporarily switch to the internal clock, after
 371	 * the first reset fails.
 372	 */
 373	if (emac_has_feature(dev, EMAC_FTR_460EX_PHY_CLK_FIX)) {
 374		if (try_internal_clock || (dev->phy_address == 0xffffffff &&
 375					   dev->phy_map == 0xffffffff)) {
 376			/* No PHY: select internal loop clock before reset */
 377			dcri_clrset(SDR0, SDR0_ETH_CFG,
 378				    0, SDR0_ETH_CFG_ECS << dev->cell_index);
 379		} else {
 380			/* PHY present: select external clock before reset */
 381			dcri_clrset(SDR0, SDR0_ETH_CFG,
 382				    SDR0_ETH_CFG_ECS << dev->cell_index, 0);
 383		}
 384	}
 385#endif
 386
 387	out_be32(&p->mr0, EMAC_MR0_SRST);
 388	while ((in_be32(&p->mr0) & EMAC_MR0_SRST) && n)
 389		--n;
 390
 391#ifdef CONFIG_PPC_DCR_NATIVE
 392	if (emac_has_feature(dev, EMAC_FTR_460EX_PHY_CLK_FIX)) {
 393		if (!n && !try_internal_clock) {
 394			/* first attempt has timed out. */
 395			n = 20;
 396			try_internal_clock = true;
 397			goto do_retry;
 398		}
 399
 400		if (try_internal_clock || (dev->phy_address == 0xffffffff &&
 401					   dev->phy_map == 0xffffffff)) {
 402			/* No PHY: restore external clock source after reset */
 403			dcri_clrset(SDR0, SDR0_ETH_CFG,
 404				    SDR0_ETH_CFG_ECS << dev->cell_index, 0);
 405		}
 406	}
 407#endif
 408
 409	if (n) {
 410		dev->reset_failed = 0;
 411		return 0;
 412	} else {
 413		emac_report_timeout_error(dev, "reset timeout");
 414		dev->reset_failed = 1;
 415		return -ETIMEDOUT;
 416	}
 417}
 418
 419static void emac_hash_mc(struct emac_instance *dev)
 420{
 421	const int regs = EMAC_XAHT_REGS(dev);
 422	u32 *gaht_base = emac_gaht_base(dev);
 423	u32 gaht_temp[EMAC_XAHT_MAX_REGS];
 424	struct netdev_hw_addr *ha;
 425	int i;
 426
 427	DBG(dev, "hash_mc %d" NL, netdev_mc_count(dev->ndev));
 428
 429	memset(gaht_temp, 0, sizeof (gaht_temp));
 430
 431	netdev_for_each_mc_addr(ha, dev->ndev) {
 432		int slot, reg, mask;
 433		DBG2(dev, "mc %pM" NL, ha->addr);
 434
 435		slot = EMAC_XAHT_CRC_TO_SLOT(dev,
 436					     ether_crc(ETH_ALEN, ha->addr));
 437		reg = EMAC_XAHT_SLOT_TO_REG(dev, slot);
 438		mask = EMAC_XAHT_SLOT_TO_MASK(dev, slot);
 439
 440		gaht_temp[reg] |= mask;
 441	}
 442
 443	for (i = 0; i < regs; i++)
 444		out_be32(gaht_base + i, gaht_temp[i]);
 445}
 446
 447static inline u32 emac_iff2rmr(struct net_device *ndev)
 448{
 449	struct emac_instance *dev = netdev_priv(ndev);
 450	u32 r;
 451
 452	r = EMAC_RMR_SP | EMAC_RMR_SFCS | EMAC_RMR_IAE | EMAC_RMR_BAE;
 453
 454	if (emac_has_feature(dev, EMAC_FTR_EMAC4))
 455	    r |= EMAC4_RMR_BASE;
 456	else
 457	    r |= EMAC_RMR_BASE;
 458
 459	if (ndev->flags & IFF_PROMISC)
 460		r |= EMAC_RMR_PME;
 461	else if (ndev->flags & IFF_ALLMULTI ||
 462			 (netdev_mc_count(ndev) > EMAC_XAHT_SLOTS(dev)))
 463		r |= EMAC_RMR_PMME;
 464	else if (!netdev_mc_empty(ndev))
 465		r |= EMAC_RMR_MAE;
 466
 467	if (emac_has_feature(dev, EMAC_APM821XX_REQ_JUMBO_FRAME_SIZE)) {
 468		r &= ~EMAC4_RMR_MJS_MASK;
 469		r |= EMAC4_RMR_MJS(ndev->mtu);
 470	}
 471
 472	return r;
 473}
 474
 475static u32 __emac_calc_base_mr1(struct emac_instance *dev, int tx_size, int rx_size)
 476{
 477	u32 ret = EMAC_MR1_VLE | EMAC_MR1_IST | EMAC_MR1_TR0_MULT;
 478
 479	DBG2(dev, "__emac_calc_base_mr1" NL);
 480
 481	switch(tx_size) {
 482	case 2048:
 483		ret |= EMAC_MR1_TFS_2K;
 484		break;
 485	default:
 486		printk(KERN_WARNING "%s: Unknown Tx FIFO size %d\n",
 487		       dev->ndev->name, tx_size);
 488	}
 489
 490	switch(rx_size) {
 491	case 16384:
 492		ret |= EMAC_MR1_RFS_16K;
 493		break;
 
 
 
 494	case 4096:
 495		ret |= EMAC_MR1_RFS_4K;
 496		break;
 497	default:
 498		printk(KERN_WARNING "%s: Unknown Rx FIFO size %d\n",
 499		       dev->ndev->name, rx_size);
 500	}
 501
 502	return ret;
 503}
 504
 505static u32 __emac4_calc_base_mr1(struct emac_instance *dev, int tx_size, int rx_size)
 506{
 507	u32 ret = EMAC_MR1_VLE | EMAC_MR1_IST | EMAC4_MR1_TR |
 508		EMAC4_MR1_OBCI(dev->opb_bus_freq / 1000000);
 509
 510	DBG2(dev, "__emac4_calc_base_mr1" NL);
 511
 512	switch(tx_size) {
 513	case 16384:
 514		ret |= EMAC4_MR1_TFS_16K;
 515		break;
 516	case 8192:
 517		ret |= EMAC4_MR1_TFS_8K;
 518		break;
 519	case 4096:
 520		ret |= EMAC4_MR1_TFS_4K;
 521		break;
 522	case 2048:
 523		ret |= EMAC4_MR1_TFS_2K;
 524		break;
 525	default:
 526		printk(KERN_WARNING "%s: Unknown Tx FIFO size %d\n",
 527		       dev->ndev->name, tx_size);
 528	}
 529
 530	switch(rx_size) {
 531	case 16384:
 532		ret |= EMAC4_MR1_RFS_16K;
 533		break;
 534	case 8192:
 535		ret |= EMAC4_MR1_RFS_8K;
 536		break;
 537	case 4096:
 538		ret |= EMAC4_MR1_RFS_4K;
 539		break;
 540	case 2048:
 541		ret |= EMAC4_MR1_RFS_2K;
 542		break;
 543	default:
 544		printk(KERN_WARNING "%s: Unknown Rx FIFO size %d\n",
 545		       dev->ndev->name, rx_size);
 546	}
 547
 548	return ret;
 549}
 550
 551static u32 emac_calc_base_mr1(struct emac_instance *dev, int tx_size, int rx_size)
 552{
 553	return emac_has_feature(dev, EMAC_FTR_EMAC4) ?
 554		__emac4_calc_base_mr1(dev, tx_size, rx_size) :
 555		__emac_calc_base_mr1(dev, tx_size, rx_size);
 556}
 557
 558static inline u32 emac_calc_trtr(struct emac_instance *dev, unsigned int size)
 559{
 560	if (emac_has_feature(dev, EMAC_FTR_EMAC4))
 561		return ((size >> 6) - 1) << EMAC_TRTR_SHIFT_EMAC4;
 562	else
 563		return ((size >> 6) - 1) << EMAC_TRTR_SHIFT;
 564}
 565
 566static inline u32 emac_calc_rwmr(struct emac_instance *dev,
 567				 unsigned int low, unsigned int high)
 568{
 569	if (emac_has_feature(dev, EMAC_FTR_EMAC4))
 570		return (low << 22) | ( (high & 0x3ff) << 6);
 571	else
 572		return (low << 23) | ( (high & 0x1ff) << 7);
 573}
 574
 575static int emac_configure(struct emac_instance *dev)
 576{
 577	struct emac_regs __iomem *p = dev->emacp;
 578	struct net_device *ndev = dev->ndev;
 579	int tx_size, rx_size, link = netif_carrier_ok(dev->ndev);
 580	u32 r, mr1 = 0;
 581
 582	DBG(dev, "configure" NL);
 583
 584	if (!link) {
 585		out_be32(&p->mr1, in_be32(&p->mr1)
 586			 | EMAC_MR1_FDE | EMAC_MR1_ILE);
 587		udelay(100);
 588	} else if (emac_reset(dev) < 0)
 589		return -ETIMEDOUT;
 590
 591	if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
 592		tah_reset(dev->tah_dev);
 593
 594	DBG(dev, " link = %d duplex = %d, pause = %d, asym_pause = %d\n",
 595	    link, dev->phy.duplex, dev->phy.pause, dev->phy.asym_pause);
 596
 597	/* Default fifo sizes */
 598	tx_size = dev->tx_fifo_size;
 599	rx_size = dev->rx_fifo_size;
 600
 601	/* No link, force loopback */
 602	if (!link)
 603		mr1 = EMAC_MR1_FDE | EMAC_MR1_ILE;
 604
 605	/* Check for full duplex */
 606	else if (dev->phy.duplex == DUPLEX_FULL)
 607		mr1 |= EMAC_MR1_FDE | EMAC_MR1_MWSW_001;
 608
 609	/* Adjust fifo sizes, mr1 and timeouts based on link speed */
 610	dev->stop_timeout = STOP_TIMEOUT_10;
 611	switch (dev->phy.speed) {
 612	case SPEED_1000:
 613		if (emac_phy_gpcs(dev->phy.mode)) {
 614			mr1 |= EMAC_MR1_MF_1000GPCS | EMAC_MR1_MF_IPPA(
 615				(dev->phy.gpcs_address != 0xffffffff) ?
 616				 dev->phy.gpcs_address : dev->phy.address);
 617
 618			/* Put some arbitrary OUI, Manuf & Rev IDs so we can
 619			 * identify this GPCS PHY later.
 620			 */
 621			out_be32(&p->u1.emac4.ipcr, 0xdeadbeef);
 622		} else
 623			mr1 |= EMAC_MR1_MF_1000;
 624
 625		/* Extended fifo sizes */
 626		tx_size = dev->tx_fifo_size_gige;
 627		rx_size = dev->rx_fifo_size_gige;
 628
 629		if (dev->ndev->mtu > ETH_DATA_LEN) {
 630			if (emac_has_feature(dev, EMAC_FTR_EMAC4))
 631				mr1 |= EMAC4_MR1_JPSM;
 632			else
 633				mr1 |= EMAC_MR1_JPSM;
 634			dev->stop_timeout = STOP_TIMEOUT_1000_JUMBO;
 635		} else
 636			dev->stop_timeout = STOP_TIMEOUT_1000;
 637		break;
 638	case SPEED_100:
 639		mr1 |= EMAC_MR1_MF_100;
 640		dev->stop_timeout = STOP_TIMEOUT_100;
 641		break;
 642	default: /* make gcc happy */
 643		break;
 644	}
 645
 646	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
 647		rgmii_set_speed(dev->rgmii_dev, dev->rgmii_port,
 648				dev->phy.speed);
 649	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
 650		zmii_set_speed(dev->zmii_dev, dev->zmii_port, dev->phy.speed);
 651
 652	/* on 40x erratum forces us to NOT use integrated flow control,
 653	 * let's hope it works on 44x ;)
 654	 */
 655	if (!emac_has_feature(dev, EMAC_FTR_NO_FLOW_CONTROL_40x) &&
 656	    dev->phy.duplex == DUPLEX_FULL) {
 657		if (dev->phy.pause)
 658			mr1 |= EMAC_MR1_EIFC | EMAC_MR1_APP;
 659		else if (dev->phy.asym_pause)
 660			mr1 |= EMAC_MR1_APP;
 661	}
 662
 663	/* Add base settings & fifo sizes & program MR1 */
 664	mr1 |= emac_calc_base_mr1(dev, tx_size, rx_size);
 665	out_be32(&p->mr1, mr1);
 666
 667	/* Set individual MAC address */
 668	out_be32(&p->iahr, (ndev->dev_addr[0] << 8) | ndev->dev_addr[1]);
 669	out_be32(&p->ialr, (ndev->dev_addr[2] << 24) |
 670		 (ndev->dev_addr[3] << 16) | (ndev->dev_addr[4] << 8) |
 671		 ndev->dev_addr[5]);
 672
 673	/* VLAN Tag Protocol ID */
 674	out_be32(&p->vtpid, 0x8100);
 675
 676	/* Receive mode register */
 677	r = emac_iff2rmr(ndev);
 678	if (r & EMAC_RMR_MAE)
 679		emac_hash_mc(dev);
 680	out_be32(&p->rmr, r);
 681
 682	/* FIFOs thresholds */
 683	if (emac_has_feature(dev, EMAC_FTR_EMAC4))
 684		r = EMAC4_TMR1((dev->mal_burst_size / dev->fifo_entry_size) + 1,
 685			       tx_size / 2 / dev->fifo_entry_size);
 686	else
 687		r = EMAC_TMR1((dev->mal_burst_size / dev->fifo_entry_size) + 1,
 688			      tx_size / 2 / dev->fifo_entry_size);
 689	out_be32(&p->tmr1, r);
 690	out_be32(&p->trtr, emac_calc_trtr(dev, tx_size / 2));
 691
 692	/* PAUSE frame is sent when RX FIFO reaches its high-water mark,
 693	   there should be still enough space in FIFO to allow the our link
 694	   partner time to process this frame and also time to send PAUSE
 695	   frame itself.
 696
 697	   Here is the worst case scenario for the RX FIFO "headroom"
 698	   (from "The Switch Book") (100Mbps, without preamble, inter-frame gap):
 699
 700	   1) One maximum-length frame on TX                    1522 bytes
 701	   2) One PAUSE frame time                                64 bytes
 702	   3) PAUSE frame decode time allowance                   64 bytes
 703	   4) One maximum-length frame on RX                    1522 bytes
 704	   5) Round-trip propagation delay of the link (100Mb)    15 bytes
 705	   ----------
 706	   3187 bytes
 707
 708	   I chose to set high-water mark to RX_FIFO_SIZE / 4 (1024 bytes)
 709	   low-water mark  to RX_FIFO_SIZE / 8 (512 bytes)
 710	 */
 711	r = emac_calc_rwmr(dev, rx_size / 8 / dev->fifo_entry_size,
 712			   rx_size / 4 / dev->fifo_entry_size);
 713	out_be32(&p->rwmr, r);
 714
 715	/* Set PAUSE timer to the maximum */
 716	out_be32(&p->ptr, 0xffff);
 717
 718	/* IRQ sources */
 719	r = EMAC_ISR_OVR | EMAC_ISR_BP | EMAC_ISR_SE |
 720		EMAC_ISR_ALE | EMAC_ISR_BFCS | EMAC_ISR_PTLE | EMAC_ISR_ORE |
 721		EMAC_ISR_IRE | EMAC_ISR_TE;
 722	if (emac_has_feature(dev, EMAC_FTR_EMAC4))
 723	    r |= EMAC4_ISR_TXPE | EMAC4_ISR_RXPE /* | EMAC4_ISR_TXUE |
 724						  EMAC4_ISR_RXOE | */;
 725	out_be32(&p->iser,  r);
 726
 727	/* We need to take GPCS PHY out of isolate mode after EMAC reset */
 728	if (emac_phy_gpcs(dev->phy.mode)) {
 729		if (dev->phy.gpcs_address != 0xffffffff)
 730			emac_mii_reset_gpcs(&dev->phy);
 731		else
 732			emac_mii_reset_phy(&dev->phy);
 733	}
 734
 735	return 0;
 736}
 737
 738static void emac_reinitialize(struct emac_instance *dev)
 739{
 740	DBG(dev, "reinitialize" NL);
 741
 742	emac_netif_stop(dev);
 743	if (!emac_configure(dev)) {
 744		emac_tx_enable(dev);
 745		emac_rx_enable(dev);
 746	}
 747	emac_netif_start(dev);
 748}
 749
 750static void emac_full_tx_reset(struct emac_instance *dev)
 751{
 752	DBG(dev, "full_tx_reset" NL);
 753
 754	emac_tx_disable(dev);
 755	mal_disable_tx_channel(dev->mal, dev->mal_tx_chan);
 756	emac_clean_tx_ring(dev);
 757	dev->tx_cnt = dev->tx_slot = dev->ack_slot = 0;
 758
 759	emac_configure(dev);
 760
 761	mal_enable_tx_channel(dev->mal, dev->mal_tx_chan);
 762	emac_tx_enable(dev);
 763	emac_rx_enable(dev);
 764}
 765
 766static void emac_reset_work(struct work_struct *work)
 767{
 768	struct emac_instance *dev = container_of(work, struct emac_instance, reset_work);
 769
 770	DBG(dev, "reset_work" NL);
 771
 772	mutex_lock(&dev->link_lock);
 773	if (dev->opened) {
 774		emac_netif_stop(dev);
 775		emac_full_tx_reset(dev);
 776		emac_netif_start(dev);
 777	}
 778	mutex_unlock(&dev->link_lock);
 779}
 780
 781static void emac_tx_timeout(struct net_device *ndev, unsigned int txqueue)
 782{
 783	struct emac_instance *dev = netdev_priv(ndev);
 784
 785	DBG(dev, "tx_timeout" NL);
 786
 787	schedule_work(&dev->reset_work);
 788}
 789
 790
 791static inline int emac_phy_done(struct emac_instance *dev, u32 stacr)
 792{
 793	int done = !!(stacr & EMAC_STACR_OC);
 794
 795	if (emac_has_feature(dev, EMAC_FTR_STACR_OC_INVERT))
 796		done = !done;
 797
 798	return done;
 799};
 800
 801static int __emac_mdio_read(struct emac_instance *dev, u8 id, u8 reg)
 802{
 803	struct emac_regs __iomem *p = dev->emacp;
 804	u32 r = 0;
 805	int n, err = -ETIMEDOUT;
 806
 807	mutex_lock(&dev->mdio_lock);
 808
 809	DBG2(dev, "mdio_read(%02x,%02x)" NL, id, reg);
 810
 811	/* Enable proper MDIO port */
 812	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
 813		zmii_get_mdio(dev->zmii_dev, dev->zmii_port);
 814	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
 815		rgmii_get_mdio(dev->rgmii_dev, dev->rgmii_port);
 816
 817	/* Wait for management interface to become idle */
 818	n = 20;
 819	while (!emac_phy_done(dev, in_be32(&p->stacr))) {
 820		udelay(1);
 821		if (!--n) {
 822			DBG2(dev, " -> timeout wait idle\n");
 823			goto bail;
 824		}
 825	}
 826
 827	/* Issue read command */
 828	if (emac_has_feature(dev, EMAC_FTR_EMAC4))
 829		r = EMAC4_STACR_BASE(dev->opb_bus_freq);
 830	else
 831		r = EMAC_STACR_BASE(dev->opb_bus_freq);
 832	if (emac_has_feature(dev, EMAC_FTR_STACR_OC_INVERT))
 833		r |= EMAC_STACR_OC;
 834	if (emac_has_feature(dev, EMAC_FTR_HAS_NEW_STACR))
 835		r |= EMACX_STACR_STAC_READ;
 836	else
 837		r |= EMAC_STACR_STAC_READ;
 838	r |= (reg & EMAC_STACR_PRA_MASK)
 839		| ((id & EMAC_STACR_PCDA_MASK) << EMAC_STACR_PCDA_SHIFT);
 840	out_be32(&p->stacr, r);
 841
 842	/* Wait for read to complete */
 843	n = 200;
 844	while (!emac_phy_done(dev, (r = in_be32(&p->stacr)))) {
 845		udelay(1);
 846		if (!--n) {
 847			DBG2(dev, " -> timeout wait complete\n");
 848			goto bail;
 849		}
 850	}
 851
 852	if (unlikely(r & EMAC_STACR_PHYE)) {
 853		DBG(dev, "mdio_read(%02x, %02x) failed" NL, id, reg);
 854		err = -EREMOTEIO;
 855		goto bail;
 856	}
 857
 858	r = ((r >> EMAC_STACR_PHYD_SHIFT) & EMAC_STACR_PHYD_MASK);
 859
 860	DBG2(dev, "mdio_read -> %04x" NL, r);
 861	err = 0;
 862 bail:
 863	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
 864		rgmii_put_mdio(dev->rgmii_dev, dev->rgmii_port);
 865	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
 866		zmii_put_mdio(dev->zmii_dev, dev->zmii_port);
 867	mutex_unlock(&dev->mdio_lock);
 868
 869	return err == 0 ? r : err;
 870}
 871
 872static void __emac_mdio_write(struct emac_instance *dev, u8 id, u8 reg,
 873			      u16 val)
 874{
 875	struct emac_regs __iomem *p = dev->emacp;
 876	u32 r = 0;
 877	int n;
 878
 879	mutex_lock(&dev->mdio_lock);
 880
 881	DBG2(dev, "mdio_write(%02x,%02x,%04x)" NL, id, reg, val);
 882
 883	/* Enable proper MDIO port */
 884	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
 885		zmii_get_mdio(dev->zmii_dev, dev->zmii_port);
 886	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
 887		rgmii_get_mdio(dev->rgmii_dev, dev->rgmii_port);
 888
 889	/* Wait for management interface to be idle */
 890	n = 20;
 891	while (!emac_phy_done(dev, in_be32(&p->stacr))) {
 892		udelay(1);
 893		if (!--n) {
 894			DBG2(dev, " -> timeout wait idle\n");
 895			goto bail;
 896		}
 897	}
 898
 899	/* Issue write command */
 900	if (emac_has_feature(dev, EMAC_FTR_EMAC4))
 901		r = EMAC4_STACR_BASE(dev->opb_bus_freq);
 902	else
 903		r = EMAC_STACR_BASE(dev->opb_bus_freq);
 904	if (emac_has_feature(dev, EMAC_FTR_STACR_OC_INVERT))
 905		r |= EMAC_STACR_OC;
 906	if (emac_has_feature(dev, EMAC_FTR_HAS_NEW_STACR))
 907		r |= EMACX_STACR_STAC_WRITE;
 908	else
 909		r |= EMAC_STACR_STAC_WRITE;
 910	r |= (reg & EMAC_STACR_PRA_MASK) |
 911		((id & EMAC_STACR_PCDA_MASK) << EMAC_STACR_PCDA_SHIFT) |
 912		(val << EMAC_STACR_PHYD_SHIFT);
 913	out_be32(&p->stacr, r);
 914
 915	/* Wait for write to complete */
 916	n = 200;
 917	while (!emac_phy_done(dev, in_be32(&p->stacr))) {
 918		udelay(1);
 919		if (!--n) {
 920			DBG2(dev, " -> timeout wait complete\n");
 921			goto bail;
 922		}
 923	}
 
 924 bail:
 925	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
 926		rgmii_put_mdio(dev->rgmii_dev, dev->rgmii_port);
 927	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
 928		zmii_put_mdio(dev->zmii_dev, dev->zmii_port);
 929	mutex_unlock(&dev->mdio_lock);
 930}
 931
 932static int emac_mdio_read(struct net_device *ndev, int id, int reg)
 933{
 934	struct emac_instance *dev = netdev_priv(ndev);
 935	int res;
 936
 937	res = __emac_mdio_read((dev->mdio_instance &&
 938				dev->phy.gpcs_address != id) ?
 939				dev->mdio_instance : dev,
 940			       (u8) id, (u8) reg);
 941	return res;
 942}
 943
 944static void emac_mdio_write(struct net_device *ndev, int id, int reg, int val)
 945{
 946	struct emac_instance *dev = netdev_priv(ndev);
 947
 948	__emac_mdio_write((dev->mdio_instance &&
 949			   dev->phy.gpcs_address != id) ?
 950			   dev->mdio_instance : dev,
 951			  (u8) id, (u8) reg, (u16) val);
 952}
 953
 954/* Tx lock BH */
 955static void __emac_set_multicast_list(struct emac_instance *dev)
 956{
 957	struct emac_regs __iomem *p = dev->emacp;
 958	u32 rmr = emac_iff2rmr(dev->ndev);
 959
 960	DBG(dev, "__multicast %08x" NL, rmr);
 961
 962	/* I decided to relax register access rules here to avoid
 963	 * full EMAC reset.
 964	 *
 965	 * There is a real problem with EMAC4 core if we use MWSW_001 bit
 966	 * in MR1 register and do a full EMAC reset.
 967	 * One TX BD status update is delayed and, after EMAC reset, it
 968	 * never happens, resulting in TX hung (it'll be recovered by TX
 969	 * timeout handler eventually, but this is just gross).
 970	 * So we either have to do full TX reset or try to cheat here :)
 971	 *
 972	 * The only required change is to RX mode register, so I *think* all
 973	 * we need is just to stop RX channel. This seems to work on all
 974	 * tested SoCs.                                                --ebs
 975	 *
 976	 * If we need the full reset, we might just trigger the workqueue
 977	 * and do it async... a bit nasty but should work --BenH
 978	 */
 979	dev->mcast_pending = 0;
 980	emac_rx_disable(dev);
 981	if (rmr & EMAC_RMR_MAE)
 982		emac_hash_mc(dev);
 983	out_be32(&p->rmr, rmr);
 984	emac_rx_enable(dev);
 985}
 986
 987/* Tx lock BH */
 988static void emac_set_multicast_list(struct net_device *ndev)
 989{
 990	struct emac_instance *dev = netdev_priv(ndev);
 991
 992	DBG(dev, "multicast" NL);
 993
 994	BUG_ON(!netif_running(dev->ndev));
 995
 996	if (dev->no_mcast) {
 997		dev->mcast_pending = 1;
 998		return;
 999	}
1000
1001	mutex_lock(&dev->link_lock);
1002	__emac_set_multicast_list(dev);
1003	mutex_unlock(&dev->link_lock);
1004}
1005
1006static int emac_set_mac_address(struct net_device *ndev, void *sa)
1007{
1008	struct emac_instance *dev = netdev_priv(ndev);
1009	struct sockaddr *addr = sa;
1010	struct emac_regs __iomem *p = dev->emacp;
1011
1012	if (!is_valid_ether_addr(addr->sa_data))
1013	       return -EADDRNOTAVAIL;
1014
1015	mutex_lock(&dev->link_lock);
1016
1017	eth_hw_addr_set(ndev, addr->sa_data);
1018
1019	emac_rx_disable(dev);
1020	emac_tx_disable(dev);
1021	out_be32(&p->iahr, (ndev->dev_addr[0] << 8) | ndev->dev_addr[1]);
1022	out_be32(&p->ialr, (ndev->dev_addr[2] << 24) |
1023		(ndev->dev_addr[3] << 16) | (ndev->dev_addr[4] << 8) |
1024		ndev->dev_addr[5]);
1025	emac_tx_enable(dev);
1026	emac_rx_enable(dev);
1027
1028	mutex_unlock(&dev->link_lock);
1029
1030	return 0;
1031}
1032
1033static int emac_resize_rx_ring(struct emac_instance *dev, int new_mtu)
1034{
1035	int rx_sync_size = emac_rx_sync_size(new_mtu);
1036	int rx_skb_size = emac_rx_skb_size(new_mtu);
1037	int i, ret = 0;
1038	int mr1_jumbo_bit_change = 0;
1039
1040	mutex_lock(&dev->link_lock);
1041	emac_netif_stop(dev);
1042	emac_rx_disable(dev);
1043	mal_disable_rx_channel(dev->mal, dev->mal_rx_chan);
1044
1045	if (dev->rx_sg_skb) {
1046		++dev->estats.rx_dropped_resize;
1047		dev_kfree_skb(dev->rx_sg_skb);
1048		dev->rx_sg_skb = NULL;
1049	}
1050
1051	/* Make a first pass over RX ring and mark BDs ready, dropping
1052	 * non-processed packets on the way. We need this as a separate pass
1053	 * to simplify error recovery in the case of allocation failure later.
1054	 */
1055	for (i = 0; i < NUM_RX_BUFF; ++i) {
1056		if (dev->rx_desc[i].ctrl & MAL_RX_CTRL_FIRST)
1057			++dev->estats.rx_dropped_resize;
1058
1059		dev->rx_desc[i].data_len = 0;
1060		dev->rx_desc[i].ctrl = MAL_RX_CTRL_EMPTY |
1061		    (i == (NUM_RX_BUFF - 1) ? MAL_RX_CTRL_WRAP : 0);
1062	}
1063
1064	/* Reallocate RX ring only if bigger skb buffers are required */
1065	if (rx_skb_size <= dev->rx_skb_size)
1066		goto skip;
1067
1068	/* Second pass, allocate new skbs */
1069	for (i = 0; i < NUM_RX_BUFF; ++i) {
1070		struct sk_buff *skb;
1071
1072		skb = netdev_alloc_skb_ip_align(dev->ndev, rx_skb_size);
1073		if (!skb) {
1074			ret = -ENOMEM;
1075			goto oom;
1076		}
1077
1078		BUG_ON(!dev->rx_skb[i]);
1079		dev_kfree_skb(dev->rx_skb[i]);
1080
 
1081		dev->rx_desc[i].data_ptr =
1082		    dma_map_single(&dev->ofdev->dev, skb->data - NET_IP_ALIGN,
1083				   rx_sync_size, DMA_FROM_DEVICE)
1084				   + NET_IP_ALIGN;
1085		dev->rx_skb[i] = skb;
1086	}
1087 skip:
1088	/* Check if we need to change "Jumbo" bit in MR1 */
1089	if (emac_has_feature(dev, EMAC_APM821XX_REQ_JUMBO_FRAME_SIZE)) {
1090		mr1_jumbo_bit_change = (new_mtu > ETH_DATA_LEN) ||
1091				(dev->ndev->mtu > ETH_DATA_LEN);
1092	} else {
1093		mr1_jumbo_bit_change = (new_mtu > ETH_DATA_LEN) ^
1094				(dev->ndev->mtu > ETH_DATA_LEN);
1095	}
1096
1097	if (mr1_jumbo_bit_change) {
1098		/* This is to prevent starting RX channel in emac_rx_enable() */
1099		set_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags);
1100
1101		dev->ndev->mtu = new_mtu;
1102		emac_full_tx_reset(dev);
1103	}
1104
1105	mal_set_rcbs(dev->mal, dev->mal_rx_chan, emac_rx_size(new_mtu));
1106 oom:
1107	/* Restart RX */
1108	clear_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags);
1109	dev->rx_slot = 0;
1110	mal_enable_rx_channel(dev->mal, dev->mal_rx_chan);
1111	emac_rx_enable(dev);
1112	emac_netif_start(dev);
1113	mutex_unlock(&dev->link_lock);
1114
1115	return ret;
1116}
1117
1118/* Process ctx, rtnl_lock semaphore */
1119static int emac_change_mtu(struct net_device *ndev, int new_mtu)
1120{
1121	struct emac_instance *dev = netdev_priv(ndev);
1122	int ret = 0;
1123
1124	DBG(dev, "change_mtu(%d)" NL, new_mtu);
1125
1126	if (netif_running(ndev)) {
1127		/* Check if we really need to reinitialize RX ring */
1128		if (emac_rx_skb_size(ndev->mtu) != emac_rx_skb_size(new_mtu))
1129			ret = emac_resize_rx_ring(dev, new_mtu);
1130	}
1131
1132	if (!ret) {
1133		ndev->mtu = new_mtu;
1134		dev->rx_skb_size = emac_rx_skb_size(new_mtu);
1135		dev->rx_sync_size = emac_rx_sync_size(new_mtu);
1136	}
1137
1138	return ret;
1139}
1140
1141static void emac_clean_tx_ring(struct emac_instance *dev)
1142{
1143	int i;
1144
1145	for (i = 0; i < NUM_TX_BUFF; ++i) {
1146		if (dev->tx_skb[i]) {
1147			dev_kfree_skb(dev->tx_skb[i]);
1148			dev->tx_skb[i] = NULL;
1149			if (dev->tx_desc[i].ctrl & MAL_TX_CTRL_READY)
1150				++dev->estats.tx_dropped;
1151		}
1152		dev->tx_desc[i].ctrl = 0;
1153		dev->tx_desc[i].data_ptr = 0;
1154	}
1155}
1156
1157static void emac_clean_rx_ring(struct emac_instance *dev)
1158{
1159	int i;
1160
1161	for (i = 0; i < NUM_RX_BUFF; ++i)
1162		if (dev->rx_skb[i]) {
1163			dev->rx_desc[i].ctrl = 0;
1164			dev_kfree_skb(dev->rx_skb[i]);
1165			dev->rx_skb[i] = NULL;
1166			dev->rx_desc[i].data_ptr = 0;
1167		}
1168
1169	if (dev->rx_sg_skb) {
1170		dev_kfree_skb(dev->rx_sg_skb);
1171		dev->rx_sg_skb = NULL;
1172	}
1173}
1174
1175static int
1176__emac_prepare_rx_skb(struct sk_buff *skb, struct emac_instance *dev, int slot)
1177{
 
1178	if (unlikely(!skb))
1179		return -ENOMEM;
1180
1181	dev->rx_skb[slot] = skb;
1182	dev->rx_desc[slot].data_len = 0;
1183
 
1184	dev->rx_desc[slot].data_ptr =
1185	    dma_map_single(&dev->ofdev->dev, skb->data - NET_IP_ALIGN,
1186			   dev->rx_sync_size, DMA_FROM_DEVICE) + NET_IP_ALIGN;
1187	wmb();
1188	dev->rx_desc[slot].ctrl = MAL_RX_CTRL_EMPTY |
1189	    (slot == (NUM_RX_BUFF - 1) ? MAL_RX_CTRL_WRAP : 0);
1190
1191	return 0;
1192}
1193
1194static int
1195emac_alloc_rx_skb(struct emac_instance *dev, int slot)
1196{
1197	struct sk_buff *skb;
1198
1199	skb = __netdev_alloc_skb_ip_align(dev->ndev, dev->rx_skb_size,
1200					  GFP_KERNEL);
1201
1202	return __emac_prepare_rx_skb(skb, dev, slot);
1203}
1204
1205static int
1206emac_alloc_rx_skb_napi(struct emac_instance *dev, int slot)
1207{
1208	struct sk_buff *skb;
1209
1210	skb = napi_alloc_skb(&dev->mal->napi, dev->rx_skb_size);
1211
1212	return __emac_prepare_rx_skb(skb, dev, slot);
1213}
1214
1215static void emac_print_link_status(struct emac_instance *dev)
1216{
1217	if (netif_carrier_ok(dev->ndev))
1218		printk(KERN_INFO "%s: link is up, %d %s%s\n",
1219		       dev->ndev->name, dev->phy.speed,
1220		       dev->phy.duplex == DUPLEX_FULL ? "FDX" : "HDX",
1221		       dev->phy.pause ? ", pause enabled" :
1222		       dev->phy.asym_pause ? ", asymmetric pause enabled" : "");
1223	else
1224		printk(KERN_INFO "%s: link is down\n", dev->ndev->name);
1225}
1226
1227/* Process ctx, rtnl_lock semaphore */
1228static int emac_open(struct net_device *ndev)
1229{
1230	struct emac_instance *dev = netdev_priv(ndev);
1231	int err, i;
1232
1233	DBG(dev, "open" NL);
1234
1235	/* Setup error IRQ handler */
1236	err = request_irq(dev->emac_irq, emac_irq, 0, "EMAC", dev);
1237	if (err) {
1238		printk(KERN_ERR "%s: failed to request IRQ %d\n",
1239		       ndev->name, dev->emac_irq);
1240		return err;
1241	}
1242
1243	/* Allocate RX ring */
1244	for (i = 0; i < NUM_RX_BUFF; ++i)
1245		if (emac_alloc_rx_skb(dev, i)) {
1246			printk(KERN_ERR "%s: failed to allocate RX ring\n",
1247			       ndev->name);
1248			goto oom;
1249		}
1250
1251	dev->tx_cnt = dev->tx_slot = dev->ack_slot = dev->rx_slot = 0;
1252	clear_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags);
1253	dev->rx_sg_skb = NULL;
1254
1255	mutex_lock(&dev->link_lock);
1256	dev->opened = 1;
1257
1258	/* Start PHY polling now.
1259	 */
1260	if (dev->phy.address >= 0) {
1261		int link_poll_interval;
1262		if (dev->phy.def->ops->poll_link(&dev->phy)) {
1263			dev->phy.def->ops->read_link(&dev->phy);
1264			emac_rx_clk_default(dev);
1265			netif_carrier_on(dev->ndev);
1266			link_poll_interval = PHY_POLL_LINK_ON;
1267		} else {
1268			emac_rx_clk_tx(dev);
1269			netif_carrier_off(dev->ndev);
1270			link_poll_interval = PHY_POLL_LINK_OFF;
1271		}
1272		dev->link_polling = 1;
1273		wmb();
1274		schedule_delayed_work(&dev->link_work, link_poll_interval);
1275		emac_print_link_status(dev);
1276	} else
1277		netif_carrier_on(dev->ndev);
1278
1279	/* Required for Pause packet support in EMAC */
1280	dev_mc_add_global(ndev, default_mcast_addr);
1281
1282	emac_configure(dev);
1283	mal_poll_add(dev->mal, &dev->commac);
1284	mal_enable_tx_channel(dev->mal, dev->mal_tx_chan);
1285	mal_set_rcbs(dev->mal, dev->mal_rx_chan, emac_rx_size(ndev->mtu));
1286	mal_enable_rx_channel(dev->mal, dev->mal_rx_chan);
1287	emac_tx_enable(dev);
1288	emac_rx_enable(dev);
1289	emac_netif_start(dev);
1290
1291	mutex_unlock(&dev->link_lock);
1292
1293	return 0;
1294 oom:
1295	emac_clean_rx_ring(dev);
1296	free_irq(dev->emac_irq, dev);
1297
1298	return -ENOMEM;
1299}
1300
1301/* BHs disabled */
1302#if 0
1303static int emac_link_differs(struct emac_instance *dev)
1304{
1305	u32 r = in_be32(&dev->emacp->mr1);
1306
1307	int duplex = r & EMAC_MR1_FDE ? DUPLEX_FULL : DUPLEX_HALF;
1308	int speed, pause, asym_pause;
1309
1310	if (r & EMAC_MR1_MF_1000)
1311		speed = SPEED_1000;
1312	else if (r & EMAC_MR1_MF_100)
1313		speed = SPEED_100;
1314	else
1315		speed = SPEED_10;
1316
1317	switch (r & (EMAC_MR1_EIFC | EMAC_MR1_APP)) {
1318	case (EMAC_MR1_EIFC | EMAC_MR1_APP):
1319		pause = 1;
1320		asym_pause = 0;
1321		break;
1322	case EMAC_MR1_APP:
1323		pause = 0;
1324		asym_pause = 1;
1325		break;
1326	default:
1327		pause = asym_pause = 0;
1328	}
1329	return speed != dev->phy.speed || duplex != dev->phy.duplex ||
1330	    pause != dev->phy.pause || asym_pause != dev->phy.asym_pause;
1331}
1332#endif
1333
1334static void emac_link_timer(struct work_struct *work)
1335{
1336	struct emac_instance *dev =
1337		container_of(to_delayed_work(work),
1338			     struct emac_instance, link_work);
1339	int link_poll_interval;
1340
1341	mutex_lock(&dev->link_lock);
1342	DBG2(dev, "link timer" NL);
1343
1344	if (!dev->opened)
1345		goto bail;
1346
1347	if (dev->phy.def->ops->poll_link(&dev->phy)) {
1348		if (!netif_carrier_ok(dev->ndev)) {
1349			emac_rx_clk_default(dev);
1350			/* Get new link parameters */
1351			dev->phy.def->ops->read_link(&dev->phy);
1352
1353			netif_carrier_on(dev->ndev);
1354			emac_netif_stop(dev);
1355			emac_full_tx_reset(dev);
1356			emac_netif_start(dev);
1357			emac_print_link_status(dev);
1358		}
1359		link_poll_interval = PHY_POLL_LINK_ON;
1360	} else {
1361		if (netif_carrier_ok(dev->ndev)) {
1362			emac_rx_clk_tx(dev);
1363			netif_carrier_off(dev->ndev);
1364			netif_tx_disable(dev->ndev);
1365			emac_reinitialize(dev);
1366			emac_print_link_status(dev);
1367		}
1368		link_poll_interval = PHY_POLL_LINK_OFF;
1369	}
1370	schedule_delayed_work(&dev->link_work, link_poll_interval);
1371 bail:
1372	mutex_unlock(&dev->link_lock);
1373}
1374
1375static void emac_force_link_update(struct emac_instance *dev)
1376{
1377	netif_carrier_off(dev->ndev);
1378	smp_rmb();
1379	if (dev->link_polling) {
1380		cancel_delayed_work_sync(&dev->link_work);
1381		if (dev->link_polling)
1382			schedule_delayed_work(&dev->link_work,  PHY_POLL_LINK_OFF);
1383	}
1384}
1385
1386/* Process ctx, rtnl_lock semaphore */
1387static int emac_close(struct net_device *ndev)
1388{
1389	struct emac_instance *dev = netdev_priv(ndev);
1390
1391	DBG(dev, "close" NL);
1392
1393	if (dev->phy.address >= 0) {
1394		dev->link_polling = 0;
1395		cancel_delayed_work_sync(&dev->link_work);
1396	}
1397	mutex_lock(&dev->link_lock);
1398	emac_netif_stop(dev);
1399	dev->opened = 0;
1400	mutex_unlock(&dev->link_lock);
1401
1402	emac_rx_disable(dev);
1403	emac_tx_disable(dev);
1404	mal_disable_rx_channel(dev->mal, dev->mal_rx_chan);
1405	mal_disable_tx_channel(dev->mal, dev->mal_tx_chan);
1406	mal_poll_del(dev->mal, &dev->commac);
1407
1408	emac_clean_tx_ring(dev);
1409	emac_clean_rx_ring(dev);
1410
1411	free_irq(dev->emac_irq, dev);
1412
1413	netif_carrier_off(ndev);
1414
1415	return 0;
1416}
1417
1418static inline u16 emac_tx_csum(struct emac_instance *dev,
1419			       struct sk_buff *skb)
1420{
1421	if (emac_has_feature(dev, EMAC_FTR_HAS_TAH) &&
1422		(skb->ip_summed == CHECKSUM_PARTIAL)) {
1423		++dev->stats.tx_packets_csum;
1424		return EMAC_TX_CTRL_TAH_CSUM;
1425	}
1426	return 0;
1427}
1428
1429static inline netdev_tx_t emac_xmit_finish(struct emac_instance *dev, int len)
1430{
1431	struct emac_regs __iomem *p = dev->emacp;
1432	struct net_device *ndev = dev->ndev;
1433
1434	/* Send the packet out. If the if makes a significant perf
1435	 * difference, then we can store the TMR0 value in "dev"
1436	 * instead
1437	 */
1438	if (emac_has_feature(dev, EMAC_FTR_EMAC4))
1439		out_be32(&p->tmr0, EMAC4_TMR0_XMIT);
1440	else
1441		out_be32(&p->tmr0, EMAC_TMR0_XMIT);
1442
1443	if (unlikely(++dev->tx_cnt == NUM_TX_BUFF)) {
1444		netif_stop_queue(ndev);
1445		DBG2(dev, "stopped TX queue" NL);
1446	}
1447
1448	netif_trans_update(ndev);
1449	++dev->stats.tx_packets;
1450	dev->stats.tx_bytes += len;
1451
1452	return NETDEV_TX_OK;
1453}
1454
1455/* Tx lock BH */
1456static netdev_tx_t emac_start_xmit(struct sk_buff *skb, struct net_device *ndev)
1457{
1458	struct emac_instance *dev = netdev_priv(ndev);
1459	unsigned int len = skb->len;
1460	int slot;
1461
1462	u16 ctrl = EMAC_TX_CTRL_GFCS | EMAC_TX_CTRL_GP | MAL_TX_CTRL_READY |
1463	    MAL_TX_CTRL_LAST | emac_tx_csum(dev, skb);
1464
1465	slot = dev->tx_slot++;
1466	if (dev->tx_slot == NUM_TX_BUFF) {
1467		dev->tx_slot = 0;
1468		ctrl |= MAL_TX_CTRL_WRAP;
1469	}
1470
1471	DBG2(dev, "xmit(%u) %d" NL, len, slot);
1472
1473	dev->tx_skb[slot] = skb;
1474	dev->tx_desc[slot].data_ptr = dma_map_single(&dev->ofdev->dev,
1475						     skb->data, len,
1476						     DMA_TO_DEVICE);
1477	dev->tx_desc[slot].data_len = (u16) len;
1478	wmb();
1479	dev->tx_desc[slot].ctrl = ctrl;
1480
1481	return emac_xmit_finish(dev, len);
1482}
1483
1484static inline int emac_xmit_split(struct emac_instance *dev, int slot,
1485				  u32 pd, int len, int last, u16 base_ctrl)
1486{
1487	while (1) {
1488		u16 ctrl = base_ctrl;
1489		int chunk = min(len, MAL_MAX_TX_SIZE);
1490		len -= chunk;
1491
1492		slot = (slot + 1) % NUM_TX_BUFF;
1493
1494		if (last && !len)
1495			ctrl |= MAL_TX_CTRL_LAST;
1496		if (slot == NUM_TX_BUFF - 1)
1497			ctrl |= MAL_TX_CTRL_WRAP;
1498
1499		dev->tx_skb[slot] = NULL;
1500		dev->tx_desc[slot].data_ptr = pd;
1501		dev->tx_desc[slot].data_len = (u16) chunk;
1502		dev->tx_desc[slot].ctrl = ctrl;
1503		++dev->tx_cnt;
1504
1505		if (!len)
1506			break;
1507
1508		pd += chunk;
1509	}
1510	return slot;
1511}
1512
1513/* Tx lock BH disabled (SG version for TAH equipped EMACs) */
1514static netdev_tx_t
1515emac_start_xmit_sg(struct sk_buff *skb, struct net_device *ndev)
1516{
1517	struct emac_instance *dev = netdev_priv(ndev);
1518	int nr_frags = skb_shinfo(skb)->nr_frags;
1519	int len = skb->len, chunk;
1520	int slot, i;
1521	u16 ctrl;
1522	u32 pd;
1523
1524	/* This is common "fast" path */
1525	if (likely(!nr_frags && len <= MAL_MAX_TX_SIZE))
1526		return emac_start_xmit(skb, ndev);
1527
1528	len -= skb->data_len;
1529
1530	/* Note, this is only an *estimation*, we can still run out of empty
1531	 * slots because of the additional fragmentation into
1532	 * MAL_MAX_TX_SIZE-sized chunks
1533	 */
1534	if (unlikely(dev->tx_cnt + nr_frags + mal_tx_chunks(len) > NUM_TX_BUFF))
1535		goto stop_queue;
1536
1537	ctrl = EMAC_TX_CTRL_GFCS | EMAC_TX_CTRL_GP | MAL_TX_CTRL_READY |
1538	    emac_tx_csum(dev, skb);
1539	slot = dev->tx_slot;
1540
1541	/* skb data */
1542	dev->tx_skb[slot] = NULL;
1543	chunk = min(len, MAL_MAX_TX_SIZE);
1544	dev->tx_desc[slot].data_ptr = pd =
1545	    dma_map_single(&dev->ofdev->dev, skb->data, len, DMA_TO_DEVICE);
1546	dev->tx_desc[slot].data_len = (u16) chunk;
1547	len -= chunk;
1548	if (unlikely(len))
1549		slot = emac_xmit_split(dev, slot, pd + chunk, len, !nr_frags,
1550				       ctrl);
1551	/* skb fragments */
1552	for (i = 0; i < nr_frags; ++i) {
1553		skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1554		len = skb_frag_size(frag);
1555
1556		if (unlikely(dev->tx_cnt + mal_tx_chunks(len) >= NUM_TX_BUFF))
1557			goto undo_frame;
1558
1559		pd = skb_frag_dma_map(&dev->ofdev->dev, frag, 0, len,
1560				      DMA_TO_DEVICE);
1561
1562		slot = emac_xmit_split(dev, slot, pd, len, i == nr_frags - 1,
1563				       ctrl);
1564	}
1565
1566	DBG2(dev, "xmit_sg(%u) %d - %d" NL, skb->len, dev->tx_slot, slot);
1567
1568	/* Attach skb to the last slot so we don't release it too early */
1569	dev->tx_skb[slot] = skb;
1570
1571	/* Send the packet out */
1572	if (dev->tx_slot == NUM_TX_BUFF - 1)
1573		ctrl |= MAL_TX_CTRL_WRAP;
1574	wmb();
1575	dev->tx_desc[dev->tx_slot].ctrl = ctrl;
1576	dev->tx_slot = (slot + 1) % NUM_TX_BUFF;
1577
1578	return emac_xmit_finish(dev, skb->len);
1579
1580 undo_frame:
1581	/* Well, too bad. Our previous estimation was overly optimistic.
1582	 * Undo everything.
1583	 */
1584	while (slot != dev->tx_slot) {
1585		dev->tx_desc[slot].ctrl = 0;
1586		--dev->tx_cnt;
1587		if (--slot < 0)
1588			slot = NUM_TX_BUFF - 1;
1589	}
1590	++dev->estats.tx_undo;
1591
1592 stop_queue:
1593	netif_stop_queue(ndev);
1594	DBG2(dev, "stopped TX queue" NL);
1595	return NETDEV_TX_BUSY;
1596}
1597
1598/* Tx lock BHs */
1599static void emac_parse_tx_error(struct emac_instance *dev, u16 ctrl)
1600{
1601	struct emac_error_stats *st = &dev->estats;
1602
1603	DBG(dev, "BD TX error %04x" NL, ctrl);
1604
1605	++st->tx_bd_errors;
1606	if (ctrl & EMAC_TX_ST_BFCS)
1607		++st->tx_bd_bad_fcs;
1608	if (ctrl & EMAC_TX_ST_LCS)
1609		++st->tx_bd_carrier_loss;
1610	if (ctrl & EMAC_TX_ST_ED)
1611		++st->tx_bd_excessive_deferral;
1612	if (ctrl & EMAC_TX_ST_EC)
1613		++st->tx_bd_excessive_collisions;
1614	if (ctrl & EMAC_TX_ST_LC)
1615		++st->tx_bd_late_collision;
1616	if (ctrl & EMAC_TX_ST_MC)
1617		++st->tx_bd_multple_collisions;
1618	if (ctrl & EMAC_TX_ST_SC)
1619		++st->tx_bd_single_collision;
1620	if (ctrl & EMAC_TX_ST_UR)
1621		++st->tx_bd_underrun;
1622	if (ctrl & EMAC_TX_ST_SQE)
1623		++st->tx_bd_sqe;
1624}
1625
1626static void emac_poll_tx(void *param)
1627{
1628	struct emac_instance *dev = param;
1629	u32 bad_mask;
1630
1631	DBG2(dev, "poll_tx, %d %d" NL, dev->tx_cnt, dev->ack_slot);
1632
1633	if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
1634		bad_mask = EMAC_IS_BAD_TX_TAH;
1635	else
1636		bad_mask = EMAC_IS_BAD_TX;
1637
1638	netif_tx_lock_bh(dev->ndev);
1639	if (dev->tx_cnt) {
1640		u16 ctrl;
1641		int slot = dev->ack_slot, n = 0;
1642	again:
1643		ctrl = dev->tx_desc[slot].ctrl;
1644		if (!(ctrl & MAL_TX_CTRL_READY)) {
1645			struct sk_buff *skb = dev->tx_skb[slot];
1646			++n;
1647
1648			if (skb) {
1649				dev_kfree_skb(skb);
1650				dev->tx_skb[slot] = NULL;
1651			}
1652			slot = (slot + 1) % NUM_TX_BUFF;
1653
1654			if (unlikely(ctrl & bad_mask))
1655				emac_parse_tx_error(dev, ctrl);
1656
1657			if (--dev->tx_cnt)
1658				goto again;
1659		}
1660		if (n) {
1661			dev->ack_slot = slot;
1662			if (netif_queue_stopped(dev->ndev) &&
1663			    dev->tx_cnt < EMAC_TX_WAKEUP_THRESH)
1664				netif_wake_queue(dev->ndev);
1665
1666			DBG2(dev, "tx %d pkts" NL, n);
1667		}
1668	}
1669	netif_tx_unlock_bh(dev->ndev);
1670}
1671
1672static inline void emac_recycle_rx_skb(struct emac_instance *dev, int slot,
1673				       int len)
1674{
1675	struct sk_buff *skb = dev->rx_skb[slot];
1676
1677	DBG2(dev, "recycle %d %d" NL, slot, len);
1678
1679	if (len)
1680		dma_map_single(&dev->ofdev->dev, skb->data - NET_IP_ALIGN,
1681			       SKB_DATA_ALIGN(len + NET_IP_ALIGN),
1682			       DMA_FROM_DEVICE);
1683
1684	dev->rx_desc[slot].data_len = 0;
1685	wmb();
1686	dev->rx_desc[slot].ctrl = MAL_RX_CTRL_EMPTY |
1687	    (slot == (NUM_RX_BUFF - 1) ? MAL_RX_CTRL_WRAP : 0);
1688}
1689
1690static void emac_parse_rx_error(struct emac_instance *dev, u16 ctrl)
1691{
1692	struct emac_error_stats *st = &dev->estats;
1693
1694	DBG(dev, "BD RX error %04x" NL, ctrl);
1695
1696	++st->rx_bd_errors;
1697	if (ctrl & EMAC_RX_ST_OE)
1698		++st->rx_bd_overrun;
1699	if (ctrl & EMAC_RX_ST_BP)
1700		++st->rx_bd_bad_packet;
1701	if (ctrl & EMAC_RX_ST_RP)
1702		++st->rx_bd_runt_packet;
1703	if (ctrl & EMAC_RX_ST_SE)
1704		++st->rx_bd_short_event;
1705	if (ctrl & EMAC_RX_ST_AE)
1706		++st->rx_bd_alignment_error;
1707	if (ctrl & EMAC_RX_ST_BFCS)
1708		++st->rx_bd_bad_fcs;
1709	if (ctrl & EMAC_RX_ST_PTL)
1710		++st->rx_bd_packet_too_long;
1711	if (ctrl & EMAC_RX_ST_ORE)
1712		++st->rx_bd_out_of_range;
1713	if (ctrl & EMAC_RX_ST_IRE)
1714		++st->rx_bd_in_range;
1715}
1716
1717static inline void emac_rx_csum(struct emac_instance *dev,
1718				struct sk_buff *skb, u16 ctrl)
1719{
1720#ifdef CONFIG_IBM_EMAC_TAH
1721	if (!ctrl && dev->tah_dev) {
1722		skb->ip_summed = CHECKSUM_UNNECESSARY;
1723		++dev->stats.rx_packets_csum;
1724	}
1725#endif
1726}
1727
1728static inline int emac_rx_sg_append(struct emac_instance *dev, int slot)
1729{
1730	if (likely(dev->rx_sg_skb != NULL)) {
1731		int len = dev->rx_desc[slot].data_len;
1732		int tot_len = dev->rx_sg_skb->len + len;
1733
1734		if (unlikely(tot_len + NET_IP_ALIGN > dev->rx_skb_size)) {
1735			++dev->estats.rx_dropped_mtu;
1736			dev_kfree_skb(dev->rx_sg_skb);
1737			dev->rx_sg_skb = NULL;
1738		} else {
1739			memcpy(skb_tail_pointer(dev->rx_sg_skb),
1740					 dev->rx_skb[slot]->data, len);
1741			skb_put(dev->rx_sg_skb, len);
1742			emac_recycle_rx_skb(dev, slot, len);
1743			return 0;
1744		}
1745	}
1746	emac_recycle_rx_skb(dev, slot, 0);
1747	return -1;
1748}
1749
1750/* NAPI poll context */
1751static int emac_poll_rx(void *param, int budget)
1752{
1753	struct emac_instance *dev = param;
1754	int slot = dev->rx_slot, received = 0;
1755
1756	DBG2(dev, "poll_rx(%d)" NL, budget);
1757
1758 again:
1759	while (budget > 0) {
1760		int len;
1761		struct sk_buff *skb;
1762		u16 ctrl = dev->rx_desc[slot].ctrl;
1763
1764		if (ctrl & MAL_RX_CTRL_EMPTY)
1765			break;
1766
1767		skb = dev->rx_skb[slot];
1768		mb();
1769		len = dev->rx_desc[slot].data_len;
1770
1771		if (unlikely(!MAL_IS_SINGLE_RX(ctrl)))
1772			goto sg;
1773
1774		ctrl &= EMAC_BAD_RX_MASK;
1775		if (unlikely(ctrl && ctrl != EMAC_RX_TAH_BAD_CSUM)) {
1776			emac_parse_rx_error(dev, ctrl);
1777			++dev->estats.rx_dropped_error;
1778			emac_recycle_rx_skb(dev, slot, 0);
1779			len = 0;
1780			goto next;
1781		}
1782
1783		if (len < ETH_HLEN) {
1784			++dev->estats.rx_dropped_stack;
1785			emac_recycle_rx_skb(dev, slot, len);
1786			goto next;
1787		}
1788
1789		if (len && len < EMAC_RX_COPY_THRESH) {
1790			struct sk_buff *copy_skb;
1791
1792			copy_skb = napi_alloc_skb(&dev->mal->napi, len);
1793			if (unlikely(!copy_skb))
1794				goto oom;
1795
1796			memcpy(copy_skb->data - NET_IP_ALIGN,
1797			       skb->data - NET_IP_ALIGN,
1798			       len + NET_IP_ALIGN);
1799			emac_recycle_rx_skb(dev, slot, len);
1800			skb = copy_skb;
1801		} else if (unlikely(emac_alloc_rx_skb_napi(dev, slot)))
1802			goto oom;
1803
1804		skb_put(skb, len);
1805	push_packet:
1806		skb->protocol = eth_type_trans(skb, dev->ndev);
1807		emac_rx_csum(dev, skb, ctrl);
1808
1809		if (unlikely(netif_receive_skb(skb) == NET_RX_DROP))
1810			++dev->estats.rx_dropped_stack;
1811	next:
1812		++dev->stats.rx_packets;
1813	skip:
1814		dev->stats.rx_bytes += len;
1815		slot = (slot + 1) % NUM_RX_BUFF;
1816		--budget;
1817		++received;
1818		continue;
1819	sg:
1820		if (ctrl & MAL_RX_CTRL_FIRST) {
1821			BUG_ON(dev->rx_sg_skb);
1822			if (unlikely(emac_alloc_rx_skb_napi(dev, slot))) {
1823				DBG(dev, "rx OOM %d" NL, slot);
1824				++dev->estats.rx_dropped_oom;
1825				emac_recycle_rx_skb(dev, slot, 0);
1826			} else {
1827				dev->rx_sg_skb = skb;
1828				skb_put(skb, len);
1829			}
1830		} else if (!emac_rx_sg_append(dev, slot) &&
1831			   (ctrl & MAL_RX_CTRL_LAST)) {
1832
1833			skb = dev->rx_sg_skb;
1834			dev->rx_sg_skb = NULL;
1835
1836			ctrl &= EMAC_BAD_RX_MASK;
1837			if (unlikely(ctrl && ctrl != EMAC_RX_TAH_BAD_CSUM)) {
1838				emac_parse_rx_error(dev, ctrl);
1839				++dev->estats.rx_dropped_error;
1840				dev_kfree_skb(skb);
1841				len = 0;
1842			} else
1843				goto push_packet;
1844		}
1845		goto skip;
1846	oom:
1847		DBG(dev, "rx OOM %d" NL, slot);
1848		/* Drop the packet and recycle skb */
1849		++dev->estats.rx_dropped_oom;
1850		emac_recycle_rx_skb(dev, slot, 0);
1851		goto next;
1852	}
1853
1854	if (received) {
1855		DBG2(dev, "rx %d BDs" NL, received);
1856		dev->rx_slot = slot;
1857	}
1858
1859	if (unlikely(budget && test_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags))) {
1860		mb();
1861		if (!(dev->rx_desc[slot].ctrl & MAL_RX_CTRL_EMPTY)) {
1862			DBG2(dev, "rx restart" NL);
1863			received = 0;
1864			goto again;
1865		}
1866
1867		if (dev->rx_sg_skb) {
1868			DBG2(dev, "dropping partial rx packet" NL);
1869			++dev->estats.rx_dropped_error;
1870			dev_kfree_skb(dev->rx_sg_skb);
1871			dev->rx_sg_skb = NULL;
1872		}
1873
1874		clear_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags);
1875		mal_enable_rx_channel(dev->mal, dev->mal_rx_chan);
1876		emac_rx_enable(dev);
1877		dev->rx_slot = 0;
1878	}
1879	return received;
1880}
1881
1882/* NAPI poll context */
1883static int emac_peek_rx(void *param)
1884{
1885	struct emac_instance *dev = param;
1886
1887	return !(dev->rx_desc[dev->rx_slot].ctrl & MAL_RX_CTRL_EMPTY);
1888}
1889
1890/* NAPI poll context */
1891static int emac_peek_rx_sg(void *param)
1892{
1893	struct emac_instance *dev = param;
1894
1895	int slot = dev->rx_slot;
1896	while (1) {
1897		u16 ctrl = dev->rx_desc[slot].ctrl;
1898		if (ctrl & MAL_RX_CTRL_EMPTY)
1899			return 0;
1900		else if (ctrl & MAL_RX_CTRL_LAST)
1901			return 1;
1902
1903		slot = (slot + 1) % NUM_RX_BUFF;
1904
1905		/* I'm just being paranoid here :) */
1906		if (unlikely(slot == dev->rx_slot))
1907			return 0;
1908	}
1909}
1910
1911/* Hard IRQ */
1912static void emac_rxde(void *param)
1913{
1914	struct emac_instance *dev = param;
1915
1916	++dev->estats.rx_stopped;
1917	emac_rx_disable_async(dev);
1918}
1919
1920/* Hard IRQ */
1921static irqreturn_t emac_irq(int irq, void *dev_instance)
1922{
1923	struct emac_instance *dev = dev_instance;
1924	struct emac_regs __iomem *p = dev->emacp;
1925	struct emac_error_stats *st = &dev->estats;
1926	u32 isr;
1927
1928	spin_lock(&dev->lock);
1929
1930	isr = in_be32(&p->isr);
1931	out_be32(&p->isr, isr);
1932
1933	DBG(dev, "isr = %08x" NL, isr);
1934
1935	if (isr & EMAC4_ISR_TXPE)
1936		++st->tx_parity;
1937	if (isr & EMAC4_ISR_RXPE)
1938		++st->rx_parity;
1939	if (isr & EMAC4_ISR_TXUE)
1940		++st->tx_underrun;
1941	if (isr & EMAC4_ISR_RXOE)
1942		++st->rx_fifo_overrun;
1943	if (isr & EMAC_ISR_OVR)
1944		++st->rx_overrun;
1945	if (isr & EMAC_ISR_BP)
1946		++st->rx_bad_packet;
1947	if (isr & EMAC_ISR_RP)
1948		++st->rx_runt_packet;
1949	if (isr & EMAC_ISR_SE)
1950		++st->rx_short_event;
1951	if (isr & EMAC_ISR_ALE)
1952		++st->rx_alignment_error;
1953	if (isr & EMAC_ISR_BFCS)
1954		++st->rx_bad_fcs;
1955	if (isr & EMAC_ISR_PTLE)
1956		++st->rx_packet_too_long;
1957	if (isr & EMAC_ISR_ORE)
1958		++st->rx_out_of_range;
1959	if (isr & EMAC_ISR_IRE)
1960		++st->rx_in_range;
1961	if (isr & EMAC_ISR_SQE)
1962		++st->tx_sqe;
1963	if (isr & EMAC_ISR_TE)
1964		++st->tx_errors;
1965
1966	spin_unlock(&dev->lock);
1967
1968	return IRQ_HANDLED;
1969}
1970
1971static struct net_device_stats *emac_stats(struct net_device *ndev)
1972{
1973	struct emac_instance *dev = netdev_priv(ndev);
1974	struct emac_stats *st = &dev->stats;
1975	struct emac_error_stats *est = &dev->estats;
1976	struct net_device_stats *nst = &ndev->stats;
1977	unsigned long flags;
1978
1979	DBG2(dev, "stats" NL);
1980
1981	/* Compute "legacy" statistics */
1982	spin_lock_irqsave(&dev->lock, flags);
1983	nst->rx_packets = (unsigned long)st->rx_packets;
1984	nst->rx_bytes = (unsigned long)st->rx_bytes;
1985	nst->tx_packets = (unsigned long)st->tx_packets;
1986	nst->tx_bytes = (unsigned long)st->tx_bytes;
1987	nst->rx_dropped = (unsigned long)(est->rx_dropped_oom +
1988					  est->rx_dropped_error +
1989					  est->rx_dropped_resize +
1990					  est->rx_dropped_mtu);
1991	nst->tx_dropped = (unsigned long)est->tx_dropped;
1992
1993	nst->rx_errors = (unsigned long)est->rx_bd_errors;
1994	nst->rx_fifo_errors = (unsigned long)(est->rx_bd_overrun +
1995					      est->rx_fifo_overrun +
1996					      est->rx_overrun);
1997	nst->rx_frame_errors = (unsigned long)(est->rx_bd_alignment_error +
1998					       est->rx_alignment_error);
1999	nst->rx_crc_errors = (unsigned long)(est->rx_bd_bad_fcs +
2000					     est->rx_bad_fcs);
2001	nst->rx_length_errors = (unsigned long)(est->rx_bd_runt_packet +
2002						est->rx_bd_short_event +
2003						est->rx_bd_packet_too_long +
2004						est->rx_bd_out_of_range +
2005						est->rx_bd_in_range +
2006						est->rx_runt_packet +
2007						est->rx_short_event +
2008						est->rx_packet_too_long +
2009						est->rx_out_of_range +
2010						est->rx_in_range);
2011
2012	nst->tx_errors = (unsigned long)(est->tx_bd_errors + est->tx_errors);
2013	nst->tx_fifo_errors = (unsigned long)(est->tx_bd_underrun +
2014					      est->tx_underrun);
2015	nst->tx_carrier_errors = (unsigned long)est->tx_bd_carrier_loss;
2016	nst->collisions = (unsigned long)(est->tx_bd_excessive_deferral +
2017					  est->tx_bd_excessive_collisions +
2018					  est->tx_bd_late_collision +
2019					  est->tx_bd_multple_collisions);
2020	spin_unlock_irqrestore(&dev->lock, flags);
2021	return nst;
2022}
2023
2024static struct mal_commac_ops emac_commac_ops = {
2025	.poll_tx = &emac_poll_tx,
2026	.poll_rx = &emac_poll_rx,
2027	.peek_rx = &emac_peek_rx,
2028	.rxde = &emac_rxde,
2029};
2030
2031static struct mal_commac_ops emac_commac_sg_ops = {
2032	.poll_tx = &emac_poll_tx,
2033	.poll_rx = &emac_poll_rx,
2034	.peek_rx = &emac_peek_rx_sg,
2035	.rxde = &emac_rxde,
2036};
2037
2038/* Ethtool support */
2039static int emac_ethtool_get_link_ksettings(struct net_device *ndev,
2040					   struct ethtool_link_ksettings *cmd)
2041{
2042	struct emac_instance *dev = netdev_priv(ndev);
2043	u32 supported, advertising;
2044
2045	supported = dev->phy.features;
2046	cmd->base.port = PORT_MII;
2047	cmd->base.phy_address = dev->phy.address;
2048
2049	mutex_lock(&dev->link_lock);
2050	advertising = dev->phy.advertising;
2051	cmd->base.autoneg = dev->phy.autoneg;
2052	cmd->base.speed = dev->phy.speed;
2053	cmd->base.duplex = dev->phy.duplex;
2054	mutex_unlock(&dev->link_lock);
2055
2056	ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
2057						supported);
2058	ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
2059						advertising);
2060
2061	return 0;
2062}
2063
2064static int
2065emac_ethtool_set_link_ksettings(struct net_device *ndev,
2066				const struct ethtool_link_ksettings *cmd)
2067{
2068	struct emac_instance *dev = netdev_priv(ndev);
2069	u32 f = dev->phy.features;
2070	u32 advertising;
2071
2072	ethtool_convert_link_mode_to_legacy_u32(&advertising,
2073						cmd->link_modes.advertising);
2074
2075	DBG(dev, "set_settings(%d, %d, %d, 0x%08x)" NL,
2076	    cmd->base.autoneg, cmd->base.speed, cmd->base.duplex, advertising);
2077
2078	/* Basic sanity checks */
2079	if (dev->phy.address < 0)
2080		return -EOPNOTSUPP;
2081	if (cmd->base.autoneg != AUTONEG_ENABLE &&
2082	    cmd->base.autoneg != AUTONEG_DISABLE)
2083		return -EINVAL;
2084	if (cmd->base.autoneg == AUTONEG_ENABLE && advertising == 0)
2085		return -EINVAL;
2086	if (cmd->base.duplex != DUPLEX_HALF && cmd->base.duplex != DUPLEX_FULL)
2087		return -EINVAL;
2088
2089	if (cmd->base.autoneg == AUTONEG_DISABLE) {
2090		switch (cmd->base.speed) {
2091		case SPEED_10:
2092			if (cmd->base.duplex == DUPLEX_HALF &&
2093			    !(f & SUPPORTED_10baseT_Half))
2094				return -EINVAL;
2095			if (cmd->base.duplex == DUPLEX_FULL &&
2096			    !(f & SUPPORTED_10baseT_Full))
2097				return -EINVAL;
2098			break;
2099		case SPEED_100:
2100			if (cmd->base.duplex == DUPLEX_HALF &&
2101			    !(f & SUPPORTED_100baseT_Half))
2102				return -EINVAL;
2103			if (cmd->base.duplex == DUPLEX_FULL &&
2104			    !(f & SUPPORTED_100baseT_Full))
2105				return -EINVAL;
2106			break;
2107		case SPEED_1000:
2108			if (cmd->base.duplex == DUPLEX_HALF &&
2109			    !(f & SUPPORTED_1000baseT_Half))
2110				return -EINVAL;
2111			if (cmd->base.duplex == DUPLEX_FULL &&
2112			    !(f & SUPPORTED_1000baseT_Full))
2113				return -EINVAL;
2114			break;
2115		default:
2116			return -EINVAL;
2117		}
2118
2119		mutex_lock(&dev->link_lock);
2120		dev->phy.def->ops->setup_forced(&dev->phy, cmd->base.speed,
2121						cmd->base.duplex);
2122		mutex_unlock(&dev->link_lock);
2123
2124	} else {
2125		if (!(f & SUPPORTED_Autoneg))
2126			return -EINVAL;
2127
2128		mutex_lock(&dev->link_lock);
2129		dev->phy.def->ops->setup_aneg(&dev->phy,
2130					      (advertising & f) |
2131					      (dev->phy.advertising &
2132					       (ADVERTISED_Pause |
2133						ADVERTISED_Asym_Pause)));
2134		mutex_unlock(&dev->link_lock);
2135	}
2136	emac_force_link_update(dev);
2137
2138	return 0;
2139}
2140
2141static void
2142emac_ethtool_get_ringparam(struct net_device *ndev,
2143			   struct ethtool_ringparam *rp,
2144			   struct kernel_ethtool_ringparam *kernel_rp,
2145			   struct netlink_ext_ack *extack)
2146{
2147	rp->rx_max_pending = rp->rx_pending = NUM_RX_BUFF;
2148	rp->tx_max_pending = rp->tx_pending = NUM_TX_BUFF;
2149}
2150
2151static void emac_ethtool_get_pauseparam(struct net_device *ndev,
2152					struct ethtool_pauseparam *pp)
2153{
2154	struct emac_instance *dev = netdev_priv(ndev);
2155
2156	mutex_lock(&dev->link_lock);
2157	if ((dev->phy.features & SUPPORTED_Autoneg) &&
2158	    (dev->phy.advertising & (ADVERTISED_Pause | ADVERTISED_Asym_Pause)))
2159		pp->autoneg = 1;
2160
2161	if (dev->phy.duplex == DUPLEX_FULL) {
2162		if (dev->phy.pause)
2163			pp->rx_pause = pp->tx_pause = 1;
2164		else if (dev->phy.asym_pause)
2165			pp->tx_pause = 1;
2166	}
2167	mutex_unlock(&dev->link_lock);
2168}
2169
2170static int emac_get_regs_len(struct emac_instance *dev)
2171{
2172		return sizeof(struct emac_ethtool_regs_subhdr) +
2173			sizeof(struct emac_regs);
2174}
2175
2176static int emac_ethtool_get_regs_len(struct net_device *ndev)
2177{
2178	struct emac_instance *dev = netdev_priv(ndev);
2179	int size;
2180
2181	size = sizeof(struct emac_ethtool_regs_hdr) +
2182		emac_get_regs_len(dev) + mal_get_regs_len(dev->mal);
2183	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
2184		size += zmii_get_regs_len(dev->zmii_dev);
2185	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
2186		size += rgmii_get_regs_len(dev->rgmii_dev);
2187	if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
2188		size += tah_get_regs_len(dev->tah_dev);
2189
2190	return size;
2191}
2192
2193static void *emac_dump_regs(struct emac_instance *dev, void *buf)
2194{
2195	struct emac_ethtool_regs_subhdr *hdr = buf;
2196
2197	hdr->index = dev->cell_index;
2198	if (emac_has_feature(dev, EMAC_FTR_EMAC4SYNC)) {
2199		hdr->version = EMAC4SYNC_ETHTOOL_REGS_VER;
2200	} else if (emac_has_feature(dev, EMAC_FTR_EMAC4)) {
2201		hdr->version = EMAC4_ETHTOOL_REGS_VER;
2202	} else {
2203		hdr->version = EMAC_ETHTOOL_REGS_VER;
2204	}
2205	memcpy_fromio(hdr + 1, dev->emacp, sizeof(struct emac_regs));
2206	return (void *)(hdr + 1) + sizeof(struct emac_regs);
2207}
2208
2209static void emac_ethtool_get_regs(struct net_device *ndev,
2210				  struct ethtool_regs *regs, void *buf)
2211{
2212	struct emac_instance *dev = netdev_priv(ndev);
2213	struct emac_ethtool_regs_hdr *hdr = buf;
2214
2215	hdr->components = 0;
2216	buf = hdr + 1;
2217
2218	buf = mal_dump_regs(dev->mal, buf);
2219	buf = emac_dump_regs(dev, buf);
2220	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII)) {
2221		hdr->components |= EMAC_ETHTOOL_REGS_ZMII;
2222		buf = zmii_dump_regs(dev->zmii_dev, buf);
2223	}
2224	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII)) {
2225		hdr->components |= EMAC_ETHTOOL_REGS_RGMII;
2226		buf = rgmii_dump_regs(dev->rgmii_dev, buf);
2227	}
2228	if (emac_has_feature(dev, EMAC_FTR_HAS_TAH)) {
2229		hdr->components |= EMAC_ETHTOOL_REGS_TAH;
2230		buf = tah_dump_regs(dev->tah_dev, buf);
2231	}
2232}
2233
2234static int emac_ethtool_nway_reset(struct net_device *ndev)
2235{
2236	struct emac_instance *dev = netdev_priv(ndev);
2237	int res = 0;
2238
2239	DBG(dev, "nway_reset" NL);
2240
2241	if (dev->phy.address < 0)
2242		return -EOPNOTSUPP;
2243
2244	mutex_lock(&dev->link_lock);
2245	if (!dev->phy.autoneg) {
2246		res = -EINVAL;
2247		goto out;
2248	}
2249
2250	dev->phy.def->ops->setup_aneg(&dev->phy, dev->phy.advertising);
2251 out:
2252	mutex_unlock(&dev->link_lock);
2253	emac_force_link_update(dev);
2254	return res;
2255}
2256
2257static int emac_ethtool_get_sset_count(struct net_device *ndev, int stringset)
2258{
2259	if (stringset == ETH_SS_STATS)
2260		return EMAC_ETHTOOL_STATS_COUNT;
2261	else
2262		return -EINVAL;
2263}
2264
2265static void emac_ethtool_get_strings(struct net_device *ndev, u32 stringset,
2266				     u8 * buf)
2267{
2268	if (stringset == ETH_SS_STATS)
2269		memcpy(buf, &emac_stats_keys, sizeof(emac_stats_keys));
2270}
2271
2272static void emac_ethtool_get_ethtool_stats(struct net_device *ndev,
2273					   struct ethtool_stats *estats,
2274					   u64 * tmp_stats)
2275{
2276	struct emac_instance *dev = netdev_priv(ndev);
2277
2278	memcpy(tmp_stats, &dev->stats, sizeof(dev->stats));
2279	tmp_stats += sizeof(dev->stats) / sizeof(u64);
2280	memcpy(tmp_stats, &dev->estats, sizeof(dev->estats));
2281}
2282
2283static void emac_ethtool_get_drvinfo(struct net_device *ndev,
2284				     struct ethtool_drvinfo *info)
2285{
2286	struct emac_instance *dev = netdev_priv(ndev);
2287
2288	strscpy(info->driver, "ibm_emac", sizeof(info->driver));
2289	strscpy(info->version, DRV_VERSION, sizeof(info->version));
2290	snprintf(info->bus_info, sizeof(info->bus_info), "PPC 4xx EMAC-%d %pOF",
2291		 dev->cell_index, dev->ofdev->dev.of_node);
2292}
2293
2294static const struct ethtool_ops emac_ethtool_ops = {
2295	.get_drvinfo = emac_ethtool_get_drvinfo,
2296
2297	.get_regs_len = emac_ethtool_get_regs_len,
2298	.get_regs = emac_ethtool_get_regs,
2299
2300	.nway_reset = emac_ethtool_nway_reset,
2301
2302	.get_ringparam = emac_ethtool_get_ringparam,
2303	.get_pauseparam = emac_ethtool_get_pauseparam,
2304
2305	.get_strings = emac_ethtool_get_strings,
2306	.get_sset_count = emac_ethtool_get_sset_count,
2307	.get_ethtool_stats = emac_ethtool_get_ethtool_stats,
2308
2309	.get_link = ethtool_op_get_link,
2310	.get_link_ksettings = emac_ethtool_get_link_ksettings,
2311	.set_link_ksettings = emac_ethtool_set_link_ksettings,
2312};
2313
2314static int emac_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
2315{
2316	struct emac_instance *dev = netdev_priv(ndev);
2317	struct mii_ioctl_data *data = if_mii(rq);
2318
2319	DBG(dev, "ioctl %08x" NL, cmd);
2320
2321	if (dev->phy.address < 0)
2322		return -EOPNOTSUPP;
2323
2324	switch (cmd) {
2325	case SIOCGMIIPHY:
2326		data->phy_id = dev->phy.address;
2327		fallthrough;
2328	case SIOCGMIIREG:
2329		data->val_out = emac_mdio_read(ndev, dev->phy.address,
2330					       data->reg_num);
2331		return 0;
2332
2333	case SIOCSMIIREG:
2334		emac_mdio_write(ndev, dev->phy.address, data->reg_num,
2335				data->val_in);
2336		return 0;
2337	default:
2338		return -EOPNOTSUPP;
2339	}
2340}
2341
2342struct emac_depentry {
2343	u32			phandle;
2344	struct device_node	*node;
2345	struct platform_device	*ofdev;
2346	void			*drvdata;
2347};
2348
2349#define	EMAC_DEP_MAL_IDX	0
2350#define	EMAC_DEP_ZMII_IDX	1
2351#define	EMAC_DEP_RGMII_IDX	2
2352#define	EMAC_DEP_TAH_IDX	3
2353#define	EMAC_DEP_MDIO_IDX	4
2354#define	EMAC_DEP_PREV_IDX	5
2355#define	EMAC_DEP_COUNT		6
2356
2357static int emac_check_deps(struct emac_instance *dev,
2358			   struct emac_depentry *deps)
2359{
2360	int i, there = 0;
2361	struct device_node *np;
2362
2363	for (i = 0; i < EMAC_DEP_COUNT; i++) {
2364		/* no dependency on that item, allright */
2365		if (deps[i].phandle == 0) {
2366			there++;
2367			continue;
2368		}
2369		/* special case for blist as the dependency might go away */
2370		if (i == EMAC_DEP_PREV_IDX) {
2371			np = *(dev->blist - 1);
2372			if (np == NULL) {
2373				deps[i].phandle = 0;
2374				there++;
2375				continue;
2376			}
2377			if (deps[i].node == NULL)
2378				deps[i].node = of_node_get(np);
2379		}
2380		if (deps[i].node == NULL)
2381			deps[i].node = of_find_node_by_phandle(deps[i].phandle);
2382		if (deps[i].node == NULL)
2383			continue;
2384		if (deps[i].ofdev == NULL)
2385			deps[i].ofdev = of_find_device_by_node(deps[i].node);
2386		if (deps[i].ofdev == NULL)
2387			continue;
2388		if (deps[i].drvdata == NULL)
2389			deps[i].drvdata = platform_get_drvdata(deps[i].ofdev);
2390		if (deps[i].drvdata != NULL)
2391			there++;
2392	}
2393	return there == EMAC_DEP_COUNT;
2394}
2395
2396static void emac_put_deps(struct emac_instance *dev)
2397{
2398	platform_device_put(dev->mal_dev);
2399	platform_device_put(dev->zmii_dev);
2400	platform_device_put(dev->rgmii_dev);
2401	platform_device_put(dev->mdio_dev);
2402	platform_device_put(dev->tah_dev);
2403}
2404
2405static int emac_of_bus_notify(struct notifier_block *nb, unsigned long action,
2406			      void *data)
2407{
2408	/* We are only intereted in device addition */
2409	if (action == BUS_NOTIFY_BOUND_DRIVER)
2410		wake_up_all(&emac_probe_wait);
2411	return 0;
2412}
2413
2414static struct notifier_block emac_of_bus_notifier = {
2415	.notifier_call = emac_of_bus_notify
2416};
2417
2418static int emac_wait_deps(struct emac_instance *dev)
2419{
2420	struct emac_depentry deps[EMAC_DEP_COUNT];
2421	int i, err;
2422
2423	memset(&deps, 0, sizeof(deps));
2424
2425	deps[EMAC_DEP_MAL_IDX].phandle = dev->mal_ph;
2426	deps[EMAC_DEP_ZMII_IDX].phandle = dev->zmii_ph;
2427	deps[EMAC_DEP_RGMII_IDX].phandle = dev->rgmii_ph;
2428	if (dev->tah_ph)
2429		deps[EMAC_DEP_TAH_IDX].phandle = dev->tah_ph;
2430	if (dev->mdio_ph)
2431		deps[EMAC_DEP_MDIO_IDX].phandle = dev->mdio_ph;
2432	if (dev->blist && dev->blist > emac_boot_list)
2433		deps[EMAC_DEP_PREV_IDX].phandle = 0xffffffffu;
2434	bus_register_notifier(&platform_bus_type, &emac_of_bus_notifier);
2435	wait_event_timeout(emac_probe_wait,
2436			   emac_check_deps(dev, deps),
2437			   EMAC_PROBE_DEP_TIMEOUT);
2438	bus_unregister_notifier(&platform_bus_type, &emac_of_bus_notifier);
2439	err = emac_check_deps(dev, deps) ? 0 : -ENODEV;
2440	for (i = 0; i < EMAC_DEP_COUNT; i++) {
2441		of_node_put(deps[i].node);
2442		if (err)
2443			platform_device_put(deps[i].ofdev);
2444	}
2445	if (err == 0) {
2446		dev->mal_dev = deps[EMAC_DEP_MAL_IDX].ofdev;
2447		dev->zmii_dev = deps[EMAC_DEP_ZMII_IDX].ofdev;
2448		dev->rgmii_dev = deps[EMAC_DEP_RGMII_IDX].ofdev;
2449		dev->tah_dev = deps[EMAC_DEP_TAH_IDX].ofdev;
2450		dev->mdio_dev = deps[EMAC_DEP_MDIO_IDX].ofdev;
2451	}
2452	platform_device_put(deps[EMAC_DEP_PREV_IDX].ofdev);
2453	return err;
2454}
2455
2456static int emac_read_uint_prop(struct device_node *np, const char *name,
2457			       u32 *val, int fatal)
2458{
2459	int len;
2460	const u32 *prop = of_get_property(np, name, &len);
2461	if (prop == NULL || len < sizeof(u32)) {
2462		if (fatal)
2463			printk(KERN_ERR "%pOF: missing %s property\n",
2464			       np, name);
2465		return -ENODEV;
2466	}
2467	*val = *prop;
2468	return 0;
2469}
2470
2471static void emac_adjust_link(struct net_device *ndev)
2472{
2473	struct emac_instance *dev = netdev_priv(ndev);
2474	struct phy_device *phy = dev->phy_dev;
2475
2476	dev->phy.autoneg = phy->autoneg;
2477	dev->phy.speed = phy->speed;
2478	dev->phy.duplex = phy->duplex;
2479	dev->phy.pause = phy->pause;
2480	dev->phy.asym_pause = phy->asym_pause;
2481	ethtool_convert_link_mode_to_legacy_u32(&dev->phy.advertising,
2482						phy->advertising);
2483}
2484
2485static int emac_mii_bus_read(struct mii_bus *bus, int addr, int regnum)
2486{
2487	int ret = emac_mdio_read(bus->priv, addr, regnum);
2488	/* This is a workaround for powered down ports/phys.
2489	 * In the wild, this was seen on the Cisco Meraki MX60(W).
2490	 * This hardware disables ports as part of the handoff
2491	 * procedure. Accessing the ports will lead to errors
2492	 * (-ETIMEDOUT, -EREMOTEIO) that do more harm than good.
2493	 */
2494	return ret < 0 ? 0xffff : ret;
2495}
2496
2497static int emac_mii_bus_write(struct mii_bus *bus, int addr,
2498			      int regnum, u16 val)
2499{
2500	emac_mdio_write(bus->priv, addr, regnum, val);
2501	return 0;
2502}
2503
2504static int emac_mii_bus_reset(struct mii_bus *bus)
2505{
2506	struct emac_instance *dev = netdev_priv(bus->priv);
2507
2508	return emac_reset(dev);
2509}
2510
2511static int emac_mdio_phy_start_aneg(struct mii_phy *phy,
2512				    struct phy_device *phy_dev)
2513{
2514	phy_dev->autoneg = phy->autoneg;
2515	phy_dev->speed = phy->speed;
2516	phy_dev->duplex = phy->duplex;
2517	ethtool_convert_legacy_u32_to_link_mode(phy_dev->advertising,
2518						phy->advertising);
2519	return phy_start_aneg(phy_dev);
2520}
2521
2522static int emac_mdio_setup_aneg(struct mii_phy *phy, u32 advertise)
2523{
2524	struct net_device *ndev = phy->dev;
2525	struct emac_instance *dev = netdev_priv(ndev);
2526
2527	phy->autoneg = AUTONEG_ENABLE;
2528	phy->advertising = advertise;
2529	return emac_mdio_phy_start_aneg(phy, dev->phy_dev);
2530}
2531
2532static int emac_mdio_setup_forced(struct mii_phy *phy, int speed, int fd)
2533{
2534	struct net_device *ndev = phy->dev;
2535	struct emac_instance *dev = netdev_priv(ndev);
2536
2537	phy->autoneg = AUTONEG_DISABLE;
2538	phy->speed = speed;
2539	phy->duplex = fd;
2540	return emac_mdio_phy_start_aneg(phy, dev->phy_dev);
2541}
2542
2543static int emac_mdio_poll_link(struct mii_phy *phy)
2544{
2545	struct net_device *ndev = phy->dev;
2546	struct emac_instance *dev = netdev_priv(ndev);
2547	int res;
2548
2549	res = phy_read_status(dev->phy_dev);
2550	if (res) {
2551		dev_err(&dev->ofdev->dev, "link update failed (%d).", res);
2552		return ethtool_op_get_link(ndev);
2553	}
2554
2555	return dev->phy_dev->link;
2556}
2557
2558static int emac_mdio_read_link(struct mii_phy *phy)
2559{
2560	struct net_device *ndev = phy->dev;
2561	struct emac_instance *dev = netdev_priv(ndev);
2562	struct phy_device *phy_dev = dev->phy_dev;
2563	int res;
2564
2565	res = phy_read_status(phy_dev);
2566	if (res)
2567		return res;
2568
2569	phy->speed = phy_dev->speed;
2570	phy->duplex = phy_dev->duplex;
2571	phy->pause = phy_dev->pause;
2572	phy->asym_pause = phy_dev->asym_pause;
2573	return 0;
2574}
2575
2576static int emac_mdio_init_phy(struct mii_phy *phy)
2577{
2578	struct net_device *ndev = phy->dev;
2579	struct emac_instance *dev = netdev_priv(ndev);
2580
2581	phy_start(dev->phy_dev);
2582	return phy_init_hw(dev->phy_dev);
2583}
2584
2585static const struct mii_phy_ops emac_dt_mdio_phy_ops = {
2586	.init		= emac_mdio_init_phy,
2587	.setup_aneg	= emac_mdio_setup_aneg,
2588	.setup_forced	= emac_mdio_setup_forced,
2589	.poll_link	= emac_mdio_poll_link,
2590	.read_link	= emac_mdio_read_link,
2591};
2592
2593static int emac_dt_mdio_probe(struct emac_instance *dev)
2594{
2595	struct device_node *mii_np;
2596	int res;
2597
2598	mii_np = of_get_child_by_name(dev->ofdev->dev.of_node, "mdio");
2599	if (!mii_np) {
2600		dev_err(&dev->ofdev->dev, "no mdio definition found.");
2601		return -ENODEV;
2602	}
2603
2604	if (!of_device_is_available(mii_np)) {
2605		res = -ENODEV;
2606		goto put_node;
2607	}
2608
2609	dev->mii_bus = devm_mdiobus_alloc(&dev->ofdev->dev);
2610	if (!dev->mii_bus) {
2611		res = -ENOMEM;
2612		goto put_node;
2613	}
2614
2615	dev->mii_bus->priv = dev->ndev;
2616	dev->mii_bus->parent = dev->ndev->dev.parent;
2617	dev->mii_bus->name = "emac_mdio";
2618	dev->mii_bus->read = &emac_mii_bus_read;
2619	dev->mii_bus->write = &emac_mii_bus_write;
2620	dev->mii_bus->reset = &emac_mii_bus_reset;
2621	snprintf(dev->mii_bus->id, MII_BUS_ID_SIZE, "%s", dev->ofdev->name);
2622	res = of_mdiobus_register(dev->mii_bus, mii_np);
2623	if (res) {
2624		dev_err(&dev->ofdev->dev, "cannot register MDIO bus %s (%d)",
2625			dev->mii_bus->name, res);
2626	}
2627
2628 put_node:
2629	of_node_put(mii_np);
2630	return res;
2631}
2632
2633static int emac_dt_phy_connect(struct emac_instance *dev,
2634			       struct device_node *phy_handle)
2635{
2636	dev->phy.def = devm_kzalloc(&dev->ofdev->dev, sizeof(*dev->phy.def),
2637				    GFP_KERNEL);
2638	if (!dev->phy.def)
2639		return -ENOMEM;
2640
2641	dev->phy_dev = of_phy_connect(dev->ndev, phy_handle, &emac_adjust_link,
2642				      0, dev->phy_mode);
2643	if (!dev->phy_dev) {
2644		dev_err(&dev->ofdev->dev, "failed to connect to PHY.\n");
2645		return -ENODEV;
2646	}
2647
2648	dev->phy.def->phy_id = dev->phy_dev->drv->phy_id;
2649	dev->phy.def->phy_id_mask = dev->phy_dev->drv->phy_id_mask;
2650	dev->phy.def->name = dev->phy_dev->drv->name;
2651	dev->phy.def->ops = &emac_dt_mdio_phy_ops;
2652	ethtool_convert_link_mode_to_legacy_u32(&dev->phy.features,
2653						dev->phy_dev->supported);
2654	dev->phy.address = dev->phy_dev->mdio.addr;
2655	dev->phy.mode = dev->phy_dev->interface;
2656	return 0;
2657}
2658
2659static int emac_dt_phy_probe(struct emac_instance *dev)
2660{
2661	struct device_node *np = dev->ofdev->dev.of_node;
2662	struct device_node *phy_handle;
2663	int res = 1;
2664
2665	phy_handle = of_parse_phandle(np, "phy-handle", 0);
2666
2667	if (phy_handle) {
2668		res = emac_dt_mdio_probe(dev);
2669		if (!res) {
2670			res = emac_dt_phy_connect(dev, phy_handle);
2671			if (res)
2672				mdiobus_unregister(dev->mii_bus);
2673		}
2674	}
2675
2676	of_node_put(phy_handle);
2677	return res;
2678}
2679
2680static int emac_init_phy(struct emac_instance *dev)
2681{
2682	struct device_node *np = dev->ofdev->dev.of_node;
2683	struct net_device *ndev = dev->ndev;
2684	u32 phy_map, adv;
2685	int i;
2686
2687	dev->phy.dev = ndev;
2688	dev->phy.mode = dev->phy_mode;
2689
2690	/* PHY-less configuration. */
2691	if ((dev->phy_address == 0xffffffff && dev->phy_map == 0xffffffff) ||
2692	    of_phy_is_fixed_link(np)) {
2693		emac_reset(dev);
2694
2695		/* PHY-less configuration. */
2696		dev->phy.address = -1;
2697		dev->phy.features = SUPPORTED_MII;
2698		if (emac_phy_supports_gige(dev->phy_mode))
2699			dev->phy.features |= SUPPORTED_1000baseT_Full;
2700		else
2701			dev->phy.features |= SUPPORTED_100baseT_Full;
2702		dev->phy.pause = 1;
2703
2704		if (of_phy_is_fixed_link(np)) {
2705			int res = emac_dt_mdio_probe(dev);
2706
2707			if (res)
2708				return res;
2709
2710			res = of_phy_register_fixed_link(np);
2711			dev->phy_dev = of_phy_find_device(np);
2712			if (res || !dev->phy_dev) {
2713				mdiobus_unregister(dev->mii_bus);
2714				return res ? res : -EINVAL;
2715			}
2716			emac_adjust_link(dev->ndev);
2717			put_device(&dev->phy_dev->mdio.dev);
2718		}
2719		return 0;
2720	}
2721
2722	mutex_lock(&emac_phy_map_lock);
2723	phy_map = dev->phy_map | busy_phy_map;
2724
2725	DBG(dev, "PHY maps %08x %08x" NL, dev->phy_map, busy_phy_map);
2726
2727	dev->phy.mdio_read = emac_mdio_read;
2728	dev->phy.mdio_write = emac_mdio_write;
2729
2730	/* Enable internal clock source */
2731#ifdef CONFIG_PPC_DCR_NATIVE
2732	if (emac_has_feature(dev, EMAC_FTR_440GX_PHY_CLK_FIX))
2733		dcri_clrset(SDR0, SDR0_MFR, 0, SDR0_MFR_ECS);
2734#endif
2735	/* PHY clock workaround */
2736	emac_rx_clk_tx(dev);
2737
2738	/* Enable internal clock source on 440GX*/
2739#ifdef CONFIG_PPC_DCR_NATIVE
2740	if (emac_has_feature(dev, EMAC_FTR_440GX_PHY_CLK_FIX))
2741		dcri_clrset(SDR0, SDR0_MFR, 0, SDR0_MFR_ECS);
2742#endif
2743	/* Configure EMAC with defaults so we can at least use MDIO
2744	 * This is needed mostly for 440GX
2745	 */
2746	if (emac_phy_gpcs(dev->phy.mode)) {
2747		/* XXX
2748		 * Make GPCS PHY address equal to EMAC index.
2749		 * We probably should take into account busy_phy_map
2750		 * and/or phy_map here.
2751		 *
2752		 * Note that the busy_phy_map is currently global
2753		 * while it should probably be per-ASIC...
2754		 */
2755		dev->phy.gpcs_address = dev->gpcs_address;
2756		if (dev->phy.gpcs_address == 0xffffffff)
2757			dev->phy.address = dev->cell_index;
2758	}
2759
2760	emac_configure(dev);
2761
2762	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII)) {
2763		int res = emac_dt_phy_probe(dev);
2764
2765		switch (res) {
2766		case 1:
2767			/* No phy-handle property configured.
2768			 * Continue with the existing phy probe
2769			 * and setup code.
2770			 */
2771			break;
2772
2773		case 0:
2774			mutex_unlock(&emac_phy_map_lock);
2775			goto init_phy;
2776
2777		default:
2778			mutex_unlock(&emac_phy_map_lock);
2779			dev_err(&dev->ofdev->dev, "failed to attach dt phy (%d).\n",
2780				res);
2781			return res;
2782		}
2783	}
2784
2785	if (dev->phy_address != 0xffffffff)
2786		phy_map = ~(1 << dev->phy_address);
2787
2788	for (i = 0; i < 0x20; phy_map >>= 1, ++i)
2789		if (!(phy_map & 1)) {
2790			int r;
2791			busy_phy_map |= 1 << i;
2792
2793			/* Quick check if there is a PHY at the address */
2794			r = emac_mdio_read(dev->ndev, i, MII_BMCR);
2795			if (r == 0xffff || r < 0)
2796				continue;
2797			if (!emac_mii_phy_probe(&dev->phy, i))
2798				break;
2799		}
2800
2801	/* Enable external clock source */
2802#ifdef CONFIG_PPC_DCR_NATIVE
2803	if (emac_has_feature(dev, EMAC_FTR_440GX_PHY_CLK_FIX))
2804		dcri_clrset(SDR0, SDR0_MFR, SDR0_MFR_ECS, 0);
2805#endif
2806	mutex_unlock(&emac_phy_map_lock);
2807	if (i == 0x20) {
2808		printk(KERN_WARNING "%pOF: can't find PHY!\n", np);
2809		return -ENXIO;
2810	}
2811
2812 init_phy:
2813	/* Init PHY */
2814	if (dev->phy.def->ops->init)
2815		dev->phy.def->ops->init(&dev->phy);
2816
2817	/* Disable any PHY features not supported by the platform */
2818	dev->phy.def->features &= ~dev->phy_feat_exc;
2819	dev->phy.features &= ~dev->phy_feat_exc;
2820
2821	/* Setup initial link parameters */
2822	if (dev->phy.features & SUPPORTED_Autoneg) {
2823		adv = dev->phy.features;
2824		if (!emac_has_feature(dev, EMAC_FTR_NO_FLOW_CONTROL_40x))
2825			adv |= ADVERTISED_Pause | ADVERTISED_Asym_Pause;
2826		/* Restart autonegotiation */
2827		dev->phy.def->ops->setup_aneg(&dev->phy, adv);
2828	} else {
2829		u32 f = dev->phy.def->features;
2830		int speed = SPEED_10, fd = DUPLEX_HALF;
2831
2832		/* Select highest supported speed/duplex */
2833		if (f & SUPPORTED_1000baseT_Full) {
2834			speed = SPEED_1000;
2835			fd = DUPLEX_FULL;
2836		} else if (f & SUPPORTED_1000baseT_Half)
2837			speed = SPEED_1000;
2838		else if (f & SUPPORTED_100baseT_Full) {
2839			speed = SPEED_100;
2840			fd = DUPLEX_FULL;
2841		} else if (f & SUPPORTED_100baseT_Half)
2842			speed = SPEED_100;
2843		else if (f & SUPPORTED_10baseT_Full)
2844			fd = DUPLEX_FULL;
2845
2846		/* Force link parameters */
2847		dev->phy.def->ops->setup_forced(&dev->phy, speed, fd);
2848	}
2849	return 0;
2850}
2851
2852static int emac_init_config(struct emac_instance *dev)
2853{
2854	struct device_node *np = dev->ofdev->dev.of_node;
2855	int err;
2856
2857	/* Read config from device-tree */
2858	if (emac_read_uint_prop(np, "mal-device", &dev->mal_ph, 1))
2859		return -ENXIO;
2860	if (emac_read_uint_prop(np, "mal-tx-channel", &dev->mal_tx_chan, 1))
2861		return -ENXIO;
2862	if (emac_read_uint_prop(np, "mal-rx-channel", &dev->mal_rx_chan, 1))
2863		return -ENXIO;
2864	if (emac_read_uint_prop(np, "cell-index", &dev->cell_index, 1))
2865		return -ENXIO;
2866	if (emac_read_uint_prop(np, "max-frame-size", &dev->max_mtu, 0))
2867		dev->max_mtu = ETH_DATA_LEN;
2868	if (emac_read_uint_prop(np, "rx-fifo-size", &dev->rx_fifo_size, 0))
2869		dev->rx_fifo_size = 2048;
2870	if (emac_read_uint_prop(np, "tx-fifo-size", &dev->tx_fifo_size, 0))
2871		dev->tx_fifo_size = 2048;
2872	if (emac_read_uint_prop(np, "rx-fifo-size-gige", &dev->rx_fifo_size_gige, 0))
2873		dev->rx_fifo_size_gige = dev->rx_fifo_size;
2874	if (emac_read_uint_prop(np, "tx-fifo-size-gige", &dev->tx_fifo_size_gige, 0))
2875		dev->tx_fifo_size_gige = dev->tx_fifo_size;
2876	if (emac_read_uint_prop(np, "phy-address", &dev->phy_address, 0))
2877		dev->phy_address = 0xffffffff;
2878	if (emac_read_uint_prop(np, "phy-map", &dev->phy_map, 0))
2879		dev->phy_map = 0xffffffff;
2880	if (emac_read_uint_prop(np, "gpcs-address", &dev->gpcs_address, 0))
2881		dev->gpcs_address = 0xffffffff;
2882	if (emac_read_uint_prop(np->parent, "clock-frequency", &dev->opb_bus_freq, 1))
2883		return -ENXIO;
2884	if (emac_read_uint_prop(np, "tah-device", &dev->tah_ph, 0))
2885		dev->tah_ph = 0;
2886	if (emac_read_uint_prop(np, "tah-channel", &dev->tah_port, 0))
2887		dev->tah_port = 0;
2888	if (emac_read_uint_prop(np, "mdio-device", &dev->mdio_ph, 0))
2889		dev->mdio_ph = 0;
2890	if (emac_read_uint_prop(np, "zmii-device", &dev->zmii_ph, 0))
2891		dev->zmii_ph = 0;
2892	if (emac_read_uint_prop(np, "zmii-channel", &dev->zmii_port, 0))
2893		dev->zmii_port = 0xffffffff;
2894	if (emac_read_uint_prop(np, "rgmii-device", &dev->rgmii_ph, 0))
2895		dev->rgmii_ph = 0;
2896	if (emac_read_uint_prop(np, "rgmii-channel", &dev->rgmii_port, 0))
2897		dev->rgmii_port = 0xffffffff;
2898	if (emac_read_uint_prop(np, "fifo-entry-size", &dev->fifo_entry_size, 0))
2899		dev->fifo_entry_size = 16;
2900	if (emac_read_uint_prop(np, "mal-burst-size", &dev->mal_burst_size, 0))
2901		dev->mal_burst_size = 256;
2902
2903	/* PHY mode needs some decoding */
2904	err = of_get_phy_mode(np, &dev->phy_mode);
2905	if (err)
2906		dev->phy_mode = PHY_INTERFACE_MODE_NA;
2907
2908	/* Check EMAC version */
2909	if (of_device_is_compatible(np, "ibm,emac4sync")) {
2910		dev->features |= (EMAC_FTR_EMAC4 | EMAC_FTR_EMAC4SYNC);
2911		if (of_device_is_compatible(np, "ibm,emac-460ex") ||
2912		    of_device_is_compatible(np, "ibm,emac-460gt"))
2913			dev->features |= EMAC_FTR_460EX_PHY_CLK_FIX;
2914		if (of_device_is_compatible(np, "ibm,emac-405ex") ||
2915		    of_device_is_compatible(np, "ibm,emac-405exr"))
2916			dev->features |= EMAC_FTR_440EP_PHY_CLK_FIX;
2917		if (of_device_is_compatible(np, "ibm,emac-apm821xx")) {
2918			dev->features |= (EMAC_APM821XX_REQ_JUMBO_FRAME_SIZE |
2919					  EMAC_FTR_APM821XX_NO_HALF_DUPLEX |
2920					  EMAC_FTR_460EX_PHY_CLK_FIX);
2921		}
2922	} else if (of_device_is_compatible(np, "ibm,emac4")) {
2923		dev->features |= EMAC_FTR_EMAC4;
2924		if (of_device_is_compatible(np, "ibm,emac-440gx"))
2925			dev->features |= EMAC_FTR_440GX_PHY_CLK_FIX;
2926	} else {
2927		if (of_device_is_compatible(np, "ibm,emac-440ep") ||
2928		    of_device_is_compatible(np, "ibm,emac-440gr"))
2929			dev->features |= EMAC_FTR_440EP_PHY_CLK_FIX;
2930		if (of_device_is_compatible(np, "ibm,emac-405ez")) {
2931#ifdef CONFIG_IBM_EMAC_NO_FLOW_CTRL
2932			dev->features |= EMAC_FTR_NO_FLOW_CONTROL_40x;
2933#else
2934			printk(KERN_ERR "%pOF: Flow control not disabled!\n",
2935					np);
2936			return -ENXIO;
2937#endif
2938		}
2939
2940	}
2941
2942	/* Fixup some feature bits based on the device tree */
2943	if (of_property_read_bool(np, "has-inverted-stacr-oc"))
2944		dev->features |= EMAC_FTR_STACR_OC_INVERT;
2945	if (of_property_read_bool(np, "has-new-stacr-staopc"))
2946		dev->features |= EMAC_FTR_HAS_NEW_STACR;
2947
2948	/* CAB lacks the appropriate properties */
2949	if (of_device_is_compatible(np, "ibm,emac-axon"))
2950		dev->features |= EMAC_FTR_HAS_NEW_STACR |
2951			EMAC_FTR_STACR_OC_INVERT;
2952
2953	/* Enable TAH/ZMII/RGMII features as found */
2954	if (dev->tah_ph != 0) {
2955#ifdef CONFIG_IBM_EMAC_TAH
2956		dev->features |= EMAC_FTR_HAS_TAH;
2957#else
2958		printk(KERN_ERR "%pOF: TAH support not enabled !\n", np);
2959		return -ENXIO;
2960#endif
2961	}
2962
2963	if (dev->zmii_ph != 0) {
2964#ifdef CONFIG_IBM_EMAC_ZMII
2965		dev->features |= EMAC_FTR_HAS_ZMII;
2966#else
2967		printk(KERN_ERR "%pOF: ZMII support not enabled !\n", np);
2968		return -ENXIO;
2969#endif
2970	}
2971
2972	if (dev->rgmii_ph != 0) {
2973#ifdef CONFIG_IBM_EMAC_RGMII
2974		dev->features |= EMAC_FTR_HAS_RGMII;
2975#else
2976		printk(KERN_ERR "%pOF: RGMII support not enabled !\n", np);
2977		return -ENXIO;
2978#endif
2979	}
2980
2981	/* Read MAC-address */
2982	err = of_get_ethdev_address(np, dev->ndev);
2983	if (err)
2984		return dev_err_probe(&dev->ofdev->dev, err,
2985				     "Can't get valid [local-]mac-address from OF !\n");
 
 
 
2986
2987	/* IAHT and GAHT filter parameterization */
2988	if (emac_has_feature(dev, EMAC_FTR_EMAC4SYNC)) {
2989		dev->xaht_slots_shift = EMAC4SYNC_XAHT_SLOTS_SHIFT;
2990		dev->xaht_width_shift = EMAC4SYNC_XAHT_WIDTH_SHIFT;
2991	} else {
2992		dev->xaht_slots_shift = EMAC4_XAHT_SLOTS_SHIFT;
2993		dev->xaht_width_shift = EMAC4_XAHT_WIDTH_SHIFT;
2994	}
2995
2996	/* This should never happen */
2997	if (WARN_ON(EMAC_XAHT_REGS(dev) > EMAC_XAHT_MAX_REGS))
2998		return -ENXIO;
2999
3000	DBG(dev, "features     : 0x%08x / 0x%08x\n", dev->features, EMAC_FTRS_POSSIBLE);
3001	DBG(dev, "tx_fifo_size : %d (%d gige)\n", dev->tx_fifo_size, dev->tx_fifo_size_gige);
3002	DBG(dev, "rx_fifo_size : %d (%d gige)\n", dev->rx_fifo_size, dev->rx_fifo_size_gige);
3003	DBG(dev, "max_mtu      : %d\n", dev->max_mtu);
3004	DBG(dev, "OPB freq     : %d\n", dev->opb_bus_freq);
3005
3006	return 0;
3007}
3008
3009static const struct net_device_ops emac_netdev_ops = {
3010	.ndo_open		= emac_open,
3011	.ndo_stop		= emac_close,
3012	.ndo_get_stats		= emac_stats,
3013	.ndo_set_rx_mode	= emac_set_multicast_list,
3014	.ndo_eth_ioctl		= emac_ioctl,
3015	.ndo_tx_timeout		= emac_tx_timeout,
3016	.ndo_validate_addr	= eth_validate_addr,
3017	.ndo_set_mac_address	= emac_set_mac_address,
3018	.ndo_start_xmit		= emac_start_xmit,
3019};
3020
3021static const struct net_device_ops emac_gige_netdev_ops = {
3022	.ndo_open		= emac_open,
3023	.ndo_stop		= emac_close,
3024	.ndo_get_stats		= emac_stats,
3025	.ndo_set_rx_mode	= emac_set_multicast_list,
3026	.ndo_eth_ioctl		= emac_ioctl,
3027	.ndo_tx_timeout		= emac_tx_timeout,
3028	.ndo_validate_addr	= eth_validate_addr,
3029	.ndo_set_mac_address	= emac_set_mac_address,
3030	.ndo_start_xmit		= emac_start_xmit_sg,
3031	.ndo_change_mtu		= emac_change_mtu,
3032};
3033
3034static int emac_probe(struct platform_device *ofdev)
3035{
3036	struct net_device *ndev;
3037	struct emac_instance *dev;
3038	struct device_node *np = ofdev->dev.of_node;
3039	struct device_node **blist = NULL;
3040	int err, i;
3041
3042	/* Skip unused/unwired EMACS.  We leave the check for an unused
3043	 * property here for now, but new flat device trees should set a
3044	 * status property to "disabled" instead.
3045	 */
3046	if (of_property_read_bool(np, "unused") || !of_device_is_available(np))
3047		return -ENODEV;
3048
3049	/* Find ourselves in the bootlist if we are there */
3050	for (i = 0; i < EMAC_BOOT_LIST_SIZE; i++)
3051		if (emac_boot_list[i] == np)
3052			blist = &emac_boot_list[i];
3053
3054	/* Allocate our net_device structure */
3055	err = -ENOMEM;
3056	ndev = alloc_etherdev(sizeof(struct emac_instance));
3057	if (!ndev)
3058		goto err_gone;
3059
3060	dev = netdev_priv(ndev);
3061	dev->ndev = ndev;
3062	dev->ofdev = ofdev;
3063	dev->blist = blist;
3064	SET_NETDEV_DEV(ndev, &ofdev->dev);
3065
3066	/* Initialize some embedded data structures */
3067	mutex_init(&dev->mdio_lock);
3068	mutex_init(&dev->link_lock);
3069	spin_lock_init(&dev->lock);
3070	INIT_WORK(&dev->reset_work, emac_reset_work);
3071
3072	/* Init various config data based on device-tree */
3073	err = emac_init_config(dev);
3074	if (err)
3075		goto err_free;
3076
3077	/* Get interrupts. EMAC irq is mandatory, WOL irq is optional */
3078	dev->emac_irq = irq_of_parse_and_map(np, 0);
3079	dev->wol_irq = irq_of_parse_and_map(np, 1);
3080	if (!dev->emac_irq) {
3081		printk(KERN_ERR "%pOF: Can't map main interrupt\n", np);
3082		err = -ENODEV;
3083		goto err_free;
3084	}
3085	ndev->irq = dev->emac_irq;
3086
3087	/* Map EMAC regs */
3088	// TODO : platform_get_resource() and devm_ioremap_resource()
3089	dev->emacp = of_iomap(np, 0);
3090	if (dev->emacp == NULL) {
3091		printk(KERN_ERR "%pOF: Can't map device registers!\n", np);
3092		err = -ENOMEM;
3093		goto err_irq_unmap;
3094	}
3095
3096	/* Wait for dependent devices */
3097	err = emac_wait_deps(dev);
3098	if (err) {
3099		printk(KERN_ERR
3100		       "%pOF: Timeout waiting for dependent devices\n", np);
3101		/*  display more info about what's missing ? */
3102		goto err_reg_unmap;
3103	}
3104	dev->mal = platform_get_drvdata(dev->mal_dev);
3105	if (dev->mdio_dev != NULL)
3106		dev->mdio_instance = platform_get_drvdata(dev->mdio_dev);
3107
3108	/* Register with MAL */
3109	dev->commac.ops = &emac_commac_ops;
3110	dev->commac.dev = dev;
3111	dev->commac.tx_chan_mask = MAL_CHAN_MASK(dev->mal_tx_chan);
3112	dev->commac.rx_chan_mask = MAL_CHAN_MASK(dev->mal_rx_chan);
3113	err = mal_register_commac(dev->mal, &dev->commac);
3114	if (err) {
3115		printk(KERN_ERR "%pOF: failed to register with mal %pOF!\n",
3116		       np, dev->mal_dev->dev.of_node);
3117		goto err_rel_deps;
3118	}
3119	dev->rx_skb_size = emac_rx_skb_size(ndev->mtu);
3120	dev->rx_sync_size = emac_rx_sync_size(ndev->mtu);
3121
3122	/* Get pointers to BD rings */
3123	dev->tx_desc =
3124	    dev->mal->bd_virt + mal_tx_bd_offset(dev->mal, dev->mal_tx_chan);
3125	dev->rx_desc =
3126	    dev->mal->bd_virt + mal_rx_bd_offset(dev->mal, dev->mal_rx_chan);
3127
3128	DBG(dev, "tx_desc %p" NL, dev->tx_desc);
3129	DBG(dev, "rx_desc %p" NL, dev->rx_desc);
3130
3131	/* Clean rings */
3132	memset(dev->tx_desc, 0, NUM_TX_BUFF * sizeof(struct mal_descriptor));
3133	memset(dev->rx_desc, 0, NUM_RX_BUFF * sizeof(struct mal_descriptor));
3134	memset(dev->tx_skb, 0, NUM_TX_BUFF * sizeof(struct sk_buff *));
3135	memset(dev->rx_skb, 0, NUM_RX_BUFF * sizeof(struct sk_buff *));
3136
3137	/* Attach to ZMII, if needed */
3138	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII) &&
3139	    (err = zmii_attach(dev->zmii_dev, dev->zmii_port, &dev->phy_mode)) != 0)
3140		goto err_unreg_commac;
3141
3142	/* Attach to RGMII, if needed */
3143	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII) &&
3144	    (err = rgmii_attach(dev->rgmii_dev, dev->rgmii_port, dev->phy_mode)) != 0)
3145		goto err_detach_zmii;
3146
3147	/* Attach to TAH, if needed */
3148	if (emac_has_feature(dev, EMAC_FTR_HAS_TAH) &&
3149	    (err = tah_attach(dev->tah_dev, dev->tah_port)) != 0)
3150		goto err_detach_rgmii;
3151
3152	/* Set some link defaults before we can find out real parameters */
3153	dev->phy.speed = SPEED_100;
3154	dev->phy.duplex = DUPLEX_FULL;
3155	dev->phy.autoneg = AUTONEG_DISABLE;
3156	dev->phy.pause = dev->phy.asym_pause = 0;
3157	dev->stop_timeout = STOP_TIMEOUT_100;
3158	INIT_DELAYED_WORK(&dev->link_work, emac_link_timer);
3159
3160	/* Some SoCs like APM821xx does not support Half Duplex mode. */
3161	if (emac_has_feature(dev, EMAC_FTR_APM821XX_NO_HALF_DUPLEX)) {
3162		dev->phy_feat_exc = (SUPPORTED_1000baseT_Half |
3163				     SUPPORTED_100baseT_Half |
3164				     SUPPORTED_10baseT_Half);
3165	}
3166
3167	/* Find PHY if any */
3168	err = emac_init_phy(dev);
3169	if (err != 0)
3170		goto err_detach_tah;
3171
3172	if (dev->tah_dev) {
3173		ndev->hw_features = NETIF_F_IP_CSUM | NETIF_F_SG;
3174		ndev->features |= ndev->hw_features | NETIF_F_RXCSUM;
3175	}
3176	ndev->watchdog_timeo = 5 * HZ;
3177	if (emac_phy_supports_gige(dev->phy_mode)) {
3178		ndev->netdev_ops = &emac_gige_netdev_ops;
3179		dev->commac.ops = &emac_commac_sg_ops;
3180	} else
3181		ndev->netdev_ops = &emac_netdev_ops;
3182	ndev->ethtool_ops = &emac_ethtool_ops;
3183
3184	/* MTU range: 46 - 1500 or whatever is in OF */
3185	ndev->min_mtu = EMAC_MIN_MTU;
3186	ndev->max_mtu = dev->max_mtu;
3187
3188	netif_carrier_off(ndev);
3189
3190	err = register_netdev(ndev);
3191	if (err) {
3192		printk(KERN_ERR "%pOF: failed to register net device (%d)!\n",
3193		       np, err);
3194		goto err_detach_tah;
3195	}
3196
3197	/* Set our drvdata last as we don't want them visible until we are
3198	 * fully initialized
3199	 */
3200	wmb();
3201	platform_set_drvdata(ofdev, dev);
3202
3203	/* There's a new kid in town ! Let's tell everybody */
3204	wake_up_all(&emac_probe_wait);
3205
3206
3207	printk(KERN_INFO "%s: EMAC-%d %pOF, MAC %pM\n",
3208	       ndev->name, dev->cell_index, np, ndev->dev_addr);
3209
3210	if (dev->phy_mode == PHY_INTERFACE_MODE_SGMII)
3211		printk(KERN_NOTICE "%s: in SGMII mode\n", ndev->name);
3212
3213	if (dev->phy.address >= 0)
3214		printk("%s: found %s PHY (0x%02x)\n", ndev->name,
3215		       dev->phy.def->name, dev->phy.address);
3216
3217	/* Life is good */
3218	return 0;
3219
3220	/* I have a bad feeling about this ... */
3221
3222 err_detach_tah:
3223	if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
3224		tah_detach(dev->tah_dev, dev->tah_port);
3225 err_detach_rgmii:
3226	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
3227		rgmii_detach(dev->rgmii_dev, dev->rgmii_port);
3228 err_detach_zmii:
3229	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
3230		zmii_detach(dev->zmii_dev, dev->zmii_port);
3231 err_unreg_commac:
3232	mal_unregister_commac(dev->mal, &dev->commac);
3233 err_rel_deps:
3234	emac_put_deps(dev);
3235 err_reg_unmap:
3236	iounmap(dev->emacp);
3237 err_irq_unmap:
3238	if (dev->wol_irq)
3239		irq_dispose_mapping(dev->wol_irq);
3240	if (dev->emac_irq)
3241		irq_dispose_mapping(dev->emac_irq);
3242 err_free:
3243	free_netdev(ndev);
3244 err_gone:
3245	/* if we were on the bootlist, remove us as we won't show up and
3246	 * wake up all waiters to notify them in case they were waiting
3247	 * on us
3248	 */
3249	if (blist) {
3250		*blist = NULL;
3251		wake_up_all(&emac_probe_wait);
3252	}
3253	return err;
3254}
3255
3256static void emac_remove(struct platform_device *ofdev)
3257{
3258	struct emac_instance *dev = platform_get_drvdata(ofdev);
3259
3260	DBG(dev, "remove" NL);
3261
3262	unregister_netdev(dev->ndev);
3263
3264	cancel_work_sync(&dev->reset_work);
3265
3266	if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
3267		tah_detach(dev->tah_dev, dev->tah_port);
3268	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
3269		rgmii_detach(dev->rgmii_dev, dev->rgmii_port);
3270	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
3271		zmii_detach(dev->zmii_dev, dev->zmii_port);
3272
3273	if (dev->phy_dev)
3274		phy_disconnect(dev->phy_dev);
3275
3276	if (dev->mii_bus)
3277		mdiobus_unregister(dev->mii_bus);
3278
3279	busy_phy_map &= ~(1 << dev->phy.address);
3280	DBG(dev, "busy_phy_map now %#x" NL, busy_phy_map);
3281
3282	mal_unregister_commac(dev->mal, &dev->commac);
3283	emac_put_deps(dev);
3284
3285	iounmap(dev->emacp);
3286
3287	if (dev->wol_irq)
3288		irq_dispose_mapping(dev->wol_irq);
3289	if (dev->emac_irq)
3290		irq_dispose_mapping(dev->emac_irq);
3291
3292	free_netdev(dev->ndev);
 
 
3293}
3294
3295/* XXX Features in here should be replaced by properties... */
3296static const struct of_device_id emac_match[] =
3297{
3298	{
3299		.type		= "network",
3300		.compatible	= "ibm,emac",
3301	},
3302	{
3303		.type		= "network",
3304		.compatible	= "ibm,emac4",
3305	},
3306	{
3307		.type		= "network",
3308		.compatible	= "ibm,emac4sync",
3309	},
3310	{},
3311};
3312MODULE_DEVICE_TABLE(of, emac_match);
3313
3314static struct platform_driver emac_driver = {
3315	.driver = {
3316		.name = "emac",
3317		.of_match_table = emac_match,
3318	},
3319	.probe = emac_probe,
3320	.remove_new = emac_remove,
3321};
3322
3323static void __init emac_make_bootlist(void)
3324{
3325	struct device_node *np = NULL;
3326	int j, max, i = 0;
3327	int cell_indices[EMAC_BOOT_LIST_SIZE];
3328
3329	/* Collect EMACs */
3330	while((np = of_find_all_nodes(np)) != NULL) {
3331		const u32 *idx;
3332
3333		if (of_match_node(emac_match, np) == NULL)
3334			continue;
3335		if (of_property_read_bool(np, "unused"))
3336			continue;
3337		idx = of_get_property(np, "cell-index", NULL);
3338		if (idx == NULL)
3339			continue;
3340		cell_indices[i] = *idx;
3341		emac_boot_list[i++] = of_node_get(np);
3342		if (i >= EMAC_BOOT_LIST_SIZE) {
3343			of_node_put(np);
3344			break;
3345		}
3346	}
3347	max = i;
3348
3349	/* Bubble sort them (doh, what a creative algorithm :-) */
3350	for (i = 0; max > 1 && (i < (max - 1)); i++)
3351		for (j = i; j < max; j++) {
3352			if (cell_indices[i] > cell_indices[j]) {
3353				swap(emac_boot_list[i], emac_boot_list[j]);
3354				swap(cell_indices[i], cell_indices[j]);
3355			}
3356		}
3357}
3358
3359static int __init emac_init(void)
3360{
3361	int rc;
3362
3363	printk(KERN_INFO DRV_DESC ", version " DRV_VERSION "\n");
3364
3365	/* Build EMAC boot list */
3366	emac_make_bootlist();
3367
3368	/* Init submodules */
3369	rc = mal_init();
3370	if (rc)
3371		goto err;
3372	rc = zmii_init();
3373	if (rc)
3374		goto err_mal;
3375	rc = rgmii_init();
3376	if (rc)
3377		goto err_zmii;
3378	rc = tah_init();
3379	if (rc)
3380		goto err_rgmii;
3381	rc = platform_driver_register(&emac_driver);
3382	if (rc)
3383		goto err_tah;
3384
3385	return 0;
3386
3387 err_tah:
3388	tah_exit();
3389 err_rgmii:
3390	rgmii_exit();
3391 err_zmii:
3392	zmii_exit();
3393 err_mal:
3394	mal_exit();
3395 err:
3396	return rc;
3397}
3398
3399static void __exit emac_exit(void)
3400{
3401	int i;
3402
3403	platform_driver_unregister(&emac_driver);
3404
3405	tah_exit();
3406	rgmii_exit();
3407	zmii_exit();
3408	mal_exit();
3409
3410	/* Destroy EMAC boot list */
3411	for (i = 0; i < EMAC_BOOT_LIST_SIZE; i++)
3412		of_node_put(emac_boot_list[i]);
3413}
3414
3415module_init(emac_init);
3416module_exit(emac_exit);
v4.17
 
   1/*
   2 * drivers/net/ethernet/ibm/emac/core.c
   3 *
   4 * Driver for PowerPC 4xx on-chip ethernet controller.
   5 *
   6 * Copyright 2007 Benjamin Herrenschmidt, IBM Corp.
   7 *                <benh@kernel.crashing.org>
   8 *
   9 * Based on the arch/ppc version of the driver:
  10 *
  11 * Copyright (c) 2004, 2005 Zultys Technologies.
  12 * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
  13 *
  14 * Based on original work by
  15 * 	Matt Porter <mporter@kernel.crashing.org>
  16 *	(c) 2003 Benjamin Herrenschmidt <benh@kernel.crashing.org>
  17 *      Armin Kuster <akuster@mvista.com>
  18 * 	Johnnie Peters <jpeters@mvista.com>
  19 *
  20 * This program is free software; you can redistribute  it and/or modify it
  21 * under  the terms of  the GNU General  Public License as published by the
  22 * Free Software Foundation;  either version 2 of the  License, or (at your
  23 * option) any later version.
  24 *
  25 */
  26
  27#include <linux/module.h>
  28#include <linux/sched.h>
  29#include <linux/string.h>
  30#include <linux/errno.h>
  31#include <linux/delay.h>
  32#include <linux/types.h>
  33#include <linux/pci.h>
  34#include <linux/etherdevice.h>
  35#include <linux/skbuff.h>
  36#include <linux/crc32.h>
  37#include <linux/ethtool.h>
  38#include <linux/mii.h>
  39#include <linux/bitops.h>
  40#include <linux/workqueue.h>
  41#include <linux/of.h>
  42#include <linux/of_address.h>
  43#include <linux/of_irq.h>
  44#include <linux/of_net.h>
  45#include <linux/of_mdio.h>
 
 
  46#include <linux/slab.h>
  47
  48#include <asm/processor.h>
  49#include <asm/io.h>
  50#include <asm/dma.h>
  51#include <linux/uaccess.h>
  52#include <asm/dcr.h>
  53#include <asm/dcr-regs.h>
  54
  55#include "core.h"
  56
  57/*
  58 * Lack of dma_unmap_???? calls is intentional.
  59 *
  60 * API-correct usage requires additional support state information to be
  61 * maintained for every RX and TX buffer descriptor (BD). Unfortunately, due to
  62 * EMAC design (e.g. TX buffer passed from network stack can be split into
  63 * several BDs, dma_map_single/dma_map_page can be used to map particular BD),
  64 * maintaining such information will add additional overhead.
  65 * Current DMA API implementation for 4xx processors only ensures cache coherency
  66 * and dma_unmap_???? routines are empty and are likely to stay this way.
  67 * I decided to omit dma_unmap_??? calls because I don't want to add additional
  68 * complexity just for the sake of following some abstract API, when it doesn't
  69 * add any real benefit to the driver. I understand that this decision maybe
  70 * controversial, but I really tried to make code API-correct and efficient
  71 * at the same time and didn't come up with code I liked :(.                --ebs
  72 */
  73
  74#define DRV_NAME        "emac"
  75#define DRV_VERSION     "3.54"
  76#define DRV_DESC        "PPC 4xx OCP EMAC driver"
  77
  78MODULE_DESCRIPTION(DRV_DESC);
  79MODULE_AUTHOR
  80    ("Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>");
  81MODULE_LICENSE("GPL");
  82
  83/* minimum number of free TX descriptors required to wake up TX process */
  84#define EMAC_TX_WAKEUP_THRESH		(NUM_TX_BUFF / 4)
  85
  86/* If packet size is less than this number, we allocate small skb and copy packet
  87 * contents into it instead of just sending original big skb up
  88 */
  89#define EMAC_RX_COPY_THRESH		CONFIG_IBM_EMAC_RX_COPY_THRESHOLD
  90
  91/* Since multiple EMACs share MDIO lines in various ways, we need
  92 * to avoid re-using the same PHY ID in cases where the arch didn't
  93 * setup precise phy_map entries
  94 *
  95 * XXX This is something that needs to be reworked as we can have multiple
  96 * EMAC "sets" (multiple ASICs containing several EMACs) though we can
  97 * probably require in that case to have explicit PHY IDs in the device-tree
  98 */
  99static u32 busy_phy_map;
 100static DEFINE_MUTEX(emac_phy_map_lock);
 101
 102/* This is the wait queue used to wait on any event related to probe, that
 103 * is discovery of MALs, other EMACs, ZMII/RGMIIs, etc...
 104 */
 105static DECLARE_WAIT_QUEUE_HEAD(emac_probe_wait);
 106
 107/* Having stable interface names is a doomed idea. However, it would be nice
 108 * if we didn't have completely random interface names at boot too :-) It's
 109 * just a matter of making everybody's life easier. Since we are doing
 110 * threaded probing, it's a bit harder though. The base idea here is that
 111 * we make up a list of all emacs in the device-tree before we register the
 112 * driver. Every emac will then wait for the previous one in the list to
 113 * initialize before itself. We should also keep that list ordered by
 114 * cell_index.
 115 * That list is only 4 entries long, meaning that additional EMACs don't
 116 * get ordering guarantees unless EMAC_BOOT_LIST_SIZE is increased.
 117 */
 118
 119#define EMAC_BOOT_LIST_SIZE	4
 120static struct device_node *emac_boot_list[EMAC_BOOT_LIST_SIZE];
 121
 122/* How long should I wait for dependent devices ? */
 123#define EMAC_PROBE_DEP_TIMEOUT	(HZ * 5)
 124
 125/* I don't want to litter system log with timeout errors
 126 * when we have brain-damaged PHY.
 127 */
 128static inline void emac_report_timeout_error(struct emac_instance *dev,
 129					     const char *error)
 130{
 131	if (emac_has_feature(dev, EMAC_FTR_440GX_PHY_CLK_FIX |
 132				  EMAC_FTR_460EX_PHY_CLK_FIX |
 133				  EMAC_FTR_440EP_PHY_CLK_FIX))
 134		DBG(dev, "%s" NL, error);
 135	else if (net_ratelimit())
 136		printk(KERN_ERR "%pOF: %s\n", dev->ofdev->dev.of_node, error);
 137}
 138
 139/* EMAC PHY clock workaround:
 140 * 440EP/440GR has more sane SDR0_MFR register implementation than 440GX,
 141 * which allows controlling each EMAC clock
 142 */
 143static inline void emac_rx_clk_tx(struct emac_instance *dev)
 144{
 145#ifdef CONFIG_PPC_DCR_NATIVE
 146	if (emac_has_feature(dev, EMAC_FTR_440EP_PHY_CLK_FIX))
 147		dcri_clrset(SDR0, SDR0_MFR,
 148			    0, SDR0_MFR_ECS >> dev->cell_index);
 149#endif
 150}
 151
 152static inline void emac_rx_clk_default(struct emac_instance *dev)
 153{
 154#ifdef CONFIG_PPC_DCR_NATIVE
 155	if (emac_has_feature(dev, EMAC_FTR_440EP_PHY_CLK_FIX))
 156		dcri_clrset(SDR0, SDR0_MFR,
 157			    SDR0_MFR_ECS >> dev->cell_index, 0);
 158#endif
 159}
 160
 161/* PHY polling intervals */
 162#define PHY_POLL_LINK_ON	HZ
 163#define PHY_POLL_LINK_OFF	(HZ / 5)
 164
 165/* Graceful stop timeouts in us.
 166 * We should allow up to 1 frame time (full-duplex, ignoring collisions)
 167 */
 168#define STOP_TIMEOUT_10		1230
 169#define STOP_TIMEOUT_100	124
 170#define STOP_TIMEOUT_1000	13
 171#define STOP_TIMEOUT_1000_JUMBO	73
 172
 173static unsigned char default_mcast_addr[] = {
 174	0x01, 0x80, 0xC2, 0x00, 0x00, 0x01
 175};
 176
 177/* Please, keep in sync with struct ibm_emac_stats/ibm_emac_error_stats */
 178static const char emac_stats_keys[EMAC_ETHTOOL_STATS_COUNT][ETH_GSTRING_LEN] = {
 179	"rx_packets", "rx_bytes", "tx_packets", "tx_bytes", "rx_packets_csum",
 180	"tx_packets_csum", "tx_undo", "rx_dropped_stack", "rx_dropped_oom",
 181	"rx_dropped_error", "rx_dropped_resize", "rx_dropped_mtu",
 182	"rx_stopped", "rx_bd_errors", "rx_bd_overrun", "rx_bd_bad_packet",
 183	"rx_bd_runt_packet", "rx_bd_short_event", "rx_bd_alignment_error",
 184	"rx_bd_bad_fcs", "rx_bd_packet_too_long", "rx_bd_out_of_range",
 185	"rx_bd_in_range", "rx_parity", "rx_fifo_overrun", "rx_overrun",
 186	"rx_bad_packet", "rx_runt_packet", "rx_short_event",
 187	"rx_alignment_error", "rx_bad_fcs", "rx_packet_too_long",
 188	"rx_out_of_range", "rx_in_range", "tx_dropped", "tx_bd_errors",
 189	"tx_bd_bad_fcs", "tx_bd_carrier_loss", "tx_bd_excessive_deferral",
 190	"tx_bd_excessive_collisions", "tx_bd_late_collision",
 191	"tx_bd_multple_collisions", "tx_bd_single_collision",
 192	"tx_bd_underrun", "tx_bd_sqe", "tx_parity", "tx_underrun", "tx_sqe",
 193	"tx_errors"
 194};
 195
 196static irqreturn_t emac_irq(int irq, void *dev_instance);
 197static void emac_clean_tx_ring(struct emac_instance *dev);
 198static void __emac_set_multicast_list(struct emac_instance *dev);
 199
 200static inline int emac_phy_supports_gige(int phy_mode)
 201{
 202	return  phy_interface_mode_is_rgmii(phy_mode) ||
 203		phy_mode == PHY_INTERFACE_MODE_GMII ||
 204		phy_mode == PHY_INTERFACE_MODE_SGMII ||
 205		phy_mode == PHY_INTERFACE_MODE_TBI ||
 206		phy_mode == PHY_INTERFACE_MODE_RTBI;
 207}
 208
 209static inline int emac_phy_gpcs(int phy_mode)
 210{
 211	return  phy_mode == PHY_INTERFACE_MODE_SGMII ||
 212		phy_mode == PHY_INTERFACE_MODE_TBI ||
 213		phy_mode == PHY_INTERFACE_MODE_RTBI;
 214}
 215
 216static inline void emac_tx_enable(struct emac_instance *dev)
 217{
 218	struct emac_regs __iomem *p = dev->emacp;
 219	u32 r;
 220
 221	DBG(dev, "tx_enable" NL);
 222
 223	r = in_be32(&p->mr0);
 224	if (!(r & EMAC_MR0_TXE))
 225		out_be32(&p->mr0, r | EMAC_MR0_TXE);
 226}
 227
 228static void emac_tx_disable(struct emac_instance *dev)
 229{
 230	struct emac_regs __iomem *p = dev->emacp;
 231	u32 r;
 232
 233	DBG(dev, "tx_disable" NL);
 234
 235	r = in_be32(&p->mr0);
 236	if (r & EMAC_MR0_TXE) {
 237		int n = dev->stop_timeout;
 238		out_be32(&p->mr0, r & ~EMAC_MR0_TXE);
 239		while (!(in_be32(&p->mr0) & EMAC_MR0_TXI) && n) {
 240			udelay(1);
 241			--n;
 242		}
 243		if (unlikely(!n))
 244			emac_report_timeout_error(dev, "TX disable timeout");
 245	}
 246}
 247
 248static void emac_rx_enable(struct emac_instance *dev)
 249{
 250	struct emac_regs __iomem *p = dev->emacp;
 251	u32 r;
 252
 253	if (unlikely(test_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags)))
 254		goto out;
 255
 256	DBG(dev, "rx_enable" NL);
 257
 258	r = in_be32(&p->mr0);
 259	if (!(r & EMAC_MR0_RXE)) {
 260		if (unlikely(!(r & EMAC_MR0_RXI))) {
 261			/* Wait if previous async disable is still in progress */
 262			int n = dev->stop_timeout;
 263			while (!(r = in_be32(&p->mr0) & EMAC_MR0_RXI) && n) {
 264				udelay(1);
 265				--n;
 266			}
 267			if (unlikely(!n))
 268				emac_report_timeout_error(dev,
 269							  "RX disable timeout");
 270		}
 271		out_be32(&p->mr0, r | EMAC_MR0_RXE);
 272	}
 273 out:
 274	;
 275}
 276
 277static void emac_rx_disable(struct emac_instance *dev)
 278{
 279	struct emac_regs __iomem *p = dev->emacp;
 280	u32 r;
 281
 282	DBG(dev, "rx_disable" NL);
 283
 284	r = in_be32(&p->mr0);
 285	if (r & EMAC_MR0_RXE) {
 286		int n = dev->stop_timeout;
 287		out_be32(&p->mr0, r & ~EMAC_MR0_RXE);
 288		while (!(in_be32(&p->mr0) & EMAC_MR0_RXI) && n) {
 289			udelay(1);
 290			--n;
 291		}
 292		if (unlikely(!n))
 293			emac_report_timeout_error(dev, "RX disable timeout");
 294	}
 295}
 296
 297static inline void emac_netif_stop(struct emac_instance *dev)
 298{
 299	netif_tx_lock_bh(dev->ndev);
 300	netif_addr_lock(dev->ndev);
 301	dev->no_mcast = 1;
 302	netif_addr_unlock(dev->ndev);
 303	netif_tx_unlock_bh(dev->ndev);
 304	netif_trans_update(dev->ndev);	/* prevent tx timeout */
 305	mal_poll_disable(dev->mal, &dev->commac);
 306	netif_tx_disable(dev->ndev);
 307}
 308
 309static inline void emac_netif_start(struct emac_instance *dev)
 310{
 311	netif_tx_lock_bh(dev->ndev);
 312	netif_addr_lock(dev->ndev);
 313	dev->no_mcast = 0;
 314	if (dev->mcast_pending && netif_running(dev->ndev))
 315		__emac_set_multicast_list(dev);
 316	netif_addr_unlock(dev->ndev);
 317	netif_tx_unlock_bh(dev->ndev);
 318
 319	netif_wake_queue(dev->ndev);
 320
 321	/* NOTE: unconditional netif_wake_queue is only appropriate
 322	 * so long as all callers are assured to have free tx slots
 323	 * (taken from tg3... though the case where that is wrong is
 324	 *  not terribly harmful)
 325	 */
 326	mal_poll_enable(dev->mal, &dev->commac);
 327}
 328
 329static inline void emac_rx_disable_async(struct emac_instance *dev)
 330{
 331	struct emac_regs __iomem *p = dev->emacp;
 332	u32 r;
 333
 334	DBG(dev, "rx_disable_async" NL);
 335
 336	r = in_be32(&p->mr0);
 337	if (r & EMAC_MR0_RXE)
 338		out_be32(&p->mr0, r & ~EMAC_MR0_RXE);
 339}
 340
 341static int emac_reset(struct emac_instance *dev)
 342{
 343	struct emac_regs __iomem *p = dev->emacp;
 344	int n = 20;
 345	bool __maybe_unused try_internal_clock = false;
 346
 347	DBG(dev, "reset" NL);
 348
 349	if (!dev->reset_failed) {
 350		/* 40x erratum suggests stopping RX channel before reset,
 351		 * we stop TX as well
 352		 */
 353		emac_rx_disable(dev);
 354		emac_tx_disable(dev);
 355	}
 356
 357#ifdef CONFIG_PPC_DCR_NATIVE
 358do_retry:
 359	/*
 360	 * PPC460EX/GT Embedded Processor Advanced User's Manual
 361	 * section 28.10.1 Mode Register 0 (EMACx_MR0) states:
 362	 * Note: The PHY must provide a TX Clk in order to perform a soft reset
 363	 * of the EMAC. If none is present, select the internal clock
 364	 * (SDR0_ETH_CFG[EMACx_PHY_CLK] = 1).
 365	 * After a soft reset, select the external clock.
 366	 *
 367	 * The AR8035-A PHY Meraki MR24 does not provide a TX Clk if the
 368	 * ethernet cable is not attached. This causes the reset to timeout
 369	 * and the PHY detection code in emac_init_phy() is unable to
 370	 * communicate and detect the AR8035-A PHY. As a result, the emac
 371	 * driver bails out early and the user has no ethernet.
 372	 * In order to stay compatible with existing configurations, the
 373	 * driver will temporarily switch to the internal clock, after
 374	 * the first reset fails.
 375	 */
 376	if (emac_has_feature(dev, EMAC_FTR_460EX_PHY_CLK_FIX)) {
 377		if (try_internal_clock || (dev->phy_address == 0xffffffff &&
 378					   dev->phy_map == 0xffffffff)) {
 379			/* No PHY: select internal loop clock before reset */
 380			dcri_clrset(SDR0, SDR0_ETH_CFG,
 381				    0, SDR0_ETH_CFG_ECS << dev->cell_index);
 382		} else {
 383			/* PHY present: select external clock before reset */
 384			dcri_clrset(SDR0, SDR0_ETH_CFG,
 385				    SDR0_ETH_CFG_ECS << dev->cell_index, 0);
 386		}
 387	}
 388#endif
 389
 390	out_be32(&p->mr0, EMAC_MR0_SRST);
 391	while ((in_be32(&p->mr0) & EMAC_MR0_SRST) && n)
 392		--n;
 393
 394#ifdef CONFIG_PPC_DCR_NATIVE
 395	if (emac_has_feature(dev, EMAC_FTR_460EX_PHY_CLK_FIX)) {
 396		if (!n && !try_internal_clock) {
 397			/* first attempt has timed out. */
 398			n = 20;
 399			try_internal_clock = true;
 400			goto do_retry;
 401		}
 402
 403		if (try_internal_clock || (dev->phy_address == 0xffffffff &&
 404					   dev->phy_map == 0xffffffff)) {
 405			/* No PHY: restore external clock source after reset */
 406			dcri_clrset(SDR0, SDR0_ETH_CFG,
 407				    SDR0_ETH_CFG_ECS << dev->cell_index, 0);
 408		}
 409	}
 410#endif
 411
 412	if (n) {
 413		dev->reset_failed = 0;
 414		return 0;
 415	} else {
 416		emac_report_timeout_error(dev, "reset timeout");
 417		dev->reset_failed = 1;
 418		return -ETIMEDOUT;
 419	}
 420}
 421
 422static void emac_hash_mc(struct emac_instance *dev)
 423{
 424	const int regs = EMAC_XAHT_REGS(dev);
 425	u32 *gaht_base = emac_gaht_base(dev);
 426	u32 gaht_temp[regs];
 427	struct netdev_hw_addr *ha;
 428	int i;
 429
 430	DBG(dev, "hash_mc %d" NL, netdev_mc_count(dev->ndev));
 431
 432	memset(gaht_temp, 0, sizeof (gaht_temp));
 433
 434	netdev_for_each_mc_addr(ha, dev->ndev) {
 435		int slot, reg, mask;
 436		DBG2(dev, "mc %pM" NL, ha->addr);
 437
 438		slot = EMAC_XAHT_CRC_TO_SLOT(dev,
 439					     ether_crc(ETH_ALEN, ha->addr));
 440		reg = EMAC_XAHT_SLOT_TO_REG(dev, slot);
 441		mask = EMAC_XAHT_SLOT_TO_MASK(dev, slot);
 442
 443		gaht_temp[reg] |= mask;
 444	}
 445
 446	for (i = 0; i < regs; i++)
 447		out_be32(gaht_base + i, gaht_temp[i]);
 448}
 449
 450static inline u32 emac_iff2rmr(struct net_device *ndev)
 451{
 452	struct emac_instance *dev = netdev_priv(ndev);
 453	u32 r;
 454
 455	r = EMAC_RMR_SP | EMAC_RMR_SFCS | EMAC_RMR_IAE | EMAC_RMR_BAE;
 456
 457	if (emac_has_feature(dev, EMAC_FTR_EMAC4))
 458	    r |= EMAC4_RMR_BASE;
 459	else
 460	    r |= EMAC_RMR_BASE;
 461
 462	if (ndev->flags & IFF_PROMISC)
 463		r |= EMAC_RMR_PME;
 464	else if (ndev->flags & IFF_ALLMULTI ||
 465			 (netdev_mc_count(ndev) > EMAC_XAHT_SLOTS(dev)))
 466		r |= EMAC_RMR_PMME;
 467	else if (!netdev_mc_empty(ndev))
 468		r |= EMAC_RMR_MAE;
 469
 470	if (emac_has_feature(dev, EMAC_APM821XX_REQ_JUMBO_FRAME_SIZE)) {
 471		r &= ~EMAC4_RMR_MJS_MASK;
 472		r |= EMAC4_RMR_MJS(ndev->mtu);
 473	}
 474
 475	return r;
 476}
 477
 478static u32 __emac_calc_base_mr1(struct emac_instance *dev, int tx_size, int rx_size)
 479{
 480	u32 ret = EMAC_MR1_VLE | EMAC_MR1_IST | EMAC_MR1_TR0_MULT;
 481
 482	DBG2(dev, "__emac_calc_base_mr1" NL);
 483
 484	switch(tx_size) {
 485	case 2048:
 486		ret |= EMAC_MR1_TFS_2K;
 487		break;
 488	default:
 489		printk(KERN_WARNING "%s: Unknown Tx FIFO size %d\n",
 490		       dev->ndev->name, tx_size);
 491	}
 492
 493	switch(rx_size) {
 494	case 16384:
 495		ret |= EMAC_MR1_RFS_16K;
 496		break;
 497	case 8192:
 498		ret |= EMAC4_MR1_RFS_8K;
 499		break;
 500	case 4096:
 501		ret |= EMAC_MR1_RFS_4K;
 502		break;
 503	default:
 504		printk(KERN_WARNING "%s: Unknown Rx FIFO size %d\n",
 505		       dev->ndev->name, rx_size);
 506	}
 507
 508	return ret;
 509}
 510
 511static u32 __emac4_calc_base_mr1(struct emac_instance *dev, int tx_size, int rx_size)
 512{
 513	u32 ret = EMAC_MR1_VLE | EMAC_MR1_IST | EMAC4_MR1_TR |
 514		EMAC4_MR1_OBCI(dev->opb_bus_freq / 1000000);
 515
 516	DBG2(dev, "__emac4_calc_base_mr1" NL);
 517
 518	switch(tx_size) {
 519	case 16384:
 520		ret |= EMAC4_MR1_TFS_16K;
 521		break;
 522	case 8192:
 523		ret |= EMAC4_MR1_TFS_8K;
 524		break;
 525	case 4096:
 526		ret |= EMAC4_MR1_TFS_4K;
 527		break;
 528	case 2048:
 529		ret |= EMAC4_MR1_TFS_2K;
 530		break;
 531	default:
 532		printk(KERN_WARNING "%s: Unknown Tx FIFO size %d\n",
 533		       dev->ndev->name, tx_size);
 534	}
 535
 536	switch(rx_size) {
 537	case 16384:
 538		ret |= EMAC4_MR1_RFS_16K;
 539		break;
 
 
 
 540	case 4096:
 541		ret |= EMAC4_MR1_RFS_4K;
 542		break;
 543	case 2048:
 544		ret |= EMAC4_MR1_RFS_2K;
 545		break;
 546	default:
 547		printk(KERN_WARNING "%s: Unknown Rx FIFO size %d\n",
 548		       dev->ndev->name, rx_size);
 549	}
 550
 551	return ret;
 552}
 553
 554static u32 emac_calc_base_mr1(struct emac_instance *dev, int tx_size, int rx_size)
 555{
 556	return emac_has_feature(dev, EMAC_FTR_EMAC4) ?
 557		__emac4_calc_base_mr1(dev, tx_size, rx_size) :
 558		__emac_calc_base_mr1(dev, tx_size, rx_size);
 559}
 560
 561static inline u32 emac_calc_trtr(struct emac_instance *dev, unsigned int size)
 562{
 563	if (emac_has_feature(dev, EMAC_FTR_EMAC4))
 564		return ((size >> 6) - 1) << EMAC_TRTR_SHIFT_EMAC4;
 565	else
 566		return ((size >> 6) - 1) << EMAC_TRTR_SHIFT;
 567}
 568
 569static inline u32 emac_calc_rwmr(struct emac_instance *dev,
 570				 unsigned int low, unsigned int high)
 571{
 572	if (emac_has_feature(dev, EMAC_FTR_EMAC4))
 573		return (low << 22) | ( (high & 0x3ff) << 6);
 574	else
 575		return (low << 23) | ( (high & 0x1ff) << 7);
 576}
 577
 578static int emac_configure(struct emac_instance *dev)
 579{
 580	struct emac_regs __iomem *p = dev->emacp;
 581	struct net_device *ndev = dev->ndev;
 582	int tx_size, rx_size, link = netif_carrier_ok(dev->ndev);
 583	u32 r, mr1 = 0;
 584
 585	DBG(dev, "configure" NL);
 586
 587	if (!link) {
 588		out_be32(&p->mr1, in_be32(&p->mr1)
 589			 | EMAC_MR1_FDE | EMAC_MR1_ILE);
 590		udelay(100);
 591	} else if (emac_reset(dev) < 0)
 592		return -ETIMEDOUT;
 593
 594	if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
 595		tah_reset(dev->tah_dev);
 596
 597	DBG(dev, " link = %d duplex = %d, pause = %d, asym_pause = %d\n",
 598	    link, dev->phy.duplex, dev->phy.pause, dev->phy.asym_pause);
 599
 600	/* Default fifo sizes */
 601	tx_size = dev->tx_fifo_size;
 602	rx_size = dev->rx_fifo_size;
 603
 604	/* No link, force loopback */
 605	if (!link)
 606		mr1 = EMAC_MR1_FDE | EMAC_MR1_ILE;
 607
 608	/* Check for full duplex */
 609	else if (dev->phy.duplex == DUPLEX_FULL)
 610		mr1 |= EMAC_MR1_FDE | EMAC_MR1_MWSW_001;
 611
 612	/* Adjust fifo sizes, mr1 and timeouts based on link speed */
 613	dev->stop_timeout = STOP_TIMEOUT_10;
 614	switch (dev->phy.speed) {
 615	case SPEED_1000:
 616		if (emac_phy_gpcs(dev->phy.mode)) {
 617			mr1 |= EMAC_MR1_MF_1000GPCS | EMAC_MR1_MF_IPPA(
 618				(dev->phy.gpcs_address != 0xffffffff) ?
 619				 dev->phy.gpcs_address : dev->phy.address);
 620
 621			/* Put some arbitrary OUI, Manuf & Rev IDs so we can
 622			 * identify this GPCS PHY later.
 623			 */
 624			out_be32(&p->u1.emac4.ipcr, 0xdeadbeef);
 625		} else
 626			mr1 |= EMAC_MR1_MF_1000;
 627
 628		/* Extended fifo sizes */
 629		tx_size = dev->tx_fifo_size_gige;
 630		rx_size = dev->rx_fifo_size_gige;
 631
 632		if (dev->ndev->mtu > ETH_DATA_LEN) {
 633			if (emac_has_feature(dev, EMAC_FTR_EMAC4))
 634				mr1 |= EMAC4_MR1_JPSM;
 635			else
 636				mr1 |= EMAC_MR1_JPSM;
 637			dev->stop_timeout = STOP_TIMEOUT_1000_JUMBO;
 638		} else
 639			dev->stop_timeout = STOP_TIMEOUT_1000;
 640		break;
 641	case SPEED_100:
 642		mr1 |= EMAC_MR1_MF_100;
 643		dev->stop_timeout = STOP_TIMEOUT_100;
 644		break;
 645	default: /* make gcc happy */
 646		break;
 647	}
 648
 649	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
 650		rgmii_set_speed(dev->rgmii_dev, dev->rgmii_port,
 651				dev->phy.speed);
 652	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
 653		zmii_set_speed(dev->zmii_dev, dev->zmii_port, dev->phy.speed);
 654
 655	/* on 40x erratum forces us to NOT use integrated flow control,
 656	 * let's hope it works on 44x ;)
 657	 */
 658	if (!emac_has_feature(dev, EMAC_FTR_NO_FLOW_CONTROL_40x) &&
 659	    dev->phy.duplex == DUPLEX_FULL) {
 660		if (dev->phy.pause)
 661			mr1 |= EMAC_MR1_EIFC | EMAC_MR1_APP;
 662		else if (dev->phy.asym_pause)
 663			mr1 |= EMAC_MR1_APP;
 664	}
 665
 666	/* Add base settings & fifo sizes & program MR1 */
 667	mr1 |= emac_calc_base_mr1(dev, tx_size, rx_size);
 668	out_be32(&p->mr1, mr1);
 669
 670	/* Set individual MAC address */
 671	out_be32(&p->iahr, (ndev->dev_addr[0] << 8) | ndev->dev_addr[1]);
 672	out_be32(&p->ialr, (ndev->dev_addr[2] << 24) |
 673		 (ndev->dev_addr[3] << 16) | (ndev->dev_addr[4] << 8) |
 674		 ndev->dev_addr[5]);
 675
 676	/* VLAN Tag Protocol ID */
 677	out_be32(&p->vtpid, 0x8100);
 678
 679	/* Receive mode register */
 680	r = emac_iff2rmr(ndev);
 681	if (r & EMAC_RMR_MAE)
 682		emac_hash_mc(dev);
 683	out_be32(&p->rmr, r);
 684
 685	/* FIFOs thresholds */
 686	if (emac_has_feature(dev, EMAC_FTR_EMAC4))
 687		r = EMAC4_TMR1((dev->mal_burst_size / dev->fifo_entry_size) + 1,
 688			       tx_size / 2 / dev->fifo_entry_size);
 689	else
 690		r = EMAC_TMR1((dev->mal_burst_size / dev->fifo_entry_size) + 1,
 691			      tx_size / 2 / dev->fifo_entry_size);
 692	out_be32(&p->tmr1, r);
 693	out_be32(&p->trtr, emac_calc_trtr(dev, tx_size / 2));
 694
 695	/* PAUSE frame is sent when RX FIFO reaches its high-water mark,
 696	   there should be still enough space in FIFO to allow the our link
 697	   partner time to process this frame and also time to send PAUSE
 698	   frame itself.
 699
 700	   Here is the worst case scenario for the RX FIFO "headroom"
 701	   (from "The Switch Book") (100Mbps, without preamble, inter-frame gap):
 702
 703	   1) One maximum-length frame on TX                    1522 bytes
 704	   2) One PAUSE frame time                                64 bytes
 705	   3) PAUSE frame decode time allowance                   64 bytes
 706	   4) One maximum-length frame on RX                    1522 bytes
 707	   5) Round-trip propagation delay of the link (100Mb)    15 bytes
 708	   ----------
 709	   3187 bytes
 710
 711	   I chose to set high-water mark to RX_FIFO_SIZE / 4 (1024 bytes)
 712	   low-water mark  to RX_FIFO_SIZE / 8 (512 bytes)
 713	 */
 714	r = emac_calc_rwmr(dev, rx_size / 8 / dev->fifo_entry_size,
 715			   rx_size / 4 / dev->fifo_entry_size);
 716	out_be32(&p->rwmr, r);
 717
 718	/* Set PAUSE timer to the maximum */
 719	out_be32(&p->ptr, 0xffff);
 720
 721	/* IRQ sources */
 722	r = EMAC_ISR_OVR | EMAC_ISR_BP | EMAC_ISR_SE |
 723		EMAC_ISR_ALE | EMAC_ISR_BFCS | EMAC_ISR_PTLE | EMAC_ISR_ORE |
 724		EMAC_ISR_IRE | EMAC_ISR_TE;
 725	if (emac_has_feature(dev, EMAC_FTR_EMAC4))
 726	    r |= EMAC4_ISR_TXPE | EMAC4_ISR_RXPE /* | EMAC4_ISR_TXUE |
 727						  EMAC4_ISR_RXOE | */;
 728	out_be32(&p->iser,  r);
 729
 730	/* We need to take GPCS PHY out of isolate mode after EMAC reset */
 731	if (emac_phy_gpcs(dev->phy.mode)) {
 732		if (dev->phy.gpcs_address != 0xffffffff)
 733			emac_mii_reset_gpcs(&dev->phy);
 734		else
 735			emac_mii_reset_phy(&dev->phy);
 736	}
 737
 738	return 0;
 739}
 740
 741static void emac_reinitialize(struct emac_instance *dev)
 742{
 743	DBG(dev, "reinitialize" NL);
 744
 745	emac_netif_stop(dev);
 746	if (!emac_configure(dev)) {
 747		emac_tx_enable(dev);
 748		emac_rx_enable(dev);
 749	}
 750	emac_netif_start(dev);
 751}
 752
 753static void emac_full_tx_reset(struct emac_instance *dev)
 754{
 755	DBG(dev, "full_tx_reset" NL);
 756
 757	emac_tx_disable(dev);
 758	mal_disable_tx_channel(dev->mal, dev->mal_tx_chan);
 759	emac_clean_tx_ring(dev);
 760	dev->tx_cnt = dev->tx_slot = dev->ack_slot = 0;
 761
 762	emac_configure(dev);
 763
 764	mal_enable_tx_channel(dev->mal, dev->mal_tx_chan);
 765	emac_tx_enable(dev);
 766	emac_rx_enable(dev);
 767}
 768
 769static void emac_reset_work(struct work_struct *work)
 770{
 771	struct emac_instance *dev = container_of(work, struct emac_instance, reset_work);
 772
 773	DBG(dev, "reset_work" NL);
 774
 775	mutex_lock(&dev->link_lock);
 776	if (dev->opened) {
 777		emac_netif_stop(dev);
 778		emac_full_tx_reset(dev);
 779		emac_netif_start(dev);
 780	}
 781	mutex_unlock(&dev->link_lock);
 782}
 783
 784static void emac_tx_timeout(struct net_device *ndev)
 785{
 786	struct emac_instance *dev = netdev_priv(ndev);
 787
 788	DBG(dev, "tx_timeout" NL);
 789
 790	schedule_work(&dev->reset_work);
 791}
 792
 793
 794static inline int emac_phy_done(struct emac_instance *dev, u32 stacr)
 795{
 796	int done = !!(stacr & EMAC_STACR_OC);
 797
 798	if (emac_has_feature(dev, EMAC_FTR_STACR_OC_INVERT))
 799		done = !done;
 800
 801	return done;
 802};
 803
 804static int __emac_mdio_read(struct emac_instance *dev, u8 id, u8 reg)
 805{
 806	struct emac_regs __iomem *p = dev->emacp;
 807	u32 r = 0;
 808	int n, err = -ETIMEDOUT;
 809
 810	mutex_lock(&dev->mdio_lock);
 811
 812	DBG2(dev, "mdio_read(%02x,%02x)" NL, id, reg);
 813
 814	/* Enable proper MDIO port */
 815	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
 816		zmii_get_mdio(dev->zmii_dev, dev->zmii_port);
 817	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
 818		rgmii_get_mdio(dev->rgmii_dev, dev->rgmii_port);
 819
 820	/* Wait for management interface to become idle */
 821	n = 20;
 822	while (!emac_phy_done(dev, in_be32(&p->stacr))) {
 823		udelay(1);
 824		if (!--n) {
 825			DBG2(dev, " -> timeout wait idle\n");
 826			goto bail;
 827		}
 828	}
 829
 830	/* Issue read command */
 831	if (emac_has_feature(dev, EMAC_FTR_EMAC4))
 832		r = EMAC4_STACR_BASE(dev->opb_bus_freq);
 833	else
 834		r = EMAC_STACR_BASE(dev->opb_bus_freq);
 835	if (emac_has_feature(dev, EMAC_FTR_STACR_OC_INVERT))
 836		r |= EMAC_STACR_OC;
 837	if (emac_has_feature(dev, EMAC_FTR_HAS_NEW_STACR))
 838		r |= EMACX_STACR_STAC_READ;
 839	else
 840		r |= EMAC_STACR_STAC_READ;
 841	r |= (reg & EMAC_STACR_PRA_MASK)
 842		| ((id & EMAC_STACR_PCDA_MASK) << EMAC_STACR_PCDA_SHIFT);
 843	out_be32(&p->stacr, r);
 844
 845	/* Wait for read to complete */
 846	n = 200;
 847	while (!emac_phy_done(dev, (r = in_be32(&p->stacr)))) {
 848		udelay(1);
 849		if (!--n) {
 850			DBG2(dev, " -> timeout wait complete\n");
 851			goto bail;
 852		}
 853	}
 854
 855	if (unlikely(r & EMAC_STACR_PHYE)) {
 856		DBG(dev, "mdio_read(%02x, %02x) failed" NL, id, reg);
 857		err = -EREMOTEIO;
 858		goto bail;
 859	}
 860
 861	r = ((r >> EMAC_STACR_PHYD_SHIFT) & EMAC_STACR_PHYD_MASK);
 862
 863	DBG2(dev, "mdio_read -> %04x" NL, r);
 864	err = 0;
 865 bail:
 866	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
 867		rgmii_put_mdio(dev->rgmii_dev, dev->rgmii_port);
 868	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
 869		zmii_put_mdio(dev->zmii_dev, dev->zmii_port);
 870	mutex_unlock(&dev->mdio_lock);
 871
 872	return err == 0 ? r : err;
 873}
 874
 875static void __emac_mdio_write(struct emac_instance *dev, u8 id, u8 reg,
 876			      u16 val)
 877{
 878	struct emac_regs __iomem *p = dev->emacp;
 879	u32 r = 0;
 880	int n, err = -ETIMEDOUT;
 881
 882	mutex_lock(&dev->mdio_lock);
 883
 884	DBG2(dev, "mdio_write(%02x,%02x,%04x)" NL, id, reg, val);
 885
 886	/* Enable proper MDIO port */
 887	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
 888		zmii_get_mdio(dev->zmii_dev, dev->zmii_port);
 889	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
 890		rgmii_get_mdio(dev->rgmii_dev, dev->rgmii_port);
 891
 892	/* Wait for management interface to be idle */
 893	n = 20;
 894	while (!emac_phy_done(dev, in_be32(&p->stacr))) {
 895		udelay(1);
 896		if (!--n) {
 897			DBG2(dev, " -> timeout wait idle\n");
 898			goto bail;
 899		}
 900	}
 901
 902	/* Issue write command */
 903	if (emac_has_feature(dev, EMAC_FTR_EMAC4))
 904		r = EMAC4_STACR_BASE(dev->opb_bus_freq);
 905	else
 906		r = EMAC_STACR_BASE(dev->opb_bus_freq);
 907	if (emac_has_feature(dev, EMAC_FTR_STACR_OC_INVERT))
 908		r |= EMAC_STACR_OC;
 909	if (emac_has_feature(dev, EMAC_FTR_HAS_NEW_STACR))
 910		r |= EMACX_STACR_STAC_WRITE;
 911	else
 912		r |= EMAC_STACR_STAC_WRITE;
 913	r |= (reg & EMAC_STACR_PRA_MASK) |
 914		((id & EMAC_STACR_PCDA_MASK) << EMAC_STACR_PCDA_SHIFT) |
 915		(val << EMAC_STACR_PHYD_SHIFT);
 916	out_be32(&p->stacr, r);
 917
 918	/* Wait for write to complete */
 919	n = 200;
 920	while (!emac_phy_done(dev, in_be32(&p->stacr))) {
 921		udelay(1);
 922		if (!--n) {
 923			DBG2(dev, " -> timeout wait complete\n");
 924			goto bail;
 925		}
 926	}
 927	err = 0;
 928 bail:
 929	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
 930		rgmii_put_mdio(dev->rgmii_dev, dev->rgmii_port);
 931	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
 932		zmii_put_mdio(dev->zmii_dev, dev->zmii_port);
 933	mutex_unlock(&dev->mdio_lock);
 934}
 935
 936static int emac_mdio_read(struct net_device *ndev, int id, int reg)
 937{
 938	struct emac_instance *dev = netdev_priv(ndev);
 939	int res;
 940
 941	res = __emac_mdio_read((dev->mdio_instance &&
 942				dev->phy.gpcs_address != id) ?
 943				dev->mdio_instance : dev,
 944			       (u8) id, (u8) reg);
 945	return res;
 946}
 947
 948static void emac_mdio_write(struct net_device *ndev, int id, int reg, int val)
 949{
 950	struct emac_instance *dev = netdev_priv(ndev);
 951
 952	__emac_mdio_write((dev->mdio_instance &&
 953			   dev->phy.gpcs_address != id) ?
 954			   dev->mdio_instance : dev,
 955			  (u8) id, (u8) reg, (u16) val);
 956}
 957
 958/* Tx lock BH */
 959static void __emac_set_multicast_list(struct emac_instance *dev)
 960{
 961	struct emac_regs __iomem *p = dev->emacp;
 962	u32 rmr = emac_iff2rmr(dev->ndev);
 963
 964	DBG(dev, "__multicast %08x" NL, rmr);
 965
 966	/* I decided to relax register access rules here to avoid
 967	 * full EMAC reset.
 968	 *
 969	 * There is a real problem with EMAC4 core if we use MWSW_001 bit
 970	 * in MR1 register and do a full EMAC reset.
 971	 * One TX BD status update is delayed and, after EMAC reset, it
 972	 * never happens, resulting in TX hung (it'll be recovered by TX
 973	 * timeout handler eventually, but this is just gross).
 974	 * So we either have to do full TX reset or try to cheat here :)
 975	 *
 976	 * The only required change is to RX mode register, so I *think* all
 977	 * we need is just to stop RX channel. This seems to work on all
 978	 * tested SoCs.                                                --ebs
 979	 *
 980	 * If we need the full reset, we might just trigger the workqueue
 981	 * and do it async... a bit nasty but should work --BenH
 982	 */
 983	dev->mcast_pending = 0;
 984	emac_rx_disable(dev);
 985	if (rmr & EMAC_RMR_MAE)
 986		emac_hash_mc(dev);
 987	out_be32(&p->rmr, rmr);
 988	emac_rx_enable(dev);
 989}
 990
 991/* Tx lock BH */
 992static void emac_set_multicast_list(struct net_device *ndev)
 993{
 994	struct emac_instance *dev = netdev_priv(ndev);
 995
 996	DBG(dev, "multicast" NL);
 997
 998	BUG_ON(!netif_running(dev->ndev));
 999
1000	if (dev->no_mcast) {
1001		dev->mcast_pending = 1;
1002		return;
1003	}
1004
1005	mutex_lock(&dev->link_lock);
1006	__emac_set_multicast_list(dev);
1007	mutex_unlock(&dev->link_lock);
1008}
1009
1010static int emac_set_mac_address(struct net_device *ndev, void *sa)
1011{
1012	struct emac_instance *dev = netdev_priv(ndev);
1013	struct sockaddr *addr = sa;
1014	struct emac_regs __iomem *p = dev->emacp;
1015
1016	if (!is_valid_ether_addr(addr->sa_data))
1017	       return -EADDRNOTAVAIL;
1018
1019	mutex_lock(&dev->link_lock);
1020
1021	memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
1022
1023	emac_rx_disable(dev);
1024	emac_tx_disable(dev);
1025	out_be32(&p->iahr, (ndev->dev_addr[0] << 8) | ndev->dev_addr[1]);
1026	out_be32(&p->ialr, (ndev->dev_addr[2] << 24) |
1027		(ndev->dev_addr[3] << 16) | (ndev->dev_addr[4] << 8) |
1028		ndev->dev_addr[5]);
1029	emac_tx_enable(dev);
1030	emac_rx_enable(dev);
1031
1032	mutex_unlock(&dev->link_lock);
1033
1034	return 0;
1035}
1036
1037static int emac_resize_rx_ring(struct emac_instance *dev, int new_mtu)
1038{
1039	int rx_sync_size = emac_rx_sync_size(new_mtu);
1040	int rx_skb_size = emac_rx_skb_size(new_mtu);
1041	int i, ret = 0;
1042	int mr1_jumbo_bit_change = 0;
1043
1044	mutex_lock(&dev->link_lock);
1045	emac_netif_stop(dev);
1046	emac_rx_disable(dev);
1047	mal_disable_rx_channel(dev->mal, dev->mal_rx_chan);
1048
1049	if (dev->rx_sg_skb) {
1050		++dev->estats.rx_dropped_resize;
1051		dev_kfree_skb(dev->rx_sg_skb);
1052		dev->rx_sg_skb = NULL;
1053	}
1054
1055	/* Make a first pass over RX ring and mark BDs ready, dropping
1056	 * non-processed packets on the way. We need this as a separate pass
1057	 * to simplify error recovery in the case of allocation failure later.
1058	 */
1059	for (i = 0; i < NUM_RX_BUFF; ++i) {
1060		if (dev->rx_desc[i].ctrl & MAL_RX_CTRL_FIRST)
1061			++dev->estats.rx_dropped_resize;
1062
1063		dev->rx_desc[i].data_len = 0;
1064		dev->rx_desc[i].ctrl = MAL_RX_CTRL_EMPTY |
1065		    (i == (NUM_RX_BUFF - 1) ? MAL_RX_CTRL_WRAP : 0);
1066	}
1067
1068	/* Reallocate RX ring only if bigger skb buffers are required */
1069	if (rx_skb_size <= dev->rx_skb_size)
1070		goto skip;
1071
1072	/* Second pass, allocate new skbs */
1073	for (i = 0; i < NUM_RX_BUFF; ++i) {
1074		struct sk_buff *skb = alloc_skb(rx_skb_size, GFP_ATOMIC);
 
 
1075		if (!skb) {
1076			ret = -ENOMEM;
1077			goto oom;
1078		}
1079
1080		BUG_ON(!dev->rx_skb[i]);
1081		dev_kfree_skb(dev->rx_skb[i]);
1082
1083		skb_reserve(skb, EMAC_RX_SKB_HEADROOM + 2);
1084		dev->rx_desc[i].data_ptr =
1085		    dma_map_single(&dev->ofdev->dev, skb->data - 2, rx_sync_size,
1086				   DMA_FROM_DEVICE) + 2;
 
1087		dev->rx_skb[i] = skb;
1088	}
1089 skip:
1090	/* Check if we need to change "Jumbo" bit in MR1 */
1091	if (emac_has_feature(dev, EMAC_APM821XX_REQ_JUMBO_FRAME_SIZE)) {
1092		mr1_jumbo_bit_change = (new_mtu > ETH_DATA_LEN) ||
1093				(dev->ndev->mtu > ETH_DATA_LEN);
1094	} else {
1095		mr1_jumbo_bit_change = (new_mtu > ETH_DATA_LEN) ^
1096				(dev->ndev->mtu > ETH_DATA_LEN);
1097	}
1098
1099	if (mr1_jumbo_bit_change) {
1100		/* This is to prevent starting RX channel in emac_rx_enable() */
1101		set_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags);
1102
1103		dev->ndev->mtu = new_mtu;
1104		emac_full_tx_reset(dev);
1105	}
1106
1107	mal_set_rcbs(dev->mal, dev->mal_rx_chan, emac_rx_size(new_mtu));
1108 oom:
1109	/* Restart RX */
1110	clear_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags);
1111	dev->rx_slot = 0;
1112	mal_enable_rx_channel(dev->mal, dev->mal_rx_chan);
1113	emac_rx_enable(dev);
1114	emac_netif_start(dev);
1115	mutex_unlock(&dev->link_lock);
1116
1117	return ret;
1118}
1119
1120/* Process ctx, rtnl_lock semaphore */
1121static int emac_change_mtu(struct net_device *ndev, int new_mtu)
1122{
1123	struct emac_instance *dev = netdev_priv(ndev);
1124	int ret = 0;
1125
1126	DBG(dev, "change_mtu(%d)" NL, new_mtu);
1127
1128	if (netif_running(ndev)) {
1129		/* Check if we really need to reinitialize RX ring */
1130		if (emac_rx_skb_size(ndev->mtu) != emac_rx_skb_size(new_mtu))
1131			ret = emac_resize_rx_ring(dev, new_mtu);
1132	}
1133
1134	if (!ret) {
1135		ndev->mtu = new_mtu;
1136		dev->rx_skb_size = emac_rx_skb_size(new_mtu);
1137		dev->rx_sync_size = emac_rx_sync_size(new_mtu);
1138	}
1139
1140	return ret;
1141}
1142
1143static void emac_clean_tx_ring(struct emac_instance *dev)
1144{
1145	int i;
1146
1147	for (i = 0; i < NUM_TX_BUFF; ++i) {
1148		if (dev->tx_skb[i]) {
1149			dev_kfree_skb(dev->tx_skb[i]);
1150			dev->tx_skb[i] = NULL;
1151			if (dev->tx_desc[i].ctrl & MAL_TX_CTRL_READY)
1152				++dev->estats.tx_dropped;
1153		}
1154		dev->tx_desc[i].ctrl = 0;
1155		dev->tx_desc[i].data_ptr = 0;
1156	}
1157}
1158
1159static void emac_clean_rx_ring(struct emac_instance *dev)
1160{
1161	int i;
1162
1163	for (i = 0; i < NUM_RX_BUFF; ++i)
1164		if (dev->rx_skb[i]) {
1165			dev->rx_desc[i].ctrl = 0;
1166			dev_kfree_skb(dev->rx_skb[i]);
1167			dev->rx_skb[i] = NULL;
1168			dev->rx_desc[i].data_ptr = 0;
1169		}
1170
1171	if (dev->rx_sg_skb) {
1172		dev_kfree_skb(dev->rx_sg_skb);
1173		dev->rx_sg_skb = NULL;
1174	}
1175}
1176
1177static inline int emac_alloc_rx_skb(struct emac_instance *dev, int slot,
1178				    gfp_t flags)
1179{
1180	struct sk_buff *skb = alloc_skb(dev->rx_skb_size, flags);
1181	if (unlikely(!skb))
1182		return -ENOMEM;
1183
1184	dev->rx_skb[slot] = skb;
1185	dev->rx_desc[slot].data_len = 0;
1186
1187	skb_reserve(skb, EMAC_RX_SKB_HEADROOM + 2);
1188	dev->rx_desc[slot].data_ptr =
1189	    dma_map_single(&dev->ofdev->dev, skb->data - 2, dev->rx_sync_size,
1190			   DMA_FROM_DEVICE) + 2;
1191	wmb();
1192	dev->rx_desc[slot].ctrl = MAL_RX_CTRL_EMPTY |
1193	    (slot == (NUM_RX_BUFF - 1) ? MAL_RX_CTRL_WRAP : 0);
1194
1195	return 0;
1196}
1197
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1198static void emac_print_link_status(struct emac_instance *dev)
1199{
1200	if (netif_carrier_ok(dev->ndev))
1201		printk(KERN_INFO "%s: link is up, %d %s%s\n",
1202		       dev->ndev->name, dev->phy.speed,
1203		       dev->phy.duplex == DUPLEX_FULL ? "FDX" : "HDX",
1204		       dev->phy.pause ? ", pause enabled" :
1205		       dev->phy.asym_pause ? ", asymmetric pause enabled" : "");
1206	else
1207		printk(KERN_INFO "%s: link is down\n", dev->ndev->name);
1208}
1209
1210/* Process ctx, rtnl_lock semaphore */
1211static int emac_open(struct net_device *ndev)
1212{
1213	struct emac_instance *dev = netdev_priv(ndev);
1214	int err, i;
1215
1216	DBG(dev, "open" NL);
1217
1218	/* Setup error IRQ handler */
1219	err = request_irq(dev->emac_irq, emac_irq, 0, "EMAC", dev);
1220	if (err) {
1221		printk(KERN_ERR "%s: failed to request IRQ %d\n",
1222		       ndev->name, dev->emac_irq);
1223		return err;
1224	}
1225
1226	/* Allocate RX ring */
1227	for (i = 0; i < NUM_RX_BUFF; ++i)
1228		if (emac_alloc_rx_skb(dev, i, GFP_KERNEL)) {
1229			printk(KERN_ERR "%s: failed to allocate RX ring\n",
1230			       ndev->name);
1231			goto oom;
1232		}
1233
1234	dev->tx_cnt = dev->tx_slot = dev->ack_slot = dev->rx_slot = 0;
1235	clear_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags);
1236	dev->rx_sg_skb = NULL;
1237
1238	mutex_lock(&dev->link_lock);
1239	dev->opened = 1;
1240
1241	/* Start PHY polling now.
1242	 */
1243	if (dev->phy.address >= 0) {
1244		int link_poll_interval;
1245		if (dev->phy.def->ops->poll_link(&dev->phy)) {
1246			dev->phy.def->ops->read_link(&dev->phy);
1247			emac_rx_clk_default(dev);
1248			netif_carrier_on(dev->ndev);
1249			link_poll_interval = PHY_POLL_LINK_ON;
1250		} else {
1251			emac_rx_clk_tx(dev);
1252			netif_carrier_off(dev->ndev);
1253			link_poll_interval = PHY_POLL_LINK_OFF;
1254		}
1255		dev->link_polling = 1;
1256		wmb();
1257		schedule_delayed_work(&dev->link_work, link_poll_interval);
1258		emac_print_link_status(dev);
1259	} else
1260		netif_carrier_on(dev->ndev);
1261
1262	/* Required for Pause packet support in EMAC */
1263	dev_mc_add_global(ndev, default_mcast_addr);
1264
1265	emac_configure(dev);
1266	mal_poll_add(dev->mal, &dev->commac);
1267	mal_enable_tx_channel(dev->mal, dev->mal_tx_chan);
1268	mal_set_rcbs(dev->mal, dev->mal_rx_chan, emac_rx_size(ndev->mtu));
1269	mal_enable_rx_channel(dev->mal, dev->mal_rx_chan);
1270	emac_tx_enable(dev);
1271	emac_rx_enable(dev);
1272	emac_netif_start(dev);
1273
1274	mutex_unlock(&dev->link_lock);
1275
1276	return 0;
1277 oom:
1278	emac_clean_rx_ring(dev);
1279	free_irq(dev->emac_irq, dev);
1280
1281	return -ENOMEM;
1282}
1283
1284/* BHs disabled */
1285#if 0
1286static int emac_link_differs(struct emac_instance *dev)
1287{
1288	u32 r = in_be32(&dev->emacp->mr1);
1289
1290	int duplex = r & EMAC_MR1_FDE ? DUPLEX_FULL : DUPLEX_HALF;
1291	int speed, pause, asym_pause;
1292
1293	if (r & EMAC_MR1_MF_1000)
1294		speed = SPEED_1000;
1295	else if (r & EMAC_MR1_MF_100)
1296		speed = SPEED_100;
1297	else
1298		speed = SPEED_10;
1299
1300	switch (r & (EMAC_MR1_EIFC | EMAC_MR1_APP)) {
1301	case (EMAC_MR1_EIFC | EMAC_MR1_APP):
1302		pause = 1;
1303		asym_pause = 0;
1304		break;
1305	case EMAC_MR1_APP:
1306		pause = 0;
1307		asym_pause = 1;
1308		break;
1309	default:
1310		pause = asym_pause = 0;
1311	}
1312	return speed != dev->phy.speed || duplex != dev->phy.duplex ||
1313	    pause != dev->phy.pause || asym_pause != dev->phy.asym_pause;
1314}
1315#endif
1316
1317static void emac_link_timer(struct work_struct *work)
1318{
1319	struct emac_instance *dev =
1320		container_of(to_delayed_work(work),
1321			     struct emac_instance, link_work);
1322	int link_poll_interval;
1323
1324	mutex_lock(&dev->link_lock);
1325	DBG2(dev, "link timer" NL);
1326
1327	if (!dev->opened)
1328		goto bail;
1329
1330	if (dev->phy.def->ops->poll_link(&dev->phy)) {
1331		if (!netif_carrier_ok(dev->ndev)) {
1332			emac_rx_clk_default(dev);
1333			/* Get new link parameters */
1334			dev->phy.def->ops->read_link(&dev->phy);
1335
1336			netif_carrier_on(dev->ndev);
1337			emac_netif_stop(dev);
1338			emac_full_tx_reset(dev);
1339			emac_netif_start(dev);
1340			emac_print_link_status(dev);
1341		}
1342		link_poll_interval = PHY_POLL_LINK_ON;
1343	} else {
1344		if (netif_carrier_ok(dev->ndev)) {
1345			emac_rx_clk_tx(dev);
1346			netif_carrier_off(dev->ndev);
1347			netif_tx_disable(dev->ndev);
1348			emac_reinitialize(dev);
1349			emac_print_link_status(dev);
1350		}
1351		link_poll_interval = PHY_POLL_LINK_OFF;
1352	}
1353	schedule_delayed_work(&dev->link_work, link_poll_interval);
1354 bail:
1355	mutex_unlock(&dev->link_lock);
1356}
1357
1358static void emac_force_link_update(struct emac_instance *dev)
1359{
1360	netif_carrier_off(dev->ndev);
1361	smp_rmb();
1362	if (dev->link_polling) {
1363		cancel_delayed_work_sync(&dev->link_work);
1364		if (dev->link_polling)
1365			schedule_delayed_work(&dev->link_work,  PHY_POLL_LINK_OFF);
1366	}
1367}
1368
1369/* Process ctx, rtnl_lock semaphore */
1370static int emac_close(struct net_device *ndev)
1371{
1372	struct emac_instance *dev = netdev_priv(ndev);
1373
1374	DBG(dev, "close" NL);
1375
1376	if (dev->phy.address >= 0) {
1377		dev->link_polling = 0;
1378		cancel_delayed_work_sync(&dev->link_work);
1379	}
1380	mutex_lock(&dev->link_lock);
1381	emac_netif_stop(dev);
1382	dev->opened = 0;
1383	mutex_unlock(&dev->link_lock);
1384
1385	emac_rx_disable(dev);
1386	emac_tx_disable(dev);
1387	mal_disable_rx_channel(dev->mal, dev->mal_rx_chan);
1388	mal_disable_tx_channel(dev->mal, dev->mal_tx_chan);
1389	mal_poll_del(dev->mal, &dev->commac);
1390
1391	emac_clean_tx_ring(dev);
1392	emac_clean_rx_ring(dev);
1393
1394	free_irq(dev->emac_irq, dev);
1395
1396	netif_carrier_off(ndev);
1397
1398	return 0;
1399}
1400
1401static inline u16 emac_tx_csum(struct emac_instance *dev,
1402			       struct sk_buff *skb)
1403{
1404	if (emac_has_feature(dev, EMAC_FTR_HAS_TAH) &&
1405		(skb->ip_summed == CHECKSUM_PARTIAL)) {
1406		++dev->stats.tx_packets_csum;
1407		return EMAC_TX_CTRL_TAH_CSUM;
1408	}
1409	return 0;
1410}
1411
1412static inline int emac_xmit_finish(struct emac_instance *dev, int len)
1413{
1414	struct emac_regs __iomem *p = dev->emacp;
1415	struct net_device *ndev = dev->ndev;
1416
1417	/* Send the packet out. If the if makes a significant perf
1418	 * difference, then we can store the TMR0 value in "dev"
1419	 * instead
1420	 */
1421	if (emac_has_feature(dev, EMAC_FTR_EMAC4))
1422		out_be32(&p->tmr0, EMAC4_TMR0_XMIT);
1423	else
1424		out_be32(&p->tmr0, EMAC_TMR0_XMIT);
1425
1426	if (unlikely(++dev->tx_cnt == NUM_TX_BUFF)) {
1427		netif_stop_queue(ndev);
1428		DBG2(dev, "stopped TX queue" NL);
1429	}
1430
1431	netif_trans_update(ndev);
1432	++dev->stats.tx_packets;
1433	dev->stats.tx_bytes += len;
1434
1435	return NETDEV_TX_OK;
1436}
1437
1438/* Tx lock BH */
1439static int emac_start_xmit(struct sk_buff *skb, struct net_device *ndev)
1440{
1441	struct emac_instance *dev = netdev_priv(ndev);
1442	unsigned int len = skb->len;
1443	int slot;
1444
1445	u16 ctrl = EMAC_TX_CTRL_GFCS | EMAC_TX_CTRL_GP | MAL_TX_CTRL_READY |
1446	    MAL_TX_CTRL_LAST | emac_tx_csum(dev, skb);
1447
1448	slot = dev->tx_slot++;
1449	if (dev->tx_slot == NUM_TX_BUFF) {
1450		dev->tx_slot = 0;
1451		ctrl |= MAL_TX_CTRL_WRAP;
1452	}
1453
1454	DBG2(dev, "xmit(%u) %d" NL, len, slot);
1455
1456	dev->tx_skb[slot] = skb;
1457	dev->tx_desc[slot].data_ptr = dma_map_single(&dev->ofdev->dev,
1458						     skb->data, len,
1459						     DMA_TO_DEVICE);
1460	dev->tx_desc[slot].data_len = (u16) len;
1461	wmb();
1462	dev->tx_desc[slot].ctrl = ctrl;
1463
1464	return emac_xmit_finish(dev, len);
1465}
1466
1467static inline int emac_xmit_split(struct emac_instance *dev, int slot,
1468				  u32 pd, int len, int last, u16 base_ctrl)
1469{
1470	while (1) {
1471		u16 ctrl = base_ctrl;
1472		int chunk = min(len, MAL_MAX_TX_SIZE);
1473		len -= chunk;
1474
1475		slot = (slot + 1) % NUM_TX_BUFF;
1476
1477		if (last && !len)
1478			ctrl |= MAL_TX_CTRL_LAST;
1479		if (slot == NUM_TX_BUFF - 1)
1480			ctrl |= MAL_TX_CTRL_WRAP;
1481
1482		dev->tx_skb[slot] = NULL;
1483		dev->tx_desc[slot].data_ptr = pd;
1484		dev->tx_desc[slot].data_len = (u16) chunk;
1485		dev->tx_desc[slot].ctrl = ctrl;
1486		++dev->tx_cnt;
1487
1488		if (!len)
1489			break;
1490
1491		pd += chunk;
1492	}
1493	return slot;
1494}
1495
1496/* Tx lock BH disabled (SG version for TAH equipped EMACs) */
1497static int emac_start_xmit_sg(struct sk_buff *skb, struct net_device *ndev)
 
1498{
1499	struct emac_instance *dev = netdev_priv(ndev);
1500	int nr_frags = skb_shinfo(skb)->nr_frags;
1501	int len = skb->len, chunk;
1502	int slot, i;
1503	u16 ctrl;
1504	u32 pd;
1505
1506	/* This is common "fast" path */
1507	if (likely(!nr_frags && len <= MAL_MAX_TX_SIZE))
1508		return emac_start_xmit(skb, ndev);
1509
1510	len -= skb->data_len;
1511
1512	/* Note, this is only an *estimation*, we can still run out of empty
1513	 * slots because of the additional fragmentation into
1514	 * MAL_MAX_TX_SIZE-sized chunks
1515	 */
1516	if (unlikely(dev->tx_cnt + nr_frags + mal_tx_chunks(len) > NUM_TX_BUFF))
1517		goto stop_queue;
1518
1519	ctrl = EMAC_TX_CTRL_GFCS | EMAC_TX_CTRL_GP | MAL_TX_CTRL_READY |
1520	    emac_tx_csum(dev, skb);
1521	slot = dev->tx_slot;
1522
1523	/* skb data */
1524	dev->tx_skb[slot] = NULL;
1525	chunk = min(len, MAL_MAX_TX_SIZE);
1526	dev->tx_desc[slot].data_ptr = pd =
1527	    dma_map_single(&dev->ofdev->dev, skb->data, len, DMA_TO_DEVICE);
1528	dev->tx_desc[slot].data_len = (u16) chunk;
1529	len -= chunk;
1530	if (unlikely(len))
1531		slot = emac_xmit_split(dev, slot, pd + chunk, len, !nr_frags,
1532				       ctrl);
1533	/* skb fragments */
1534	for (i = 0; i < nr_frags; ++i) {
1535		struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i];
1536		len = skb_frag_size(frag);
1537
1538		if (unlikely(dev->tx_cnt + mal_tx_chunks(len) >= NUM_TX_BUFF))
1539			goto undo_frame;
1540
1541		pd = skb_frag_dma_map(&dev->ofdev->dev, frag, 0, len,
1542				      DMA_TO_DEVICE);
1543
1544		slot = emac_xmit_split(dev, slot, pd, len, i == nr_frags - 1,
1545				       ctrl);
1546	}
1547
1548	DBG2(dev, "xmit_sg(%u) %d - %d" NL, skb->len, dev->tx_slot, slot);
1549
1550	/* Attach skb to the last slot so we don't release it too early */
1551	dev->tx_skb[slot] = skb;
1552
1553	/* Send the packet out */
1554	if (dev->tx_slot == NUM_TX_BUFF - 1)
1555		ctrl |= MAL_TX_CTRL_WRAP;
1556	wmb();
1557	dev->tx_desc[dev->tx_slot].ctrl = ctrl;
1558	dev->tx_slot = (slot + 1) % NUM_TX_BUFF;
1559
1560	return emac_xmit_finish(dev, skb->len);
1561
1562 undo_frame:
1563	/* Well, too bad. Our previous estimation was overly optimistic.
1564	 * Undo everything.
1565	 */
1566	while (slot != dev->tx_slot) {
1567		dev->tx_desc[slot].ctrl = 0;
1568		--dev->tx_cnt;
1569		if (--slot < 0)
1570			slot = NUM_TX_BUFF - 1;
1571	}
1572	++dev->estats.tx_undo;
1573
1574 stop_queue:
1575	netif_stop_queue(ndev);
1576	DBG2(dev, "stopped TX queue" NL);
1577	return NETDEV_TX_BUSY;
1578}
1579
1580/* Tx lock BHs */
1581static void emac_parse_tx_error(struct emac_instance *dev, u16 ctrl)
1582{
1583	struct emac_error_stats *st = &dev->estats;
1584
1585	DBG(dev, "BD TX error %04x" NL, ctrl);
1586
1587	++st->tx_bd_errors;
1588	if (ctrl & EMAC_TX_ST_BFCS)
1589		++st->tx_bd_bad_fcs;
1590	if (ctrl & EMAC_TX_ST_LCS)
1591		++st->tx_bd_carrier_loss;
1592	if (ctrl & EMAC_TX_ST_ED)
1593		++st->tx_bd_excessive_deferral;
1594	if (ctrl & EMAC_TX_ST_EC)
1595		++st->tx_bd_excessive_collisions;
1596	if (ctrl & EMAC_TX_ST_LC)
1597		++st->tx_bd_late_collision;
1598	if (ctrl & EMAC_TX_ST_MC)
1599		++st->tx_bd_multple_collisions;
1600	if (ctrl & EMAC_TX_ST_SC)
1601		++st->tx_bd_single_collision;
1602	if (ctrl & EMAC_TX_ST_UR)
1603		++st->tx_bd_underrun;
1604	if (ctrl & EMAC_TX_ST_SQE)
1605		++st->tx_bd_sqe;
1606}
1607
1608static void emac_poll_tx(void *param)
1609{
1610	struct emac_instance *dev = param;
1611	u32 bad_mask;
1612
1613	DBG2(dev, "poll_tx, %d %d" NL, dev->tx_cnt, dev->ack_slot);
1614
1615	if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
1616		bad_mask = EMAC_IS_BAD_TX_TAH;
1617	else
1618		bad_mask = EMAC_IS_BAD_TX;
1619
1620	netif_tx_lock_bh(dev->ndev);
1621	if (dev->tx_cnt) {
1622		u16 ctrl;
1623		int slot = dev->ack_slot, n = 0;
1624	again:
1625		ctrl = dev->tx_desc[slot].ctrl;
1626		if (!(ctrl & MAL_TX_CTRL_READY)) {
1627			struct sk_buff *skb = dev->tx_skb[slot];
1628			++n;
1629
1630			if (skb) {
1631				dev_kfree_skb(skb);
1632				dev->tx_skb[slot] = NULL;
1633			}
1634			slot = (slot + 1) % NUM_TX_BUFF;
1635
1636			if (unlikely(ctrl & bad_mask))
1637				emac_parse_tx_error(dev, ctrl);
1638
1639			if (--dev->tx_cnt)
1640				goto again;
1641		}
1642		if (n) {
1643			dev->ack_slot = slot;
1644			if (netif_queue_stopped(dev->ndev) &&
1645			    dev->tx_cnt < EMAC_TX_WAKEUP_THRESH)
1646				netif_wake_queue(dev->ndev);
1647
1648			DBG2(dev, "tx %d pkts" NL, n);
1649		}
1650	}
1651	netif_tx_unlock_bh(dev->ndev);
1652}
1653
1654static inline void emac_recycle_rx_skb(struct emac_instance *dev, int slot,
1655				       int len)
1656{
1657	struct sk_buff *skb = dev->rx_skb[slot];
1658
1659	DBG2(dev, "recycle %d %d" NL, slot, len);
1660
1661	if (len)
1662		dma_map_single(&dev->ofdev->dev, skb->data - 2,
1663			       EMAC_DMA_ALIGN(len + 2), DMA_FROM_DEVICE);
 
1664
1665	dev->rx_desc[slot].data_len = 0;
1666	wmb();
1667	dev->rx_desc[slot].ctrl = MAL_RX_CTRL_EMPTY |
1668	    (slot == (NUM_RX_BUFF - 1) ? MAL_RX_CTRL_WRAP : 0);
1669}
1670
1671static void emac_parse_rx_error(struct emac_instance *dev, u16 ctrl)
1672{
1673	struct emac_error_stats *st = &dev->estats;
1674
1675	DBG(dev, "BD RX error %04x" NL, ctrl);
1676
1677	++st->rx_bd_errors;
1678	if (ctrl & EMAC_RX_ST_OE)
1679		++st->rx_bd_overrun;
1680	if (ctrl & EMAC_RX_ST_BP)
1681		++st->rx_bd_bad_packet;
1682	if (ctrl & EMAC_RX_ST_RP)
1683		++st->rx_bd_runt_packet;
1684	if (ctrl & EMAC_RX_ST_SE)
1685		++st->rx_bd_short_event;
1686	if (ctrl & EMAC_RX_ST_AE)
1687		++st->rx_bd_alignment_error;
1688	if (ctrl & EMAC_RX_ST_BFCS)
1689		++st->rx_bd_bad_fcs;
1690	if (ctrl & EMAC_RX_ST_PTL)
1691		++st->rx_bd_packet_too_long;
1692	if (ctrl & EMAC_RX_ST_ORE)
1693		++st->rx_bd_out_of_range;
1694	if (ctrl & EMAC_RX_ST_IRE)
1695		++st->rx_bd_in_range;
1696}
1697
1698static inline void emac_rx_csum(struct emac_instance *dev,
1699				struct sk_buff *skb, u16 ctrl)
1700{
1701#ifdef CONFIG_IBM_EMAC_TAH
1702	if (!ctrl && dev->tah_dev) {
1703		skb->ip_summed = CHECKSUM_UNNECESSARY;
1704		++dev->stats.rx_packets_csum;
1705	}
1706#endif
1707}
1708
1709static inline int emac_rx_sg_append(struct emac_instance *dev, int slot)
1710{
1711	if (likely(dev->rx_sg_skb != NULL)) {
1712		int len = dev->rx_desc[slot].data_len;
1713		int tot_len = dev->rx_sg_skb->len + len;
1714
1715		if (unlikely(tot_len + 2 > dev->rx_skb_size)) {
1716			++dev->estats.rx_dropped_mtu;
1717			dev_kfree_skb(dev->rx_sg_skb);
1718			dev->rx_sg_skb = NULL;
1719		} else {
1720			memcpy(skb_tail_pointer(dev->rx_sg_skb),
1721					 dev->rx_skb[slot]->data, len);
1722			skb_put(dev->rx_sg_skb, len);
1723			emac_recycle_rx_skb(dev, slot, len);
1724			return 0;
1725		}
1726	}
1727	emac_recycle_rx_skb(dev, slot, 0);
1728	return -1;
1729}
1730
1731/* NAPI poll context */
1732static int emac_poll_rx(void *param, int budget)
1733{
1734	struct emac_instance *dev = param;
1735	int slot = dev->rx_slot, received = 0;
1736
1737	DBG2(dev, "poll_rx(%d)" NL, budget);
1738
1739 again:
1740	while (budget > 0) {
1741		int len;
1742		struct sk_buff *skb;
1743		u16 ctrl = dev->rx_desc[slot].ctrl;
1744
1745		if (ctrl & MAL_RX_CTRL_EMPTY)
1746			break;
1747
1748		skb = dev->rx_skb[slot];
1749		mb();
1750		len = dev->rx_desc[slot].data_len;
1751
1752		if (unlikely(!MAL_IS_SINGLE_RX(ctrl)))
1753			goto sg;
1754
1755		ctrl &= EMAC_BAD_RX_MASK;
1756		if (unlikely(ctrl && ctrl != EMAC_RX_TAH_BAD_CSUM)) {
1757			emac_parse_rx_error(dev, ctrl);
1758			++dev->estats.rx_dropped_error;
1759			emac_recycle_rx_skb(dev, slot, 0);
1760			len = 0;
1761			goto next;
1762		}
1763
1764		if (len < ETH_HLEN) {
1765			++dev->estats.rx_dropped_stack;
1766			emac_recycle_rx_skb(dev, slot, len);
1767			goto next;
1768		}
1769
1770		if (len && len < EMAC_RX_COPY_THRESH) {
1771			struct sk_buff *copy_skb =
1772			    alloc_skb(len + EMAC_RX_SKB_HEADROOM + 2, GFP_ATOMIC);
 
1773			if (unlikely(!copy_skb))
1774				goto oom;
1775
1776			skb_reserve(copy_skb, EMAC_RX_SKB_HEADROOM + 2);
1777			memcpy(copy_skb->data - 2, skb->data - 2, len + 2);
 
1778			emac_recycle_rx_skb(dev, slot, len);
1779			skb = copy_skb;
1780		} else if (unlikely(emac_alloc_rx_skb(dev, slot, GFP_ATOMIC)))
1781			goto oom;
1782
1783		skb_put(skb, len);
1784	push_packet:
1785		skb->protocol = eth_type_trans(skb, dev->ndev);
1786		emac_rx_csum(dev, skb, ctrl);
1787
1788		if (unlikely(netif_receive_skb(skb) == NET_RX_DROP))
1789			++dev->estats.rx_dropped_stack;
1790	next:
1791		++dev->stats.rx_packets;
1792	skip:
1793		dev->stats.rx_bytes += len;
1794		slot = (slot + 1) % NUM_RX_BUFF;
1795		--budget;
1796		++received;
1797		continue;
1798	sg:
1799		if (ctrl & MAL_RX_CTRL_FIRST) {
1800			BUG_ON(dev->rx_sg_skb);
1801			if (unlikely(emac_alloc_rx_skb(dev, slot, GFP_ATOMIC))) {
1802				DBG(dev, "rx OOM %d" NL, slot);
1803				++dev->estats.rx_dropped_oom;
1804				emac_recycle_rx_skb(dev, slot, 0);
1805			} else {
1806				dev->rx_sg_skb = skb;
1807				skb_put(skb, len);
1808			}
1809		} else if (!emac_rx_sg_append(dev, slot) &&
1810			   (ctrl & MAL_RX_CTRL_LAST)) {
1811
1812			skb = dev->rx_sg_skb;
1813			dev->rx_sg_skb = NULL;
1814
1815			ctrl &= EMAC_BAD_RX_MASK;
1816			if (unlikely(ctrl && ctrl != EMAC_RX_TAH_BAD_CSUM)) {
1817				emac_parse_rx_error(dev, ctrl);
1818				++dev->estats.rx_dropped_error;
1819				dev_kfree_skb(skb);
1820				len = 0;
1821			} else
1822				goto push_packet;
1823		}
1824		goto skip;
1825	oom:
1826		DBG(dev, "rx OOM %d" NL, slot);
1827		/* Drop the packet and recycle skb */
1828		++dev->estats.rx_dropped_oom;
1829		emac_recycle_rx_skb(dev, slot, 0);
1830		goto next;
1831	}
1832
1833	if (received) {
1834		DBG2(dev, "rx %d BDs" NL, received);
1835		dev->rx_slot = slot;
1836	}
1837
1838	if (unlikely(budget && test_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags))) {
1839		mb();
1840		if (!(dev->rx_desc[slot].ctrl & MAL_RX_CTRL_EMPTY)) {
1841			DBG2(dev, "rx restart" NL);
1842			received = 0;
1843			goto again;
1844		}
1845
1846		if (dev->rx_sg_skb) {
1847			DBG2(dev, "dropping partial rx packet" NL);
1848			++dev->estats.rx_dropped_error;
1849			dev_kfree_skb(dev->rx_sg_skb);
1850			dev->rx_sg_skb = NULL;
1851		}
1852
1853		clear_bit(MAL_COMMAC_RX_STOPPED, &dev->commac.flags);
1854		mal_enable_rx_channel(dev->mal, dev->mal_rx_chan);
1855		emac_rx_enable(dev);
1856		dev->rx_slot = 0;
1857	}
1858	return received;
1859}
1860
1861/* NAPI poll context */
1862static int emac_peek_rx(void *param)
1863{
1864	struct emac_instance *dev = param;
1865
1866	return !(dev->rx_desc[dev->rx_slot].ctrl & MAL_RX_CTRL_EMPTY);
1867}
1868
1869/* NAPI poll context */
1870static int emac_peek_rx_sg(void *param)
1871{
1872	struct emac_instance *dev = param;
1873
1874	int slot = dev->rx_slot;
1875	while (1) {
1876		u16 ctrl = dev->rx_desc[slot].ctrl;
1877		if (ctrl & MAL_RX_CTRL_EMPTY)
1878			return 0;
1879		else if (ctrl & MAL_RX_CTRL_LAST)
1880			return 1;
1881
1882		slot = (slot + 1) % NUM_RX_BUFF;
1883
1884		/* I'm just being paranoid here :) */
1885		if (unlikely(slot == dev->rx_slot))
1886			return 0;
1887	}
1888}
1889
1890/* Hard IRQ */
1891static void emac_rxde(void *param)
1892{
1893	struct emac_instance *dev = param;
1894
1895	++dev->estats.rx_stopped;
1896	emac_rx_disable_async(dev);
1897}
1898
1899/* Hard IRQ */
1900static irqreturn_t emac_irq(int irq, void *dev_instance)
1901{
1902	struct emac_instance *dev = dev_instance;
1903	struct emac_regs __iomem *p = dev->emacp;
1904	struct emac_error_stats *st = &dev->estats;
1905	u32 isr;
1906
1907	spin_lock(&dev->lock);
1908
1909	isr = in_be32(&p->isr);
1910	out_be32(&p->isr, isr);
1911
1912	DBG(dev, "isr = %08x" NL, isr);
1913
1914	if (isr & EMAC4_ISR_TXPE)
1915		++st->tx_parity;
1916	if (isr & EMAC4_ISR_RXPE)
1917		++st->rx_parity;
1918	if (isr & EMAC4_ISR_TXUE)
1919		++st->tx_underrun;
1920	if (isr & EMAC4_ISR_RXOE)
1921		++st->rx_fifo_overrun;
1922	if (isr & EMAC_ISR_OVR)
1923		++st->rx_overrun;
1924	if (isr & EMAC_ISR_BP)
1925		++st->rx_bad_packet;
1926	if (isr & EMAC_ISR_RP)
1927		++st->rx_runt_packet;
1928	if (isr & EMAC_ISR_SE)
1929		++st->rx_short_event;
1930	if (isr & EMAC_ISR_ALE)
1931		++st->rx_alignment_error;
1932	if (isr & EMAC_ISR_BFCS)
1933		++st->rx_bad_fcs;
1934	if (isr & EMAC_ISR_PTLE)
1935		++st->rx_packet_too_long;
1936	if (isr & EMAC_ISR_ORE)
1937		++st->rx_out_of_range;
1938	if (isr & EMAC_ISR_IRE)
1939		++st->rx_in_range;
1940	if (isr & EMAC_ISR_SQE)
1941		++st->tx_sqe;
1942	if (isr & EMAC_ISR_TE)
1943		++st->tx_errors;
1944
1945	spin_unlock(&dev->lock);
1946
1947	return IRQ_HANDLED;
1948}
1949
1950static struct net_device_stats *emac_stats(struct net_device *ndev)
1951{
1952	struct emac_instance *dev = netdev_priv(ndev);
1953	struct emac_stats *st = &dev->stats;
1954	struct emac_error_stats *est = &dev->estats;
1955	struct net_device_stats *nst = &ndev->stats;
1956	unsigned long flags;
1957
1958	DBG2(dev, "stats" NL);
1959
1960	/* Compute "legacy" statistics */
1961	spin_lock_irqsave(&dev->lock, flags);
1962	nst->rx_packets = (unsigned long)st->rx_packets;
1963	nst->rx_bytes = (unsigned long)st->rx_bytes;
1964	nst->tx_packets = (unsigned long)st->tx_packets;
1965	nst->tx_bytes = (unsigned long)st->tx_bytes;
1966	nst->rx_dropped = (unsigned long)(est->rx_dropped_oom +
1967					  est->rx_dropped_error +
1968					  est->rx_dropped_resize +
1969					  est->rx_dropped_mtu);
1970	nst->tx_dropped = (unsigned long)est->tx_dropped;
1971
1972	nst->rx_errors = (unsigned long)est->rx_bd_errors;
1973	nst->rx_fifo_errors = (unsigned long)(est->rx_bd_overrun +
1974					      est->rx_fifo_overrun +
1975					      est->rx_overrun);
1976	nst->rx_frame_errors = (unsigned long)(est->rx_bd_alignment_error +
1977					       est->rx_alignment_error);
1978	nst->rx_crc_errors = (unsigned long)(est->rx_bd_bad_fcs +
1979					     est->rx_bad_fcs);
1980	nst->rx_length_errors = (unsigned long)(est->rx_bd_runt_packet +
1981						est->rx_bd_short_event +
1982						est->rx_bd_packet_too_long +
1983						est->rx_bd_out_of_range +
1984						est->rx_bd_in_range +
1985						est->rx_runt_packet +
1986						est->rx_short_event +
1987						est->rx_packet_too_long +
1988						est->rx_out_of_range +
1989						est->rx_in_range);
1990
1991	nst->tx_errors = (unsigned long)(est->tx_bd_errors + est->tx_errors);
1992	nst->tx_fifo_errors = (unsigned long)(est->tx_bd_underrun +
1993					      est->tx_underrun);
1994	nst->tx_carrier_errors = (unsigned long)est->tx_bd_carrier_loss;
1995	nst->collisions = (unsigned long)(est->tx_bd_excessive_deferral +
1996					  est->tx_bd_excessive_collisions +
1997					  est->tx_bd_late_collision +
1998					  est->tx_bd_multple_collisions);
1999	spin_unlock_irqrestore(&dev->lock, flags);
2000	return nst;
2001}
2002
2003static struct mal_commac_ops emac_commac_ops = {
2004	.poll_tx = &emac_poll_tx,
2005	.poll_rx = &emac_poll_rx,
2006	.peek_rx = &emac_peek_rx,
2007	.rxde = &emac_rxde,
2008};
2009
2010static struct mal_commac_ops emac_commac_sg_ops = {
2011	.poll_tx = &emac_poll_tx,
2012	.poll_rx = &emac_poll_rx,
2013	.peek_rx = &emac_peek_rx_sg,
2014	.rxde = &emac_rxde,
2015};
2016
2017/* Ethtool support */
2018static int emac_ethtool_get_link_ksettings(struct net_device *ndev,
2019					   struct ethtool_link_ksettings *cmd)
2020{
2021	struct emac_instance *dev = netdev_priv(ndev);
2022	u32 supported, advertising;
2023
2024	supported = dev->phy.features;
2025	cmd->base.port = PORT_MII;
2026	cmd->base.phy_address = dev->phy.address;
2027
2028	mutex_lock(&dev->link_lock);
2029	advertising = dev->phy.advertising;
2030	cmd->base.autoneg = dev->phy.autoneg;
2031	cmd->base.speed = dev->phy.speed;
2032	cmd->base.duplex = dev->phy.duplex;
2033	mutex_unlock(&dev->link_lock);
2034
2035	ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
2036						supported);
2037	ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
2038						advertising);
2039
2040	return 0;
2041}
2042
2043static int
2044emac_ethtool_set_link_ksettings(struct net_device *ndev,
2045				const struct ethtool_link_ksettings *cmd)
2046{
2047	struct emac_instance *dev = netdev_priv(ndev);
2048	u32 f = dev->phy.features;
2049	u32 advertising;
2050
2051	ethtool_convert_link_mode_to_legacy_u32(&advertising,
2052						cmd->link_modes.advertising);
2053
2054	DBG(dev, "set_settings(%d, %d, %d, 0x%08x)" NL,
2055	    cmd->base.autoneg, cmd->base.speed, cmd->base.duplex, advertising);
2056
2057	/* Basic sanity checks */
2058	if (dev->phy.address < 0)
2059		return -EOPNOTSUPP;
2060	if (cmd->base.autoneg != AUTONEG_ENABLE &&
2061	    cmd->base.autoneg != AUTONEG_DISABLE)
2062		return -EINVAL;
2063	if (cmd->base.autoneg == AUTONEG_ENABLE && advertising == 0)
2064		return -EINVAL;
2065	if (cmd->base.duplex != DUPLEX_HALF && cmd->base.duplex != DUPLEX_FULL)
2066		return -EINVAL;
2067
2068	if (cmd->base.autoneg == AUTONEG_DISABLE) {
2069		switch (cmd->base.speed) {
2070		case SPEED_10:
2071			if (cmd->base.duplex == DUPLEX_HALF &&
2072			    !(f & SUPPORTED_10baseT_Half))
2073				return -EINVAL;
2074			if (cmd->base.duplex == DUPLEX_FULL &&
2075			    !(f & SUPPORTED_10baseT_Full))
2076				return -EINVAL;
2077			break;
2078		case SPEED_100:
2079			if (cmd->base.duplex == DUPLEX_HALF &&
2080			    !(f & SUPPORTED_100baseT_Half))
2081				return -EINVAL;
2082			if (cmd->base.duplex == DUPLEX_FULL &&
2083			    !(f & SUPPORTED_100baseT_Full))
2084				return -EINVAL;
2085			break;
2086		case SPEED_1000:
2087			if (cmd->base.duplex == DUPLEX_HALF &&
2088			    !(f & SUPPORTED_1000baseT_Half))
2089				return -EINVAL;
2090			if (cmd->base.duplex == DUPLEX_FULL &&
2091			    !(f & SUPPORTED_1000baseT_Full))
2092				return -EINVAL;
2093			break;
2094		default:
2095			return -EINVAL;
2096		}
2097
2098		mutex_lock(&dev->link_lock);
2099		dev->phy.def->ops->setup_forced(&dev->phy, cmd->base.speed,
2100						cmd->base.duplex);
2101		mutex_unlock(&dev->link_lock);
2102
2103	} else {
2104		if (!(f & SUPPORTED_Autoneg))
2105			return -EINVAL;
2106
2107		mutex_lock(&dev->link_lock);
2108		dev->phy.def->ops->setup_aneg(&dev->phy,
2109					      (advertising & f) |
2110					      (dev->phy.advertising &
2111					       (ADVERTISED_Pause |
2112						ADVERTISED_Asym_Pause)));
2113		mutex_unlock(&dev->link_lock);
2114	}
2115	emac_force_link_update(dev);
2116
2117	return 0;
2118}
2119
2120static void emac_ethtool_get_ringparam(struct net_device *ndev,
2121				       struct ethtool_ringparam *rp)
 
 
 
2122{
2123	rp->rx_max_pending = rp->rx_pending = NUM_RX_BUFF;
2124	rp->tx_max_pending = rp->tx_pending = NUM_TX_BUFF;
2125}
2126
2127static void emac_ethtool_get_pauseparam(struct net_device *ndev,
2128					struct ethtool_pauseparam *pp)
2129{
2130	struct emac_instance *dev = netdev_priv(ndev);
2131
2132	mutex_lock(&dev->link_lock);
2133	if ((dev->phy.features & SUPPORTED_Autoneg) &&
2134	    (dev->phy.advertising & (ADVERTISED_Pause | ADVERTISED_Asym_Pause)))
2135		pp->autoneg = 1;
2136
2137	if (dev->phy.duplex == DUPLEX_FULL) {
2138		if (dev->phy.pause)
2139			pp->rx_pause = pp->tx_pause = 1;
2140		else if (dev->phy.asym_pause)
2141			pp->tx_pause = 1;
2142	}
2143	mutex_unlock(&dev->link_lock);
2144}
2145
2146static int emac_get_regs_len(struct emac_instance *dev)
2147{
2148		return sizeof(struct emac_ethtool_regs_subhdr) +
2149			sizeof(struct emac_regs);
2150}
2151
2152static int emac_ethtool_get_regs_len(struct net_device *ndev)
2153{
2154	struct emac_instance *dev = netdev_priv(ndev);
2155	int size;
2156
2157	size = sizeof(struct emac_ethtool_regs_hdr) +
2158		emac_get_regs_len(dev) + mal_get_regs_len(dev->mal);
2159	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
2160		size += zmii_get_regs_len(dev->zmii_dev);
2161	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
2162		size += rgmii_get_regs_len(dev->rgmii_dev);
2163	if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
2164		size += tah_get_regs_len(dev->tah_dev);
2165
2166	return size;
2167}
2168
2169static void *emac_dump_regs(struct emac_instance *dev, void *buf)
2170{
2171	struct emac_ethtool_regs_subhdr *hdr = buf;
2172
2173	hdr->index = dev->cell_index;
2174	if (emac_has_feature(dev, EMAC_FTR_EMAC4SYNC)) {
2175		hdr->version = EMAC4SYNC_ETHTOOL_REGS_VER;
2176	} else if (emac_has_feature(dev, EMAC_FTR_EMAC4)) {
2177		hdr->version = EMAC4_ETHTOOL_REGS_VER;
2178	} else {
2179		hdr->version = EMAC_ETHTOOL_REGS_VER;
2180	}
2181	memcpy_fromio(hdr + 1, dev->emacp, sizeof(struct emac_regs));
2182	return (void *)(hdr + 1) + sizeof(struct emac_regs);
2183}
2184
2185static void emac_ethtool_get_regs(struct net_device *ndev,
2186				  struct ethtool_regs *regs, void *buf)
2187{
2188	struct emac_instance *dev = netdev_priv(ndev);
2189	struct emac_ethtool_regs_hdr *hdr = buf;
2190
2191	hdr->components = 0;
2192	buf = hdr + 1;
2193
2194	buf = mal_dump_regs(dev->mal, buf);
2195	buf = emac_dump_regs(dev, buf);
2196	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII)) {
2197		hdr->components |= EMAC_ETHTOOL_REGS_ZMII;
2198		buf = zmii_dump_regs(dev->zmii_dev, buf);
2199	}
2200	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII)) {
2201		hdr->components |= EMAC_ETHTOOL_REGS_RGMII;
2202		buf = rgmii_dump_regs(dev->rgmii_dev, buf);
2203	}
2204	if (emac_has_feature(dev, EMAC_FTR_HAS_TAH)) {
2205		hdr->components |= EMAC_ETHTOOL_REGS_TAH;
2206		buf = tah_dump_regs(dev->tah_dev, buf);
2207	}
2208}
2209
2210static int emac_ethtool_nway_reset(struct net_device *ndev)
2211{
2212	struct emac_instance *dev = netdev_priv(ndev);
2213	int res = 0;
2214
2215	DBG(dev, "nway_reset" NL);
2216
2217	if (dev->phy.address < 0)
2218		return -EOPNOTSUPP;
2219
2220	mutex_lock(&dev->link_lock);
2221	if (!dev->phy.autoneg) {
2222		res = -EINVAL;
2223		goto out;
2224	}
2225
2226	dev->phy.def->ops->setup_aneg(&dev->phy, dev->phy.advertising);
2227 out:
2228	mutex_unlock(&dev->link_lock);
2229	emac_force_link_update(dev);
2230	return res;
2231}
2232
2233static int emac_ethtool_get_sset_count(struct net_device *ndev, int stringset)
2234{
2235	if (stringset == ETH_SS_STATS)
2236		return EMAC_ETHTOOL_STATS_COUNT;
2237	else
2238		return -EINVAL;
2239}
2240
2241static void emac_ethtool_get_strings(struct net_device *ndev, u32 stringset,
2242				     u8 * buf)
2243{
2244	if (stringset == ETH_SS_STATS)
2245		memcpy(buf, &emac_stats_keys, sizeof(emac_stats_keys));
2246}
2247
2248static void emac_ethtool_get_ethtool_stats(struct net_device *ndev,
2249					   struct ethtool_stats *estats,
2250					   u64 * tmp_stats)
2251{
2252	struct emac_instance *dev = netdev_priv(ndev);
2253
2254	memcpy(tmp_stats, &dev->stats, sizeof(dev->stats));
2255	tmp_stats += sizeof(dev->stats) / sizeof(u64);
2256	memcpy(tmp_stats, &dev->estats, sizeof(dev->estats));
2257}
2258
2259static void emac_ethtool_get_drvinfo(struct net_device *ndev,
2260				     struct ethtool_drvinfo *info)
2261{
2262	struct emac_instance *dev = netdev_priv(ndev);
2263
2264	strlcpy(info->driver, "ibm_emac", sizeof(info->driver));
2265	strlcpy(info->version, DRV_VERSION, sizeof(info->version));
2266	snprintf(info->bus_info, sizeof(info->bus_info), "PPC 4xx EMAC-%d %pOF",
2267		 dev->cell_index, dev->ofdev->dev.of_node);
2268}
2269
2270static const struct ethtool_ops emac_ethtool_ops = {
2271	.get_drvinfo = emac_ethtool_get_drvinfo,
2272
2273	.get_regs_len = emac_ethtool_get_regs_len,
2274	.get_regs = emac_ethtool_get_regs,
2275
2276	.nway_reset = emac_ethtool_nway_reset,
2277
2278	.get_ringparam = emac_ethtool_get_ringparam,
2279	.get_pauseparam = emac_ethtool_get_pauseparam,
2280
2281	.get_strings = emac_ethtool_get_strings,
2282	.get_sset_count = emac_ethtool_get_sset_count,
2283	.get_ethtool_stats = emac_ethtool_get_ethtool_stats,
2284
2285	.get_link = ethtool_op_get_link,
2286	.get_link_ksettings = emac_ethtool_get_link_ksettings,
2287	.set_link_ksettings = emac_ethtool_set_link_ksettings,
2288};
2289
2290static int emac_ioctl(struct net_device *ndev, struct ifreq *rq, int cmd)
2291{
2292	struct emac_instance *dev = netdev_priv(ndev);
2293	struct mii_ioctl_data *data = if_mii(rq);
2294
2295	DBG(dev, "ioctl %08x" NL, cmd);
2296
2297	if (dev->phy.address < 0)
2298		return -EOPNOTSUPP;
2299
2300	switch (cmd) {
2301	case SIOCGMIIPHY:
2302		data->phy_id = dev->phy.address;
2303		/* Fall through */
2304	case SIOCGMIIREG:
2305		data->val_out = emac_mdio_read(ndev, dev->phy.address,
2306					       data->reg_num);
2307		return 0;
2308
2309	case SIOCSMIIREG:
2310		emac_mdio_write(ndev, dev->phy.address, data->reg_num,
2311				data->val_in);
2312		return 0;
2313	default:
2314		return -EOPNOTSUPP;
2315	}
2316}
2317
2318struct emac_depentry {
2319	u32			phandle;
2320	struct device_node	*node;
2321	struct platform_device	*ofdev;
2322	void			*drvdata;
2323};
2324
2325#define	EMAC_DEP_MAL_IDX	0
2326#define	EMAC_DEP_ZMII_IDX	1
2327#define	EMAC_DEP_RGMII_IDX	2
2328#define	EMAC_DEP_TAH_IDX	3
2329#define	EMAC_DEP_MDIO_IDX	4
2330#define	EMAC_DEP_PREV_IDX	5
2331#define	EMAC_DEP_COUNT		6
2332
2333static int emac_check_deps(struct emac_instance *dev,
2334			   struct emac_depentry *deps)
2335{
2336	int i, there = 0;
2337	struct device_node *np;
2338
2339	for (i = 0; i < EMAC_DEP_COUNT; i++) {
2340		/* no dependency on that item, allright */
2341		if (deps[i].phandle == 0) {
2342			there++;
2343			continue;
2344		}
2345		/* special case for blist as the dependency might go away */
2346		if (i == EMAC_DEP_PREV_IDX) {
2347			np = *(dev->blist - 1);
2348			if (np == NULL) {
2349				deps[i].phandle = 0;
2350				there++;
2351				continue;
2352			}
2353			if (deps[i].node == NULL)
2354				deps[i].node = of_node_get(np);
2355		}
2356		if (deps[i].node == NULL)
2357			deps[i].node = of_find_node_by_phandle(deps[i].phandle);
2358		if (deps[i].node == NULL)
2359			continue;
2360		if (deps[i].ofdev == NULL)
2361			deps[i].ofdev = of_find_device_by_node(deps[i].node);
2362		if (deps[i].ofdev == NULL)
2363			continue;
2364		if (deps[i].drvdata == NULL)
2365			deps[i].drvdata = platform_get_drvdata(deps[i].ofdev);
2366		if (deps[i].drvdata != NULL)
2367			there++;
2368	}
2369	return there == EMAC_DEP_COUNT;
2370}
2371
2372static void emac_put_deps(struct emac_instance *dev)
2373{
2374	of_dev_put(dev->mal_dev);
2375	of_dev_put(dev->zmii_dev);
2376	of_dev_put(dev->rgmii_dev);
2377	of_dev_put(dev->mdio_dev);
2378	of_dev_put(dev->tah_dev);
2379}
2380
2381static int emac_of_bus_notify(struct notifier_block *nb, unsigned long action,
2382			      void *data)
2383{
2384	/* We are only intereted in device addition */
2385	if (action == BUS_NOTIFY_BOUND_DRIVER)
2386		wake_up_all(&emac_probe_wait);
2387	return 0;
2388}
2389
2390static struct notifier_block emac_of_bus_notifier = {
2391	.notifier_call = emac_of_bus_notify
2392};
2393
2394static int emac_wait_deps(struct emac_instance *dev)
2395{
2396	struct emac_depentry deps[EMAC_DEP_COUNT];
2397	int i, err;
2398
2399	memset(&deps, 0, sizeof(deps));
2400
2401	deps[EMAC_DEP_MAL_IDX].phandle = dev->mal_ph;
2402	deps[EMAC_DEP_ZMII_IDX].phandle = dev->zmii_ph;
2403	deps[EMAC_DEP_RGMII_IDX].phandle = dev->rgmii_ph;
2404	if (dev->tah_ph)
2405		deps[EMAC_DEP_TAH_IDX].phandle = dev->tah_ph;
2406	if (dev->mdio_ph)
2407		deps[EMAC_DEP_MDIO_IDX].phandle = dev->mdio_ph;
2408	if (dev->blist && dev->blist > emac_boot_list)
2409		deps[EMAC_DEP_PREV_IDX].phandle = 0xffffffffu;
2410	bus_register_notifier(&platform_bus_type, &emac_of_bus_notifier);
2411	wait_event_timeout(emac_probe_wait,
2412			   emac_check_deps(dev, deps),
2413			   EMAC_PROBE_DEP_TIMEOUT);
2414	bus_unregister_notifier(&platform_bus_type, &emac_of_bus_notifier);
2415	err = emac_check_deps(dev, deps) ? 0 : -ENODEV;
2416	for (i = 0; i < EMAC_DEP_COUNT; i++) {
2417		of_node_put(deps[i].node);
2418		if (err)
2419			of_dev_put(deps[i].ofdev);
2420	}
2421	if (err == 0) {
2422		dev->mal_dev = deps[EMAC_DEP_MAL_IDX].ofdev;
2423		dev->zmii_dev = deps[EMAC_DEP_ZMII_IDX].ofdev;
2424		dev->rgmii_dev = deps[EMAC_DEP_RGMII_IDX].ofdev;
2425		dev->tah_dev = deps[EMAC_DEP_TAH_IDX].ofdev;
2426		dev->mdio_dev = deps[EMAC_DEP_MDIO_IDX].ofdev;
2427	}
2428	of_dev_put(deps[EMAC_DEP_PREV_IDX].ofdev);
2429	return err;
2430}
2431
2432static int emac_read_uint_prop(struct device_node *np, const char *name,
2433			       u32 *val, int fatal)
2434{
2435	int len;
2436	const u32 *prop = of_get_property(np, name, &len);
2437	if (prop == NULL || len < sizeof(u32)) {
2438		if (fatal)
2439			printk(KERN_ERR "%pOF: missing %s property\n",
2440			       np, name);
2441		return -ENODEV;
2442	}
2443	*val = *prop;
2444	return 0;
2445}
2446
2447static void emac_adjust_link(struct net_device *ndev)
2448{
2449	struct emac_instance *dev = netdev_priv(ndev);
2450	struct phy_device *phy = dev->phy_dev;
2451
2452	dev->phy.autoneg = phy->autoneg;
2453	dev->phy.speed = phy->speed;
2454	dev->phy.duplex = phy->duplex;
2455	dev->phy.pause = phy->pause;
2456	dev->phy.asym_pause = phy->asym_pause;
2457	dev->phy.advertising = phy->advertising;
 
2458}
2459
2460static int emac_mii_bus_read(struct mii_bus *bus, int addr, int regnum)
2461{
2462	int ret = emac_mdio_read(bus->priv, addr, regnum);
2463	/* This is a workaround for powered down ports/phys.
2464	 * In the wild, this was seen on the Cisco Meraki MX60(W).
2465	 * This hardware disables ports as part of the handoff
2466	 * procedure. Accessing the ports will lead to errors
2467	 * (-ETIMEDOUT, -EREMOTEIO) that do more harm than good.
2468	 */
2469	return ret < 0 ? 0xffff : ret;
2470}
2471
2472static int emac_mii_bus_write(struct mii_bus *bus, int addr,
2473			      int regnum, u16 val)
2474{
2475	emac_mdio_write(bus->priv, addr, regnum, val);
2476	return 0;
2477}
2478
2479static int emac_mii_bus_reset(struct mii_bus *bus)
2480{
2481	struct emac_instance *dev = netdev_priv(bus->priv);
2482
2483	return emac_reset(dev);
2484}
2485
2486static int emac_mdio_phy_start_aneg(struct mii_phy *phy,
2487				    struct phy_device *phy_dev)
2488{
2489	phy_dev->autoneg = phy->autoneg;
2490	phy_dev->speed = phy->speed;
2491	phy_dev->duplex = phy->duplex;
2492	phy_dev->advertising = phy->advertising;
 
2493	return phy_start_aneg(phy_dev);
2494}
2495
2496static int emac_mdio_setup_aneg(struct mii_phy *phy, u32 advertise)
2497{
2498	struct net_device *ndev = phy->dev;
2499	struct emac_instance *dev = netdev_priv(ndev);
2500
2501	phy->autoneg = AUTONEG_ENABLE;
2502	phy->advertising = advertise;
2503	return emac_mdio_phy_start_aneg(phy, dev->phy_dev);
2504}
2505
2506static int emac_mdio_setup_forced(struct mii_phy *phy, int speed, int fd)
2507{
2508	struct net_device *ndev = phy->dev;
2509	struct emac_instance *dev = netdev_priv(ndev);
2510
2511	phy->autoneg = AUTONEG_DISABLE;
2512	phy->speed = speed;
2513	phy->duplex = fd;
2514	return emac_mdio_phy_start_aneg(phy, dev->phy_dev);
2515}
2516
2517static int emac_mdio_poll_link(struct mii_phy *phy)
2518{
2519	struct net_device *ndev = phy->dev;
2520	struct emac_instance *dev = netdev_priv(ndev);
2521	int res;
2522
2523	res = phy_read_status(dev->phy_dev);
2524	if (res) {
2525		dev_err(&dev->ofdev->dev, "link update failed (%d).", res);
2526		return ethtool_op_get_link(ndev);
2527	}
2528
2529	return dev->phy_dev->link;
2530}
2531
2532static int emac_mdio_read_link(struct mii_phy *phy)
2533{
2534	struct net_device *ndev = phy->dev;
2535	struct emac_instance *dev = netdev_priv(ndev);
2536	struct phy_device *phy_dev = dev->phy_dev;
2537	int res;
2538
2539	res = phy_read_status(phy_dev);
2540	if (res)
2541		return res;
2542
2543	phy->speed = phy_dev->speed;
2544	phy->duplex = phy_dev->duplex;
2545	phy->pause = phy_dev->pause;
2546	phy->asym_pause = phy_dev->asym_pause;
2547	return 0;
2548}
2549
2550static int emac_mdio_init_phy(struct mii_phy *phy)
2551{
2552	struct net_device *ndev = phy->dev;
2553	struct emac_instance *dev = netdev_priv(ndev);
2554
2555	phy_start(dev->phy_dev);
2556	return phy_init_hw(dev->phy_dev);
2557}
2558
2559static const struct mii_phy_ops emac_dt_mdio_phy_ops = {
2560	.init		= emac_mdio_init_phy,
2561	.setup_aneg	= emac_mdio_setup_aneg,
2562	.setup_forced	= emac_mdio_setup_forced,
2563	.poll_link	= emac_mdio_poll_link,
2564	.read_link	= emac_mdio_read_link,
2565};
2566
2567static int emac_dt_mdio_probe(struct emac_instance *dev)
2568{
2569	struct device_node *mii_np;
2570	int res;
2571
2572	mii_np = of_get_child_by_name(dev->ofdev->dev.of_node, "mdio");
2573	if (!mii_np) {
2574		dev_err(&dev->ofdev->dev, "no mdio definition found.");
2575		return -ENODEV;
2576	}
2577
2578	if (!of_device_is_available(mii_np)) {
2579		res = -ENODEV;
2580		goto put_node;
2581	}
2582
2583	dev->mii_bus = devm_mdiobus_alloc(&dev->ofdev->dev);
2584	if (!dev->mii_bus) {
2585		res = -ENOMEM;
2586		goto put_node;
2587	}
2588
2589	dev->mii_bus->priv = dev->ndev;
2590	dev->mii_bus->parent = dev->ndev->dev.parent;
2591	dev->mii_bus->name = "emac_mdio";
2592	dev->mii_bus->read = &emac_mii_bus_read;
2593	dev->mii_bus->write = &emac_mii_bus_write;
2594	dev->mii_bus->reset = &emac_mii_bus_reset;
2595	snprintf(dev->mii_bus->id, MII_BUS_ID_SIZE, "%s", dev->ofdev->name);
2596	res = of_mdiobus_register(dev->mii_bus, mii_np);
2597	if (res) {
2598		dev_err(&dev->ofdev->dev, "cannot register MDIO bus %s (%d)",
2599			dev->mii_bus->name, res);
2600	}
2601
2602 put_node:
2603	of_node_put(mii_np);
2604	return res;
2605}
2606
2607static int emac_dt_phy_connect(struct emac_instance *dev,
2608			       struct device_node *phy_handle)
2609{
2610	dev->phy.def = devm_kzalloc(&dev->ofdev->dev, sizeof(*dev->phy.def),
2611				    GFP_KERNEL);
2612	if (!dev->phy.def)
2613		return -ENOMEM;
2614
2615	dev->phy_dev = of_phy_connect(dev->ndev, phy_handle, &emac_adjust_link,
2616				      0, dev->phy_mode);
2617	if (!dev->phy_dev) {
2618		dev_err(&dev->ofdev->dev, "failed to connect to PHY.\n");
2619		return -ENODEV;
2620	}
2621
2622	dev->phy.def->phy_id = dev->phy_dev->drv->phy_id;
2623	dev->phy.def->phy_id_mask = dev->phy_dev->drv->phy_id_mask;
2624	dev->phy.def->name = dev->phy_dev->drv->name;
2625	dev->phy.def->ops = &emac_dt_mdio_phy_ops;
2626	dev->phy.features = dev->phy_dev->supported;
 
2627	dev->phy.address = dev->phy_dev->mdio.addr;
2628	dev->phy.mode = dev->phy_dev->interface;
2629	return 0;
2630}
2631
2632static int emac_dt_phy_probe(struct emac_instance *dev)
2633{
2634	struct device_node *np = dev->ofdev->dev.of_node;
2635	struct device_node *phy_handle;
2636	int res = 1;
2637
2638	phy_handle = of_parse_phandle(np, "phy-handle", 0);
2639
2640	if (phy_handle) {
2641		res = emac_dt_mdio_probe(dev);
2642		if (!res) {
2643			res = emac_dt_phy_connect(dev, phy_handle);
2644			if (res)
2645				mdiobus_unregister(dev->mii_bus);
2646		}
2647	}
2648
2649	of_node_put(phy_handle);
2650	return res;
2651}
2652
2653static int emac_init_phy(struct emac_instance *dev)
2654{
2655	struct device_node *np = dev->ofdev->dev.of_node;
2656	struct net_device *ndev = dev->ndev;
2657	u32 phy_map, adv;
2658	int i;
2659
2660	dev->phy.dev = ndev;
2661	dev->phy.mode = dev->phy_mode;
2662
2663	/* PHY-less configuration. */
2664	if ((dev->phy_address == 0xffffffff && dev->phy_map == 0xffffffff) ||
2665	    of_phy_is_fixed_link(np)) {
2666		emac_reset(dev);
2667
2668		/* PHY-less configuration. */
2669		dev->phy.address = -1;
2670		dev->phy.features = SUPPORTED_MII;
2671		if (emac_phy_supports_gige(dev->phy_mode))
2672			dev->phy.features |= SUPPORTED_1000baseT_Full;
2673		else
2674			dev->phy.features |= SUPPORTED_100baseT_Full;
2675		dev->phy.pause = 1;
2676
2677		if (of_phy_is_fixed_link(np)) {
2678			int res = emac_dt_mdio_probe(dev);
2679
2680			if (!res) {
2681				res = of_phy_register_fixed_link(np);
2682				if (res)
2683					mdiobus_unregister(dev->mii_bus);
 
 
 
 
2684			}
2685			return res;
 
2686		}
2687		return 0;
2688	}
2689
2690	mutex_lock(&emac_phy_map_lock);
2691	phy_map = dev->phy_map | busy_phy_map;
2692
2693	DBG(dev, "PHY maps %08x %08x" NL, dev->phy_map, busy_phy_map);
2694
2695	dev->phy.mdio_read = emac_mdio_read;
2696	dev->phy.mdio_write = emac_mdio_write;
2697
2698	/* Enable internal clock source */
2699#ifdef CONFIG_PPC_DCR_NATIVE
2700	if (emac_has_feature(dev, EMAC_FTR_440GX_PHY_CLK_FIX))
2701		dcri_clrset(SDR0, SDR0_MFR, 0, SDR0_MFR_ECS);
2702#endif
2703	/* PHY clock workaround */
2704	emac_rx_clk_tx(dev);
2705
2706	/* Enable internal clock source on 440GX*/
2707#ifdef CONFIG_PPC_DCR_NATIVE
2708	if (emac_has_feature(dev, EMAC_FTR_440GX_PHY_CLK_FIX))
2709		dcri_clrset(SDR0, SDR0_MFR, 0, SDR0_MFR_ECS);
2710#endif
2711	/* Configure EMAC with defaults so we can at least use MDIO
2712	 * This is needed mostly for 440GX
2713	 */
2714	if (emac_phy_gpcs(dev->phy.mode)) {
2715		/* XXX
2716		 * Make GPCS PHY address equal to EMAC index.
2717		 * We probably should take into account busy_phy_map
2718		 * and/or phy_map here.
2719		 *
2720		 * Note that the busy_phy_map is currently global
2721		 * while it should probably be per-ASIC...
2722		 */
2723		dev->phy.gpcs_address = dev->gpcs_address;
2724		if (dev->phy.gpcs_address == 0xffffffff)
2725			dev->phy.address = dev->cell_index;
2726	}
2727
2728	emac_configure(dev);
2729
2730	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII)) {
2731		int res = emac_dt_phy_probe(dev);
2732
2733		switch (res) {
2734		case 1:
2735			/* No phy-handle property configured.
2736			 * Continue with the existing phy probe
2737			 * and setup code.
2738			 */
2739			break;
2740
2741		case 0:
2742			mutex_unlock(&emac_phy_map_lock);
2743			goto init_phy;
2744
2745		default:
2746			mutex_unlock(&emac_phy_map_lock);
2747			dev_err(&dev->ofdev->dev, "failed to attach dt phy (%d).\n",
2748				res);
2749			return res;
2750		}
2751	}
2752
2753	if (dev->phy_address != 0xffffffff)
2754		phy_map = ~(1 << dev->phy_address);
2755
2756	for (i = 0; i < 0x20; phy_map >>= 1, ++i)
2757		if (!(phy_map & 1)) {
2758			int r;
2759			busy_phy_map |= 1 << i;
2760
2761			/* Quick check if there is a PHY at the address */
2762			r = emac_mdio_read(dev->ndev, i, MII_BMCR);
2763			if (r == 0xffff || r < 0)
2764				continue;
2765			if (!emac_mii_phy_probe(&dev->phy, i))
2766				break;
2767		}
2768
2769	/* Enable external clock source */
2770#ifdef CONFIG_PPC_DCR_NATIVE
2771	if (emac_has_feature(dev, EMAC_FTR_440GX_PHY_CLK_FIX))
2772		dcri_clrset(SDR0, SDR0_MFR, SDR0_MFR_ECS, 0);
2773#endif
2774	mutex_unlock(&emac_phy_map_lock);
2775	if (i == 0x20) {
2776		printk(KERN_WARNING "%pOF: can't find PHY!\n", np);
2777		return -ENXIO;
2778	}
2779
2780 init_phy:
2781	/* Init PHY */
2782	if (dev->phy.def->ops->init)
2783		dev->phy.def->ops->init(&dev->phy);
2784
2785	/* Disable any PHY features not supported by the platform */
2786	dev->phy.def->features &= ~dev->phy_feat_exc;
2787	dev->phy.features &= ~dev->phy_feat_exc;
2788
2789	/* Setup initial link parameters */
2790	if (dev->phy.features & SUPPORTED_Autoneg) {
2791		adv = dev->phy.features;
2792		if (!emac_has_feature(dev, EMAC_FTR_NO_FLOW_CONTROL_40x))
2793			adv |= ADVERTISED_Pause | ADVERTISED_Asym_Pause;
2794		/* Restart autonegotiation */
2795		dev->phy.def->ops->setup_aneg(&dev->phy, adv);
2796	} else {
2797		u32 f = dev->phy.def->features;
2798		int speed = SPEED_10, fd = DUPLEX_HALF;
2799
2800		/* Select highest supported speed/duplex */
2801		if (f & SUPPORTED_1000baseT_Full) {
2802			speed = SPEED_1000;
2803			fd = DUPLEX_FULL;
2804		} else if (f & SUPPORTED_1000baseT_Half)
2805			speed = SPEED_1000;
2806		else if (f & SUPPORTED_100baseT_Full) {
2807			speed = SPEED_100;
2808			fd = DUPLEX_FULL;
2809		} else if (f & SUPPORTED_100baseT_Half)
2810			speed = SPEED_100;
2811		else if (f & SUPPORTED_10baseT_Full)
2812			fd = DUPLEX_FULL;
2813
2814		/* Force link parameters */
2815		dev->phy.def->ops->setup_forced(&dev->phy, speed, fd);
2816	}
2817	return 0;
2818}
2819
2820static int emac_init_config(struct emac_instance *dev)
2821{
2822	struct device_node *np = dev->ofdev->dev.of_node;
2823	const void *p;
2824
2825	/* Read config from device-tree */
2826	if (emac_read_uint_prop(np, "mal-device", &dev->mal_ph, 1))
2827		return -ENXIO;
2828	if (emac_read_uint_prop(np, "mal-tx-channel", &dev->mal_tx_chan, 1))
2829		return -ENXIO;
2830	if (emac_read_uint_prop(np, "mal-rx-channel", &dev->mal_rx_chan, 1))
2831		return -ENXIO;
2832	if (emac_read_uint_prop(np, "cell-index", &dev->cell_index, 1))
2833		return -ENXIO;
2834	if (emac_read_uint_prop(np, "max-frame-size", &dev->max_mtu, 0))
2835		dev->max_mtu = ETH_DATA_LEN;
2836	if (emac_read_uint_prop(np, "rx-fifo-size", &dev->rx_fifo_size, 0))
2837		dev->rx_fifo_size = 2048;
2838	if (emac_read_uint_prop(np, "tx-fifo-size", &dev->tx_fifo_size, 0))
2839		dev->tx_fifo_size = 2048;
2840	if (emac_read_uint_prop(np, "rx-fifo-size-gige", &dev->rx_fifo_size_gige, 0))
2841		dev->rx_fifo_size_gige = dev->rx_fifo_size;
2842	if (emac_read_uint_prop(np, "tx-fifo-size-gige", &dev->tx_fifo_size_gige, 0))
2843		dev->tx_fifo_size_gige = dev->tx_fifo_size;
2844	if (emac_read_uint_prop(np, "phy-address", &dev->phy_address, 0))
2845		dev->phy_address = 0xffffffff;
2846	if (emac_read_uint_prop(np, "phy-map", &dev->phy_map, 0))
2847		dev->phy_map = 0xffffffff;
2848	if (emac_read_uint_prop(np, "gpcs-address", &dev->gpcs_address, 0))
2849		dev->gpcs_address = 0xffffffff;
2850	if (emac_read_uint_prop(np->parent, "clock-frequency", &dev->opb_bus_freq, 1))
2851		return -ENXIO;
2852	if (emac_read_uint_prop(np, "tah-device", &dev->tah_ph, 0))
2853		dev->tah_ph = 0;
2854	if (emac_read_uint_prop(np, "tah-channel", &dev->tah_port, 0))
2855		dev->tah_port = 0;
2856	if (emac_read_uint_prop(np, "mdio-device", &dev->mdio_ph, 0))
2857		dev->mdio_ph = 0;
2858	if (emac_read_uint_prop(np, "zmii-device", &dev->zmii_ph, 0))
2859		dev->zmii_ph = 0;
2860	if (emac_read_uint_prop(np, "zmii-channel", &dev->zmii_port, 0))
2861		dev->zmii_port = 0xffffffff;
2862	if (emac_read_uint_prop(np, "rgmii-device", &dev->rgmii_ph, 0))
2863		dev->rgmii_ph = 0;
2864	if (emac_read_uint_prop(np, "rgmii-channel", &dev->rgmii_port, 0))
2865		dev->rgmii_port = 0xffffffff;
2866	if (emac_read_uint_prop(np, "fifo-entry-size", &dev->fifo_entry_size, 0))
2867		dev->fifo_entry_size = 16;
2868	if (emac_read_uint_prop(np, "mal-burst-size", &dev->mal_burst_size, 0))
2869		dev->mal_burst_size = 256;
2870
2871	/* PHY mode needs some decoding */
2872	dev->phy_mode = of_get_phy_mode(np);
2873	if (dev->phy_mode < 0)
2874		dev->phy_mode = PHY_INTERFACE_MODE_NA;
2875
2876	/* Check EMAC version */
2877	if (of_device_is_compatible(np, "ibm,emac4sync")) {
2878		dev->features |= (EMAC_FTR_EMAC4 | EMAC_FTR_EMAC4SYNC);
2879		if (of_device_is_compatible(np, "ibm,emac-460ex") ||
2880		    of_device_is_compatible(np, "ibm,emac-460gt"))
2881			dev->features |= EMAC_FTR_460EX_PHY_CLK_FIX;
2882		if (of_device_is_compatible(np, "ibm,emac-405ex") ||
2883		    of_device_is_compatible(np, "ibm,emac-405exr"))
2884			dev->features |= EMAC_FTR_440EP_PHY_CLK_FIX;
2885		if (of_device_is_compatible(np, "ibm,emac-apm821xx")) {
2886			dev->features |= (EMAC_APM821XX_REQ_JUMBO_FRAME_SIZE |
2887					  EMAC_FTR_APM821XX_NO_HALF_DUPLEX |
2888					  EMAC_FTR_460EX_PHY_CLK_FIX);
2889		}
2890	} else if (of_device_is_compatible(np, "ibm,emac4")) {
2891		dev->features |= EMAC_FTR_EMAC4;
2892		if (of_device_is_compatible(np, "ibm,emac-440gx"))
2893			dev->features |= EMAC_FTR_440GX_PHY_CLK_FIX;
2894	} else {
2895		if (of_device_is_compatible(np, "ibm,emac-440ep") ||
2896		    of_device_is_compatible(np, "ibm,emac-440gr"))
2897			dev->features |= EMAC_FTR_440EP_PHY_CLK_FIX;
2898		if (of_device_is_compatible(np, "ibm,emac-405ez")) {
2899#ifdef CONFIG_IBM_EMAC_NO_FLOW_CTRL
2900			dev->features |= EMAC_FTR_NO_FLOW_CONTROL_40x;
2901#else
2902			printk(KERN_ERR "%pOF: Flow control not disabled!\n",
2903					np);
2904			return -ENXIO;
2905#endif
2906		}
2907
2908	}
2909
2910	/* Fixup some feature bits based on the device tree */
2911	if (of_get_property(np, "has-inverted-stacr-oc", NULL))
2912		dev->features |= EMAC_FTR_STACR_OC_INVERT;
2913	if (of_get_property(np, "has-new-stacr-staopc", NULL))
2914		dev->features |= EMAC_FTR_HAS_NEW_STACR;
2915
2916	/* CAB lacks the appropriate properties */
2917	if (of_device_is_compatible(np, "ibm,emac-axon"))
2918		dev->features |= EMAC_FTR_HAS_NEW_STACR |
2919			EMAC_FTR_STACR_OC_INVERT;
2920
2921	/* Enable TAH/ZMII/RGMII features as found */
2922	if (dev->tah_ph != 0) {
2923#ifdef CONFIG_IBM_EMAC_TAH
2924		dev->features |= EMAC_FTR_HAS_TAH;
2925#else
2926		printk(KERN_ERR "%pOF: TAH support not enabled !\n", np);
2927		return -ENXIO;
2928#endif
2929	}
2930
2931	if (dev->zmii_ph != 0) {
2932#ifdef CONFIG_IBM_EMAC_ZMII
2933		dev->features |= EMAC_FTR_HAS_ZMII;
2934#else
2935		printk(KERN_ERR "%pOF: ZMII support not enabled !\n", np);
2936		return -ENXIO;
2937#endif
2938	}
2939
2940	if (dev->rgmii_ph != 0) {
2941#ifdef CONFIG_IBM_EMAC_RGMII
2942		dev->features |= EMAC_FTR_HAS_RGMII;
2943#else
2944		printk(KERN_ERR "%pOF: RGMII support not enabled !\n", np);
2945		return -ENXIO;
2946#endif
2947	}
2948
2949	/* Read MAC-address */
2950	p = of_get_property(np, "local-mac-address", NULL);
2951	if (p == NULL) {
2952		printk(KERN_ERR "%pOF: Can't find local-mac-address property\n",
2953		       np);
2954		return -ENXIO;
2955	}
2956	memcpy(dev->ndev->dev_addr, p, ETH_ALEN);
2957
2958	/* IAHT and GAHT filter parameterization */
2959	if (emac_has_feature(dev, EMAC_FTR_EMAC4SYNC)) {
2960		dev->xaht_slots_shift = EMAC4SYNC_XAHT_SLOTS_SHIFT;
2961		dev->xaht_width_shift = EMAC4SYNC_XAHT_WIDTH_SHIFT;
2962	} else {
2963		dev->xaht_slots_shift = EMAC4_XAHT_SLOTS_SHIFT;
2964		dev->xaht_width_shift = EMAC4_XAHT_WIDTH_SHIFT;
2965	}
2966
 
 
 
 
2967	DBG(dev, "features     : 0x%08x / 0x%08x\n", dev->features, EMAC_FTRS_POSSIBLE);
2968	DBG(dev, "tx_fifo_size : %d (%d gige)\n", dev->tx_fifo_size, dev->tx_fifo_size_gige);
2969	DBG(dev, "rx_fifo_size : %d (%d gige)\n", dev->rx_fifo_size, dev->rx_fifo_size_gige);
2970	DBG(dev, "max_mtu      : %d\n", dev->max_mtu);
2971	DBG(dev, "OPB freq     : %d\n", dev->opb_bus_freq);
2972
2973	return 0;
2974}
2975
2976static const struct net_device_ops emac_netdev_ops = {
2977	.ndo_open		= emac_open,
2978	.ndo_stop		= emac_close,
2979	.ndo_get_stats		= emac_stats,
2980	.ndo_set_rx_mode	= emac_set_multicast_list,
2981	.ndo_do_ioctl		= emac_ioctl,
2982	.ndo_tx_timeout		= emac_tx_timeout,
2983	.ndo_validate_addr	= eth_validate_addr,
2984	.ndo_set_mac_address	= emac_set_mac_address,
2985	.ndo_start_xmit		= emac_start_xmit,
2986};
2987
2988static const struct net_device_ops emac_gige_netdev_ops = {
2989	.ndo_open		= emac_open,
2990	.ndo_stop		= emac_close,
2991	.ndo_get_stats		= emac_stats,
2992	.ndo_set_rx_mode	= emac_set_multicast_list,
2993	.ndo_do_ioctl		= emac_ioctl,
2994	.ndo_tx_timeout		= emac_tx_timeout,
2995	.ndo_validate_addr	= eth_validate_addr,
2996	.ndo_set_mac_address	= emac_set_mac_address,
2997	.ndo_start_xmit		= emac_start_xmit_sg,
2998	.ndo_change_mtu		= emac_change_mtu,
2999};
3000
3001static int emac_probe(struct platform_device *ofdev)
3002{
3003	struct net_device *ndev;
3004	struct emac_instance *dev;
3005	struct device_node *np = ofdev->dev.of_node;
3006	struct device_node **blist = NULL;
3007	int err, i;
3008
3009	/* Skip unused/unwired EMACS.  We leave the check for an unused
3010	 * property here for now, but new flat device trees should set a
3011	 * status property to "disabled" instead.
3012	 */
3013	if (of_get_property(np, "unused", NULL) || !of_device_is_available(np))
3014		return -ENODEV;
3015
3016	/* Find ourselves in the bootlist if we are there */
3017	for (i = 0; i < EMAC_BOOT_LIST_SIZE; i++)
3018		if (emac_boot_list[i] == np)
3019			blist = &emac_boot_list[i];
3020
3021	/* Allocate our net_device structure */
3022	err = -ENOMEM;
3023	ndev = alloc_etherdev(sizeof(struct emac_instance));
3024	if (!ndev)
3025		goto err_gone;
3026
3027	dev = netdev_priv(ndev);
3028	dev->ndev = ndev;
3029	dev->ofdev = ofdev;
3030	dev->blist = blist;
3031	SET_NETDEV_DEV(ndev, &ofdev->dev);
3032
3033	/* Initialize some embedded data structures */
3034	mutex_init(&dev->mdio_lock);
3035	mutex_init(&dev->link_lock);
3036	spin_lock_init(&dev->lock);
3037	INIT_WORK(&dev->reset_work, emac_reset_work);
3038
3039	/* Init various config data based on device-tree */
3040	err = emac_init_config(dev);
3041	if (err)
3042		goto err_free;
3043
3044	/* Get interrupts. EMAC irq is mandatory, WOL irq is optional */
3045	dev->emac_irq = irq_of_parse_and_map(np, 0);
3046	dev->wol_irq = irq_of_parse_and_map(np, 1);
3047	if (!dev->emac_irq) {
3048		printk(KERN_ERR "%pOF: Can't map main interrupt\n", np);
3049		err = -ENODEV;
3050		goto err_free;
3051	}
3052	ndev->irq = dev->emac_irq;
3053
3054	/* Map EMAC regs */
3055	// TODO : platform_get_resource() and devm_ioremap_resource()
3056	dev->emacp = of_iomap(np, 0);
3057	if (dev->emacp == NULL) {
3058		printk(KERN_ERR "%pOF: Can't map device registers!\n", np);
3059		err = -ENOMEM;
3060		goto err_irq_unmap;
3061	}
3062
3063	/* Wait for dependent devices */
3064	err = emac_wait_deps(dev);
3065	if (err) {
3066		printk(KERN_ERR
3067		       "%pOF: Timeout waiting for dependent devices\n", np);
3068		/*  display more info about what's missing ? */
3069		goto err_reg_unmap;
3070	}
3071	dev->mal = platform_get_drvdata(dev->mal_dev);
3072	if (dev->mdio_dev != NULL)
3073		dev->mdio_instance = platform_get_drvdata(dev->mdio_dev);
3074
3075	/* Register with MAL */
3076	dev->commac.ops = &emac_commac_ops;
3077	dev->commac.dev = dev;
3078	dev->commac.tx_chan_mask = MAL_CHAN_MASK(dev->mal_tx_chan);
3079	dev->commac.rx_chan_mask = MAL_CHAN_MASK(dev->mal_rx_chan);
3080	err = mal_register_commac(dev->mal, &dev->commac);
3081	if (err) {
3082		printk(KERN_ERR "%pOF: failed to register with mal %pOF!\n",
3083		       np, dev->mal_dev->dev.of_node);
3084		goto err_rel_deps;
3085	}
3086	dev->rx_skb_size = emac_rx_skb_size(ndev->mtu);
3087	dev->rx_sync_size = emac_rx_sync_size(ndev->mtu);
3088
3089	/* Get pointers to BD rings */
3090	dev->tx_desc =
3091	    dev->mal->bd_virt + mal_tx_bd_offset(dev->mal, dev->mal_tx_chan);
3092	dev->rx_desc =
3093	    dev->mal->bd_virt + mal_rx_bd_offset(dev->mal, dev->mal_rx_chan);
3094
3095	DBG(dev, "tx_desc %p" NL, dev->tx_desc);
3096	DBG(dev, "rx_desc %p" NL, dev->rx_desc);
3097
3098	/* Clean rings */
3099	memset(dev->tx_desc, 0, NUM_TX_BUFF * sizeof(struct mal_descriptor));
3100	memset(dev->rx_desc, 0, NUM_RX_BUFF * sizeof(struct mal_descriptor));
3101	memset(dev->tx_skb, 0, NUM_TX_BUFF * sizeof(struct sk_buff *));
3102	memset(dev->rx_skb, 0, NUM_RX_BUFF * sizeof(struct sk_buff *));
3103
3104	/* Attach to ZMII, if needed */
3105	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII) &&
3106	    (err = zmii_attach(dev->zmii_dev, dev->zmii_port, &dev->phy_mode)) != 0)
3107		goto err_unreg_commac;
3108
3109	/* Attach to RGMII, if needed */
3110	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII) &&
3111	    (err = rgmii_attach(dev->rgmii_dev, dev->rgmii_port, dev->phy_mode)) != 0)
3112		goto err_detach_zmii;
3113
3114	/* Attach to TAH, if needed */
3115	if (emac_has_feature(dev, EMAC_FTR_HAS_TAH) &&
3116	    (err = tah_attach(dev->tah_dev, dev->tah_port)) != 0)
3117		goto err_detach_rgmii;
3118
3119	/* Set some link defaults before we can find out real parameters */
3120	dev->phy.speed = SPEED_100;
3121	dev->phy.duplex = DUPLEX_FULL;
3122	dev->phy.autoneg = AUTONEG_DISABLE;
3123	dev->phy.pause = dev->phy.asym_pause = 0;
3124	dev->stop_timeout = STOP_TIMEOUT_100;
3125	INIT_DELAYED_WORK(&dev->link_work, emac_link_timer);
3126
3127	/* Some SoCs like APM821xx does not support Half Duplex mode. */
3128	if (emac_has_feature(dev, EMAC_FTR_APM821XX_NO_HALF_DUPLEX)) {
3129		dev->phy_feat_exc = (SUPPORTED_1000baseT_Half |
3130				     SUPPORTED_100baseT_Half |
3131				     SUPPORTED_10baseT_Half);
3132	}
3133
3134	/* Find PHY if any */
3135	err = emac_init_phy(dev);
3136	if (err != 0)
3137		goto err_detach_tah;
3138
3139	if (dev->tah_dev) {
3140		ndev->hw_features = NETIF_F_IP_CSUM | NETIF_F_SG;
3141		ndev->features |= ndev->hw_features | NETIF_F_RXCSUM;
3142	}
3143	ndev->watchdog_timeo = 5 * HZ;
3144	if (emac_phy_supports_gige(dev->phy_mode)) {
3145		ndev->netdev_ops = &emac_gige_netdev_ops;
3146		dev->commac.ops = &emac_commac_sg_ops;
3147	} else
3148		ndev->netdev_ops = &emac_netdev_ops;
3149	ndev->ethtool_ops = &emac_ethtool_ops;
3150
3151	/* MTU range: 46 - 1500 or whatever is in OF */
3152	ndev->min_mtu = EMAC_MIN_MTU;
3153	ndev->max_mtu = dev->max_mtu;
3154
3155	netif_carrier_off(ndev);
3156
3157	err = register_netdev(ndev);
3158	if (err) {
3159		printk(KERN_ERR "%pOF: failed to register net device (%d)!\n",
3160		       np, err);
3161		goto err_detach_tah;
3162	}
3163
3164	/* Set our drvdata last as we don't want them visible until we are
3165	 * fully initialized
3166	 */
3167	wmb();
3168	platform_set_drvdata(ofdev, dev);
3169
3170	/* There's a new kid in town ! Let's tell everybody */
3171	wake_up_all(&emac_probe_wait);
3172
3173
3174	printk(KERN_INFO "%s: EMAC-%d %pOF, MAC %pM\n",
3175	       ndev->name, dev->cell_index, np, ndev->dev_addr);
3176
3177	if (dev->phy_mode == PHY_INTERFACE_MODE_SGMII)
3178		printk(KERN_NOTICE "%s: in SGMII mode\n", ndev->name);
3179
3180	if (dev->phy.address >= 0)
3181		printk("%s: found %s PHY (0x%02x)\n", ndev->name,
3182		       dev->phy.def->name, dev->phy.address);
3183
3184	/* Life is good */
3185	return 0;
3186
3187	/* I have a bad feeling about this ... */
3188
3189 err_detach_tah:
3190	if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
3191		tah_detach(dev->tah_dev, dev->tah_port);
3192 err_detach_rgmii:
3193	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
3194		rgmii_detach(dev->rgmii_dev, dev->rgmii_port);
3195 err_detach_zmii:
3196	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
3197		zmii_detach(dev->zmii_dev, dev->zmii_port);
3198 err_unreg_commac:
3199	mal_unregister_commac(dev->mal, &dev->commac);
3200 err_rel_deps:
3201	emac_put_deps(dev);
3202 err_reg_unmap:
3203	iounmap(dev->emacp);
3204 err_irq_unmap:
3205	if (dev->wol_irq)
3206		irq_dispose_mapping(dev->wol_irq);
3207	if (dev->emac_irq)
3208		irq_dispose_mapping(dev->emac_irq);
3209 err_free:
3210	free_netdev(ndev);
3211 err_gone:
3212	/* if we were on the bootlist, remove us as we won't show up and
3213	 * wake up all waiters to notify them in case they were waiting
3214	 * on us
3215	 */
3216	if (blist) {
3217		*blist = NULL;
3218		wake_up_all(&emac_probe_wait);
3219	}
3220	return err;
3221}
3222
3223static int emac_remove(struct platform_device *ofdev)
3224{
3225	struct emac_instance *dev = platform_get_drvdata(ofdev);
3226
3227	DBG(dev, "remove" NL);
3228
3229	unregister_netdev(dev->ndev);
3230
3231	cancel_work_sync(&dev->reset_work);
3232
3233	if (emac_has_feature(dev, EMAC_FTR_HAS_TAH))
3234		tah_detach(dev->tah_dev, dev->tah_port);
3235	if (emac_has_feature(dev, EMAC_FTR_HAS_RGMII))
3236		rgmii_detach(dev->rgmii_dev, dev->rgmii_port);
3237	if (emac_has_feature(dev, EMAC_FTR_HAS_ZMII))
3238		zmii_detach(dev->zmii_dev, dev->zmii_port);
3239
3240	if (dev->phy_dev)
3241		phy_disconnect(dev->phy_dev);
3242
3243	if (dev->mii_bus)
3244		mdiobus_unregister(dev->mii_bus);
3245
3246	busy_phy_map &= ~(1 << dev->phy.address);
3247	DBG(dev, "busy_phy_map now %#x" NL, busy_phy_map);
3248
3249	mal_unregister_commac(dev->mal, &dev->commac);
3250	emac_put_deps(dev);
3251
3252	iounmap(dev->emacp);
3253
3254	if (dev->wol_irq)
3255		irq_dispose_mapping(dev->wol_irq);
3256	if (dev->emac_irq)
3257		irq_dispose_mapping(dev->emac_irq);
3258
3259	free_netdev(dev->ndev);
3260
3261	return 0;
3262}
3263
3264/* XXX Features in here should be replaced by properties... */
3265static const struct of_device_id emac_match[] =
3266{
3267	{
3268		.type		= "network",
3269		.compatible	= "ibm,emac",
3270	},
3271	{
3272		.type		= "network",
3273		.compatible	= "ibm,emac4",
3274	},
3275	{
3276		.type		= "network",
3277		.compatible	= "ibm,emac4sync",
3278	},
3279	{},
3280};
3281MODULE_DEVICE_TABLE(of, emac_match);
3282
3283static struct platform_driver emac_driver = {
3284	.driver = {
3285		.name = "emac",
3286		.of_match_table = emac_match,
3287	},
3288	.probe = emac_probe,
3289	.remove = emac_remove,
3290};
3291
3292static void __init emac_make_bootlist(void)
3293{
3294	struct device_node *np = NULL;
3295	int j, max, i = 0;
3296	int cell_indices[EMAC_BOOT_LIST_SIZE];
3297
3298	/* Collect EMACs */
3299	while((np = of_find_all_nodes(np)) != NULL) {
3300		const u32 *idx;
3301
3302		if (of_match_node(emac_match, np) == NULL)
3303			continue;
3304		if (of_get_property(np, "unused", NULL))
3305			continue;
3306		idx = of_get_property(np, "cell-index", NULL);
3307		if (idx == NULL)
3308			continue;
3309		cell_indices[i] = *idx;
3310		emac_boot_list[i++] = of_node_get(np);
3311		if (i >= EMAC_BOOT_LIST_SIZE) {
3312			of_node_put(np);
3313			break;
3314		}
3315	}
3316	max = i;
3317
3318	/* Bubble sort them (doh, what a creative algorithm :-) */
3319	for (i = 0; max > 1 && (i < (max - 1)); i++)
3320		for (j = i; j < max; j++) {
3321			if (cell_indices[i] > cell_indices[j]) {
3322				swap(emac_boot_list[i], emac_boot_list[j]);
3323				swap(cell_indices[i], cell_indices[j]);
3324			}
3325		}
3326}
3327
3328static int __init emac_init(void)
3329{
3330	int rc;
3331
3332	printk(KERN_INFO DRV_DESC ", version " DRV_VERSION "\n");
3333
3334	/* Build EMAC boot list */
3335	emac_make_bootlist();
3336
3337	/* Init submodules */
3338	rc = mal_init();
3339	if (rc)
3340		goto err;
3341	rc = zmii_init();
3342	if (rc)
3343		goto err_mal;
3344	rc = rgmii_init();
3345	if (rc)
3346		goto err_zmii;
3347	rc = tah_init();
3348	if (rc)
3349		goto err_rgmii;
3350	rc = platform_driver_register(&emac_driver);
3351	if (rc)
3352		goto err_tah;
3353
3354	return 0;
3355
3356 err_tah:
3357	tah_exit();
3358 err_rgmii:
3359	rgmii_exit();
3360 err_zmii:
3361	zmii_exit();
3362 err_mal:
3363	mal_exit();
3364 err:
3365	return rc;
3366}
3367
3368static void __exit emac_exit(void)
3369{
3370	int i;
3371
3372	platform_driver_unregister(&emac_driver);
3373
3374	tah_exit();
3375	rgmii_exit();
3376	zmii_exit();
3377	mal_exit();
3378
3379	/* Destroy EMAC boot list */
3380	for (i = 0; i < EMAC_BOOT_LIST_SIZE; i++)
3381		of_node_put(emac_boot_list[i]);
3382}
3383
3384module_init(emac_init);
3385module_exit(emac_exit);