8250_dw.c 9.1 KB
Newer Older
J
Jamie Iles 已提交
1 2 3 4
/*
 * Synopsys DesignWare 8250 driver.
 *
 * Copyright 2011 Picochip, Jamie Iles.
5
 * Copyright 2013 Intel Corporation
J
Jamie Iles 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * The Synopsys DesignWare 8250 has an extra feature whereby it detects if the
 * LCR is written whilst busy.  If it is, then a busy detect interrupt is
 * raised, the LCR needs to be rewritten and the uart status register read.
 */
#include <linux/device.h>
#include <linux/init.h>
#include <linux/io.h>
#include <linux/module.h>
#include <linux/serial_8250.h>
#include <linux/serial_core.h>
#include <linux/serial_reg.h>
#include <linux/of.h>
#include <linux/of_irq.h>
#include <linux/of_platform.h>
#include <linux/platform_device.h>
#include <linux/slab.h>
28
#include <linux/acpi.h>
29
#include <linux/clk.h>
30
#include <linux/pm_runtime.h>
J
Jamie Iles 已提交
31

32 33
#include "8250.h"

34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
/* Offsets for the DesignWare specific registers */
#define DW_UART_USR	0x1f /* UART Status Register */
#define DW_UART_CPR	0xf4 /* Component Parameter Register */
#define DW_UART_UCV	0xf8 /* UART Component Version */

/* Component Parameter Register bits */
#define DW_UART_CPR_ABP_DATA_WIDTH	(3 << 0)
#define DW_UART_CPR_AFCE_MODE		(1 << 4)
#define DW_UART_CPR_THRE_MODE		(1 << 5)
#define DW_UART_CPR_SIR_MODE		(1 << 6)
#define DW_UART_CPR_SIR_LP_MODE		(1 << 7)
#define DW_UART_CPR_ADDITIONAL_FEATURES	(1 << 8)
#define DW_UART_CPR_FIFO_ACCESS		(1 << 9)
#define DW_UART_CPR_FIFO_STAT		(1 << 10)
#define DW_UART_CPR_SHADOW		(1 << 11)
#define DW_UART_CPR_ENCODED_PARMS	(1 << 12)
#define DW_UART_CPR_DMA_EXTRA		(1 << 13)
#define DW_UART_CPR_FIFO_MODE		(0xff << 16)
/* Helper for fifo size calculation */
#define DW_UART_CPR_FIFO_SIZE(a)	(((a >> 16) & 0xff) * 16)


J
Jamie Iles 已提交
56
struct dw8250_data {
57 58 59
	int		last_lcr;
	int		line;
	struct clk	*clk;
J
Jamie Iles 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
};

static void dw8250_serial_out(struct uart_port *p, int offset, int value)
{
	struct dw8250_data *d = p->private_data;

	if (offset == UART_LCR)
		d->last_lcr = value;

	offset <<= p->regshift;
	writeb(value, p->membase + offset);
}

static unsigned int dw8250_serial_in(struct uart_port *p, int offset)
{
	offset <<= p->regshift;

	return readb(p->membase + offset);
}

static void dw8250_serial_out32(struct uart_port *p, int offset, int value)
{
	struct dw8250_data *d = p->private_data;

	if (offset == UART_LCR)
		d->last_lcr = value;

	offset <<= p->regshift;
	writel(value, p->membase + offset);
}

static unsigned int dw8250_serial_in32(struct uart_port *p, int offset)
{
	offset <<= p->regshift;

	return readl(p->membase + offset);
}

static int dw8250_handle_irq(struct uart_port *p)
{
	struct dw8250_data *d = p->private_data;
	unsigned int iir = p->serial_in(p, UART_IIR);

	if (serial8250_handle_irq(p, iir)) {
		return 1;
	} else if ((iir & UART_IIR_BUSY) == UART_IIR_BUSY) {
		/* Clear the USR and write the LCR again. */
107
		(void)p->serial_in(p, DW_UART_USR);
108
		p->serial_out(p, UART_LCR, d->last_lcr);
J
Jamie Iles 已提交
109 110 111 112 113 114 115

		return 1;
	}

	return 0;
}

116 117 118 119 120 121 122 123 124 125 126 127
static void
dw8250_do_pm(struct uart_port *port, unsigned int state, unsigned int old)
{
	if (!state)
		pm_runtime_get_sync(port->dev);

	serial8250_do_pm(port, state, old);

	if (state)
		pm_runtime_put_sync_suspend(port->dev);
}

