xilinx_uartps.c 43.3 KB
Newer Older
1
/*
2
 * Cadence UART driver (found in Xilinx Zynq)
3
 *
S
Soren Brinkmann 已提交
4
 * 2011 - 2014 (C) Xilinx Inc.
5 6 7 8 9 10
 *
 * 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.
11 12 13 14
 *
 * This driver has originally been pushed by Xilinx using a Zynq-branding. This
 * still shows in the naming of this file, the kconfig symbols and some symbols
 * in the code.
15 16
 */

17 18 19 20
#if defined(CONFIG_SERIAL_XILINX_PS_UART_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
#define SUPPORT_SYSRQ
#endif

21
#include <linux/platform_device.h>
22
#include <linux/serial.h>
23
#include <linux/console.h>
24
#include <linux/serial_core.h>
25
#include <linux/slab.h>
26 27
#include <linux/tty.h>
#include <linux/tty_flip.h>
28
#include <linux/clk.h>
29 30 31
#include <linux/irq.h>
#include <linux/io.h>
#include <linux/of.h>
32
#include <linux/module.h>
33

34 35 36 37 38 39
#define CDNS_UART_TTY_NAME	"ttyPS"
#define CDNS_UART_NAME		"xuartps"
#define CDNS_UART_MAJOR		0	/* use dynamic node allocation */
#define CDNS_UART_MINOR		0	/* works best with devtmpfs */
#define CDNS_UART_NR_PORTS	2
#define CDNS_UART_FIFO_SIZE	64	/* FIFO size */
40
#define CDNS_UART_REGISTER_SPACE	0x1000
41

S
Suneel 已提交
42 43 44 45 46 47 48 49 50 51
/* Rx Trigger level */
static int rx_trigger_level = 56;
module_param(rx_trigger_level, uint, S_IRUGO);
MODULE_PARM_DESC(rx_trigger_level, "Rx trigger level, 1-63 bytes");

/* Rx Timeout */
static int rx_timeout = 10;
module_param(rx_timeout, uint, S_IRUGO);
MODULE_PARM_DESC(rx_timeout, "Rx timeout, 1-255");

S
Soren Brinkmann 已提交
52
/* Register offsets for the UART. */
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
#define CDNS_UART_CR_OFFSET		0x00  /* Control Register */
#define CDNS_UART_MR_OFFSET		0x04  /* Mode Register */
#define CDNS_UART_IER_OFFSET		0x08  /* Interrupt Enable */
#define CDNS_UART_IDR_OFFSET		0x0C  /* Interrupt Disable */
#define CDNS_UART_IMR_OFFSET		0x10  /* Interrupt Mask */
#define CDNS_UART_ISR_OFFSET		0x14  /* Interrupt Status */
#define CDNS_UART_BAUDGEN_OFFSET	0x18  /* Baud Rate Generator */
#define CDNS_UART_RXTOUT_OFFSET		0x1C  /* RX Timeout */
#define CDNS_UART_RXWM_OFFSET		0x20  /* RX FIFO Trigger Level */
#define CDNS_UART_MODEMCR_OFFSET	0x24  /* Modem Control */
#define CDNS_UART_MODEMSR_OFFSET	0x28  /* Modem Status */
#define CDNS_UART_SR_OFFSET		0x2C  /* Channel Status */
#define CDNS_UART_FIFO_OFFSET		0x30  /* FIFO */
#define CDNS_UART_BAUDDIV_OFFSET	0x34  /* Baud Rate Divider */
#define CDNS_UART_FLOWDEL_OFFSET	0x38  /* Flow Delay */
#define CDNS_UART_IRRX_PWIDTH_OFFSET	0x3C  /* IR Min Received Pulse Width */
#define CDNS_UART_IRTX_PWIDTH_OFFSET	0x40  /* IR Transmitted pulse Width */
#define CDNS_UART_TXWM_OFFSET		0x44  /* TX FIFO Trigger Level */
S
Soren Brinkmann 已提交
71 72

/* Control Register Bit Definitions */
73 74 75 76 77 78 79 80 81
#define CDNS_UART_CR_STOPBRK	0x00000100  /* Stop TX break */
#define CDNS_UART_CR_STARTBRK	0x00000080  /* Set TX break */
#define CDNS_UART_CR_TX_DIS	0x00000020  /* TX disabled. */
#define CDNS_UART_CR_TX_EN	0x00000010  /* TX enabled */
#define CDNS_UART_CR_RX_DIS	0x00000008  /* RX disabled. */
#define CDNS_UART_CR_RX_EN	0x00000004  /* RX enabled */
#define CDNS_UART_CR_TXRST	0x00000002  /* TX logic reset */
#define CDNS_UART_CR_RXRST	0x00000001  /* RX logic reset */
#define CDNS_UART_CR_RST_TO	0x00000040  /* Restart Timeout Counter */
82

S
Soren Brinkmann 已提交
83 84
/*
 * Mode Register:
85 86 87 88
 * The mode register (MR) defines the mode of transfer as well as the data
 * format. If this register is modified during transmission or reception,
 * data validity cannot be guaranteed.
 */
89 90 91
#define CDNS_UART_MR_CLKSEL		0x00000001  /* Pre-scalar selection */
#define CDNS_UART_MR_CHMODE_L_LOOP	0x00000200  /* Local loop back mode */
#define CDNS_UART_MR_CHMODE_NORM	0x00000000  /* Normal mode */
92

93 94
#define CDNS_UART_MR_STOPMODE_2_BIT	0x00000080  /* 2 stop bits */
#define CDNS_UART_MR_STOPMODE_1_BIT	0x00000000  /* 1 stop bit */
95

96 97 98 99 100
#define CDNS_UART_MR_PARITY_NONE	0x00000020  /* No parity mode */
#define CDNS_UART_MR_PARITY_MARK	0x00000018  /* Mark parity mode */
#define CDNS_UART_MR_PARITY_SPACE	0x00000010  /* Space parity mode */
#define CDNS_UART_MR_PARITY_ODD		0x00000008  /* Odd parity mode */
#define CDNS_UART_MR_PARITY_EVEN	0x00000000  /* Even parity mode */
101

102 103 104
#define CDNS_UART_MR_CHARLEN_6_BIT	0x00000006  /* 6 bits data */
#define CDNS_UART_MR_CHARLEN_7_BIT	0x00000004  /* 7 bits data */
#define CDNS_UART_MR_CHARLEN_8_BIT	0x00000000  /* 8 bits data */
105

S
Soren Brinkmann 已提交
106 107
/*
 * Interrupt Registers:
108 109 110 111 112 113 114 115 116
 * Interrupt control logic uses the interrupt enable register (IER) and the
 * interrupt disable register (IDR) to set the value of the bits in the
 * interrupt mask register (IMR). The IMR determines whether to pass an
 * interrupt to the interrupt status register (ISR).
 * Writing a 1 to IER Enables an interrupt, writing a 1 to IDR disables an
 * interrupt. IMR and ISR are read only, and IER and IDR are write only.
 * Reading either IER or IDR returns 0x00.
 * All four registers have the same bit definitions.
 */
117 118 119 120 121 122 123 124 125 126 127
#define CDNS_UART_IXR_TOUT	0x00000100 /* RX Timeout error interrupt */
#define CDNS_UART_IXR_PARITY	0x00000080 /* Parity error interrupt */
#define CDNS_UART_IXR_FRAMING	0x00000040 /* Framing error interrupt */
#define CDNS_UART_IXR_OVERRUN	0x00000020 /* Overrun error interrupt */
#define CDNS_UART_IXR_TXFULL	0x00000010 /* TX FIFO Full interrupt */
#define CDNS_UART_IXR_TXEMPTY	0x00000008 /* TX FIFO empty interrupt */
#define CDNS_UART_ISR_RXEMPTY	0x00000002 /* RX FIFO empty interrupt */
#define CDNS_UART_IXR_RXTRIG	0x00000001 /* RX FIFO trigger interrupt */
#define CDNS_UART_IXR_RXFULL	0x00000004 /* RX FIFO full interrupt. */
#define CDNS_UART_IXR_RXEMPTY	0x00000002 /* RX FIFO empty interrupt. */
#define CDNS_UART_IXR_MASK	0x00001FFF /* Valid bit mask */
128

129
/* Goes in read_status_mask for break detection as the HW doesn't do it*/
130
#define CDNS_UART_IXR_BRK	0x80000000
131

