uart_cpu_fdt.c revision 295909
1/*-
2 * Copyright (c) 2009-2010 The FreeBSD Foundation
3 * All rights reserved.
4 *
5 * This software was developed by Semihalf under sponsorship from
6 * the FreeBSD Foundation.
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__FBSDID("$FreeBSD: head/sys/dev/uart/uart_cpu_fdt.c 295909 2016-02-23 02:57:45Z ian $");
32
33#include "opt_platform.h"
34
35#include <sys/param.h>
36#include <sys/bus.h>
37#include <sys/kernel.h>
38#include <sys/module.h>
39#include <sys/systm.h>
40
41#include <vm/vm.h>
42#include <vm/pmap.h>
43
44#include <machine/bus.h>
45#ifndef __aarch64__
46#include <machine/fdt.h>
47#endif
48
49#include <dev/fdt/fdt_common.h>
50#include <dev/ofw/ofw_bus.h>
51#include <dev/ofw/ofw_bus_subr.h>
52#include <dev/uart/uart.h>
53#include <dev/uart/uart_bus.h>
54#include <dev/uart/uart_cpu.h>
55#include <dev/uart/uart_cpu_fdt.h>
56
57#ifdef __aarch64__
58extern bus_space_tag_t fdtbus_bs_tag;
59#endif
60
61/*
62 * UART console routines.
63 */
64bus_space_tag_t uart_bus_space_io;
65bus_space_tag_t uart_bus_space_mem;
66
67int
68uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2)
69{
70
71	if (b1->bst != b2->bst)
72		return (0);
73	if (pmap_kextract(b1->bsh) == 0)
74		return (0);
75	if (pmap_kextract(b2->bsh) == 0)
76		return (0);
77	return ((pmap_kextract(b1->bsh) == pmap_kextract(b2->bsh)) ? 1 : 0);
78}
79
80static int
81phandle_chosen_propdev(phandle_t chosen, const char *name, phandle_t *node)
82{
83	char buf[64];
84
85	if (OF_getprop(chosen, name, buf, sizeof(buf)) <= 0)
86		return (ENXIO);
87	if ((*node = OF_finddevice(buf)) == -1)
88		return (ENXIO);
89
90	return (0);
91}
92
93static const struct ofw_compat_data *
94uart_fdt_find_compatible(phandle_t node, const struct ofw_compat_data *cd)
95{
96	const struct ofw_compat_data *ocd;
97
98	for (ocd = cd; ocd->ocd_str != NULL; ocd++) {
99		if (fdt_is_compatible(node, ocd->ocd_str))
100			return (ocd);
101	}
102	return (NULL);
103}
104
105static uintptr_t
106uart_fdt_find_by_node(phandle_t node, int class_list)
107{
108	struct ofw_compat_data **cd;
109	const struct ofw_compat_data *ocd;
110
111	if (class_list) {
112		SET_FOREACH(cd, uart_fdt_class_set) {
113			ocd = uart_fdt_find_compatible(node, *cd);
114			if ((ocd != NULL) && (ocd->ocd_data != 0))
115				return (ocd->ocd_data);
116		}
117	} else {
118		SET_FOREACH(cd, uart_fdt_class_and_device_set) {
119			ocd = uart_fdt_find_compatible(node, *cd);
120			if ((ocd != NULL) && (ocd->ocd_data != 0))
121				return (ocd->ocd_data);
122		}
123	}
124	return (0);
125}
126
127int
128uart_cpu_getdev(int devtype, struct uart_devinfo *di)
129{
130	const char *propnames[] = {"stdout-path", "linux,stdout-path", "stdout",
131	    "stdin-path", "stdin", NULL};
132	const char **name;
133	struct uart_class *class;
134	phandle_t node, chosen;
135	pcell_t shift, br, rclk;
136	char *cp;
137	int err;
138
139	/* Allow overriding the FDT using the environment. */
140	class = &uart_ns8250_class;
141	err = uart_getenv(devtype, di, class);
142	if (!err)
143		return (0);
144
145	if (devtype != UART_DEV_CONSOLE)
146		return (ENXIO);
147
148	/* Has the user forced a specific device node? */
149	cp = kern_getenv("hw.fdt.console");
150	if (cp == NULL) {
151		/*
152		 * Retrieve /chosen/std{in,out}.
153		 */
154		node = -1;
155		if ((chosen = OF_finddevice("/chosen")) != -1) {
156			for (name = propnames; *name != NULL; name++) {
157				if (phandle_chosen_propdev(chosen, *name,
158				    &node) == 0)
159					break;
160			}
161		}
162		if (chosen == -1 || *name == NULL)
163			node = OF_finddevice("serial0"); /* Last ditch */
164	} else {
165		node = OF_finddevice(cp);
166	}
167
168	if (node == -1) /* Can't find anything */
169		return (ENXIO);
170
171	/*
172	 * Check old style of UART definition first. Unfortunately, the common
173	 * FDT processing is not possible if we have clock, power domains and
174	 * pinmux stuff.
175	 */
176	class = (struct uart_class *)uart_fdt_find_by_node(node, 0);
177	if (class != NULL) {
178		if ((err = uart_fdt_get_clock(node, &rclk)) != 0)
179			return (err);
180	} else {
181		/* Check class only linker set */
182		class =
183		    (struct uart_class *)uart_fdt_find_by_node(node, 1);
184		if (class == NULL)
185			return (ENXIO);
186		rclk = 0;
187	}
188
189	/*
190	 * Retrieve serial attributes.
191	 */
192	if (uart_fdt_get_shift(node, &shift) != 0)
193		shift = uart_getregshift(class);
194
195	if (OF_getencprop(node, "current-speed", &br, sizeof(br)) <= 0)
196		br = 0;
197
198	/*
199	 * Finalize configuration.
200	 */
201	di->bas.chan = 0;
202	di->bas.regshft = (u_int)shift;
203	di->baudrate = br;
204	di->bas.rclk = (u_int)rclk;
205	di->ops = uart_getops(class);
206	di->databits = 8;
207	di->stopbits = 1;
208	di->parity = UART_PARITY_NONE;
209
210	err = OF_decode_addr(node, 0, &di->bas.bst, &di->bas.bsh, NULL);
211	uart_bus_space_mem = di->bas.bst;
212	uart_bus_space_io = NULL;
213
214	return (err);
215}
216