128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
static int dw8250_probe_of(struct uart_port *p)
{
	struct device_node	*np = p->dev->of_node;
	u32			val;

	if (!of_property_read_u32(np, "reg-io-width", &val)) {
		switch (val) {
		case 1:
			break;
		case 4:
			p->iotype = UPIO_MEM32;
			p->serial_in = dw8250_serial_in32;
			p->serial_out = dw8250_serial_out32;
			break;
		default:
			dev_err(p->dev, "unsupported reg-io-width (%u)\n", val);
			return -EINVAL;
		}
	}

	if (!of_property_read_u32(np, "reg-shift", &val))
		p->regshift = val;

151 152 153 154 155
	/* clock got configured through clk api, all done */
	if (p->uartclk)
		return 0;

	/* try to find out clock frequency from DT as fallback */
156
	if (of_property_read_u32(np, "clock-frequency", &val)) {
157
		dev_err(p->dev, "clk or clock-frequency not defined\n");
158 159 160 161 162 163 164
		return -EINVAL;
	}
	p->uartclk = val;

	return 0;
}

165
#ifdef CONFIG_ACPI
166
static int dw8250_probe_acpi(struct uart_8250_port *up)
167 168
{
	const struct acpi_device_id *id;
169
	struct uart_port *p = &up->port;
170 171 172 173 174 175 176 177 178

	id = acpi_match_device(p->dev->driver->acpi_match_table, p->dev);
	if (!id)
		return -ENODEV;

	p->iotype = UPIO_MEM32;
	p->serial_in = dw8250_serial_in32;
	p->serial_out = dw8250_serial_out32;
	p->regshift = 2;
179 180 181

	if (!p->uartclk)
		p->uartclk = (unsigned int)id->driver_data;
182

183 184 185 186 187 188
	up->dma = devm_kzalloc(p->dev, sizeof(*up->dma), GFP_KERNEL);
	if (!up->dma)
		return -ENOMEM;

	up->dma->rxconf.src_maxburst = p->fifosize / 4;
	up->dma->txconf.dst_maxburst = p->fifosize / 4;
189

190 191
	return 0;
}
192
#else
193
static inline int dw8250_probe_acpi(struct uart_8250_port *up)
194 195 196 197
{
	return -ENODEV;
}
#endif /* CONFIG_ACPI */
198

199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
static void dw8250_setup_port(struct uart_8250_port *up)
{
	struct uart_port	*p = &up->port;
	u32			reg = readl(p->membase + DW_UART_UCV);

	/*
	 * If the Component Version Register returns zero, we know that
	 * ADDITIONAL_FEATURES are not enabled. No need to go any further.
	 */
	if (!reg)
		return;

	dev_dbg_ratelimited(p->dev, "Designware UART version %c.%c%c\n",
		(reg >> 24) & 0xff, (reg >> 16) & 0xff, (reg >> 8) & 0xff);

	reg = readl(p->membase + DW_UART_CPR);
	if (!reg)
		return;

	/* Select the type based on fifo */
	if (reg & DW_UART_CPR_FIFO_MODE) {
		p->type = PORT_16550A;
		p->flags |= UPF_FIXED_TYPE;
		p->fifosize = DW_UART_CPR_FIFO_SIZE(reg);
		up->tx_loadsz = p->fifosize;
224
		up->capabilities = UART_CAP_FIFO;
225
	}
226 227 228

	if (reg & DW_UART_CPR_AFCE_MODE)
		up->capabilities |= UART_CAP_AFE;
229 230
}

B
Bill Pemberton 已提交
231
static int dw8250_probe(struct platform_device *pdev)
J
Jamie Iles 已提交
232
{
233
	struct uart_8250_port uart = {};
J
Jamie Iles 已提交
234 235 236
	struct resource *regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	struct resource *irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
	struct dw8250_data *data;
237
	int err;
J
Jamie Iles 已提交
238 239 240 241 242 243

	if (!regs || !irq) {
		dev_err(&pdev->dev, "no registers/irq defined\n");
		return -EINVAL;
	}

244 245 246 247
	spin_lock_init(&uart.port.lock);
	uart.port.mapbase = regs->start;
	uart.port.irq = irq->start;
	uart.port.handle_irq = dw8250_handle_irq;
248
	uart.port.pm = dw8250_do_pm;
249
	uart.port.type = PORT_8250;
H
Heikki Krogerus 已提交
250
	uart.port.flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF | UPF_FIXED_PORT;
251
	uart.port.dev = &pdev->dev;
J
Jamie Iles 已提交
252

253 254
	uart.port.membase = devm_ioremap(&pdev->dev, regs->start,
					 resource_size(regs));
H
Heikki Krogerus 已提交
255 256 257
	if (!uart.port.membase)
		return -ENOMEM;

258 259 260 261 262 263 264 265 266 267
	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
	if (!data)
		return -ENOMEM;

	data->clk = devm_clk_get(&pdev->dev, NULL);
	if (!IS_ERR(data->clk)) {
		clk_prepare_enable(data->clk);
		uart.port.uartclk = clk_get_rate(data->clk);
	}

268 269 270
	uart.port.iotype = UPIO_MEM;
	uart.port.serial_in = dw8250_serial_in;
	uart.port.serial_out = dw8250_serial_out;
271
	uart.port.private_data = data;
272

273 274
	dw8250_setup_port(&uart);

275 276 277 278
	if (pdev->dev.of_node) {
		err = dw8250_probe_of(&uart.port);
		if (err)
			return err;
279
	} else if (ACPI_HANDLE(&pdev->dev)) {
280
		err = dw8250_probe_acpi(&uart);
281 282
		if (err)
			return err;
283 284
	} else {
		return -ENODEV;
J
Jamie Iles 已提交
285 286
	}

287
	data->line = serial8250_register_8250_port(&uart);
J
Jamie Iles 已提交
288 289 290 291 292
	if (data->line < 0)
		return data->line;

	platform_set_drvdata(pdev, data);

293 294 295
	pm_runtime_set_active(&pdev->dev);
	pm_runtime_enable(&pdev->dev);

J
Jamie Iles 已提交
296 297 298
	return 0;
}

