xref: /freebsd/sys/dev/ral/if_ral_pci.c (revision 87569f75a91f298c52a71823c04d41cf53c88889)
1 /*	$FreeBSD$	*/
2 
3 /*-
4  * Copyright (c) 2005, 2006
5  *	Damien Bergamini <damien.bergamini@free.fr>
6  *
7  * Permission to use, copy, modify, and distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18  */
19 
20 #include <sys/cdefs.h>
21 __FBSDID("$FreeBSD$");
22 
23 /*
24  * PCI/Cardbus front-end for the Ralink RT2560/RT2561/RT2561S/RT2661 driver.
25  */
26 
27 #include <sys/param.h>
28 #include <sys/sysctl.h>
29 #include <sys/sockio.h>
30 #include <sys/mbuf.h>
31 #include <sys/kernel.h>
32 #include <sys/socket.h>
33 #include <sys/systm.h>
34 #include <sys/malloc.h>
35 #include <sys/module.h>
36 #include <sys/bus.h>
37 #include <sys/endian.h>
38 
39 #include <machine/bus.h>
40 #include <machine/resource.h>
41 #include <machine/clock.h>
42 #include <sys/rman.h>
43 
44 #include <net/bpf.h>
45 #include <net/if.h>
46 #include <net/if_arp.h>
47 #include <net/ethernet.h>
48 #include <net/if_dl.h>
49 #include <net/if_media.h>
50 #include <net/if_types.h>
51 
52 #include <net80211/ieee80211_var.h>
53 #include <net80211/ieee80211_radiotap.h>
54 
55 #include <dev/pci/pcireg.h>
56 #include <dev/pci/pcivar.h>
57 
58 #include <dev/ral/if_ralrate.h>
59 #include <dev/ral/rt2560var.h>
60 #include <dev/ral/rt2661var.h>
61 
62 MODULE_DEPEND(ral, pci, 1, 1, 1);
63 MODULE_DEPEND(ral, wlan, 1, 1, 1);
64 
65 struct ral_pci_ident {
66 	uint16_t	vendor;
67 	uint16_t	device;
68 	const char	*name;
69 };
70 
71 static const struct ral_pci_ident ral_pci_ids[] = {
72 	{ 0x1814, 0x0201, "Ralink Technology RT2560" },
73 	{ 0x1814, 0x0301, "Ralink Technology RT2561S" },
74 	{ 0x1814, 0x0302, "Ralink Technology RT2561" },
75 	{ 0x1814, 0x0401, "Ralink Technology RT2661" },
76 
77 	{ 0, 0, NULL }
78 };
79 
80 static struct ral_opns {
81 	int	(*attach)(device_t, int);
82 	int	(*detach)(void *);
83 	void	(*shutdown)(void *);
84 	void	(*suspend)(void *);
85 	void	(*resume)(void *);
86 	void	(*intr)(void *);
87 
88 }  ral_rt2560_opns = {
89 	rt2560_attach,
90 	rt2560_detach,
91 	rt2560_shutdown,
92 	rt2560_suspend,
93 	rt2560_resume,
94 	rt2560_intr
95 
96 }, ral_rt2661_opns = {
97 	rt2661_attach,
98 	rt2661_detach,
99 	rt2661_shutdown,
100 	rt2661_suspend,
101 	rt2661_resume,
102 	rt2661_intr
103 };
104 
105 struct ral_pci_softc {
106 	union {
107 		struct rt2560_softc sc_rt2560;
108 		struct rt2661_softc sc_rt2661;
109 	} u;
110 
111 	struct ral_opns		*sc_opns;
112 	int			irq_rid;
113 	int			mem_rid;
114 	struct resource		*irq;
115 	struct resource		*mem;
116 	void			*sc_ih;
117 };
118 
119 static int ral_pci_probe(device_t);
120 static int ral_pci_attach(device_t);
121 static int ral_pci_detach(device_t);
122 static int ral_pci_shutdown(device_t);
123 static int ral_pci_suspend(device_t);
124 static int ral_pci_resume(device_t);
125 
126 static device_method_t ral_pci_methods[] = {
127 	/* Device interface */
128 	DEVMETHOD(device_probe,		ral_pci_probe),
129 	DEVMETHOD(device_attach,	ral_pci_attach),
130 	DEVMETHOD(device_detach,	ral_pci_detach),
131 	DEVMETHOD(device_shutdown,	ral_pci_shutdown),
132 	DEVMETHOD(device_suspend,	ral_pci_suspend),
133 	DEVMETHOD(device_resume,	ral_pci_resume),
134 
135 	{ 0, 0 }
136 };
137 
138 static driver_t ral_pci_driver = {
139 	"ral",
140 	ral_pci_methods,
141 	sizeof (struct ral_pci_softc)
142 };
143 
144 static devclass_t ral_devclass;
145 
146 DRIVER_MODULE(ral, pci, ral_pci_driver, ral_devclass, 0, 0);
147 DRIVER_MODULE(ral, cardbus, ral_pci_driver, ral_devclass, 0, 0);
148 
149 static int
150 ral_pci_probe(device_t dev)
151 {
152 	const struct ral_pci_ident *ident;
153 
154 	for (ident = ral_pci_ids; ident->name != NULL; ident++) {
155 		if (pci_get_vendor(dev) == ident->vendor &&
156 		    pci_get_device(dev) == ident->device) {
157 			device_set_desc(dev, ident->name);
158 			return 0;
159 		}
160 	}
161 	return ENXIO;
162 }
163 
164 /* Base Address Register */
165 #define RAL_PCI_BAR0	0x10
166 
167 static int
168 ral_pci_attach(device_t dev)
169 {
170 	struct ral_pci_softc *psc = device_get_softc(dev);
171 	struct rt2560_softc *sc = &psc->u.sc_rt2560;
172 	int error;
173 
174 	if (pci_get_powerstate(dev) != PCI_POWERSTATE_D0) {
175 		device_printf(dev, "chip is in D%d power mode "
176 		    "-- setting to D0\n", pci_get_powerstate(dev));
177 		pci_set_powerstate(dev, PCI_POWERSTATE_D0);
178 	}
179 
180 	/* enable bus-mastering */
181 	pci_enable_busmaster(dev);
182 
183 	psc->sc_opns = (pci_get_device(dev) == 0x0201) ? &ral_rt2560_opns :
184 	    &ral_rt2661_opns;
185 
186 	psc->mem_rid = RAL_PCI_BAR0;
187 	psc->mem = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &psc->mem_rid,
188 	    RF_ACTIVE);
189 	if (psc->mem == NULL) {
190 		device_printf(dev, "could not allocate memory resource\n");
191 		return ENXIO;
192 	}
193 
194 	sc->sc_st = rman_get_bustag(psc->mem);
195 	sc->sc_sh = rman_get_bushandle(psc->mem);
196 
197 	psc->irq_rid = 0;
198 	psc->irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &psc->irq_rid,
199 	    RF_ACTIVE | RF_SHAREABLE);
200 	if (psc->irq == NULL) {
201 		device_printf(dev, "could not allocate interrupt resource\n");
202 		return ENXIO;
203 	}
204 
205 	error = (*psc->sc_opns->attach)(dev, pci_get_device(dev));
206 	if (error != 0)
207 		return error;
208 
209 	/*
210 	 * Hook our interrupt after all initialization is complete.
211 	 */
212 	error = bus_setup_intr(dev, psc->irq, INTR_TYPE_NET | INTR_MPSAFE,
213 	    psc->sc_opns->intr, psc, &psc->sc_ih);
214 	if (error != 0) {
215 		device_printf(dev, "could not set up interrupt\n");
216 		return error;
217 	}
218 
219 	return 0;
220 }
221 
222 static int
223 ral_pci_detach(device_t dev)
224 {
225 	struct ral_pci_softc *psc = device_get_softc(dev);
226 
227 	(*psc->sc_opns->detach)(psc);
228 
229 	bus_generic_detach(dev);
230 	bus_teardown_intr(dev, psc->irq, psc->sc_ih);
231 	bus_release_resource(dev, SYS_RES_IRQ, psc->irq_rid, psc->irq);
232 
233 	bus_release_resource(dev, SYS_RES_MEMORY, psc->mem_rid, psc->mem);
234 
235 	return 0;
236 }
237 
238 static int
239 ral_pci_shutdown(device_t dev)
240 {
241 	struct ral_pci_softc *psc = device_get_softc(dev);
242 
243 	(*psc->sc_opns->shutdown)(psc);
244 
245 	return 0;
246 }
247 
248 static int
249 ral_pci_suspend(device_t dev)
250 {
251 	struct ral_pci_softc *psc = device_get_softc(dev);
252 
253 	(*psc->sc_opns->suspend)(psc);
254 
255 	return 0;
256 }
257 
258 static int
259 ral_pci_resume(device_t dev)
260 {
261 	struct ral_pci_softc *psc = device_get_softc(dev);
262 
263 	(*psc->sc_opns->resume)(psc);
264 
265 	return 0;
266 }
267