omap-serial.c 43.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Driver for OMAP-UART controller.
 * Based on drivers/serial/8250.c
 *
 * Copyright (C) 2010 Texas Instruments.
 *
 * Authors:
 *	Govindraj R	<govindraj.raja@ti.com>
 *	Thara Gopinath	<thara@ti.com>
 *
 * 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.
 *
L
Lucas De Marchi 已提交
16
 * Note: This driver is made separate from 8250 driver as we cannot
17 18 19 20 21 22
 * over load 8250 driver with omap platform specific configuration for
 * features like DMA, it makes easier to implement features like DMA and
 * hardware flow control and software flow control configuration with
 * this driver as required for the omap-platform.
 */

23 24 25 26
#if defined(CONFIG_SERIAL_OMAP_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
#define SUPPORT_SYSRQ
#endif

27 28 29 30 31 32 33 34
#include <linux/module.h>
#include <linux/init.h>
#include <linux/console.h>
#include <linux/serial_reg.h>
#include <linux/delay.h>
#include <linux/slab.h>
#include <linux/tty.h>
#include <linux/tty_flip.h>
35
#include <linux/platform_device.h>
36 37 38 39
#include <linux/io.h>
#include <linux/clk.h>
#include <linux/serial_core.h>
#include <linux/irq.h>
40
#include <linux/pm_runtime.h>
41
#include <linux/of.h>
42
#include <linux/gpio.h>
43
#include <linux/platform_data/serial-omap.h>
44

45 46
#define OMAP_MAX_HSUART_PORTS	6

47 48 49 50 51 52 53
#define UART_BUILD_REVISION(x, y)	(((x) << 8) | (y))

#define OMAP_UART_REV_42 0x0402
#define OMAP_UART_REV_46 0x0406
#define OMAP_UART_REV_52 0x0502
#define OMAP_UART_REV_63 0x0603

54 55 56 57 58
#define OMAP_UART_TX_WAKEUP_EN		BIT(7)

/* Feature flags */
#define OMAP_UART_WER_HAS_TX_WAKEUP	BIT(0)

59 60 61
#define UART_ERRATA_i202_MDR1_ACCESS	BIT(0)
#define UART_ERRATA_i291_DMA_FORCEIDLE	BIT(1)

62 63
#define DEFAULT_CLK_SPEED 48000000 /* 48Mhz*/

64 65
/* SCR register bitmasks */
#define OMAP_UART_SCR_RX_TRIG_GRANU1_MASK		(1 << 7)
66
#define OMAP_UART_SCR_TX_TRIG_GRANU1_MASK		(1 << 6)
67
#define OMAP_UART_SCR_TX_EMPTY			(1 << 3)
68 69 70

/* FCR register bitmasks */
#define OMAP_UART_FCR_RX_FIFO_TRIG_MASK			(0x3 << 6)
71
#define OMAP_UART_FCR_TX_FIFO_TRIG_MASK			(0x3 << 4)
72

73 74 75 76 77 78 79 80 81 82 83
/* MVR register bitmasks */
#define OMAP_UART_MVR_SCHEME_SHIFT	30

#define OMAP_UART_LEGACY_MVR_MAJ_MASK	0xf0
#define OMAP_UART_LEGACY_MVR_MAJ_SHIFT	4
#define OMAP_UART_LEGACY_MVR_MIN_MASK	0x0f

#define OMAP_UART_MVR_MAJ_MASK		0x700
#define OMAP_UART_MVR_MAJ_SHIFT		8
#define OMAP_UART_MVR_MIN_MASK		0x3f

84 85 86 87 88 89 90 91 92 93 94
#define OMAP_UART_DMA_CH_FREE	-1

#define MSR_SAVE_FLAGS		UART_MSR_ANY_DELTA
#define OMAP_MODE13X_SPEED	230400

/* WER = 0x7F
 * Enable module level wakeup in WER reg
 */
#define OMAP_UART_WER_MOD_WKUP	0X7F

/* Enable XON/XOFF flow control on output */
95
#define OMAP_UART_SW_TX		0x08
96 97

/* Enable XON/XOFF flow control on input */
98
#define OMAP_UART_SW_RX		0x02
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129

#define OMAP_UART_SW_CLR	0xF0

#define OMAP_UART_TCR_TRIG	0x0F

struct uart_omap_dma {
	u8			uart_dma_tx;
	u8			uart_dma_rx;
	int			rx_dma_channel;
	int			tx_dma_channel;
	dma_addr_t		rx_buf_dma_phys;
	dma_addr_t		tx_buf_dma_phys;
	unsigned int		uart_base;
	/*
	 * Buffer for rx dma.It is not required for tx because the buffer
	 * comes from port structure.
	 */
	unsigned char		*rx_buf;
	unsigned int		prev_rx_dma_pos;
	int			tx_buf_size;
	int			tx_dma_used;
	int			rx_dma_used;
	spinlock_t		tx_lock;
	spinlock_t		rx_lock;
	/* timer to poll activity on rx dma */
	struct timer_list	rx_timer;
	unsigned int		rx_buf_size;
	unsigned int		rx_poll_rate;
	unsigned int		rx_timeout;
};

130 131 132 133 134 135 136 137 138 139 140 141 142 143
struct uart_omap_port {
	struct uart_port	port;
	struct uart_omap_dma	uart_dma;
	struct device		*dev;

	unsigned char		ier;
	unsigned char		lcr;
	unsigned char		mcr;
	unsigned char		fcr;
	unsigned char		efr;
	unsigned char		dll;
	unsigned char		dlh;
	unsigned char		mdr1;
	unsigned char		scr;
144
	unsigned char		wer;
145 146 147 148 149 150 151 152 153 154 155

	int			use_dma;
	/*
	 * Some bits in registers are cleared on a read, so they must
	 * be saved whenever the register is read but the bits will not
	 * be immediately processed.
	 */
	unsigned int		lsr_break_flag;
	unsigned char		msr_saved_flags;
	char			name[20];
	unsigned long		port_activity;
156
	int			context_loss_cnt;
157 158
	u32			errata;
	u8			wakeups_enabled;
159
	u32			features;
160

161 162 163 164
	int			DTR_gpio;
	int			DTR_inverted;
	int			DTR_active;

165 166 167 168
	struct pm_qos_request	pm_qos_request;
	u32			latency;
	u32			calc_latency;
	struct work_struct	qos_work;
169
	bool			is_suspending;
170 171 172 173
};

#define to_uart_omap_port(p)	((container_of((p), struct uart_omap_port, port)))

174 175 176
static struct uart_omap_port *ui[OMAP_MAX_HSUART_PORTS];

/* Forward declaration of functions */
177
static void serial_omap_mdr1_errataset(struct uart_omap_port *up, u8 mdr1);
178

179
static struct workqueue_struct *serial_omap_uart_wq;
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200

static inline unsigned int serial_in(struct uart_omap_port *up, int offset)
{
	offset <<= up->port.regshift;
	return readw(up->port.membase + offset);
}

static inline void serial_out(struct uart_omap_port *up, int offset, int value)
{
	offset <<= up->port.regshift;
	writew(value, up->port.membase + offset);
}

static inline void serial_omap_clear_fifos(struct uart_omap_port *up)
{
	serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
	serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO |
		       UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
	serial_out(up, UART_FCR, 0);
}

201 202
static int serial_omap_get_context_loss_count(struct uart_omap_port *up)
{
203
	struct omap_uart_port_info *pdata = up->dev->platform_data;
204

F
Felipe Balbi 已提交
205
	if (!pdata || !pdata->get_context_loss_count)
206
		return -EINVAL;
207

208
	return pdata->get_context_loss_count(up->dev);
209 210 211 212
}

static void serial_omap_enable_wakeup(struct uart_omap_port *up, bool enable)
{
213
	struct omap_uart_port_info *pdata = up->dev->platform_data;
214

F
Felipe Balbi 已提交
215 216 217 218
	if (!pdata || !pdata->enable_wakeup)
		return;

	pdata->enable_wakeup(up->dev, enable);
219 220
}

