2 * drivers/net/phy/lxt.c
4 * Driver for Intel LXT PHYs
8 * Copyright (c) 2004 Freescale Semiconductor, Inc.
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
16 #include <linux/kernel.h>
17 #include <linux/string.h>
18 #include <linux/errno.h>
19 #include <linux/unistd.h>
20 #include <linux/interrupt.h>
21 #include <linux/init.h>
22 #include <linux/delay.h>
23 #include <linux/netdevice.h>
24 #include <linux/etherdevice.h>
25 #include <linux/skbuff.h>
26 #include <linux/spinlock.h>
28 #include <linux/module.h>
29 #include <linux/mii.h>
30 #include <linux/ethtool.h>
31 #include <linux/phy.h>
35 #include <asm/uaccess.h>
37 /* The Level one LXT970 is used by many boards */
39 #define MII_LXT970_IER 17 /* Interrupt Enable Register */
41 #define MII_LXT970_IER_IEN 0x0002
43 #define MII_LXT970_ISR 18 /* Interrupt Status Register */
45 #define MII_LXT970_CONFIG 19 /* Configuration Register */
47 /* ------------------------------------------------------------------------- */
48 /* The Level one LXT971 is used on some of my custom boards */
50 /* register definitions for the 971 */
51 #define MII_LXT971_IER 18 /* Interrupt Enable Register */
52 #define MII_LXT971_IER_IEN 0x00f2
54 #define MII_LXT971_ISR 19 /* Interrupt Status Register */
57 MODULE_DESCRIPTION("Intel LXT PHY driver");
58 MODULE_AUTHOR("Andy Fleming");
59 MODULE_LICENSE("GPL");
61 static int lxt970_ack_interrupt(struct phy_device
*phydev
)
65 err
= phy_read(phydev
, MII_BMSR
);
70 err
= phy_read(phydev
, MII_LXT970_ISR
);
78 static int lxt970_config_intr(struct phy_device
*phydev
)
82 if(phydev
->interrupts
== PHY_INTERRUPT_ENABLED
)
83 err
= phy_write(phydev
, MII_LXT970_IER
, MII_LXT970_IER_IEN
);
85 err
= phy_write(phydev
, MII_LXT970_IER
, 0);
90 static int lxt970_config_init(struct phy_device
*phydev
)
94 err
= phy_write(phydev
, MII_LXT970_CONFIG
, 0);
100 static int lxt971_ack_interrupt(struct phy_device
*phydev
)
102 int err
= phy_read(phydev
, MII_LXT971_ISR
);
110 static int lxt971_config_intr(struct phy_device
*phydev
)
114 if(phydev
->interrupts
== PHY_INTERRUPT_ENABLED
)
115 err
= phy_write(phydev
, MII_LXT971_IER
, MII_LXT971_IER_IEN
);
117 err
= phy_write(phydev
, MII_LXT971_IER
, 0);
122 static struct phy_driver lxt970_driver
= {
123 .phy_id
= 0x78100000,
125 .phy_id_mask
= 0xfffffff0,
126 .features
= PHY_BASIC_FEATURES
,
127 .flags
= PHY_HAS_INTERRUPT
,
128 .config_init
= lxt970_config_init
,
129 .config_aneg
= genphy_config_aneg
,
130 .read_status
= genphy_read_status
,
131 .ack_interrupt
= lxt970_ack_interrupt
,
132 .config_intr
= lxt970_config_intr
,
133 .driver
= { .owner
= THIS_MODULE
,},
136 static struct phy_driver lxt971_driver
= {
137 .phy_id
= 0x001378e0,
139 .phy_id_mask
= 0xfffffff0,
140 .features
= PHY_BASIC_FEATURES
,
141 .flags
= PHY_HAS_INTERRUPT
,
142 .config_aneg
= genphy_config_aneg
,
143 .read_status
= genphy_read_status
,
144 .ack_interrupt
= lxt971_ack_interrupt
,
145 .config_intr
= lxt971_config_intr
,
146 .driver
= { .owner
= THIS_MODULE
,},
149 static int __init
lxt_init(void)
153 ret
= phy_driver_register(&lxt970_driver
);
157 ret
= phy_driver_register(&lxt971_driver
);
163 phy_driver_unregister(&lxt970_driver
);
168 static void __exit
lxt_exit(void)
170 phy_driver_unregister(&lxt970_driver
);
171 phy_driver_unregister(&lxt971_driver
);
174 module_init(lxt_init
);
175 module_exit(lxt_exit
);
177 static struct mdio_device_id lxt_tbl
[] = {
178 { 0x78100000, 0xfffffff0 },
179 { 0x001378e0, 0xfffffff0 },
183 MODULE_DEVICE_TABLE(mdio
, lxt_tbl
);