mac-fec.c 11.8 KB
Newer Older
1 2 3
/*
 * Freescale Ethernet controllers
 *
V
Vitaly Bordug 已提交
4
 * Copyright (c) 2005 Intracom S.A.
5 6
 *  by Pantelis Antoniou <panto@intracom.gr>
 *
V
Vitaly Bordug 已提交
7
 * 2005 (c) MontaVista Software, Inc.
8 9
 * Vitaly Bordug <vbordug@ru.mvista.com>
 *
V
Vitaly Bordug 已提交
10 11
 * This file is licensed under the terms of the GNU General Public License
 * version 2. This program is licensed "as is" without any warranty of any
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
 * kind, whether express or implied.
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/ptrace.h>
#include <linux/errno.h>
#include <linux/ioport.h>
#include <linux/interrupt.h>
#include <linux/delay.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
#include <linux/spinlock.h>
#include <linux/mii.h>
#include <linux/ethtool.h>
#include <linux/bitops.h>
#include <linux/fs.h>
M
Marcelo Tosatti 已提交
32
#include <linux/platform_device.h>
33
#include <linux/of_address.h>
34
#include <linux/of_device.h>
35
#include <linux/of_irq.h>
36
#include <linux/gfp.h>
37 38 39 40 41 42 43

#include <asm/irq.h>
#include <asm/uaccess.h>

#ifdef CONFIG_8xx
#include <asm/8xx_immap.h>
#include <asm/pgtable.h>
44
#include <asm/cpm1.h>
45 46 47
#endif

#include "fs_enet.h"
48
#include "fec.h"
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78

/*************************************************/

#if defined(CONFIG_CPM1)
/* for a CPM1 __raw_xxx's are sufficient */
#define __fs_out32(addr, x)	__raw_writel(x, addr)
#define __fs_out16(addr, x)	__raw_writew(x, addr)
#define __fs_in32(addr)	__raw_readl(addr)
#define __fs_in16(addr)	__raw_readw(addr)
#else
/* for others play it safe */
#define __fs_out32(addr, x)	out_be32(addr, x)
#define __fs_out16(addr, x)	out_be16(addr, x)
#define __fs_in32(addr)	in_be32(addr)
#define __fs_in16(addr)	in_be16(addr)
#endif

/* write */
#define FW(_fecp, _reg, _v) __fs_out32(&(_fecp)->fec_ ## _reg, (_v))

/* read */
#define FR(_fecp, _reg)	__fs_in32(&(_fecp)->fec_ ## _reg)

/* set bits */
#define FS(_fecp, _reg, _v) FW(_fecp, _reg, FR(_fecp, _reg) | (_v))

/* clear bits */
#define FC(_fecp, _reg, _v) FW(_fecp, _reg, FR(_fecp, _reg) & ~(_v))

/*
79
 * Delay to wait for FEC reset command to complete (in us)
80 81 82
 */
#define FEC_RESET_DELAY		50

83
static int whack_reset(struct fec __iomem *fecp)
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
{
	int i;

	FW(fecp, ecntrl, FEC_ECNTRL_PINMUX | FEC_ECNTRL_RESET);
	for (i = 0; i < FEC_RESET_DELAY; i++) {
		if ((FR(fecp, ecntrl) & FEC_ECNTRL_RESET) == 0)
			return 0;	/* OK */
		udelay(1);
	}

	return -1;
}

static int do_pd_setup(struct fs_enet_private *fep)
{
99
	struct platform_device *ofdev = to_platform_device(fep->dev);
100

101
	fep->interrupt = irq_of_parse_and_map(ofdev->dev.of_node, 0);
102
	if (!fep->interrupt)
103 104
		return -EINVAL;

105
	fep->fec.fecp = of_iomap(ofdev->dev.of_node, 0);
106 107 108 109
	if (!fep->fcc.fccp)
		return -EINVAL;

	return 0;
110 111
}