221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
/*
 * serial_omap_baud_is_mode16 - check if baud rate is MODE16X
 * @port: uart port info
 * @baud: baudrate for which mode needs to be determined
 *
 * Returns true if baud rate is MODE16X and false if MODE13X
 * Original table in OMAP TRM named "UART Mode Baud Rates, Divisor Values,
 * and Error Rates" determines modes not for all common baud rates.
 * E.g. for 1000000 baud rate mode must be 16x, but according to that
 * table it's determined as 13x.
 */
static bool
serial_omap_baud_is_mode16(struct uart_port *port, unsigned int baud)
{
	unsigned int n13 = port->uartclk / (13 * baud);
	unsigned int n16 = port->uartclk / (16 * baud);
	int baudAbsDiff13 = baud - (port->uartclk / (13 * n13));
	int baudAbsDiff16 = baud - (port->uartclk / (16 * n16));
	if(baudAbsDiff13 < 0)
		baudAbsDiff13 = -baudAbsDiff13;
	if(baudAbsDiff16 < 0)
		baudAbsDiff16 = -baudAbsDiff16;

	return (baudAbsDiff13 > baudAbsDiff16);
}

247 248 249 250 251 252 253 254 255 256
/*
 * serial_omap_get_divisor - calculate divisor value
 * @port: uart port info
 * @baud: baudrate for which divisor needs to be calculated.
 */
static unsigned int
serial_omap_get_divisor(struct uart_port *port, unsigned int baud)
{
	unsigned int divisor;

257
	if (!serial_omap_baud_is_mode16(port, baud))
258 259 260 261 262 263 264 265
		divisor = 13;
	else
		divisor = 16;
	return port->uartclk/(baud * divisor);
}

static void serial_omap_enable_ms(struct uart_port *port)
{
266
	struct uart_omap_port *up = to_uart_omap_port(port);
267

268
	dev_dbg(up->port.dev, "serial_omap_enable_ms+%d\n", up->port.line);
269

270
	pm_runtime_get_sync(up->dev);
271 272
	up->ier |= UART_IER_MSI;
	serial_out(up, UART_IER, up->ier);
273 274
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
275 276 277 278
}

static void serial_omap_stop_tx(struct uart_port *port)
{
279
	struct uart_omap_port *up = to_uart_omap_port(port);
280

281
	pm_runtime_get_sync(up->dev);
282 283 284 285
	if (up->ier & UART_IER_THRI) {
		up->ier &= ~UART_IER_THRI;
		serial_out(up, UART_IER, up->ier);
	}
286

287 288
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
289 290 291 292
}

static void serial_omap_stop_rx(struct uart_port *port)
{
293
	struct uart_omap_port *up = to_uart_omap_port(port);
294

295
	pm_runtime_get_sync(up->dev);
296 297 298
	up->ier &= ~UART_IER_RLSI;
	up->port.read_status_mask &= ~UART_LSR_DR;
	serial_out(up, UART_IER, up->ier);
299 300
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
301 302
}

303
static void transmit_chars(struct uart_omap_port *up, unsigned int lsr)
304 305 306 307 308 309 310 311 312 313 314 315 316 317
{
	struct circ_buf *xmit = &up->port.state->xmit;
	int count;

	if (up->port.x_char) {
		serial_out(up, UART_TX, up->port.x_char);
		up->port.icount.tx++;
		up->port.x_char = 0;
		return;
	}
	if (uart_circ_empty(xmit) || uart_tx_stopped(&up->port)) {
		serial_omap_stop_tx(&up->port);
		return;
	}
318 319
	count = up->port.fifosize -
		(serial_in(up, UART_OMAP_TXFIFO_LVL) & 0xFF);
320 321 322 323 324 325 326 327
	do {
		serial_out(up, UART_TX, xmit->buf[xmit->tail]);
		xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
		up->port.icount.tx++;
		if (uart_circ_empty(xmit))
			break;
	} while (--count > 0);

328 329
	if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) {
		spin_unlock(&up->port.lock);
330
		uart_write_wakeup(&up->port);
331 332
		spin_lock(&up->port.lock);
	}
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347

	if (uart_circ_empty(xmit))
		serial_omap_stop_tx(&up->port);
}

static inline void serial_omap_enable_ier_thri(struct uart_omap_port *up)
{
	if (!(up->ier & UART_IER_THRI)) {
		up->ier |= UART_IER_THRI;
		serial_out(up, UART_IER, up->ier);
	}
}

static void serial_omap_start_tx(struct uart_port *port)
{
348
	struct uart_omap_port *up = to_uart_omap_port(port);
349

F
Felipe Balbi 已提交
350 351 352 353
	pm_runtime_get_sync(up->dev);
	serial_omap_enable_ier_thri(up);
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
354 355
}

356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
static void serial_omap_throttle(struct uart_port *port)
{
	struct uart_omap_port *up = to_uart_omap_port(port);
	unsigned long flags;

	pm_runtime_get_sync(up->dev);
	spin_lock_irqsave(&up->port.lock, flags);
	up->ier &= ~(UART_IER_RLSI | UART_IER_RDI);
	serial_out(up, UART_IER, up->ier);
	spin_unlock_irqrestore(&up->port.lock, flags);
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
}

static void serial_omap_unthrottle(struct uart_port *port)
{
	struct uart_omap_port *up = to_uart_omap_port(port);
	unsigned long flags;

	pm_runtime_get_sync(up->dev);
	spin_lock_irqsave(&up->port.lock, flags);
	up->ier |= UART_IER_RLSI | UART_IER_RDI;
	serial_out(up, UART_IER, up->ier);
	spin_unlock_irqrestore(&up->port.lock, flags);
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
}

384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
static unsigned int check_modem_status(struct uart_omap_port *up)
{
	unsigned int status;

	status = serial_in(up, UART_MSR);
	status |= up->msr_saved_flags;
	up->msr_saved_flags = 0;
	if ((status & UART_MSR_ANY_DELTA) == 0)
		return status;

	if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
	    up->port.state != NULL) {
		if (status & UART_MSR_TERI)
			up->port.icount.rng++;
		if (status & UART_MSR_DDSR)
			up->port.icount.dsr++;
		if (status & UART_MSR_DDCD)
			uart_handle_dcd_change
				(&up->port, status & UART_MSR_DCD);
		if (status & UART_MSR_DCTS)
			uart_handle_cts_change
				(&up->port, status & UART_MSR_CTS);
		wake_up_interruptible(&up->port.state->port.delta_msr_wait);
	}

	return status;
}

412 413 414
static void serial_omap_rlsi(struct uart_omap_port *up, unsigned int lsr)
{
	unsigned int flag;
415 416 417 418
	unsigned char ch = 0;

	if (likely(lsr & UART_LSR_DR))
		ch = serial_in(up, UART_RX);
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477

	up->port.icount.rx++;
	flag = TTY_NORMAL;

	if (lsr & UART_LSR_BI) {
		flag = TTY_BREAK;
		lsr &= ~(UART_LSR_FE | UART_LSR_PE);
		up->port.icount.brk++;
		/*
		 * We do the SysRQ and SAK checking
		 * here because otherwise the break
		 * may get masked by ignore_status_mask
		 * or read_status_mask.
		 */
		if (uart_handle_break(&up->port))
			return;

	}

	if (lsr & UART_LSR_PE) {
		flag = TTY_PARITY;
		up->port.icount.parity++;
	}

	if (lsr & UART_LSR_FE) {
		flag = TTY_FRAME;
		up->port.icount.frame++;
	}

	if (lsr & UART_LSR_OE)
		up->port.icount.overrun++;

#ifdef CONFIG_SERIAL_OMAP_CONSOLE
	if (up->port.line == up->port.cons->index) {
		/* Recover the break flag from console xmit */
		lsr |= up->lsr_break_flag;
	}
#endif
	uart_insert_char(&up->port, lsr, UART_LSR_OE, 0, flag);
}