132 133 134 135 136 137 138 139 140
/*
 * Modem Control register:
 * The read/write Modem Control register controls the interface with the modem
 * or data set, or a peripheral device emulating a modem.
 */
#define CDNS_UART_MODEMCR_FCM	0x00000020 /* Automatic flow control mode */
#define CDNS_UART_MODEMCR_RTS	0x00000002 /* Request to send output control */
#define CDNS_UART_MODEMCR_DTR	0x00000001 /* Data Terminal Ready */

S
Soren Brinkmann 已提交
141 142
/*
 * Channel Status Register:
143 144 145 146
 * The channel status register (CSR) is provided to enable the control logic
 * to monitor the status of bits in the channel interrupt status register,
 * even if these are masked out by the interrupt mask register.
 */
147 148 149 150
#define CDNS_UART_SR_RXEMPTY	0x00000002 /* RX FIFO empty */
#define CDNS_UART_SR_TXEMPTY	0x00000008 /* TX FIFO empty */
#define CDNS_UART_SR_TXFULL	0x00000010 /* TX FIFO full */
#define CDNS_UART_SR_RXTRIG	0x00000001 /* Rx Trigger */
151

152
/* baud dividers min/max values */
153 154 155
#define CDNS_UART_BDIV_MIN	4
#define CDNS_UART_BDIV_MAX	255
#define CDNS_UART_CD_MAX	65535
156

157
/**
158
 * struct cdns_uart - device data
159
 * @port:		Pointer to the UART port
160 161
 * @uartclk:		Reference clock
 * @pclk:		APB clock
162 163
 * @baud:		Current baud rate
 * @clk_rate_change_nb:	Notifier block for clock changes
164
 */
165
struct cdns_uart {
166
	struct uart_port	*port;
167 168
	struct clk		*uartclk;
	struct clk		*pclk;
169 170
	unsigned int		baud;
	struct notifier_block	clk_rate_change_nb;
171
};
172 173
#define to_cdns_uart(_nb) container_of(_nb, struct cdns_uart, \
		clk_rate_change_nb);
174

175
/**
176
 * cdns_uart_isr - Interrupt handler
177 178 179
 * @irq: Irq number
 * @dev_id: Id of the port
 *
180 181
 * Return: IRQHANDLED
 */
182
static irqreturn_t cdns_uart_isr(int irq, void *dev_id)
183 184 185 186 187 188 189 190 191 192 193 194
{
	struct uart_port *port = (struct uart_port *)dev_id;
	unsigned long flags;
	unsigned int isrstatus, numbytes;
	unsigned int data;
	char status = TTY_NORMAL;

	spin_lock_irqsave(&port->lock, flags);

	/* Read the interrupt status register to determine which
	 * interrupt(s) is/are active.
	 */
195
	isrstatus = readl(port->membase + CDNS_UART_ISR_OFFSET);
196

197 198 199 200 201
	/*
	 * There is no hardware break detection, so we interpret framing
	 * error with all-zeros data as a break sequence. Most of the time,
	 * there's another non-zero byte at the end of the sequence.
	 */
202
	if (isrstatus & CDNS_UART_IXR_FRAMING) {
203
		while (!(readl(port->membase + CDNS_UART_SR_OFFSET) &
204
					CDNS_UART_SR_RXEMPTY)) {
205
			if (!readl(port->membase + CDNS_UART_FIFO_OFFSET)) {
206 207
				port->read_status_mask |= CDNS_UART_IXR_BRK;
				isrstatus &= ~CDNS_UART_IXR_FRAMING;
208 209
			}
		}
210 211
		writel(CDNS_UART_IXR_FRAMING,
				port->membase + CDNS_UART_ISR_OFFSET);
212 213
	}

214
	/* drop byte with parity error if IGNPAR specified */
215 216
	if (isrstatus & port->ignore_status_mask & CDNS_UART_IXR_PARITY)
		isrstatus &= ~(CDNS_UART_IXR_RXTRIG | CDNS_UART_IXR_TOUT);
217 218 219 220

	isrstatus &= port->read_status_mask;
	isrstatus &= ~port->ignore_status_mask;

221 222
	if ((isrstatus & CDNS_UART_IXR_TOUT) ||
		(isrstatus & CDNS_UART_IXR_RXTRIG)) {
223
		/* Receive Timeout Interrupt */
224 225 226
		while (!(readl(port->membase + CDNS_UART_SR_OFFSET) &
					CDNS_UART_SR_RXEMPTY)) {
			data = readl(port->membase + CDNS_UART_FIFO_OFFSET);
227 228 229

			/* Non-NULL byte after BREAK is garbage (99%) */
			if (data && (port->read_status_mask &
230 231
						CDNS_UART_IXR_BRK)) {
				port->read_status_mask &= ~CDNS_UART_IXR_BRK;
232 233 234 235 236
				port->icount.brk++;
				if (uart_handle_break(port))
					continue;
			}

237
#ifdef SUPPORT_SYSRQ
238 239 240 241 242 243 244 245 246 247 248 249 250
			/*
			 * uart_handle_sysrq_char() doesn't work if
			 * spinlocked, for some reason
			 */
			 if (port->sysrq) {
				spin_unlock(&port->lock);
				if (uart_handle_sysrq_char(port,
							(unsigned char)data)) {
					spin_lock(&port->lock);
					continue;
				}
				spin_lock(&port->lock);
			}
251
#endif
252

253 254
			port->icount.rx++;

255
			if (isrstatus & CDNS_UART_IXR_PARITY) {
256 257
				port->icount.parity++;
				status = TTY_PARITY;
258
			} else if (isrstatus & CDNS_UART_IXR_FRAMING) {
259 260
				port->icount.frame++;
				status = TTY_FRAME;
261
			} else if (isrstatus & CDNS_UART_IXR_OVERRUN) {
262
				port->icount.overrun++;
S
Soren Brinkmann 已提交
263
			}
264

265
			uart_insert_char(port, isrstatus, CDNS_UART_IXR_OVERRUN,
J
Jiri Slaby 已提交
266
					data, status);
267 268
		}
		spin_unlock(&port->lock);
J
Jiri Slaby 已提交
269
		tty_flip_buffer_push(&port->state->port);
270 271 272 273
		spin_lock(&port->lock);
	}

	/* Dispatch an appropriate handler */
274
	if ((isrstatus & CDNS_UART_IXR_TXEMPTY) == CDNS_UART_IXR_TXEMPTY) {
275
		if (uart_circ_empty(&port->state->xmit)) {
276 277
			writel(CDNS_UART_IXR_TXEMPTY,
					port->membase + CDNS_UART_IDR_OFFSET);
278 279 280 281 282 283 284
		} else {
			numbytes = port->fifosize;
			/* Break if no more data available in the UART buffer */
			while (numbytes--) {
				if (uart_circ_empty(&port->state->xmit))
					break;
				/* Get the data from the UART circular buffer
285
				 * and write it to the cdns_uart's TX_FIFO
286 287
				 * register.
				 */
288 289 290
				writel(port->state->xmit.buf[
						port->state->xmit.tail],
					port->membase + CDNS_UART_FIFO_OFFSET);
291 292 293 294 295 296 297

				port->icount.tx++;

				/* Adjust the tail of the UART buffer and wrap
				 * the buffer if it reaches limit.
				 */
				port->state->xmit.tail =
S
Soren Brinkmann 已提交
298
					(port->state->xmit.tail + 1) &
299 300 301 302 303 304 305 306 307
						(UART_XMIT_SIZE - 1);
			}

			if (uart_circ_chars_pending(
					&port->state->xmit) < WAKEUP_CHARS)
				uart_write_wakeup(port);
		}
	}

308
	writel(isrstatus, port->membase + CDNS_UART_ISR_OFFSET);
309 310 311 312 313 314 315 316

	/* be sure to release the lock and tty before leaving */
	spin_unlock_irqrestore(&port->lock, flags);

	return IRQ_HANDLED;
}

/**
317
 * cdns_uart_calc_baud_divs - Calculate baud rate divisors
318 319 320 321 322
 * @clk: UART module input clock
 * @baud: Desired baud rate
 * @rbdiv: BDIV value (return value)
 * @rcd: CD value (return value)
 * @div8: Value for clk_sel bit in mod (return value)
323
 * Return: baud rate, requested baud when possible, or actual baud when there
324 325 326 327 328 329 330 331 332 333 334 335
 *	was too much error, zero if no valid divisors are found.
 *
 * Formula to obtain baud rate is
 *	baud_tx/rx rate = clk/CD * (BDIV + 1)
 *	input_clk = (Uart User Defined Clock or Apb Clock)
 *		depends on UCLKEN in MR Reg
 *	clk = input_clk or input_clk/8;
 *		depends on CLKS in MR reg
 *	CD and BDIV depends on values in
 *			baud rate generate register
 *			baud rate clock divisor register
 */
