2 * drivers/net/ibm_newemac/zmii.c
4 * Driver for PowerPC 4xx on-chip ethernet controller, ZMII 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 * Armin Kuster <akuster@mvista.com>
16 * Copyright 2001 MontaVista Softare 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>
33 #define ZMII_FER_MDI(idx) (0x80000000 >> ((idx) * 4))
34 #define ZMII_FER_MDI_ALL (ZMII_FER_MDI(0) | ZMII_FER_MDI(1) | \
35 ZMII_FER_MDI(2) | ZMII_FER_MDI(3))
37 #define ZMII_FER_SMII(idx) (0x40000000 >> ((idx) * 4))
38 #define ZMII_FER_RMII(idx) (0x20000000 >> ((idx) * 4))
39 #define ZMII_FER_MII(idx) (0x10000000 >> ((idx) * 4))
42 #define ZMII_SSR_SCI(idx) (0x40000000 >> ((idx) * 4))
43 #define ZMII_SSR_FSS(idx) (0x20000000 >> ((idx) * 4))
44 #define ZMII_SSR_SP(idx) (0x10000000 >> ((idx) * 4))
46 /* ZMII only supports MII, RMII and SMII
47 * we also support autodetection for backward compatibility
49 static inline int zmii_valid_mode(int mode
)
51 return mode
== PHY_MODE_MII
||
52 mode
== PHY_MODE_RMII
||
53 mode
== PHY_MODE_SMII
||
57 static inline const char *zmii_mode_name(int mode
)
71 static inline u32
zmii_mode_mask(int mode
, int input
)
75 return ZMII_FER_MII(input
);
77 return ZMII_FER_RMII(input
);
79 return ZMII_FER_SMII(input
);
85 int __devinit
zmii_attach(struct platform_device
*ofdev
, int input
, int *mode
)
87 struct zmii_instance
*dev
= dev_get_drvdata(&ofdev
->dev
);
88 struct zmii_regs __iomem
*p
= dev
->base
;
90 ZMII_DBG(dev
, "init(%d, %d)" NL
, input
, *mode
);
92 if (!zmii_valid_mode(*mode
)) {
93 /* Probably an EMAC connected to RGMII,
94 * but it still may need ZMII for MDIO so
101 mutex_lock(&dev
->lock
);
103 /* Autodetect ZMII mode if not specified.
104 * This is only for backward compatibility with the old driver.
105 * Please, always specify PHY mode in your board port to avoid
108 if (dev
->mode
== PHY_MODE_NA
) {
109 if (*mode
== PHY_MODE_NA
) {
110 u32 r
= dev
->fer_save
;
112 ZMII_DBG(dev
, "autodetecting mode, FER = 0x%08x" NL
, r
);
114 if (r
& (ZMII_FER_MII(0) | ZMII_FER_MII(1)))
115 dev
->mode
= PHY_MODE_MII
;
116 else if (r
& (ZMII_FER_RMII(0) | ZMII_FER_RMII(1)))
117 dev
->mode
= PHY_MODE_RMII
;
119 dev
->mode
= PHY_MODE_SMII
;
123 printk(KERN_NOTICE
"%s: bridge in %s mode\n",
124 ofdev
->dev
.of_node
->full_name
,
125 zmii_mode_name(dev
->mode
));
127 /* All inputs must use the same mode */
128 if (*mode
!= PHY_MODE_NA
&& *mode
!= dev
->mode
) {
130 "%s: invalid mode %d specified for input %d\n",
131 ofdev
->dev
.of_node
->full_name
, *mode
, input
);
132 mutex_unlock(&dev
->lock
);
137 /* Report back correct PHY mode,
138 * it may be used during PHY initialization.
142 /* Enable this input */
143 out_be32(&p
->fer
, in_be32(&p
->fer
) | zmii_mode_mask(dev
->mode
, input
));
146 mutex_unlock(&dev
->lock
);
151 void zmii_get_mdio(struct platform_device
*ofdev
, int input
)
153 struct zmii_instance
*dev
= dev_get_drvdata(&ofdev
->dev
);
156 ZMII_DBG2(dev
, "get_mdio(%d)" NL
, input
);
158 mutex_lock(&dev
->lock
);
160 fer
= in_be32(&dev
->base
->fer
) & ~ZMII_FER_MDI_ALL
;
161 out_be32(&dev
->base
->fer
, fer
| ZMII_FER_MDI(input
));
164 void zmii_put_mdio(struct platform_device
*ofdev
, int input
)
166 struct zmii_instance
*dev
= dev_get_drvdata(&ofdev
->dev
);
168 ZMII_DBG2(dev
, "put_mdio(%d)" NL
, input
);
169 mutex_unlock(&dev
->lock
);
173 void zmii_set_speed(struct platform_device
*ofdev
, int input
, int speed
)
175 struct zmii_instance
*dev
= dev_get_drvdata(&ofdev
->dev
);
178 mutex_lock(&dev
->lock
);
180 ssr
= in_be32(&dev
->base
->ssr
);
182 ZMII_DBG(dev
, "speed(%d, %d)" NL
, input
, speed
);
184 if (speed
== SPEED_100
)
185 ssr
|= ZMII_SSR_SP(input
);
187 ssr
&= ~ZMII_SSR_SP(input
);
189 out_be32(&dev
->base
->ssr
, ssr
);
191 mutex_unlock(&dev
->lock
);
194 void zmii_detach(struct platform_device
*ofdev
, int input
)
196 struct zmii_instance
*dev
= dev_get_drvdata(&ofdev
->dev
);
198 BUG_ON(!dev
|| dev
->users
== 0);
200 mutex_lock(&dev
->lock
);
202 ZMII_DBG(dev
, "detach(%d)" NL
, input
);
204 /* Disable this input */
205 out_be32(&dev
->base
->fer
,
206 in_be32(&dev
->base
->fer
) & ~zmii_mode_mask(dev
->mode
, input
));
210 mutex_unlock(&dev
->lock
);
213 int zmii_get_regs_len(struct platform_device
*ofdev
)
215 return sizeof(struct emac_ethtool_regs_subhdr
) +
216 sizeof(struct zmii_regs
);
219 void *zmii_dump_regs(struct platform_device
*ofdev
, void *buf
)
221 struct zmii_instance
*dev
= dev_get_drvdata(&ofdev
->dev
);
222 struct emac_ethtool_regs_subhdr
*hdr
= buf
;
223 struct zmii_regs
*regs
= (struct zmii_regs
*)(hdr
+ 1);
226 hdr
->index
= 0; /* for now, are there chips with more than one
227 * zmii ? if yes, then we'll add a cell_index
228 * like we do for emac
230 memcpy_fromio(regs
, dev
->base
, sizeof(struct zmii_regs
));
234 static int __devinit
zmii_probe(struct platform_device
*ofdev
,
235 const struct of_device_id
*match
)
237 struct device_node
*np
= ofdev
->dev
.of_node
;
238 struct zmii_instance
*dev
;
239 struct resource regs
;
243 dev
= kzalloc(sizeof(struct zmii_instance
), GFP_KERNEL
);
245 printk(KERN_ERR
"%s: could not allocate ZMII device!\n",
250 mutex_init(&dev
->lock
);
252 dev
->mode
= PHY_MODE_NA
;
255 if (of_address_to_resource(np
, 0, ®s
)) {
256 printk(KERN_ERR
"%s: Can't get registers address\n",
262 dev
->base
= (struct zmii_regs __iomem
*)ioremap(regs
.start
,
263 sizeof(struct zmii_regs
));
264 if (dev
->base
== NULL
) {
265 printk(KERN_ERR
"%s: Can't map device registers!\n",
270 /* We may need FER value for autodetection later */
271 dev
->fer_save
= in_be32(&dev
->base
->fer
);
273 /* Disable all inputs by default */
274 out_be32(&dev
->base
->fer
, 0);
277 "ZMII %s initialized\n", ofdev
->dev
.of_node
->full_name
);
279 dev_set_drvdata(&ofdev
->dev
, dev
);
289 static int __devexit
zmii_remove(struct platform_device
*ofdev
)
291 struct zmii_instance
*dev
= dev_get_drvdata(&ofdev
->dev
);
293 dev_set_drvdata(&ofdev
->dev
, NULL
);
295 WARN_ON(dev
->users
!= 0);
303 static struct of_device_id zmii_match
[] =
306 .compatible
= "ibm,zmii",
308 /* For backward compat with old DT */
315 static struct of_platform_driver zmii_driver
= {
318 .owner
= THIS_MODULE
,
319 .of_match_table
= zmii_match
,
322 .remove
= zmii_remove
,
325 int __init
zmii_init(void)
327 return of_register_platform_driver(&zmii_driver
);
332 of_unregister_platform_driver(&zmii_driver
);