xref: /linux/drivers/tty/serial/8250/8250_of.c (revision d642ef71)
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  *  Serial Port driver for Open Firmware platform devices
4  *
5  *    Copyright (C) 2006 Arnd Bergmann <arnd@arndb.de>, IBM Corp.
6  */
7 #include <linux/console.h>
8 #include <linux/module.h>
9 #include <linux/slab.h>
10 #include <linux/serial_core.h>
11 #include <linux/serial_reg.h>
12 #include <linux/of_address.h>
13 #include <linux/of_irq.h>
14 #include <linux/of_platform.h>
15 #include <linux/pm_runtime.h>
16 #include <linux/clk.h>
17 #include <linux/reset.h>
18 
19 #include "8250.h"
20 
21 struct of_serial_info {
22 	struct clk *clk;
23 	struct reset_control *rst;
24 	int type;
25 	int line;
26 };
27 
28 /*
29  * Fill a struct uart_port for a given device node
30  */
31 static int of_platform_serial_setup(struct platform_device *ofdev,
32 			int type, struct uart_8250_port *up,
33 			struct of_serial_info *info)
34 {
35 	struct resource resource;
36 	struct device *dev = &ofdev->dev;
37 	struct device_node *np = dev->of_node;
38 	struct uart_port *port = &up->port;
39 	u32 clk, spd, prop;
40 	int ret, irq;
41 
42 	memset(port, 0, sizeof *port);
43 
44 	pm_runtime_enable(&ofdev->dev);
45 	pm_runtime_get_sync(&ofdev->dev);
46 
47 	if (of_property_read_u32(np, "clock-frequency", &clk)) {
48 
49 		/* Get clk rate through clk driver if present */
50 		info->clk = devm_clk_get_enabled(dev, NULL);
51 		if (IS_ERR(info->clk)) {
52 			ret = dev_err_probe(dev, PTR_ERR(info->clk), "failed to get clock\n");
53 			goto err_pmruntime;
54 		}
55 
56 		clk = clk_get_rate(info->clk);
57 	}
58 	/* If current-speed was set, then try not to change it. */
59 	if (of_property_read_u32(np, "current-speed", &spd) == 0)
60 		port->custom_divisor = clk / (16 * spd);
61 
62 	ret = of_address_to_resource(np, 0, &resource);
63 	if (ret) {
64 		dev_err_probe(dev, ret, "invalid address\n");
65 		goto err_pmruntime;
66 	}
67 
68 	port->flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF | UPF_FIXED_PORT |
69 				  UPF_FIXED_TYPE;
70 	spin_lock_init(&port->lock);
71 
72 	if (resource_type(&resource) == IORESOURCE_IO) {
73 		port->iotype = UPIO_PORT;
74 		port->iobase = resource.start;
75 	} else {
76 		port->mapbase = resource.start;
77 		port->mapsize = resource_size(&resource);
78 
79 		/* Check for shifted address mapping */
80 		if (of_property_read_u32(np, "reg-offset", &prop) == 0) {
81 			if (prop >= port->mapsize) {
82 				ret = dev_err_probe(dev, -EINVAL, "reg-offset %u exceeds region size %pa\n",
83 						    prop, &port->mapsize);
84 				goto err_pmruntime;
85 			}
86 
87 			port->mapbase += prop;
88 			port->mapsize -= prop;
89 		}
90 
91 		port->iotype = UPIO_MEM;
92 		if (of_property_read_u32(np, "reg-io-width", &prop) == 0) {
93 			switch (prop) {
94 			case 1:
95 				port->iotype = UPIO_MEM;
96 				break;
97 			case 2:
98 				port->iotype = UPIO_MEM16;
99 				break;
100 			case 4:
101 				port->iotype = of_device_is_big_endian(np) ?
102 					       UPIO_MEM32BE : UPIO_MEM32;
103 				break;
104 			default:
105 				ret = dev_err_probe(dev, -EINVAL, "unsupported reg-io-width (%u)\n",
106 						    prop);
107 				goto err_pmruntime;
108 			}
109 		}
110 		port->flags |= UPF_IOREMAP;
111 	}
112 
113 	/* Compatibility with the deprecated pxa driver and 8250_pxa drivers. */
114 	if (of_device_is_compatible(np, "mrvl,mmp-uart"))
115 		port->regshift = 2;
116 
117 	/* Check for registers offset within the devices address range */
118 	if (of_property_read_u32(np, "reg-shift", &prop) == 0)
119 		port->regshift = prop;
120 
121 	/* Check for fifo size */
122 	if (of_property_read_u32(np, "fifo-size", &prop) == 0)
123 		port->fifosize = prop;
124 
125 	/* Check for a fixed line number */
126 	ret = of_alias_get_id(np, "serial");
127 	if (ret >= 0)
128 		port->line = ret;
129 
130 	irq = of_irq_get(np, 0);
131 	if (irq < 0) {
132 		if (irq == -EPROBE_DEFER) {
133 			ret = -EPROBE_DEFER;
134 			goto err_pmruntime;
135 		}
136 		/* IRQ support not mandatory */
137 		irq = 0;
138 	}
139 
140 	port->irq = irq;
141 
142 	info->rst = devm_reset_control_get_optional_shared(&ofdev->dev, NULL);
143 	if (IS_ERR(info->rst)) {
144 		ret = PTR_ERR(info->rst);
145 		goto err_pmruntime;
146 	}
147 
148 	ret = reset_control_deassert(info->rst);
149 	if (ret)
150 		goto err_pmruntime;
151 
152 	port->type = type;
153 	port->uartclk = clk;
154 
155 	if (of_property_read_bool(np, "no-loopback-test"))
156 		port->flags |= UPF_SKIP_TEST;
157 
158 	port->dev = &ofdev->dev;
159 	port->rs485_config = serial8250_em485_config;
160 	port->rs485_supported = serial8250_em485_supported;
161 	up->rs485_start_tx = serial8250_em485_start_tx;
162 	up->rs485_stop_tx = serial8250_em485_stop_tx;
163 
164 	switch (type) {
165 	case PORT_RT2880:
166 		ret = rt288x_setup(port);
167 		if (ret)
168 			goto err_pmruntime;
169 		break;
170 	}
171 
172 	if (IS_REACHABLE(CONFIG_SERIAL_8250_FSL) &&
173 	    (of_device_is_compatible(np, "fsl,ns16550") ||
174 	     of_device_is_compatible(np, "fsl,16550-FIFO64"))) {
175 		port->handle_irq = fsl8250_handle_irq;
176 		port->has_sysrq = IS_ENABLED(CONFIG_SERIAL_8250_CONSOLE);
177 	}
178 
179 	return 0;
180 err_pmruntime:
181 	pm_runtime_put_sync(&ofdev->dev);
182 	pm_runtime_disable(&ofdev->dev);
183 	return ret;
184 }
185 
186 /*
187  * Try to register a serial port
188  */
189 static int of_platform_serial_probe(struct platform_device *ofdev)
190 {
191 	struct of_serial_info *info;
192 	struct uart_8250_port port8250;
193 	unsigned int port_type;
194 	u32 tx_threshold;
195 	int ret;
196 
197 	if (IS_ENABLED(CONFIG_SERIAL_8250_BCM7271) &&
198 	    of_device_is_compatible(ofdev->dev.of_node, "brcm,bcm7271-uart"))
199 		return -ENODEV;
200 
201 	port_type = (unsigned long)of_device_get_match_data(&ofdev->dev);
202 	if (port_type == PORT_UNKNOWN)
203 		return -EINVAL;
204 
205 	if (of_property_read_bool(ofdev->dev.of_node, "used-by-rtas"))
206 		return -EBUSY;
207 
208 	info = kzalloc(sizeof(*info), GFP_KERNEL);
209 	if (info == NULL)
210 		return -ENOMEM;
211 
212 	memset(&port8250, 0, sizeof(port8250));
213 	ret = of_platform_serial_setup(ofdev, port_type, &port8250, info);
214 	if (ret)
215 		goto err_free;
216 
217 	if (port8250.port.fifosize)
218 		port8250.capabilities = UART_CAP_FIFO;
219 
220 	/* Check for TX FIFO threshold & set tx_loadsz */
221 	if ((of_property_read_u32(ofdev->dev.of_node, "tx-threshold",
222 				  &tx_threshold) == 0) &&
223 	    (tx_threshold < port8250.port.fifosize))
224 		port8250.tx_loadsz = port8250.port.fifosize - tx_threshold;
225 
226 	if (of_property_read_bool(ofdev->dev.of_node, "auto-flow-control"))
227 		port8250.capabilities |= UART_CAP_AFE;
228 
229 	if (of_property_read_u32(ofdev->dev.of_node,
230 			"overrun-throttle-ms",
231 			&port8250.overrun_backoff_time_ms) != 0)
232 		port8250.overrun_backoff_time_ms = 0;
233 
234 	ret = serial8250_register_8250_port(&port8250);
235 	if (ret < 0)
236 		goto err_dispose;
237 
238 	info->type = port_type;
239 	info->line = ret;
240 	platform_set_drvdata(ofdev, info);
241 	return 0;
242 err_dispose:
243 	irq_dispose_mapping(port8250.port.irq);
244 	pm_runtime_put_sync(&ofdev->dev);
245 	pm_runtime_disable(&ofdev->dev);
246 err_free:
247 	kfree(info);
248 	return ret;
249 }
250 
251 /*
252  * Release a line
253  */
254 static int of_platform_serial_remove(struct platform_device *ofdev)
255 {
256 	struct of_serial_info *info = platform_get_drvdata(ofdev);
257 
258 	serial8250_unregister_port(info->line);
259 
260 	reset_control_assert(info->rst);
261 	pm_runtime_put_sync(&ofdev->dev);
262 	pm_runtime_disable(&ofdev->dev);
263 	kfree(info);
264 	return 0;
265 }
266 
267 #ifdef CONFIG_PM_SLEEP
268 static int of_serial_suspend(struct device *dev)
269 {
270 	struct of_serial_info *info = dev_get_drvdata(dev);
271 	struct uart_8250_port *port8250 = serial8250_get_port(info->line);
272 	struct uart_port *port = &port8250->port;
273 
274 	serial8250_suspend_port(info->line);
275 
276 	if (!uart_console(port) || console_suspend_enabled) {
277 		pm_runtime_put_sync(dev);
278 		clk_disable_unprepare(info->clk);
279 	}
280 	return 0;
281 }
282 
283 static int of_serial_resume(struct device *dev)
284 {
285 	struct of_serial_info *info = dev_get_drvdata(dev);
286 	struct uart_8250_port *port8250 = serial8250_get_port(info->line);
287 	struct uart_port *port = &port8250->port;
288 
289 	if (!uart_console(port) || console_suspend_enabled) {
290 		pm_runtime_get_sync(dev);
291 		clk_prepare_enable(info->clk);
292 	}
293 
294 	serial8250_resume_port(info->line);
295 
296 	return 0;
297 }
298 #endif
299 static SIMPLE_DEV_PM_OPS(of_serial_pm_ops, of_serial_suspend, of_serial_resume);
300 
301 /*
302  * A few common types, add more as needed.
303  */
304 static const struct of_device_id of_platform_serial_table[] = {
305 	{ .compatible = "ns8250",   .data = (void *)PORT_8250, },
306 	{ .compatible = "ns16450",  .data = (void *)PORT_16450, },
307 	{ .compatible = "ns16550a", .data = (void *)PORT_16550A, },
308 	{ .compatible = "ns16550",  .data = (void *)PORT_16550, },
309 	{ .compatible = "ns16750",  .data = (void *)PORT_16750, },
310 	{ .compatible = "ns16850",  .data = (void *)PORT_16850, },
311 	{ .compatible = "nxp,lpc3220-uart", .data = (void *)PORT_LPC3220, },
312 	{ .compatible = "ralink,rt2880-uart", .data = (void *)PORT_RT2880, },
313 	{ .compatible = "intel,xscale-uart", .data = (void *)PORT_XSCALE, },
314 	{ .compatible = "altr,16550-FIFO32",
315 		.data = (void *)PORT_ALTR_16550_F32, },
316 	{ .compatible = "altr,16550-FIFO64",
317 		.data = (void *)PORT_ALTR_16550_F64, },
318 	{ .compatible = "altr,16550-FIFO128",
319 		.data = (void *)PORT_ALTR_16550_F128, },
320 	{ .compatible = "fsl,16550-FIFO64",
321 		.data = (void *)PORT_16550A_FSL64, },
322 	{ .compatible = "mediatek,mtk-btif",
323 		.data = (void *)PORT_MTK_BTIF, },
324 	{ .compatible = "mrvl,mmp-uart",
325 		.data = (void *)PORT_XSCALE, },
326 	{ .compatible = "ti,da830-uart", .data = (void *)PORT_DA830, },
327 	{ .compatible = "nuvoton,wpcm450-uart", .data = (void *)PORT_NPCM, },
328 	{ .compatible = "nuvoton,npcm750-uart", .data = (void *)PORT_NPCM, },
329 	{ /* end of list */ },
330 };
331 MODULE_DEVICE_TABLE(of, of_platform_serial_table);
332 
333 static struct platform_driver of_platform_serial_driver = {
334 	.driver = {
335 		.name = "of_serial",
336 		.of_match_table = of_platform_serial_table,
337 		.pm = &of_serial_pm_ops,
338 	},
339 	.probe = of_platform_serial_probe,
340 	.remove = of_platform_serial_remove,
341 };
342 
343 module_platform_driver(of_platform_serial_driver);
344 
345 MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
346 MODULE_LICENSE("GPL");
347 MODULE_DESCRIPTION("Serial Port driver for Open Firmware platform devices");
348