336 337
static unsigned int cdns_uart_calc_baud_divs(unsigned int clk,
		unsigned int baud, u32 *rbdiv, u32 *rcd, int *div8)
338
{
339 340 341
	u32 cd, bdiv;
	unsigned int calc_baud;
	unsigned int bestbaud = 0;
342
	unsigned int bauderror;
343
	unsigned int besterror = ~0;
344

345
	if (baud < clk / ((CDNS_UART_BDIV_MAX + 1) * CDNS_UART_CD_MAX)) {
346 347 348 349 350
		*div8 = 1;
		clk /= 8;
	} else {
		*div8 = 0;
	}
351

352
	for (bdiv = CDNS_UART_BDIV_MIN; bdiv <= CDNS_UART_BDIV_MAX; bdiv++) {
353
		cd = DIV_ROUND_CLOSEST(clk, baud * (bdiv + 1));
354
		if (cd < 1 || cd > CDNS_UART_CD_MAX)
355 356
			continue;

357
		calc_baud = clk / (cd * (bdiv + 1));
358 359 360 361 362 363

		if (baud > calc_baud)
			bauderror = baud - calc_baud;
		else
			bauderror = calc_baud - baud;

364 365 366 367 368
		if (besterror > bauderror) {
			*rbdiv = bdiv;
			*rcd = cd;
			bestbaud = calc_baud;
			besterror = bauderror;
369 370
		}
	}
371 372 373 374 375 376
	/* use the values when percent error is acceptable */
	if (((besterror * 100) / baud) < 3)
		bestbaud = baud;

	return bestbaud;
}
377

378
/**
379
 * cdns_uart_set_baud_rate - Calculate and set the baud rate
380 381
 * @port: Handle to the uart port structure
 * @baud: Baud rate to set
382
 * Return: baud rate, requested baud when possible, or actual baud when there
383 384
 *	   was too much error, zero if no valid divisors are found.
 */
385
static unsigned int cdns_uart_set_baud_rate(struct uart_port *port,
386 387 388
		unsigned int baud)
{
	unsigned int calc_baud;
389
	u32 cd = 0, bdiv = 0;
390 391
	u32 mreg;
	int div8;
392
	struct cdns_uart *cdns_uart = port->private_data;
393

394
	calc_baud = cdns_uart_calc_baud_divs(port->uartclk, baud, &bdiv, &cd,
395 396 397
			&div8);

	/* Write new divisors to hardware */
398
	mreg = readl(port->membase + CDNS_UART_MR_OFFSET);
399
	if (div8)
400
		mreg |= CDNS_UART_MR_CLKSEL;
401
	else
402
		mreg &= ~CDNS_UART_MR_CLKSEL;
403 404 405
	writel(mreg, port->membase + CDNS_UART_MR_OFFSET);
	writel(cd, port->membase + CDNS_UART_BAUDGEN_OFFSET);
	writel(bdiv, port->membase + CDNS_UART_BAUDDIV_OFFSET);
406
	cdns_uart->baud = baud;
407 408 409 410

	return calc_baud;
}

411
#ifdef CONFIG_COMMON_CLK
412
/**
413
 * cdns_uart_clk_notitifer_cb - Clock notifier callback
414 415 416
 * @nb:		Notifier block
 * @event:	Notify event
 * @data:	Notifier data
S
Soren Brinkmann 已提交
417
 * Return:	NOTIFY_OK or NOTIFY_DONE on success, NOTIFY_BAD on error.
418
 */
419
static int cdns_uart_clk_notifier_cb(struct notifier_block *nb,
420 421 422 423 424 425 426
		unsigned long event, void *data)
{
	u32 ctrl_reg;
	struct uart_port *port;
	int locked = 0;
	struct clk_notifier_data *ndata = data;
	unsigned long flags = 0;
427
	struct cdns_uart *cdns_uart = to_cdns_uart(nb);
428

429
	port = cdns_uart->port;
430 431 432 433 434 435
	if (port->suspended)
		return NOTIFY_OK;

	switch (event) {
	case PRE_RATE_CHANGE:
	{
S
Soren Brinkmann 已提交
436
		u32 bdiv, cd;
437 438 439 440 441 442
		int div8;

		/*
		 * Find out if current baud-rate can be achieved with new clock
		 * frequency.
		 */
443
		if (!cdns_uart_calc_baud_divs(ndata->new_rate, cdns_uart->baud,
444 445
					&bdiv, &cd, &div8)) {
			dev_warn(port->dev, "clock rate change rejected\n");
446
			return NOTIFY_BAD;
447
		}
448

449
		spin_lock_irqsave(&cdns_uart->port->lock, flags);
450 451

		/* Disable the TX and RX to set baud rate */
452
		ctrl_reg = readl(port->membase + CDNS_UART_CR_OFFSET);
453
		ctrl_reg |= CDNS_UART_CR_TX_DIS | CDNS_UART_CR_RX_DIS;
454
		writel(ctrl_reg, port->membase + CDNS_UART_CR_OFFSET);
455

456
		spin_unlock_irqrestore(&cdns_uart->port->lock, flags);
457 458 459 460 461 462 463 464 465

		return NOTIFY_OK;
	}
	case POST_RATE_CHANGE:
		/*
		 * Set clk dividers to generate correct baud with new clock
		 * frequency.
		 */

466
		spin_lock_irqsave(&cdns_uart->port->lock, flags);
467 468 469 470

		locked = 1;
		port->uartclk = ndata->new_rate;

471 472
		cdns_uart->baud = cdns_uart_set_baud_rate(cdns_uart->port,
				cdns_uart->baud);
473 474 475
		/* fall through */
	case ABORT_RATE_CHANGE:
		if (!locked)
476
			spin_lock_irqsave(&cdns_uart->port->lock, flags);
477 478

		/* Set TX/RX Reset */
479
		ctrl_reg = readl(port->membase + CDNS_UART_CR_OFFSET);
480
		ctrl_reg |= CDNS_UART_CR_TXRST | CDNS_UART_CR_RXRST;
481
		writel(ctrl_reg, port->membase + CDNS_UART_CR_OFFSET);
482

483
		while (readl(port->membase + CDNS_UART_CR_OFFSET) &
484
				(CDNS_UART_CR_TXRST | CDNS_UART_CR_RXRST))
485 486 487 488 489 490 491
			cpu_relax();

		/*
		 * Clear the RX disable and TX disable bits and then set the TX
		 * enable bit and RX enable bit to enable the transmitter and
		 * receiver.
		 */
492 493
		writel(rx_timeout, port->membase + CDNS_UART_RXTOUT_OFFSET);
		ctrl_reg = readl(port->membase + CDNS_UART_CR_OFFSET);
494 495
		ctrl_reg &= ~(CDNS_UART_CR_TX_DIS | CDNS_UART_CR_RX_DIS);
		ctrl_reg |= CDNS_UART_CR_TX_EN | CDNS_UART_CR_RX_EN;
496
		writel(ctrl_reg, port->membase + CDNS_UART_CR_OFFSET);
497

498
		spin_unlock_irqrestore(&cdns_uart->port->lock, flags);
499 500 501 502 503 504

		return NOTIFY_OK;
	default:
		return NOTIFY_DONE;
	}
}
505
#endif
506

507
/**
508
 * cdns_uart_start_tx -  Start transmitting bytes
509
 * @port: Handle to the uart port structure
510
 */
