netxen_nic_niu.c 23.6 KB
Newer Older
A
Amit S. Kale 已提交
1 2 3
/*
 * Copyright (C) 2003 - 2006 NetXen, Inc.
 * All rights reserved.
4
 *
A
Amit S. Kale 已提交
5 6 7 8
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
9
 *
A
Amit S. Kale 已提交
10 11 12 13
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
14
 *
A
Amit S. Kale 已提交
15 16 17 18
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 * MA  02111-1307, USA.
19
 *
A
Amit S. Kale 已提交
20 21
 * The full GNU General Public License is included in this distribution
 * in the file called LICENSE.
22
 *
A
Amit S. Kale 已提交
23 24 25 26 27 28 29 30 31 32 33 34
 * Contact Information:
 *    info@netxen.com
 * NetXen,
 * 3965 Freedom Circle, Fourth floor,
 * Santa Clara, CA 95054
 *
 *
 * Provides access to the Network Interface Unit h/w block.
 *
 */

#include "netxen_nic.h"
35 36 37 38 39 40 41 42

#define NETXEN_GB_MAC_SOFT_RESET	0x80000000
#define NETXEN_GB_MAC_RESET_PROT_BLK   0x000F0000
#define NETXEN_GB_MAC_ENABLE_TX_RX     0x00000005
#define NETXEN_GB_MAC_PAUSED_FRMS      0x00000020

static long phy_lock_timeout = 100000000;

A
Adrian Bunk 已提交
43
static int phy_lock(struct netxen_adapter *adapter)
44 45 46 47 48
{
	int i;
	int done = 0, timeout = 0;

	while (!done) {
49 50 51
		done =
		    readl(pci_base_offset
			  (adapter, NETXEN_PCIE_REG(PCIE_SEM3_LOCK)));
52 53 54 55 56 57 58 59 60 61 62 63 64 65
		if (done == 1)
			break;
		if (timeout >= phy_lock_timeout) {
			return -1;
		}
		timeout++;
		if (!in_atomic())
			schedule();
		else {
			for (i = 0; i < 20; i++)
				cpu_relax();
		}
	}

66 67
	writel(PHY_LOCK_DRIVER,
	       NETXEN_CRB_NORMALIZE(adapter, NETXEN_PHY_LOCK_ID));
68 69 70
	return 0;
}

A
Adrian Bunk 已提交
71
static int phy_unlock(struct netxen_adapter *adapter)
72
{
73 74
	readl(pci_base_offset(adapter, NETXEN_PCIE_REG(PCIE_SEM3_UNLOCK)));

75 76
	return 0;
}
A
Amit S. Kale 已提交
77 78 79 80 81 82

/* 
 * netxen_niu_gbe_phy_read - read a register from the GbE PHY via
 * mii management interface.
 *
 * Note: The MII management interface goes through port 0.
83
 *	Individual phys are addressed as follows:
A
Amit S. Kale 已提交
84 85 86 87
 * @param phy  [15:8]  phy id
 * @param reg  [7:0]   register number
 *
 * @returns  0 on success
88
 *	  -1 on error
A
Amit S. Kale 已提交
89 90
 *
 */
91 92
int netxen_niu_gbe_phy_read(struct netxen_adapter *adapter, long reg, 
				__u32 * readval)
A
Amit S. Kale 已提交
93 94 95 96
{
	long timeout = 0;
	long result = 0;
	long restore = 0;
97
	long phy = physical_port[adapter->portnum];
A
Al Viro 已提交
98 99 100 101
	__u32 address;
	__u32 command;
	__u32 status;
	__u32 mac_cfg0;
A
Amit S. Kale 已提交
102

103
	if (phy_lock(adapter) != 0) {
104 105 106 107 108 109 110 111
		return -1;
	}

	/*
	 * MII mgmt all goes through port 0 MAC interface,
	 * so it cannot be in reset
	 */

A
Amit S. Kale 已提交
112 113 114 115
	if (netxen_nic_hw_read_wx(adapter, NETXEN_NIU_GB_MAC_CONFIG_0(0),
				  &mac_cfg0, 4))
		return -EIO;
	if (netxen_gb_get_soft_reset(mac_cfg0)) {
A
Al Viro 已提交
116
		__u32 temp;
A
Amit S. Kale 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
		temp = 0;
		netxen_gb_tx_reset_pb(temp);
		netxen_gb_rx_reset_pb(temp);
		netxen_gb_tx_reset_mac(temp);
		netxen_gb_rx_reset_mac(temp);
		if (netxen_nic_hw_write_wx(adapter,
					   NETXEN_NIU_GB_MAC_CONFIG_0(0),
					   &temp, 4))
			return -EIO;
		restore = 1;
	}

	address = 0;
	netxen_gb_mii_mgmt_reg_addr(address, reg);
	netxen_gb_mii_mgmt_phy_addr(address, phy);
	if (netxen_nic_hw_write_wx(adapter, NETXEN_NIU_GB_MII_MGMT_ADDR(0),
				   &address, 4))
		return -EIO;
	command = 0;		/* turn off any prior activity */
	if (netxen_nic_hw_write_wx(adapter, NETXEN_NIU_GB_MII_MGMT_COMMAND(0),
				   &command, 4))
		return -EIO;
	/* send read command */
	netxen_gb_mii_mgmt_set_read_cycle(command);
	if (netxen_nic_hw_write_wx(adapter, NETXEN_NIU_GB_MII_MGMT_COMMAND(0),
				   &command, 4))
		return -EIO;

	status = 0;
	do {
		if (netxen_nic_hw_read_wx(adapter,
					  NETXEN_NIU_GB_MII_MGMT_INDICATE(0),
					  &status, 4))
			return -EIO;
		timeout++;
	} while ((netxen_get_gb_mii_mgmt_busy(status)
		  || netxen_get_gb_mii_mgmt_notvalid(status))
		 && (timeout++ < NETXEN_NIU_PHY_WAITMAX));

	if (timeout < NETXEN_NIU_PHY_WAITMAX) {
		if (netxen_nic_hw_read_wx(adapter,
					  NETXEN_NIU_GB_MII_MGMT_STATUS(0),
					  readval, 4))
			return -EIO;
		result = 0;
	} else
		result = -1;

	if (restore)
		if (netxen_nic_hw_write_wx(adapter,
					   NETXEN_NIU_GB_MAC_CONFIG_0(0),
					   &mac_cfg0, 4))
			return -EIO;
170
	phy_unlock(adapter);
A
Amit S. Kale 已提交
171 172 173 174 175 176 177 178
	return result;
}

