xref: /freebsd/sys/dev/etherswitch/arswitch/arswitch_reg.c (revision 8876613dc50029e88a84fd595d4a1f3c52c92350)
1 /*-
2  * Copyright (c) 2011-2012 Stefan Bethke.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28 
29 #include <sys/param.h>
30 #include <sys/bus.h>
31 #include <sys/errno.h>
32 #include <sys/kernel.h>
33 #include <sys/module.h>
34 #include <sys/socket.h>
35 #include <sys/sockio.h>
36 #include <sys/sysctl.h>
37 #include <sys/systm.h>
38 
39 #include <net/if.h>
40 #include <net/if_arp.h>
41 #include <net/ethernet.h>
42 #include <net/if_dl.h>
43 #include <net/if_media.h>
44 #include <net/if_types.h>
45 
46 #include <machine/bus.h>
47 #include <dev/iicbus/iic.h>
48 #include <dev/iicbus/iiconf.h>
49 #include <dev/iicbus/iicbus.h>
50 #include <dev/mii/mii.h>
51 #include <dev/mii/miivar.h>
52 #include <dev/etherswitch/mdio.h>
53 
54 #include <dev/etherswitch/etherswitch.h>
55 
56 #include <dev/etherswitch/arswitch/arswitchreg.h>
57 #include <dev/etherswitch/arswitch/arswitchvar.h>
58 #include <dev/etherswitch/arswitch/arswitch_reg.h>
59 
60 #include "mdio_if.h"
61 #include "miibus_if.h"
62 #include "etherswitch_if.h"
63 
64 static inline void
65 arswitch_split_setpage(device_t dev, uint32_t addr, uint16_t *phy,
66     uint16_t *reg)
67 {
68 	struct arswitch_softc *sc = device_get_softc(dev);
69 	uint16_t page;
70 
71 	page = ((addr) >> 9) & 0xffff;
72 	*phy = (((addr) >> 6) & 0x07) | 0x10;
73 	*reg = ((addr) >> 1) & 0x1f;
74 
75 	if (sc->page != page) {
76 		MDIO_WRITEREG(device_get_parent(dev), 0x18, 0, page);
77 		sc->page = page;
78 	}
79 }
80 
81 /*
82  * Read half a register.  Some of the registers define control bits, and
83  * the sequence of half-word accesses matters.  The register addresses
84  * are word-even (mod 4).
85  */
86 static inline int
87 arswitch_readreg16(device_t dev, int addr)
88 {
89 	uint16_t phy, reg;
90 
91 	arswitch_split_setpage(dev, addr, &phy, &reg);
92 	return (MDIO_READREG(device_get_parent(dev), phy, reg));
93 }
94 
95 /*
96  * XXX NOTE:
97  *
98  * This may not work for AR7240 series embedded switches -
99  * the per-PHY register space doesn't seem to be exposed.
100  *
101  * In that instance, it may be required to speak via
102  * the internal switch PHY MDIO bus indirection.
103  */
104 void
105 arswitch_writedbg(device_t dev, int phy, uint16_t dbg_addr,
106     uint16_t dbg_data)
107 {
108 	(void) MDIO_WRITEREG(device_get_parent(dev), phy,
109 	    MII_ATH_DBG_ADDR, dbg_addr);
110 	(void) MDIO_WRITEREG(device_get_parent(dev), phy,
111 	    MII_ATH_DBG_DATA, dbg_data);
112 }
113 
114 void
115 arswitch_writemmd(device_t dev, int phy, uint16_t dbg_addr,
116     uint16_t dbg_data)
117 {
118 	(void) MDIO_WRITEREG(device_get_parent(dev), phy,
119 	    MII_ATH_MMD_ADDR, dbg_addr);
120 	(void) MDIO_WRITEREG(device_get_parent(dev), phy,
121 	    MII_ATH_MMD_DATA, dbg_data);
122 }
123 
124 /*
125  * Write half a register
126  */
127 static inline int
128 arswitch_writereg16(device_t dev, int addr, int data)
129 {
130 	uint16_t phy, reg;
131 
132 	arswitch_split_setpage(dev, addr, &phy, &reg);
133 	return (MDIO_WRITEREG(device_get_parent(dev), phy, reg, data));
134 }
135 
136 int
137 arswitch_readreg_lsb(device_t dev, int addr)
138 {
139 
140 	return (arswitch_readreg16(dev, addr));
141 }
142 
143 int
144 arswitch_readreg_msb(device_t dev, int addr)
145 {
146 
147 	return (arswitch_readreg16(dev, addr + 2) << 16);
148 }
149 
150 int
151 arswitch_writereg_lsb(device_t dev, int addr, int data)
152 {
153 
154 	return (arswitch_writereg16(dev, addr, data & 0xffff));
155 }
156 
157 int
158 arswitch_writereg_msb(device_t dev, int addr, int data)
159 {
160 
161 	return (arswitch_writereg16(dev, addr + 2, (data >> 16) & 0xffff));
162 }
163 
164 int
165 arswitch_readreg(device_t dev, int addr)
166 {
167 
168 	return (arswitch_readreg_lsb(dev, addr) |
169 	    arswitch_readreg_msb(dev, addr));
170 }
171 
172 int
173 arswitch_writereg(device_t dev, int addr, int value)
174 {
175 	struct arswitch_softc *sc;
176 	int r;
177 
178 	sc = device_get_softc(dev);
179 
180 	/* XXX Check the first write too? */
181 	if (sc->mii_lo_first) {
182 		r = arswitch_writereg_lsb(dev, addr, value);
183 		r |= arswitch_writereg_msb(dev, addr, value);
184 	} else {
185 		r = arswitch_writereg_msb(dev, addr, value);
186 		r |= arswitch_writereg_lsb(dev, addr, value);
187 	}
188 
189 	return r;
190 }
191 
192 int
193 arswitch_modifyreg(device_t dev, int addr, int mask, int set)
194 {
195 	int value;
196 
197 	value = arswitch_readreg(dev, addr);
198 	value &= ~mask;
199 	value |= set;
200 	return (arswitch_writereg(dev, addr, value));
201 }
202 
203 int
204 arswitch_waitreg(device_t dev, int addr, int mask, int val, int timeout)
205 {
206 	int err, v;
207 
208 	err = -1;
209 	while (1) {
210 		v = arswitch_readreg(dev, addr);
211 		v &= mask;
212 		if (v == val) {
213 			err = 0;
214 			break;
215 		}
216 		if (!timeout)
217 			break;
218 		DELAY(1);
219 		timeout--;
220 	}
221 	return (err);
222 }
223