112 113
#define FEC_NAPI_EVENT_MSK	(FEC_ENET_RXF | FEC_ENET_RXB | FEC_ENET_TXF)
#define FEC_EVENT		(FEC_ENET_RXF | FEC_ENET_TXF)
114 115 116 117 118 119 120 121 122 123 124 125 126
#define FEC_ERR_EVENT_MSK	(FEC_ENET_HBERR | FEC_ENET_BABR | \
				 FEC_ENET_BABT | FEC_ENET_EBERR)

static int setup_data(struct net_device *dev)
{
	struct fs_enet_private *fep = netdev_priv(dev);

	if (do_pd_setup(fep) != 0)
		return -EINVAL;

	fep->fec.hthi = 0;
	fep->fec.htlo = 0;

127 128
	fep->ev_napi = FEC_NAPI_EVENT_MSK;
	fep->ev = FEC_EVENT;
129 130 131 132 133 134 135 136 137
	fep->ev_err = FEC_ERR_EVENT_MSK;

	return 0;
}

static int allocate_bd(struct net_device *dev)
{
	struct fs_enet_private *fep = netdev_priv(dev);
	const struct fs_platform_info *fpi = fep->fpi;
V
Vitaly Bordug 已提交
138

S
Scott Wood 已提交
139
	fep->ring_base = (void __force __iomem *)dma_alloc_coherent(fep->dev,
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
					    (fpi->tx_ring + fpi->rx_ring) *
					    sizeof(cbd_t), &fep->ring_mem_addr,
					    GFP_KERNEL);
	if (fep->ring_base == NULL)
		return -ENOMEM;

	return 0;
}

static void free_bd(struct net_device *dev)
{
	struct fs_enet_private *fep = netdev_priv(dev);
	const struct fs_platform_info *fpi = fep->fpi;

	if(fep->ring_base)
		dma_free_coherent(fep->dev, (fpi->tx_ring + fpi->rx_ring)
					* sizeof(cbd_t),
S
Scott Wood 已提交
157
					(void __force *)fep->ring_base,
158 159 160 161 162 163 164 165 166 167 168
					fep->ring_mem_addr);
}

static void cleanup_data(struct net_device *dev)
{
	/* nothing */
}

static void set_promiscuous_mode(struct net_device *dev)
{
	struct fs_enet_private *fep = netdev_priv(dev);
169
	struct fec __iomem *fecp = fep->fec.fecp;
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216

	FS(fecp, r_cntrl, FEC_RCNTRL_PROM);
}

static void set_multicast_start(struct net_device *dev)
{
	struct fs_enet_private *fep = netdev_priv(dev);

	fep->fec.hthi = 0;
	fep->fec.htlo = 0;
}

static void set_multicast_one(struct net_device *dev, const u8 *mac)
{
	struct fs_enet_private *fep = netdev_priv(dev);
	int temp, hash_index, i, j;
	u32 crc, csrVal;
	u8 byte, msb;

	crc = 0xffffffff;
	for (i = 0; i < 6; i++) {
		byte = mac[i];
		for (j = 0; j < 8; j++) {
			msb = crc >> 31;
			crc <<= 1;
			if (msb ^ (byte & 0x1))
				crc ^= FEC_CRC_POLY;
			byte >>= 1;
		}
	}

	temp = (crc & 0x3f) >> 1;
	hash_index = ((temp & 0x01) << 4) |
		     ((temp & 0x02) << 2) |
		     ((temp & 0x04)) |
		     ((temp & 0x08) >> 2) |
		     ((temp & 0x10) >> 4);
	csrVal = 1 << hash_index;
	if (crc & 1)
		fep->fec.hthi |= csrVal;
	else
		fep->fec.htlo |= csrVal;
}

