ehci_fsl.c revision 261410
1/*-
2 * Copyright (c) 2010-2012 Semihalf
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
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD: head/sys/dev/usb/controller/ehci_fsl.c 261410 2014-02-02 19:17:28Z ian $");
29
30#include "opt_bus.h"
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/kernel.h>
35#include <sys/module.h>
36#include <sys/bus.h>
37#include <sys/queue.h>
38#include <sys/lock.h>
39#include <sys/lockmgr.h>
40#include <sys/condvar.h>
41#include <sys/rman.h>
42
43#include <dev/ofw/ofw_bus.h>
44#include <dev/ofw/ofw_bus_subr.h>
45
46#include <dev/usb/usb.h>
47#include <dev/usb/usbdi.h>
48#include <dev/usb/usb_core.h>
49#include <dev/usb/usb_busdma.h>
50#include <dev/usb/usb_process.h>
51#include <dev/usb/usb_util.h>
52#include <dev/usb/usb_controller.h>
53#include <dev/usb/usb_bus.h>
54#include <dev/usb/controller/ehci.h>
55#include <dev/usb/controller/ehcireg.h>
56
57#include <machine/bus.h>
58#include <machine/clock.h>
59#include <machine/resource.h>
60
61#include <powerpc/include/tlb.h>
62
63#include "opt_platform.h"
64
65/*
66 * Register the driver
67 */
68/* Forward declarations */
69static int	fsl_ehci_attach(device_t self);
70static int	fsl_ehci_detach(device_t self);
71static int	fsl_ehci_probe(device_t self);
72
73static device_method_t ehci_methods[] = {
74	/* Device interface */
75	DEVMETHOD(device_probe, fsl_ehci_probe),
76	DEVMETHOD(device_attach, fsl_ehci_attach),
77	DEVMETHOD(device_detach, fsl_ehci_detach),
78	DEVMETHOD(device_suspend, bus_generic_suspend),
79	DEVMETHOD(device_resume, bus_generic_resume),
80	DEVMETHOD(device_shutdown, bus_generic_shutdown),
81
82	/* Bus interface */
83	DEVMETHOD(bus_print_child, bus_generic_print_child),
84
85	{ 0, 0 }
86};
87
88/* kobj_class definition */
89static driver_t ehci_driver = {
90	"ehci",
91	ehci_methods,
92	sizeof(struct ehci_softc)
93};
94
95static devclass_t ehci_devclass;
96
97DRIVER_MODULE(ehci, simplebus, ehci_driver, ehci_devclass, 0, 0);
98MODULE_DEPEND(ehci, usb, 1, 1, 1);
99
100/*
101 * Private defines
102 */
103#define FSL_EHCI_REG_OFF	0x100
104#define FSL_EHCI_REG_SIZE	0x300
105
106/*
107 * Internal interface registers' offsets.
108 * Offsets from 0x000 ehci dev space, big-endian access.
109 */
110enum internal_reg {
111	SNOOP1		= 0x400,
112	SNOOP2		= 0x404,
113	AGE_CNT_THRESH	= 0x408,
114	SI_CTRL		= 0x410,
115	CONTROL		= 0x500
116};
117
118/* CONTROL register bit flags */
119enum control_flags {
120	USB_EN		= 0x00000004,
121	UTMI_PHY_EN	= 0x00000200,
122	ULPI_INT_EN	= 0x00000001
123};
124
125/* SI_CTRL register bit flags */
126enum si_ctrl_flags {
127	FETCH_32	= 1,
128	FETCH_64	= 0
129};
130
131#define SNOOP_RANGE_2GB	0x1E
132
133/*
134 * Operational registers' offsets.
135 * Offsets from USBCMD register, little-endian access.
136 */
137enum special_op_reg {
138	USBMODE		= 0x0A8,
139	PORTSC		= 0x084,
140	ULPI_VIEWPORT	= 0x70
141};
142
143/* USBMODE register bit flags */
144enum usbmode_flags {
145	HOST_MODE	= 0x3,
146	DEVICE_MODE	= 0x2
147};
148
149#define	PORT_POWER_MASK	0x00001000
150
151/*
152 * Private methods
153 */
154
155static void
156set_to_host_mode(ehci_softc_t *sc)
157{
158	int tmp;
159
160	tmp = bus_space_read_4(sc->sc_io_tag, sc->sc_io_hdl, USBMODE);
161	bus_space_write_4(sc->sc_io_tag, sc->sc_io_hdl, USBMODE, tmp | HOST_MODE);
162}
163
164static void
165enable_usb(device_t dev, bus_space_tag_t iot, bus_space_handle_t ioh)
166{
167	int tmp;
168	phandle_t node;
169	char *phy_type;
170
171	phy_type = NULL;
172	tmp = bus_space_read_4(iot, ioh, CONTROL) | USB_EN;
173
174	node = ofw_bus_get_node(dev);
175	if ((node != 0) &&
176	    (OF_getprop_alloc(node, "phy_type", 1, (void **)&phy_type) > 0)) {
177		if (strncasecmp(phy_type, "utmi", strlen("utmi")) == 0)
178			tmp |= UTMI_PHY_EN;
179		free(phy_type, M_OFWPROP);
180	}
181	bus_space_write_4(iot, ioh, CONTROL, tmp);
182}
183
184static void
185set_32b_prefetch(bus_space_tag_t iot, bus_space_handle_t ioh)
186{
187
188	bus_space_write_4(iot, ioh, SI_CTRL, FETCH_32);
189}
190
191static void
192set_snooping(bus_space_tag_t iot, bus_space_handle_t ioh)
193{
194
195	bus_space_write_4(iot, ioh, SNOOP1, SNOOP_RANGE_2GB);
196	bus_space_write_4(iot, ioh, SNOOP2, 0x80000000 | SNOOP_RANGE_2GB);
197}
198
199static void
200clear_port_power(ehci_softc_t *sc)
201{
202	int tmp;
203
204	tmp = bus_space_read_4(sc->sc_io_tag, sc->sc_io_hdl, PORTSC);
205	bus_space_write_4(sc->sc_io_tag, sc->sc_io_hdl, PORTSC, tmp & ~PORT_POWER_MASK);
206}
207
208/*
209 * Public methods
210 */
211static int
212fsl_ehci_probe(device_t dev)
213{
214
215	if (!ofw_bus_status_okay(dev))
216		return (ENXIO);
217
218	if (((ofw_bus_is_compatible(dev, "fsl-usb2-dr")) == 0) &&
219	    ((ofw_bus_is_compatible(dev, "fsl-usb2-mph")) == 0))
220		return (ENXIO);
221
222	device_set_desc(dev, "Freescale integrated EHCI controller");
223
224	return (BUS_PROBE_DEFAULT);
225}
226
227static int
228fsl_ehci_attach(device_t self)
229{
230	ehci_softc_t *sc;
231	int rid;
232	int err;
233	bus_space_handle_t ioh;
234	bus_space_tag_t iot;
235
236	sc = device_get_softc(self);
237	rid = 0;
238
239	sc->sc_bus.parent = self;
240	sc->sc_bus.devices = sc->sc_devices;
241	sc->sc_bus.devices_max = EHCI_MAX_DEVICES;
242
243	if (usb_bus_mem_alloc_all(&sc->sc_bus,
244	    USB_GET_DMA_TAG(self), &ehci_iterate_hw_softc))
245		return (ENOMEM);
246
247	/* Allocate io resource for EHCI */
248	sc->sc_io_res = bus_alloc_resource_any(self, SYS_RES_MEMORY, &rid,
249	    RF_ACTIVE);
250	if (sc->sc_io_res == NULL) {
251		err = fsl_ehci_detach(self);
252		if (err) {
253			device_printf(self,
254			    "Detach of the driver failed with error %d\n",
255			    err);
256		}
257		return (ENXIO);
258	}
259	iot = rman_get_bustag(sc->sc_io_res);
260
261	/*
262	 * Set handle to USB related registers subregion used by generic
263	 * EHCI driver
264	 */
265	ioh = rman_get_bushandle(sc->sc_io_res);
266
267	err = bus_space_subregion(iot, ioh, FSL_EHCI_REG_OFF, FSL_EHCI_REG_SIZE,
268	    &sc->sc_io_hdl);
269	if (err != 0) {
270		err = fsl_ehci_detach(self);
271		if (err) {
272			device_printf(self,
273			    "Detach of the driver failed with error %d\n",
274			    err);
275		}
276		return (ENXIO);
277	}
278
279	/* Set little-endian tag for use by the generic EHCI driver */
280	sc->sc_io_tag = &bs_le_tag;
281
282	/* Allocate irq */
283	sc->sc_irq_res = bus_alloc_resource_any(self, SYS_RES_IRQ, &rid,
284	    RF_ACTIVE);
285	if (sc->sc_irq_res == NULL) {
286		err = fsl_ehci_detach(self);
287		if (err) {
288			device_printf(self,
289			    "Detach of the driver failed with error %d\n",
290			    err);
291		}
292		return (ENXIO);
293	}
294
295	/* Setup interrupt handler */
296	err = bus_setup_intr(self, sc->sc_irq_res, INTR_TYPE_BIO,
297	    NULL, (driver_intr_t *)ehci_interrupt, sc, &sc->sc_intr_hdl);
298	if (err) {
299		device_printf(self, "Could not setup irq, %d\n", err);
300		sc->sc_intr_hdl = NULL;
301		err = fsl_ehci_detach(self);
302		if (err) {
303			device_printf(self,
304			    "Detach of the driver failed with error %d\n",
305			    err);
306		}
307		return (ENXIO);
308	}
309
310	/* Add USB device */
311	sc->sc_bus.bdev = device_add_child(self, "usbus", -1);
312	if (!sc->sc_bus.bdev) {
313		device_printf(self, "Could not add USB device\n");
314		err = fsl_ehci_detach(self);
315		if (err) {
316			device_printf(self,
317			    "Detach of the driver failed with error %d\n",
318			    err);
319		}
320		return (ENOMEM);
321	}
322	device_set_ivars(sc->sc_bus.bdev, &sc->sc_bus);
323
324	sc->sc_id_vendor = 0x1234;
325	strlcpy(sc->sc_vendor, "Freescale", sizeof(sc->sc_vendor));
326
327	/* Enable USB */
328	err = ehci_reset(sc);
329	if (err) {
330		device_printf(self, "Could not reset the controller\n");
331		err = fsl_ehci_detach(self);
332		if (err) {
333			device_printf(self,
334			    "Detach of the driver failed with error %d\n",
335			    err);
336		}
337		return (ENXIO);
338	}
339
340	enable_usb(self, iot, ioh);
341	set_snooping(iot, ioh);
342	set_to_host_mode(sc);
343	set_32b_prefetch(iot, ioh);
344
345	/*
346	 * If usb subsystem is enabled in U-Boot, port power has to be turned
347	 * off to allow proper discovery of devices during boot up.
348	 */
349	clear_port_power(sc);
350
351	/* Set flags */
352	sc->sc_flags |= EHCI_SCFLG_DONTRESET | EHCI_SCFLG_NORESTERM;
353
354	err = ehci_init(sc);
355	if (!err) {
356		sc->sc_flags |= EHCI_SCFLG_DONEINIT;
357		err = device_probe_and_attach(sc->sc_bus.bdev);
358	}
359
360	if (err) {
361		device_printf(self, "USB init failed err=%d\n", err);
362		err = fsl_ehci_detach(self);
363		if (err) {
364			device_printf(self,
365			    "Detach of the driver failed with error %d\n",
366			    err);
367		}
368		return (EIO);
369	}
370
371	return (0);
372}
373
374static int
375fsl_ehci_detach(device_t self)
376{
377
378	int err;
379	ehci_softc_t *sc;
380
381	sc = device_get_softc(self);
382	/*
383	 * only call ehci_detach() after ehci_init()
384	 */
385	if (sc->sc_flags & EHCI_SCFLG_DONEINIT) {
386		ehci_detach(sc);
387		sc->sc_flags &= ~EHCI_SCFLG_DONEINIT;
388	}
389
390	/* Disable interrupts that might have been switched on in ehci_init */
391	if (sc->sc_io_tag && sc->sc_io_hdl)
392		bus_space_write_4(sc->sc_io_tag, sc->sc_io_hdl, EHCI_USBINTR, 0);
393
394	if (sc->sc_irq_res && sc->sc_intr_hdl) {
395		err = bus_teardown_intr(self, sc->sc_irq_res, sc->sc_intr_hdl);
396		if (err) {
397			device_printf(self, "Could not tear down irq, %d\n",
398			    err);
399			return (err);
400		}
401		sc->sc_intr_hdl = NULL;
402	}
403
404	if (sc->sc_bus.bdev) {
405		device_delete_child(self, sc->sc_bus.bdev);
406		sc->sc_bus.bdev = NULL;
407	}
408
409	/* During module unload there are lots of children leftover */
410	device_delete_children(self);
411
412	if (sc->sc_irq_res) {
413		bus_release_resource(self, SYS_RES_IRQ, 0, sc->sc_irq_res);
414		sc->sc_irq_res = NULL;
415	}
416
417	if (sc->sc_io_res) {
418		bus_release_resource(self, SYS_RES_MEMORY, 0, sc->sc_io_res);
419		sc->sc_io_res = NULL;
420		sc->sc_io_tag = 0;
421		sc->sc_io_hdl = 0;
422	}
423
424	return (0);
425}
426
427