1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
3 *
4 * Copyright (c) 2001 M. Warner Losh <[email protected]>
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27 #include <sys/cdefs.h>
28 #include <sys/param.h>
29 #include <sys/systm.h>
30 #include <sys/bus.h>
31 #include <sys/conf.h>
32 #include <sys/kernel.h>
33 #include <sys/module.h>
34 #include <machine/bus.h>
35 #include <sys/rman.h>
36 #include <machine/resource.h>
37
38 #include <dev/uart/uart.h>
39 #include <dev/uart/uart_bus.h>
40 #include <dev/uart/uart_cpu_acpi.h>
41 #include <contrib/dev/acpica/include/acpi.h>
42 #include <contrib/dev/acpica/include/accommon.h>
43 #include <dev/acpica/acpivar.h>
44
45 static int uart_acpi_probe(device_t dev);
46
47 static device_method_t uart_acpi_methods[] = {
48 /* Device interface */
49 DEVMETHOD(device_probe, uart_acpi_probe),
50 DEVMETHOD(device_attach, uart_bus_attach),
51 DEVMETHOD(device_detach, uart_bus_detach),
52 DEVMETHOD(device_resume, uart_bus_resume),
53 { 0, 0 }
54 };
55
56 static driver_t uart_acpi_driver = {
57 uart_driver_name,
58 uart_acpi_methods,
59 sizeof(struct uart_softc),
60 };
61
62 static struct acpi_uart_compat_data *
uart_acpi_find_device(device_t dev)63 uart_acpi_find_device(device_t dev)
64 {
65 struct acpi_uart_compat_data **cd, *cd_it;
66 ACPI_HANDLE h;
67
68 if ((h = acpi_get_handle(dev)) == NULL)
69 return (NULL);
70
71 SET_FOREACH(cd, uart_acpi_class_and_device_set) {
72 for (cd_it = *cd; cd_it->cd_hid != NULL; cd_it++) {
73 if (acpi_MatchHid(h, cd_it->cd_hid))
74 return (cd_it);
75 }
76 }
77
78 return (NULL);
79 }
80
81 static int
uart_acpi_probe(device_t dev)82 uart_acpi_probe(device_t dev)
83 {
84 struct acpi_uart_compat_data *cd;
85 struct uart_softc *sc;
86 uint32_t rclk;
87 ssize_t size;
88
89 sc = device_get_softc(dev);
90 rclk = 0;
91
92 cd = uart_acpi_find_device(dev);
93 if (cd == NULL)
94 return (ENXIO);
95
96 sc->sc_class = cd->cd_class;
97 if (cd->cd_desc != NULL)
98 device_set_desc(dev, cd->cd_desc);
99
100 size = device_get_property(dev, "clock-frequency", &rclk,
101 sizeof(rclk), DEVICE_PROP_UINT32);
102 if (size < 0 || rclk == 0)
103 rclk = cd->cd_rclk;
104
105 return (uart_bus_probe(dev, cd->cd_regshft, cd->cd_regiowidth,
106 rclk, 0, 0, cd->cd_quirks));
107 }
108
109 DRIVER_MODULE(uart, acpi, uart_acpi_driver, 0, 0);
110