static void set_multicast_finish(struct net_device *dev)
{
	struct fs_enet_private *fep = netdev_priv(dev);
217
	struct fec __iomem *fecp = fep->fec.fecp;
218 219 220

	/* if all multi or too many multicasts; just enable all */
	if ((dev->flags & IFF_ALLMULTI) != 0 ||
221
	    netdev_mc_count(dev) > FEC_MAX_MULTICAST_ADDRS) {
222 223 224 225 226
		fep->fec.hthi = 0xffffffffU;
		fep->fec.htlo = 0xffffffffU;
	}

	FC(fecp, r_cntrl, FEC_RCNTRL_PROM);
227 228
	FW(fecp, grp_hash_table_high, fep->fec.hthi);
	FW(fecp, grp_hash_table_low, fep->fec.htlo);
229 230 231 232
}

static void set_multicast_list(struct net_device *dev)
{
233
	struct netdev_hw_addr *ha;
234 235 236

	if ((dev->flags & IFF_PROMISC) == 0) {
		set_multicast_start(dev);
237 238
		netdev_for_each_mc_addr(ha, dev)
			set_multicast_one(dev, ha->addr);
239 240 241 242 243 244 245 246
		set_multicast_finish(dev);
	} else
		set_promiscuous_mode(dev);
}

static void restart(struct net_device *dev)
{
	struct fs_enet_private *fep = netdev_priv(dev);
247
	struct fec __iomem *fecp = fep->fec.fecp;
248 249 250 251 252
	const struct fs_platform_info *fpi = fep->fpi;
	dma_addr_t rx_bd_base_phys, tx_bd_base_phys;
	int r;
	u32 addrhi, addrlo;

253
	struct mii_bus *mii = dev->phydev->mdio.bus;
254 255
	struct fec_info* fec_inf = mii->priv;

256 257
	r = whack_reset(fep->fec.fecp);
	if (r != 0)
258
		dev_err(fep->dev, "FEC Reset FAILED!\n");
259
	/*
260
	 * Set station address.
261 262 263 264 265 266 267 268 269 270 271
	 */
	addrhi = ((u32) dev->dev_addr[0] << 24) |
		 ((u32) dev->dev_addr[1] << 16) |
		 ((u32) dev->dev_addr[2] <<  8) |
		  (u32) dev->dev_addr[3];
	addrlo = ((u32) dev->dev_addr[4] << 24) |
		 ((u32) dev->dev_addr[5] << 16);
	FW(fecp, addr_low, addrhi);
	FW(fecp, addr_high, addrlo);

	/*
V
Vitaly Bordug 已提交
272
	 * Reset all multicast.
273
	 */
274 275
	FW(fecp, grp_hash_table_high, fep->fec.hthi);
	FW(fecp, grp_hash_table_low, fep->fec.htlo);
276 277

	/*
V
Vitaly Bordug 已提交
278
	 * Set maximum receive buffer size.
279 280
	 */
	FW(fecp, r_buff_size, PKT_MAXBLR_SIZE);
281 282 283
#ifdef CONFIG_FS_ENET_MPC5121_FEC
	FW(fecp, r_cntrl, PKT_MAXBUF_SIZE << 16);
#else
284
	FW(fecp, r_hash, PKT_MAXBUF_SIZE);
285
#endif
286 287 288 289 290 291

	/* get physical address */
	rx_bd_base_phys = fep->ring_mem_addr;
	tx_bd_base_phys = rx_bd_base_phys + sizeof(cbd_t) * fpi->rx_ring;

	/*
V
Vitaly Bordug 已提交
292
	 * Set receive and transmit descriptor base.
293 294 295 296 297 298 299
	 */
	FW(fecp, r_des_start, rx_bd_base_phys);
	FW(fecp, x_des_start, tx_bd_base_phys);

	fs_init_bds(dev);

	/*
V
Vitaly Bordug 已提交
300
	 * Enable big endian and don't care about SDMA FC.
301
	 */
302 303 304
#ifdef CONFIG_FS_ENET_MPC5121_FEC
	FS(fecp, dma_control, 0xC0000000);
#else
305
	FW(fecp, fun_code, 0x78000000);
306
#endif
307 308

	/*
309
	 * Set MII speed.
310
	 */
311
	FW(fecp, mii_speed, fec_inf->mii_speed);
312 313

	/*
314
	 * Clear any outstanding interrupt.
315 316
	 */
	FW(fecp, ievent, 0xffc0);
317
#ifndef CONFIG_FS_ENET_MPC5121_FEC
318
	FW(fecp, ivec, (virq_to_hw(fep->interrupt) / 2) << 29);
319 320

	FW(fecp, r_cntrl, FEC_RCNTRL_MII_MODE);	/* MII enable */
321 322
#else
	/*
323
	 * Only set MII/RMII mode - do not touch maximum frame length
324 325
	 * configured before.
	 */
326 327
	FS(fecp, r_cntrl, fpi->use_rmii ?
			FEC_RCNTRL_RMII_MODE : FEC_RCNTRL_MII_MODE);
328
#endif
329
	/*
330
	 * adjust to duplex mode
331
	 */
332
	if (dev->phydev->duplex) {
333 334 335 336 337 338 339
		FC(fecp, r_cntrl, FEC_RCNTRL_DRT);
		FS(fecp, x_cntrl, FEC_TCNTRL_FDEN);	/* FD enable */
	} else {
		FS(fecp, r_cntrl, FEC_RCNTRL_DRT);
		FC(fecp, x_cntrl, FEC_TCNTRL_FDEN);	/* FD disable */
	}

340 341 342
	/* Restore multicast and promiscuous settings */
	set_multicast_list(dev);

343
	/*
V
Vitaly Bordug 已提交
344
	 * Enable interrupts we wish to service.
345 346 347 348 349
	 */
	FW(fecp, imask, FEC_ENET_TXF | FEC_ENET_TXB |
	   FEC_ENET_RXF | FEC_ENET_RXB);

	/*
V
Vitaly Bordug 已提交
350
	 * And last, enable the transmit and receive processing.
351 352 353 354 355 356 357 358
	 */
	FW(fecp, ecntrl, FEC_ECNTRL_PINMUX | FEC_ECNTRL_ETHER_EN);
	FW(fecp, r_des_active, 0x01000000);
}