static void serial_omap_rdi(struct uart_omap_port *up, unsigned int lsr)
{
	unsigned char ch = 0;
	unsigned int flag;

	if (!(lsr & UART_LSR_DR))
		return;

	ch = serial_in(up, UART_RX);
	flag = TTY_NORMAL;
	up->port.icount.rx++;

	if (uart_handle_sysrq_char(&up->port, ch))
		return;

	uart_insert_char(&up->port, lsr, UART_LSR_OE, ch, flag);
}

478 479 480 481 482
/**
 * serial_omap_irq() - This handles the interrupt from one port
 * @irq: uart port irq number
 * @dev_id: uart port info
 */
483
static irqreturn_t serial_omap_irq(int irq, void *dev_id)
484 485 486
{
	struct uart_omap_port *up = dev_id;
	unsigned int iir, lsr;
487 488
	unsigned int type;
	irqreturn_t ret = IRQ_NONE;
489
	int max_count = 256;
490

491
	spin_lock(&up->port.lock);
492
	pm_runtime_get_sync(up->dev);
493 494

	do {
495
		iir = serial_in(up, UART_IIR);
496 497 498 499 500 501 502 503 504 505 506 507 508 509
		if (iir & UART_IIR_NO_INT)
			break;

		ret = IRQ_HANDLED;
		lsr = serial_in(up, UART_LSR);

		/* extract IRQ type from IIR register */
		type = iir & 0x3e;

		switch (type) {
		case UART_IIR_MSI:
			check_modem_status(up);
			break;
		case UART_IIR_THRI:
510
			transmit_chars(up, lsr);
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
			break;
		case UART_IIR_RX_TIMEOUT:
			/* FALLTHROUGH */
		case UART_IIR_RDI:
			serial_omap_rdi(up, lsr);
			break;
		case UART_IIR_RLSI:
			serial_omap_rlsi(up, lsr);
			break;
		case UART_IIR_CTS_RTS_DSR:
			/* simply try again */
			break;
		case UART_IIR_XOFF:
			/* FALLTHROUGH */
		default:
			break;
		}
	} while (!(iir & UART_IIR_NO_INT) && max_count--);
529

530
	spin_unlock(&up->port.lock);
531

J
Jiri Slaby 已提交
532
	tty_flip_buffer_push(&up->port.state->port);
533

534 535
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
536
	up->port_activity = jiffies;
537 538

	return ret;
539 540 541 542
}

static unsigned int serial_omap_tx_empty(struct uart_port *port)
{
543
	struct uart_omap_port *up = to_uart_omap_port(port);
544 545 546
	unsigned long flags = 0;
	unsigned int ret = 0;

547
	pm_runtime_get_sync(up->dev);
548
	dev_dbg(up->port.dev, "serial_omap_tx_empty+%d\n", up->port.line);
549 550 551
	spin_lock_irqsave(&up->port.lock, flags);
	ret = serial_in(up, UART_LSR) & UART_LSR_TEMT ? TIOCSER_TEMT : 0;
	spin_unlock_irqrestore(&up->port.lock, flags);
552 553
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
554 555 556 557 558
	return ret;
}

static unsigned int serial_omap_get_mctrl(struct uart_port *port)
{
559
	struct uart_omap_port *up = to_uart_omap_port(port);
560
	unsigned int status;
561 562
	unsigned int ret = 0;

563
	pm_runtime_get_sync(up->dev);
564
	status = check_modem_status(up);
565 566
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
567

568
	dev_dbg(up->port.dev, "serial_omap_get_mctrl+%d\n", up->port.line);
569 570 571 572 573 574 575 576 577 578 579 580 581 582

	if (status & UART_MSR_DCD)
		ret |= TIOCM_CAR;
	if (status & UART_MSR_RI)
		ret |= TIOCM_RNG;
	if (status & UART_MSR_DSR)
		ret |= TIOCM_DSR;
	if (status & UART_MSR_CTS)
		ret |= TIOCM_CTS;
	return ret;
}

static void serial_omap_set_mctrl(struct uart_port *port, unsigned int mctrl)
{
583
	struct uart_omap_port *up = to_uart_omap_port(port);
584
	unsigned char mcr = 0, old_mcr;
585

586
	dev_dbg(up->port.dev, "serial_omap_set_mctrl+%d\n", up->port.line);
587 588 589 590 591 592 593 594 595 596 597
	if (mctrl & TIOCM_RTS)
		mcr |= UART_MCR_RTS;
	if (mctrl & TIOCM_DTR)
		mcr |= UART_MCR_DTR;
	if (mctrl & TIOCM_OUT1)
		mcr |= UART_MCR_OUT1;
	if (mctrl & TIOCM_OUT2)
		mcr |= UART_MCR_OUT2;
	if (mctrl & TIOCM_LOOP)
		mcr |= UART_MCR_LOOP;

598
	pm_runtime_get_sync(up->dev);
599 600 601 602
	old_mcr = serial_in(up, UART_MCR);
	old_mcr &= ~(UART_MCR_LOOP | UART_MCR_OUT2 | UART_MCR_OUT1 |
		     UART_MCR_DTR | UART_MCR_RTS);
	up->mcr = old_mcr | mcr;
603
	serial_out(up, UART_MCR, up->mcr);
604 605
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
606 607 608 609 610 611 612 613 614 615

	if (gpio_is_valid(up->DTR_gpio) &&
	    !!(mctrl & TIOCM_DTR) != up->DTR_active) {
		up->DTR_active = !up->DTR_active;
		if (gpio_cansleep(up->DTR_gpio))
			schedule_work(&up->qos_work);
		else
			gpio_set_value(up->DTR_gpio,
				       up->DTR_active != up->DTR_inverted);
	}
616 617 618 619
}

static void serial_omap_break_ctl(struct uart_port *port, int break_state)
{
620
	struct uart_omap_port *up = to_uart_omap_port(port);
621 622
	unsigned long flags = 0;

623
	dev_dbg(up->port.dev, "serial_omap_break_ctl+%d\n", up->port.line);
624
	pm_runtime_get_sync(up->dev);
625 626 627 628 629 630 631
	spin_lock_irqsave(&up->port.lock, flags);
	if (break_state == -1)
		up->lcr |= UART_LCR_SBC;
	else
		up->lcr &= ~UART_LCR_SBC;
	serial_out(up, UART_LCR, up->lcr);
	spin_unlock_irqrestore(&up->port.lock, flags);
632 633
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
634 635 636 637
}

static int serial_omap_startup(struct uart_port *port)
{
638
	struct uart_omap_port *up = to_uart_omap_port(port);
639 640 641 642 643 644 645 646 647 648 649
	unsigned long flags = 0;
	int retval;

	/*
	 * Allocate the IRQ
	 */
	retval = request_irq(up->port.irq, serial_omap_irq, up->port.irqflags,
				up->name, up);
	if (retval)
		return retval;

650
	dev_dbg(up->port.dev, "serial_omap_startup+%d\n", up->port.line);
651

652
	pm_runtime_get_sync(up->dev);
653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
	/*
	 * Clear the FIFO buffers and disable them.
	 * (they will be reenabled in set_termios())
	 */
	serial_omap_clear_fifos(up);
	/* For Hardware flow control */
	serial_out(up, UART_MCR, UART_MCR_RTS);

	/*
	 * Clear the interrupt registers.
	 */
	(void) serial_in(up, UART_LSR);
	if (serial_in(up, UART_LSR) & UART_LSR_DR)
		(void) serial_in(up, UART_RX);
	(void) serial_in(up, UART_IIR);
	(void) serial_in(up, UART_MSR);

	/*
	 * Now, initialize the UART
	 */
	serial_out(up, UART_LCR, UART_LCR_WLEN8);
	spin_lock_irqsave(&up->port.lock, flags);
	/*
	 * Most PC uarts need OUT2 raised to enable interrupts.
	 */
	up->port.mctrl |= TIOCM_OUT2;
	serial_omap_set_mctrl(&up->port, up->port.mctrl);
	spin_unlock_irqrestore(&up->port.lock, flags);

	up->msr_saved_flags = 0;
	/*
	 * Finally, enable interrupts. Note: Modem status interrupts
	 * are set via set_termios(), which will be occurring imminently
	 * anyway, so we don't enable them here.
	 */
	up->ier = UART_IER_RLSI | UART_IER_RDI;
	serial_out(up, UART_IER, up->ier);

691
	/* Enable module level wake up */
692 693 694 695 696
	up->wer = OMAP_UART_WER_MOD_WKUP;
	if (up->features & OMAP_UART_WER_HAS_TX_WAKEUP)
		up->wer |= OMAP_UART_TX_WAKEUP_EN;

	serial_out(up, UART_OMAP_WER, up->wer);
697

698 699
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
700 701 702 703 704 705
	up->port_activity = jiffies;
	return 0;
}

