xref: /freebsd/sys/dev/uart/uart_dev_snps.c (revision 53b53933)
1b738dafdSJared McNeill /*-
2b738dafdSJared McNeill  * Copyright (c) 2016 Jared McNeill <jmcneill@invisible.ca>
3b738dafdSJared McNeill  *
4b738dafdSJared McNeill  * Redistribution and use in source and binary forms, with or without
5b738dafdSJared McNeill  * modification, are permitted provided that the following conditions
6b738dafdSJared McNeill  * are met:
7b738dafdSJared McNeill  * 1. Redistributions of source code must retain the above copyright
8b738dafdSJared McNeill  *    notice, this list of conditions and the following disclaimer.
9b738dafdSJared McNeill  * 2. Redistributions in binary form must reproduce the above copyright
10b738dafdSJared McNeill  *    notice, this list of conditions and the following disclaimer in the
11b738dafdSJared McNeill  *    documentation and/or other materials provided with the distribution.
12b738dafdSJared McNeill  *
13b738dafdSJared McNeill  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14b738dafdSJared McNeill  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15b738dafdSJared McNeill  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16b738dafdSJared McNeill  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17b738dafdSJared McNeill  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
18b738dafdSJared McNeill  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19b738dafdSJared McNeill  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
20b738dafdSJared McNeill  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
21b738dafdSJared McNeill  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22b738dafdSJared McNeill  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23b738dafdSJared McNeill  * SUCH DAMAGE.
24b738dafdSJared McNeill  */
25b738dafdSJared McNeill 
26b738dafdSJared McNeill #include <sys/param.h>
27b738dafdSJared McNeill #include <sys/systm.h>
28b738dafdSJared McNeill #include <sys/bus.h>
29b738dafdSJared McNeill #include <sys/kernel.h>
30b738dafdSJared McNeill #include <sys/module.h>
31b738dafdSJared McNeill #include <machine/bus.h>
32b738dafdSJared McNeill 
33b738dafdSJared McNeill #include <dev/uart/uart.h>
34b738dafdSJared McNeill #include <dev/uart/uart_bus.h>
35b738dafdSJared McNeill #include <dev/uart/uart_cpu_fdt.h>
36b738dafdSJared McNeill #include <dev/uart/uart_dev_ns8250.h>
37b738dafdSJared McNeill 
38b738dafdSJared McNeill #include <dev/ofw/ofw_bus.h>
39b738dafdSJared McNeill #include <dev/ofw/ofw_bus_subr.h>
40b738dafdSJared McNeill 
41be82b3a0SEmmanuel Vadot #include <dev/clk/clk.h>
421f469a9fSEmmanuel Vadot #include <dev/hwreset/hwreset.h>
43b738dafdSJared McNeill 
44b738dafdSJared McNeill #include "uart_if.h"
45b738dafdSJared McNeill 
46b738dafdSJared McNeill struct snps_softc {
47b738dafdSJared McNeill 	struct ns8250_softc	ns8250;
48b738dafdSJared McNeill 
49b738dafdSJared McNeill 	clk_t			baudclk;
50b738dafdSJared McNeill 	clk_t			apb_pclk;
51b738dafdSJared McNeill 	hwreset_t		reset;
52b738dafdSJared McNeill };
53b738dafdSJared McNeill 
54837db847SEmmanuel Vadot /*
55837db847SEmmanuel Vadot  * To use early printf on 64 bits Allwinner SoC, add to kernel config
56837db847SEmmanuel Vadot  * options SOCDEV_PA=0x0
5720289092SAndrew Turner  * options EARLY_PRINTF=snps
58837db847SEmmanuel Vadot  *
59837db847SEmmanuel Vadot  * To use early printf on 32 bits Allwinner SoC, add to kernel config
60837db847SEmmanuel Vadot  * options SOCDEV_PA=0x01C00000
61837db847SEmmanuel Vadot  * options SOCDEV_VA=0x10000000
6220289092SAndrew Turner  * options EARLY_PRINTF=snps
63837db847SEmmanuel Vadot  *
64837db847SEmmanuel Vadot  * remove the if 0
65837db847SEmmanuel Vadot */
6620289092SAndrew Turner #if CHECK_EARLY_PRINTF(snps)
67837db847SEmmanuel Vadot static void
uart_snps_early_putc(int c)68837db847SEmmanuel Vadot uart_snps_early_putc(int c)
69837db847SEmmanuel Vadot {
70837db847SEmmanuel Vadot 	volatile uint32_t *stat;
71837db847SEmmanuel Vadot 	volatile uint32_t *tx;
72837db847SEmmanuel Vadot 
73837db847SEmmanuel Vadot #ifdef ALLWINNER_64
7420289092SAndrew Turner 	stat = (uint32_t *) (socdev_va + 0x1C2807C);
7520289092SAndrew Turner 	tx = (uint32_t *) (socdev_va + 0x1C28000);
76837db847SEmmanuel Vadot #endif
77837db847SEmmanuel Vadot #ifdef ALLWINNER_32
7820289092SAndrew Turner 	stat = (uint32_t *) (socdev_va + 0x2807C);
7920289092SAndrew Turner 	tx = (uint32_t *) (socdev_va + 0x28000);
80837db847SEmmanuel Vadot #endif
81837db847SEmmanuel Vadot 
82837db847SEmmanuel Vadot 	while ((*stat & (1 << 2)) == 0)
83837db847SEmmanuel Vadot 		continue;
84837db847SEmmanuel Vadot 	*tx = c;
85837db847SEmmanuel Vadot }
86837db847SEmmanuel Vadot early_putc_t *early_putc = uart_snps_early_putc;
8720289092SAndrew Turner #endif /* CHECK_EARLY_PRINTF */
88837db847SEmmanuel Vadot 
89b738dafdSJared McNeill static kobj_method_t snps_methods[] = {
90b738dafdSJared McNeill 	KOBJMETHOD(uart_probe,		ns8250_bus_probe),
91381388b9SMatt Macy 	KOBJMETHOD(uart_attach,		ns8250_bus_attach),
92b738dafdSJared McNeill 	KOBJMETHOD(uart_detach,		ns8250_bus_detach),
93b738dafdSJared McNeill 	KOBJMETHOD(uart_flush,		ns8250_bus_flush),
94b738dafdSJared McNeill 	KOBJMETHOD(uart_getsig,		ns8250_bus_getsig),
95b738dafdSJared McNeill 	KOBJMETHOD(uart_ioctl,		ns8250_bus_ioctl),
96b738dafdSJared McNeill 	KOBJMETHOD(uart_ipend,		ns8250_bus_ipend),
97b738dafdSJared McNeill 	KOBJMETHOD(uart_param,		ns8250_bus_param),
98b738dafdSJared McNeill 	KOBJMETHOD(uart_receive,	ns8250_bus_receive),
99b738dafdSJared McNeill 	KOBJMETHOD(uart_setsig,		ns8250_bus_setsig),
100b738dafdSJared McNeill 	KOBJMETHOD(uart_transmit,	ns8250_bus_transmit),
101353e4c5aSMarius Strobl 	KOBJMETHOD(uart_txbusy,		ns8250_bus_txbusy),
102b738dafdSJared McNeill 	KOBJMETHOD(uart_grab,		ns8250_bus_grab),
103b738dafdSJared McNeill 	KOBJMETHOD(uart_ungrab,		ns8250_bus_ungrab),
104b738dafdSJared McNeill 	KOBJMETHOD_END
105b738dafdSJared McNeill };
106b738dafdSJared McNeill 
107b738dafdSJared McNeill struct uart_class uart_snps_class = {
108b738dafdSJared McNeill 	"snps",
109b738dafdSJared McNeill 	snps_methods,
110b738dafdSJared McNeill 	sizeof(struct snps_softc),
111b738dafdSJared McNeill 	.uc_ops = &uart_ns8250_ops,
112b738dafdSJared McNeill 	.uc_range = 8,
113b738dafdSJared McNeill 	.uc_rclk = 0,
114b738dafdSJared McNeill };
115b738dafdSJared McNeill 
116b738dafdSJared McNeill static struct ofw_compat_data compat_data[] = {
117b738dafdSJared McNeill 	{ "snps,dw-apb-uart",		(uintptr_t)&uart_snps_class },
1180693b1d2SMarcin Wojtas 	{ "marvell,armada-38x-uart",	(uintptr_t)&uart_snps_class },
119b738dafdSJared McNeill 	{ NULL,				(uintptr_t)NULL }
120b738dafdSJared McNeill };
12127708858SRuslan Bukin UART_FDT_CLASS(compat_data);
122b738dafdSJared McNeill 
123b738dafdSJared McNeill static int
snps_get_clocks(device_t dev,clk_t * baudclk,clk_t * apb_pclk)124b738dafdSJared McNeill snps_get_clocks(device_t dev, clk_t *baudclk, clk_t *apb_pclk)
125b738dafdSJared McNeill {
126b738dafdSJared McNeill 
127b738dafdSJared McNeill 	*baudclk = NULL;
128b738dafdSJared McNeill 	*apb_pclk = NULL;
129b738dafdSJared McNeill 
130b738dafdSJared McNeill 	/* Baud clock is either named "baudclk", or there is a single
131b738dafdSJared McNeill 	 * unnamed clock.
132b738dafdSJared McNeill 	 */
133dac93553SMichal Meloun 	if (clk_get_by_ofw_name(dev, 0, "baudclk", baudclk) != 0 &&
134dac93553SMichal Meloun 	    clk_get_by_ofw_index(dev, 0, 0, baudclk) != 0)
135b738dafdSJared McNeill 		return (ENOENT);
136b738dafdSJared McNeill 
137b738dafdSJared McNeill 	/* APB peripheral clock is optional */
138dac93553SMichal Meloun 	(void)clk_get_by_ofw_name(dev, 0, "apb_pclk", apb_pclk);
139b738dafdSJared McNeill 
140b738dafdSJared McNeill 	return (0);
141b738dafdSJared McNeill }
142b738dafdSJared McNeill 
143b738dafdSJared McNeill static int
snps_probe(device_t dev)144b738dafdSJared McNeill snps_probe(device_t dev)
145b738dafdSJared McNeill {
146b738dafdSJared McNeill 	struct snps_softc *sc;
147b738dafdSJared McNeill 	struct uart_class *uart_class;
148b738dafdSJared McNeill 	phandle_t node;
149c214a270SRuslan Bukin 	uint32_t shift, iowidth, clock;
150b738dafdSJared McNeill 	uint64_t freq;
151b738dafdSJared McNeill 	int error;
152b738dafdSJared McNeill 	clk_t baudclk, apb_pclk;
153b738dafdSJared McNeill 	hwreset_t reset;
154b738dafdSJared McNeill 
155b738dafdSJared McNeill 	if (!ofw_bus_status_okay(dev))
156b738dafdSJared McNeill 		return (ENXIO);
157b738dafdSJared McNeill 
158b738dafdSJared McNeill 	uart_class = (struct uart_class *)ofw_bus_search_compatible(dev,
159b738dafdSJared McNeill 	    compat_data)->ocd_data;
160b738dafdSJared McNeill 	if (uart_class == NULL)
161b738dafdSJared McNeill 		return (ENXIO);
162b738dafdSJared McNeill 
163b738dafdSJared McNeill 	freq = 0;
164b738dafdSJared McNeill 	sc = device_get_softc(dev);
165b738dafdSJared McNeill 	sc->ns8250.base.sc_class = uart_class;
166b738dafdSJared McNeill 
167b738dafdSJared McNeill 	node = ofw_bus_get_node(dev);
168b738dafdSJared McNeill 	if (OF_getencprop(node, "reg-shift", &shift, sizeof(shift)) <= 0)
169b738dafdSJared McNeill 		shift = 0;
170c214a270SRuslan Bukin 	if (OF_getencprop(node, "reg-io-width", &iowidth, sizeof(iowidth)) <= 0)
171c214a270SRuslan Bukin 		iowidth = 1;
172b738dafdSJared McNeill 	if (OF_getencprop(node, "clock-frequency", &clock, sizeof(clock)) <= 0)
173b738dafdSJared McNeill 		clock = 0;
174b738dafdSJared McNeill 
175dac93553SMichal Meloun 	if (hwreset_get_by_ofw_idx(dev, 0, 0, &reset) == 0) {
176b738dafdSJared McNeill 		error = hwreset_deassert(reset);
177b738dafdSJared McNeill 		if (error != 0) {
178b738dafdSJared McNeill 			device_printf(dev, "cannot de-assert reset\n");
179b738dafdSJared McNeill 			return (error);
180b738dafdSJared McNeill 		}
181b738dafdSJared McNeill 	}
182b738dafdSJared McNeill 
183b738dafdSJared McNeill 	if (snps_get_clocks(dev, &baudclk, &apb_pclk) == 0) {
184b738dafdSJared McNeill 		error = clk_enable(baudclk);
185b738dafdSJared McNeill 		if (error != 0) {
186b738dafdSJared McNeill 			device_printf(dev, "cannot enable baud clock\n");
187b738dafdSJared McNeill 			return (error);
188b738dafdSJared McNeill 		}
189b738dafdSJared McNeill 		if (apb_pclk != NULL) {
190b738dafdSJared McNeill 			error = clk_enable(apb_pclk);
191b738dafdSJared McNeill 			if (error != 0) {
192b738dafdSJared McNeill 				device_printf(dev,
193b738dafdSJared McNeill 				    "cannot enable peripheral clock\n");
194b738dafdSJared McNeill 				return (error);
195b738dafdSJared McNeill 			}
196b738dafdSJared McNeill 		}
197b738dafdSJared McNeill 
198b738dafdSJared McNeill 		if (clock == 0) {
199b738dafdSJared McNeill 			error = clk_get_freq(baudclk, &freq);
200b738dafdSJared McNeill 			if (error != 0) {
201b738dafdSJared McNeill 				device_printf(dev, "cannot get frequency\n");
202b738dafdSJared McNeill 				return (error);
203b738dafdSJared McNeill 			}
204b738dafdSJared McNeill 			clock = (uint32_t)freq;
205b738dafdSJared McNeill 		}
206b738dafdSJared McNeill 	}
207b738dafdSJared McNeill 
208b738dafdSJared McNeill 	if (bootverbose && clock == 0)
209b738dafdSJared McNeill 		device_printf(dev, "could not determine frequency\n");
210b738dafdSJared McNeill 
211381388b9SMatt Macy 	error = uart_bus_probe(dev, (int)shift, (int)iowidth, (int)clock, 0, 0, UART_F_BUSY_DETECT);
2126bdc3988SKornel Dulęba 	if (error > 0)
213b738dafdSJared McNeill 		return (error);
214b738dafdSJared McNeill 
215b738dafdSJared McNeill 	/* XXX uart_bus_probe has changed the softc, so refresh it */
216b738dafdSJared McNeill 	sc = device_get_softc(dev);
217b738dafdSJared McNeill 
218b738dafdSJared McNeill 	/* Store clock and reset handles for detach */
219b738dafdSJared McNeill 	sc->baudclk = baudclk;
220b738dafdSJared McNeill 	sc->apb_pclk = apb_pclk;
221b738dafdSJared McNeill 	sc->reset = reset;
222b738dafdSJared McNeill 
2236bdc3988SKornel Dulęba 	return (BUS_PROBE_VENDOR);
224b738dafdSJared McNeill }
225b738dafdSJared McNeill 
226b738dafdSJared McNeill static int
snps_attach(device_t dev)22753b53933SKa Ho Ng snps_attach(device_t dev)
22853b53933SKa Ho Ng {
22953b53933SKa Ho Ng 	phandle_t node;
23053b53933SKa Ho Ng 	int ret;
23153b53933SKa Ho Ng 
23253b53933SKa Ho Ng 	ret = uart_bus_attach(dev);
23353b53933SKa Ho Ng 	if (ret == 0) {
23453b53933SKa Ho Ng 		node = ofw_bus_get_node(dev);
23553b53933SKa Ho Ng 		/* Set up phandle to dev mapping */
23653b53933SKa Ho Ng 		OF_device_register_xref(OF_xref_from_node(node), dev);
23753b53933SKa Ho Ng 	}
23853b53933SKa Ho Ng 
23953b53933SKa Ho Ng 	return (ret);
24053b53933SKa Ho Ng }
24153b53933SKa Ho Ng 
24253b53933SKa Ho Ng static int
snps_detach(device_t dev)243b738dafdSJared McNeill snps_detach(device_t dev)
244b738dafdSJared McNeill {
245b738dafdSJared McNeill 	struct snps_softc *sc;
246b738dafdSJared McNeill 	clk_t baudclk, apb_pclk;
247b738dafdSJared McNeill 	hwreset_t reset;
248b738dafdSJared McNeill 	int error;
249b738dafdSJared McNeill 
250b738dafdSJared McNeill 	sc = device_get_softc(dev);
251b738dafdSJared McNeill 	baudclk = sc->baudclk;
252b738dafdSJared McNeill 	apb_pclk = sc->apb_pclk;
253b738dafdSJared McNeill 	reset = sc->reset;
254b738dafdSJared McNeill 
255b738dafdSJared McNeill 	error = uart_bus_detach(dev);
256b738dafdSJared McNeill 	if (error != 0)
257b738dafdSJared McNeill 		return (error);
258b738dafdSJared McNeill 
259b738dafdSJared McNeill 	if (reset != NULL) {
260b738dafdSJared McNeill 		error = hwreset_assert(reset);
261b738dafdSJared McNeill 		if (error != 0) {
262b738dafdSJared McNeill 			device_printf(dev, "cannot assert reset\n");
263b738dafdSJared McNeill 			return (error);
264b738dafdSJared McNeill 		}
265b738dafdSJared McNeill 		hwreset_release(reset);
266b738dafdSJared McNeill 	}
267b738dafdSJared McNeill 	if (apb_pclk != NULL) {
268b738dafdSJared McNeill 		error = clk_release(apb_pclk);
269b738dafdSJared McNeill 		if (error != 0) {
270b738dafdSJared McNeill 			device_printf(dev, "cannot release peripheral clock\n");
271b738dafdSJared McNeill 			return (error);
272b738dafdSJared McNeill 		}
273b738dafdSJared McNeill 	}
274b738dafdSJared McNeill 	if (baudclk != NULL) {
275b738dafdSJared McNeill 		error = clk_release(baudclk);
276b738dafdSJared McNeill 		if (error != 0) {
277b738dafdSJared McNeill 			device_printf(dev, "cannot release baud clock\n");
278b738dafdSJared McNeill 			return (error);
279b738dafdSJared McNeill 		}
280b738dafdSJared McNeill 	}
281b738dafdSJared McNeill 
282b738dafdSJared McNeill 	return (0);
283b738dafdSJared McNeill }
284b738dafdSJared McNeill 
285b738dafdSJared McNeill static device_method_t snps_bus_methods[] = {
286b738dafdSJared McNeill 	/* Device interface */
287b738dafdSJared McNeill 	DEVMETHOD(device_probe,		snps_probe),
28853b53933SKa Ho Ng 	DEVMETHOD(device_attach,	snps_attach),
289b738dafdSJared McNeill 	DEVMETHOD(device_detach, 	snps_detach),
290b738dafdSJared McNeill 	DEVMETHOD_END
291b738dafdSJared McNeill };
292b738dafdSJared McNeill 
293b738dafdSJared McNeill static driver_t snps_uart_driver = {
294b738dafdSJared McNeill 	uart_driver_name,
295b738dafdSJared McNeill 	snps_bus_methods,
296b738dafdSJared McNeill 	sizeof(struct snps_softc)
297b738dafdSJared McNeill };
298b738dafdSJared McNeill 
299c90ea831SJohn Baldwin DRIVER_MODULE(uart_snps, simplebus, snps_uart_driver, 0, 0);
300