static void stop(struct net_device *dev)
{
	struct fs_enet_private *fep = netdev_priv(dev);
359
	const struct fs_platform_info *fpi = fep->fpi;
360
	struct fec __iomem *fecp = fep->fec.fecp;
361

362
	struct fec_info *feci = dev->phydev->mdio.bus->priv;
363

364 365 366 367 368 369 370 371 372 373 374
	int i;

	if ((FR(fecp, ecntrl) & FEC_ECNTRL_ETHER_EN) == 0)
		return;		/* already down */

	FW(fecp, x_cntrl, 0x01);	/* Graceful transmit stop */
	for (i = 0; ((FR(fecp, ievent) & 0x10000000) == 0) &&
	     i < FEC_RESET_DELAY; i++)
		udelay(1);

	if (i == FEC_RESET_DELAY)
375
		dev_warn(fep->dev, "FEC timeout on graceful transmit stop\n");
376
	/*
V
Vitaly Bordug 已提交
377
	 * Disable FEC. Let only MII interrupts.
378 379 380 381 382 383 384
	 */
	FW(fecp, imask, 0);
	FC(fecp, ecntrl, FEC_ECNTRL_ETHER_EN);

	fs_cleanup_bds(dev);

	/* shut down FEC1? that's where the mii bus is */
385
	if (fpi->has_phy) {
386 387 388
		FS(fecp, r_cntrl, fpi->use_rmii ?
				FEC_RCNTRL_RMII_MODE :
				FEC_RCNTRL_MII_MODE);	/* MII/RMII enable */
389 390
		FS(fecp, ecntrl, FEC_ECNTRL_PINMUX | FEC_ECNTRL_ETHER_EN);
		FW(fecp, ievent, FEC_ENET_MII);
391
		FW(fecp, mii_speed, feci->mii_speed);
392 393 394
	}
}