static void serial_omap_shutdown(struct uart_port *port)
{
706
	struct uart_omap_port *up = to_uart_omap_port(port);
707 708
	unsigned long flags = 0;

709
	dev_dbg(up->port.dev, "serial_omap_shutdown+%d\n", up->port.line);
710

711
	pm_runtime_get_sync(up->dev);
712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733
	/*
	 * Disable interrupts from this port
	 */
	up->ier = 0;
	serial_out(up, UART_IER, 0);

	spin_lock_irqsave(&up->port.lock, flags);
	up->port.mctrl &= ~TIOCM_OUT2;
	serial_omap_set_mctrl(&up->port, up->port.mctrl);
	spin_unlock_irqrestore(&up->port.lock, flags);

	/*
	 * Disable break condition and FIFOs
	 */
	serial_out(up, UART_LCR, serial_in(up, UART_LCR) & ~UART_LCR_SBC);
	serial_omap_clear_fifos(up);

	/*
	 * Read data port to reset things, and then free the irq
	 */
	if (serial_in(up, UART_LSR) & UART_LSR_DR)
		(void) serial_in(up, UART_RX);
734

735 736
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
737 738 739
	free_irq(up->port.irq, up);
}

740 741 742 743 744 745
static void serial_omap_uart_qos_work(struct work_struct *work)
{
	struct uart_omap_port *up = container_of(work, struct uart_omap_port,
						qos_work);

	pm_qos_update_request(&up->pm_qos_request, up->latency);
746 747 748
	if (gpio_is_valid(up->DTR_gpio))
		gpio_set_value_cansleep(up->DTR_gpio,
					up->DTR_active != up->DTR_inverted);
749 750
}

751 752 753 754
static void
serial_omap_set_termios(struct uart_port *port, struct ktermios *termios,
			struct ktermios *old)
{
755
	struct uart_omap_port *up = to_uart_omap_port(port);
756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781
	unsigned char cval = 0;
	unsigned long flags = 0;
	unsigned int baud, quot;

	switch (termios->c_cflag & CSIZE) {
	case CS5:
		cval = UART_LCR_WLEN5;
		break;
	case CS6:
		cval = UART_LCR_WLEN6;
		break;
	case CS7:
		cval = UART_LCR_WLEN7;
		break;
	default:
	case CS8:
		cval = UART_LCR_WLEN8;
		break;
	}

	if (termios->c_cflag & CSTOPB)
		cval |= UART_LCR_STOP;
	if (termios->c_cflag & PARENB)
		cval |= UART_LCR_PARITY;
	if (!(termios->c_cflag & PARODD))
		cval |= UART_LCR_EPAR;
782 783
	if (termios->c_cflag & CMSPAR)
		cval |= UART_LCR_SPAR;
784 785 786 787 788 789 790 791

	/*
	 * Ask the core to calculate the divisor for us.
	 */

	baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/13);
	quot = serial_omap_get_divisor(port, baud);

792
	/* calculate wakeup latency constraint */
793
	up->calc_latency = (USEC_PER_SEC * up->port.fifosize) / (baud / 8);
794 795 796
	up->latency = up->calc_latency;
	schedule_work(&up->qos_work);

797 798 799 800
	up->dll = quot & 0xff;
	up->dlh = quot >> 8;
	up->mdr1 = UART_OMAP_MDR1_DISABLE;

801 802 803 804 805 806 807
	up->fcr = UART_FCR_R_TRIG_01 | UART_FCR_T_TRIG_01 |
			UART_FCR_ENABLE_FIFO;

	/*
	 * Ok, we're now changing the port state. Do it with
	 * interrupts disabled.
	 */
808
	pm_runtime_get_sync(up->dev);
809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851
	spin_lock_irqsave(&up->port.lock, flags);

	/*
	 * Update the per-port timeout.
	 */
	uart_update_timeout(port, termios->c_cflag, baud);

	up->port.read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
	if (termios->c_iflag & INPCK)
		up->port.read_status_mask |= UART_LSR_FE | UART_LSR_PE;
	if (termios->c_iflag & (BRKINT | PARMRK))
		up->port.read_status_mask |= UART_LSR_BI;

	/*
	 * Characters to ignore
	 */
	up->port.ignore_status_mask = 0;
	if (termios->c_iflag & IGNPAR)
		up->port.ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
	if (termios->c_iflag & IGNBRK) {
		up->port.ignore_status_mask |= UART_LSR_BI;
		/*
		 * If we're ignoring parity and break indicators,
		 * ignore overruns too (for real raw support).
		 */
		if (termios->c_iflag & IGNPAR)
			up->port.ignore_status_mask |= UART_LSR_OE;
	}

	/*
	 * ignore all characters if CREAD is not set
	 */
	if ((termios->c_cflag & CREAD) == 0)
		up->port.ignore_status_mask |= UART_LSR_DR;

	/*
	 * Modem status interrupts
	 */
	up->ier &= ~UART_IER_MSI;
	if (UART_ENABLE_MS(&up->port, termios->c_cflag))
		up->ier |= UART_IER_MSI;
	serial_out(up, UART_IER, up->ier);
	serial_out(up, UART_LCR, cval);		/* reset DLAB */
852
	up->lcr = cval;
853
	up->scr = 0;
854 855 856 857 858 859 860

	/* FIFOs and DMA Settings */

	/* FCR can be changed only when the
	 * baud clock is not running
	 * DLL_REG and DLH_REG set to 0.
	 */
861
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
862 863 864 865
	serial_out(up, UART_DLL, 0);
	serial_out(up, UART_DLM, 0);
	serial_out(up, UART_LCR, 0);

866
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
867

868
	up->efr = serial_in(up, UART_EFR) & ~UART_EFR_ECB;
869
	up->efr &= ~UART_EFR_SCD;
870 871
	serial_out(up, UART_EFR, up->efr | UART_EFR_ECB);

872
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
873
	up->mcr = serial_in(up, UART_MCR) & ~UART_MCR_TCRTLR;
874 875
	serial_out(up, UART_MCR, up->mcr | UART_MCR_TCRTLR);
	/* FIFO ENABLE, DMA MODE */
876

877 878 879 880 881 882 883 884 885 886 887
	up->scr |= OMAP_UART_SCR_RX_TRIG_GRANU1_MASK;
	/*
	 * NOTE: Setting OMAP_UART_SCR_RX_TRIG_GRANU1_MASK
	 * sets Enables the granularity of 1 for TRIGGER RX
	 * level. Along with setting RX FIFO trigger level
	 * to 1 (as noted below, 16 characters) and TLR[3:0]
	 * to zero this will result RX FIFO threshold level
	 * to 1 character, instead of 16 as noted in comment
	 * below.
	 */

888 889 890
	/* Set receive FIFO threshold to 16 characters and
	 * transmit FIFO threshold to 16 spaces
	 */