/* 
 * netxen_niu_gbe_phy_write - write a register to the GbE PHY via
 * mii management interface.
 *
 * Note: The MII management interface goes through port 0.
179
 *	Individual phys are addressed as follows:
A
Amit S. Kale 已提交
180 181 182 183
 * @param phy      [15:8]  phy id
 * @param reg      [7:0]   register number
 *
 * @returns  0 on success
184
 *	  -1 on error
A
Amit S. Kale 已提交
185 186
 *
 */
187 188
int netxen_niu_gbe_phy_write(struct netxen_adapter *adapter, long reg, 
				__u32 val)
A
Amit S. Kale 已提交
189 190 191 192
{
	long timeout = 0;
	long result = 0;
	long restore = 0;
193
	long phy = physical_port[adapter->portnum];
A
Al Viro 已提交
194 195 196 197
	__u32 address;
	__u32 command;
	__u32 status;
	__u32 mac_cfg0;
A
Amit S. Kale 已提交
198

199 200 201 202 203
	/*
	 * MII mgmt all goes through port 0 MAC interface, so it
	 * cannot be in reset
	 */

A
Amit S. Kale 已提交
204 205 206 207
	if (netxen_nic_hw_read_wx(adapter, NETXEN_NIU_GB_MAC_CONFIG_0(0),
				  &mac_cfg0, 4))
		return -EIO;
	if (netxen_gb_get_soft_reset(mac_cfg0)) {
A
Al Viro 已提交
208
		__u32 temp;
A
Amit S. Kale 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
		temp = 0;
		netxen_gb_tx_reset_pb(temp);
		netxen_gb_rx_reset_pb(temp);
		netxen_gb_tx_reset_mac(temp);
		netxen_gb_rx_reset_mac(temp);

		if (netxen_nic_hw_write_wx(adapter,
					   NETXEN_NIU_GB_MAC_CONFIG_0(0),
					   &temp, 4))
			return -EIO;
		restore = 1;
	}

	command = 0;		/* turn off any prior activity */
	if (netxen_nic_hw_write_wx(adapter, NETXEN_NIU_GB_MII_MGMT_COMMAND(0),
				   &command, 4))
		return -EIO;

	address = 0;
	netxen_gb_mii_mgmt_reg_addr(address, reg);
	netxen_gb_mii_mgmt_phy_addr(address, phy);
	if (netxen_nic_hw_write_wx(adapter, NETXEN_NIU_GB_MII_MGMT_ADDR(0),
				   &address, 4))
		return -EIO;

	if (netxen_nic_hw_write_wx(adapter, NETXEN_NIU_GB_MII_MGMT_CTRL(0),
				   &val, 4))
		return -EIO;

	status = 0;
	do {
		if (netxen_nic_hw_read_wx(adapter,
					  NETXEN_NIU_GB_MII_MGMT_INDICATE(0),
					  &status, 4))
			return -EIO;
		timeout++;
	} while ((netxen_get_gb_mii_mgmt_busy(status))
		 && (timeout++ < NETXEN_NIU_PHY_WAITMAX));

	if (timeout < NETXEN_NIU_PHY_WAITMAX)
		result = 0;
	else
		result = -EIO;

	/* restore the state of port 0 MAC in case we tampered with it */
	if (restore)
		if (netxen_nic_hw_write_wx(adapter,
					   NETXEN_NIU_GB_MAC_CONFIG_0(0),
					   &mac_cfg0, 4))
			return -EIO;

	return result;
}

