netxen_nic_niu.c 23.5 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;

43
static inline 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;
}

71
static inline 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;
}

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

309
int netxen_niu_gbe_clear_phy_interrupts(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
310 311 312
{
	int result = 0;
	if (0 !=
313
	    netxen_niu_gbe_phy_write(adapter, 
A
Amit S. Kale 已提交
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 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
				     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
 *
 */
void netxen_niu_gbe_set_mii_mode(struct netxen_adapter *adapter,
				 int port, long enable)
{
	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);
	}

354
	if (netxen_niu_gbe_enable_phy_interrupts(adapter))
A
Amit S. Kale 已提交
355
		printk(KERN_ERR PFX "ERROR enabling PHY interrupts\n");
356
	if (netxen_niu_gbe_clear_phy_interrupts(adapter))
A
Amit S. Kale 已提交
357 358 359 360 361 362 363 364 365 366 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
		printk(KERN_ERR PFX "ERROR clearing PHY interrupts\n");
}

/* 
 * netxen_niu_gbe_set_gmii_mode- Set GbE Mode for GbE MAC
 */
void netxen_niu_gbe_set_gmii_mode(struct netxen_adapter *adapter,
				  int port, long enable)
{
	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);
	}

392
	if (netxen_niu_gbe_enable_phy_interrupts(adapter))
A
Amit S. Kale 已提交
393
		printk(KERN_ERR PFX "ERROR enabling PHY interrupts\n");
394
	if (netxen_niu_gbe_clear_phy_interrupts(adapter))
A
Amit S. Kale 已提交
395 396 397 398 399 400
		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 已提交
401
	__u32 status;
402
	if (adapter->disable_phy_interrupts)
403
		adapter->disable_phy_interrupts(adapter);
A
Amit S. Kale 已提交
404 405 406
	mdelay(2);

	if (0 ==
407
	    netxen_niu_gbe_phy_read(adapter,
A
Amit S. Kale 已提交
408
				    NETXEN_NIU_GB_MII_MGMT_ADDR_PHY_STATUS,
A
Al Viro 已提交
409
				    &status)) {
A
Amit S. Kale 已提交
410 411 412 413 414 415 416 417 418 419 420
		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 {
421 422 423 424 425 426
			/*
			 * We don't have link. Cable  must be unconnected.
			 * Enable phy interrupts so we take action when
			 * plugged in.
			 */

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

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

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

464
	return 0;
465 466
}

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

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

481 482 483 484
	/*
	 * The read of the PHY INT status will clear the pending
	 * interrupt status
	 */
485
	if (netxen_niu_gbe_phy_read(adapter,
A
Amit S. Kale 已提交
486 487 488 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
				    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 已提交
517
			__u32 status;
A
Amit S. Kale 已提交
518 519 520 521

			printk(KERN_INFO PFX
			       "speed_changed or link status changed");
			if (netxen_niu_gbe_phy_read
522
			    (adapter,
A
Amit S. Kale 已提交
523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567
			     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 {
					printk(KERN_ERR PFX "ERROR reading"
					       "PHY status. Illegal speed.\n");
					result = -1;
				}
			} else {
				printk(KERN_ERR PFX
				       "ERROR reading PHY status.\n");
				result = -1;
			}

		}
		printk(KERN_INFO "\n");
	}
	return result;
}

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

	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 已提交
586 587
	((__le32 *)val)[1] = cpu_to_le32(stationhigh);
	((__le32 *)val)[0] = cpu_to_le32(stationlow);
A
Amit S. Kale 已提交
588

A
Al Viro 已提交
589
	memcpy(addr, val + 2, 6);
A
Amit S. Kale 已提交
590 591 592 593 594 595 596 597

	return 0;
}

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

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

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

622
		netxen_niu_macaddr_get(adapter, 
623
				       (netxen_ethernet_macaddr_t *) mac_addr);
624
		if (memcmp(mac_addr, addr, 6) == 0)
625 626
			break;
	}
A
Amit S. Kale 已提交
627

628 629
	if (i == 10) {
		printk(KERN_ERR "%s: cannot set Mac addr for %s\n",
630
		       netxen_nic_driver_name, adapter->netdev->name);
631 632 633 634
		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));
635
	}
A
Amit S. Kale 已提交
636 637 638 639 640 641 642
	return 0;
}

