blob: b09270b5d0a56fe484ac0d5a6a77ddaf995adfec [file] [log] [blame]
Pantelis Antoniou48257c42005-10-28 16:25:58 -04001/*
2 * Combined Ethernet driver for Motorola MPC8xx and MPC82xx.
3 *
Vitaly Bordug9b8ee8e2007-09-18 20:05:35 +04004 * Copyright (c) 2003 Intracom S.A.
Pantelis Antoniou48257c42005-10-28 16:25:58 -04005 * by Pantelis Antoniou <panto@intracom.gr>
Vitaly Bordug9b8ee8e2007-09-18 20:05:35 +04006 *
7 * 2005 (c) MontaVista Software, Inc.
Pantelis Antoniou48257c42005-10-28 16:25:58 -04008 * Vitaly Bordug <vbordug@ru.mvista.com>
9 *
Vitaly Bordug9b8ee8e2007-09-18 20:05:35 +040010 * This file is licensed under the terms of the GNU General Public License
11 * version 2. This program is licensed "as is" without any warranty of any
Pantelis Antoniou48257c42005-10-28 16:25:58 -040012 * kind, whether express or implied.
13 */
14
Pantelis Antoniou48257c42005-10-28 16:25:58 -040015#include <linux/module.h>
Pantelis Antoniou48257c42005-10-28 16:25:58 -040016#include <linux/ioport.h>
17#include <linux/slab.h>
Pantelis Antoniou48257c42005-10-28 16:25:58 -040018#include <linux/init.h>
Scott Wood2b5b3a62007-10-01 14:20:57 -050019#include <linux/interrupt.h>
Pantelis Antoniou48257c42005-10-28 16:25:58 -040020#include <linux/netdevice.h>
21#include <linux/etherdevice.h>
Pantelis Antoniou48257c42005-10-28 16:25:58 -040022#include <linux/mii.h>
Vitaly Bordug5b4b8452006-08-14 23:00:30 -070023#include <linux/platform_device.h>
Scott Wood2b5b3a62007-10-01 14:20:57 -050024#include <linux/mdio-bitbang.h>
Grant Likelyaa738322009-04-25 12:53:33 +000025#include <linux/of_mdio.h>
Scott Wood976de6a2007-10-02 10:55:58 -050026#include <linux/of_platform.h>
Pantelis Antoniou48257c42005-10-28 16:25:58 -040027
28#include "fs_enet.h"
29
Scott Wood976de6a2007-10-02 10:55:58 -050030struct bb_info {
Scott Wood2b5b3a62007-10-01 14:20:57 -050031 struct mdiobb_ctrl ctrl;
Scott Wood976de6a2007-10-02 10:55:58 -050032 __be32 __iomem *dir;
33 __be32 __iomem *dat;
34 u32 mdio_msk;
35 u32 mdc_msk;
Scott Wood976de6a2007-10-02 10:55:58 -050036};
37
38/* FIXME: If any other users of GPIO crop up, then these will have to
39 * have some sort of global synchronization to avoid races with other
40 * pins on the same port. The ideal solution would probably be to
41 * bind the ports to a GPIO driver, and have this be a client of it.
42 */
43static inline void bb_set(u32 __iomem *p, u32 m)
Pantelis Antoniou48257c42005-10-28 16:25:58 -040044{
Scott Wood976de6a2007-10-02 10:55:58 -050045 out_be32(p, in_be32(p) | m);
Pantelis Antoniou48257c42005-10-28 16:25:58 -040046}
Pantelis Antoniou48257c42005-10-28 16:25:58 -040047
Scott Wood976de6a2007-10-02 10:55:58 -050048static inline void bb_clr(u32 __iomem *p, u32 m)
Pantelis Antoniou48257c42005-10-28 16:25:58 -040049{
Scott Wood976de6a2007-10-02 10:55:58 -050050 out_be32(p, in_be32(p) & ~m);
Pantelis Antoniou48257c42005-10-28 16:25:58 -040051}
52
Scott Wood976de6a2007-10-02 10:55:58 -050053static inline int bb_read(u32 __iomem *p, u32 m)
Pantelis Antoniou48257c42005-10-28 16:25:58 -040054{
Scott Wood976de6a2007-10-02 10:55:58 -050055 return (in_be32(p) & m) != 0;
Pantelis Antoniou48257c42005-10-28 16:25:58 -040056}
57
Scott Wood2b5b3a62007-10-01 14:20:57 -050058static inline void mdio_dir(struct mdiobb_ctrl *ctrl, int dir)
Pantelis Antoniou48257c42005-10-28 16:25:58 -040059{
Scott Wood2b5b3a62007-10-01 14:20:57 -050060 struct bb_info *bitbang = container_of(ctrl, struct bb_info, ctrl);
61
62 if (dir)
63 bb_set(bitbang->dir, bitbang->mdio_msk);
64 else
65 bb_clr(bitbang->dir, bitbang->mdio_msk);
66
67 /* Read back to flush the write. */
68 in_be32(bitbang->dir);
Pantelis Antoniou48257c42005-10-28 16:25:58 -040069}
70
Scott Wood2b5b3a62007-10-01 14:20:57 -050071static inline int mdio_read(struct mdiobb_ctrl *ctrl)
Pantelis Antoniou48257c42005-10-28 16:25:58 -040072{
Scott Wood2b5b3a62007-10-01 14:20:57 -050073 struct bb_info *bitbang = container_of(ctrl, struct bb_info, ctrl);
Scott Wood976de6a2007-10-02 10:55:58 -050074 return bb_read(bitbang->dat, bitbang->mdio_msk);
Pantelis Antoniou48257c42005-10-28 16:25:58 -040075}
76
Scott Wood2b5b3a62007-10-01 14:20:57 -050077static inline void mdio(struct mdiobb_ctrl *ctrl, int what)
Pantelis Antoniou48257c42005-10-28 16:25:58 -040078{
Scott Wood2b5b3a62007-10-01 14:20:57 -050079 struct bb_info *bitbang = container_of(ctrl, struct bb_info, ctrl);
80
Pantelis Antoniou48257c42005-10-28 16:25:58 -040081 if (what)
Scott Wood976de6a2007-10-02 10:55:58 -050082 bb_set(bitbang->dat, bitbang->mdio_msk);
Pantelis Antoniou48257c42005-10-28 16:25:58 -040083 else
Scott Wood976de6a2007-10-02 10:55:58 -050084 bb_clr(bitbang->dat, bitbang->mdio_msk);
Scott Wood2b5b3a62007-10-01 14:20:57 -050085
86 /* Read back to flush the write. */
87 in_be32(bitbang->dat);
Pantelis Antoniou48257c42005-10-28 16:25:58 -040088}
89
Scott Wood2b5b3a62007-10-01 14:20:57 -050090static inline void mdc(struct mdiobb_ctrl *ctrl, int what)
Pantelis Antoniou48257c42005-10-28 16:25:58 -040091{
Scott Wood2b5b3a62007-10-01 14:20:57 -050092 struct bb_info *bitbang = container_of(ctrl, struct bb_info, ctrl);
93
Pantelis Antoniou48257c42005-10-28 16:25:58 -040094 if (what)
Scott Wood976de6a2007-10-02 10:55:58 -050095 bb_set(bitbang->dat, bitbang->mdc_msk);
Pantelis Antoniou48257c42005-10-28 16:25:58 -040096 else
Scott Wood976de6a2007-10-02 10:55:58 -050097 bb_clr(bitbang->dat, bitbang->mdc_msk);
Scott Wood2b5b3a62007-10-01 14:20:57 -050098
99 /* Read back to flush the write. */
100 in_be32(bitbang->dat);
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400101}
102
Scott Wood2b5b3a62007-10-01 14:20:57 -0500103static struct mdiobb_ops bb_ops = {
104 .owner = THIS_MODULE,
105 .set_mdc = mdc,
106 .set_mdio_dir = mdio_dir,
107 .set_mdio_data = mdio,
108 .get_mdio_data = mdio_read,
109};
Vitaly Bordug5b4b8452006-08-14 23:00:30 -0700110
Scott Wood976de6a2007-10-02 10:55:58 -0500111static int __devinit fs_mii_bitbang_init(struct mii_bus *bus,
112 struct device_node *np)
Vitaly Bordug5b4b8452006-08-14 23:00:30 -0700113{
Scott Wood976de6a2007-10-02 10:55:58 -0500114 struct resource res;
115 const u32 *data;
116 int mdio_pin, mdc_pin, len;
117 struct bb_info *bitbang = bus->priv;
Pantelis Antoniou48257c42005-10-28 16:25:58 -0400118
Scott Wood976de6a2007-10-02 10:55:58 -0500119 int ret = of_address_to_resource(np, 0, &res);
120 if (ret)
121 return ret;
122
Joe Perches28f65c12011-06-09 09:13:32 -0700123 if (resource_size(&res) <= 13)
Scott Wood976de6a2007-10-02 10:55:58 -0500124 return -ENODEV;
125
126 /* This should really encode the pin number as well, but all
127 * we get is an int, and the odds of multiple bitbang mdio buses
128 * is low enough that it's not worth going too crazy.
129 */
Andy Fleming9d9326d2008-04-09 19:38:13 -0500130 snprintf(bus->id, MII_BUS_ID_SIZE, "%x", res.start);
Scott Wood976de6a2007-10-02 10:55:58 -0500131
132 data = of_get_property(np, "fsl,mdio-pin", &len);
133 if (!data || len != 4)
134 return -ENODEV;
135 mdio_pin = *data;
136
137 data = of_get_property(np, "fsl,mdc-pin", &len);
138 if (!data || len != 4)
139 return -ENODEV;
140 mdc_pin = *data;
141
Joe Perches28f65c12011-06-09 09:13:32 -0700142 bitbang->dir = ioremap(res.start, resource_size(&res));
Scott Wood976de6a2007-10-02 10:55:58 -0500143 if (!bitbang->dir)
144 return -ENOMEM;
145
146 bitbang->dat = bitbang->dir + 4;
147 bitbang->mdio_msk = 1 << (31 - mdio_pin);
148 bitbang->mdc_msk = 1 << (31 - mdc_pin);
Scott Wood976de6a2007-10-02 10:55:58 -0500149
150 return 0;
151}
152
Grant Likely74888762011-02-22 21:05:51 -0700153static int __devinit fs_enet_mdio_probe(struct platform_device *ofdev)
Scott Wood976de6a2007-10-02 10:55:58 -0500154{
Scott Wood976de6a2007-10-02 10:55:58 -0500155 struct mii_bus *new_bus;
156 struct bb_info *bitbang;
157 int ret = -ENOMEM;
Scott Wood976de6a2007-10-02 10:55:58 -0500158
Scott Wood976de6a2007-10-02 10:55:58 -0500159 bitbang = kzalloc(sizeof(struct bb_info), GFP_KERNEL);
160 if (!bitbang)
Scott Wood2b5b3a62007-10-01 14:20:57 -0500161 goto out;
Scott Wood976de6a2007-10-02 10:55:58 -0500162
Scott Wood2b5b3a62007-10-01 14:20:57 -0500163 bitbang->ctrl.ops = &bb_ops;
164
165 new_bus = alloc_mdio_bitbang(&bitbang->ctrl);
166 if (!new_bus)
167 goto out_free_priv;
168
Scott Wood976de6a2007-10-02 10:55:58 -0500169 new_bus->name = "CPM2 Bitbanged MII",
Scott Wood976de6a2007-10-02 10:55:58 -0500170
Anatolij Gustschin4eecb1782010-06-03 03:06:54 +0200171 ret = fs_mii_bitbang_init(new_bus, ofdev->dev.of_node);
Scott Wood976de6a2007-10-02 10:55:58 -0500172 if (ret)
Scott Wood2b5b3a62007-10-01 14:20:57 -0500173 goto out_free_bus;
Scott Wood976de6a2007-10-02 10:55:58 -0500174
175 new_bus->phy_mask = ~0;
176 new_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
177 if (!new_bus->irq)
178 goto out_unmap_regs;
179
Lennert Buytenhek18ee49d2008-10-01 15:41:33 +0000180 new_bus->parent = &ofdev->dev;
Scott Wood976de6a2007-10-02 10:55:58 -0500181 dev_set_drvdata(&ofdev->dev, new_bus);
182
Anatolij Gustschin4eecb1782010-06-03 03:06:54 +0200183 ret = of_mdiobus_register(new_bus, ofdev->dev.of_node);
Scott Wood976de6a2007-10-02 10:55:58 -0500184 if (ret)
185 goto out_free_irqs;
186
187 return 0;
188
189out_free_irqs:
190 dev_set_drvdata(&ofdev->dev, NULL);
191 kfree(new_bus->irq);
192out_unmap_regs:
193 iounmap(bitbang->dir);
Scott Wood976de6a2007-10-02 10:55:58 -0500194out_free_bus:
Scott Wood2b5b3a62007-10-01 14:20:57 -0500195 free_mdio_bitbang(new_bus);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700196out_free_priv:
197 kfree(bitbang);
Scott Wood976de6a2007-10-02 10:55:58 -0500198out:
199 return ret;
200}
201
Grant Likely2dc11582010-08-06 09:25:50 -0600202static int fs_enet_mdio_remove(struct platform_device *ofdev)
Scott Wood976de6a2007-10-02 10:55:58 -0500203{
204 struct mii_bus *bus = dev_get_drvdata(&ofdev->dev);
205 struct bb_info *bitbang = bus->priv;
206
207 mdiobus_unregister(bus);
208 dev_set_drvdata(&ofdev->dev, NULL);
209 kfree(bus->irq);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700210 free_mdio_bitbang(bus);
Scott Wood976de6a2007-10-02 10:55:58 -0500211 iounmap(bitbang->dir);
212 kfree(bitbang);
Scott Wood976de6a2007-10-02 10:55:58 -0500213
214 return 0;
215}
216
217static struct of_device_id fs_enet_mdio_bb_match[] = {
218 {
219 .compatible = "fsl,cpm2-mdio-bitbang",
220 },
221 {},
222};
Anton Vorontsove72701a2009-10-14 14:54:52 -0700223MODULE_DEVICE_TABLE(of, fs_enet_mdio_bb_match);
Scott Wood976de6a2007-10-02 10:55:58 -0500224
Grant Likely74888762011-02-22 21:05:51 -0700225static struct platform_driver fs_enet_bb_mdio_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700226 .driver = {
227 .name = "fsl-bb-mdio",
228 .owner = THIS_MODULE,
229 .of_match_table = fs_enet_mdio_bb_match,
230 },
Scott Wood976de6a2007-10-02 10:55:58 -0500231 .probe = fs_enet_mdio_probe,
232 .remove = fs_enet_mdio_remove,
233};
234
Scott Wood2b5b3a62007-10-01 14:20:57 -0500235static int fs_enet_mdio_bb_init(void)
Scott Wood976de6a2007-10-02 10:55:58 -0500236{
Grant Likely74888762011-02-22 21:05:51 -0700237 return platform_driver_register(&fs_enet_bb_mdio_driver);
Scott Wood976de6a2007-10-02 10:55:58 -0500238}
239
Scott Wood2b5b3a62007-10-01 14:20:57 -0500240static void fs_enet_mdio_bb_exit(void)
Scott Wood976de6a2007-10-02 10:55:58 -0500241{
Grant Likely74888762011-02-22 21:05:51 -0700242 platform_driver_unregister(&fs_enet_bb_mdio_driver);
Scott Wood976de6a2007-10-02 10:55:58 -0500243}
244
245module_init(fs_enet_mdio_bb_init);
246module_exit(fs_enet_mdio_bb_exit);