xref: /freebsd/sys/dev/uart/uart_cpu_powerpc.c (revision 71099ec5097cff9b4a566e5474b7f214bd539e8a)
1 /*-
2  * Copyright (c) 2006 Marcel Moolenaar
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  *
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 __FBSDID("$FreeBSD$");
29 
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <vm/vm.h>
33 #include <vm/pmap.h>
34 
35 #include <machine/bus.h>
36 #include <machine/ofw_machdep.h>
37 
38 #include <dev/ofw/openfirm.h>
39 #include <dev/uart/uart.h>
40 #include <dev/uart/uart_cpu.h>
41 
42 bus_space_tag_t uart_bus_space_io = &bs_le_tag;
43 bus_space_tag_t uart_bus_space_mem = &bs_le_tag;
44 
45 int
46 uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2)
47 {
48 
49 	return ((pmap_kextract(b1->bsh) == pmap_kextract(b2->bsh)) ? 1 : 0);
50 }
51 
52 static int
53 ofw_get_uart_console(phandle_t opts, phandle_t *result, const char *inputdev,
54     const char *outputdev)
55 {
56 	char buf[64];
57 	phandle_t input;
58 
59 	if (OF_getprop(opts, inputdev, buf, sizeof(buf)) == -1)
60 		return (ENXIO);
61 	input = OF_finddevice(buf);
62 	if (input == -1)
63 		return (ENXIO);
64 
65 	if (outputdev != NULL) {
66 		if (OF_getprop(opts, outputdev, buf, sizeof(buf)) == -1)
67 			return (ENXIO);
68 		if (OF_finddevice(buf) != input)
69 			return (ENXIO);
70 	}
71 
72 	*result = input;
73 	return (0);
74 }
75 
76 static int
77 ofw_get_console_phandle_path(phandle_t node, phandle_t *result,
78     const char *prop)
79 {
80 	union {
81 		char buf[64];
82 		phandle_t ref;
83 	} field;
84 	phandle_t output;
85 	ssize_t size;
86 
87 	size = OF_getproplen(node, prop);
88 	if (size == -1)
89 		return (ENXIO);
90 	OF_getprop(node, prop, &field, sizeof(field));
91 
92 	/* This property might be either a ihandle or path. Hooray. */
93 
94 	output = -1;
95 	if (field.buf[size - 1] == 0)
96 		output = OF_finddevice(field.buf);
97 	if (output == -1 && size == 4)
98 		output = OF_instance_to_package(field.ref);
99 
100 	if (output != -1) {
101 		*result = output;
102 		return (0);
103 	}
104 
105 	return (ENXIO);
106 }
107 
108 int
109 uart_cpu_getdev(int devtype, struct uart_devinfo *di)
110 {
111 	char buf[64];
112 	struct uart_class *class;
113 	phandle_t input, opts, chosen;
114 	int error;
115 
116 	class = &uart_z8530_class;
117 	if (class == NULL)
118 		return (ENXIO);
119 
120 	opts = OF_finddevice("/options");
121 	chosen = OF_finddevice("/chosen");
122 	switch (devtype) {
123 	case UART_DEV_CONSOLE:
124 		error = ENXIO;
125 		if (chosen != -1 && error != 0)
126 			error = ofw_get_uart_console(chosen, &input,
127 			    "stdout-path", NULL);
128 		if (chosen != -1 && error != 0)
129 			error = ofw_get_uart_console(chosen, &input,
130 			    "linux,stdout-path", NULL);
131 		if (chosen != -1 && error != 0)
132 			error = ofw_get_console_phandle_path(chosen, &input,
133 			    "stdout");
134 		if (chosen != -1 && error != 0)
135 			error = ofw_get_uart_console(chosen, &input,
136 			    "stdin-path", NULL);
137 		if (chosen != -1 && error != 0)
138 			error = ofw_get_console_phandle_path(chosen, &input,
139 			    "stdin");
140 		if (opts != -1 && error != 0)
141 			error = ofw_get_uart_console(opts, &input,
142 			    "input-device", "output-device");
143 		if (opts != -1 && error != 0)
144 			error = ofw_get_uart_console(opts, &input,
145 			    "input-device-1", "output-device-1");
146 		if (error != 0) {
147 			input = OF_finddevice("serial0"); /* Last ditch */
148 			if (input == -1)
149 				error = (ENXIO);
150 		}
151 
152 		if (error != 0)
153 			return (error);
154 		break;
155 	case UART_DEV_DBGPORT:
156 		if (!getenv_string("hw.uart.dbgport", buf, sizeof(buf)))
157 			return (ENXIO);
158 		input = OF_finddevice(buf);
159 		if (input == -1)
160 			return (ENXIO);
161 		break;
162 	default:
163 		return (EINVAL);
164 	}
165 
166 	if (OF_getprop(input, "device_type", buf, sizeof(buf)) == -1)
167 		return (ENXIO);
168 	if (strcmp(buf, "serial") != 0)
169 		return (ENXIO);
170 	if (OF_getprop(input, "compatible", buf, sizeof(buf)) == -1)
171 		return (ENXIO);
172 
173 	if (strncmp(buf, "chrp,es", 7) == 0) {
174 		class = &uart_z8530_class;
175 		di->bas.regshft = 4;
176 		di->bas.chan = 1;
177 	} else if (strcmp(buf,"ns16550") == 0 || strcmp(buf,"ns8250") == 0) {
178 		class = &uart_ns8250_class;
179 		di->bas.regshft = 0;
180 		di->bas.chan = 0;
181 	} else
182 		return (ENXIO);
183 
184 	error = OF_decode_addr(input, 0, &di->bas.bst, &di->bas.bsh);
185 	if (error)
186 		return (error);
187 
188 	di->ops = uart_getops(class);
189 
190 	if (OF_getprop(input, "clock-frequency", &di->bas.rclk,
191 	    sizeof(di->bas.rclk)) == -1)
192 		di->bas.rclk = 230400;
193 	if (OF_getprop(input, "current-speed", &di->baudrate,
194 	    sizeof(di->baudrate)) == -1)
195 		di->baudrate = 0;
196 	OF_getprop(input, "reg-shift", &di->bas.regshft,
197 	    sizeof(di->bas.regshft));
198 
199 	di->databits = 8;
200 	di->stopbits = 1;
201 	di->parity = UART_PARITY_NONE;
202 	return (0);
203 }
204 
205