2 * drivers/net/phy/national.c
4 * Driver for National Semiconductor PHYs
6 * Author: Stuart Menefy <stuart.menefy@st.com>
7 * Maintainer: Giuseppe Cavallaro <peppe.cavallaro@st.com>
9 * Copyright (c) 2008 STMicroelectronics Limited
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/mii.h>
21 #include <linux/ethtool.h>
22 #include <linux/phy.h>
23 #include <linux/netdevice.h>
25 /* DP83865 phy identifier values */
26 #define DP83865_PHY_ID 0x20005c7a
28 #define DP83865_INT_MASK_REG 0x15
29 #define DP83865_INT_MASK_STATUS 0x14
31 #define DP83865_INT_REMOTE_FAULT 0x0008
32 #define DP83865_INT_ANE_COMPLETED 0x0010
33 #define DP83865_INT_LINK_CHANGE 0xe000
34 #define DP83865_INT_MASK_DEFAULT (DP83865_INT_REMOTE_FAULT | \
35 DP83865_INT_ANE_COMPLETED | \
36 DP83865_INT_LINK_CHANGE)
38 /* Advanced proprietary configuration */
39 #define NS_EXP_MEM_CTL 0x16
40 #define NS_EXP_MEM_DATA 0x1d
41 #define NS_EXP_MEM_ADD 0x1e
43 #define LED_CTRL_REG 0x13
44 #define AN_FALLBACK_AN 0x0001
45 #define AN_FALLBACK_CRC 0x0002
46 #define AN_FALLBACK_IE 0x0004
47 #define ALL_FALLBACK_ON (AN_FALLBACK_AN | AN_FALLBACK_CRC | AN_FALLBACK_IE)
54 static u8
ns_exp_read(struct phy_device
*phydev
, u16 reg
)
56 phy_write(phydev
, NS_EXP_MEM_ADD
, reg
);
57 return phy_read(phydev
, NS_EXP_MEM_DATA
);
60 static void ns_exp_write(struct phy_device
*phydev
, u16 reg
, u8 data
)
62 phy_write(phydev
, NS_EXP_MEM_ADD
, reg
);
63 phy_write(phydev
, NS_EXP_MEM_DATA
, data
);
66 static int ns_config_intr(struct phy_device
*phydev
)
70 if (phydev
->interrupts
== PHY_INTERRUPT_ENABLED
)
71 err
= phy_write(phydev
, DP83865_INT_MASK_REG
,
72 DP83865_INT_MASK_DEFAULT
);
74 err
= phy_write(phydev
, DP83865_INT_MASK_REG
, 0);
79 static int ns_ack_interrupt(struct phy_device
*phydev
)
81 int ret
= phy_read(phydev
, DP83865_INT_MASK_STATUS
);
88 static void ns_giga_speed_fallback(struct phy_device
*phydev
, int mode
)
90 int bmcr
= phy_read(phydev
, MII_BMCR
);
92 phy_write(phydev
, MII_BMCR
, (bmcr
| BMCR_PDOWN
));
94 /* Enable 8 bit expended memory read/write (no auto increment) */
95 phy_write(phydev
, NS_EXP_MEM_CTL
, 0);
96 phy_write(phydev
, NS_EXP_MEM_ADD
, 0x1C0);
97 phy_write(phydev
, NS_EXP_MEM_DATA
, 0x0008);
98 phy_write(phydev
, MII_BMCR
, (bmcr
& ~BMCR_PDOWN
));
99 phy_write(phydev
, LED_CTRL_REG
, mode
);
102 static void ns_10_base_t_hdx_loopack(struct phy_device
*phydev
, int disable
)
105 ns_exp_write(phydev
, 0x1c0, ns_exp_read(phydev
, 0x1c0) | 1);
107 ns_exp_write(phydev
, 0x1c0,
108 ns_exp_read(phydev
, 0x1c0) & 0xfffe);
110 printk(KERN_DEBUG
"DP83865 PHY: 10BASE-T HDX loopback %s\n",
111 (ns_exp_read(phydev
, 0x1c0) & 0x0001) ? "off" : "on");
114 static int ns_config_init(struct phy_device
*phydev
)
116 ns_giga_speed_fallback(phydev
, ALL_FALLBACK_ON
);
117 /* In the latest MAC or switches design, the 10 Mbps loopback
118 is desired to be turned off. */
119 ns_10_base_t_hdx_loopack(phydev
, hdx_loopback_off
);
120 return ns_ack_interrupt(phydev
);
123 static struct phy_driver dp83865_driver
= {
124 .phy_id
= DP83865_PHY_ID
,
125 .phy_id_mask
= 0xfffffff0,
126 .name
= "NatSemi DP83865",
127 .features
= PHY_GBIT_FEATURES
| SUPPORTED_Pause
| SUPPORTED_Asym_Pause
,
128 .flags
= PHY_HAS_INTERRUPT
,
129 .config_init
= ns_config_init
,
130 .config_aneg
= genphy_config_aneg
,
131 .read_status
= genphy_read_status
,
132 .ack_interrupt
= ns_ack_interrupt
,
133 .config_intr
= ns_config_intr
,
134 .driver
= {.owner
= THIS_MODULE
,}
137 static int __init
ns_init(void)
139 return phy_driver_register(&dp83865_driver
);
142 static void __exit
ns_exit(void)
144 phy_driver_unregister(&dp83865_driver
);
147 MODULE_DESCRIPTION("NatSemi PHY driver");
148 MODULE_AUTHOR("Stuart Menefy");
149 MODULE_LICENSE("GPL");
151 module_init(ns_init
);
152 module_exit(ns_exit
);
154 static struct mdio_device_id __maybe_unused ns_tbl
[] = {
155 { DP83865_PHY_ID
, 0xfffffff0 },
159 MODULE_DEVICE_TABLE(mdio
, ns_tbl
);