[PATCH] for_each_possible_cpu: defines for_each_possible_cpu
[usb.git] / drivers / net / phy / lxt.c
blobbef79e454c337c0c3d9bf5b1f365be56470b94a9
1 /*
2 * drivers/net/phy/lxt.c
4 * Driver for Intel LXT PHYs
6 * Author: Andy Fleming
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/config.h>
17 #include <linux/kernel.h>
18 #include <linux/sched.h>
19 #include <linux/string.h>
20 #include <linux/errno.h>
21 #include <linux/unistd.h>
22 #include <linux/slab.h>
23 #include <linux/interrupt.h>
24 #include <linux/init.h>
25 #include <linux/delay.h>
26 #include <linux/netdevice.h>
27 #include <linux/etherdevice.h>
28 #include <linux/skbuff.h>
29 #include <linux/spinlock.h>
30 #include <linux/mm.h>
31 #include <linux/module.h>
32 #include <linux/mii.h>
33 #include <linux/ethtool.h>
34 #include <linux/phy.h>
36 #include <asm/io.h>
37 #include <asm/irq.h>
38 #include <asm/uaccess.h>
40 /* The Level one LXT970 is used by many boards */
42 #define MII_LXT970_IER 17 /* Interrupt Enable Register */
44 #define MII_LXT970_IER_IEN 0x0002
46 #define MII_LXT970_ISR 18 /* Interrupt Status Register */
48 #define MII_LXT970_CONFIG 19 /* Configuration Register */
50 /* ------------------------------------------------------------------------- */
51 /* The Level one LXT971 is used on some of my custom boards */
53 /* register definitions for the 971 */
54 #define MII_LXT971_IER 18 /* Interrupt Enable Register */
55 #define MII_LXT971_IER_IEN 0x00f2
57 #define MII_LXT971_ISR 19 /* Interrupt Status Register */
60 MODULE_DESCRIPTION("Intel LXT PHY driver");
61 MODULE_AUTHOR("Andy Fleming");
62 MODULE_LICENSE("GPL");
64 static int lxt970_ack_interrupt(struct phy_device *phydev)
66 int err;
68 err = phy_read(phydev, MII_BMSR);
70 if (err < 0)
71 return err;
73 err = phy_read(phydev, MII_LXT970_ISR);
75 if (err < 0)
76 return err;
78 return 0;
81 static int lxt970_config_intr(struct phy_device *phydev)
83 int err;
85 if(phydev->interrupts == PHY_INTERRUPT_ENABLED)
86 err = phy_write(phydev, MII_LXT970_IER, MII_LXT970_IER_IEN);
87 else
88 err = phy_write(phydev, MII_LXT970_IER, 0);
90 return err;
93 static int lxt970_config_init(struct phy_device *phydev)
95 int err;
97 err = phy_write(phydev, MII_LXT970_CONFIG, 0);
99 return err;
103 static int lxt971_ack_interrupt(struct phy_device *phydev)
105 int err = phy_read(phydev, MII_LXT971_ISR);
107 if (err < 0)
108 return err;
110 return 0;
113 static int lxt971_config_intr(struct phy_device *phydev)
115 int err;
117 if(phydev->interrupts == PHY_INTERRUPT_ENABLED)
118 err = phy_write(phydev, MII_LXT971_IER, MII_LXT971_IER_IEN);
119 else
120 err = phy_write(phydev, MII_LXT971_IER, 0);
122 return err;
125 static struct phy_driver lxt970_driver = {
126 .phy_id = 0x07810000,
127 .name = "LXT970",
128 .phy_id_mask = 0x0fffffff,
129 .features = PHY_BASIC_FEATURES,
130 .flags = PHY_HAS_INTERRUPT,
131 .config_init = lxt970_config_init,
132 .config_aneg = genphy_config_aneg,
133 .read_status = genphy_read_status,
134 .ack_interrupt = lxt970_ack_interrupt,
135 .config_intr = lxt970_config_intr,
136 .driver = { .owner = THIS_MODULE,},
139 static struct phy_driver lxt971_driver = {
140 .phy_id = 0x0001378e,
141 .name = "LXT971",
142 .phy_id_mask = 0x0fffffff,
143 .features = PHY_BASIC_FEATURES,
144 .flags = PHY_HAS_INTERRUPT,
145 .config_aneg = genphy_config_aneg,
146 .read_status = genphy_read_status,
147 .ack_interrupt = lxt971_ack_interrupt,
148 .config_intr = lxt971_config_intr,
149 .driver = { .owner = THIS_MODULE,},
152 static int __init lxt_init(void)
154 int ret;
156 ret = phy_driver_register(&lxt970_driver);
157 if (ret)
158 goto err1;
160 ret = phy_driver_register(&lxt971_driver);
161 if (ret)
162 goto err2;
163 return 0;
165 err2:
166 phy_driver_unregister(&lxt970_driver);
167 err1:
168 return ret;
171 static void __exit lxt_exit(void)
173 phy_driver_unregister(&lxt970_driver);
174 phy_driver_unregister(&lxt971_driver);
177 module_init(lxt_init);
178 module_exit(lxt_exit);