xref: /freebsd/sys/dev/usb/controller/generic_xhci_fdt.c (revision d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2015 Semihalf.
5  * Copyright (c) 2015 Stormshield.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29 
30 #include <sys/cdefs.h>
31 #include "opt_bus.h"
32 
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/bus.h>
36 #include <sys/condvar.h>
37 #include <sys/kernel.h>
38 #include <sys/module.h>
39 
40 #include <dev/usb/usb.h>
41 #include <dev/usb/usbdi.h>
42 
43 #include <dev/usb/usb_core.h>
44 #include <dev/usb/usb_busdma.h>
45 #include <dev/usb/usb_process.h>
46 
47 #include <dev/usb/usb_controller.h>
48 #include <dev/usb/usb_bus.h>
49 #include <dev/usb/controller/xhci.h>
50 
51 #include <dev/ofw/ofw_bus.h>
52 #include <dev/ofw/ofw_bus_subr.h>
53 
54 #include <dev/extres/phy/phy.h>
55 
56 #include "generic_xhci.h"
57 
58 static struct ofw_compat_data compat_data[] = {
59 	{"marvell,armada-380-xhci",	true},
60 	{"marvell,armada3700-xhci",	true},
61 	{"marvell,armada-8k-xhci",	true},
62 	{"generic-xhci",		true},
63 	{NULL,				false}
64 };
65 
66 static int
67 generic_xhci_fdt_probe(device_t dev)
68 {
69 
70 	if (!ofw_bus_status_okay(dev))
71 		return (ENXIO);
72 
73 	if (!ofw_bus_search_compatible(dev, compat_data)->ocd_data)
74 		return (ENXIO);
75 
76 	device_set_desc(dev, XHCI_HC_DEVSTR);
77 
78 	return (BUS_PROBE_DEFAULT);
79 }
80 
81 static int
82 generic_xhci_fdt_attach(device_t dev)
83 {
84 	phandle_t node;
85 	phy_t phy;
86 
87 	node = ofw_bus_get_node(dev);
88 	if (phy_get_by_ofw_property(dev, node, "usb-phy", &phy) == 0)
89 		if (phy_enable(phy) != 0)
90 			device_printf(dev, "Cannot enable phy\n");
91 
92 	return (generic_xhci_attach(dev));
93 }
94 
95 static int
96 generic_xhci_fdt_detach(device_t dev)
97 {
98 	phandle_t node;
99 	phy_t phy;
100 	int err;
101 
102 	err = generic_xhci_detach(dev);
103 	if (err != 0)
104 		return (err);
105 
106 	node = ofw_bus_get_node(dev);
107 	if (phy_get_by_ofw_property(dev, node, "usb-phy", &phy) == 0)
108 		phy_release(phy);
109 
110 	return (0);
111 }
112 
113 static device_method_t xhci_fdt_methods[] = {
114 	/* Device interface */
115 	DEVMETHOD(device_probe, generic_xhci_fdt_probe),
116 	DEVMETHOD(device_attach, generic_xhci_fdt_attach),
117 	DEVMETHOD(device_detach, generic_xhci_fdt_detach),
118 
119 	DEVMETHOD_END
120 };
121 
122 DEFINE_CLASS_1(xhci, xhci_fdt_driver, xhci_fdt_methods,
123     sizeof(struct xhci_softc), generic_xhci_driver);
124 
125 DRIVER_MODULE(xhci, simplebus, xhci_fdt_driver, 0, 0);
126 MODULE_DEPEND(xhci, usb, 1, 1, 1);
127