F
Felipe Balbi 已提交
891
	up->fcr &= ~OMAP_UART_FCR_RX_FIFO_TRIG_MASK;
892 893 894
	up->fcr &= ~OMAP_UART_FCR_TX_FIFO_TRIG_MASK;
	up->fcr |= UART_FCR6_R_TRIGGER_16 | UART_FCR6_T_TRIGGER_24 |
		UART_FCR_ENABLE_FIFO;
895

896 897 898
	serial_out(up, UART_FCR, up->fcr);
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);

899 900
	serial_out(up, UART_OMAP_SCR, up->scr);

901
	/* Reset UART_MCR_TCRTLR: this must be done with the EFR_ECB bit set */
902
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
903
	serial_out(up, UART_MCR, up->mcr);
904 905 906
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
	serial_out(up, UART_EFR, up->efr);
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
907 908 909

	/* Protocol, Baud Rate, and Interrupt Settings */

910 911 912 913 914
	if (up->errata & UART_ERRATA_i202_MDR1_ACCESS)
		serial_omap_mdr1_errataset(up, up->mdr1);
	else
		serial_out(up, UART_OMAP_MDR1, up->mdr1);

915
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
916 917 918 919
	serial_out(up, UART_EFR, up->efr | UART_EFR_ECB);

	serial_out(up, UART_LCR, 0);
	serial_out(up, UART_IER, 0);
920
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
921

922 923
	serial_out(up, UART_DLL, up->dll);	/* LS of divisor */
	serial_out(up, UART_DLM, up->dlh);	/* MS of divisor */
924 925 926

	serial_out(up, UART_LCR, 0);
	serial_out(up, UART_IER, up->ier);
927
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
928 929 930 931

	serial_out(up, UART_EFR, up->efr);
	serial_out(up, UART_LCR, cval);

932
	if (!serial_omap_baud_is_mode16(port, baud))
933
		up->mdr1 = UART_OMAP_MDR1_13X_MODE;
934
	else
935 936
		up->mdr1 = UART_OMAP_MDR1_16X_MODE;

937 938 939 940
	if (up->errata & UART_ERRATA_i202_MDR1_ACCESS)
		serial_omap_mdr1_errataset(up, up->mdr1);
	else
		serial_out(up, UART_OMAP_MDR1, up->mdr1);
941

942
	/* Configure flow control */
R
Russell King 已提交
943
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
944 945 946 947 948 949

	/* XON1/XOFF1 accessible mode B, TCRTLR=0, ECB=0 */
	serial_out(up, UART_XON1, termios->c_cc[VSTART]);
	serial_out(up, UART_XOFF1, termios->c_cc[VSTOP]);

	/* Enable access to TCR/TLR */
R
Russell King 已提交
950 951 952
	serial_out(up, UART_EFR, up->efr | UART_EFR_ECB);
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
	serial_out(up, UART_MCR, up->mcr | UART_MCR_TCRTLR);
953

R
Russell King 已提交
954
	serial_out(up, UART_TI752_TCR, OMAP_UART_TCR_TRIG);
955

R
Russell King 已提交
956
	if (termios->c_cflag & CRTSCTS && up->port.flags & UPF_HARD_FLOW) {
957 958 959
		/* Enable AUTORTS and AUTOCTS */
		up->efr |= UART_EFR_CTS | UART_EFR_RTS;

960 961
		/* Ensure MCR RTS is asserted */
		up->mcr |= UART_MCR_RTS;
962 963 964
	} else {
		/* Disable AUTORTS and AUTOCTS */
		up->efr &= ~(UART_EFR_CTS | UART_EFR_RTS);
965 966
	}

967 968 969
	if (up->port.flags & UPF_SOFT_FLOW) {
		/* clear SW control mode bits */
		up->efr &= OMAP_UART_SW_CLR;
970

971 972
		/*
		 * IXON Flag:
973 974
		 * Enable XON/XOFF flow control on input.
		 * Receiver compares XON1, XOFF1.
975 976
		 */
		if (termios->c_iflag & IXON)
977
			up->efr |= OMAP_UART_SW_RX;
978

979 980
		/*
		 * IXOFF Flag:
981 982
		 * Enable XON/XOFF flow control on output.
		 * Transmit XON1, XOFF1
983 984
		 */
		if (termios->c_iflag & IXOFF)
985
			up->efr |= OMAP_UART_SW_TX;
986

987 988 989 990 991 992 993 994 995 996
		/*
		 * IXANY Flag:
		 * Enable any character to restart output.
		 * Operation resumes after receiving any
		 * character after recognition of the XOFF character
		 */
		if (termios->c_iflag & IXANY)
			up->mcr |= UART_MCR_XONANY;
		else
			up->mcr &= ~UART_MCR_XONANY;
997
	}
R
Russell King 已提交
998
	serial_out(up, UART_MCR, up->mcr);
R
Russell King 已提交
999 1000 1001
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
	serial_out(up, UART_EFR, up->efr);
	serial_out(up, UART_LCR, up->lcr);
1002 1003 1004 1005

	serial_omap_set_mctrl(&up->port, up->port.mctrl);

	spin_unlock_irqrestore(&up->port.lock, flags);
1006 1007
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
1008
	dev_dbg(up->port.dev, "serial_omap_set_termios+%d\n", up->port.line);
1009 1010
}

F
Felipe Balbi 已提交
1011 1012 1013 1014 1015 1016 1017 1018 1019
static int serial_omap_set_wake(struct uart_port *port, unsigned int state)
{
	struct uart_omap_port *up = to_uart_omap_port(port);

	serial_omap_enable_wakeup(up, state);

	return 0;
}

1020 1021 1022 1023
static void
serial_omap_pm(struct uart_port *port, unsigned int state,
	       unsigned int oldstate)
{
1024
	struct uart_omap_port *up = to_uart_omap_port(port);
1025 1026
	unsigned char efr;

1027
	dev_dbg(up->port.dev, "serial_omap_pm+%d\n", up->port.line);
1028

1029
	pm_runtime_get_sync(up->dev);
1030
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
1031 1032 1033 1034 1035
	efr = serial_in(up, UART_EFR);
	serial_out(up, UART_EFR, efr | UART_EFR_ECB);
	serial_out(up, UART_LCR, 0);

	serial_out(up, UART_IER, (state != 0) ? UART_IERX_SLEEP : 0);
1036
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
1037 1038
	serial_out(up, UART_EFR, efr);
	serial_out(up, UART_LCR, 0);
1039

1040
	if (!device_may_wakeup(up->dev)) {
1041
		if (!state)
1042
			pm_runtime_forbid(up->dev);
1043
		else
1044
			pm_runtime_allow(up->dev);
1045 1046
	}

1047 1048
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
}

static void serial_omap_release_port(struct uart_port *port)
{
	dev_dbg(port->dev, "serial_omap_release_port+\n");
}

static int serial_omap_request_port(struct uart_port *port)
{
	dev_dbg(port->dev, "serial_omap_request_port+\n");
	return 0;
}

static void serial_omap_config_port(struct uart_port *port, int flags)
{
1064
	struct uart_omap_port *up = to_uart_omap_port(port);
1065 1066

	dev_dbg(up->port.dev, "serial_omap_config_port+%d\n",
1067
							up->port.line);
1068
	up->port.type = PORT_OMAP;
1069
	up->port.flags |= UPF_SOFT_FLOW | UPF_HARD_FLOW;
1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082
}

static int
serial_omap_verify_port(struct uart_port *port, struct serial_struct *ser)
{
	/* we don't want the core code to modify any port params */
	dev_dbg(port->dev, "serial_omap_verify_port+\n");
	return -EINVAL;
}

static const char *
serial_omap_type(struct uart_port *port)
{
1083
	struct uart_omap_port *up = to_uart_omap_port(port);
1084

1085
	dev_dbg(up->port.dev, "serial_omap_type+%d\n", up->port.line);
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
	return up->name;
}

#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)