511
static void cdns_uart_start_tx(struct uart_port *port)
512 513 514 515 516 517
{
	unsigned int status, numbytes = port->fifosize;

	if (uart_circ_empty(&port->state->xmit) || uart_tx_stopped(port))
		return;

518
	status = readl(port->membase + CDNS_UART_CR_OFFSET);
519 520 521
	/* Set the TX enable bit and clear the TX disable bit to enable the
	 * transmitter.
	 */
522 523
	writel((status & ~CDNS_UART_CR_TX_DIS) | CDNS_UART_CR_TX_EN,
			port->membase + CDNS_UART_CR_OFFSET);
524

525
	while (numbytes-- && ((readl(port->membase + CDNS_UART_SR_OFFSET) &
526
				CDNS_UART_SR_TXFULL)) != CDNS_UART_SR_TXFULL) {
527 528 529 530 531
		/* Break if no more data available in the UART buffer */
		if (uart_circ_empty(&port->state->xmit))
			break;

		/* Get the data from the UART circular buffer and
532
		 * write it to the cdns_uart's TX_FIFO register.
533
		 */
534 535
		writel(port->state->xmit.buf[port->state->xmit.tail],
				port->membase + CDNS_UART_FIFO_OFFSET);
536 537 538 539 540 541 542 543
		port->icount.tx++;

		/* Adjust the tail of the UART buffer and wrap
		 * the buffer if it reaches limit.
		 */
		port->state->xmit.tail = (port->state->xmit.tail + 1) &
					(UART_XMIT_SIZE - 1);
	}
544
	writel(CDNS_UART_IXR_TXEMPTY, port->membase + CDNS_UART_ISR_OFFSET);
545
	/* Enable the TX Empty interrupt */
546
	writel(CDNS_UART_IXR_TXEMPTY, port->membase + CDNS_UART_IER_OFFSET);
547 548 549 550 551 552

	if (uart_circ_chars_pending(&port->state->xmit) < WAKEUP_CHARS)
		uart_write_wakeup(port);
}

/**
553
 * cdns_uart_stop_tx - Stop TX
554
 * @port: Handle to the uart port structure
555
 */
556
static void cdns_uart_stop_tx(struct uart_port *port)
557 558 559
{
	unsigned int regval;

560
	regval = readl(port->membase + CDNS_UART_CR_OFFSET);
561
	regval |= CDNS_UART_CR_TX_DIS;
562
	/* Disable the transmitter */
563
	writel(regval, port->membase + CDNS_UART_CR_OFFSET);
564 565 566
}

/**
567
 * cdns_uart_stop_rx - Stop RX
568
 * @port: Handle to the uart port structure
569
 */
570
static void cdns_uart_stop_rx(struct uart_port *port)
571 572 573
{
	unsigned int regval;

574
	regval = readl(port->membase + CDNS_UART_CR_OFFSET);
575
	regval |= CDNS_UART_CR_RX_DIS;
576
	/* Disable the receiver */
577
	writel(regval, port->membase + CDNS_UART_CR_OFFSET);
578 579 580
}

/**
581
 * cdns_uart_tx_empty -  Check whether TX is empty
582 583
 * @port: Handle to the uart port structure
 *
584 585
 * Return: TIOCSER_TEMT on success, 0 otherwise
 */
586
static unsigned int cdns_uart_tx_empty(struct uart_port *port)
587 588 589
{
	unsigned int status;

590 591
	status = readl(port->membase + CDNS_UART_SR_OFFSET) &
				CDNS_UART_SR_TXEMPTY;
592 593 594 595
	return status ? TIOCSER_TEMT : 0;
}

/**
596
 * cdns_uart_break_ctl - Based on the input ctl we have to start or stop
597 598 599
 *			transmitting char breaks
 * @port: Handle to the uart port structure
 * @ctl: Value based on which start or stop decision is taken
600
 */
601
static void cdns_uart_break_ctl(struct uart_port *port, int ctl)
602 603 604 605 606 607
{
	unsigned int status;
	unsigned long flags;

	spin_lock_irqsave(&port->lock, flags);

608
	status = readl(port->membase + CDNS_UART_CR_OFFSET);
609 610

	if (ctl == -1)
611 612
		writel(CDNS_UART_CR_STARTBRK | status,
				port->membase + CDNS_UART_CR_OFFSET);
613
	else {
614
		if ((status & CDNS_UART_CR_STOPBRK) == 0)
615 616
			writel(CDNS_UART_CR_STOPBRK | status,
					port->membase + CDNS_UART_CR_OFFSET);
617 618 619 620 621
	}
	spin_unlock_irqrestore(&port->lock, flags);
}

/**
622
 * cdns_uart_set_termios - termios operations, handling data length, parity,
623 624 625 626
 *				stop bits, flow control, baud rate
 * @port: Handle to the uart port structure
 * @termios: Handle to the input termios structure
 * @old: Values of the previously saved termios structure
627
 */
628
static void cdns_uart_set_termios(struct uart_port *port,
629 630 631
				struct ktermios *termios, struct ktermios *old)
{
	unsigned int cval = 0;
632
	unsigned int baud, minbaud, maxbaud;
633 634 635 636 637
	unsigned long flags;
	unsigned int ctrl_reg, mode_reg;

	spin_lock_irqsave(&port->lock, flags);

638
	/* Wait for the transmit FIFO to empty before making changes */
639 640 641
	if (!(readl(port->membase + CDNS_UART_CR_OFFSET) &
				CDNS_UART_CR_TX_DIS)) {
		while (!(readl(port->membase + CDNS_UART_SR_OFFSET) &
642 643 644
				CDNS_UART_SR_TXEMPTY)) {
			cpu_relax();
		}
645 646 647
	}

	/* Disable the TX and RX to set baud rate */
648
	ctrl_reg = readl(port->membase + CDNS_UART_CR_OFFSET);
649
	ctrl_reg |= CDNS_UART_CR_TX_DIS | CDNS_UART_CR_RX_DIS;
650
	writel(ctrl_reg, port->membase + CDNS_UART_CR_OFFSET);
651

652 653 654 655 656
	/*
	 * Min baud rate = 6bps and Max Baud Rate is 10Mbps for 100Mhz clk
	 * min and max baud should be calculated here based on port->uartclk.
	 * this way we get a valid baud and can safely call set_baud()
	 */
657 658 659
	minbaud = port->uartclk /
			((CDNS_UART_BDIV_MAX + 1) * CDNS_UART_CD_MAX * 8);
	maxbaud = port->uartclk / (CDNS_UART_BDIV_MIN + 1);
660
	baud = uart_get_baud_rate(port, termios, old, minbaud, maxbaud);
661
	baud = cdns_uart_set_baud_rate(port, baud);
662 663 664
	if (tty_termios_baud_rate(termios))
		tty_termios_encode_baud_rate(termios, baud, baud);

S
Soren Brinkmann 已提交
665
	/* Update the per-port timeout. */
666 667 668
	uart_update_timeout(port, termios->c_cflag, baud);

	/* Set TX/RX Reset */
669
	ctrl_reg = readl(port->membase + CDNS_UART_CR_OFFSET);
670
	ctrl_reg |= CDNS_UART_CR_TXRST | CDNS_UART_CR_RXRST;
671
	writel(ctrl_reg, port->membase + CDNS_UART_CR_OFFSET);
672

S
Soren Brinkmann 已提交
673 674
	/*
	 * Clear the RX disable and TX disable bits and then set the TX enable
675 676
	 * bit and RX enable bit to enable the transmitter and receiver.
	 */
677
	ctrl_reg = readl(port->membase + CDNS_UART_CR_OFFSET);
678 679
	ctrl_reg &= ~(CDNS_UART_CR_TX_DIS | CDNS_UART_CR_RX_DIS);
	ctrl_reg |= CDNS_UART_CR_TX_EN | CDNS_UART_CR_RX_EN;
680
	writel(ctrl_reg, port->membase + CDNS_UART_CR_OFFSET);
681

682
	writel(rx_timeout, port->membase + CDNS_UART_RXTOUT_OFFSET);
683

684 685
	port->read_status_mask = CDNS_UART_IXR_TXEMPTY | CDNS_UART_IXR_RXTRIG |
			CDNS_UART_IXR_OVERRUN | CDNS_UART_IXR_TOUT;
686 687 688
	port->ignore_status_mask = 0;

	if (termios->c_iflag & INPCK)
689 690
		port->read_status_mask |= CDNS_UART_IXR_PARITY |
		CDNS_UART_IXR_FRAMING;
691 692

	if (termios->c_iflag & IGNPAR)
693 694
		port->ignore_status_mask |= CDNS_UART_IXR_PARITY |
			CDNS_UART_IXR_FRAMING | CDNS_UART_IXR_OVERRUN;
695 696 697

	/* ignore all characters if CREAD is not set */
	if ((termios->c_cflag & CREAD) == 0)
698 699 700
		port->ignore_status_mask |= CDNS_UART_IXR_RXTRIG |
			CDNS_UART_IXR_TOUT | CDNS_UART_IXR_PARITY |
			CDNS_UART_IXR_FRAMING | CDNS_UART_IXR_OVERRUN;
701

702
	mode_reg = readl(port->membase + CDNS_UART_MR_OFFSET);
703 704 705 706