B
Bill Pemberton 已提交
299
static int dw8250_remove(struct platform_device *pdev)
J
Jamie Iles 已提交
300 301 302
{
	struct dw8250_data *data = platform_get_drvdata(pdev);

303 304
	pm_runtime_get_sync(&pdev->dev);

J
Jamie Iles 已提交
305 306
	serial8250_unregister_port(data->line);

307 308 309
	if (!IS_ERR(data->clk))
		clk_disable_unprepare(data->clk);

310 311 312
	pm_runtime_disable(&pdev->dev);
	pm_runtime_put_noidle(&pdev->dev);

J
Jamie Iles 已提交
313 314 315
	return 0;
}

316
#ifdef CONFIG_PM
317
static int dw8250_suspend(struct device *dev)
318
{
319
	struct dw8250_data *data = dev_get_drvdata(dev);
320 321 322 323 324 325

	serial8250_suspend_port(data->line);

	return 0;
}

326
static int dw8250_resume(struct device *dev)
327
{
328
	struct dw8250_data *data = dev_get_drvdata(dev);
329 330 331 332 333 334 335

	serial8250_resume_port(data->line);

	return 0;
}
#endif /* CONFIG_PM */

336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
#ifdef CONFIG_PM_RUNTIME
static int dw8250_runtime_suspend(struct device *dev)
{
	struct dw8250_data *data = dev_get_drvdata(dev);

	clk_disable_unprepare(data->clk);

	return 0;
}

static int dw8250_runtime_resume(struct device *dev)
{
	struct dw8250_data *data = dev_get_drvdata(dev);

	clk_prepare_enable(data->clk);

	return 0;
}
#endif

static const struct dev_pm_ops dw8250_pm_ops = {
	SET_SYSTEM_SLEEP_PM_OPS(dw8250_suspend, dw8250_resume)
	SET_RUNTIME_PM_OPS(dw8250_runtime_suspend, dw8250_runtime_resume, NULL)
};

361
static const struct of_device_id dw8250_of_match[] = {
J
Jamie Iles 已提交
362 363 364
	{ .compatible = "snps,dw-apb-uart" },
	{ /* Sentinel */ }
};
365
MODULE_DEVICE_TABLE(of, dw8250_of_match);
J
Jamie Iles 已提交
366

367
static const struct acpi_device_id dw8250_acpi_match[] = {
368 369
	{ "INT33C4", 0 },
	{ "INT33C5", 0 },
370 371 372 373
	{ },
};
MODULE_DEVICE_TABLE(acpi, dw8250_acpi_match);

J
Jamie Iles 已提交
374 375 376 377
static struct platform_driver dw8250_platform_driver = {
	.driver = {
		.name		= "dw-apb-uart",
		.owner		= THIS_MODULE,
378
		.pm		= &dw8250_pm_ops,
379
		.of_match_table	= dw8250_of_match,
380
		.acpi_match_table = ACPI_PTR(dw8250_acpi_match),
J
Jamie Iles 已提交
381 382
	},
	.probe			= dw8250_probe,
383
	.remove			= dw8250_remove,
J
Jamie Iles 已提交
384 385
};

386
module_platform_driver(dw8250_platform_driver);
J
Jamie Iles 已提交
387 388 389 390

MODULE_AUTHOR("Jamie Iles");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Synopsys DesignWare 8250 serial port driver");