ARM: 6205/1: perf: ensure counter delta is treated as unsigned
[linux-2.6/libata-dev.git] / drivers / net / ibm_newemac / rgmii.c
blob108919bcdf137959d9bb2b5957607132ebabb407
1 /*
2 * drivers/net/ibm_newemac/rgmii.c
4 * Driver for PowerPC 4xx on-chip ethernet controller, RGMII bridge support.
6 * Copyright 2007 Benjamin Herrenschmidt, IBM Corp.
7 * <benh@kernel.crashing.org>
9 * Based on the arch/ppc version of the driver:
11 * Copyright (c) 2004, 2005 Zultys Technologies.
12 * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
14 * Based on original work by
15 * Matt Porter <mporter@kernel.crashing.org>
16 * Copyright 2004 MontaVista Software, Inc.
18 * This program is free software; you can redistribute it and/or modify it
19 * under the terms of the GNU General Public License as published by the
20 * Free Software Foundation; either version 2 of the License, or (at your
21 * option) any later version.
24 #include <linux/slab.h>
25 #include <linux/kernel.h>
26 #include <linux/ethtool.h>
27 #include <asm/io.h>
29 #include "emac.h"
30 #include "debug.h"
32 // XXX FIXME: Axon seems to support a subset of the RGMII, we
33 // thus need to take that into account and possibly change some
34 // of the bit settings below that don't seem to quite match the
35 // AXON spec
37 /* RGMIIx_FER */
38 #define RGMII_FER_MASK(idx) (0x7 << ((idx) * 4))
39 #define RGMII_FER_RTBI(idx) (0x4 << ((idx) * 4))
40 #define RGMII_FER_RGMII(idx) (0x5 << ((idx) * 4))
41 #define RGMII_FER_TBI(idx) (0x6 << ((idx) * 4))
42 #define RGMII_FER_GMII(idx) (0x7 << ((idx) * 4))
43 #define RGMII_FER_MII(idx) RGMII_FER_GMII(idx)
45 /* RGMIIx_SSR */
46 #define RGMII_SSR_MASK(idx) (0x7 << ((idx) * 8))
47 #define RGMII_SSR_100(idx) (0x2 << ((idx) * 8))
48 #define RGMII_SSR_1000(idx) (0x4 << ((idx) * 8))
50 /* RGMII bridge supports only GMII/TBI and RGMII/RTBI PHYs */
51 static inline int rgmii_valid_mode(int phy_mode)
53 return phy_mode == PHY_MODE_GMII ||
54 phy_mode == PHY_MODE_MII ||
55 phy_mode == PHY_MODE_RGMII ||
56 phy_mode == PHY_MODE_TBI ||
57 phy_mode == PHY_MODE_RTBI;
60 static inline const char *rgmii_mode_name(int mode)
62 switch (mode) {
63 case PHY_MODE_RGMII:
64 return "RGMII";
65 case PHY_MODE_TBI:
66 return "TBI";
67 case PHY_MODE_GMII:
68 return "GMII";
69 case PHY_MODE_MII:
70 return "MII";
71 case PHY_MODE_RTBI:
72 return "RTBI";
73 default:
74 BUG();
78 static inline u32 rgmii_mode_mask(int mode, int input)
80 switch (mode) {
81 case PHY_MODE_RGMII:
82 return RGMII_FER_RGMII(input);
83 case PHY_MODE_TBI:
84 return RGMII_FER_TBI(input);
85 case PHY_MODE_GMII:
86 return RGMII_FER_GMII(input);
87 case PHY_MODE_MII:
88 return RGMII_FER_MII(input);
89 case PHY_MODE_RTBI:
90 return RGMII_FER_RTBI(input);
91 default:
92 BUG();
96 int __devinit rgmii_attach(struct of_device *ofdev, int input, int mode)
98 struct rgmii_instance *dev = dev_get_drvdata(&ofdev->dev);
99 struct rgmii_regs __iomem *p = dev->base;
101 RGMII_DBG(dev, "attach(%d)" NL, input);
103 /* Check if we need to attach to a RGMII */
104 if (input < 0 || !rgmii_valid_mode(mode)) {
105 printk(KERN_ERR "%s: unsupported settings !\n",
106 ofdev->dev.of_node->full_name);
107 return -ENODEV;
110 mutex_lock(&dev->lock);
112 /* Enable this input */
113 out_be32(&p->fer, in_be32(&p->fer) | rgmii_mode_mask(mode, input));
115 printk(KERN_NOTICE "%s: input %d in %s mode\n",
116 ofdev->dev.of_node->full_name, input, rgmii_mode_name(mode));
118 ++dev->users;
120 mutex_unlock(&dev->lock);
122 return 0;
125 void rgmii_set_speed(struct of_device *ofdev, int input, int speed)
127 struct rgmii_instance *dev = dev_get_drvdata(&ofdev->dev);
128 struct rgmii_regs __iomem *p = dev->base;
129 u32 ssr;
131 mutex_lock(&dev->lock);
133 ssr = in_be32(&p->ssr) & ~RGMII_SSR_MASK(input);
135 RGMII_DBG(dev, "speed(%d, %d)" NL, input, speed);
137 if (speed == SPEED_1000)
138 ssr |= RGMII_SSR_1000(input);
139 else if (speed == SPEED_100)
140 ssr |= RGMII_SSR_100(input);
142 out_be32(&p->ssr, ssr);
144 mutex_unlock(&dev->lock);
147 void rgmii_get_mdio(struct of_device *ofdev, int input)
149 struct rgmii_instance *dev = dev_get_drvdata(&ofdev->dev);
150 struct rgmii_regs __iomem *p = dev->base;
151 u32 fer;
153 RGMII_DBG2(dev, "get_mdio(%d)" NL, input);
155 if (!(dev->flags & EMAC_RGMII_FLAG_HAS_MDIO))
156 return;
158 mutex_lock(&dev->lock);
160 fer = in_be32(&p->fer);
161 fer |= 0x00080000u >> input;
162 out_be32(&p->fer, fer);
163 (void)in_be32(&p->fer);
165 DBG2(dev, " fer = 0x%08x\n", fer);
168 void rgmii_put_mdio(struct of_device *ofdev, int input)
170 struct rgmii_instance *dev = dev_get_drvdata(&ofdev->dev);
171 struct rgmii_regs __iomem *p = dev->base;
172 u32 fer;
174 RGMII_DBG2(dev, "put_mdio(%d)" NL, input);
176 if (!(dev->flags & EMAC_RGMII_FLAG_HAS_MDIO))
177 return;
179 fer = in_be32(&p->fer);
180 fer &= ~(0x00080000u >> input);
181 out_be32(&p->fer, fer);
182 (void)in_be32(&p->fer);
184 DBG2(dev, " fer = 0x%08x\n", fer);
186 mutex_unlock(&dev->lock);
189 void rgmii_detach(struct of_device *ofdev, int input)
191 struct rgmii_instance *dev = dev_get_drvdata(&ofdev->dev);
192 struct rgmii_regs __iomem *p;
194 BUG_ON(!dev || dev->users == 0);
195 p = dev->base;
197 mutex_lock(&dev->lock);
199 RGMII_DBG(dev, "detach(%d)" NL, input);
201 /* Disable this input */
202 out_be32(&p->fer, in_be32(&p->fer) & ~RGMII_FER_MASK(input));
204 --dev->users;
206 mutex_unlock(&dev->lock);
209 int rgmii_get_regs_len(struct of_device *ofdev)
211 return sizeof(struct emac_ethtool_regs_subhdr) +
212 sizeof(struct rgmii_regs);
215 void *rgmii_dump_regs(struct of_device *ofdev, void *buf)
217 struct rgmii_instance *dev = dev_get_drvdata(&ofdev->dev);
218 struct emac_ethtool_regs_subhdr *hdr = buf;
219 struct rgmii_regs *regs = (struct rgmii_regs *)(hdr + 1);
221 hdr->version = 0;
222 hdr->index = 0; /* for now, are there chips with more than one
223 * rgmii ? if yes, then we'll add a cell_index
224 * like we do for emac
226 memcpy_fromio(regs, dev->base, sizeof(struct rgmii_regs));
227 return regs + 1;
231 static int __devinit rgmii_probe(struct of_device *ofdev,
232 const struct of_device_id *match)
234 struct device_node *np = ofdev->dev.of_node;
235 struct rgmii_instance *dev;
236 struct resource regs;
237 int rc;
239 rc = -ENOMEM;
240 dev = kzalloc(sizeof(struct rgmii_instance), GFP_KERNEL);
241 if (dev == NULL) {
242 printk(KERN_ERR "%s: could not allocate RGMII device!\n",
243 np->full_name);
244 goto err_gone;
247 mutex_init(&dev->lock);
248 dev->ofdev = ofdev;
250 rc = -ENXIO;
251 if (of_address_to_resource(np, 0, &regs)) {
252 printk(KERN_ERR "%s: Can't get registers address\n",
253 np->full_name);
254 goto err_free;
257 rc = -ENOMEM;
258 dev->base = (struct rgmii_regs __iomem *)ioremap(regs.start,
259 sizeof(struct rgmii_regs));
260 if (dev->base == NULL) {
261 printk(KERN_ERR "%s: Can't map device registers!\n",
262 np->full_name);
263 goto err_free;
266 /* Check for RGMII flags */
267 if (of_get_property(ofdev->dev.of_node, "has-mdio", NULL))
268 dev->flags |= EMAC_RGMII_FLAG_HAS_MDIO;
270 /* CAB lacks the right properties, fix this up */
271 if (of_device_is_compatible(ofdev->dev.of_node, "ibm,rgmii-axon"))
272 dev->flags |= EMAC_RGMII_FLAG_HAS_MDIO;
274 DBG2(dev, " Boot FER = 0x%08x, SSR = 0x%08x\n",
275 in_be32(&dev->base->fer), in_be32(&dev->base->ssr));
277 /* Disable all inputs by default */
278 out_be32(&dev->base->fer, 0);
280 printk(KERN_INFO
281 "RGMII %s initialized with%s MDIO support\n",
282 ofdev->dev.of_node->full_name,
283 (dev->flags & EMAC_RGMII_FLAG_HAS_MDIO) ? "" : "out");
285 wmb();
286 dev_set_drvdata(&ofdev->dev, dev);
288 return 0;
290 err_free:
291 kfree(dev);
292 err_gone:
293 return rc;
296 static int __devexit rgmii_remove(struct of_device *ofdev)
298 struct rgmii_instance *dev = dev_get_drvdata(&ofdev->dev);
300 dev_set_drvdata(&ofdev->dev, NULL);
302 WARN_ON(dev->users != 0);
304 iounmap(dev->base);
305 kfree(dev);
307 return 0;
310 static struct of_device_id rgmii_match[] =
313 .compatible = "ibm,rgmii",
316 .type = "emac-rgmii",
321 static struct of_platform_driver rgmii_driver = {
322 .driver = {
323 .name = "emac-rgmii",
324 .owner = THIS_MODULE,
325 .of_match_table = rgmii_match,
327 .probe = rgmii_probe,
328 .remove = rgmii_remove,
331 int __init rgmii_init(void)
333 return of_register_platform_driver(&rgmii_driver);
336 void rgmii_exit(void)
338 of_unregister_platform_driver(&rgmii_driver);