	/* Handling Data Size */
	switch (termios->c_cflag & CSIZE) {
	case CS6:
707
		cval |= CDNS_UART_MR_CHARLEN_6_BIT;
708 709
		break;
	case CS7:
710
		cval |= CDNS_UART_MR_CHARLEN_7_BIT;
711 712 713
		break;
	default:
	case CS8:
714
		cval |= CDNS_UART_MR_CHARLEN_8_BIT;
715 716 717 718 719 720 721
		termios->c_cflag &= ~CSIZE;
		termios->c_cflag |= CS8;
		break;
	}

	/* Handling Parity and Stop Bits length */
	if (termios->c_cflag & CSTOPB)
722
		cval |= CDNS_UART_MR_STOPMODE_2_BIT; /* 2 STOP bits */
723
	else
724
		cval |= CDNS_UART_MR_STOPMODE_1_BIT; /* 1 STOP bit */
725 726 727 728 729

	if (termios->c_cflag & PARENB) {
		/* Mark or Space parity */
		if (termios->c_cflag & CMSPAR) {
			if (termios->c_cflag & PARODD)
730
				cval |= CDNS_UART_MR_PARITY_MARK;
731
			else
732
				cval |= CDNS_UART_MR_PARITY_SPACE;
733 734
		} else {
			if (termios->c_cflag & PARODD)
735
				cval |= CDNS_UART_MR_PARITY_ODD;
736
			else
737
				cval |= CDNS_UART_MR_PARITY_EVEN;
738 739
		}
	} else {
740
		cval |= CDNS_UART_MR_PARITY_NONE;
741 742
	}
	cval |= mode_reg & 1;
743
	writel(cval, port->membase + CDNS_UART_MR_OFFSET);
744 745 746 747 748

	spin_unlock_irqrestore(&port->lock, flags);
}

/**
749
 * cdns_uart_startup - Called when an application opens a cdns_uart port
750 751
 * @port: Handle to the uart port structure
 *
S
Soren Brinkmann 已提交
752
 * Return: 0 on success, negative errno otherwise
753
 */
754
static int cdns_uart_startup(struct uart_port *port)
755 756 757
{
	unsigned int retval = 0, status = 0;

758
	retval = request_irq(port->irq, cdns_uart_isr, 0, CDNS_UART_NAME,
759 760 761 762 763
								(void *)port);
	if (retval)
		return retval;

	/* Disable the TX and RX */
764 765
	writel(CDNS_UART_CR_TX_DIS | CDNS_UART_CR_RX_DIS,
			port->membase + CDNS_UART_CR_OFFSET);
766 767 768 769

	/* Set the Control Register with TX/RX Enable, TX/RX Reset,
	 * no break chars.
	 */
770 771
	writel(CDNS_UART_CR_TXRST | CDNS_UART_CR_RXRST,
			port->membase + CDNS_UART_CR_OFFSET);
772

773
	status = readl(port->membase + CDNS_UART_CR_OFFSET);
774 775 776 777

	/* Clear the RX disable and TX disable bits and then set the TX enable
	 * bit and RX enable bit to enable the transmitter and receiver.
	 */
778
	writel((status & ~(CDNS_UART_CR_TX_DIS | CDNS_UART_CR_RX_DIS))
779
			| (CDNS_UART_CR_TX_EN | CDNS_UART_CR_RX_EN |
780 781
			CDNS_UART_CR_STOPBRK),
			port->membase + CDNS_UART_CR_OFFSET);
782 783 784 785

	/* Set the Mode Register with normal mode,8 data bits,1 stop bit,
	 * no parity.
	 */
786
	writel(CDNS_UART_MR_CHMODE_NORM | CDNS_UART_MR_STOPMODE_1_BIT
787
		| CDNS_UART_MR_PARITY_NONE | CDNS_UART_MR_CHARLEN_8_BIT,
788
		port->membase + CDNS_UART_MR_OFFSET);
789

S
Suneel 已提交
790 791 792 793
	/*
	 * Set the RX FIFO Trigger level to use most of the FIFO, but it
	 * can be tuned with a module parameter
	 */
794
	writel(rx_trigger_level, port->membase + CDNS_UART_RXWM_OFFSET);
795

S
Suneel 已提交
796 797 798 799
	/*
	 * Receive Timeout register is enabled but it
	 * can be tuned with a module parameter
	 */
800
	writel(rx_timeout, port->membase + CDNS_UART_RXTOUT_OFFSET);
801

802
	/* Clear out any pending interrupts before enabling them */
803 804
	writel(readl(port->membase + CDNS_UART_ISR_OFFSET),
			port->membase + CDNS_UART_ISR_OFFSET);
805 806

	/* Set the Interrupt Registers with desired interrupts */
807
	writel(CDNS_UART_IXR_TXEMPTY | CDNS_UART_IXR_PARITY |
808 809
		CDNS_UART_IXR_FRAMING | CDNS_UART_IXR_OVERRUN |
		CDNS_UART_IXR_RXTRIG | CDNS_UART_IXR_TOUT,
810
		port->membase + CDNS_UART_IER_OFFSET);
811 812 813 814 815

	return retval;
}

/**
816
 * cdns_uart_shutdown - Called when an application closes a cdns_uart port
817
 * @port: Handle to the uart port structure
818
 */
819
static void cdns_uart_shutdown(struct uart_port *port)
820 821 822 823
{
	int status;

	/* Disable interrupts */
824 825
	status = readl(port->membase + CDNS_UART_IMR_OFFSET);
	writel(status, port->membase + CDNS_UART_IDR_OFFSET);
826 827

	/* Disable the TX and RX */
828 829
	writel(CDNS_UART_CR_TX_DIS | CDNS_UART_CR_RX_DIS,
			port->membase + CDNS_UART_CR_OFFSET);
830 831 832 833
	free_irq(port->irq, port);
}

/**
834
 * cdns_uart_type - Set UART type to cdns_uart port
835 836
 * @port: Handle to the uart port structure
 *
837 838
 * Return: string on success, NULL otherwise
 */
839
static const char *cdns_uart_type(struct uart_port *port)
840
{
841
	return port->type == PORT_XUARTPS ? CDNS_UART_NAME : NULL;
842 843 844
}

/**
845
 * cdns_uart_verify_port - Verify the port params
846 847 848
 * @port: Handle to the uart port structure
 * @ser: Handle to the structure whose members are compared
 *
S
Soren Brinkmann 已提交
849
 * Return: 0 on success, negative errno otherwise.
850
 */
851
static int cdns_uart_verify_port(struct uart_port *port,
852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867
					struct serial_struct *ser)
{
	if (ser->type != PORT_UNKNOWN && ser->type != PORT_XUARTPS)
		return -EINVAL;
	if (port->irq != ser->irq)
		return -EINVAL;
	if (ser->io_type != UPIO_MEM)
		return -EINVAL;
	if (port->iobase != ser->port)
		return -EINVAL;
	if (ser->hub6 != 0)
		return -EINVAL;
	return 0;
}

/**
868 869
 * cdns_uart_request_port - Claim the memory region attached to cdns_uart port,
 *				called when the driver adds a cdns_uart port via
870 871 872
 *				uart_add_one_port()
 * @port: Handle to the uart port structure
 *
S
Soren Brinkmann 已提交
873
 * Return: 0 on success, negative errno otherwise.
874
 */
875
static int cdns_uart_request_port(struct uart_port *port)
876
{
877 878
	if (!request_mem_region(port->mapbase, CDNS_UART_REGISTER_SPACE,
					 CDNS_UART_NAME)) {
879 880 881
		return -ENOMEM;
	}

882
	port->membase = ioremap(port->mapbase, CDNS_UART_REGISTER_SPACE);
883 884
	if (!port->membase) {
		dev_err(port->dev, "Unable to map registers\n");
885
		release_mem_region(port->mapbase, CDNS_UART_REGISTER_SPACE);
886 887 888 889 890 891
		return -ENOMEM;
	}
	return 0;
}

/**
892
 * cdns_uart_release_port - Release UART port
893
 * @port: Handle to the uart port structure
S
Soren Brinkmann 已提交
894
 *
895 896
 * Release the memory region attached to a cdns_uart port. Called when the
 * driver removes a cdns_uart port via uart_remove_one_port().
897
 */