395
static void napi_clear_event_fs(struct net_device *dev)
396 397
{
	struct fs_enet_private *fep = netdev_priv(dev);
398
	struct fec __iomem *fecp = fep->fec.fecp;
399

400
	FW(fecp, ievent, FEC_NAPI_EVENT_MSK);
401 402
}

403
static void napi_enable_fs(struct net_device *dev)
404 405
{
	struct fs_enet_private *fep = netdev_priv(dev);
406
	struct fec __iomem *fecp = fep->fec.fecp;
407

408
	FS(fecp, imask, FEC_NAPI_EVENT_MSK);
409 410
}

411
static void napi_disable_fs(struct net_device *dev)
412 413
{
	struct fs_enet_private *fep = netdev_priv(dev);
414
	struct fec __iomem *fecp = fep->fec.fecp;
415

416
	FC(fecp, imask, FEC_NAPI_EVENT_MSK);
L
LEROY Christophe 已提交
417 418
}

419 420 421
static void rx_bd_done(struct net_device *dev)
{
	struct fs_enet_private *fep = netdev_priv(dev);
422
	struct fec __iomem *fecp = fep->fec.fecp;
423 424 425 426 427 428 429

	FW(fecp, r_des_active, 0x01000000);
}

static void tx_kickstart(struct net_device *dev)
{
	struct fs_enet_private *fep = netdev_priv(dev);
430
	struct fec __iomem *fecp = fep->fec.fecp;
431 432 433 434 435 436 437

	FW(fecp, x_des_active, 0x01000000);
}

static u32 get_int_events(struct net_device *dev)
{
	struct fs_enet_private *fep = netdev_priv(dev);
438
	struct fec __iomem *fecp = fep->fec.fecp;
439 440 441 442 443 444 445

	return FR(fecp, ievent) & FR(fecp, imask);
}

static void clear_int_events(struct net_device *dev, u32 int_events)
{
	struct fs_enet_private *fep = netdev_priv(dev);
446
	struct fec __iomem *fecp = fep->fec.fecp;
447 448 449 450 451 452

	FW(fecp, ievent, int_events);
}

static void ev_error(struct net_device *dev, u32 int_events)
{
453 454 455
	struct fs_enet_private *fep = netdev_priv(dev);

	dev_warn(fep->dev, "FEC ERROR(s) 0x%x\n", int_events);
456 457
}

S
Scott Wood 已提交
458
static int get_regs(struct net_device *dev, void *p, int *sizep)
459 460 461
{
	struct fs_enet_private *fep = netdev_priv(dev);

462
	if (*sizep < sizeof(struct fec))
463 464
		return -EINVAL;

465
	memcpy_fromio(p, fep->fec.fecp, sizeof(struct fec));
466 467 468 469

	return 0;
}

S
Scott Wood 已提交
470
static int get_regs_len(struct net_device *dev)
471
{
472
	return sizeof(struct fec);
473 474
}

S
Scott Wood 已提交
475
static void tx_restart(struct net_device *dev)
476 477 478 479 480 481 482 483 484 485 486 487
{
	/* nothing */
}

/*************************************************************************/

const struct fs_ops fs_fec_ops = {
	.setup_data		= setup_data,
	.cleanup_data		= cleanup_data,
	.set_multicast_list	= set_multicast_list,
	.restart		= restart,
	.stop			= stop,
488 489 490
	.napi_clear_event	= napi_clear_event_fs,
	.napi_enable		= napi_enable_fs,
	.napi_disable		= napi_disable_fs,
491 492 493 494 495 496 497 498 499 500 501 502
	.rx_bd_done		= rx_bd_done,
	.tx_kickstart		= tx_kickstart,
	.get_int_events		= get_int_events,
	.clear_int_events	= clear_int_events,
	.ev_error		= ev_error,
	.get_regs		= get_regs,
	.get_regs_len		= get_regs_len,
	.tx_restart		= tx_restart,
	.allocate_bd		= allocate_bd,
	.free_bd		= free_bd,
};