Deleted Added
full compact
tdkphy.c (95722) tdkphy.c (96026)
1/*
2 * Copyright (c) 2000,2001 Jonathan Chen.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 11 unchanged lines hidden (view full) ---

20 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
1/*
2 * Copyright (c) 2000,2001 Jonathan Chen.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 11 unchanged lines hidden (view full) ---

20 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 * $FreeBSD: head/sys/dev/mii/tdkphy.c 95722 2002-04-29 13:07:38Z phk $
28 * $FreeBSD: head/sys/dev/mii/tdkphy.c 96026 2002-05-04 11:00:30Z phk $
29 */
30
31/*
32 * Driver for the TDK 78Q2120 MII
33 *
34 * References:
35 * Datasheet for the 78Q2120 - http://www.tsc.tdk.com/lan/78q2120.pdf
36 * Most of this code stolen from ukphy.c

--- 153 unchanged lines hidden (view full) ---

190
191 switch (IFM_SUBTYPE(ife->ifm_media)) {
192 case IFM_AUTO:
193 /*
194 * If we're already in auto mode, just return.
195 */
196 if (PHY_READ(sc, MII_BMCR) & BMCR_AUTOEN)
197 return (0);
29 */
30
31/*
32 * Driver for the TDK 78Q2120 MII
33 *
34 * References:
35 * Datasheet for the 78Q2120 - http://www.tsc.tdk.com/lan/78q2120.pdf
36 * Most of this code stolen from ukphy.c

--- 153 unchanged lines hidden (view full) ---

190
191 switch (IFM_SUBTYPE(ife->ifm_media)) {
192 case IFM_AUTO:
193 /*
194 * If we're already in auto mode, just return.
195 */
196 if (PHY_READ(sc, MII_BMCR) & BMCR_AUTOEN)
197 return (0);
198 (void) mii_phy_auto(sc, 1);
198 (void) mii_phy_auto(sc);
199 break;
200 case IFM_100_T4:
201 /*
202 * Not supported on MII
203 */
204 return (EINVAL);
205 default:
206 /*

--- 105 unchanged lines hidden ---
199 break;
200 case IFM_100_T4:
201 /*
202 * Not supported on MII
203 */
204 return (EINVAL);
205 default:
206 /*

--- 105 unchanged lines hidden ---