898
static void cdns_uart_release_port(struct uart_port *port)
899
{
900
	release_mem_region(port->mapbase, CDNS_UART_REGISTER_SPACE);
901 902 903 904 905
	iounmap(port->membase);
	port->membase = NULL;
}

/**
906
 * cdns_uart_config_port - Configure UART port
907 908
 * @port: Handle to the uart port structure
 * @flags: If any
909
 */
910
static void cdns_uart_config_port(struct uart_port *port, int flags)
911
{
912
	if (flags & UART_CONFIG_TYPE && cdns_uart_request_port(port) == 0)
913 914 915 916
		port->type = PORT_XUARTPS;
}

/**
917
 * cdns_uart_get_mctrl - Get the modem control state
918 919
 * @port: Handle to the uart port structure
 *
920 921
 * Return: the modem control state
 */
922
static unsigned int cdns_uart_get_mctrl(struct uart_port *port)
923 924 925 926
{
	return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
}

927
static void cdns_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
928
{
929 930
	u32 val;

931
	val = readl(port->membase + CDNS_UART_MODEMCR_OFFSET);
932 933 934 935 936 937 938 939

	val &= ~(CDNS_UART_MODEMCR_RTS | CDNS_UART_MODEMCR_DTR);

	if (mctrl & TIOCM_RTS)
		val |= CDNS_UART_MODEMCR_RTS;
	if (mctrl & TIOCM_DTR)
		val |= CDNS_UART_MODEMCR_DTR;

940
	writel(val, port->membase + CDNS_UART_MODEMCR_OFFSET);
941 942
}

943
#ifdef CONFIG_CONSOLE_POLL
944
static int cdns_uart_poll_get_char(struct uart_port *port)
945 946 947 948 949
{
	u32 imr;
	int c;

	/* Disable all interrupts */
950 951
	imr = readl(port->membase + CDNS_UART_IMR_OFFSET);
	writel(imr, port->membase + CDNS_UART_IDR_OFFSET);
952 953

	/* Check if FIFO is empty */
954
	if (readl(port->membase + CDNS_UART_SR_OFFSET) & CDNS_UART_SR_RXEMPTY)
955 956
		c = NO_POLL_CHAR;
	else /* Read a character */
957 958
		c = (unsigned char) readl(
					port->membase + CDNS_UART_FIFO_OFFSET);
959 960

	/* Enable interrupts */
961
	writel(imr, port->membase + CDNS_UART_IER_OFFSET);
962 963 964 965

	return c;
}

966
static void cdns_uart_poll_put_char(struct uart_port *port, unsigned char c)
967 968 969 970
{
	u32 imr;

	/* Disable all interrupts */
971 972
	imr = readl(port->membase + CDNS_UART_IMR_OFFSET);
	writel(imr, port->membase + CDNS_UART_IDR_OFFSET);
973 974

	/* Wait until FIFO is empty */
975 976
	while (!(readl(port->membase + CDNS_UART_SR_OFFSET) &
				CDNS_UART_SR_TXEMPTY))
977 978 979
		cpu_relax();

	/* Write a character */
980
	writel(c, port->membase + CDNS_UART_FIFO_OFFSET);
981 982

	/* Wait until FIFO is empty */
983 984
	while (!(readl(port->membase + CDNS_UART_SR_OFFSET) &
				CDNS_UART_SR_TXEMPTY))
985 986 987
		cpu_relax();

	/* Enable interrupts */
988
	writel(imr, port->membase + CDNS_UART_IER_OFFSET);
989 990 991 992 993

	return;
}
#endif

994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
static struct uart_ops cdns_uart_ops = {
	.set_mctrl	= cdns_uart_set_mctrl,
	.get_mctrl	= cdns_uart_get_mctrl,
	.start_tx	= cdns_uart_start_tx,
	.stop_tx	= cdns_uart_stop_tx,
	.stop_rx	= cdns_uart_stop_rx,
	.tx_empty	= cdns_uart_tx_empty,
	.break_ctl	= cdns_uart_break_ctl,
	.set_termios	= cdns_uart_set_termios,
	.startup	= cdns_uart_startup,
	.shutdown	= cdns_uart_shutdown,
	.type		= cdns_uart_type,
	.verify_port	= cdns_uart_verify_port,
	.request_port	= cdns_uart_request_port,
	.release_port	= cdns_uart_release_port,
	.config_port	= cdns_uart_config_port,
1010
#ifdef CONFIG_CONSOLE_POLL
1011 1012
	.poll_get_char	= cdns_uart_poll_get_char,
	.poll_put_char	= cdns_uart_poll_put_char,
1013
#endif
1014 1015
};

1016
static struct uart_port cdns_uart_port[CDNS_UART_NR_PORTS];
1017 1018

/**
1019
 * cdns_uart_get_port - Configure the port from platform device resource info
1020 1021
 * @id: Port id
 *
1022 1023
 * Return: a pointer to a uart_port or NULL for failure
 */
1024
static struct uart_port *cdns_uart_get_port(int id)
1025 1026 1027
{
	struct uart_port *port;

1028
	/* Try the given port id if failed use default method */
1029
	if (cdns_uart_port[id].mapbase != 0) {
1030
		/* Find the next unused port */
1031 1032
		for (id = 0; id < CDNS_UART_NR_PORTS; id++)
			if (cdns_uart_port[id].mapbase == 0)
1033 1034
				break;
	}
1035

1036
	if (id >= CDNS_UART_NR_PORTS)
1037 1038
		return NULL;

1039
	port = &cdns_uart_port[id];
1040 1041 1042 1043 1044 1045 1046 1047

	/* At this point, we've got an empty uart_port struct, initialize it */
	spin_lock_init(&port->lock);
	port->membase	= NULL;
	port->irq	= 0;
	port->type	= PORT_UNKNOWN;
	port->iotype	= UPIO_MEM32;
	port->flags	= UPF_BOOT_AUTOCONF;
1048 1049
	port->ops	= &cdns_uart_ops;
	port->fifosize	= CDNS_UART_FIFO_SIZE;
1050 1051 1052 1053 1054 1055 1056
	port->line	= id;
	port->dev	= NULL;
	return port;
}

#ifdef CONFIG_SERIAL_XILINX_PS_UART_CONSOLE
/**
1057
 * cdns_uart_console_wait_tx - Wait for the TX to be full
1058
 * @port: Handle to the uart port structure
1059
 */
1060
static void cdns_uart_console_wait_tx(struct uart_port *port)
1061
{
1062 1063
	while (!(readl(port->membase + CDNS_UART_SR_OFFSET) &
				CDNS_UART_SR_TXEMPTY))
1064 1065 1066 1067
		barrier();
}

/**
1068
 * cdns_uart_console_putchar - write the character to the FIFO buffer
1069 1070
 * @port: Handle to the uart port structure
 * @ch: Character to be written
1071
 */
1072
static void cdns_uart_console_putchar(struct uart_port *port, int ch)
1073
{
1074
	cdns_uart_console_wait_tx(port);
1075
	writel(ch, port->membase + CDNS_UART_FIFO_OFFSET);
1076 1077
}

1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
static void cdns_early_write(struct console *con, const char *s, unsigned n)
{
	struct earlycon_device *dev = con->data;

	uart_console_write(&dev->port, s, n, cdns_uart_console_putchar);
}

static int __init cdns_early_console_setup(struct earlycon_device *device,
					   const char *opt)
{
	if (!device->port.membase)
		return -ENODEV;

	device->con->write = cdns_early_write;

	return 0;
}
EARLYCON_DECLARE(cdns, cdns_early_console_setup);

1097
/**
1098
 * cdns_uart_console_write - perform write operation
1099
 * @co: Console handle
1100 1101
 * @s: Pointer to character array
 * @count: No of characters
1102
 */
