/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* MII overrides for Cicada (now Vitesse) PHYs.
*/
#include "miipriv.h"
/*
* The nge driver seems to do some rather specialized programming of
* this PHY. Specifically, it appears that the PHY is programmed for
* 2.5 RGMII operation and the PIN_PRIOITY_SETTING is set for RGMII
* interfaces. For MII interfaces, the echo mode is disabled and the
* 125MHz clock is disabled.
*
* It isn't immediately clear to me how to cleanly do this. One could
* probably argue that this particular PHY would never ever be used in
* a strict MII setting, but I hate to make an incorrect assumption.
*
* For now, absent data sheets on this part, we're going just leave
* the code for this in nge.
*
* If someone has data sheets and can "prove" that the architecture
* works portably across drivers, revisiting this logic and adding code
* to handle these PHYs would be cleaner.
*/
{
case MII_OUI_CICADA:
case MII_OUI_CICADA_2:
case MII_MODEL_CICADA_CS8201:
case MII_MODEL_CICADA_CS8201A:
case MII_MODEL_CICADA_CS8201B:
return (B_TRUE);
default:
break;
}
break;
default:
break;
}
return (B_FALSE);
}