ipv6: avoid high order allocations
[linux-2.6/kvm.git] / drivers / net / phy / lxt.c
blob8ee929b796d848e5440271f92b103ff32f5c9c8d
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/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>
27 #include <linux/mm.h>
28 #include <linux/module.h>
29 #include <linux/mii.h>
30 #include <linux/ethtool.h>
31 #include <linux/phy.h>
33 #include <asm/io.h>
34 #include <asm/irq.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)
63 int err;
65 err = phy_read(phydev, MII_BMSR);
67 if (err < 0)
68 return err;
70 err = phy_read(phydev, MII_LXT970_ISR);
72 if (err < 0)
73 return err;
75 return 0;
78 static int lxt970_config_intr(struct phy_device *phydev)
80 int err;
82 if(phydev->interrupts == PHY_INTERRUPT_ENABLED)
83 err = phy_write(phydev, MII_LXT970_IER, MII_LXT970_IER_IEN);
84 else
85 err = phy_write(phydev, MII_LXT970_IER, 0);
87 return err;
90 static int lxt970_config_init(struct phy_device *phydev)
92 int err;
94 err = phy_write(phydev, MII_LXT970_CONFIG, 0);
96 return err;
100 static int lxt971_ack_interrupt(struct phy_device *phydev)
102 int err = phy_read(phydev, MII_LXT971_ISR);
104 if (err < 0)
105 return err;
107 return 0;
110 static int lxt971_config_intr(struct phy_device *phydev)
112 int err;
114 if(phydev->interrupts == PHY_INTERRUPT_ENABLED)
115 err = phy_write(phydev, MII_LXT971_IER, MII_LXT971_IER_IEN);
116 else
117 err = phy_write(phydev, MII_LXT971_IER, 0);
119 return err;
122 static struct phy_driver lxt970_driver = {
123 .phy_id = 0x78100000,
124 .name = "LXT970",
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,
138 .name = "LXT971",
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)
151 int ret;
153 ret = phy_driver_register(&lxt970_driver);
154 if (ret)
155 goto err1;
157 ret = phy_driver_register(&lxt971_driver);
158 if (ret)
159 goto err2;
160 return 0;
162 err2:
163 phy_driver_unregister(&lxt970_driver);
164 err1:
165 return ret;
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);