/* 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 已提交
643 644 645
	__u32 mac_cfg0;
	__u32 mac_cfg1;
	__u32 mii_cfg;
A
Amit S. Kale 已提交
646 647 648 649 650 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

	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;
}

/* Disable a GbE interface */
718
int netxen_niu_disable_gbe_port(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
719
{
A
Al Viro 已提交
720
	__u32 mac_cfg0;
721
	u32 port = physical_port[adapter->portnum];
A
Amit S. Kale 已提交
722

723
	if (port > NETXEN_NIU_MAX_GBE_PORTS)
724
		return -EINVAL;
A
Amit S. Kale 已提交
725 726 727 728 729 730 731 732 733
	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 */
734
int netxen_niu_disable_xg_port(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
735
{
A
Al Viro 已提交
736
	__u32 mac_cfg;
737
	u32 port = physical_port[adapter->portnum];
A
Amit S. Kale 已提交
738

739
	if (port > NETXEN_NIU_MAX_XG_PORTS)
740
		return -EINVAL;
741

A
Amit S. Kale 已提交
742
	mac_cfg = 0;
743 744
	if (netxen_nic_hw_write_wx(adapter,
		NETXEN_NIU_XGE_CONFIG_0 + (0x10000 * port), &mac_cfg, 4))
A
Amit S. Kale 已提交
745 746 747 748 749
		return -EIO;
	return 0;
}

/* Set promiscuous mode for a GbE interface */
750
int netxen_niu_set_promiscuous_mode(struct netxen_adapter *adapter, 
A
Amit S. Kale 已提交
751 752
				    netxen_niu_prom_mode_t mode)
{
A
Al Viro 已提交
753
	__u32 reg;
754
	u32 port = physical_port[adapter->portnum];
A
Amit S. Kale 已提交
755

756
	if (port > NETXEN_NIU_MAX_GBE_PORTS)
A
Amit S. Kale 已提交
757 758 759 760 761 762 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
		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.
 */
808
int netxen_niu_xg_macaddr_set(struct netxen_adapter *adapter,
A
Amit S. Kale 已提交
809 810
			      netxen_ethernet_macaddr_t addr)
{
811
	int phy = physical_port[adapter->portnum];
A
Al Viro 已提交
812 813
	u8 temp[4];
	u32 val;
A
Amit S. Kale 已提交
814

815 816 817
	if ((phy < 0) || (phy > NETXEN_NIU_MAX_XG_PORTS))
		return -EIO;

A
Al Viro 已提交
818
	temp[0] = temp[1] = 0;
819 820 821 822 823 824
	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 已提交
825 826
		return -EIO;

827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844
	    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 已提交
845
		return -EIO;
846 847 848 849 850 851
	    break;

	default:
	    printk(KERN_ERR "Unknown port %d\n", phy);
	    break;
	}
A
Amit S. Kale 已提交
852 853 854 855 856 857 858 859

	return 0;
}

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

	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 已提交
879 880
	((__le32 *)val)[1] = cpu_to_le32(stationhigh);
	((__le32 *)val)[0] = cpu_to_le32(stationlow);
A
Amit S. Kale 已提交
881

A
Al Viro 已提交
882
	memcpy(addr, val + 2, 6);
A
Amit S. Kale 已提交
883 884 885 886 887

	return 0;
}

int netxen_niu_xg_set_promiscuous_mode(struct netxen_adapter *adapter,
888
				       netxen_niu_prom_mode_t mode)
A
Amit S. Kale 已提交
889
{
A
Al Viro 已提交
890
	__u32 reg;
891
	u32 port = physical_port[adapter->portnum];
A
Amit S. Kale 已提交
892

893
	if (port > NETXEN_NIU_MAX_XG_PORTS)
A
Amit S. Kale 已提交
894 895
		return -EINVAL;

896 897 898
	if (netxen_nic_hw_read_wx(adapter,
		NETXEN_NIU_XGE_CONFIG_1 + (0x10000 * port), &reg, 4))
			return -EIO;
A
Amit S. Kale 已提交
899 900 901 902 903
	if (mode == NETXEN_NIU_PROMISC_MODE)
		reg = (reg | 0x2000UL);
	else
		reg = (reg & ~0x2000UL);

904 905
	netxen_crb_writelit_adapter(adapter,
		NETXEN_NIU_XGE_CONFIG_1 + (0x10000 * port), reg);
A
Amit S. Kale 已提交
906 907 908

	return 0;
}