1103
static void cdns_uart_console_write(struct console *co, const char *s,
1104 1105
				unsigned int count)
{
1106
	struct uart_port *port = &cdns_uart_port[co->index];
1107
	unsigned long flags;
1108
	unsigned int imr, ctrl;
1109 1110 1111 1112 1113 1114 1115 1116
	int locked = 1;

	if (oops_in_progress)
		locked = spin_trylock_irqsave(&port->lock, flags);
	else
		spin_lock_irqsave(&port->lock, flags);

	/* save and disable interrupt */
1117 1118
	imr = readl(port->membase + CDNS_UART_IMR_OFFSET);
	writel(imr, port->membase + CDNS_UART_IDR_OFFSET);
1119

1120 1121 1122 1123
	/*
	 * Make sure that the tx part is enabled. Set the TX enable bit and
	 * clear the TX disable bit to enable the transmitter.
	 */
1124 1125 1126
	ctrl = readl(port->membase + CDNS_UART_CR_OFFSET);
	writel((ctrl & ~CDNS_UART_CR_TX_DIS) | CDNS_UART_CR_TX_EN,
			port->membase + CDNS_UART_CR_OFFSET);
1127

1128 1129
	uart_console_write(port, s, count, cdns_uart_console_putchar);
	cdns_uart_console_wait_tx(port);
1130

1131
	writel(ctrl, port->membase + CDNS_UART_CR_OFFSET);
1132

1133
	/* restore interrupt state */
1134
	writel(imr, port->membase + CDNS_UART_IER_OFFSET);
1135 1136 1137 1138 1139 1140

	if (locked)
		spin_unlock_irqrestore(&port->lock, flags);
}

/**
1141
 * cdns_uart_console_setup - Initialize the uart to default config
1142 1143 1144
 * @co: Console handle
 * @options: Initial settings of uart
 *
S
Soren Brinkmann 已提交
1145
 * Return: 0 on success, negative errno otherwise.
1146
 */
1147
static int __init cdns_uart_console_setup(struct console *co, char *options)
1148
{
1149
	struct uart_port *port = &cdns_uart_port[co->index];
1150 1151 1152 1153 1154
	int baud = 9600;
	int bits = 8;
	int parity = 'n';
	int flow = 'n';

1155
	if (co->index < 0 || co->index >= CDNS_UART_NR_PORTS)
1156 1157
		return -EINVAL;

1158
	if (!port->membase) {
1159 1160
		pr_debug("console on " CDNS_UART_TTY_NAME "%i not present\n",
			 co->index);
1161 1162 1163 1164 1165 1166 1167 1168 1169
		return -ENODEV;
	}

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

	return uart_set_options(port, co, baud, parity, bits, flow);
}

1170
static struct uart_driver cdns_uart_uart_driver;
1171

1172 1173 1174
static struct console cdns_uart_console = {
	.name	= CDNS_UART_TTY_NAME,
	.write	= cdns_uart_console_write,
1175
	.device	= uart_console_device,
1176
	.setup	= cdns_uart_console_setup,
1177 1178
	.flags	= CON_PRINTBUFFER,
	.index	= -1, /* Specified on the cmdline (e.g. console=ttyPS ) */
1179
	.data	= &cdns_uart_uart_driver,
1180 1181 1182
};

/**
1183
 * cdns_uart_console_init - Initialization call
1184
 *
S
Soren Brinkmann 已提交
1185
 * Return: 0 on success, negative errno otherwise
1186
 */
1187
static int __init cdns_uart_console_init(void)
1188
{
1189
	register_console(&cdns_uart_console);
1190 1191 1192
	return 0;
}

1193
console_initcall(cdns_uart_console_init);
1194 1195 1196

#endif /* CONFIG_SERIAL_XILINX_PS_UART_CONSOLE */

1197
static struct uart_driver cdns_uart_uart_driver = {
S
Soren Brinkmann 已提交
1198
	.owner		= THIS_MODULE,
1199 1200 1201 1202 1203
	.driver_name	= CDNS_UART_NAME,
	.dev_name	= CDNS_UART_TTY_NAME,
	.major		= CDNS_UART_MAJOR,
	.minor		= CDNS_UART_MINOR,
	.nr		= CDNS_UART_NR_PORTS,
1204
#ifdef CONFIG_SERIAL_XILINX_PS_UART_CONSOLE
1205
	.cons		= &cdns_uart_console,
1206 1207 1208
#endif
};

1209 1210
#ifdef CONFIG_PM_SLEEP
/**
1211
 * cdns_uart_suspend - suspend event
1212 1213
 * @device: Pointer to the device structure
 *
1214
 * Return: 0
1215
 */
1216
static int cdns_uart_suspend(struct device *device)
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
{
	struct uart_port *port = dev_get_drvdata(device);
	struct tty_struct *tty;
	struct device *tty_dev;
	int may_wake = 0;

	/* Get the tty which could be NULL so don't assume it's valid */
	tty = tty_port_tty_get(&port->state->port);
	if (tty) {
		tty_dev = tty->dev;
		may_wake = device_may_wakeup(tty_dev);
		tty_kref_put(tty);
	}

	/*
	 * Call the API provided in serial_core.c file which handles
	 * the suspend.
	 */
1235
	uart_suspend_port(&cdns_uart_uart_driver, port);
1236
	if (console_suspend_enabled && !may_wake) {
1237
		struct cdns_uart *cdns_uart = port->private_data;
1238

1239 1240
		clk_disable(cdns_uart->uartclk);
		clk_disable(cdns_uart->pclk);
1241 1242 1243 1244 1245
	} else {
		unsigned long flags = 0;

		spin_lock_irqsave(&port->lock, flags);
		/* Empty the receive FIFO 1st before making changes */
1246
		while (!(readl(port->membase + CDNS_UART_SR_OFFSET) &
1247
					CDNS_UART_SR_RXEMPTY))
1248
			readl(port->membase + CDNS_UART_FIFO_OFFSET);
1249
		/* set RX trigger level to 1 */
1250
		writel(1, port->membase + CDNS_UART_RXWM_OFFSET);
1251
		/* disable RX timeout interrups */
1252 1253
		writel(CDNS_UART_IXR_TOUT,
				port->membase + CDNS_UART_IDR_OFFSET);
1254 1255 1256 1257 1258 1259 1260
		spin_unlock_irqrestore(&port->lock, flags);
	}

	return 0;
}

/**
1261
 * cdns_uart_resume - Resume after a previous suspend
1262 1263
 * @device: Pointer to the device structure
 *
1264
 * Return: 0
1265
 */
1266
static int cdns_uart_resume(struct device *device)
1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283
{
	struct uart_port *port = dev_get_drvdata(device);
	unsigned long flags = 0;
	u32 ctrl_reg;
	struct tty_struct *tty;
	struct device *tty_dev;
	int may_wake = 0;

	/* Get the tty which could be NULL so don't assume it's valid */
	tty = tty_port_tty_get(&port->state->port);
	if (tty) {
		tty_dev = tty->dev;
		may_wake = device_may_wakeup(tty_dev);
		tty_kref_put(tty);
	}

	if (console_suspend_enabled && !may_wake) {
1284
		struct cdns_uart *cdns_uart = port->private_data;
1285

1286 1287
		clk_enable(cdns_uart->pclk);
		clk_enable(cdns_uart->uartclk);
1288 1289 1290 1291

		spin_lock_irqsave(&port->lock, flags);

		/* Set TX/RX Reset */
1292
		ctrl_reg = readl(port->membase + CDNS_UART_CR_OFFSET);
1293
		ctrl_reg |= CDNS_UART_CR_TXRST | CDNS_UART_CR_RXRST;
1294 1295
		writel(ctrl_reg, port->membase + CDNS_UART_CR_OFFSET);
		while (readl(port->membase + CDNS_UART_CR_OFFSET) &
1296
				(CDNS_UART_CR_TXRST | CDNS_UART_CR_RXRST))
1297 1298 1299
			cpu_relax();

		/* restore rx timeout value */
1300
		writel(rx_timeout, port->membase + CDNS_UART_RXTOUT_OFFSET);
1301
		/* Enable Tx/Rx */
1302
		ctrl_reg = readl(port->membase + CDNS_UART_CR_OFFSET);
1303 1304
		ctrl_reg &= ~(CDNS_UART_CR_TX_DIS | CDNS_UART_CR_RX_DIS);
		ctrl_reg |= CDNS_UART_CR_TX_EN | CDNS_UART_CR_RX_EN;
1305
		writel(ctrl_reg, port->membase + CDNS_UART_CR_OFFSET);
1306 1307 1308 1309 1310

		spin_unlock_irqrestore(&port->lock, flags);
	} else {
		spin_lock_irqsave(&port->lock, flags);
		/* restore original rx trigger level */
1311 1312
		writel(rx_trigger_level,
				port->membase + CDNS_UART_RXWM_OFFSET);
1313
		/* enable RX timeout interrupt */
1314 1315
		writel(CDNS_UART_IXR_TOUT,
				port->membase + CDNS_UART_IER_OFFSET);
1316 1317 1318
		spin_unlock_irqrestore(&port->lock, flags);
	}

1319
	return uart_resume_port(&cdns_uart_uart_driver, port);
1320 1321 1322
}
#endif /* ! CONFIG_PM_SLEEP */