static inline void wait_for_xmitr(struct uart_omap_port *up)
{
	unsigned int status, tmout = 10000;

	/* Wait up to 10ms for the character(s) to be sent. */
	do {
		status = serial_in(up, UART_LSR);

		if (status & UART_LSR_BI)
			up->lsr_break_flag = UART_LSR_BI;

		if (--tmout == 0)
			break;
		udelay(1);
	} while ((status & BOTH_EMPTY) != BOTH_EMPTY);

	/* Wait up to 1s for flow control if necessary */
	if (up->port.flags & UPF_CONS_FLOW) {
		tmout = 1000000;
		for (tmout = 1000000; tmout; tmout--) {
			unsigned int msr = serial_in(up, UART_MSR);

			up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
			if (msr & UART_MSR_CTS)
				break;

			udelay(1);
		}
	}
}

1122 1123 1124 1125
#ifdef CONFIG_CONSOLE_POLL

static void serial_omap_poll_put_char(struct uart_port *port, unsigned char ch)
{
1126
	struct uart_omap_port *up = to_uart_omap_port(port);
1127

1128
	pm_runtime_get_sync(up->dev);
1129 1130
	wait_for_xmitr(up);
	serial_out(up, UART_TX, ch);
1131 1132
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
1133 1134 1135 1136
}

static int serial_omap_poll_get_char(struct uart_port *port)
{
1137
	struct uart_omap_port *up = to_uart_omap_port(port);
1138
	unsigned int status;
1139

1140
	pm_runtime_get_sync(up->dev);
1141
	status = serial_in(up, UART_LSR);
1142 1143 1144 1145
	if (!(status & UART_LSR_DR)) {
		status = NO_POLL_CHAR;
		goto out;
	}
1146

1147
	status = serial_in(up, UART_RX);
1148 1149

out:
1150 1151
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
1152

1153
	return status;
1154 1155 1156 1157 1158 1159
}

#endif /* CONFIG_CONSOLE_POLL */

#ifdef CONFIG_SERIAL_OMAP_CONSOLE

1160
static struct uart_omap_port *serial_omap_console_ports[OMAP_MAX_HSUART_PORTS];
1161 1162 1163

static struct uart_driver serial_omap_reg;

1164 1165
static void serial_omap_console_putchar(struct uart_port *port, int ch)
{
1166
	struct uart_omap_port *up = to_uart_omap_port(port);
1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180

	wait_for_xmitr(up);
	serial_out(up, UART_TX, ch);
}

static void
serial_omap_console_write(struct console *co, const char *s,
		unsigned int count)
{
	struct uart_omap_port *up = serial_omap_console_ports[co->index];
	unsigned long flags;
	unsigned int ier;
	int locked = 1;

1181
	pm_runtime_get_sync(up->dev);
1182

1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214
	local_irq_save(flags);
	if (up->port.sysrq)
		locked = 0;
	else if (oops_in_progress)
		locked = spin_trylock(&up->port.lock);
	else
		spin_lock(&up->port.lock);

	/*
	 * First save the IER then disable the interrupts
	 */
	ier = serial_in(up, UART_IER);
	serial_out(up, UART_IER, 0);

	uart_console_write(&up->port, s, count, serial_omap_console_putchar);

	/*
	 * Finally, wait for transmitter to become empty
	 * and restore the IER
	 */
	wait_for_xmitr(up);
	serial_out(up, UART_IER, ier);
	/*
	 * The receive handling will happen properly because the
	 * receive ready bit will still be set; it is not cleared
	 * on read.  However, modem control will not, we must
	 * call it if we have saved something in the saved flags
	 * while processing with interrupts off.
	 */
	if (up->msr_saved_flags)
		check_modem_status(up);

1215 1216
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252
	if (locked)
		spin_unlock(&up->port.lock);
	local_irq_restore(flags);
}

static int __init
serial_omap_console_setup(struct console *co, char *options)
{
	struct uart_omap_port *up;
	int baud = 115200;
	int bits = 8;
	int parity = 'n';
	int flow = 'n';

	if (serial_omap_console_ports[co->index] == NULL)
		return -ENODEV;
	up = serial_omap_console_ports[co->index];

	if (options)
		uart_parse_options(options, &baud, &parity, &bits, &flow);

	return uart_set_options(&up->port, co, baud, parity, bits, flow);
}

static struct console serial_omap_console = {
	.name		= OMAP_SERIAL_NAME,
	.write		= serial_omap_console_write,
	.device		= uart_console_device,
	.setup		= serial_omap_console_setup,
	.flags		= CON_PRINTBUFFER,
	.index		= -1,
	.data		= &serial_omap_reg,
};

static void serial_omap_add_console_port(struct uart_omap_port *up)
{
1253
	serial_omap_console_ports[up->port.line] = up;
1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272
}

#define OMAP_CONSOLE	(&serial_omap_console)

#else

#define OMAP_CONSOLE	NULL

static inline void serial_omap_add_console_port(struct uart_omap_port *up)
{}

#endif

static struct uart_ops serial_omap_pops = {
	.tx_empty	= serial_omap_tx_empty,
	.set_mctrl	= serial_omap_set_mctrl,
	.get_mctrl	= serial_omap_get_mctrl,
	.stop_tx	= serial_omap_stop_tx,
	.start_tx	= serial_omap_start_tx,
1273 1274
	.throttle	= serial_omap_throttle,
	.unthrottle	= serial_omap_unthrottle,
1275 1276 1277 1278 1279 1280 1281
	.stop_rx	= serial_omap_stop_rx,
	.enable_ms	= serial_omap_enable_ms,
	.break_ctl	= serial_omap_break_ctl,
	.startup	= serial_omap_startup,
	.shutdown	= serial_omap_shutdown,
	.set_termios	= serial_omap_set_termios,
	.pm		= serial_omap_pm,
F
Felipe Balbi 已提交
1282
	.set_wake	= serial_omap_set_wake,
1283 1284 1285 1286 1287
	.type		= serial_omap_type,
	.release_port	= serial_omap_release_port,
	.request_port	= serial_omap_request_port,
	.config_port	= serial_omap_config_port,
	.verify_port	= serial_omap_verify_port,
1288 1289 1290 1291
#ifdef CONFIG_CONSOLE_POLL
	.poll_put_char  = serial_omap_poll_put_char,
	.poll_get_char  = serial_omap_poll_get_char,
#endif
1292 1293 1294 1295 1296 1297 1298 1299 1300 1301
};

static struct uart_driver serial_omap_reg = {
	.owner		= THIS_MODULE,
	.driver_name	= "OMAP-SERIAL",
	.dev_name	= OMAP_SERIAL_NAME,
	.nr		= OMAP_MAX_HSUART_PORTS,
	.cons		= OMAP_CONSOLE,
};

1302
#ifdef CONFIG_PM_SLEEP
1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318
static int serial_omap_prepare(struct device *dev)
{
	struct uart_omap_port *up = dev_get_drvdata(dev);

	up->is_suspending = true;

	return 0;
}

static void serial_omap_complete(struct device *dev)
{
	struct uart_omap_port *up = dev_get_drvdata(dev);

	up->is_suspending = false;
}

1319
static int serial_omap_suspend(struct device *dev)
1320
{
1321
	struct uart_omap_port *up = dev_get_drvdata(dev);
1322

1323
	uart_suspend_port(&serial_omap_reg, &up->port);
1324
	flush_work(&up->qos_work);
1325

1326 1327 1328
	return 0;
}

1329
static int serial_omap_resume(struct device *dev)
1330
{
1331
	struct uart_omap_port *up = dev_get_drvdata(dev);
1332

1333 1334
	uart_resume_port(&serial_omap_reg, &up->port);

1335 1336
	return 0;
}
1337 1338
#else
#define serial_omap_prepare NULL
1339
#define serial_omap_complete NULL
1340
#endif /* CONFIG_PM_SLEEP */
1341

