summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/io/mii/mii_cicada.c
blob: 58b6cf9aeaf9b5fbf9033a8f9f476721461880bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
 * 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
 * or http://www.opensolaris.org/os/licensing.
 * 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 <sys/types.h>
#include <sys/ddi.h>
#include <sys/sunddi.h>
#include <sys/mii.h>
#include <sys/miiregs.h>
#include "miipriv.h"

#define	MII_CICADA_BYPASS_CONTROL	MII_VENDOR(2)
#define	CICADA_125MHZ_CLOCK_ENABLE	0x0001

#define	MII_CICADA_10BASET_CONTROL	MII_VENDOR(6)
#define	MII_CICADA_DISABLE_ECHO_MODE	0x2000

#define	MII_CICADA_EXT_CONTROL		MII_VENDOR(7)
#define	MII_CICADA_MODE_SELECT_BITS 	0xf000
#define	MII_CICADA_MODE_SELECT_RGMII	0x1000
#define	MII_CICADA_POWER_SUPPLY_BITS	0x0e00
#define	MII_CICADA_POWER_SUPPLY_3_3V	0x0000
#define	MII_CICADA_POWER_SUPPLY_2_5V	0x0200

#define	MII_CICADA_AUXCTRL_STATUS	MII_VENDOR(12)
#define	MII_CICADA_PIN_PRORITY_SETTING	0x0004
#define	MII_CICADA_PIN_PRORITY_DEFAULT	0x0000

/*
 * 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.
 */
boolean_t
phy_cicada_probe(phy_handle_t *ph)
{
	switch (MII_PHY_MFG(ph->phy_id)) {
	case MII_OUI_CICADA:
	case MII_OUI_CICADA_2:
		switch (MII_PHY_MODEL(ph->phy_id)) {
		case MII_MODEL_CICADA_CS8201:
		case MII_MODEL_CICADA_CS8201A:
		case MII_MODEL_CICADA_CS8201B:
			ph->phy_vendor = "Cicada";
			ph->phy_model = "CS8201";
			return (B_TRUE);
		default:
			break;
		}
		break;

	default:
		break;
	}

	return (B_FALSE);
}