263
int netxen_niu_xgbe_enable_phy_interrupts(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
264 265 266 267 268
{
	netxen_crb_writelit_adapter(adapter, NETXEN_NIU_INT_MASK, 0x3f);
	return 0;
}

269
int netxen_niu_gbe_enable_phy_interrupts(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
270 271
{
	int result = 0;
A
Al Viro 已提交
272
	__u32 enable = 0;
A
Amit S. Kale 已提交
273 274 275 276 277
	netxen_set_phy_int_link_status_changed(enable);
	netxen_set_phy_int_autoneg_completed(enable);
	netxen_set_phy_int_speed_changed(enable);

	if (0 !=
278
	    netxen_niu_gbe_phy_write(adapter, 
A
Amit S. Kale 已提交
279 280 281 282 283 284 285
				     NETXEN_NIU_GB_MII_MGMT_ADDR_INT_ENABLE,
				     enable))
		result = -EIO;

	return result;
}

286
int netxen_niu_xgbe_disable_phy_interrupts(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
287 288 289 290 291
{
	netxen_crb_writelit_adapter(adapter, NETXEN_NIU_INT_MASK, 0x7f);
	return 0;
}

292
int netxen_niu_gbe_disable_phy_interrupts(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
293 294 295
{
	int result = 0;
	if (0 !=
296
	    netxen_niu_gbe_phy_write(adapter,
A
Amit S. Kale 已提交
297 298 299 300 301 302
				     NETXEN_NIU_GB_MII_MGMT_ADDR_INT_ENABLE, 0))
		result = -EIO;

	return result;
}

A
Adrian Bunk 已提交
303
#if 0
304
int netxen_niu_xgbe_clear_phy_interrupts(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
305 306 307 308
{
	netxen_crb_writelit_adapter(adapter, NETXEN_NIU_ACTIVE_INT, -1);
	return 0;
}
A
Adrian Bunk 已提交
309
#endif  /*  0  */
A
Amit S. Kale 已提交
310

A
Adrian Bunk 已提交
311
static int netxen_niu_gbe_clear_phy_interrupts(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
312 313 314
{
	int result = 0;
	if (0 !=
315
	    netxen_niu_gbe_phy_write(adapter, 
A
Amit S. Kale 已提交
316 317 318 319 320 321 322 323 324 325 326
				     NETXEN_NIU_GB_MII_MGMT_ADDR_INT_STATUS,
				     -EIO))
		result = -EIO;

	return result;
}

/* 
 * netxen_niu_gbe_set_mii_mode- Set 10/100 Mbit Mode for GbE MAC
 *
 */
A
Adrian Bunk 已提交
327 328
static void netxen_niu_gbe_set_mii_mode(struct netxen_adapter *adapter,
					int port, long enable)
A
Amit S. Kale 已提交
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
{
	netxen_crb_writelit_adapter(adapter, NETXEN_NIU_MODE, 0x2);
	netxen_crb_writelit_adapter(adapter, NETXEN_NIU_GB_MAC_CONFIG_0(port),
				    0x80000000);
	netxen_crb_writelit_adapter(adapter, NETXEN_NIU_GB_MAC_CONFIG_0(port),
				    0x0000f0025);
	netxen_crb_writelit_adapter(adapter, NETXEN_NIU_GB_MAC_CONFIG_1(port),
				    0xf1ff);
	netxen_crb_writelit_adapter(adapter,
				    NETXEN_NIU_GB0_GMII_MODE + (port << 3), 0);
	netxen_crb_writelit_adapter(adapter,
				    NETXEN_NIU_GB0_MII_MODE + (port << 3), 1);
	netxen_crb_writelit_adapter(adapter,
				    (NETXEN_NIU_GB0_HALF_DUPLEX + port * 4), 0);
	netxen_crb_writelit_adapter(adapter,
				    NETXEN_NIU_GB_MII_MGMT_CONFIG(port), 0x7);

	if (enable) {
		/* 
		 * Do NOT enable flow control until a suitable solution for 
		 *  shutting down pause frames is found. 
		 */
		netxen_crb_writelit_adapter(adapter,
					    NETXEN_NIU_GB_MAC_CONFIG_0(port),
					    0x5);
	}

356
	if (netxen_niu_gbe_enable_phy_interrupts(adapter))
A
Amit S. Kale 已提交
357
		printk(KERN_ERR PFX "ERROR enabling PHY interrupts\n");
358
	if (netxen_niu_gbe_clear_phy_interrupts(adapter))
A
Amit S. Kale 已提交
359 360 361 362 363 364
		printk(KERN_ERR PFX "ERROR clearing PHY interrupts\n");
}

/* 
 * netxen_niu_gbe_set_gmii_mode- Set GbE Mode for GbE MAC
 */
A
Adrian Bunk 已提交
365 366
static void netxen_niu_gbe_set_gmii_mode(struct netxen_adapter *adapter,
					 int port, long enable)
A
Amit S. Kale 已提交
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
{
	netxen_crb_writelit_adapter(adapter, NETXEN_NIU_MODE, 0x2);
	netxen_crb_writelit_adapter(adapter, NETXEN_NIU_GB_MAC_CONFIG_0(port),
				    0x80000000);
	netxen_crb_writelit_adapter(adapter, NETXEN_NIU_GB_MAC_CONFIG_0(port),
				    0x0000f0025);
	netxen_crb_writelit_adapter(adapter, NETXEN_NIU_GB_MAC_CONFIG_1(port),
				    0xf2ff);
	netxen_crb_writelit_adapter(adapter,
				    NETXEN_NIU_GB0_MII_MODE + (port << 3), 0);
	netxen_crb_writelit_adapter(adapter,
				    NETXEN_NIU_GB0_GMII_MODE + (port << 3), 1);
	netxen_crb_writelit_adapter(adapter,
				    (NETXEN_NIU_GB0_HALF_DUPLEX + port * 4), 0);
	netxen_crb_writelit_adapter(adapter,
				    NETXEN_NIU_GB_MII_MGMT_CONFIG(port), 0x7);

	if (enable) {
		/* 
		 * Do NOT enable flow control until a suitable solution for 
		 *  shutting down pause frames is found. 
		 */
		netxen_crb_writelit_adapter(adapter,
					    NETXEN_NIU_GB_MAC_CONFIG_0(port),
					    0x5);
	}

394
	if (netxen_niu_gbe_enable_phy_interrupts(adapter))
A
Amit S. Kale 已提交
395
		printk(KERN_ERR PFX "ERROR enabling PHY interrupts\n");
396
	if (netxen_niu_gbe_clear_phy_interrupts(adapter))
A
Amit S. Kale 已提交
397 398 399 400 401 402
		printk(KERN_ERR PFX "ERROR clearing PHY interrupts\n");
}

int netxen_niu_gbe_init_port(struct netxen_adapter *adapter, int port)
{
	int result = 0;
A
Al Viro 已提交
403
	__u32 status;
404
	if (adapter->disable_phy_interrupts)
405
		adapter->disable_phy_interrupts(adapter);
A
Amit S. Kale 已提交
406 407 408
	mdelay(2);

	if (0 ==
409
	    netxen_niu_gbe_phy_read(adapter,
A
Amit S. Kale 已提交
410
				    NETXEN_NIU_GB_MII_MGMT_ADDR_PHY_STATUS,
A
Al Viro 已提交
411
				    &status)) {
A
Amit S. Kale 已提交
412 413 414 415 416 417 418 419 420 421 422
		if (netxen_get_phy_link(status)) {
			if (netxen_get_phy_speed(status) == 2) {
				netxen_niu_gbe_set_gmii_mode(adapter, port, 1);
			} else if ((netxen_get_phy_speed(status) == 1)
				   || (netxen_get_phy_speed(status) == 0)) {
				netxen_niu_gbe_set_mii_mode(adapter, port, 1);
			} else {
				result = -1;
			}

		} else {
423 424 425 426 427 428
			/*
			 * We don't have link. Cable  must be unconnected.
			 * Enable phy interrupts so we take action when
			 * plugged in.
			 */

A
Amit S. Kale 已提交
429 430
			netxen_crb_writelit_adapter(adapter,
						    NETXEN_NIU_GB_MAC_CONFIG_0
431 432
						    (port),
						    NETXEN_GB_MAC_SOFT_RESET);
A
Amit S. Kale 已提交
433 434
			netxen_crb_writelit_adapter(adapter,
						    NETXEN_NIU_GB_MAC_CONFIG_0
435 436 437 438 439
						    (port),
						    NETXEN_GB_MAC_RESET_PROT_BLK
						    | NETXEN_GB_MAC_ENABLE_TX_RX
						    |
						    NETXEN_GB_MAC_PAUSED_FRMS);
440
			if (netxen_niu_gbe_clear_phy_interrupts(adapter))
A
Amit S. Kale 已提交
441 442
				printk(KERN_ERR PFX
				       "ERROR clearing PHY interrupts\n");
443
			if (netxen_niu_gbe_enable_phy_interrupts(adapter))
A
Amit S. Kale 已提交
444 445
				printk(KERN_ERR PFX
				       "ERROR enabling PHY interrupts\n");
446
			if (netxen_niu_gbe_clear_phy_interrupts(adapter))
A
Amit S. Kale 已提交
447 448 449 450 451 452 453 454 455 456
				printk(KERN_ERR PFX
				       "ERROR clearing PHY interrupts\n");
			result = -1;
		}
	} else {
		result = -EIO;
	}
	return result;
}

457 458
int netxen_niu_xg_init_port(struct netxen_adapter *adapter, int port)
{
459 460 461
	u32 portnum = physical_port[adapter->portnum];

	netxen_crb_writelit_adapter(adapter,
462
		NETXEN_NIU_XGE_CONFIG_1+(0x10000*portnum), 0x1447);
463
	netxen_crb_writelit_adapter(adapter,
464
		NETXEN_NIU_XGE_CONFIG_0+(0x10000*portnum), 0x5);
465

466
	return 0;
467 468
}

A
Adrian Bunk 已提交
469
#if 0
A
Amit S. Kale 已提交
470 471 472
/* 
 * netxen_niu_gbe_handle_phy_interrupt - Handles GbE PHY interrupts
 * @param enable 0 means don't enable the port
473
 *		 1 means enable (or re-enable) the port
A
Amit S. Kale 已提交
474 475 476 477 478
 */
int netxen_niu_gbe_handle_phy_interrupt(struct netxen_adapter *adapter,
					int port, long enable)
{
	int result = 0;
A
Al Viro 已提交
479
	__u32 int_src;
A
Amit S. Kale 已提交
480 481 482 483

	printk(KERN_INFO PFX "NETXEN: Handling PHY interrupt on port %d"
	       " (device enable = %d)\n", (int)port, (int)enable);

484 485 486 487
	/*
	 * The read of the PHY INT status will clear the pending
	 * interrupt status
	 */
488
	if (netxen_niu_gbe_phy_read(adapter,
A
Amit S. Kale 已提交
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
				    NETXEN_NIU_GB_MII_MGMT_ADDR_INT_STATUS,
				    &int_src) != 0)
		result = -EINVAL;
	else {
		printk(KERN_INFO PFX "PHY Interrupt source = 0x%x \n", int_src);
		if (netxen_get_phy_int_jabber(int_src))
			printk(KERN_INFO PFX "jabber Interrupt ");
		if (netxen_get_phy_int_polarity_changed(int_src))
			printk(KERN_INFO PFX "polarity changed ");
		if (netxen_get_phy_int_energy_detect(int_src))
			printk(KERN_INFO PFX "energy detect \n");
		if (netxen_get_phy_int_downshift(int_src))
			printk(KERN_INFO PFX "downshift \n");
		if (netxen_get_phy_int_mdi_xover_changed(int_src))
			printk(KERN_INFO PFX "mdi_xover_changed ");
		if (netxen_get_phy_int_fifo_over_underflow(int_src))
			printk(KERN_INFO PFX "fifo_over_underflow ");
		if (netxen_get_phy_int_false_carrier(int_src))
			printk(KERN_INFO PFX "false_carrier ");
		if (netxen_get_phy_int_symbol_error(int_src))
			printk(KERN_INFO PFX "symbol_error ");
		if (netxen_get_phy_int_autoneg_completed(int_src))
			printk(KERN_INFO PFX "autoneg_completed ");
		if (netxen_get_phy_int_page_received(int_src))
			printk(KERN_INFO PFX "page_received ");
		if (netxen_get_phy_int_duplex_changed(int_src))
			printk(KERN_INFO PFX "duplex_changed ");
		if (netxen_get_phy_int_autoneg_error(int_src))
			printk(KERN_INFO PFX "autoneg_error ");
		if ((netxen_get_phy_int_speed_changed(int_src))
		    || (netxen_get_phy_int_link_status_changed(int_src))) {
A
Al Viro 已提交
520
			__u32 status;
A
Amit S. Kale 已提交
521 522 523 524

			printk(KERN_INFO PFX
			       "speed_changed or link status changed");
			if (netxen_niu_gbe_phy_read
525
			    (adapter,
A
Amit S. Kale 已提交
526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
			     NETXEN_NIU_GB_MII_MGMT_ADDR_PHY_STATUS,
			     &status) == 0) {
				if (netxen_get_phy_speed(status) == 2) {
					printk
					    (KERN_INFO PFX "Link speed changed"
					     " to 1000 Mbps\n");
					netxen_niu_gbe_set_gmii_mode(adapter,
								     port,
								     enable);
				} else if (netxen_get_phy_speed(status) == 1) {
					printk
					    (KERN_INFO PFX "Link speed changed"
					     " to 100 Mbps\n");
					netxen_niu_gbe_set_mii_mode(adapter,
								    port,
								    enable);
				} else if (netxen_get_phy_speed(status) == 0) {
					printk
					    (KERN_INFO PFX "Link speed changed"
					     " to 10 Mbps\n");
					netxen_niu_gbe_set_mii_mode(adapter,
								    port,
								    enable);
				} else {
550 551
					printk(KERN_ERR PFX "ERROR reading "
					       "PHY status. Invalid speed.\n");
A
Amit S. Kale 已提交
552 553 554 555 556 557 558 559 560 561 562 563 564
					result = -1;
				}
			} else {
				printk(KERN_ERR PFX
				       "ERROR reading PHY status.\n");
				result = -1;
			}

		}
		printk(KERN_INFO "\n");
	}
	return result;
}
A
Adrian Bunk 已提交
565
#endif  /*  0  */
A
Amit S. Kale 已提交
566 567 568 569 570

/*
 * Return the current station MAC address.
 * Note that the passed-in value must already be in network byte order.
 */
A
Adrian Bunk 已提交
571 572
static int netxen_niu_macaddr_get(struct netxen_adapter *adapter,
				  netxen_ethernet_macaddr_t * addr)
A
Amit S. Kale 已提交
573
{
A
Al Viro 已提交
574 575
	u32 stationhigh;
	u32 stationlow;
576
	int phy = physical_port[adapter->portnum];
A
Al Viro 已提交
577
	u8 val[8];
A
Amit S. Kale 已提交
578 579 580 581 582 583 584 585 586 587 588 589

	if (addr == NULL)
		return -EINVAL;
	if ((phy < 0) || (phy > 3))
		return -EINVAL;

	if (netxen_nic_hw_read_wx(adapter, NETXEN_NIU_GB_STATION_ADDR_0(phy),
				  &stationhigh, 4))
		return -EIO;
	if (netxen_nic_hw_read_wx(adapter, NETXEN_NIU_GB_STATION_ADDR_1(phy),
				  &stationlow, 4))
		return -EIO;
A
Al Viro 已提交
590 591
	((__le32 *)val)[1] = cpu_to_le32(stationhigh);
	((__le32 *)val)[0] = cpu_to_le32(stationlow);
A
Amit S. Kale 已提交
592

A
Al Viro 已提交
593
	memcpy(addr, val + 2, 6);
A
Amit S. Kale 已提交
594 595 596 597 598 599 600 601

	return 0;
}

/*
 * Set the station MAC address.
 * Note that the passed-in value must already be in network byte order.
 */
602
int netxen_niu_macaddr_set(struct netxen_adapter *adapter,
A
Amit S. Kale 已提交
603 604
			   netxen_ethernet_macaddr_t addr)
{
A
Al Viro 已提交
605 606
	u8 temp[4];
	u32 val;
607
	int phy = physical_port[adapter->portnum];
608
	unsigned char mac_addr[6];
609
	int i;
610
	DECLARE_MAC_BUF(mac);
611 612

	for (i = 0; i < 10; i++) {
A
Al Viro 已提交
613 614 615
		temp[0] = temp[1] = 0;
		memcpy(temp + 2, addr, 2);
		val = le32_to_cpu(*(__le32 *)temp);
616
		if (netxen_nic_hw_write_wx
A
Al Viro 已提交
617
		    (adapter, NETXEN_NIU_GB_STATION_ADDR_1(phy), &val, 4))
618
			return -EIO;
A
Amit S. Kale 已提交
619

A
Al Viro 已提交
620 621
		memcpy(temp, ((u8 *) addr) + 2, sizeof(__le32));
		val = le32_to_cpu(*(__le32 *)temp);
622
		if (netxen_nic_hw_write_wx
A
Al Viro 已提交
623
		    (adapter, NETXEN_NIU_GB_STATION_ADDR_0(phy), &val, 4))
624
			return -2;
A
Amit S. Kale 已提交
625

626
		netxen_niu_macaddr_get(adapter, 
627
				       (netxen_ethernet_macaddr_t *) mac_addr);
628
		if (memcmp(mac_addr, addr, 6) == 0)
629 630
			break;
	}
A
Amit S. Kale 已提交
631

632 633
	if (i == 10) {
		printk(KERN_ERR "%s: cannot set Mac addr for %s\n",
634
		       netxen_nic_driver_name, adapter->netdev->name);
635 636 637 638
		printk(KERN_ERR "MAC address set: %s.\n",
		       print_mac(mac, addr));
		printk(KERN_ERR "MAC address get: %s.\n",
		       print_mac(mac, mac_addr));
639
	}
A
Amit S. Kale 已提交
640 641 642
	return 0;
}

A
Adrian Bunk 已提交
643
#if 0
A
Amit S. Kale 已提交
644 645 646 647
/* Enable a GbE interface */
int netxen_niu_enable_gbe_port(struct netxen_adapter *adapter,
			       int port, netxen_niu_gbe_ifmode_t mode)
{
A
Al Viro 已提交
648 649 650
	__u32 mac_cfg0;
	__u32 mac_cfg1;
	__u32 mii_cfg;
A
Amit S. Kale 已提交
651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720

	if ((port < 0) || (port > NETXEN_NIU_MAX_GBE_PORTS))
		return -EINVAL;

	mac_cfg0 = 0;
	netxen_gb_soft_reset(mac_cfg0);
	if (netxen_nic_hw_write_wx(adapter, NETXEN_NIU_GB_MAC_CONFIG_0(port),
				   &mac_cfg0, 4))
		return -EIO;
	mac_cfg0 = 0;
	netxen_gb_enable_tx(mac_cfg0);
	netxen_gb_enable_rx(mac_cfg0);
	netxen_gb_unset_rx_flowctl(mac_cfg0);
	netxen_gb_tx_reset_pb(mac_cfg0);
	netxen_gb_rx_reset_pb(mac_cfg0);
	netxen_gb_tx_reset_mac(mac_cfg0);
	netxen_gb_rx_reset_mac(mac_cfg0);

	if (netxen_nic_hw_write_wx(adapter, NETXEN_NIU_GB_MAC_CONFIG_0(port),
				   &mac_cfg0, 4))
		return -EIO;
	mac_cfg1 = 0;
	netxen_gb_set_preamblelen(mac_cfg1, 0xf);
	netxen_gb_set_duplex(mac_cfg1);
	netxen_gb_set_crc_enable(mac_cfg1);
	netxen_gb_set_padshort(mac_cfg1);
	netxen_gb_set_checklength(mac_cfg1);
	netxen_gb_set_hugeframes(mac_cfg1);

	if (mode == NETXEN_NIU_10_100_MB) {
		netxen_gb_set_intfmode(mac_cfg1, 1);
		if (netxen_nic_hw_write_wx(adapter,
					   NETXEN_NIU_GB_MAC_CONFIG_1(port),
					   &mac_cfg1, 4))
			return -EIO;

		/* set mii mode */
		netxen_crb_writelit_adapter(adapter, NETXEN_NIU_GB0_GMII_MODE +
					    (port << 3), 0);
		netxen_crb_writelit_adapter(adapter, NETXEN_NIU_GB0_MII_MODE +
					    (port << 3), 1);

	} else if (mode == NETXEN_NIU_1000_MB) {
		netxen_gb_set_intfmode(mac_cfg1, 2);
		if (netxen_nic_hw_write_wx(adapter,
					   NETXEN_NIU_GB_MAC_CONFIG_1(port),
					   &mac_cfg1, 4))
			return -EIO;
		/* set gmii mode */
		netxen_crb_writelit_adapter(adapter, NETXEN_NIU_GB0_MII_MODE +
					    (port << 3), 0);
		netxen_crb_writelit_adapter(adapter, NETXEN_NIU_GB0_GMII_MODE +
					    (port << 3), 1);
	}
	mii_cfg = 0;
	netxen_gb_set_mii_mgmt_clockselect(mii_cfg, 7);
	if (netxen_nic_hw_write_wx(adapter, NETXEN_NIU_GB_MII_MGMT_CONFIG(port),
				   &mii_cfg, 4))
		return -EIO;
	mac_cfg0 = 0;
	netxen_gb_enable_tx(mac_cfg0);
	netxen_gb_enable_rx(mac_cfg0);
	netxen_gb_unset_rx_flowctl(mac_cfg0);
	netxen_gb_unset_tx_flowctl(mac_cfg0);

	if (netxen_nic_hw_write_wx(adapter, NETXEN_NIU_GB_MAC_CONFIG_0(port),
				   &mac_cfg0, 4))
		return -EIO;
	return 0;
}
A
Adrian Bunk 已提交
721
#endif  /*  0  */
A
Amit S. Kale 已提交
722 723

/* Disable a GbE interface */
724
int netxen_niu_disable_gbe_port(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
725
{
A
Al Viro 已提交
726
	__u32 mac_cfg0;
727
	u32 port = physical_port[adapter->portnum];
A
Amit S. Kale 已提交
728

729
	if (port > NETXEN_NIU_MAX_GBE_PORTS)
730
		return -EINVAL;
A
Amit S. Kale 已提交
731 732 733 734 735 736 737 738 739
	mac_cfg0 = 0;
	netxen_gb_soft_reset(mac_cfg0);
	if (netxen_nic_hw_write_wx(adapter, NETXEN_NIU_GB_MAC_CONFIG_0(port),
				   &mac_cfg0, 4))
		return -EIO;
	return 0;
}

/* Disable an XG interface */
740
int netxen_niu_disable_xg_port(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
741
{
A
Al Viro 已提交
742
	__u32 mac_cfg;
743
	u32 port = physical_port[adapter->portnum];
A
Amit S. Kale 已提交
744

745
	if (port > NETXEN_NIU_MAX_XG_PORTS)
746
		return -EINVAL;
747

A
Amit S. Kale 已提交
748
	mac_cfg = 0;
749 750
	if (netxen_nic_hw_write_wx(adapter,
		NETXEN_NIU_XGE_CONFIG_0 + (0x10000 * port), &mac_cfg, 4))
A
Amit S. Kale 已提交
751 752 753 754 755
		return -EIO;
	return 0;
}

/* Set promiscuous mode for a GbE interface */
756
int netxen_niu_set_promiscuous_mode(struct netxen_adapter *adapter, 
A
Amit S. Kale 已提交
757 758
				    netxen_niu_prom_mode_t mode)
{
A
Al Viro 已提交
759
	__u32 reg;
760
	u32 port = physical_port[adapter->portnum];
A
Amit S. Kale 已提交
761

762
	if (port > NETXEN_NIU_MAX_GBE_PORTS)
A
Amit S. Kale 已提交
763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813
		return -EINVAL;

	/* save previous contents */
	if (netxen_nic_hw_read_wx(adapter, NETXEN_NIU_GB_DROP_WRONGADDR,
				  &reg, 4))
		return -EIO;
	if (mode == NETXEN_NIU_PROMISC_MODE) {
		switch (port) {
		case 0:
			netxen_clear_gb_drop_gb0(reg);
			break;
		case 1:
			netxen_clear_gb_drop_gb1(reg);
			break;
		case 2:
			netxen_clear_gb_drop_gb2(reg);
			break;
		case 3:
			netxen_clear_gb_drop_gb3(reg);
			break;
		default:
			return -EIO;
		}
	} else {
		switch (port) {
		case 0:
			netxen_set_gb_drop_gb0(reg);
			break;
		case 1:
			netxen_set_gb_drop_gb1(reg);
			break;
		case 2:
			netxen_set_gb_drop_gb2(reg);
			break;
		case 3:
			netxen_set_gb_drop_gb3(reg);
			break;
		default:
			return -EIO;
		}
	}
	if (netxen_nic_hw_write_wx(adapter, NETXEN_NIU_GB_DROP_WRONGADDR,
				   &reg, 4))
		return -EIO;
	return 0;
}

/*
 * Set the MAC address for an XG port
 * Note that the passed-in value must already be in network byte order.
 */
814
int netxen_niu_xg_macaddr_set(struct netxen_adapter *adapter,
A
Amit S. Kale 已提交
815 816
			      netxen_ethernet_macaddr_t addr)
{
817
	int phy = physical_port[adapter->portnum];
A
Al Viro 已提交
818 819
	u8 temp[4];
	u32 val;
A
Amit S. Kale 已提交
820

821 822 823
	if ((phy < 0) || (phy > NETXEN_NIU_MAX_XG_PORTS))
		return -EIO;

A
Al Viro 已提交
824
	temp[0] = temp[1] = 0;
825 826 827 828 829 830
	switch (phy) {
	case 0:
	    memcpy(temp + 2, addr, 2);
	    val = le32_to_cpu(*(__le32 *)temp);
	    if (netxen_nic_hw_write_wx(adapter, NETXEN_NIU_XGE_STATION_ADDR_0_1,
				&val, 4))
A
Amit S. Kale 已提交
831 832
		return -EIO;

833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850
	    memcpy(&temp, ((u8 *) addr) + 2, sizeof(__le32));
	    val = le32_to_cpu(*(__le32 *)temp);
	    if (netxen_nic_hw_write_wx(adapter, NETXEN_NIU_XGE_STATION_ADDR_0_HI,
				&val, 4))
		return -EIO;
	    break;

	case 1:
	    memcpy(temp + 2, addr, 2);
	    val = le32_to_cpu(*(__le32 *)temp);
	    if (netxen_nic_hw_write_wx(adapter, NETXEN_NIU_XG1_STATION_ADDR_0_1,
				&val, 4))
		return -EIO;

	    memcpy(&temp, ((u8 *) addr) + 2, sizeof(__le32));
	    val = le32_to_cpu(*(__le32 *)temp);
	    if (netxen_nic_hw_write_wx(adapter, NETXEN_NIU_XG1_STATION_ADDR_0_HI,
				&val, 4))
A
Amit S. Kale 已提交
851
		return -EIO;
852 853 854 855 856 857
	    break;

	default:
	    printk(KERN_ERR "Unknown port %d\n", phy);
	    break;
	}
A
Amit S. Kale 已提交
858 859 860 861

	return 0;
}

A
Adrian Bunk 已提交
862
#if 0
A
Amit S. Kale 已提交
863 864 865 866
/*
 * Return the current station MAC address.
 * Note that the passed-in value must already be in network byte order.
 */
867
int netxen_niu_xg_macaddr_get(struct netxen_adapter *adapter,
A
Amit S. Kale 已提交
868 869
			      netxen_ethernet_macaddr_t * addr)
{
870
	int phy = physical_port[adapter->portnum];
A
Al Viro 已提交
871 872 873
	u32 stationhigh;
	u32 stationlow;
	u8 val[8];
A
Amit S. Kale 已提交
874 875 876 877 878 879 880 881 882 883 884 885

	if (addr == NULL)
		return -EINVAL;
	if (phy != 0)
		return -EINVAL;

	if (netxen_nic_hw_read_wx(adapter, NETXEN_NIU_XGE_STATION_ADDR_0_HI,
				  &stationhigh, 4))
		return -EIO;
	if (netxen_nic_hw_read_wx(adapter, NETXEN_NIU_XGE_STATION_ADDR_0_1,
				  &stationlow, 4))
		return -EIO;
A
Al Viro 已提交
886 887
	((__le32 *)val)[1] = cpu_to_le32(stationhigh);
	((__le32 *)val)[0] = cpu_to_le32(stationlow);
A
Amit S. Kale 已提交
888

A
Al Viro 已提交
889
	memcpy(addr, val + 2, 6);
A
Amit S. Kale 已提交
890 891 892

	return 0;
}
A
Adrian Bunk 已提交
893
#endif  /*  0  */
A
Amit S. Kale 已提交
894 895

int netxen_niu_xg_set_promiscuous_mode(struct netxen_adapter *adapter,
896
				       netxen_niu_prom_mode_t mode)
A
Amit S. Kale 已提交
897
{
A
Al Viro 已提交
898
	__u32 reg;
899
	u32 port = physical_port[adapter->portnum];
A
Amit S. Kale 已提交
900

901
	if (port > NETXEN_NIU_MAX_XG_PORTS)
A
Amit S. Kale 已提交
902 903
		return -EINVAL;

904 905 906
	if (netxen_nic_hw_read_wx(adapter,
		NETXEN_NIU_XGE_CONFIG_1 + (0x10000 * port), &reg, 4))
			return -EIO;
A
Amit S. Kale 已提交
907 908 909 910 911
	if (mode == NETXEN_NIU_PROMISC_MODE)
		reg = (reg | 0x2000UL);
	else
		reg = (reg & ~0x2000UL);

912 913
	netxen_crb_writelit_adapter(adapter,
		NETXEN_NIU_XGE_CONFIG_1 + (0x10000 * port), reg);
A
Amit S. Kale 已提交
914 915 916

	return 0;
}