B
Bill Pemberton 已提交
1342
static void omap_serial_fill_features_erratas(struct uart_omap_port *up)
1343 1344 1345 1346
{
	u32 mvr, scheme;
	u16 revision, major, minor;

1347
	mvr = readl(up->port.membase + (UART_OMAP_MVER << up->port.regshift));
1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366

	/* Check revision register scheme */
	scheme = mvr >> OMAP_UART_MVR_SCHEME_SHIFT;

	switch (scheme) {
	case 0: /* Legacy Scheme: OMAP2/3 */
		/* MINOR_REV[0:4], MAJOR_REV[4:7] */
		major = (mvr & OMAP_UART_LEGACY_MVR_MAJ_MASK) >>
					OMAP_UART_LEGACY_MVR_MAJ_SHIFT;
		minor = (mvr & OMAP_UART_LEGACY_MVR_MIN_MASK);
		break;
	case 1:
		/* New Scheme: OMAP4+ */
		/* MINOR_REV[0:5], MAJOR_REV[8:10] */
		major = (mvr & OMAP_UART_MVR_MAJ_MASK) >>
					OMAP_UART_MVR_MAJ_SHIFT;
		minor = (mvr & OMAP_UART_MVR_MIN_MASK);
		break;
	default:
1367
		dev_warn(up->dev,
1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385
			"Unknown %s revision, defaulting to highest\n",
			up->name);
		/* highest possible revision */
		major = 0xff;
		minor = 0xff;
	}

	/* normalize revision for the driver */
	revision = UART_BUILD_REVISION(major, minor);

	switch (revision) {
	case OMAP_UART_REV_46:
		up->errata |= (UART_ERRATA_i202_MDR1_ACCESS |
				UART_ERRATA_i291_DMA_FORCEIDLE);
		break;
	case OMAP_UART_REV_52:
		up->errata |= (UART_ERRATA_i202_MDR1_ACCESS |
				UART_ERRATA_i291_DMA_FORCEIDLE);
1386
		up->features |= OMAP_UART_WER_HAS_TX_WAKEUP;
1387 1388 1389
		break;
	case OMAP_UART_REV_63:
		up->errata |= UART_ERRATA_i202_MDR1_ACCESS;
1390
		up->features |= OMAP_UART_WER_HAS_TX_WAKEUP;
1391 1392 1393 1394 1395 1396
		break;
	default:
		break;
	}
}

B
Bill Pemberton 已提交
1397
static struct omap_uart_port_info *of_get_uart_port_info(struct device *dev)
1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409
{
	struct omap_uart_port_info *omap_up_info;

	omap_up_info = devm_kzalloc(dev, sizeof(*omap_up_info), GFP_KERNEL);
	if (!omap_up_info)
		return NULL; /* out of memory */

	of_property_read_u32(dev->of_node, "clock-frequency",
					 &omap_up_info->uartclk);
	return omap_up_info;
}

B
Bill Pemberton 已提交
1410
static int serial_omap_probe(struct platform_device *pdev)
1411 1412
{
	struct uart_omap_port	*up;
F
Felipe Balbi 已提交
1413
	struct resource		*mem, *irq;
1414
	struct omap_uart_port_info *omap_up_info = pdev->dev.platform_data;
1415
	int ret;
1416

1417 1418 1419
	if (pdev->dev.of_node)
		omap_up_info = of_get_uart_port_info(&pdev->dev);

1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431
	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!mem) {
		dev_err(&pdev->dev, "no mem resource?\n");
		return -ENODEV;
	}

	irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
	if (!irq) {
		dev_err(&pdev->dev, "no irq resource?\n");
		return -ENODEV;
	}

1432
	if (!devm_request_mem_region(&pdev->dev, mem->start, resource_size(mem),
1433
				pdev->dev.driver->name)) {
1434 1435 1436 1437
		dev_err(&pdev->dev, "memory region already claimed\n");
		return -EBUSY;
	}

1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448
	if (gpio_is_valid(omap_up_info->DTR_gpio) &&
	    omap_up_info->DTR_present) {
		ret = gpio_request(omap_up_info->DTR_gpio, "omap-serial");
		if (ret < 0)
			return ret;
		ret = gpio_direction_output(omap_up_info->DTR_gpio,
					    omap_up_info->DTR_inverted);
		if (ret < 0)
			return ret;
	}

1449 1450 1451
	up = devm_kzalloc(&pdev->dev, sizeof(*up), GFP_KERNEL);
	if (!up)
		return -ENOMEM;
1452

1453 1454 1455 1456 1457 1458 1459 1460
	if (gpio_is_valid(omap_up_info->DTR_gpio) &&
	    omap_up_info->DTR_present) {
		up->DTR_gpio = omap_up_info->DTR_gpio;
		up->DTR_inverted = omap_up_info->DTR_inverted;
	} else
		up->DTR_gpio = -EINVAL;
	up->DTR_active = 0;

1461
	up->dev = &pdev->dev;
1462 1463 1464 1465 1466 1467 1468 1469 1470
	up->port.dev = &pdev->dev;
	up->port.type = PORT_OMAP;
	up->port.iotype = UPIO_MEM;
	up->port.irq = irq->start;

	up->port.regshift = 2;
	up->port.fifosize = 64;
	up->port.ops = &serial_omap_pops;

1471 1472 1473 1474 1475 1476 1477 1478 1479
	if (pdev->dev.of_node)
		up->port.line = of_alias_get_id(pdev->dev.of_node, "serial");
	else
		up->port.line = pdev->id;

	if (up->port.line < 0) {
		dev_err(&pdev->dev, "failed to get alias/pdev id, errno %d\n",
								up->port.line);
		ret = -ENODEV;
1480
		goto err_port_line;
1481 1482 1483
	}

	sprintf(up->name, "OMAP UART%d", up->port.line);
1484
	up->port.mapbase = mem->start;
1485 1486
	up->port.membase = devm_ioremap(&pdev->dev, mem->start,
						resource_size(mem));
1487 1488 1489
	if (!up->port.membase) {
		dev_err(&pdev->dev, "can't ioremap UART\n");
		ret = -ENOMEM;
1490
		goto err_ioremap;
1491 1492
	}

1493 1494
	up->port.flags = omap_up_info->flags;
	up->port.uartclk = omap_up_info->uartclk;
1495 1496 1497 1498 1499
	if (!up->port.uartclk) {
		up->port.uartclk = DEFAULT_CLK_SPEED;
		dev_warn(&pdev->dev, "No clock speed specified: using default:"
						"%d\n", DEFAULT_CLK_SPEED);
	}
1500

1501 1502 1503 1504 1505 1506 1507
	up->latency = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE;
	up->calc_latency = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE;
	pm_qos_add_request(&up->pm_qos_request,
		PM_QOS_CPU_DMA_LATENCY, up->latency);
	serial_omap_uart_wq = create_singlethread_workqueue(up->name);
	INIT_WORK(&up->qos_work, serial_omap_uart_qos_work);

1508
	platform_set_drvdata(pdev, up);
1509
	pm_runtime_enable(&pdev->dev);
1510 1511 1512
	if (omap_up_info->autosuspend_timeout == 0)
		omap_up_info->autosuspend_timeout = -1;
	device_init_wakeup(up->dev, true);
1513 1514
	pm_runtime_use_autosuspend(&pdev->dev);
	pm_runtime_set_autosuspend_delay(&pdev->dev,
1515
			omap_up_info->autosuspend_timeout);
1516 1517 1518 1519

	pm_runtime_irq_safe(&pdev->dev);
	pm_runtime_get_sync(&pdev->dev);

1520 1521
	omap_serial_fill_features_erratas(up);

1522
	ui[up->port.line] = up;
1523 1524 1525 1526
	serial_omap_add_console_port(up);

	ret = uart_add_one_port(&serial_omap_reg, &up->port);
	if (ret != 0)
1527
		goto err_add_port;
1528

1529 1530
	pm_runtime_mark_last_busy(up->dev);
	pm_runtime_put_autosuspend(up->dev);
