Linux Audio

Check our new training course

Loading...
v4.17
 
   1/*
   2 * Driver for Gigabit Ethernet adapters based on the Session Layer
   3 * Interface (SLIC) technology by Alacritech. The driver does not
   4 * support the hardware acceleration features provided by these cards.
   5 *
   6 * Copyright (C) 2016 Lino Sanfilippo <LinoSanfilippo@gmx.de>
   7 *
   8 * This program is free software; you can redistribute it and/or modify
   9 * it under the terms of the GNU General Public License as published by
  10 * the Free Software Foundation; either version 2 of the License.
  11 *
  12 * This program is distributed in the hope that it will be useful,
  13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15 * GNU General Public License for more details.
  16 *
  17 */
  18
  19#include <linux/kernel.h>
  20#include <linux/module.h>
  21#include <linux/pci.h>
  22#include <linux/netdevice.h>
  23#include <linux/etherdevice.h>
  24#include <linux/if_ether.h>
  25#include <linux/crc32.h>
  26#include <linux/dma-mapping.h>
  27#include <linux/ethtool.h>
  28#include <linux/mii.h>
  29#include <linux/interrupt.h>
  30#include <linux/delay.h>
  31#include <linux/firmware.h>
  32#include <linux/list.h>
  33#include <linux/u64_stats_sync.h>
  34
  35#include "slic.h"
  36
  37#define DRV_NAME			"slicoss"
  38#define DRV_VERSION			"1.0"
  39
  40static const struct pci_device_id slic_id_tbl[] = {
  41	{ PCI_DEVICE(PCI_VENDOR_ID_ALACRITECH,
  42		     PCI_DEVICE_ID_ALACRITECH_MOJAVE) },
  43	{ PCI_DEVICE(PCI_VENDOR_ID_ALACRITECH,
  44		     PCI_DEVICE_ID_ALACRITECH_OASIS) },
  45	{ 0 }
  46};
  47
  48static const char slic_stats_strings[][ETH_GSTRING_LEN] = {
  49	"rx_packets",
  50	"rx_bytes",
  51	"rx_multicasts",
  52	"rx_errors",
  53	"rx_buff_miss",
  54	"rx_tp_csum",
  55	"rx_tp_oflow",
  56	"rx_tp_hlen",
  57	"rx_ip_csum",
  58	"rx_ip_len",
  59	"rx_ip_hdr_len",
  60	"rx_early",
  61	"rx_buff_oflow",
  62	"rx_lcode",
  63	"rx_drbl",
  64	"rx_crc",
  65	"rx_oflow_802",
  66	"rx_uflow_802",
  67	"tx_packets",
  68	"tx_bytes",
  69	"tx_carrier",
  70	"tx_dropped",
  71	"irq_errs",
  72};
  73
  74static inline int slic_next_queue_idx(unsigned int idx, unsigned int qlen)
  75{
  76	return (idx + 1) & (qlen - 1);
  77}
  78
  79static inline int slic_get_free_queue_descs(unsigned int put_idx,
  80					    unsigned int done_idx,
  81					    unsigned int qlen)
  82{
  83	if (put_idx >= done_idx)
  84		return (qlen - (put_idx - done_idx) - 1);
  85	return (done_idx - put_idx - 1);
  86}
  87
  88static unsigned int slic_next_compl_idx(struct slic_device *sdev)
  89{
  90	struct slic_stat_queue *stq = &sdev->stq;
  91	unsigned int active = stq->active_array;
  92	struct slic_stat_desc *descs;
  93	struct slic_stat_desc *stat;
  94	unsigned int idx;
  95
  96	descs = stq->descs[active];
  97	stat = &descs[stq->done_idx];
  98
  99	if (!stat->status)
 100		return SLIC_INVALID_STAT_DESC_IDX;
 101
 102	idx = (le32_to_cpu(stat->hnd) & 0xffff) - 1;
 103	/* reset desc */
 104	stat->hnd = 0;
 105	stat->status = 0;
 106
 107	stq->done_idx = slic_next_queue_idx(stq->done_idx, stq->len);
 108	/* check for wraparound */
 109	if (!stq->done_idx) {
 110		dma_addr_t paddr = stq->paddr[active];
 111
 112		slic_write(sdev, SLIC_REG_RBAR, lower_32_bits(paddr) |
 113						stq->len);
 114		/* make sure new status descriptors are immediately available */
 115		slic_flush_write(sdev);
 116		active++;
 117		active &= (SLIC_NUM_STAT_DESC_ARRAYS - 1);
 118		stq->active_array = active;
 119	}
 120	return idx;
 121}
 122
 123static unsigned int slic_get_free_tx_descs(struct slic_tx_queue *txq)
 124{
 125	/* ensure tail idx is updated */
 126	smp_mb();
 127	return slic_get_free_queue_descs(txq->put_idx, txq->done_idx, txq->len);
 128}
 129
 130static unsigned int slic_get_free_rx_descs(struct slic_rx_queue *rxq)
 131{
 132	return slic_get_free_queue_descs(rxq->put_idx, rxq->done_idx, rxq->len);
 133}
 134
 135static void slic_clear_upr_list(struct slic_upr_list *upr_list)
 136{
 137	struct slic_upr *upr;
 138	struct slic_upr *tmp;
 139
 140	spin_lock_bh(&upr_list->lock);
 141	list_for_each_entry_safe(upr, tmp, &upr_list->list, list) {
 142		list_del(&upr->list);
 143		kfree(upr);
 144	}
 145	upr_list->pending = false;
 146	spin_unlock_bh(&upr_list->lock);
 147}
 148
 149static void slic_start_upr(struct slic_device *sdev, struct slic_upr *upr)
 150{
 151	u32 reg;
 152
 153	reg = (upr->type == SLIC_UPR_CONFIG) ? SLIC_REG_RCONFIG :
 154					       SLIC_REG_LSTAT;
 155	slic_write(sdev, reg, lower_32_bits(upr->paddr));
 156	slic_flush_write(sdev);
 157}
 158
 159static void slic_queue_upr(struct slic_device *sdev, struct slic_upr *upr)
 160{
 161	struct slic_upr_list *upr_list = &sdev->upr_list;
 162	bool pending;
 163
 164	spin_lock_bh(&upr_list->lock);
 165	pending = upr_list->pending;
 166	INIT_LIST_HEAD(&upr->list);
 167	list_add_tail(&upr->list, &upr_list->list);
 168	upr_list->pending = true;
 169	spin_unlock_bh(&upr_list->lock);
 170
 171	if (!pending)
 172		slic_start_upr(sdev, upr);
 173}
 174
 175static struct slic_upr *slic_dequeue_upr(struct slic_device *sdev)
 176{
 177	struct slic_upr_list *upr_list = &sdev->upr_list;
 178	struct slic_upr *next_upr = NULL;
 179	struct slic_upr *upr = NULL;
 180
 181	spin_lock_bh(&upr_list->lock);
 182	if (!list_empty(&upr_list->list)) {
 183		upr = list_first_entry(&upr_list->list, struct slic_upr, list);
 184		list_del(&upr->list);
 185
 186		if (list_empty(&upr_list->list))
 187			upr_list->pending = false;
 188		else
 189			next_upr = list_first_entry(&upr_list->list,
 190						    struct slic_upr, list);
 191	}
 192	spin_unlock_bh(&upr_list->lock);
 193	/* trigger processing of the next upr in list */
 194	if (next_upr)
 195		slic_start_upr(sdev, next_upr);
 196
 197	return upr;
 198}
 199
 200static int slic_new_upr(struct slic_device *sdev, unsigned int type,
 201			dma_addr_t paddr)
 202{
 203	struct slic_upr *upr;
 204
 205	upr = kmalloc(sizeof(*upr), GFP_ATOMIC);
 206	if (!upr)
 207		return -ENOMEM;
 208	upr->type = type;
 209	upr->paddr = paddr;
 210
 211	slic_queue_upr(sdev, upr);
 212
 213	return 0;
 214}
 215
 216static void slic_set_mcast_bit(u64 *mcmask, unsigned char const *addr)
 217{
 218	u64 mask = *mcmask;
 219	u8 crc;
 220	/* Get the CRC polynomial for the mac address: we use bits 1-8 (lsb),
 221	 * bitwise reversed, msb (= lsb bit 0 before bitrev) is automatically
 222	 * discarded.
 223	 */
 224	crc = ether_crc(ETH_ALEN, addr) >> 23;
 225	 /* we only have space on the SLIC for 64 entries */
 226	crc &= 0x3F;
 227	mask |= (u64)1 << crc;
 228	*mcmask = mask;
 229}
 230
 231/* must be called with link_lock held */
 232static void slic_configure_rcv(struct slic_device *sdev)
 233{
 234	u32 val;
 235
 236	val = SLIC_GRCR_RESET | SLIC_GRCR_ADDRAEN | SLIC_GRCR_RCVEN |
 237	      SLIC_GRCR_HASHSIZE << SLIC_GRCR_HASHSIZE_SHIFT | SLIC_GRCR_RCVBAD;
 238
 239	if (sdev->duplex == DUPLEX_FULL)
 240		val |= SLIC_GRCR_CTLEN;
 241
 242	if (sdev->promisc)
 243		val |= SLIC_GRCR_RCVALL;
 244
 245	slic_write(sdev, SLIC_REG_WRCFG, val);
 246}
 247
 248/* must be called with link_lock held */
 249static void slic_configure_xmt(struct slic_device *sdev)
 250{
 251	u32 val;
 252
 253	val = SLIC_GXCR_RESET | SLIC_GXCR_XMTEN;
 254
 255	if (sdev->duplex == DUPLEX_FULL)
 256		val |= SLIC_GXCR_PAUSEEN;
 257
 258	slic_write(sdev, SLIC_REG_WXCFG, val);
 259}
 260
 261/* must be called with link_lock held */
 262static void slic_configure_mac(struct slic_device *sdev)
 263{
 264	u32 val;
 265
 266	if (sdev->speed == SPEED_1000) {
 267		val = SLIC_GMCR_GAPBB_1000 << SLIC_GMCR_GAPBB_SHIFT |
 268		      SLIC_GMCR_GAPR1_1000 << SLIC_GMCR_GAPR1_SHIFT |
 269		      SLIC_GMCR_GAPR2_1000 << SLIC_GMCR_GAPR2_SHIFT |
 270		      SLIC_GMCR_GBIT; /* enable GMII */
 271	} else {
 272		val = SLIC_GMCR_GAPBB_100 << SLIC_GMCR_GAPBB_SHIFT |
 273		      SLIC_GMCR_GAPR1_100 << SLIC_GMCR_GAPR1_SHIFT |
 274		      SLIC_GMCR_GAPR2_100 << SLIC_GMCR_GAPR2_SHIFT;
 275	}
 276
 277	if (sdev->duplex == DUPLEX_FULL)
 278		val |= SLIC_GMCR_FULLD;
 279
 280	slic_write(sdev, SLIC_REG_WMCFG, val);
 281}
 282
 283static void slic_configure_link_locked(struct slic_device *sdev, int speed,
 284				       unsigned int duplex)
 285{
 286	struct net_device *dev = sdev->netdev;
 287
 288	if (sdev->speed == speed && sdev->duplex == duplex)
 289		return;
 290
 291	sdev->speed = speed;
 292	sdev->duplex = duplex;
 293
 294	if (sdev->speed == SPEED_UNKNOWN) {
 295		if (netif_carrier_ok(dev))
 296			netif_carrier_off(dev);
 297	} else {
 298		/* (re)configure link settings */
 299		slic_configure_mac(sdev);
 300		slic_configure_xmt(sdev);
 301		slic_configure_rcv(sdev);
 302		slic_flush_write(sdev);
 303
 304		if (!netif_carrier_ok(dev))
 305			netif_carrier_on(dev);
 306	}
 307}
 308
 309static void slic_configure_link(struct slic_device *sdev, int speed,
 310				unsigned int duplex)
 311{
 312	spin_lock_bh(&sdev->link_lock);
 313	slic_configure_link_locked(sdev, speed, duplex);
 314	spin_unlock_bh(&sdev->link_lock);
 315}
 316
 317static void slic_set_rx_mode(struct net_device *dev)
 318{
 319	struct slic_device *sdev = netdev_priv(dev);
 320	struct netdev_hw_addr *hwaddr;
 321	bool set_promisc;
 322	u64 mcmask;
 323
 324	if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) {
 325		/* Turn on all multicast addresses. We have to do this for
 326		 * promiscuous mode as well as ALLMCAST mode (it saves the
 327		 * microcode from having to keep state about the MAC
 328		 * configuration).
 329		 */
 330		mcmask = ~(u64)0;
 331	} else  {
 332		mcmask = 0;
 333
 334		netdev_for_each_mc_addr(hwaddr, dev) {
 335			slic_set_mcast_bit(&mcmask, hwaddr->addr);
 336		}
 337	}
 338
 339	slic_write(sdev, SLIC_REG_MCASTLOW, lower_32_bits(mcmask));
 340	slic_write(sdev, SLIC_REG_MCASTHIGH, upper_32_bits(mcmask));
 341
 342	set_promisc = !!(dev->flags & IFF_PROMISC);
 343
 344	spin_lock_bh(&sdev->link_lock);
 345	if (sdev->promisc != set_promisc) {
 346		sdev->promisc = set_promisc;
 347		slic_configure_rcv(sdev);
 348		/* make sure writes to receiver cant leak out of the lock */
 349		mmiowb();
 350	}
 351	spin_unlock_bh(&sdev->link_lock);
 352}
 353
 354static void slic_xmit_complete(struct slic_device *sdev)
 355{
 356	struct slic_tx_queue *txq = &sdev->txq;
 357	struct net_device *dev = sdev->netdev;
 358	struct slic_tx_buffer *buff;
 359	unsigned int frames = 0;
 360	unsigned int bytes = 0;
 361	unsigned int idx;
 362
 363	/* Limit processing to SLIC_MAX_TX_COMPLETIONS frames to avoid that new
 364	 * completions during processing keeps the loop running endlessly.
 365	 */
 366	do {
 367		idx = slic_next_compl_idx(sdev);
 368		if (idx == SLIC_INVALID_STAT_DESC_IDX)
 369			break;
 370
 371		txq->done_idx = idx;
 372		buff = &txq->txbuffs[idx];
 373
 374		if (unlikely(!buff->skb)) {
 375			netdev_warn(dev,
 376				    "no skb found for desc idx %i\n", idx);
 377			continue;
 378		}
 379		dma_unmap_single(&sdev->pdev->dev,
 380				 dma_unmap_addr(buff, map_addr),
 381				 dma_unmap_len(buff, map_len), DMA_TO_DEVICE);
 382
 383		bytes += buff->skb->len;
 384		frames++;
 385
 386		dev_kfree_skb_any(buff->skb);
 387		buff->skb = NULL;
 388	} while (frames < SLIC_MAX_TX_COMPLETIONS);
 389	/* make sure xmit sees the new value for done_idx */
 390	smp_wmb();
 391
 392	u64_stats_update_begin(&sdev->stats.syncp);
 393	sdev->stats.tx_bytes += bytes;
 394	sdev->stats.tx_packets += frames;
 395	u64_stats_update_end(&sdev->stats.syncp);
 396
 397	netif_tx_lock(dev);
 398	if (netif_queue_stopped(dev) &&
 399	    (slic_get_free_tx_descs(txq) >= SLIC_MIN_TX_WAKEUP_DESCS))
 400		netif_wake_queue(dev);
 401	netif_tx_unlock(dev);
 402}
 403
 404static void slic_refill_rx_queue(struct slic_device *sdev, gfp_t gfp)
 405{
 406	const unsigned int ALIGN_MASK = SLIC_RX_BUFF_ALIGN - 1;
 407	unsigned int maplen = SLIC_RX_BUFF_SIZE;
 408	struct slic_rx_queue *rxq = &sdev->rxq;
 409	struct net_device *dev = sdev->netdev;
 410	struct slic_rx_buffer *buff;
 411	struct slic_rx_desc *desc;
 412	unsigned int misalign;
 413	unsigned int offset;
 414	struct sk_buff *skb;
 415	dma_addr_t paddr;
 416
 417	while (slic_get_free_rx_descs(rxq) > SLIC_MAX_REQ_RX_DESCS) {
 418		skb = alloc_skb(maplen + ALIGN_MASK, gfp);
 419		if (!skb)
 420			break;
 421
 422		paddr = dma_map_single(&sdev->pdev->dev, skb->data, maplen,
 423				       DMA_FROM_DEVICE);
 424		if (dma_mapping_error(&sdev->pdev->dev, paddr)) {
 425			netdev_err(dev, "mapping rx packet failed\n");
 426			/* drop skb */
 427			dev_kfree_skb_any(skb);
 428			break;
 429		}
 430		/* ensure head buffer descriptors are 256 byte aligned */
 431		offset = 0;
 432		misalign = paddr & ALIGN_MASK;
 433		if (misalign) {
 434			offset = SLIC_RX_BUFF_ALIGN - misalign;
 435			skb_reserve(skb, offset);
 436		}
 437		/* the HW expects dma chunks for descriptor + frame data */
 438		desc = (struct slic_rx_desc *)skb->data;
 439		/* temporarily sync descriptor for CPU to clear status */
 440		dma_sync_single_for_cpu(&sdev->pdev->dev, paddr,
 441					offset + sizeof(*desc),
 442					DMA_FROM_DEVICE);
 443		desc->status = 0;
 444		/* return it to HW again */
 445		dma_sync_single_for_device(&sdev->pdev->dev, paddr,
 446					   offset + sizeof(*desc),
 447					   DMA_FROM_DEVICE);
 448
 449		buff = &rxq->rxbuffs[rxq->put_idx];
 450		buff->skb = skb;
 451		dma_unmap_addr_set(buff, map_addr, paddr);
 452		dma_unmap_len_set(buff, map_len, maplen);
 453		buff->addr_offset = offset;
 454		/* complete write to descriptor before it is handed to HW */
 455		wmb();
 456		/* head buffer descriptors are placed immediately before skb */
 457		slic_write(sdev, SLIC_REG_HBAR, lower_32_bits(paddr) + offset);
 458		rxq->put_idx = slic_next_queue_idx(rxq->put_idx, rxq->len);
 459	}
 460}
 461
 462static void slic_handle_frame_error(struct slic_device *sdev,
 463				    struct sk_buff *skb)
 464{
 465	struct slic_stats *stats = &sdev->stats;
 466
 467	if (sdev->model == SLIC_MODEL_OASIS) {
 468		struct slic_rx_info_oasis *info;
 469		u32 status_b;
 470		u32 status;
 471
 472		info = (struct slic_rx_info_oasis *)skb->data;
 473		status = le32_to_cpu(info->frame_status);
 474		status_b = le32_to_cpu(info->frame_status_b);
 475		/* transport layer */
 476		if (status_b & SLIC_VRHSTATB_TPCSUM)
 477			SLIC_INC_STATS_COUNTER(stats, rx_tpcsum);
 478		if (status & SLIC_VRHSTAT_TPOFLO)
 479			SLIC_INC_STATS_COUNTER(stats, rx_tpoflow);
 480		if (status_b & SLIC_VRHSTATB_TPHLEN)
 481			SLIC_INC_STATS_COUNTER(stats, rx_tphlen);
 482		/* ip layer */
 483		if (status_b & SLIC_VRHSTATB_IPCSUM)
 484			SLIC_INC_STATS_COUNTER(stats, rx_ipcsum);
 485		if (status_b & SLIC_VRHSTATB_IPLERR)
 486			SLIC_INC_STATS_COUNTER(stats, rx_iplen);
 487		if (status_b & SLIC_VRHSTATB_IPHERR)
 488			SLIC_INC_STATS_COUNTER(stats, rx_iphlen);
 489		/* link layer */
 490		if (status_b & SLIC_VRHSTATB_RCVE)
 491			SLIC_INC_STATS_COUNTER(stats, rx_early);
 492		if (status_b & SLIC_VRHSTATB_BUFF)
 493			SLIC_INC_STATS_COUNTER(stats, rx_buffoflow);
 494		if (status_b & SLIC_VRHSTATB_CODE)
 495			SLIC_INC_STATS_COUNTER(stats, rx_lcode);
 496		if (status_b & SLIC_VRHSTATB_DRBL)
 497			SLIC_INC_STATS_COUNTER(stats, rx_drbl);
 498		if (status_b & SLIC_VRHSTATB_CRC)
 499			SLIC_INC_STATS_COUNTER(stats, rx_crc);
 500		if (status & SLIC_VRHSTAT_802OE)
 501			SLIC_INC_STATS_COUNTER(stats, rx_oflow802);
 502		if (status_b & SLIC_VRHSTATB_802UE)
 503			SLIC_INC_STATS_COUNTER(stats, rx_uflow802);
 504		if (status_b & SLIC_VRHSTATB_CARRE)
 505			SLIC_INC_STATS_COUNTER(stats, tx_carrier);
 506	} else { /* mojave */
 507		struct slic_rx_info_mojave *info;
 508		u32 status;
 509
 510		info = (struct slic_rx_info_mojave *)skb->data;
 511		status = le32_to_cpu(info->frame_status);
 512		/* transport layer */
 513		if (status & SLIC_VGBSTAT_XPERR) {
 514			u32 xerr = status >> SLIC_VGBSTAT_XERRSHFT;
 515
 516			if (xerr == SLIC_VGBSTAT_XCSERR)
 517				SLIC_INC_STATS_COUNTER(stats, rx_tpcsum);
 518			if (xerr == SLIC_VGBSTAT_XUFLOW)
 519				SLIC_INC_STATS_COUNTER(stats, rx_tpoflow);
 520			if (xerr == SLIC_VGBSTAT_XHLEN)
 521				SLIC_INC_STATS_COUNTER(stats, rx_tphlen);
 522		}
 523		/* ip layer */
 524		if (status & SLIC_VGBSTAT_NETERR) {
 525			u32 nerr = status >> SLIC_VGBSTAT_NERRSHFT &
 526				   SLIC_VGBSTAT_NERRMSK;
 527
 528			if (nerr == SLIC_VGBSTAT_NCSERR)
 529				SLIC_INC_STATS_COUNTER(stats, rx_ipcsum);
 530			if (nerr == SLIC_VGBSTAT_NUFLOW)
 531				SLIC_INC_STATS_COUNTER(stats, rx_iplen);
 532			if (nerr == SLIC_VGBSTAT_NHLEN)
 533				SLIC_INC_STATS_COUNTER(stats, rx_iphlen);
 534		}
 535		/* link layer */
 536		if (status & SLIC_VGBSTAT_LNKERR) {
 537			u32 lerr = status & SLIC_VGBSTAT_LERRMSK;
 538
 539			if (lerr == SLIC_VGBSTAT_LDEARLY)
 540				SLIC_INC_STATS_COUNTER(stats, rx_early);
 541			if (lerr == SLIC_VGBSTAT_LBOFLO)
 542				SLIC_INC_STATS_COUNTER(stats, rx_buffoflow);
 543			if (lerr == SLIC_VGBSTAT_LCODERR)
 544				SLIC_INC_STATS_COUNTER(stats, rx_lcode);
 545			if (lerr == SLIC_VGBSTAT_LDBLNBL)
 546				SLIC_INC_STATS_COUNTER(stats, rx_drbl);
 547			if (lerr == SLIC_VGBSTAT_LCRCERR)
 548				SLIC_INC_STATS_COUNTER(stats, rx_crc);
 549			if (lerr == SLIC_VGBSTAT_LOFLO)
 550				SLIC_INC_STATS_COUNTER(stats, rx_oflow802);
 551			if (lerr == SLIC_VGBSTAT_LUFLO)
 552				SLIC_INC_STATS_COUNTER(stats, rx_uflow802);
 553		}
 554	}
 555	SLIC_INC_STATS_COUNTER(stats, rx_errors);
 556}
 557
 558static void slic_handle_receive(struct slic_device *sdev, unsigned int todo,
 559				unsigned int *done)
 560{
 561	struct slic_rx_queue *rxq = &sdev->rxq;
 562	struct net_device *dev = sdev->netdev;
 563	struct slic_rx_buffer *buff;
 564	struct slic_rx_desc *desc;
 565	unsigned int frames = 0;
 566	unsigned int bytes = 0;
 567	struct sk_buff *skb;
 568	u32 status;
 569	u32 len;
 570
 571	while (todo && (rxq->done_idx != rxq->put_idx)) {
 572		buff = &rxq->rxbuffs[rxq->done_idx];
 573
 574		skb = buff->skb;
 575		if (!skb)
 576			break;
 577
 578		desc = (struct slic_rx_desc *)skb->data;
 579
 580		dma_sync_single_for_cpu(&sdev->pdev->dev,
 581					dma_unmap_addr(buff, map_addr),
 582					buff->addr_offset + sizeof(*desc),
 583					DMA_FROM_DEVICE);
 584
 585		status = le32_to_cpu(desc->status);
 586		if (!(status & SLIC_IRHDDR_SVALID)) {
 587			dma_sync_single_for_device(&sdev->pdev->dev,
 588						   dma_unmap_addr(buff,
 589								  map_addr),
 590						   buff->addr_offset +
 591						   sizeof(*desc),
 592						   DMA_FROM_DEVICE);
 593			break;
 594		}
 595
 596		buff->skb = NULL;
 597
 598		dma_unmap_single(&sdev->pdev->dev,
 599				 dma_unmap_addr(buff, map_addr),
 600				 dma_unmap_len(buff, map_len),
 601				 DMA_FROM_DEVICE);
 602
 603		/* skip rx descriptor that is placed before the frame data */
 604		skb_reserve(skb, SLIC_RX_BUFF_HDR_SIZE);
 605
 606		if (unlikely(status & SLIC_IRHDDR_ERR)) {
 607			slic_handle_frame_error(sdev, skb);
 608			dev_kfree_skb_any(skb);
 609		} else {
 610			struct ethhdr *eh = (struct ethhdr *)skb->data;
 611
 612			if (is_multicast_ether_addr(eh->h_dest))
 613				SLIC_INC_STATS_COUNTER(&sdev->stats, rx_mcasts);
 614
 615			len = le32_to_cpu(desc->length) & SLIC_IRHDDR_FLEN_MSK;
 616			skb_put(skb, len);
 617			skb->protocol = eth_type_trans(skb, dev);
 618			skb->ip_summed = CHECKSUM_UNNECESSARY;
 619
 620			napi_gro_receive(&sdev->napi, skb);
 621
 622			bytes += len;
 623			frames++;
 624		}
 625		rxq->done_idx = slic_next_queue_idx(rxq->done_idx, rxq->len);
 626		todo--;
 627	}
 628
 629	u64_stats_update_begin(&sdev->stats.syncp);
 630	sdev->stats.rx_bytes += bytes;
 631	sdev->stats.rx_packets += frames;
 632	u64_stats_update_end(&sdev->stats.syncp);
 633
 634	slic_refill_rx_queue(sdev, GFP_ATOMIC);
 635}
 636
 637static void slic_handle_link_irq(struct slic_device *sdev)
 638{
 639	struct slic_shmem *sm = &sdev->shmem;
 640	struct slic_shmem_data *sm_data = sm->shmem_data;
 641	unsigned int duplex;
 642	int speed;
 643	u32 link;
 644
 645	link = le32_to_cpu(sm_data->link);
 646
 647	if (link & SLIC_GIG_LINKUP) {
 648		if (link & SLIC_GIG_SPEED_1000)
 649			speed = SPEED_1000;
 650		else if (link & SLIC_GIG_SPEED_100)
 651			speed = SPEED_100;
 652		else
 653			speed = SPEED_10;
 654
 655		duplex = (link & SLIC_GIG_FULLDUPLEX) ? DUPLEX_FULL :
 656							DUPLEX_HALF;
 657	} else {
 658		duplex = DUPLEX_UNKNOWN;
 659		speed = SPEED_UNKNOWN;
 660	}
 661	slic_configure_link(sdev, speed, duplex);
 662}
 663
 664static void slic_handle_upr_irq(struct slic_device *sdev, u32 irqs)
 665{
 666	struct slic_upr *upr;
 667
 668	/* remove upr that caused this irq (always the first entry in list) */
 669	upr = slic_dequeue_upr(sdev);
 670	if (!upr) {
 671		netdev_warn(sdev->netdev, "no upr found on list\n");
 672		return;
 673	}
 674
 675	if (upr->type == SLIC_UPR_LSTAT) {
 676		if (unlikely(irqs & SLIC_ISR_UPCERR_MASK)) {
 677			/* try again */
 678			slic_queue_upr(sdev, upr);
 679			return;
 680		}
 681		slic_handle_link_irq(sdev);
 682	}
 683	kfree(upr);
 684}
 685
 686static int slic_handle_link_change(struct slic_device *sdev)
 687{
 688	return slic_new_upr(sdev, SLIC_UPR_LSTAT, sdev->shmem.link_paddr);
 689}
 690
 691static void slic_handle_err_irq(struct slic_device *sdev, u32 isr)
 692{
 693	struct slic_stats *stats = &sdev->stats;
 694
 695	if (isr & SLIC_ISR_RMISS)
 696		SLIC_INC_STATS_COUNTER(stats, rx_buff_miss);
 697	if (isr & SLIC_ISR_XDROP)
 698		SLIC_INC_STATS_COUNTER(stats, tx_dropped);
 699	if (!(isr & (SLIC_ISR_RMISS | SLIC_ISR_XDROP)))
 700		SLIC_INC_STATS_COUNTER(stats, irq_errs);
 701}
 702
 703static void slic_handle_irq(struct slic_device *sdev, u32 isr,
 704			    unsigned int todo, unsigned int *done)
 705{
 706	if (isr & SLIC_ISR_ERR)
 707		slic_handle_err_irq(sdev, isr);
 708
 709	if (isr & SLIC_ISR_LEVENT)
 710		slic_handle_link_change(sdev);
 711
 712	if (isr & SLIC_ISR_UPC_MASK)
 713		slic_handle_upr_irq(sdev, isr);
 714
 715	if (isr & SLIC_ISR_RCV)
 716		slic_handle_receive(sdev, todo, done);
 717
 718	if (isr & SLIC_ISR_CMD)
 719		slic_xmit_complete(sdev);
 720}
 721
 722static int slic_poll(struct napi_struct *napi, int todo)
 723{
 724	struct slic_device *sdev = container_of(napi, struct slic_device, napi);
 725	struct slic_shmem *sm = &sdev->shmem;
 726	struct slic_shmem_data *sm_data = sm->shmem_data;
 727	u32 isr = le32_to_cpu(sm_data->isr);
 728	int done = 0;
 729
 730	slic_handle_irq(sdev, isr, todo, &done);
 731
 732	if (done < todo) {
 733		napi_complete_done(napi, done);
 734		/* reenable irqs */
 735		sm_data->isr = 0;
 736		/* make sure sm_data->isr is cleard before irqs are reenabled */
 737		wmb();
 738		slic_write(sdev, SLIC_REG_ISR, 0);
 739		slic_flush_write(sdev);
 740	}
 741
 742	return done;
 743}
 744
 745static irqreturn_t slic_irq(int irq, void *dev_id)
 746{
 747	struct slic_device *sdev = dev_id;
 748	struct slic_shmem *sm = &sdev->shmem;
 749	struct slic_shmem_data *sm_data = sm->shmem_data;
 750
 751	slic_write(sdev, SLIC_REG_ICR, SLIC_ICR_INT_MASK);
 752	slic_flush_write(sdev);
 753	/* make sure sm_data->isr is read after ICR_INT_MASK is set */
 754	wmb();
 755
 756	if (!sm_data->isr) {
 757		dma_rmb();
 758		/* spurious interrupt */
 759		slic_write(sdev, SLIC_REG_ISR, 0);
 760		slic_flush_write(sdev);
 761		return IRQ_NONE;
 762	}
 763
 764	napi_schedule_irqoff(&sdev->napi);
 765
 766	return IRQ_HANDLED;
 767}
 768
 769static void slic_card_reset(struct slic_device *sdev)
 770{
 771	u16 cmd;
 772
 773	slic_write(sdev, SLIC_REG_RESET, SLIC_RESET_MAGIC);
 774	/* flush write by means of config space */
 775	pci_read_config_word(sdev->pdev, PCI_COMMAND, &cmd);
 776	mdelay(1);
 777}
 778
 779static int slic_init_stat_queue(struct slic_device *sdev)
 780{
 781	const unsigned int DESC_ALIGN_MASK = SLIC_STATS_DESC_ALIGN - 1;
 782	struct slic_stat_queue *stq = &sdev->stq;
 783	struct slic_stat_desc *descs;
 784	unsigned int misalign;
 785	unsigned int offset;
 786	dma_addr_t paddr;
 787	size_t size;
 788	int err;
 789	int i;
 790
 791	stq->len = SLIC_NUM_STAT_DESCS;
 792	stq->active_array = 0;
 793	stq->done_idx = 0;
 794
 795	size = stq->len * sizeof(*descs) + DESC_ALIGN_MASK;
 796
 797	for (i = 0; i < SLIC_NUM_STAT_DESC_ARRAYS; i++) {
 798		descs = dma_zalloc_coherent(&sdev->pdev->dev, size, &paddr,
 799					    GFP_KERNEL);
 800		if (!descs) {
 801			netdev_err(sdev->netdev,
 802				   "failed to allocate status descriptors\n");
 803			err = -ENOMEM;
 804			goto free_descs;
 805		}
 806		/* ensure correct alignment */
 807		offset = 0;
 808		misalign = paddr & DESC_ALIGN_MASK;
 809		if (misalign) {
 810			offset = SLIC_STATS_DESC_ALIGN - misalign;
 811			descs += offset;
 812			paddr += offset;
 813		}
 814
 815		slic_write(sdev, SLIC_REG_RBAR, lower_32_bits(paddr) |
 816						stq->len);
 817		stq->descs[i] = descs;
 818		stq->paddr[i] = paddr;
 819		stq->addr_offset[i] = offset;
 820	}
 821
 822	stq->mem_size = size;
 823
 824	return 0;
 825
 826free_descs:
 827	while (i--) {
 828		dma_free_coherent(&sdev->pdev->dev, stq->mem_size,
 829				  stq->descs[i] - stq->addr_offset[i],
 830				  stq->paddr[i] - stq->addr_offset[i]);
 831	}
 832
 833	return err;
 834}
 835
 836static void slic_free_stat_queue(struct slic_device *sdev)
 837{
 838	struct slic_stat_queue *stq = &sdev->stq;
 839	int i;
 840
 841	for (i = 0; i < SLIC_NUM_STAT_DESC_ARRAYS; i++) {
 842		dma_free_coherent(&sdev->pdev->dev, stq->mem_size,
 843				  stq->descs[i] - stq->addr_offset[i],
 844				  stq->paddr[i] - stq->addr_offset[i]);
 845	}
 846}
 847
 848static int slic_init_tx_queue(struct slic_device *sdev)
 849{
 850	struct slic_tx_queue *txq = &sdev->txq;
 851	struct slic_tx_buffer *buff;
 852	struct slic_tx_desc *desc;
 853	unsigned int i;
 854	int err;
 855
 856	txq->len = SLIC_NUM_TX_DESCS;
 857	txq->put_idx = 0;
 858	txq->done_idx = 0;
 859
 860	txq->txbuffs = kcalloc(txq->len, sizeof(*buff), GFP_KERNEL);
 861	if (!txq->txbuffs)
 862		return -ENOMEM;
 863
 864	txq->dma_pool = dma_pool_create("slic_pool", &sdev->pdev->dev,
 865					sizeof(*desc), SLIC_TX_DESC_ALIGN,
 866					4096);
 867	if (!txq->dma_pool) {
 868		err = -ENOMEM;
 869		netdev_err(sdev->netdev, "failed to create dma pool\n");
 870		goto free_buffs;
 871	}
 872
 873	for (i = 0; i < txq->len; i++) {
 874		buff = &txq->txbuffs[i];
 875		desc = dma_pool_zalloc(txq->dma_pool, GFP_KERNEL,
 876				       &buff->desc_paddr);
 877		if (!desc) {
 878			netdev_err(sdev->netdev,
 879				   "failed to alloc pool chunk (%i)\n", i);
 880			err = -ENOMEM;
 881			goto free_descs;
 882		}
 883
 884		desc->hnd = cpu_to_le32((u32)(i + 1));
 885		desc->cmd = SLIC_CMD_XMT_REQ;
 886		desc->flags = 0;
 887		desc->type = cpu_to_le32(SLIC_CMD_TYPE_DUMB);
 888		buff->desc = desc;
 889	}
 890
 891	return 0;
 892
 893free_descs:
 894	while (i--) {
 895		buff = &txq->txbuffs[i];
 896		dma_pool_free(txq->dma_pool, buff->desc, buff->desc_paddr);
 897	}
 898	dma_pool_destroy(txq->dma_pool);
 899
 900free_buffs:
 901	kfree(txq->txbuffs);
 902
 903	return err;
 904}
 905
 906static void slic_free_tx_queue(struct slic_device *sdev)
 907{
 908	struct slic_tx_queue *txq = &sdev->txq;
 909	struct slic_tx_buffer *buff;
 910	unsigned int i;
 911
 912	for (i = 0; i < txq->len; i++) {
 913		buff = &txq->txbuffs[i];
 914		dma_pool_free(txq->dma_pool, buff->desc, buff->desc_paddr);
 915		if (!buff->skb)
 916			continue;
 917
 918		dma_unmap_single(&sdev->pdev->dev,
 919				 dma_unmap_addr(buff, map_addr),
 920				 dma_unmap_len(buff, map_len), DMA_TO_DEVICE);
 921		consume_skb(buff->skb);
 922	}
 923	dma_pool_destroy(txq->dma_pool);
 924
 925	kfree(txq->txbuffs);
 926}
 927
 928static int slic_init_rx_queue(struct slic_device *sdev)
 929{
 930	struct slic_rx_queue *rxq = &sdev->rxq;
 931	struct slic_rx_buffer *buff;
 932
 933	rxq->len = SLIC_NUM_RX_LES;
 934	rxq->done_idx = 0;
 935	rxq->put_idx = 0;
 936
 937	buff = kcalloc(rxq->len, sizeof(*buff), GFP_KERNEL);
 938	if (!buff)
 939		return -ENOMEM;
 940
 941	rxq->rxbuffs = buff;
 942	slic_refill_rx_queue(sdev, GFP_KERNEL);
 943
 944	return 0;
 945}
 946
 947static void slic_free_rx_queue(struct slic_device *sdev)
 948{
 949	struct slic_rx_queue *rxq = &sdev->rxq;
 950	struct slic_rx_buffer *buff;
 951	unsigned int i;
 952
 953	/* free rx buffers */
 954	for (i = 0; i < rxq->len; i++) {
 955		buff = &rxq->rxbuffs[i];
 956
 957		if (!buff->skb)
 958			continue;
 959
 960		dma_unmap_single(&sdev->pdev->dev,
 961				 dma_unmap_addr(buff, map_addr),
 962				 dma_unmap_len(buff, map_len),
 963				 DMA_FROM_DEVICE);
 964		consume_skb(buff->skb);
 965	}
 966	kfree(rxq->rxbuffs);
 967}
 968
 969static void slic_set_link_autoneg(struct slic_device *sdev)
 970{
 971	unsigned int subid = sdev->pdev->subsystem_device;
 972	u32 val;
 973
 974	if (sdev->is_fiber) {
 975		/* We've got a fiber gigabit interface, and register 4 is
 976		 * different in fiber mode than in copper mode.
 977		 */
 978		/* advertise FD only @1000 Mb */
 979		val = MII_ADVERTISE << 16 | ADVERTISE_1000XFULL |
 980		      ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
 981		/* enable PAUSE frames */
 982		slic_write(sdev, SLIC_REG_WPHY, val);
 983		/* reset phy, enable auto-neg  */
 984		val = MII_BMCR << 16 | BMCR_RESET | BMCR_ANENABLE |
 985		      BMCR_ANRESTART;
 986		slic_write(sdev, SLIC_REG_WPHY, val);
 987	} else {	/* copper gigabit */
 988		/* We've got a copper gigabit interface, and register 4 is
 989		 * different in copper mode than in fiber mode.
 990		 */
 991		/* advertise 10/100 Mb modes   */
 992		val = MII_ADVERTISE << 16 | ADVERTISE_100FULL |
 993		      ADVERTISE_100HALF | ADVERTISE_10FULL | ADVERTISE_10HALF;
 994		/* enable PAUSE frames  */
 995		val |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
 996		/* required by the Cicada PHY  */
 997		val |= ADVERTISE_CSMA;
 998		slic_write(sdev, SLIC_REG_WPHY, val);
 999
1000		/* advertise FD only @1000 Mb  */
1001		val = MII_CTRL1000 << 16 | ADVERTISE_1000FULL;
1002		slic_write(sdev, SLIC_REG_WPHY, val);
1003
1004		if (subid != PCI_SUBDEVICE_ID_ALACRITECH_CICADA) {
1005			 /* if a Marvell PHY enable auto crossover */
1006			val = SLIC_MIICR_REG_16 | SLIC_MRV_REG16_XOVERON;
1007			slic_write(sdev, SLIC_REG_WPHY, val);
1008
1009			/* reset phy, enable auto-neg  */
1010			val = MII_BMCR << 16 | BMCR_RESET | BMCR_ANENABLE |
1011			      BMCR_ANRESTART;
1012			slic_write(sdev, SLIC_REG_WPHY, val);
1013		} else {
1014			/* enable and restart auto-neg (don't reset)  */
1015			val = MII_BMCR << 16 | BMCR_ANENABLE | BMCR_ANRESTART;
1016			slic_write(sdev, SLIC_REG_WPHY, val);
1017		}
1018	}
1019}
1020
1021static void slic_set_mac_address(struct slic_device *sdev)
1022{
1023	u8 *addr = sdev->netdev->dev_addr;
1024	u32 val;
1025
1026	val = addr[5] | addr[4] << 8 | addr[3] << 16 | addr[2] << 24;
1027
1028	slic_write(sdev, SLIC_REG_WRADDRAL, val);
1029	slic_write(sdev, SLIC_REG_WRADDRBL, val);
1030
1031	val = addr[0] << 8 | addr[1];
1032
1033	slic_write(sdev, SLIC_REG_WRADDRAH, val);
1034	slic_write(sdev, SLIC_REG_WRADDRBH, val);
1035	slic_flush_write(sdev);
1036}
1037
1038static u32 slic_read_dword_from_firmware(const struct firmware *fw, int *offset)
1039{
1040	int idx = *offset;
1041	__le32 val;
1042
1043	memcpy(&val, fw->data + *offset, sizeof(val));
1044	idx += 4;
1045	*offset = idx;
1046
1047	return le32_to_cpu(val);
1048}
1049
1050MODULE_FIRMWARE(SLIC_RCV_FIRMWARE_MOJAVE);
1051MODULE_FIRMWARE(SLIC_RCV_FIRMWARE_OASIS);
1052
1053static int slic_load_rcvseq_firmware(struct slic_device *sdev)
1054{
1055	const struct firmware *fw;
1056	const char *file;
1057	u32 codelen;
1058	int idx = 0;
1059	u32 instr;
1060	u32 addr;
1061	int err;
1062
1063	file = (sdev->model == SLIC_MODEL_OASIS) ?  SLIC_RCV_FIRMWARE_OASIS :
1064						    SLIC_RCV_FIRMWARE_MOJAVE;
1065	err = request_firmware(&fw, file, &sdev->pdev->dev);
1066	if (err) {
1067		dev_err(&sdev->pdev->dev,
1068			"failed to load receive sequencer firmware %s\n", file);
1069		return err;
1070	}
1071	/* Do an initial sanity check concerning firmware size now. A further
1072	 * check follows below.
1073	 */
1074	if (fw->size < SLIC_FIRMWARE_MIN_SIZE) {
1075		dev_err(&sdev->pdev->dev,
1076			"invalid firmware size %zu (min %u expected)\n",
1077			fw->size, SLIC_FIRMWARE_MIN_SIZE);
1078		err = -EINVAL;
1079		goto release;
1080	}
1081
1082	codelen = slic_read_dword_from_firmware(fw, &idx);
1083
1084	/* do another sanity check against firmware size */
1085	if ((codelen + 4) > fw->size) {
1086		dev_err(&sdev->pdev->dev,
1087			"invalid rcv-sequencer firmware size %zu\n", fw->size);
1088		err = -EINVAL;
1089		goto release;
1090	}
1091
1092	/* download sequencer code to card */
1093	slic_write(sdev, SLIC_REG_RCV_WCS, SLIC_RCVWCS_BEGIN);
1094	for (addr = 0; addr < codelen; addr++) {
1095		__le32 val;
1096		/* write out instruction address */
1097		slic_write(sdev, SLIC_REG_RCV_WCS, addr);
1098
1099		instr = slic_read_dword_from_firmware(fw, &idx);
1100		/* write out the instruction data low addr */
1101		slic_write(sdev, SLIC_REG_RCV_WCS, instr);
1102
1103		val = (__le32)fw->data[idx];
1104		instr = le32_to_cpu(val);
1105		idx++;
1106		/* write out the instruction data high addr */
1107		slic_write(sdev, SLIC_REG_RCV_WCS, instr);
1108	}
1109	/* finish download */
1110	slic_write(sdev, SLIC_REG_RCV_WCS, SLIC_RCVWCS_FINISH);
1111	slic_flush_write(sdev);
1112release:
1113	release_firmware(fw);
1114
1115	return err;
1116}
1117
1118MODULE_FIRMWARE(SLIC_FIRMWARE_MOJAVE);
1119MODULE_FIRMWARE(SLIC_FIRMWARE_OASIS);
1120
1121static int slic_load_firmware(struct slic_device *sdev)
1122{
1123	u32 sectstart[SLIC_FIRMWARE_MAX_SECTIONS];
1124	u32 sectsize[SLIC_FIRMWARE_MAX_SECTIONS];
1125	const struct firmware *fw;
1126	unsigned int datalen;
1127	const char *file;
1128	int code_start;
1129	unsigned int i;
1130	u32 numsects;
1131	int idx = 0;
1132	u32 sect;
1133	u32 instr;
1134	u32 addr;
1135	u32 base;
1136	int err;
1137
1138	file = (sdev->model == SLIC_MODEL_OASIS) ?  SLIC_FIRMWARE_OASIS :
1139						    SLIC_FIRMWARE_MOJAVE;
1140	err = request_firmware(&fw, file, &sdev->pdev->dev);
1141	if (err) {
1142		dev_err(&sdev->pdev->dev, "failed to load firmware %s\n", file);
1143		return err;
1144	}
1145	/* Do an initial sanity check concerning firmware size now. A further
1146	 * check follows below.
1147	 */
1148	if (fw->size < SLIC_FIRMWARE_MIN_SIZE) {
1149		dev_err(&sdev->pdev->dev,
1150			"invalid firmware size %zu (min is %u)\n", fw->size,
1151			SLIC_FIRMWARE_MIN_SIZE);
1152		err = -EINVAL;
1153		goto release;
1154	}
1155
1156	numsects = slic_read_dword_from_firmware(fw, &idx);
1157	if (numsects == 0 || numsects > SLIC_FIRMWARE_MAX_SECTIONS) {
1158		dev_err(&sdev->pdev->dev,
1159			"invalid number of sections in firmware: %u", numsects);
1160		err = -EINVAL;
1161		goto release;
1162	}
1163
1164	datalen = numsects * 8 + 4;
1165	for (i = 0; i < numsects; i++) {
1166		sectsize[i] = slic_read_dword_from_firmware(fw, &idx);
1167		datalen += sectsize[i];
1168	}
1169
1170	/* do another sanity check against firmware size */
1171	if (datalen > fw->size) {
1172		dev_err(&sdev->pdev->dev,
1173			"invalid firmware size %zu (expected >= %u)\n",
1174			fw->size, datalen);
1175		err = -EINVAL;
1176		goto release;
1177	}
1178	/* get sections */
1179	for (i = 0; i < numsects; i++)
1180		sectstart[i] = slic_read_dword_from_firmware(fw, &idx);
1181
1182	code_start = idx;
1183	instr = slic_read_dword_from_firmware(fw, &idx);
1184
1185	for (sect = 0; sect < numsects; sect++) {
1186		unsigned int ssize = sectsize[sect] >> 3;
1187
1188		base = sectstart[sect];
1189
1190		for (addr = 0; addr < ssize; addr++) {
1191			/* write out instruction address */
1192			slic_write(sdev, SLIC_REG_WCS, base + addr);
1193			/* write out instruction to low addr */
1194			slic_write(sdev, SLIC_REG_WCS, instr);
1195			instr = slic_read_dword_from_firmware(fw, &idx);
1196			/* write out instruction to high addr */
1197			slic_write(sdev, SLIC_REG_WCS, instr);
1198			instr = slic_read_dword_from_firmware(fw, &idx);
1199		}
1200	}
1201
1202	idx = code_start;
1203
1204	for (sect = 0; sect < numsects; sect++) {
1205		unsigned int ssize = sectsize[sect] >> 3;
1206
1207		instr = slic_read_dword_from_firmware(fw, &idx);
1208		base = sectstart[sect];
1209		if (base < 0x8000)
1210			continue;
1211
1212		for (addr = 0; addr < ssize; addr++) {
1213			/* write out instruction address */
1214			slic_write(sdev, SLIC_REG_WCS,
1215				   SLIC_WCS_COMPARE | (base + addr));
1216			/* write out instruction to low addr */
1217			slic_write(sdev, SLIC_REG_WCS, instr);
1218			instr = slic_read_dword_from_firmware(fw, &idx);
1219			/* write out instruction to high addr */
1220			slic_write(sdev, SLIC_REG_WCS, instr);
1221			instr = slic_read_dword_from_firmware(fw, &idx);
1222		}
1223	}
1224	slic_flush_write(sdev);
1225	mdelay(10);
1226	/* everything OK, kick off the card */
1227	slic_write(sdev, SLIC_REG_WCS, SLIC_WCS_START);
1228	slic_flush_write(sdev);
1229	/* wait long enough for ucode to init card and reach the mainloop */
1230	mdelay(20);
1231release:
1232	release_firmware(fw);
1233
1234	return err;
1235}
1236
1237static int slic_init_shmem(struct slic_device *sdev)
1238{
1239	struct slic_shmem *sm = &sdev->shmem;
1240	struct slic_shmem_data *sm_data;
1241	dma_addr_t paddr;
1242
1243	sm_data = dma_zalloc_coherent(&sdev->pdev->dev, sizeof(*sm_data),
1244				      &paddr, GFP_KERNEL);
1245	if (!sm_data) {
1246		dev_err(&sdev->pdev->dev, "failed to allocate shared memory\n");
1247		return -ENOMEM;
1248	}
1249
1250	sm->shmem_data = sm_data;
1251	sm->isr_paddr = paddr;
1252	sm->link_paddr = paddr + offsetof(struct slic_shmem_data, link);
1253
1254	return 0;
1255}
1256
1257static void slic_free_shmem(struct slic_device *sdev)
1258{
1259	struct slic_shmem *sm = &sdev->shmem;
1260	struct slic_shmem_data *sm_data = sm->shmem_data;
1261
1262	dma_free_coherent(&sdev->pdev->dev, sizeof(*sm_data), sm_data,
1263			  sm->isr_paddr);
1264}
1265
1266static int slic_init_iface(struct slic_device *sdev)
1267{
1268	struct slic_shmem *sm = &sdev->shmem;
1269	int err;
1270
1271	sdev->upr_list.pending = false;
1272
1273	err = slic_init_shmem(sdev);
1274	if (err) {
1275		netdev_err(sdev->netdev, "failed to init shared memory\n");
1276		return err;
1277	}
1278
1279	err = slic_load_firmware(sdev);
1280	if (err) {
1281		netdev_err(sdev->netdev, "failed to load firmware\n");
1282		goto free_sm;
1283	}
1284
1285	err = slic_load_rcvseq_firmware(sdev);
1286	if (err) {
1287		netdev_err(sdev->netdev,
1288			   "failed to load firmware for receive sequencer\n");
1289		goto free_sm;
1290	}
1291
1292	slic_write(sdev, SLIC_REG_ICR, SLIC_ICR_INT_OFF);
1293	slic_flush_write(sdev);
1294	mdelay(1);
1295
1296	err = slic_init_rx_queue(sdev);
1297	if (err) {
1298		netdev_err(sdev->netdev, "failed to init rx queue: %u\n", err);
1299		goto free_sm;
1300	}
1301
1302	err = slic_init_tx_queue(sdev);
1303	if (err) {
1304		netdev_err(sdev->netdev, "failed to init tx queue: %u\n", err);
1305		goto free_rxq;
1306	}
1307
1308	err = slic_init_stat_queue(sdev);
1309	if (err) {
1310		netdev_err(sdev->netdev, "failed to init status queue: %u\n",
1311			   err);
1312		goto free_txq;
1313	}
1314
1315	slic_write(sdev, SLIC_REG_ISP, lower_32_bits(sm->isr_paddr));
1316	napi_enable(&sdev->napi);
1317	/* disable irq mitigation */
1318	slic_write(sdev, SLIC_REG_INTAGG, 0);
1319	slic_write(sdev, SLIC_REG_ISR, 0);
1320	slic_flush_write(sdev);
1321
1322	slic_set_mac_address(sdev);
1323
1324	spin_lock_bh(&sdev->link_lock);
1325	sdev->duplex = DUPLEX_UNKNOWN;
1326	sdev->speed = SPEED_UNKNOWN;
1327	spin_unlock_bh(&sdev->link_lock);
1328
1329	slic_set_link_autoneg(sdev);
1330
1331	err = request_irq(sdev->pdev->irq, slic_irq, IRQF_SHARED, DRV_NAME,
1332			  sdev);
1333	if (err) {
1334		netdev_err(sdev->netdev, "failed to request irq: %u\n", err);
1335		goto disable_napi;
1336	}
1337
1338	slic_write(sdev, SLIC_REG_ICR, SLIC_ICR_INT_ON);
1339	slic_flush_write(sdev);
1340	/* request initial link status */
1341	err = slic_handle_link_change(sdev);
1342	if (err)
1343		netdev_warn(sdev->netdev,
1344			    "failed to set initial link state: %u\n", err);
1345	return 0;
1346
1347disable_napi:
1348	napi_disable(&sdev->napi);
1349	slic_free_stat_queue(sdev);
1350free_txq:
1351	slic_free_tx_queue(sdev);
1352free_rxq:
1353	slic_free_rx_queue(sdev);
1354free_sm:
1355	slic_free_shmem(sdev);
1356	slic_card_reset(sdev);
1357
1358	return err;
1359}
1360
1361static int slic_open(struct net_device *dev)
1362{
1363	struct slic_device *sdev = netdev_priv(dev);
1364	int err;
1365
1366	netif_carrier_off(dev);
1367
1368	err = slic_init_iface(sdev);
1369	if (err) {
1370		netdev_err(dev, "failed to initialize interface: %i\n", err);
1371		return err;
1372	}
1373
1374	netif_start_queue(dev);
1375
1376	return 0;
1377}
1378
1379static int slic_close(struct net_device *dev)
1380{
1381	struct slic_device *sdev = netdev_priv(dev);
1382	u32 val;
1383
1384	netif_stop_queue(dev);
1385
1386	/* stop irq handling */
1387	napi_disable(&sdev->napi);
1388	slic_write(sdev, SLIC_REG_ICR, SLIC_ICR_INT_OFF);
1389	slic_write(sdev, SLIC_REG_ISR, 0);
1390	slic_flush_write(sdev);
1391
1392	free_irq(sdev->pdev->irq, sdev);
1393	/* turn off RCV and XMT and power down PHY */
1394	val = SLIC_GXCR_RESET | SLIC_GXCR_PAUSEEN;
1395	slic_write(sdev, SLIC_REG_WXCFG, val);
1396
1397	val = SLIC_GRCR_RESET | SLIC_GRCR_CTLEN | SLIC_GRCR_ADDRAEN |
1398	      SLIC_GRCR_HASHSIZE << SLIC_GRCR_HASHSIZE_SHIFT;
1399	slic_write(sdev, SLIC_REG_WRCFG, val);
1400
1401	val = MII_BMCR << 16 | BMCR_PDOWN;
1402	slic_write(sdev, SLIC_REG_WPHY, val);
1403	slic_flush_write(sdev);
1404
1405	slic_clear_upr_list(&sdev->upr_list);
1406	slic_write(sdev, SLIC_REG_QUIESCE, 0);
1407
1408	slic_free_stat_queue(sdev);
1409	slic_free_tx_queue(sdev);
1410	slic_free_rx_queue(sdev);
1411	slic_free_shmem(sdev);
1412
1413	slic_card_reset(sdev);
1414	netif_carrier_off(dev);
1415
1416	return 0;
1417}
1418
1419static netdev_tx_t slic_xmit(struct sk_buff *skb, struct net_device *dev)
1420{
1421	struct slic_device *sdev = netdev_priv(dev);
1422	struct slic_tx_queue *txq = &sdev->txq;
1423	struct slic_tx_buffer *buff;
1424	struct slic_tx_desc *desc;
1425	dma_addr_t paddr;
1426	u32 cbar_val;
1427	u32 maplen;
1428
1429	if (unlikely(slic_get_free_tx_descs(txq) < SLIC_MAX_REQ_TX_DESCS)) {
1430		netdev_err(dev, "BUG! not enough tx LEs left: %u\n",
1431			   slic_get_free_tx_descs(txq));
1432		return NETDEV_TX_BUSY;
1433	}
1434
1435	maplen = skb_headlen(skb);
1436	paddr = dma_map_single(&sdev->pdev->dev, skb->data, maplen,
1437			       DMA_TO_DEVICE);
1438	if (dma_mapping_error(&sdev->pdev->dev, paddr)) {
1439		netdev_err(dev, "failed to map tx buffer\n");
1440		goto drop_skb;
1441	}
1442
1443	buff = &txq->txbuffs[txq->put_idx];
1444	buff->skb = skb;
1445	dma_unmap_addr_set(buff, map_addr, paddr);
1446	dma_unmap_len_set(buff, map_len, maplen);
1447
1448	desc = buff->desc;
1449	desc->totlen = cpu_to_le32(maplen);
1450	desc->paddrl = cpu_to_le32(lower_32_bits(paddr));
1451	desc->paddrh = cpu_to_le32(upper_32_bits(paddr));
1452	desc->len = cpu_to_le32(maplen);
1453
1454	txq->put_idx = slic_next_queue_idx(txq->put_idx, txq->len);
1455
1456	cbar_val = lower_32_bits(buff->desc_paddr) | 1;
1457	/* complete writes to RAM and DMA before hardware is informed */
1458	wmb();
1459
1460	slic_write(sdev, SLIC_REG_CBAR, cbar_val);
1461
1462	if (slic_get_free_tx_descs(txq) < SLIC_MAX_REQ_TX_DESCS)
1463		netif_stop_queue(dev);
1464	/* make sure writes to io-memory cant leak out of tx queue lock */
1465	mmiowb();
1466
1467	return NETDEV_TX_OK;
1468drop_skb:
1469	dev_kfree_skb_any(skb);
1470
1471	return NETDEV_TX_OK;
1472}
1473
1474static void slic_get_stats(struct net_device *dev,
1475			   struct rtnl_link_stats64 *lst)
1476{
1477	struct slic_device *sdev = netdev_priv(dev);
1478	struct slic_stats *stats = &sdev->stats;
1479
1480	SLIC_GET_STATS_COUNTER(lst->rx_packets, stats, rx_packets);
1481	SLIC_GET_STATS_COUNTER(lst->tx_packets, stats, tx_packets);
1482	SLIC_GET_STATS_COUNTER(lst->rx_bytes, stats, rx_bytes);
1483	SLIC_GET_STATS_COUNTER(lst->tx_bytes, stats, tx_bytes);
1484	SLIC_GET_STATS_COUNTER(lst->rx_errors, stats, rx_errors);
1485	SLIC_GET_STATS_COUNTER(lst->rx_dropped, stats, rx_buff_miss);
1486	SLIC_GET_STATS_COUNTER(lst->tx_dropped, stats, tx_dropped);
1487	SLIC_GET_STATS_COUNTER(lst->multicast, stats, rx_mcasts);
1488	SLIC_GET_STATS_COUNTER(lst->rx_over_errors, stats, rx_buffoflow);
1489	SLIC_GET_STATS_COUNTER(lst->rx_crc_errors, stats, rx_crc);
1490	SLIC_GET_STATS_COUNTER(lst->rx_fifo_errors, stats, rx_oflow802);
1491	SLIC_GET_STATS_COUNTER(lst->tx_carrier_errors, stats, tx_carrier);
1492}
1493
1494static int slic_get_sset_count(struct net_device *dev, int sset)
1495{
1496	switch (sset) {
1497	case ETH_SS_STATS:
1498		return ARRAY_SIZE(slic_stats_strings);
1499	default:
1500		return -EOPNOTSUPP;
1501	}
1502}
1503
1504static void slic_get_ethtool_stats(struct net_device *dev,
1505				   struct ethtool_stats *eth_stats, u64 *data)
1506{
1507	struct slic_device *sdev = netdev_priv(dev);
1508	struct slic_stats *stats = &sdev->stats;
1509
1510	SLIC_GET_STATS_COUNTER(data[0], stats, rx_packets);
1511	SLIC_GET_STATS_COUNTER(data[1], stats, rx_bytes);
1512	SLIC_GET_STATS_COUNTER(data[2], stats, rx_mcasts);
1513	SLIC_GET_STATS_COUNTER(data[3], stats, rx_errors);
1514	SLIC_GET_STATS_COUNTER(data[4], stats, rx_buff_miss);
1515	SLIC_GET_STATS_COUNTER(data[5], stats, rx_tpcsum);
1516	SLIC_GET_STATS_COUNTER(data[6], stats, rx_tpoflow);
1517	SLIC_GET_STATS_COUNTER(data[7], stats, rx_tphlen);
1518	SLIC_GET_STATS_COUNTER(data[8], stats, rx_ipcsum);
1519	SLIC_GET_STATS_COUNTER(data[9], stats, rx_iplen);
1520	SLIC_GET_STATS_COUNTER(data[10], stats, rx_iphlen);
1521	SLIC_GET_STATS_COUNTER(data[11], stats, rx_early);
1522	SLIC_GET_STATS_COUNTER(data[12], stats, rx_buffoflow);
1523	SLIC_GET_STATS_COUNTER(data[13], stats, rx_lcode);
1524	SLIC_GET_STATS_COUNTER(data[14], stats, rx_drbl);
1525	SLIC_GET_STATS_COUNTER(data[15], stats, rx_crc);
1526	SLIC_GET_STATS_COUNTER(data[16], stats, rx_oflow802);
1527	SLIC_GET_STATS_COUNTER(data[17], stats, rx_uflow802);
1528	SLIC_GET_STATS_COUNTER(data[18], stats, tx_packets);
1529	SLIC_GET_STATS_COUNTER(data[19], stats, tx_bytes);
1530	SLIC_GET_STATS_COUNTER(data[20], stats, tx_carrier);
1531	SLIC_GET_STATS_COUNTER(data[21], stats, tx_dropped);
1532	SLIC_GET_STATS_COUNTER(data[22], stats, irq_errs);
1533}
1534
1535static void slic_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1536{
1537	if (stringset == ETH_SS_STATS) {
1538		memcpy(data, slic_stats_strings, sizeof(slic_stats_strings));
1539		data += sizeof(slic_stats_strings);
1540	}
1541}
1542
1543static void slic_get_drvinfo(struct net_device *dev,
1544			     struct ethtool_drvinfo *info)
1545{
1546	struct slic_device *sdev = netdev_priv(dev);
1547
1548	strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
1549	strlcpy(info->version, DRV_VERSION, sizeof(info->version));
1550	strlcpy(info->bus_info, pci_name(sdev->pdev), sizeof(info->bus_info));
1551}
1552
1553static const struct ethtool_ops slic_ethtool_ops = {
1554	.get_drvinfo		= slic_get_drvinfo,
1555	.get_link		= ethtool_op_get_link,
1556	.get_strings		= slic_get_strings,
1557	.get_ethtool_stats	= slic_get_ethtool_stats,
1558	.get_sset_count		= slic_get_sset_count,
1559};
1560
1561static const struct net_device_ops slic_netdev_ops = {
1562	.ndo_open		= slic_open,
1563	.ndo_stop		= slic_close,
1564	.ndo_start_xmit		= slic_xmit,
1565	.ndo_set_mac_address	= eth_mac_addr,
1566	.ndo_get_stats64	= slic_get_stats,
1567	.ndo_set_rx_mode	= slic_set_rx_mode,
1568	.ndo_validate_addr	= eth_validate_addr,
1569};
1570
1571static u16 slic_eeprom_csum(unsigned char *eeprom, unsigned int len)
1572{
1573	unsigned char *ptr = eeprom;
1574	u32 csum = 0;
1575	__le16 data;
1576
1577	while (len > 1) {
1578		memcpy(&data, ptr, sizeof(data));
1579		csum += le16_to_cpu(data);
1580		ptr += 2;
1581		len -= 2;
1582	}
1583	if (len > 0)
1584		csum += *(u8 *)ptr;
1585	while (csum >> 16)
1586		csum = (csum & 0xFFFF) + ((csum >> 16) & 0xFFFF);
1587	return ~csum;
1588}
1589
1590/* check eeprom size, magic and checksum */
1591static bool slic_eeprom_valid(unsigned char *eeprom, unsigned int size)
1592{
1593	const unsigned int MAX_SIZE = 128;
1594	const unsigned int MIN_SIZE = 98;
1595	__le16 magic;
1596	__le16 csum;
1597
1598	if (size < MIN_SIZE || size > MAX_SIZE)
1599		return false;
1600	memcpy(&magic, eeprom, sizeof(magic));
1601	if (le16_to_cpu(magic) != SLIC_EEPROM_MAGIC)
1602		return false;
1603	/* cut checksum bytes */
1604	size -= 2;
1605	memcpy(&csum, eeprom + size, sizeof(csum));
1606
1607	return (le16_to_cpu(csum) == slic_eeprom_csum(eeprom, size));
1608}
1609
1610static int slic_read_eeprom(struct slic_device *sdev)
1611{
1612	unsigned int devfn = PCI_FUNC(sdev->pdev->devfn);
1613	struct slic_shmem *sm = &sdev->shmem;
1614	struct slic_shmem_data *sm_data = sm->shmem_data;
1615	const unsigned int MAX_LOOPS = 5000;
1616	unsigned int codesize;
1617	unsigned char *eeprom;
1618	struct slic_upr *upr;
1619	unsigned int i = 0;
1620	dma_addr_t paddr;
1621	int err = 0;
1622	u8 *mac[2];
1623
1624	eeprom = dma_zalloc_coherent(&sdev->pdev->dev, SLIC_EEPROM_SIZE,
1625				     &paddr, GFP_KERNEL);
1626	if (!eeprom)
1627		return -ENOMEM;
1628
1629	slic_write(sdev, SLIC_REG_ICR, SLIC_ICR_INT_OFF);
1630	/* setup ISP temporarily */
1631	slic_write(sdev, SLIC_REG_ISP, lower_32_bits(sm->isr_paddr));
1632
1633	err = slic_new_upr(sdev, SLIC_UPR_CONFIG, paddr);
1634	if (!err) {
1635		for (i = 0; i < MAX_LOOPS; i++) {
1636			if (le32_to_cpu(sm_data->isr) & SLIC_ISR_UPC)
1637				break;
1638			mdelay(1);
1639		}
1640		if (i == MAX_LOOPS) {
1641			dev_err(&sdev->pdev->dev,
1642				"timed out while waiting for eeprom data\n");
1643			err = -ETIMEDOUT;
1644		}
1645		upr = slic_dequeue_upr(sdev);
1646		kfree(upr);
1647	}
1648
1649	slic_write(sdev, SLIC_REG_ISP, 0);
1650	slic_write(sdev, SLIC_REG_ISR, 0);
1651	slic_flush_write(sdev);
1652
1653	if (err)
1654		goto free_eeprom;
1655
1656	if (sdev->model == SLIC_MODEL_OASIS) {
1657		struct slic_oasis_eeprom *oee;
1658
1659		oee = (struct slic_oasis_eeprom *)eeprom;
1660		mac[0] = oee->mac;
1661		mac[1] = oee->mac2;
1662		codesize = le16_to_cpu(oee->eeprom_code_size);
1663	} else {
1664		struct slic_mojave_eeprom *mee;
1665
1666		mee = (struct slic_mojave_eeprom *)eeprom;
1667		mac[0] = mee->mac;
1668		mac[1] = mee->mac2;
1669		codesize = le16_to_cpu(mee->eeprom_code_size);
1670	}
1671
1672	if (!slic_eeprom_valid(eeprom, codesize)) {
1673		dev_err(&sdev->pdev->dev, "invalid checksum in eeprom\n");
1674		err = -EINVAL;
1675		goto free_eeprom;
1676	}
1677	/* set mac address */
1678	ether_addr_copy(sdev->netdev->dev_addr, mac[devfn]);
1679free_eeprom:
1680	dma_free_coherent(&sdev->pdev->dev, SLIC_EEPROM_SIZE, eeprom, paddr);
1681
1682	return err;
1683}
1684
1685static int slic_init(struct slic_device *sdev)
1686{
1687	int err;
1688
1689	spin_lock_init(&sdev->upper_lock);
1690	spin_lock_init(&sdev->link_lock);
1691	INIT_LIST_HEAD(&sdev->upr_list.list);
1692	spin_lock_init(&sdev->upr_list.lock);
1693	u64_stats_init(&sdev->stats.syncp);
1694
1695	slic_card_reset(sdev);
1696
1697	err = slic_load_firmware(sdev);
1698	if (err) {
1699		dev_err(&sdev->pdev->dev, "failed to load firmware\n");
1700		return err;
1701	}
1702
1703	/* we need the shared memory to read EEPROM so set it up temporarily */
1704	err = slic_init_shmem(sdev);
1705	if (err) {
1706		dev_err(&sdev->pdev->dev, "failed to init shared memory\n");
1707		return err;
1708	}
1709
1710	err = slic_read_eeprom(sdev);
1711	if (err) {
1712		dev_err(&sdev->pdev->dev, "failed to read eeprom\n");
1713		goto free_sm;
1714	}
1715
1716	slic_card_reset(sdev);
1717	slic_free_shmem(sdev);
1718
1719	return 0;
1720free_sm:
1721	slic_free_shmem(sdev);
1722
1723	return err;
1724}
1725
1726static bool slic_is_fiber(unsigned short subdev)
1727{
1728	switch (subdev) {
1729	/* Mojave */
1730	case PCI_SUBDEVICE_ID_ALACRITECH_1000X1F: /* fallthrough */
1731	case PCI_SUBDEVICE_ID_ALACRITECH_SES1001F: /* fallthrough */
1732	/* Oasis */
1733	case PCI_SUBDEVICE_ID_ALACRITECH_SEN2002XF: /* fallthrough */
1734	case PCI_SUBDEVICE_ID_ALACRITECH_SEN2001XF: /* fallthrough */
1735	case PCI_SUBDEVICE_ID_ALACRITECH_SEN2104EF: /* fallthrough */
1736	case PCI_SUBDEVICE_ID_ALACRITECH_SEN2102EF: /* fallthrough */
1737		return true;
1738	}
1739	return false;
1740}
1741
1742static void slic_configure_pci(struct pci_dev *pdev)
1743{
1744	u16 old;
1745	u16 cmd;
1746
1747	pci_read_config_word(pdev, PCI_COMMAND, &old);
1748
1749	cmd = old | PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
1750	if (old != cmd)
1751		pci_write_config_word(pdev, PCI_COMMAND, cmd);
1752}
1753
1754static int slic_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1755{
1756	struct slic_device *sdev;
1757	struct net_device *dev;
1758	int err;
1759
1760	err = pci_enable_device(pdev);
1761	if (err) {
1762		dev_err(&pdev->dev, "failed to enable PCI device\n");
1763		return err;
1764	}
1765
1766	pci_set_master(pdev);
1767	pci_try_set_mwi(pdev);
1768
1769	slic_configure_pci(pdev);
1770
1771	err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
1772	if (err) {
1773		dev_err(&pdev->dev, "failed to setup DMA\n");
1774		goto disable;
1775	}
1776
1777	dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
1778
1779	err = pci_request_regions(pdev, DRV_NAME);
1780	if (err) {
1781		dev_err(&pdev->dev, "failed to obtain PCI regions\n");
1782		goto disable;
1783	}
1784
1785	dev = alloc_etherdev(sizeof(*sdev));
1786	if (!dev) {
1787		dev_err(&pdev->dev, "failed to alloc ethernet device\n");
1788		err = -ENOMEM;
1789		goto free_regions;
1790	}
1791
1792	SET_NETDEV_DEV(dev, &pdev->dev);
1793	pci_set_drvdata(pdev, dev);
1794	dev->irq = pdev->irq;
1795	dev->netdev_ops = &slic_netdev_ops;
1796	dev->hw_features = NETIF_F_RXCSUM;
1797	dev->features |= dev->hw_features;
1798
1799	dev->ethtool_ops = &slic_ethtool_ops;
1800
1801	sdev = netdev_priv(dev);
1802	sdev->model = (pdev->device == PCI_DEVICE_ID_ALACRITECH_OASIS) ?
1803		      SLIC_MODEL_OASIS : SLIC_MODEL_MOJAVE;
1804	sdev->is_fiber = slic_is_fiber(pdev->subsystem_device);
1805	sdev->pdev = pdev;
1806	sdev->netdev = dev;
1807	sdev->regs = ioremap_nocache(pci_resource_start(pdev, 0),
1808				     pci_resource_len(pdev, 0));
1809	if (!sdev->regs) {
1810		dev_err(&pdev->dev, "failed to map registers\n");
1811		err = -ENOMEM;
1812		goto free_netdev;
1813	}
1814
1815	err = slic_init(sdev);
1816	if (err) {
1817		dev_err(&pdev->dev, "failed to initialize driver\n");
1818		goto unmap;
1819	}
1820
1821	netif_napi_add(dev, &sdev->napi, slic_poll, SLIC_NAPI_WEIGHT);
1822	netif_carrier_off(dev);
1823
1824	err = register_netdev(dev);
1825	if (err) {
1826		dev_err(&pdev->dev, "failed to register net device: %i\n", err);
1827		goto unmap;
1828	}
1829
1830	return 0;
1831
1832unmap:
1833	iounmap(sdev->regs);
1834free_netdev:
1835	free_netdev(dev);
1836free_regions:
1837	pci_release_regions(pdev);
1838disable:
1839	pci_disable_device(pdev);
1840
1841	return err;
1842}
1843
1844static void slic_remove(struct pci_dev *pdev)
1845{
1846	struct net_device *dev = pci_get_drvdata(pdev);
1847	struct slic_device *sdev = netdev_priv(dev);
1848
1849	unregister_netdev(dev);
1850	iounmap(sdev->regs);
1851	free_netdev(dev);
1852	pci_release_regions(pdev);
1853	pci_disable_device(pdev);
1854}
1855
1856static struct pci_driver slic_driver = {
1857	.name = DRV_NAME,
1858	.id_table = slic_id_tbl,
1859	.probe = slic_probe,
1860	.remove = slic_remove,
1861};
1862
1863module_pci_driver(slic_driver);
1864
1865MODULE_DESCRIPTION("Alacritech non-accelerated SLIC driver");
1866MODULE_AUTHOR("Lino Sanfilippo <LinoSanfilippo@gmx.de>");
1867MODULE_LICENSE("GPL");
1868MODULE_VERSION(DRV_VERSION);
v5.9
   1// SPDX-License-Identifier: GPL-2.0-only
   2/*
   3 * Driver for Gigabit Ethernet adapters based on the Session Layer
   4 * Interface (SLIC) technology by Alacritech. The driver does not
   5 * support the hardware acceleration features provided by these cards.
   6 *
   7 * Copyright (C) 2016 Lino Sanfilippo <LinoSanfilippo@gmx.de>
 
 
 
 
 
 
 
 
 
 
   8 */
   9
  10#include <linux/kernel.h>
  11#include <linux/module.h>
  12#include <linux/pci.h>
  13#include <linux/netdevice.h>
  14#include <linux/etherdevice.h>
  15#include <linux/if_ether.h>
  16#include <linux/crc32.h>
  17#include <linux/dma-mapping.h>
  18#include <linux/ethtool.h>
  19#include <linux/mii.h>
  20#include <linux/interrupt.h>
  21#include <linux/delay.h>
  22#include <linux/firmware.h>
  23#include <linux/list.h>
  24#include <linux/u64_stats_sync.h>
  25
  26#include "slic.h"
  27
  28#define DRV_NAME			"slicoss"
 
  29
  30static const struct pci_device_id slic_id_tbl[] = {
  31	{ PCI_DEVICE(PCI_VENDOR_ID_ALACRITECH,
  32		     PCI_DEVICE_ID_ALACRITECH_MOJAVE) },
  33	{ PCI_DEVICE(PCI_VENDOR_ID_ALACRITECH,
  34		     PCI_DEVICE_ID_ALACRITECH_OASIS) },
  35	{ 0 }
  36};
  37
  38static const char slic_stats_strings[][ETH_GSTRING_LEN] = {
  39	"rx_packets",
  40	"rx_bytes",
  41	"rx_multicasts",
  42	"rx_errors",
  43	"rx_buff_miss",
  44	"rx_tp_csum",
  45	"rx_tp_oflow",
  46	"rx_tp_hlen",
  47	"rx_ip_csum",
  48	"rx_ip_len",
  49	"rx_ip_hdr_len",
  50	"rx_early",
  51	"rx_buff_oflow",
  52	"rx_lcode",
  53	"rx_drbl",
  54	"rx_crc",
  55	"rx_oflow_802",
  56	"rx_uflow_802",
  57	"tx_packets",
  58	"tx_bytes",
  59	"tx_carrier",
  60	"tx_dropped",
  61	"irq_errs",
  62};
  63
  64static inline int slic_next_queue_idx(unsigned int idx, unsigned int qlen)
  65{
  66	return (idx + 1) & (qlen - 1);
  67}
  68
  69static inline int slic_get_free_queue_descs(unsigned int put_idx,
  70					    unsigned int done_idx,
  71					    unsigned int qlen)
  72{
  73	if (put_idx >= done_idx)
  74		return (qlen - (put_idx - done_idx) - 1);
  75	return (done_idx - put_idx - 1);
  76}
  77
  78static unsigned int slic_next_compl_idx(struct slic_device *sdev)
  79{
  80	struct slic_stat_queue *stq = &sdev->stq;
  81	unsigned int active = stq->active_array;
  82	struct slic_stat_desc *descs;
  83	struct slic_stat_desc *stat;
  84	unsigned int idx;
  85
  86	descs = stq->descs[active];
  87	stat = &descs[stq->done_idx];
  88
  89	if (!stat->status)
  90		return SLIC_INVALID_STAT_DESC_IDX;
  91
  92	idx = (le32_to_cpu(stat->hnd) & 0xffff) - 1;
  93	/* reset desc */
  94	stat->hnd = 0;
  95	stat->status = 0;
  96
  97	stq->done_idx = slic_next_queue_idx(stq->done_idx, stq->len);
  98	/* check for wraparound */
  99	if (!stq->done_idx) {
 100		dma_addr_t paddr = stq->paddr[active];
 101
 102		slic_write(sdev, SLIC_REG_RBAR, lower_32_bits(paddr) |
 103						stq->len);
 104		/* make sure new status descriptors are immediately available */
 105		slic_flush_write(sdev);
 106		active++;
 107		active &= (SLIC_NUM_STAT_DESC_ARRAYS - 1);
 108		stq->active_array = active;
 109	}
 110	return idx;
 111}
 112
 113static unsigned int slic_get_free_tx_descs(struct slic_tx_queue *txq)
 114{
 115	/* ensure tail idx is updated */
 116	smp_mb();
 117	return slic_get_free_queue_descs(txq->put_idx, txq->done_idx, txq->len);
 118}
 119
 120static unsigned int slic_get_free_rx_descs(struct slic_rx_queue *rxq)
 121{
 122	return slic_get_free_queue_descs(rxq->put_idx, rxq->done_idx, rxq->len);
 123}
 124
 125static void slic_clear_upr_list(struct slic_upr_list *upr_list)
 126{
 127	struct slic_upr *upr;
 128	struct slic_upr *tmp;
 129
 130	spin_lock_bh(&upr_list->lock);
 131	list_for_each_entry_safe(upr, tmp, &upr_list->list, list) {
 132		list_del(&upr->list);
 133		kfree(upr);
 134	}
 135	upr_list->pending = false;
 136	spin_unlock_bh(&upr_list->lock);
 137}
 138
 139static void slic_start_upr(struct slic_device *sdev, struct slic_upr *upr)
 140{
 141	u32 reg;
 142
 143	reg = (upr->type == SLIC_UPR_CONFIG) ? SLIC_REG_RCONFIG :
 144					       SLIC_REG_LSTAT;
 145	slic_write(sdev, reg, lower_32_bits(upr->paddr));
 146	slic_flush_write(sdev);
 147}
 148
 149static void slic_queue_upr(struct slic_device *sdev, struct slic_upr *upr)
 150{
 151	struct slic_upr_list *upr_list = &sdev->upr_list;
 152	bool pending;
 153
 154	spin_lock_bh(&upr_list->lock);
 155	pending = upr_list->pending;
 156	INIT_LIST_HEAD(&upr->list);
 157	list_add_tail(&upr->list, &upr_list->list);
 158	upr_list->pending = true;
 159	spin_unlock_bh(&upr_list->lock);
 160
 161	if (!pending)
 162		slic_start_upr(sdev, upr);
 163}
 164
 165static struct slic_upr *slic_dequeue_upr(struct slic_device *sdev)
 166{
 167	struct slic_upr_list *upr_list = &sdev->upr_list;
 168	struct slic_upr *next_upr = NULL;
 169	struct slic_upr *upr = NULL;
 170
 171	spin_lock_bh(&upr_list->lock);
 172	if (!list_empty(&upr_list->list)) {
 173		upr = list_first_entry(&upr_list->list, struct slic_upr, list);
 174		list_del(&upr->list);
 175
 176		if (list_empty(&upr_list->list))
 177			upr_list->pending = false;
 178		else
 179			next_upr = list_first_entry(&upr_list->list,
 180						    struct slic_upr, list);
 181	}
 182	spin_unlock_bh(&upr_list->lock);
 183	/* trigger processing of the next upr in list */
 184	if (next_upr)
 185		slic_start_upr(sdev, next_upr);
 186
 187	return upr;
 188}
 189
 190static int slic_new_upr(struct slic_device *sdev, unsigned int type,
 191			dma_addr_t paddr)
 192{
 193	struct slic_upr *upr;
 194
 195	upr = kmalloc(sizeof(*upr), GFP_ATOMIC);
 196	if (!upr)
 197		return -ENOMEM;
 198	upr->type = type;
 199	upr->paddr = paddr;
 200
 201	slic_queue_upr(sdev, upr);
 202
 203	return 0;
 204}
 205
 206static void slic_set_mcast_bit(u64 *mcmask, unsigned char const *addr)
 207{
 208	u64 mask = *mcmask;
 209	u8 crc;
 210	/* Get the CRC polynomial for the mac address: we use bits 1-8 (lsb),
 211	 * bitwise reversed, msb (= lsb bit 0 before bitrev) is automatically
 212	 * discarded.
 213	 */
 214	crc = ether_crc(ETH_ALEN, addr) >> 23;
 215	 /* we only have space on the SLIC for 64 entries */
 216	crc &= 0x3F;
 217	mask |= (u64)1 << crc;
 218	*mcmask = mask;
 219}
 220
 221/* must be called with link_lock held */
 222static void slic_configure_rcv(struct slic_device *sdev)
 223{
 224	u32 val;
 225
 226	val = SLIC_GRCR_RESET | SLIC_GRCR_ADDRAEN | SLIC_GRCR_RCVEN |
 227	      SLIC_GRCR_HASHSIZE << SLIC_GRCR_HASHSIZE_SHIFT | SLIC_GRCR_RCVBAD;
 228
 229	if (sdev->duplex == DUPLEX_FULL)
 230		val |= SLIC_GRCR_CTLEN;
 231
 232	if (sdev->promisc)
 233		val |= SLIC_GRCR_RCVALL;
 234
 235	slic_write(sdev, SLIC_REG_WRCFG, val);
 236}
 237
 238/* must be called with link_lock held */
 239static void slic_configure_xmt(struct slic_device *sdev)
 240{
 241	u32 val;
 242
 243	val = SLIC_GXCR_RESET | SLIC_GXCR_XMTEN;
 244
 245	if (sdev->duplex == DUPLEX_FULL)
 246		val |= SLIC_GXCR_PAUSEEN;
 247
 248	slic_write(sdev, SLIC_REG_WXCFG, val);
 249}
 250
 251/* must be called with link_lock held */
 252static void slic_configure_mac(struct slic_device *sdev)
 253{
 254	u32 val;
 255
 256	if (sdev->speed == SPEED_1000) {
 257		val = SLIC_GMCR_GAPBB_1000 << SLIC_GMCR_GAPBB_SHIFT |
 258		      SLIC_GMCR_GAPR1_1000 << SLIC_GMCR_GAPR1_SHIFT |
 259		      SLIC_GMCR_GAPR2_1000 << SLIC_GMCR_GAPR2_SHIFT |
 260		      SLIC_GMCR_GBIT; /* enable GMII */
 261	} else {
 262		val = SLIC_GMCR_GAPBB_100 << SLIC_GMCR_GAPBB_SHIFT |
 263		      SLIC_GMCR_GAPR1_100 << SLIC_GMCR_GAPR1_SHIFT |
 264		      SLIC_GMCR_GAPR2_100 << SLIC_GMCR_GAPR2_SHIFT;
 265	}
 266
 267	if (sdev->duplex == DUPLEX_FULL)
 268		val |= SLIC_GMCR_FULLD;
 269
 270	slic_write(sdev, SLIC_REG_WMCFG, val);
 271}
 272
 273static void slic_configure_link_locked(struct slic_device *sdev, int speed,
 274				       unsigned int duplex)
 275{
 276	struct net_device *dev = sdev->netdev;
 277
 278	if (sdev->speed == speed && sdev->duplex == duplex)
 279		return;
 280
 281	sdev->speed = speed;
 282	sdev->duplex = duplex;
 283
 284	if (sdev->speed == SPEED_UNKNOWN) {
 285		if (netif_carrier_ok(dev))
 286			netif_carrier_off(dev);
 287	} else {
 288		/* (re)configure link settings */
 289		slic_configure_mac(sdev);
 290		slic_configure_xmt(sdev);
 291		slic_configure_rcv(sdev);
 292		slic_flush_write(sdev);
 293
 294		if (!netif_carrier_ok(dev))
 295			netif_carrier_on(dev);
 296	}
 297}
 298
 299static void slic_configure_link(struct slic_device *sdev, int speed,
 300				unsigned int duplex)
 301{
 302	spin_lock_bh(&sdev->link_lock);
 303	slic_configure_link_locked(sdev, speed, duplex);
 304	spin_unlock_bh(&sdev->link_lock);
 305}
 306
 307static void slic_set_rx_mode(struct net_device *dev)
 308{
 309	struct slic_device *sdev = netdev_priv(dev);
 310	struct netdev_hw_addr *hwaddr;
 311	bool set_promisc;
 312	u64 mcmask;
 313
 314	if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) {
 315		/* Turn on all multicast addresses. We have to do this for
 316		 * promiscuous mode as well as ALLMCAST mode (it saves the
 317		 * microcode from having to keep state about the MAC
 318		 * configuration).
 319		 */
 320		mcmask = ~(u64)0;
 321	} else  {
 322		mcmask = 0;
 323
 324		netdev_for_each_mc_addr(hwaddr, dev) {
 325			slic_set_mcast_bit(&mcmask, hwaddr->addr);
 326		}
 327	}
 328
 329	slic_write(sdev, SLIC_REG_MCASTLOW, lower_32_bits(mcmask));
 330	slic_write(sdev, SLIC_REG_MCASTHIGH, upper_32_bits(mcmask));
 331
 332	set_promisc = !!(dev->flags & IFF_PROMISC);
 333
 334	spin_lock_bh(&sdev->link_lock);
 335	if (sdev->promisc != set_promisc) {
 336		sdev->promisc = set_promisc;
 337		slic_configure_rcv(sdev);
 
 
 338	}
 339	spin_unlock_bh(&sdev->link_lock);
 340}
 341
 342static void slic_xmit_complete(struct slic_device *sdev)
 343{
 344	struct slic_tx_queue *txq = &sdev->txq;
 345	struct net_device *dev = sdev->netdev;
 346	struct slic_tx_buffer *buff;
 347	unsigned int frames = 0;
 348	unsigned int bytes = 0;
 349	unsigned int idx;
 350
 351	/* Limit processing to SLIC_MAX_TX_COMPLETIONS frames to avoid that new
 352	 * completions during processing keeps the loop running endlessly.
 353	 */
 354	do {
 355		idx = slic_next_compl_idx(sdev);
 356		if (idx == SLIC_INVALID_STAT_DESC_IDX)
 357			break;
 358
 359		txq->done_idx = idx;
 360		buff = &txq->txbuffs[idx];
 361
 362		if (unlikely(!buff->skb)) {
 363			netdev_warn(dev,
 364				    "no skb found for desc idx %i\n", idx);
 365			continue;
 366		}
 367		dma_unmap_single(&sdev->pdev->dev,
 368				 dma_unmap_addr(buff, map_addr),
 369				 dma_unmap_len(buff, map_len), DMA_TO_DEVICE);
 370
 371		bytes += buff->skb->len;
 372		frames++;
 373
 374		dev_kfree_skb_any(buff->skb);
 375		buff->skb = NULL;
 376	} while (frames < SLIC_MAX_TX_COMPLETIONS);
 377	/* make sure xmit sees the new value for done_idx */
 378	smp_wmb();
 379
 380	u64_stats_update_begin(&sdev->stats.syncp);
 381	sdev->stats.tx_bytes += bytes;
 382	sdev->stats.tx_packets += frames;
 383	u64_stats_update_end(&sdev->stats.syncp);
 384
 385	netif_tx_lock(dev);
 386	if (netif_queue_stopped(dev) &&
 387	    (slic_get_free_tx_descs(txq) >= SLIC_MIN_TX_WAKEUP_DESCS))
 388		netif_wake_queue(dev);
 389	netif_tx_unlock(dev);
 390}
 391
 392static void slic_refill_rx_queue(struct slic_device *sdev, gfp_t gfp)
 393{
 394	const unsigned int ALIGN_MASK = SLIC_RX_BUFF_ALIGN - 1;
 395	unsigned int maplen = SLIC_RX_BUFF_SIZE;
 396	struct slic_rx_queue *rxq = &sdev->rxq;
 397	struct net_device *dev = sdev->netdev;
 398	struct slic_rx_buffer *buff;
 399	struct slic_rx_desc *desc;
 400	unsigned int misalign;
 401	unsigned int offset;
 402	struct sk_buff *skb;
 403	dma_addr_t paddr;
 404
 405	while (slic_get_free_rx_descs(rxq) > SLIC_MAX_REQ_RX_DESCS) {
 406		skb = alloc_skb(maplen + ALIGN_MASK, gfp);
 407		if (!skb)
 408			break;
 409
 410		paddr = dma_map_single(&sdev->pdev->dev, skb->data, maplen,
 411				       DMA_FROM_DEVICE);
 412		if (dma_mapping_error(&sdev->pdev->dev, paddr)) {
 413			netdev_err(dev, "mapping rx packet failed\n");
 414			/* drop skb */
 415			dev_kfree_skb_any(skb);
 416			break;
 417		}
 418		/* ensure head buffer descriptors are 256 byte aligned */
 419		offset = 0;
 420		misalign = paddr & ALIGN_MASK;
 421		if (misalign) {
 422			offset = SLIC_RX_BUFF_ALIGN - misalign;
 423			skb_reserve(skb, offset);
 424		}
 425		/* the HW expects dma chunks for descriptor + frame data */
 426		desc = (struct slic_rx_desc *)skb->data;
 427		/* temporarily sync descriptor for CPU to clear status */
 428		dma_sync_single_for_cpu(&sdev->pdev->dev, paddr,
 429					offset + sizeof(*desc),
 430					DMA_FROM_DEVICE);
 431		desc->status = 0;
 432		/* return it to HW again */
 433		dma_sync_single_for_device(&sdev->pdev->dev, paddr,
 434					   offset + sizeof(*desc),
 435					   DMA_FROM_DEVICE);
 436
 437		buff = &rxq->rxbuffs[rxq->put_idx];
 438		buff->skb = skb;
 439		dma_unmap_addr_set(buff, map_addr, paddr);
 440		dma_unmap_len_set(buff, map_len, maplen);
 441		buff->addr_offset = offset;
 442		/* complete write to descriptor before it is handed to HW */
 443		wmb();
 444		/* head buffer descriptors are placed immediately before skb */
 445		slic_write(sdev, SLIC_REG_HBAR, lower_32_bits(paddr) + offset);
 446		rxq->put_idx = slic_next_queue_idx(rxq->put_idx, rxq->len);
 447	}
 448}
 449
 450static void slic_handle_frame_error(struct slic_device *sdev,
 451				    struct sk_buff *skb)
 452{
 453	struct slic_stats *stats = &sdev->stats;
 454
 455	if (sdev->model == SLIC_MODEL_OASIS) {
 456		struct slic_rx_info_oasis *info;
 457		u32 status_b;
 458		u32 status;
 459
 460		info = (struct slic_rx_info_oasis *)skb->data;
 461		status = le32_to_cpu(info->frame_status);
 462		status_b = le32_to_cpu(info->frame_status_b);
 463		/* transport layer */
 464		if (status_b & SLIC_VRHSTATB_TPCSUM)
 465			SLIC_INC_STATS_COUNTER(stats, rx_tpcsum);
 466		if (status & SLIC_VRHSTAT_TPOFLO)
 467			SLIC_INC_STATS_COUNTER(stats, rx_tpoflow);
 468		if (status_b & SLIC_VRHSTATB_TPHLEN)
 469			SLIC_INC_STATS_COUNTER(stats, rx_tphlen);
 470		/* ip layer */
 471		if (status_b & SLIC_VRHSTATB_IPCSUM)
 472			SLIC_INC_STATS_COUNTER(stats, rx_ipcsum);
 473		if (status_b & SLIC_VRHSTATB_IPLERR)
 474			SLIC_INC_STATS_COUNTER(stats, rx_iplen);
 475		if (status_b & SLIC_VRHSTATB_IPHERR)
 476			SLIC_INC_STATS_COUNTER(stats, rx_iphlen);
 477		/* link layer */
 478		if (status_b & SLIC_VRHSTATB_RCVE)
 479			SLIC_INC_STATS_COUNTER(stats, rx_early);
 480		if (status_b & SLIC_VRHSTATB_BUFF)
 481			SLIC_INC_STATS_COUNTER(stats, rx_buffoflow);
 482		if (status_b & SLIC_VRHSTATB_CODE)
 483			SLIC_INC_STATS_COUNTER(stats, rx_lcode);
 484		if (status_b & SLIC_VRHSTATB_DRBL)
 485			SLIC_INC_STATS_COUNTER(stats, rx_drbl);
 486		if (status_b & SLIC_VRHSTATB_CRC)
 487			SLIC_INC_STATS_COUNTER(stats, rx_crc);
 488		if (status & SLIC_VRHSTAT_802OE)
 489			SLIC_INC_STATS_COUNTER(stats, rx_oflow802);
 490		if (status_b & SLIC_VRHSTATB_802UE)
 491			SLIC_INC_STATS_COUNTER(stats, rx_uflow802);
 492		if (status_b & SLIC_VRHSTATB_CARRE)
 493			SLIC_INC_STATS_COUNTER(stats, tx_carrier);
 494	} else { /* mojave */
 495		struct slic_rx_info_mojave *info;
 496		u32 status;
 497
 498		info = (struct slic_rx_info_mojave *)skb->data;
 499		status = le32_to_cpu(info->frame_status);
 500		/* transport layer */
 501		if (status & SLIC_VGBSTAT_XPERR) {
 502			u32 xerr = status >> SLIC_VGBSTAT_XERRSHFT;
 503
 504			if (xerr == SLIC_VGBSTAT_XCSERR)
 505				SLIC_INC_STATS_COUNTER(stats, rx_tpcsum);
 506			if (xerr == SLIC_VGBSTAT_XUFLOW)
 507				SLIC_INC_STATS_COUNTER(stats, rx_tpoflow);
 508			if (xerr == SLIC_VGBSTAT_XHLEN)
 509				SLIC_INC_STATS_COUNTER(stats, rx_tphlen);
 510		}
 511		/* ip layer */
 512		if (status & SLIC_VGBSTAT_NETERR) {
 513			u32 nerr = status >> SLIC_VGBSTAT_NERRSHFT &
 514				   SLIC_VGBSTAT_NERRMSK;
 515
 516			if (nerr == SLIC_VGBSTAT_NCSERR)
 517				SLIC_INC_STATS_COUNTER(stats, rx_ipcsum);
 518			if (nerr == SLIC_VGBSTAT_NUFLOW)
 519				SLIC_INC_STATS_COUNTER(stats, rx_iplen);
 520			if (nerr == SLIC_VGBSTAT_NHLEN)
 521				SLIC_INC_STATS_COUNTER(stats, rx_iphlen);
 522		}
 523		/* link layer */
 524		if (status & SLIC_VGBSTAT_LNKERR) {
 525			u32 lerr = status & SLIC_VGBSTAT_LERRMSK;
 526
 527			if (lerr == SLIC_VGBSTAT_LDEARLY)
 528				SLIC_INC_STATS_COUNTER(stats, rx_early);
 529			if (lerr == SLIC_VGBSTAT_LBOFLO)
 530				SLIC_INC_STATS_COUNTER(stats, rx_buffoflow);
 531			if (lerr == SLIC_VGBSTAT_LCODERR)
 532				SLIC_INC_STATS_COUNTER(stats, rx_lcode);
 533			if (lerr == SLIC_VGBSTAT_LDBLNBL)
 534				SLIC_INC_STATS_COUNTER(stats, rx_drbl);
 535			if (lerr == SLIC_VGBSTAT_LCRCERR)
 536				SLIC_INC_STATS_COUNTER(stats, rx_crc);
 537			if (lerr == SLIC_VGBSTAT_LOFLO)
 538				SLIC_INC_STATS_COUNTER(stats, rx_oflow802);
 539			if (lerr == SLIC_VGBSTAT_LUFLO)
 540				SLIC_INC_STATS_COUNTER(stats, rx_uflow802);
 541		}
 542	}
 543	SLIC_INC_STATS_COUNTER(stats, rx_errors);
 544}
 545
 546static void slic_handle_receive(struct slic_device *sdev, unsigned int todo,
 547				unsigned int *done)
 548{
 549	struct slic_rx_queue *rxq = &sdev->rxq;
 550	struct net_device *dev = sdev->netdev;
 551	struct slic_rx_buffer *buff;
 552	struct slic_rx_desc *desc;
 553	unsigned int frames = 0;
 554	unsigned int bytes = 0;
 555	struct sk_buff *skb;
 556	u32 status;
 557	u32 len;
 558
 559	while (todo && (rxq->done_idx != rxq->put_idx)) {
 560		buff = &rxq->rxbuffs[rxq->done_idx];
 561
 562		skb = buff->skb;
 563		if (!skb)
 564			break;
 565
 566		desc = (struct slic_rx_desc *)skb->data;
 567
 568		dma_sync_single_for_cpu(&sdev->pdev->dev,
 569					dma_unmap_addr(buff, map_addr),
 570					buff->addr_offset + sizeof(*desc),
 571					DMA_FROM_DEVICE);
 572
 573		status = le32_to_cpu(desc->status);
 574		if (!(status & SLIC_IRHDDR_SVALID)) {
 575			dma_sync_single_for_device(&sdev->pdev->dev,
 576						   dma_unmap_addr(buff,
 577								  map_addr),
 578						   buff->addr_offset +
 579						   sizeof(*desc),
 580						   DMA_FROM_DEVICE);
 581			break;
 582		}
 583
 584		buff->skb = NULL;
 585
 586		dma_unmap_single(&sdev->pdev->dev,
 587				 dma_unmap_addr(buff, map_addr),
 588				 dma_unmap_len(buff, map_len),
 589				 DMA_FROM_DEVICE);
 590
 591		/* skip rx descriptor that is placed before the frame data */
 592		skb_reserve(skb, SLIC_RX_BUFF_HDR_SIZE);
 593
 594		if (unlikely(status & SLIC_IRHDDR_ERR)) {
 595			slic_handle_frame_error(sdev, skb);
 596			dev_kfree_skb_any(skb);
 597		} else {
 598			struct ethhdr *eh = (struct ethhdr *)skb->data;
 599
 600			if (is_multicast_ether_addr(eh->h_dest))
 601				SLIC_INC_STATS_COUNTER(&sdev->stats, rx_mcasts);
 602
 603			len = le32_to_cpu(desc->length) & SLIC_IRHDDR_FLEN_MSK;
 604			skb_put(skb, len);
 605			skb->protocol = eth_type_trans(skb, dev);
 606			skb->ip_summed = CHECKSUM_UNNECESSARY;
 607
 608			napi_gro_receive(&sdev->napi, skb);
 609
 610			bytes += len;
 611			frames++;
 612		}
 613		rxq->done_idx = slic_next_queue_idx(rxq->done_idx, rxq->len);
 614		todo--;
 615	}
 616
 617	u64_stats_update_begin(&sdev->stats.syncp);
 618	sdev->stats.rx_bytes += bytes;
 619	sdev->stats.rx_packets += frames;
 620	u64_stats_update_end(&sdev->stats.syncp);
 621
 622	slic_refill_rx_queue(sdev, GFP_ATOMIC);
 623}
 624
 625static void slic_handle_link_irq(struct slic_device *sdev)
 626{
 627	struct slic_shmem *sm = &sdev->shmem;
 628	struct slic_shmem_data *sm_data = sm->shmem_data;
 629	unsigned int duplex;
 630	int speed;
 631	u32 link;
 632
 633	link = le32_to_cpu(sm_data->link);
 634
 635	if (link & SLIC_GIG_LINKUP) {
 636		if (link & SLIC_GIG_SPEED_1000)
 637			speed = SPEED_1000;
 638		else if (link & SLIC_GIG_SPEED_100)
 639			speed = SPEED_100;
 640		else
 641			speed = SPEED_10;
 642
 643		duplex = (link & SLIC_GIG_FULLDUPLEX) ? DUPLEX_FULL :
 644							DUPLEX_HALF;
 645	} else {
 646		duplex = DUPLEX_UNKNOWN;
 647		speed = SPEED_UNKNOWN;
 648	}
 649	slic_configure_link(sdev, speed, duplex);
 650}
 651
 652static void slic_handle_upr_irq(struct slic_device *sdev, u32 irqs)
 653{
 654	struct slic_upr *upr;
 655
 656	/* remove upr that caused this irq (always the first entry in list) */
 657	upr = slic_dequeue_upr(sdev);
 658	if (!upr) {
 659		netdev_warn(sdev->netdev, "no upr found on list\n");
 660		return;
 661	}
 662
 663	if (upr->type == SLIC_UPR_LSTAT) {
 664		if (unlikely(irqs & SLIC_ISR_UPCERR_MASK)) {
 665			/* try again */
 666			slic_queue_upr(sdev, upr);
 667			return;
 668		}
 669		slic_handle_link_irq(sdev);
 670	}
 671	kfree(upr);
 672}
 673
 674static int slic_handle_link_change(struct slic_device *sdev)
 675{
 676	return slic_new_upr(sdev, SLIC_UPR_LSTAT, sdev->shmem.link_paddr);
 677}
 678
 679static void slic_handle_err_irq(struct slic_device *sdev, u32 isr)
 680{
 681	struct slic_stats *stats = &sdev->stats;
 682
 683	if (isr & SLIC_ISR_RMISS)
 684		SLIC_INC_STATS_COUNTER(stats, rx_buff_miss);
 685	if (isr & SLIC_ISR_XDROP)
 686		SLIC_INC_STATS_COUNTER(stats, tx_dropped);
 687	if (!(isr & (SLIC_ISR_RMISS | SLIC_ISR_XDROP)))
 688		SLIC_INC_STATS_COUNTER(stats, irq_errs);
 689}
 690
 691static void slic_handle_irq(struct slic_device *sdev, u32 isr,
 692			    unsigned int todo, unsigned int *done)
 693{
 694	if (isr & SLIC_ISR_ERR)
 695		slic_handle_err_irq(sdev, isr);
 696
 697	if (isr & SLIC_ISR_LEVENT)
 698		slic_handle_link_change(sdev);
 699
 700	if (isr & SLIC_ISR_UPC_MASK)
 701		slic_handle_upr_irq(sdev, isr);
 702
 703	if (isr & SLIC_ISR_RCV)
 704		slic_handle_receive(sdev, todo, done);
 705
 706	if (isr & SLIC_ISR_CMD)
 707		slic_xmit_complete(sdev);
 708}
 709
 710static int slic_poll(struct napi_struct *napi, int todo)
 711{
 712	struct slic_device *sdev = container_of(napi, struct slic_device, napi);
 713	struct slic_shmem *sm = &sdev->shmem;
 714	struct slic_shmem_data *sm_data = sm->shmem_data;
 715	u32 isr = le32_to_cpu(sm_data->isr);
 716	int done = 0;
 717
 718	slic_handle_irq(sdev, isr, todo, &done);
 719
 720	if (done < todo) {
 721		napi_complete_done(napi, done);
 722		/* reenable irqs */
 723		sm_data->isr = 0;
 724		/* make sure sm_data->isr is cleard before irqs are reenabled */
 725		wmb();
 726		slic_write(sdev, SLIC_REG_ISR, 0);
 727		slic_flush_write(sdev);
 728	}
 729
 730	return done;
 731}
 732
 733static irqreturn_t slic_irq(int irq, void *dev_id)
 734{
 735	struct slic_device *sdev = dev_id;
 736	struct slic_shmem *sm = &sdev->shmem;
 737	struct slic_shmem_data *sm_data = sm->shmem_data;
 738
 739	slic_write(sdev, SLIC_REG_ICR, SLIC_ICR_INT_MASK);
 740	slic_flush_write(sdev);
 741	/* make sure sm_data->isr is read after ICR_INT_MASK is set */
 742	wmb();
 743
 744	if (!sm_data->isr) {
 745		dma_rmb();
 746		/* spurious interrupt */
 747		slic_write(sdev, SLIC_REG_ISR, 0);
 748		slic_flush_write(sdev);
 749		return IRQ_NONE;
 750	}
 751
 752	napi_schedule_irqoff(&sdev->napi);
 753
 754	return IRQ_HANDLED;
 755}
 756
 757static void slic_card_reset(struct slic_device *sdev)
 758{
 759	u16 cmd;
 760
 761	slic_write(sdev, SLIC_REG_RESET, SLIC_RESET_MAGIC);
 762	/* flush write by means of config space */
 763	pci_read_config_word(sdev->pdev, PCI_COMMAND, &cmd);
 764	mdelay(1);
 765}
 766
 767static int slic_init_stat_queue(struct slic_device *sdev)
 768{
 769	const unsigned int DESC_ALIGN_MASK = SLIC_STATS_DESC_ALIGN - 1;
 770	struct slic_stat_queue *stq = &sdev->stq;
 771	struct slic_stat_desc *descs;
 772	unsigned int misalign;
 773	unsigned int offset;
 774	dma_addr_t paddr;
 775	size_t size;
 776	int err;
 777	int i;
 778
 779	stq->len = SLIC_NUM_STAT_DESCS;
 780	stq->active_array = 0;
 781	stq->done_idx = 0;
 782
 783	size = stq->len * sizeof(*descs) + DESC_ALIGN_MASK;
 784
 785	for (i = 0; i < SLIC_NUM_STAT_DESC_ARRAYS; i++) {
 786		descs = dma_alloc_coherent(&sdev->pdev->dev, size, &paddr,
 787					   GFP_KERNEL);
 788		if (!descs) {
 789			netdev_err(sdev->netdev,
 790				   "failed to allocate status descriptors\n");
 791			err = -ENOMEM;
 792			goto free_descs;
 793		}
 794		/* ensure correct alignment */
 795		offset = 0;
 796		misalign = paddr & DESC_ALIGN_MASK;
 797		if (misalign) {
 798			offset = SLIC_STATS_DESC_ALIGN - misalign;
 799			descs += offset;
 800			paddr += offset;
 801		}
 802
 803		slic_write(sdev, SLIC_REG_RBAR, lower_32_bits(paddr) |
 804						stq->len);
 805		stq->descs[i] = descs;
 806		stq->paddr[i] = paddr;
 807		stq->addr_offset[i] = offset;
 808	}
 809
 810	stq->mem_size = size;
 811
 812	return 0;
 813
 814free_descs:
 815	while (i--) {
 816		dma_free_coherent(&sdev->pdev->dev, stq->mem_size,
 817				  stq->descs[i] - stq->addr_offset[i],
 818				  stq->paddr[i] - stq->addr_offset[i]);
 819	}
 820
 821	return err;
 822}
 823
 824static void slic_free_stat_queue(struct slic_device *sdev)
 825{
 826	struct slic_stat_queue *stq = &sdev->stq;
 827	int i;
 828
 829	for (i = 0; i < SLIC_NUM_STAT_DESC_ARRAYS; i++) {
 830		dma_free_coherent(&sdev->pdev->dev, stq->mem_size,
 831				  stq->descs[i] - stq->addr_offset[i],
 832				  stq->paddr[i] - stq->addr_offset[i]);
 833	}
 834}
 835
 836static int slic_init_tx_queue(struct slic_device *sdev)
 837{
 838	struct slic_tx_queue *txq = &sdev->txq;
 839	struct slic_tx_buffer *buff;
 840	struct slic_tx_desc *desc;
 841	unsigned int i;
 842	int err;
 843
 844	txq->len = SLIC_NUM_TX_DESCS;
 845	txq->put_idx = 0;
 846	txq->done_idx = 0;
 847
 848	txq->txbuffs = kcalloc(txq->len, sizeof(*buff), GFP_KERNEL);
 849	if (!txq->txbuffs)
 850		return -ENOMEM;
 851
 852	txq->dma_pool = dma_pool_create("slic_pool", &sdev->pdev->dev,
 853					sizeof(*desc), SLIC_TX_DESC_ALIGN,
 854					4096);
 855	if (!txq->dma_pool) {
 856		err = -ENOMEM;
 857		netdev_err(sdev->netdev, "failed to create dma pool\n");
 858		goto free_buffs;
 859	}
 860
 861	for (i = 0; i < txq->len; i++) {
 862		buff = &txq->txbuffs[i];
 863		desc = dma_pool_zalloc(txq->dma_pool, GFP_KERNEL,
 864				       &buff->desc_paddr);
 865		if (!desc) {
 866			netdev_err(sdev->netdev,
 867				   "failed to alloc pool chunk (%i)\n", i);
 868			err = -ENOMEM;
 869			goto free_descs;
 870		}
 871
 872		desc->hnd = cpu_to_le32((u32)(i + 1));
 873		desc->cmd = SLIC_CMD_XMT_REQ;
 874		desc->flags = 0;
 875		desc->type = cpu_to_le32(SLIC_CMD_TYPE_DUMB);
 876		buff->desc = desc;
 877	}
 878
 879	return 0;
 880
 881free_descs:
 882	while (i--) {
 883		buff = &txq->txbuffs[i];
 884		dma_pool_free(txq->dma_pool, buff->desc, buff->desc_paddr);
 885	}
 886	dma_pool_destroy(txq->dma_pool);
 887
 888free_buffs:
 889	kfree(txq->txbuffs);
 890
 891	return err;
 892}
 893
 894static void slic_free_tx_queue(struct slic_device *sdev)
 895{
 896	struct slic_tx_queue *txq = &sdev->txq;
 897	struct slic_tx_buffer *buff;
 898	unsigned int i;
 899
 900	for (i = 0; i < txq->len; i++) {
 901		buff = &txq->txbuffs[i];
 902		dma_pool_free(txq->dma_pool, buff->desc, buff->desc_paddr);
 903		if (!buff->skb)
 904			continue;
 905
 906		dma_unmap_single(&sdev->pdev->dev,
 907				 dma_unmap_addr(buff, map_addr),
 908				 dma_unmap_len(buff, map_len), DMA_TO_DEVICE);
 909		consume_skb(buff->skb);
 910	}
 911	dma_pool_destroy(txq->dma_pool);
 912
 913	kfree(txq->txbuffs);
 914}
 915
 916static int slic_init_rx_queue(struct slic_device *sdev)
 917{
 918	struct slic_rx_queue *rxq = &sdev->rxq;
 919	struct slic_rx_buffer *buff;
 920
 921	rxq->len = SLIC_NUM_RX_LES;
 922	rxq->done_idx = 0;
 923	rxq->put_idx = 0;
 924
 925	buff = kcalloc(rxq->len, sizeof(*buff), GFP_KERNEL);
 926	if (!buff)
 927		return -ENOMEM;
 928
 929	rxq->rxbuffs = buff;
 930	slic_refill_rx_queue(sdev, GFP_KERNEL);
 931
 932	return 0;
 933}
 934
 935static void slic_free_rx_queue(struct slic_device *sdev)
 936{
 937	struct slic_rx_queue *rxq = &sdev->rxq;
 938	struct slic_rx_buffer *buff;
 939	unsigned int i;
 940
 941	/* free rx buffers */
 942	for (i = 0; i < rxq->len; i++) {
 943		buff = &rxq->rxbuffs[i];
 944
 945		if (!buff->skb)
 946			continue;
 947
 948		dma_unmap_single(&sdev->pdev->dev,
 949				 dma_unmap_addr(buff, map_addr),
 950				 dma_unmap_len(buff, map_len),
 951				 DMA_FROM_DEVICE);
 952		consume_skb(buff->skb);
 953	}
 954	kfree(rxq->rxbuffs);
 955}
 956
 957static void slic_set_link_autoneg(struct slic_device *sdev)
 958{
 959	unsigned int subid = sdev->pdev->subsystem_device;
 960	u32 val;
 961
 962	if (sdev->is_fiber) {
 963		/* We've got a fiber gigabit interface, and register 4 is
 964		 * different in fiber mode than in copper mode.
 965		 */
 966		/* advertise FD only @1000 Mb */
 967		val = MII_ADVERTISE << 16 | ADVERTISE_1000XFULL |
 968		      ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM;
 969		/* enable PAUSE frames */
 970		slic_write(sdev, SLIC_REG_WPHY, val);
 971		/* reset phy, enable auto-neg  */
 972		val = MII_BMCR << 16 | BMCR_RESET | BMCR_ANENABLE |
 973		      BMCR_ANRESTART;
 974		slic_write(sdev, SLIC_REG_WPHY, val);
 975	} else {	/* copper gigabit */
 976		/* We've got a copper gigabit interface, and register 4 is
 977		 * different in copper mode than in fiber mode.
 978		 */
 979		/* advertise 10/100 Mb modes   */
 980		val = MII_ADVERTISE << 16 | ADVERTISE_100FULL |
 981		      ADVERTISE_100HALF | ADVERTISE_10FULL | ADVERTISE_10HALF;
 982		/* enable PAUSE frames  */
 983		val |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
 984		/* required by the Cicada PHY  */
 985		val |= ADVERTISE_CSMA;
 986		slic_write(sdev, SLIC_REG_WPHY, val);
 987
 988		/* advertise FD only @1000 Mb  */
 989		val = MII_CTRL1000 << 16 | ADVERTISE_1000FULL;
 990		slic_write(sdev, SLIC_REG_WPHY, val);
 991
 992		if (subid != PCI_SUBDEVICE_ID_ALACRITECH_CICADA) {
 993			 /* if a Marvell PHY enable auto crossover */
 994			val = SLIC_MIICR_REG_16 | SLIC_MRV_REG16_XOVERON;
 995			slic_write(sdev, SLIC_REG_WPHY, val);
 996
 997			/* reset phy, enable auto-neg  */
 998			val = MII_BMCR << 16 | BMCR_RESET | BMCR_ANENABLE |
 999			      BMCR_ANRESTART;
1000			slic_write(sdev, SLIC_REG_WPHY, val);
1001		} else {
1002			/* enable and restart auto-neg (don't reset)  */
1003			val = MII_BMCR << 16 | BMCR_ANENABLE | BMCR_ANRESTART;
1004			slic_write(sdev, SLIC_REG_WPHY, val);
1005		}
1006	}
1007}
1008
1009static void slic_set_mac_address(struct slic_device *sdev)
1010{
1011	u8 *addr = sdev->netdev->dev_addr;
1012	u32 val;
1013
1014	val = addr[5] | addr[4] << 8 | addr[3] << 16 | addr[2] << 24;
1015
1016	slic_write(sdev, SLIC_REG_WRADDRAL, val);
1017	slic_write(sdev, SLIC_REG_WRADDRBL, val);
1018
1019	val = addr[0] << 8 | addr[1];
1020
1021	slic_write(sdev, SLIC_REG_WRADDRAH, val);
1022	slic_write(sdev, SLIC_REG_WRADDRBH, val);
1023	slic_flush_write(sdev);
1024}
1025
1026static u32 slic_read_dword_from_firmware(const struct firmware *fw, int *offset)
1027{
1028	int idx = *offset;
1029	__le32 val;
1030
1031	memcpy(&val, fw->data + *offset, sizeof(val));
1032	idx += 4;
1033	*offset = idx;
1034
1035	return le32_to_cpu(val);
1036}
1037
1038MODULE_FIRMWARE(SLIC_RCV_FIRMWARE_MOJAVE);
1039MODULE_FIRMWARE(SLIC_RCV_FIRMWARE_OASIS);
1040
1041static int slic_load_rcvseq_firmware(struct slic_device *sdev)
1042{
1043	const struct firmware *fw;
1044	const char *file;
1045	u32 codelen;
1046	int idx = 0;
1047	u32 instr;
1048	u32 addr;
1049	int err;
1050
1051	file = (sdev->model == SLIC_MODEL_OASIS) ?  SLIC_RCV_FIRMWARE_OASIS :
1052						    SLIC_RCV_FIRMWARE_MOJAVE;
1053	err = request_firmware(&fw, file, &sdev->pdev->dev);
1054	if (err) {
1055		dev_err(&sdev->pdev->dev,
1056			"failed to load receive sequencer firmware %s\n", file);
1057		return err;
1058	}
1059	/* Do an initial sanity check concerning firmware size now. A further
1060	 * check follows below.
1061	 */
1062	if (fw->size < SLIC_FIRMWARE_MIN_SIZE) {
1063		dev_err(&sdev->pdev->dev,
1064			"invalid firmware size %zu (min %u expected)\n",
1065			fw->size, SLIC_FIRMWARE_MIN_SIZE);
1066		err = -EINVAL;
1067		goto release;
1068	}
1069
1070	codelen = slic_read_dword_from_firmware(fw, &idx);
1071
1072	/* do another sanity check against firmware size */
1073	if ((codelen + 4) > fw->size) {
1074		dev_err(&sdev->pdev->dev,
1075			"invalid rcv-sequencer firmware size %zu\n", fw->size);
1076		err = -EINVAL;
1077		goto release;
1078	}
1079
1080	/* download sequencer code to card */
1081	slic_write(sdev, SLIC_REG_RCV_WCS, SLIC_RCVWCS_BEGIN);
1082	for (addr = 0; addr < codelen; addr++) {
1083		__le32 val;
1084		/* write out instruction address */
1085		slic_write(sdev, SLIC_REG_RCV_WCS, addr);
1086
1087		instr = slic_read_dword_from_firmware(fw, &idx);
1088		/* write out the instruction data low addr */
1089		slic_write(sdev, SLIC_REG_RCV_WCS, instr);
1090
1091		val = (__le32)fw->data[idx];
1092		instr = le32_to_cpu(val);
1093		idx++;
1094		/* write out the instruction data high addr */
1095		slic_write(sdev, SLIC_REG_RCV_WCS, instr);
1096	}
1097	/* finish download */
1098	slic_write(sdev, SLIC_REG_RCV_WCS, SLIC_RCVWCS_FINISH);
1099	slic_flush_write(sdev);
1100release:
1101	release_firmware(fw);
1102
1103	return err;
1104}
1105
1106MODULE_FIRMWARE(SLIC_FIRMWARE_MOJAVE);
1107MODULE_FIRMWARE(SLIC_FIRMWARE_OASIS);
1108
1109static int slic_load_firmware(struct slic_device *sdev)
1110{
1111	u32 sectstart[SLIC_FIRMWARE_MAX_SECTIONS];
1112	u32 sectsize[SLIC_FIRMWARE_MAX_SECTIONS];
1113	const struct firmware *fw;
1114	unsigned int datalen;
1115	const char *file;
1116	int code_start;
1117	unsigned int i;
1118	u32 numsects;
1119	int idx = 0;
1120	u32 sect;
1121	u32 instr;
1122	u32 addr;
1123	u32 base;
1124	int err;
1125
1126	file = (sdev->model == SLIC_MODEL_OASIS) ?  SLIC_FIRMWARE_OASIS :
1127						    SLIC_FIRMWARE_MOJAVE;
1128	err = request_firmware(&fw, file, &sdev->pdev->dev);
1129	if (err) {
1130		dev_err(&sdev->pdev->dev, "failed to load firmware %s\n", file);
1131		return err;
1132	}
1133	/* Do an initial sanity check concerning firmware size now. A further
1134	 * check follows below.
1135	 */
1136	if (fw->size < SLIC_FIRMWARE_MIN_SIZE) {
1137		dev_err(&sdev->pdev->dev,
1138			"invalid firmware size %zu (min is %u)\n", fw->size,
1139			SLIC_FIRMWARE_MIN_SIZE);
1140		err = -EINVAL;
1141		goto release;
1142	}
1143
1144	numsects = slic_read_dword_from_firmware(fw, &idx);
1145	if (numsects == 0 || numsects > SLIC_FIRMWARE_MAX_SECTIONS) {
1146		dev_err(&sdev->pdev->dev,
1147			"invalid number of sections in firmware: %u", numsects);
1148		err = -EINVAL;
1149		goto release;
1150	}
1151
1152	datalen = numsects * 8 + 4;
1153	for (i = 0; i < numsects; i++) {
1154		sectsize[i] = slic_read_dword_from_firmware(fw, &idx);
1155		datalen += sectsize[i];
1156	}
1157
1158	/* do another sanity check against firmware size */
1159	if (datalen > fw->size) {
1160		dev_err(&sdev->pdev->dev,
1161			"invalid firmware size %zu (expected >= %u)\n",
1162			fw->size, datalen);
1163		err = -EINVAL;
1164		goto release;
1165	}
1166	/* get sections */
1167	for (i = 0; i < numsects; i++)
1168		sectstart[i] = slic_read_dword_from_firmware(fw, &idx);
1169
1170	code_start = idx;
1171	instr = slic_read_dword_from_firmware(fw, &idx);
1172
1173	for (sect = 0; sect < numsects; sect++) {
1174		unsigned int ssize = sectsize[sect] >> 3;
1175
1176		base = sectstart[sect];
1177
1178		for (addr = 0; addr < ssize; addr++) {
1179			/* write out instruction address */
1180			slic_write(sdev, SLIC_REG_WCS, base + addr);
1181			/* write out instruction to low addr */
1182			slic_write(sdev, SLIC_REG_WCS, instr);
1183			instr = slic_read_dword_from_firmware(fw, &idx);
1184			/* write out instruction to high addr */
1185			slic_write(sdev, SLIC_REG_WCS, instr);
1186			instr = slic_read_dword_from_firmware(fw, &idx);
1187		}
1188	}
1189
1190	idx = code_start;
1191
1192	for (sect = 0; sect < numsects; sect++) {
1193		unsigned int ssize = sectsize[sect] >> 3;
1194
1195		instr = slic_read_dword_from_firmware(fw, &idx);
1196		base = sectstart[sect];
1197		if (base < 0x8000)
1198			continue;
1199
1200		for (addr = 0; addr < ssize; addr++) {
1201			/* write out instruction address */
1202			slic_write(sdev, SLIC_REG_WCS,
1203				   SLIC_WCS_COMPARE | (base + addr));
1204			/* write out instruction to low addr */
1205			slic_write(sdev, SLIC_REG_WCS, instr);
1206			instr = slic_read_dword_from_firmware(fw, &idx);
1207			/* write out instruction to high addr */
1208			slic_write(sdev, SLIC_REG_WCS, instr);
1209			instr = slic_read_dword_from_firmware(fw, &idx);
1210		}
1211	}
1212	slic_flush_write(sdev);
1213	mdelay(10);
1214	/* everything OK, kick off the card */
1215	slic_write(sdev, SLIC_REG_WCS, SLIC_WCS_START);
1216	slic_flush_write(sdev);
1217	/* wait long enough for ucode to init card and reach the mainloop */
1218	mdelay(20);
1219release:
1220	release_firmware(fw);
1221
1222	return err;
1223}
1224
1225static int slic_init_shmem(struct slic_device *sdev)
1226{
1227	struct slic_shmem *sm = &sdev->shmem;
1228	struct slic_shmem_data *sm_data;
1229	dma_addr_t paddr;
1230
1231	sm_data = dma_alloc_coherent(&sdev->pdev->dev, sizeof(*sm_data),
1232				     &paddr, GFP_KERNEL);
1233	if (!sm_data) {
1234		dev_err(&sdev->pdev->dev, "failed to allocate shared memory\n");
1235		return -ENOMEM;
1236	}
1237
1238	sm->shmem_data = sm_data;
1239	sm->isr_paddr = paddr;
1240	sm->link_paddr = paddr + offsetof(struct slic_shmem_data, link);
1241
1242	return 0;
1243}
1244
1245static void slic_free_shmem(struct slic_device *sdev)
1246{
1247	struct slic_shmem *sm = &sdev->shmem;
1248	struct slic_shmem_data *sm_data = sm->shmem_data;
1249
1250	dma_free_coherent(&sdev->pdev->dev, sizeof(*sm_data), sm_data,
1251			  sm->isr_paddr);
1252}
1253
1254static int slic_init_iface(struct slic_device *sdev)
1255{
1256	struct slic_shmem *sm = &sdev->shmem;
1257	int err;
1258
1259	sdev->upr_list.pending = false;
1260
1261	err = slic_init_shmem(sdev);
1262	if (err) {
1263		netdev_err(sdev->netdev, "failed to init shared memory\n");
1264		return err;
1265	}
1266
1267	err = slic_load_firmware(sdev);
1268	if (err) {
1269		netdev_err(sdev->netdev, "failed to load firmware\n");
1270		goto free_sm;
1271	}
1272
1273	err = slic_load_rcvseq_firmware(sdev);
1274	if (err) {
1275		netdev_err(sdev->netdev,
1276			   "failed to load firmware for receive sequencer\n");
1277		goto free_sm;
1278	}
1279
1280	slic_write(sdev, SLIC_REG_ICR, SLIC_ICR_INT_OFF);
1281	slic_flush_write(sdev);
1282	mdelay(1);
1283
1284	err = slic_init_rx_queue(sdev);
1285	if (err) {
1286		netdev_err(sdev->netdev, "failed to init rx queue: %u\n", err);
1287		goto free_sm;
1288	}
1289
1290	err = slic_init_tx_queue(sdev);
1291	if (err) {
1292		netdev_err(sdev->netdev, "failed to init tx queue: %u\n", err);
1293		goto free_rxq;
1294	}
1295
1296	err = slic_init_stat_queue(sdev);
1297	if (err) {
1298		netdev_err(sdev->netdev, "failed to init status queue: %u\n",
1299			   err);
1300		goto free_txq;
1301	}
1302
1303	slic_write(sdev, SLIC_REG_ISP, lower_32_bits(sm->isr_paddr));
1304	napi_enable(&sdev->napi);
1305	/* disable irq mitigation */
1306	slic_write(sdev, SLIC_REG_INTAGG, 0);
1307	slic_write(sdev, SLIC_REG_ISR, 0);
1308	slic_flush_write(sdev);
1309
1310	slic_set_mac_address(sdev);
1311
1312	spin_lock_bh(&sdev->link_lock);
1313	sdev->duplex = DUPLEX_UNKNOWN;
1314	sdev->speed = SPEED_UNKNOWN;
1315	spin_unlock_bh(&sdev->link_lock);
1316
1317	slic_set_link_autoneg(sdev);
1318
1319	err = request_irq(sdev->pdev->irq, slic_irq, IRQF_SHARED, DRV_NAME,
1320			  sdev);
1321	if (err) {
1322		netdev_err(sdev->netdev, "failed to request irq: %u\n", err);
1323		goto disable_napi;
1324	}
1325
1326	slic_write(sdev, SLIC_REG_ICR, SLIC_ICR_INT_ON);
1327	slic_flush_write(sdev);
1328	/* request initial link status */
1329	err = slic_handle_link_change(sdev);
1330	if (err)
1331		netdev_warn(sdev->netdev,
1332			    "failed to set initial link state: %u\n", err);
1333	return 0;
1334
1335disable_napi:
1336	napi_disable(&sdev->napi);
1337	slic_free_stat_queue(sdev);
1338free_txq:
1339	slic_free_tx_queue(sdev);
1340free_rxq:
1341	slic_free_rx_queue(sdev);
1342free_sm:
1343	slic_free_shmem(sdev);
1344	slic_card_reset(sdev);
1345
1346	return err;
1347}
1348
1349static int slic_open(struct net_device *dev)
1350{
1351	struct slic_device *sdev = netdev_priv(dev);
1352	int err;
1353
1354	netif_carrier_off(dev);
1355
1356	err = slic_init_iface(sdev);
1357	if (err) {
1358		netdev_err(dev, "failed to initialize interface: %i\n", err);
1359		return err;
1360	}
1361
1362	netif_start_queue(dev);
1363
1364	return 0;
1365}
1366
1367static int slic_close(struct net_device *dev)
1368{
1369	struct slic_device *sdev = netdev_priv(dev);
1370	u32 val;
1371
1372	netif_stop_queue(dev);
1373
1374	/* stop irq handling */
1375	napi_disable(&sdev->napi);
1376	slic_write(sdev, SLIC_REG_ICR, SLIC_ICR_INT_OFF);
1377	slic_write(sdev, SLIC_REG_ISR, 0);
1378	slic_flush_write(sdev);
1379
1380	free_irq(sdev->pdev->irq, sdev);
1381	/* turn off RCV and XMT and power down PHY */
1382	val = SLIC_GXCR_RESET | SLIC_GXCR_PAUSEEN;
1383	slic_write(sdev, SLIC_REG_WXCFG, val);
1384
1385	val = SLIC_GRCR_RESET | SLIC_GRCR_CTLEN | SLIC_GRCR_ADDRAEN |
1386	      SLIC_GRCR_HASHSIZE << SLIC_GRCR_HASHSIZE_SHIFT;
1387	slic_write(sdev, SLIC_REG_WRCFG, val);
1388
1389	val = MII_BMCR << 16 | BMCR_PDOWN;
1390	slic_write(sdev, SLIC_REG_WPHY, val);
1391	slic_flush_write(sdev);
1392
1393	slic_clear_upr_list(&sdev->upr_list);
1394	slic_write(sdev, SLIC_REG_QUIESCE, 0);
1395
1396	slic_free_stat_queue(sdev);
1397	slic_free_tx_queue(sdev);
1398	slic_free_rx_queue(sdev);
1399	slic_free_shmem(sdev);
1400
1401	slic_card_reset(sdev);
1402	netif_carrier_off(dev);
1403
1404	return 0;
1405}
1406
1407static netdev_tx_t slic_xmit(struct sk_buff *skb, struct net_device *dev)
1408{
1409	struct slic_device *sdev = netdev_priv(dev);
1410	struct slic_tx_queue *txq = &sdev->txq;
1411	struct slic_tx_buffer *buff;
1412	struct slic_tx_desc *desc;
1413	dma_addr_t paddr;
1414	u32 cbar_val;
1415	u32 maplen;
1416
1417	if (unlikely(slic_get_free_tx_descs(txq) < SLIC_MAX_REQ_TX_DESCS)) {
1418		netdev_err(dev, "BUG! not enough tx LEs left: %u\n",
1419			   slic_get_free_tx_descs(txq));
1420		return NETDEV_TX_BUSY;
1421	}
1422
1423	maplen = skb_headlen(skb);
1424	paddr = dma_map_single(&sdev->pdev->dev, skb->data, maplen,
1425			       DMA_TO_DEVICE);
1426	if (dma_mapping_error(&sdev->pdev->dev, paddr)) {
1427		netdev_err(dev, "failed to map tx buffer\n");
1428		goto drop_skb;
1429	}
1430
1431	buff = &txq->txbuffs[txq->put_idx];
1432	buff->skb = skb;
1433	dma_unmap_addr_set(buff, map_addr, paddr);
1434	dma_unmap_len_set(buff, map_len, maplen);
1435
1436	desc = buff->desc;
1437	desc->totlen = cpu_to_le32(maplen);
1438	desc->paddrl = cpu_to_le32(lower_32_bits(paddr));
1439	desc->paddrh = cpu_to_le32(upper_32_bits(paddr));
1440	desc->len = cpu_to_le32(maplen);
1441
1442	txq->put_idx = slic_next_queue_idx(txq->put_idx, txq->len);
1443
1444	cbar_val = lower_32_bits(buff->desc_paddr) | 1;
1445	/* complete writes to RAM and DMA before hardware is informed */
1446	wmb();
1447
1448	slic_write(sdev, SLIC_REG_CBAR, cbar_val);
1449
1450	if (slic_get_free_tx_descs(txq) < SLIC_MAX_REQ_TX_DESCS)
1451		netif_stop_queue(dev);
 
 
1452
1453	return NETDEV_TX_OK;
1454drop_skb:
1455	dev_kfree_skb_any(skb);
1456
1457	return NETDEV_TX_OK;
1458}
1459
1460static void slic_get_stats(struct net_device *dev,
1461			   struct rtnl_link_stats64 *lst)
1462{
1463	struct slic_device *sdev = netdev_priv(dev);
1464	struct slic_stats *stats = &sdev->stats;
1465
1466	SLIC_GET_STATS_COUNTER(lst->rx_packets, stats, rx_packets);
1467	SLIC_GET_STATS_COUNTER(lst->tx_packets, stats, tx_packets);
1468	SLIC_GET_STATS_COUNTER(lst->rx_bytes, stats, rx_bytes);
1469	SLIC_GET_STATS_COUNTER(lst->tx_bytes, stats, tx_bytes);
1470	SLIC_GET_STATS_COUNTER(lst->rx_errors, stats, rx_errors);
1471	SLIC_GET_STATS_COUNTER(lst->rx_dropped, stats, rx_buff_miss);
1472	SLIC_GET_STATS_COUNTER(lst->tx_dropped, stats, tx_dropped);
1473	SLIC_GET_STATS_COUNTER(lst->multicast, stats, rx_mcasts);
1474	SLIC_GET_STATS_COUNTER(lst->rx_over_errors, stats, rx_buffoflow);
1475	SLIC_GET_STATS_COUNTER(lst->rx_crc_errors, stats, rx_crc);
1476	SLIC_GET_STATS_COUNTER(lst->rx_fifo_errors, stats, rx_oflow802);
1477	SLIC_GET_STATS_COUNTER(lst->tx_carrier_errors, stats, tx_carrier);
1478}
1479
1480static int slic_get_sset_count(struct net_device *dev, int sset)
1481{
1482	switch (sset) {
1483	case ETH_SS_STATS:
1484		return ARRAY_SIZE(slic_stats_strings);
1485	default:
1486		return -EOPNOTSUPP;
1487	}
1488}
1489
1490static void slic_get_ethtool_stats(struct net_device *dev,
1491				   struct ethtool_stats *eth_stats, u64 *data)
1492{
1493	struct slic_device *sdev = netdev_priv(dev);
1494	struct slic_stats *stats = &sdev->stats;
1495
1496	SLIC_GET_STATS_COUNTER(data[0], stats, rx_packets);
1497	SLIC_GET_STATS_COUNTER(data[1], stats, rx_bytes);
1498	SLIC_GET_STATS_COUNTER(data[2], stats, rx_mcasts);
1499	SLIC_GET_STATS_COUNTER(data[3], stats, rx_errors);
1500	SLIC_GET_STATS_COUNTER(data[4], stats, rx_buff_miss);
1501	SLIC_GET_STATS_COUNTER(data[5], stats, rx_tpcsum);
1502	SLIC_GET_STATS_COUNTER(data[6], stats, rx_tpoflow);
1503	SLIC_GET_STATS_COUNTER(data[7], stats, rx_tphlen);
1504	SLIC_GET_STATS_COUNTER(data[8], stats, rx_ipcsum);
1505	SLIC_GET_STATS_COUNTER(data[9], stats, rx_iplen);
1506	SLIC_GET_STATS_COUNTER(data[10], stats, rx_iphlen);
1507	SLIC_GET_STATS_COUNTER(data[11], stats, rx_early);
1508	SLIC_GET_STATS_COUNTER(data[12], stats, rx_buffoflow);
1509	SLIC_GET_STATS_COUNTER(data[13], stats, rx_lcode);
1510	SLIC_GET_STATS_COUNTER(data[14], stats, rx_drbl);
1511	SLIC_GET_STATS_COUNTER(data[15], stats, rx_crc);
1512	SLIC_GET_STATS_COUNTER(data[16], stats, rx_oflow802);
1513	SLIC_GET_STATS_COUNTER(data[17], stats, rx_uflow802);
1514	SLIC_GET_STATS_COUNTER(data[18], stats, tx_packets);
1515	SLIC_GET_STATS_COUNTER(data[19], stats, tx_bytes);
1516	SLIC_GET_STATS_COUNTER(data[20], stats, tx_carrier);
1517	SLIC_GET_STATS_COUNTER(data[21], stats, tx_dropped);
1518	SLIC_GET_STATS_COUNTER(data[22], stats, irq_errs);
1519}
1520
1521static void slic_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1522{
1523	if (stringset == ETH_SS_STATS) {
1524		memcpy(data, slic_stats_strings, sizeof(slic_stats_strings));
1525		data += sizeof(slic_stats_strings);
1526	}
1527}
1528
1529static void slic_get_drvinfo(struct net_device *dev,
1530			     struct ethtool_drvinfo *info)
1531{
1532	struct slic_device *sdev = netdev_priv(dev);
1533
1534	strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
 
1535	strlcpy(info->bus_info, pci_name(sdev->pdev), sizeof(info->bus_info));
1536}
1537
1538static const struct ethtool_ops slic_ethtool_ops = {
1539	.get_drvinfo		= slic_get_drvinfo,
1540	.get_link		= ethtool_op_get_link,
1541	.get_strings		= slic_get_strings,
1542	.get_ethtool_stats	= slic_get_ethtool_stats,
1543	.get_sset_count		= slic_get_sset_count,
1544};
1545
1546static const struct net_device_ops slic_netdev_ops = {
1547	.ndo_open		= slic_open,
1548	.ndo_stop		= slic_close,
1549	.ndo_start_xmit		= slic_xmit,
1550	.ndo_set_mac_address	= eth_mac_addr,
1551	.ndo_get_stats64	= slic_get_stats,
1552	.ndo_set_rx_mode	= slic_set_rx_mode,
1553	.ndo_validate_addr	= eth_validate_addr,
1554};
1555
1556static u16 slic_eeprom_csum(unsigned char *eeprom, unsigned int len)
1557{
1558	unsigned char *ptr = eeprom;
1559	u32 csum = 0;
1560	__le16 data;
1561
1562	while (len > 1) {
1563		memcpy(&data, ptr, sizeof(data));
1564		csum += le16_to_cpu(data);
1565		ptr += 2;
1566		len -= 2;
1567	}
1568	if (len > 0)
1569		csum += *(u8 *)ptr;
1570	while (csum >> 16)
1571		csum = (csum & 0xFFFF) + ((csum >> 16) & 0xFFFF);
1572	return ~csum;
1573}
1574
1575/* check eeprom size, magic and checksum */
1576static bool slic_eeprom_valid(unsigned char *eeprom, unsigned int size)
1577{
1578	const unsigned int MAX_SIZE = 128;
1579	const unsigned int MIN_SIZE = 98;
1580	__le16 magic;
1581	__le16 csum;
1582
1583	if (size < MIN_SIZE || size > MAX_SIZE)
1584		return false;
1585	memcpy(&magic, eeprom, sizeof(magic));
1586	if (le16_to_cpu(magic) != SLIC_EEPROM_MAGIC)
1587		return false;
1588	/* cut checksum bytes */
1589	size -= 2;
1590	memcpy(&csum, eeprom + size, sizeof(csum));
1591
1592	return (le16_to_cpu(csum) == slic_eeprom_csum(eeprom, size));
1593}
1594
1595static int slic_read_eeprom(struct slic_device *sdev)
1596{
1597	unsigned int devfn = PCI_FUNC(sdev->pdev->devfn);
1598	struct slic_shmem *sm = &sdev->shmem;
1599	struct slic_shmem_data *sm_data = sm->shmem_data;
1600	const unsigned int MAX_LOOPS = 5000;
1601	unsigned int codesize;
1602	unsigned char *eeprom;
1603	struct slic_upr *upr;
1604	unsigned int i = 0;
1605	dma_addr_t paddr;
1606	int err = 0;
1607	u8 *mac[2];
1608
1609	eeprom = dma_alloc_coherent(&sdev->pdev->dev, SLIC_EEPROM_SIZE,
1610				    &paddr, GFP_KERNEL);
1611	if (!eeprom)
1612		return -ENOMEM;
1613
1614	slic_write(sdev, SLIC_REG_ICR, SLIC_ICR_INT_OFF);
1615	/* setup ISP temporarily */
1616	slic_write(sdev, SLIC_REG_ISP, lower_32_bits(sm->isr_paddr));
1617
1618	err = slic_new_upr(sdev, SLIC_UPR_CONFIG, paddr);
1619	if (!err) {
1620		for (i = 0; i < MAX_LOOPS; i++) {
1621			if (le32_to_cpu(sm_data->isr) & SLIC_ISR_UPC)
1622				break;
1623			mdelay(1);
1624		}
1625		if (i == MAX_LOOPS) {
1626			dev_err(&sdev->pdev->dev,
1627				"timed out while waiting for eeprom data\n");
1628			err = -ETIMEDOUT;
1629		}
1630		upr = slic_dequeue_upr(sdev);
1631		kfree(upr);
1632	}
1633
1634	slic_write(sdev, SLIC_REG_ISP, 0);
1635	slic_write(sdev, SLIC_REG_ISR, 0);
1636	slic_flush_write(sdev);
1637
1638	if (err)
1639		goto free_eeprom;
1640
1641	if (sdev->model == SLIC_MODEL_OASIS) {
1642		struct slic_oasis_eeprom *oee;
1643
1644		oee = (struct slic_oasis_eeprom *)eeprom;
1645		mac[0] = oee->mac;
1646		mac[1] = oee->mac2;
1647		codesize = le16_to_cpu(oee->eeprom_code_size);
1648	} else {
1649		struct slic_mojave_eeprom *mee;
1650
1651		mee = (struct slic_mojave_eeprom *)eeprom;
1652		mac[0] = mee->mac;
1653		mac[1] = mee->mac2;
1654		codesize = le16_to_cpu(mee->eeprom_code_size);
1655	}
1656
1657	if (!slic_eeprom_valid(eeprom, codesize)) {
1658		dev_err(&sdev->pdev->dev, "invalid checksum in eeprom\n");
1659		err = -EINVAL;
1660		goto free_eeprom;
1661	}
1662	/* set mac address */
1663	ether_addr_copy(sdev->netdev->dev_addr, mac[devfn]);
1664free_eeprom:
1665	dma_free_coherent(&sdev->pdev->dev, SLIC_EEPROM_SIZE, eeprom, paddr);
1666
1667	return err;
1668}
1669
1670static int slic_init(struct slic_device *sdev)
1671{
1672	int err;
1673
1674	spin_lock_init(&sdev->upper_lock);
1675	spin_lock_init(&sdev->link_lock);
1676	INIT_LIST_HEAD(&sdev->upr_list.list);
1677	spin_lock_init(&sdev->upr_list.lock);
1678	u64_stats_init(&sdev->stats.syncp);
1679
1680	slic_card_reset(sdev);
1681
1682	err = slic_load_firmware(sdev);
1683	if (err) {
1684		dev_err(&sdev->pdev->dev, "failed to load firmware\n");
1685		return err;
1686	}
1687
1688	/* we need the shared memory to read EEPROM so set it up temporarily */
1689	err = slic_init_shmem(sdev);
1690	if (err) {
1691		dev_err(&sdev->pdev->dev, "failed to init shared memory\n");
1692		return err;
1693	}
1694
1695	err = slic_read_eeprom(sdev);
1696	if (err) {
1697		dev_err(&sdev->pdev->dev, "failed to read eeprom\n");
1698		goto free_sm;
1699	}
1700
1701	slic_card_reset(sdev);
1702	slic_free_shmem(sdev);
1703
1704	return 0;
1705free_sm:
1706	slic_free_shmem(sdev);
1707
1708	return err;
1709}
1710
1711static bool slic_is_fiber(unsigned short subdev)
1712{
1713	switch (subdev) {
1714	/* Mojave */
1715	case PCI_SUBDEVICE_ID_ALACRITECH_1000X1F:
1716	case PCI_SUBDEVICE_ID_ALACRITECH_SES1001F: fallthrough;
1717	/* Oasis */
1718	case PCI_SUBDEVICE_ID_ALACRITECH_SEN2002XF:
1719	case PCI_SUBDEVICE_ID_ALACRITECH_SEN2001XF:
1720	case PCI_SUBDEVICE_ID_ALACRITECH_SEN2104EF:
1721	case PCI_SUBDEVICE_ID_ALACRITECH_SEN2102EF:
1722		return true;
1723	}
1724	return false;
1725}
1726
1727static void slic_configure_pci(struct pci_dev *pdev)
1728{
1729	u16 old;
1730	u16 cmd;
1731
1732	pci_read_config_word(pdev, PCI_COMMAND, &old);
1733
1734	cmd = old | PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
1735	if (old != cmd)
1736		pci_write_config_word(pdev, PCI_COMMAND, cmd);
1737}
1738
1739static int slic_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1740{
1741	struct slic_device *sdev;
1742	struct net_device *dev;
1743	int err;
1744
1745	err = pci_enable_device(pdev);
1746	if (err) {
1747		dev_err(&pdev->dev, "failed to enable PCI device\n");
1748		return err;
1749	}
1750
1751	pci_set_master(pdev);
1752	pci_try_set_mwi(pdev);
1753
1754	slic_configure_pci(pdev);
1755
1756	err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
1757	if (err) {
1758		dev_err(&pdev->dev, "failed to setup DMA\n");
1759		goto disable;
1760	}
1761
1762	dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
1763
1764	err = pci_request_regions(pdev, DRV_NAME);
1765	if (err) {
1766		dev_err(&pdev->dev, "failed to obtain PCI regions\n");
1767		goto disable;
1768	}
1769
1770	dev = alloc_etherdev(sizeof(*sdev));
1771	if (!dev) {
1772		dev_err(&pdev->dev, "failed to alloc ethernet device\n");
1773		err = -ENOMEM;
1774		goto free_regions;
1775	}
1776
1777	SET_NETDEV_DEV(dev, &pdev->dev);
1778	pci_set_drvdata(pdev, dev);
1779	dev->irq = pdev->irq;
1780	dev->netdev_ops = &slic_netdev_ops;
1781	dev->hw_features = NETIF_F_RXCSUM;
1782	dev->features |= dev->hw_features;
1783
1784	dev->ethtool_ops = &slic_ethtool_ops;
1785
1786	sdev = netdev_priv(dev);
1787	sdev->model = (pdev->device == PCI_DEVICE_ID_ALACRITECH_OASIS) ?
1788		      SLIC_MODEL_OASIS : SLIC_MODEL_MOJAVE;
1789	sdev->is_fiber = slic_is_fiber(pdev->subsystem_device);
1790	sdev->pdev = pdev;
1791	sdev->netdev = dev;
1792	sdev->regs = ioremap(pci_resource_start(pdev, 0),
1793				     pci_resource_len(pdev, 0));
1794	if (!sdev->regs) {
1795		dev_err(&pdev->dev, "failed to map registers\n");
1796		err = -ENOMEM;
1797		goto free_netdev;
1798	}
1799
1800	err = slic_init(sdev);
1801	if (err) {
1802		dev_err(&pdev->dev, "failed to initialize driver\n");
1803		goto unmap;
1804	}
1805
1806	netif_napi_add(dev, &sdev->napi, slic_poll, SLIC_NAPI_WEIGHT);
1807	netif_carrier_off(dev);
1808
1809	err = register_netdev(dev);
1810	if (err) {
1811		dev_err(&pdev->dev, "failed to register net device: %i\n", err);
1812		goto unmap;
1813	}
1814
1815	return 0;
1816
1817unmap:
1818	iounmap(sdev->regs);
1819free_netdev:
1820	free_netdev(dev);
1821free_regions:
1822	pci_release_regions(pdev);
1823disable:
1824	pci_disable_device(pdev);
1825
1826	return err;
1827}
1828
1829static void slic_remove(struct pci_dev *pdev)
1830{
1831	struct net_device *dev = pci_get_drvdata(pdev);
1832	struct slic_device *sdev = netdev_priv(dev);
1833
1834	unregister_netdev(dev);
1835	iounmap(sdev->regs);
1836	free_netdev(dev);
1837	pci_release_regions(pdev);
1838	pci_disable_device(pdev);
1839}
1840
1841static struct pci_driver slic_driver = {
1842	.name = DRV_NAME,
1843	.id_table = slic_id_tbl,
1844	.probe = slic_probe,
1845	.remove = slic_remove,
1846};
1847
1848module_pci_driver(slic_driver);
1849
1850MODULE_DESCRIPTION("Alacritech non-accelerated SLIC driver");
1851MODULE_AUTHOR("Lino Sanfilippo <LinoSanfilippo@gmx.de>");
1852MODULE_LICENSE("GPL");