1323 1324
static SIMPLE_DEV_PM_OPS(cdns_uart_dev_pm_ops, cdns_uart_suspend,
		cdns_uart_resume);
1325

1326
/**
1327
 * cdns_uart_probe - Platform driver probe
1328 1329
 * @pdev: Pointer to the platform device structure
 *
S
Soren Brinkmann 已提交
1330
 * Return: 0 on success, negative errno otherwise
1331
 */
1332
static int cdns_uart_probe(struct platform_device *pdev)
1333
{
1334
	int rc, id;
1335 1336
	struct uart_port *port;
	struct resource *res, *res2;
1337
	struct cdns_uart *cdns_uart_data;
1338

1339
	cdns_uart_data = devm_kzalloc(&pdev->dev, sizeof(*cdns_uart_data),
S
Soren Brinkmann 已提交
1340
			GFP_KERNEL);
1341
	if (!cdns_uart_data)
1342 1343
		return -ENOMEM;

1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359
	cdns_uart_data->pclk = devm_clk_get(&pdev->dev, "pclk");
	if (IS_ERR(cdns_uart_data->pclk)) {
		cdns_uart_data->pclk = devm_clk_get(&pdev->dev, "aper_clk");
		if (!IS_ERR(cdns_uart_data->pclk))
			dev_err(&pdev->dev, "clock name 'aper_clk' is deprecated.\n");
	}
	if (IS_ERR(cdns_uart_data->pclk)) {
		dev_err(&pdev->dev, "pclk clock not found.\n");
		return PTR_ERR(cdns_uart_data->pclk);
	}

	cdns_uart_data->uartclk = devm_clk_get(&pdev->dev, "uart_clk");
	if (IS_ERR(cdns_uart_data->uartclk)) {
		cdns_uart_data->uartclk = devm_clk_get(&pdev->dev, "ref_clk");
		if (!IS_ERR(cdns_uart_data->uartclk))
			dev_err(&pdev->dev, "clock name 'ref_clk' is deprecated.\n");
1360
	}
1361 1362 1363
	if (IS_ERR(cdns_uart_data->uartclk)) {
		dev_err(&pdev->dev, "uart_clk clock not found.\n");
		return PTR_ERR(cdns_uart_data->uartclk);
1364 1365
	}

1366
	rc = clk_prepare_enable(cdns_uart_data->pclk);
1367
	if (rc) {
1368
		dev_err(&pdev->dev, "Unable to enable pclk clock.\n");
S
Soren Brinkmann 已提交
1369
		return rc;
1370
	}
1371
	rc = clk_prepare_enable(cdns_uart_data->uartclk);
1372
	if (rc) {
1373
		dev_err(&pdev->dev, "Unable to enable device clock.\n");
1374
		goto err_out_clk_dis_pclk;
1375 1376 1377
	}

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1378 1379 1380 1381
	if (!res) {
		rc = -ENODEV;
		goto err_out_clk_disable;
	}
1382 1383

	res2 = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1384 1385 1386 1387
	if (!res2) {
		rc = -ENODEV;
		goto err_out_clk_disable;
	}
1388

1389
#ifdef CONFIG_COMMON_CLK
1390 1391 1392 1393
	cdns_uart_data->clk_rate_change_nb.notifier_call =
			cdns_uart_clk_notifier_cb;
	if (clk_notifier_register(cdns_uart_data->uartclk,
				&cdns_uart_data->clk_rate_change_nb))
1394
		dev_warn(&pdev->dev, "Unable to register clock notifier.\n");
1395
#endif
1396 1397 1398 1399
	/* Look for a serialN alias */
	id = of_alias_get_id(pdev->dev.of_node, "serial");
	if (id < 0)
		id = 0;
1400

1401
	/* Initialize the port structure */
1402
	port = cdns_uart_get_port(id);
1403 1404 1405

	if (!port) {
		dev_err(&pdev->dev, "Cannot get uart_port structure\n");
1406
		rc = -ENODEV;
1407
		goto err_out_notif_unreg;
1408 1409 1410 1411 1412 1413 1414 1415
	} else {
		/* Register the port.
		 * This function also registers this device with the tty layer
		 * and triggers invocation of the config_port() entry point.
		 */
		port->mapbase = res->start;
		port->irq = res2->start;
		port->dev = &pdev->dev;
1416 1417 1418
		port->uartclk = clk_get_rate(cdns_uart_data->uartclk);
		port->private_data = cdns_uart_data;
		cdns_uart_data->port = port;
1419
		platform_set_drvdata(pdev, port);
1420
		rc = uart_add_one_port(&cdns_uart_uart_driver, port);
1421 1422 1423
		if (rc) {
			dev_err(&pdev->dev,
				"uart_add_one_port() failed; err=%i\n", rc);
1424
			goto err_out_notif_unreg;
1425 1426 1427
		}
		return 0;
	}
1428

1429
err_out_notif_unreg:
1430
#ifdef CONFIG_COMMON_CLK
1431 1432
	clk_notifier_unregister(cdns_uart_data->uartclk,
			&cdns_uart_data->clk_rate_change_nb);
1433
#endif
1434
err_out_clk_disable:
1435 1436 1437
	clk_disable_unprepare(cdns_uart_data->uartclk);
err_out_clk_dis_pclk:
	clk_disable_unprepare(cdns_uart_data->pclk);
1438 1439

	return rc;
1440 1441 1442
}

/**
1443
 * cdns_uart_remove - called when the platform driver is unregistered
1444 1445
 * @pdev: Pointer to the platform device structure
 *
S
Soren Brinkmann 已提交
1446
 * Return: 0 on success, negative errno otherwise
1447
 */
1448
static int cdns_uart_remove(struct platform_device *pdev)
1449
{
1450
	struct uart_port *port = platform_get_drvdata(pdev);
1451
	struct cdns_uart *cdns_uart_data = port->private_data;
1452
	int rc;
1453

1454
	/* Remove the cdns_uart port from the serial core */
1455
#ifdef CONFIG_COMMON_CLK
1456 1457
	clk_notifier_unregister(cdns_uart_data->uartclk,
			&cdns_uart_data->clk_rate_change_nb);
1458
#endif
1459
	rc = uart_remove_one_port(&cdns_uart_uart_driver, port);
1460
	port->mapbase = 0;
1461 1462
	clk_disable_unprepare(cdns_uart_data->uartclk);
	clk_disable_unprepare(cdns_uart_data->pclk);
1463 1464 1465 1466
	return rc;
}

/* Match table for of_platform binding */
1467
static const struct of_device_id cdns_uart_of_match[] = {
1468
	{ .compatible = "xlnx,xuartps", },
1469
	{ .compatible = "cdns,uart-r1p8", },
1470 1471
	{}
};
1472
MODULE_DEVICE_TABLE(of, cdns_uart_of_match);
1473

1474 1475 1476
static struct platform_driver cdns_uart_platform_driver = {
	.probe   = cdns_uart_probe,
	.remove  = cdns_uart_remove,
1477
	.driver  = {
1478 1479 1480
		.name = CDNS_UART_NAME,
		.of_match_table = cdns_uart_of_match,
		.pm = &cdns_uart_dev_pm_ops,
1481 1482 1483
		},
};

1484
static int __init cdns_uart_init(void)
1485 1486 1487
{
	int retval = 0;

1488 1489
	/* Register the cdns_uart driver with the serial core */
	retval = uart_register_driver(&cdns_uart_uart_driver);
1490 1491 1492 1493
	if (retval)
		return retval;

	/* Register the platform driver */
1494
	retval = platform_driver_register(&cdns_uart_platform_driver);
1495
	if (retval)
1496
		uart_unregister_driver(&cdns_uart_uart_driver);
1497 1498 1499 1500

	return retval;
}

1501
static void __exit cdns_uart_exit(void)
1502 1503
{
	/* Unregister the platform driver */
1504
	platform_driver_unregister(&cdns_uart_platform_driver);
1505

1506 1507
	/* Unregister the cdns_uart driver */
	uart_unregister_driver(&cdns_uart_uart_driver);
1508 1509
}

1510 1511
module_init(cdns_uart_init);
module_exit(cdns_uart_exit);
1512

1513
MODULE_DESCRIPTION("Driver for Cadence UART");
1514 1515
MODULE_AUTHOR("Xilinx Inc.");
MODULE_LICENSE("GPL");