1531
	return 0;
1532 1533 1534 1535 1536 1537

err_add_port:
	pm_runtime_put(&pdev->dev);
	pm_runtime_disable(&pdev->dev);
err_ioremap:
err_port_line:
1538 1539 1540 1541 1542
	dev_err(&pdev->dev, "[UART%d]: failure [%s]: %d\n",
				pdev->id, __func__, ret);
	return ret;
}

B
Bill Pemberton 已提交
1543
static int serial_omap_remove(struct platform_device *dev)
1544 1545 1546
{
	struct uart_omap_port *up = platform_get_drvdata(dev);

1547
	pm_runtime_put_sync(up->dev);
1548 1549 1550
	pm_runtime_disable(up->dev);
	uart_remove_one_port(&serial_omap_reg, &up->port);
	pm_qos_remove_request(&up->pm_qos_request);
1551 1552 1553 1554

	return 0;
}

1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580
/*
 * Work Around for Errata i202 (2430, 3430, 3630, 4430 and 4460)
 * The access to uart register after MDR1 Access
 * causes UART to corrupt data.
 *
 * Need a delay =
 * 5 L4 clock cycles + 5 UART functional clock cycle (@48MHz = ~0.2uS)
 * give 10 times as much
 */
static void serial_omap_mdr1_errataset(struct uart_omap_port *up, u8 mdr1)
{
	u8 timeout = 255;

	serial_out(up, UART_OMAP_MDR1, mdr1);
	udelay(2);
	serial_out(up, UART_FCR, up->fcr | UART_FCR_CLEAR_XMIT |
			UART_FCR_CLEAR_RCVR);
	/*
	 * Wait for FIFO to empty: when empty, RX_FIFO_E bit is 0 and
	 * TX_FIFO_E bit is 1.
	 */
	while (UART_LSR_THRE != (serial_in(up, UART_LSR) &
				(UART_LSR_THRE | UART_LSR_DR))) {
		timeout--;
		if (!timeout) {
			/* Should *never* happen. we warn and carry on */
1581
			dev_crit(up->dev, "Errata i202: timedout %x\n",
1582 1583 1584 1585 1586 1587 1588
						serial_in(up, UART_LSR));
			break;
		}
		udelay(1);
	}
}

1589
#ifdef CONFIG_PM_RUNTIME
1590 1591
static void serial_omap_restore_context(struct uart_omap_port *up)
{
1592 1593 1594 1595 1596
	if (up->errata & UART_ERRATA_i202_MDR1_ACCESS)
		serial_omap_mdr1_errataset(up, UART_OMAP_MDR1_DISABLE);
	else
		serial_out(up, UART_OMAP_MDR1, UART_OMAP_MDR1_DISABLE);

1597 1598 1599 1600 1601
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B); /* Config B mode */
	serial_out(up, UART_EFR, UART_EFR_ECB);
	serial_out(up, UART_LCR, 0x0); /* Operational mode */
	serial_out(up, UART_IER, 0x0);
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B); /* Config B mode */
1602 1603
	serial_out(up, UART_DLL, up->dll);
	serial_out(up, UART_DLM, up->dlh);
1604 1605 1606 1607 1608 1609
	serial_out(up, UART_LCR, 0x0); /* Operational mode */
	serial_out(up, UART_IER, up->ier);
	serial_out(up, UART_FCR, up->fcr);
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
	serial_out(up, UART_MCR, up->mcr);
	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B); /* Config B mode */
1610
	serial_out(up, UART_OMAP_SCR, up->scr);
1611 1612
	serial_out(up, UART_EFR, up->efr);
	serial_out(up, UART_LCR, up->lcr);
1613 1614 1615 1616
	if (up->errata & UART_ERRATA_i202_MDR1_ACCESS)
		serial_omap_mdr1_errataset(up, up->mdr1);
	else
		serial_out(up, UART_OMAP_MDR1, up->mdr1);
1617
	serial_out(up, UART_OMAP_WER, up->wer);
1618 1619
}

1620 1621
static int serial_omap_runtime_suspend(struct device *dev)
{
1622 1623
	struct uart_omap_port *up = dev_get_drvdata(dev);

1624 1625 1626
	if (!up)
		return -EINVAL;

1627 1628 1629 1630 1631 1632 1633 1634 1635 1636
	/*
	* When using 'no_console_suspend', the console UART must not be
	* suspended. Since driver suspend is managed by runtime suspend,
	* preventing runtime suspend (by returning error) will keep device
	* active during suspend.
	*/
	if (up->is_suspending && !console_suspend_enabled &&
	    uart_console(&up->port))
		return -EBUSY;

1637
	up->context_loss_cnt = serial_omap_get_context_loss_count(up);
1638

1639 1640
	if (device_may_wakeup(dev)) {
		if (!up->wakeups_enabled) {
1641
			serial_omap_enable_wakeup(up, true);
1642 1643 1644 1645
			up->wakeups_enabled = true;
		}
	} else {
		if (up->wakeups_enabled) {
1646
			serial_omap_enable_wakeup(up, false);
1647 1648 1649 1650
			up->wakeups_enabled = false;
		}
	}

1651 1652 1653
	up->latency = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE;
	schedule_work(&up->qos_work);

1654 1655 1656
	return 0;
}

1657 1658
static int serial_omap_runtime_resume(struct device *dev)
{
1659 1660
	struct uart_omap_port *up = dev_get_drvdata(dev);

1661
	int loss_cnt = serial_omap_get_context_loss_count(up);
1662

1663
	if (loss_cnt < 0) {
1664
		dev_dbg(dev, "serial_omap_get_context_loss_count failed : %d\n",
1665
			loss_cnt);
1666
		serial_omap_restore_context(up);
1667 1668 1669
	} else if (up->context_loss_cnt != loss_cnt) {
		serial_omap_restore_context(up);
	}
1670 1671
	up->latency = up->calc_latency;
	schedule_work(&up->qos_work);
1672

1673 1674
	return 0;
}
1675 1676 1677 1678 1679 1680
#endif

static const struct dev_pm_ops serial_omap_dev_pm_ops = {
	SET_SYSTEM_SLEEP_PM_OPS(serial_omap_suspend, serial_omap_resume)
	SET_RUNTIME_PM_OPS(serial_omap_runtime_suspend,
				serial_omap_runtime_resume, NULL)
1681 1682
	.prepare        = serial_omap_prepare,
	.complete       = serial_omap_complete,
1683 1684
};

1685 1686 1687 1688 1689 1690 1691 1692 1693
#if defined(CONFIG_OF)
static const struct of_device_id omap_serial_of_match[] = {
	{ .compatible = "ti,omap2-uart" },
	{ .compatible = "ti,omap3-uart" },
	{ .compatible = "ti,omap4-uart" },
	{},
};
MODULE_DEVICE_TABLE(of, omap_serial_of_match);
#endif
1694 1695 1696

static struct platform_driver serial_omap_driver = {
	.probe          = serial_omap_probe,
1697
	.remove         = serial_omap_remove,
1698 1699
	.driver		= {
		.name	= DRIVER_NAME,
1700
		.pm	= &serial_omap_dev_pm_ops,
1701
		.of_match_table = of_match_ptr(omap_serial_of_match),
1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729
	},
};

static int __init serial_omap_init(void)
{
	int ret;

	ret = uart_register_driver(&serial_omap_reg);
	if (ret != 0)
		return ret;
	ret = platform_driver_register(&serial_omap_driver);
	if (ret != 0)
		uart_unregister_driver(&serial_omap_reg);
	return ret;
}

static void __exit serial_omap_exit(void)
{
	platform_driver_unregister(&serial_omap_driver);
	uart_unregister_driver(&serial_omap_reg);
}

module_init(serial_omap_init);
module_exit(serial_omap_exit);

MODULE_DESCRIPTION("OMAP High Speed UART driver");
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Texas Instruments Inc");