1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (c) 2017-2018, The Linux foundation. All rights reserved.
3 
4 /* Disable MMIO tracing to prevent excessive logging of unwanted MMIO traces */
5 #define __DISABLE_TRACE_MMIO__
6 
7 #include <linux/clk.h>
8 #include <linux/console.h>
9 #include <linux/io.h>
10 #include <linux/iopoll.h>
11 #include <linux/irq.h>
12 #include <linux/module.h>
13 #include <linux/of.h>
14 #include <linux/of_device.h>
15 #include <linux/pm_opp.h>
16 #include <linux/platform_device.h>
17 #include <linux/pm_runtime.h>
18 #include <linux/pm_wakeirq.h>
19 #include <linux/soc/qcom/geni-se.h>
20 #include <linux/serial.h>
21 #include <linux/serial_core.h>
22 #include <linux/slab.h>
23 #include <linux/tty.h>
24 #include <linux/tty_flip.h>
25 #include <dt-bindings/interconnect/qcom,icc.h>
26 
27 /* UART specific GENI registers */
28 #define SE_UART_LOOPBACK_CFG		0x22c
29 #define SE_UART_IO_MACRO_CTRL		0x240
30 #define SE_UART_TX_TRANS_CFG		0x25c
31 #define SE_UART_TX_WORD_LEN		0x268
32 #define SE_UART_TX_STOP_BIT_LEN		0x26c
33 #define SE_UART_TX_TRANS_LEN		0x270
34 #define SE_UART_RX_TRANS_CFG		0x280
35 #define SE_UART_RX_WORD_LEN		0x28c
36 #define SE_UART_RX_STALE_CNT		0x294
37 #define SE_UART_TX_PARITY_CFG		0x2a4
38 #define SE_UART_RX_PARITY_CFG		0x2a8
39 #define SE_UART_MANUAL_RFR		0x2ac
40 
41 /* SE_UART_TRANS_CFG */
42 #define UART_TX_PAR_EN			BIT(0)
43 #define UART_CTS_MASK			BIT(1)
44 
45 /* SE_UART_TX_STOP_BIT_LEN */
46 #define TX_STOP_BIT_LEN_1		0
47 #define TX_STOP_BIT_LEN_2		2
48 
49 /* SE_UART_RX_TRANS_CFG */
50 #define UART_RX_PAR_EN			BIT(3)
51 
52 /* SE_UART_RX_WORD_LEN */
53 #define RX_WORD_LEN_MASK		GENMASK(9, 0)
54 
55 /* SE_UART_RX_STALE_CNT */
56 #define RX_STALE_CNT			GENMASK(23, 0)
57 
58 /* SE_UART_TX_PARITY_CFG/RX_PARITY_CFG */
59 #define PAR_CALC_EN			BIT(0)
60 #define PAR_EVEN			0x00
61 #define PAR_ODD				0x01
62 #define PAR_SPACE			0x10
63 
64 /* SE_UART_MANUAL_RFR register fields */
65 #define UART_MANUAL_RFR_EN		BIT(31)
66 #define UART_RFR_NOT_READY		BIT(1)
67 #define UART_RFR_READY			BIT(0)
68 
69 /* UART M_CMD OP codes */
70 #define UART_START_TX			0x1
71 /* UART S_CMD OP codes */
72 #define UART_START_READ			0x1
73 #define UART_PARAM			0x1
74 #define UART_PARAM_RFR_OPEN		BIT(7)
75 
76 #define UART_OVERSAMPLING		32
77 #define STALE_TIMEOUT			16
78 #define DEFAULT_BITS_PER_CHAR		10
79 #define GENI_UART_CONS_PORTS		1
80 #define GENI_UART_PORTS			3
81 #define DEF_FIFO_DEPTH_WORDS		16
82 #define DEF_TX_WM			2
83 #define DEF_FIFO_WIDTH_BITS		32
84 #define UART_RX_WM			2
85 
86 /* SE_UART_LOOPBACK_CFG */
87 #define RX_TX_SORTED			BIT(0)
88 #define CTS_RTS_SORTED			BIT(1)
89 #define RX_TX_CTS_RTS_SORTED		(RX_TX_SORTED | CTS_RTS_SORTED)
90 
91 /* UART pin swap value */
92 #define DEFAULT_IO_MACRO_IO0_IO1_MASK	GENMASK(3, 0)
93 #define IO_MACRO_IO0_SEL		0x3
94 #define DEFAULT_IO_MACRO_IO2_IO3_MASK	GENMASK(15, 4)
95 #define IO_MACRO_IO2_IO3_SWAP		0x4640
96 
97 /* We always configure 4 bytes per FIFO word */
98 #define BYTES_PER_FIFO_WORD		4U
99 
100 #define DMA_RX_BUF_SIZE		2048
101 
102 struct qcom_geni_device_data {
103 	bool console;
104 	enum geni_se_xfer_mode mode;
105 };
106 
107 struct qcom_geni_private_data {
108 	/* NOTE: earlycon port will have NULL here */
109 	struct uart_driver *drv;
110 
111 	u32 poll_cached_bytes;
112 	unsigned int poll_cached_bytes_cnt;
113 
114 	u32 write_cached_bytes;
115 	unsigned int write_cached_bytes_cnt;
116 };
117 
118 struct qcom_geni_serial_port {
119 	struct uart_port uport;
120 	struct geni_se se;
121 	const char *name;
122 	u32 tx_fifo_depth;
123 	u32 tx_fifo_width;
124 	u32 rx_fifo_depth;
125 	dma_addr_t tx_dma_addr;
126 	dma_addr_t rx_dma_addr;
127 	bool setup;
128 	unsigned int baud;
129 	void *rx_buf;
130 	u32 loopback;
131 	bool brk;
132 
133 	unsigned int tx_remaining;
134 	int wakeup_irq;
135 	bool rx_tx_swap;
136 	bool cts_rts_swap;
137 
138 	struct qcom_geni_private_data private_data;
139 	const struct qcom_geni_device_data *dev_data;
140 };
141 
142 static const struct uart_ops qcom_geni_console_pops;
143 static const struct uart_ops qcom_geni_uart_pops;
144 static struct uart_driver qcom_geni_console_driver;
145 static struct uart_driver qcom_geni_uart_driver;
146 
147 static inline struct qcom_geni_serial_port *to_dev_port(struct uart_port *uport)
148 {
149 	return container_of(uport, struct qcom_geni_serial_port, uport);
150 }
151 
152 static struct qcom_geni_serial_port qcom_geni_uart_ports[GENI_UART_PORTS] = {
153 	[0] = {
154 		.uport = {
155 			.iotype = UPIO_MEM,
156 			.ops = &qcom_geni_uart_pops,
157 			.flags = UPF_BOOT_AUTOCONF,
158 			.line = 0,
159 		},
160 	},
161 	[1] = {
162 		.uport = {
163 			.iotype = UPIO_MEM,
164 			.ops = &qcom_geni_uart_pops,
165 			.flags = UPF_BOOT_AUTOCONF,
166 			.line = 1,
167 		},
168 	},
169 	[2] = {
170 		.uport = {
171 			.iotype = UPIO_MEM,
172 			.ops = &qcom_geni_uart_pops,
173 			.flags = UPF_BOOT_AUTOCONF,
174 			.line = 2,
175 		},
176 	},
177 };
178 
179 static struct qcom_geni_serial_port qcom_geni_console_port = {
180 	.uport = {
181 		.iotype = UPIO_MEM,
182 		.ops = &qcom_geni_console_pops,
183 		.flags = UPF_BOOT_AUTOCONF,
184 		.line = 0,
185 	},
186 };
187 
188 static int qcom_geni_serial_request_port(struct uart_port *uport)
189 {
190 	struct platform_device *pdev = to_platform_device(uport->dev);
191 	struct qcom_geni_serial_port *port = to_dev_port(uport);
192 
193 	uport->membase = devm_platform_ioremap_resource(pdev, 0);
194 	if (IS_ERR(uport->membase))
195 		return PTR_ERR(uport->membase);
196 	port->se.base = uport->membase;
197 	return 0;
198 }
199 
200 static void qcom_geni_serial_config_port(struct uart_port *uport, int cfg_flags)
201 {
202 	if (cfg_flags & UART_CONFIG_TYPE) {
203 		uport->type = PORT_MSM;
204 		qcom_geni_serial_request_port(uport);
205 	}
206 }
207 
208 static unsigned int qcom_geni_serial_get_mctrl(struct uart_port *uport)
209 {
210 	unsigned int mctrl = TIOCM_DSR | TIOCM_CAR;
211 	u32 geni_ios;
212 
213 	if (uart_console(uport)) {
214 		mctrl |= TIOCM_CTS;
215 	} else {
216 		geni_ios = readl(uport->membase + SE_GENI_IOS);
217 		if (!(geni_ios & IO2_DATA_IN))
218 			mctrl |= TIOCM_CTS;
219 	}
220 
221 	return mctrl;
222 }
223 
224 static void qcom_geni_serial_set_mctrl(struct uart_port *uport,
225 							unsigned int mctrl)
226 {
227 	u32 uart_manual_rfr = 0;
228 	struct qcom_geni_serial_port *port = to_dev_port(uport);
229 
230 	if (uart_console(uport))
231 		return;
232 
233 	if (mctrl & TIOCM_LOOP)
234 		port->loopback = RX_TX_CTS_RTS_SORTED;
235 
236 	if (!(mctrl & TIOCM_RTS) && !uport->suspended)
237 		uart_manual_rfr = UART_MANUAL_RFR_EN | UART_RFR_NOT_READY;
238 	writel(uart_manual_rfr, uport->membase + SE_UART_MANUAL_RFR);
239 }
240 
241 static const char *qcom_geni_serial_get_type(struct uart_port *uport)
242 {
243 	return "MSM";
244 }
245 
246 static struct qcom_geni_serial_port *get_port_from_line(int line, bool console)
247 {
248 	struct qcom_geni_serial_port *port;
249 	int nr_ports = console ? GENI_UART_CONS_PORTS : GENI_UART_PORTS;
250 
251 	if (line < 0 || line >= nr_ports)
252 		return ERR_PTR(-ENXIO);
253 
254 	port = console ? &qcom_geni_console_port : &qcom_geni_uart_ports[line];
255 	return port;
256 }
257 
258 static bool qcom_geni_serial_main_active(struct uart_port *uport)
259 {
260 	return readl(uport->membase + SE_GENI_STATUS) & M_GENI_CMD_ACTIVE;
261 }
262 
263 static bool qcom_geni_serial_secondary_active(struct uart_port *uport)
264 {
265 	return readl(uport->membase + SE_GENI_STATUS) & S_GENI_CMD_ACTIVE;
266 }
267 
268 static bool qcom_geni_serial_poll_bit(struct uart_port *uport,
269 				int offset, int field, bool set)
270 {
271 	u32 reg;
272 	struct qcom_geni_serial_port *port;
273 	unsigned int baud;
274 	unsigned int fifo_bits;
275 	unsigned long timeout_us = 20000;
276 	struct qcom_geni_private_data *private_data = uport->private_data;
277 
278 	if (private_data->drv) {
279 		port = to_dev_port(uport);
280 		baud = port->baud;
281 		if (!baud)
282 			baud = 115200;
283 		fifo_bits = port->tx_fifo_depth * port->tx_fifo_width;
284 		/*
285 		 * Total polling iterations based on FIFO worth of bytes to be
286 		 * sent at current baud. Add a little fluff to the wait.
287 		 */
288 		timeout_us = ((fifo_bits * USEC_PER_SEC) / baud) + 500;
289 	}
290 
291 	/*
292 	 * Use custom implementation instead of readl_poll_atomic since ktimer
293 	 * is not ready at the time of early console.
294 	 */
295 	timeout_us = DIV_ROUND_UP(timeout_us, 10) * 10;
296 	while (timeout_us) {
297 		reg = readl(uport->membase + offset);
298 		if ((bool)(reg & field) == set)
299 			return true;
300 		udelay(10);
301 		timeout_us -= 10;
302 	}
303 	return false;
304 }
305 
306 static void qcom_geni_serial_setup_tx(struct uart_port *uport, u32 xmit_size)
307 {
308 	u32 m_cmd;
309 
310 	writel(xmit_size, uport->membase + SE_UART_TX_TRANS_LEN);
311 	m_cmd = UART_START_TX << M_OPCODE_SHFT;
312 	writel(m_cmd, uport->membase + SE_GENI_M_CMD0);
313 }
314 
315 static void qcom_geni_serial_poll_tx_done(struct uart_port *uport)
316 {
317 	int done;
318 	u32 irq_clear = M_CMD_DONE_EN;
319 
320 	done = qcom_geni_serial_poll_bit(uport, SE_GENI_M_IRQ_STATUS,
321 						M_CMD_DONE_EN, true);
322 	if (!done) {
323 		writel(M_GENI_CMD_ABORT, uport->membase +
324 						SE_GENI_M_CMD_CTRL_REG);
325 		irq_clear |= M_CMD_ABORT_EN;
326 		qcom_geni_serial_poll_bit(uport, SE_GENI_M_IRQ_STATUS,
327 							M_CMD_ABORT_EN, true);
328 	}
329 	writel(irq_clear, uport->membase + SE_GENI_M_IRQ_CLEAR);
330 }
331 
332 static void qcom_geni_serial_abort_rx(struct uart_port *uport)
333 {
334 	u32 irq_clear = S_CMD_DONE_EN | S_CMD_ABORT_EN;
335 
336 	writel(S_GENI_CMD_ABORT, uport->membase + SE_GENI_S_CMD_CTRL_REG);
337 	qcom_geni_serial_poll_bit(uport, SE_GENI_S_CMD_CTRL_REG,
338 					S_GENI_CMD_ABORT, false);
339 	writel(irq_clear, uport->membase + SE_GENI_S_IRQ_CLEAR);
340 	writel(FORCE_DEFAULT, uport->membase + GENI_FORCE_DEFAULT_REG);
341 }
342 
343 #ifdef CONFIG_CONSOLE_POLL
344 static int qcom_geni_serial_get_char(struct uart_port *uport)
345 {
346 	struct qcom_geni_private_data *private_data = uport->private_data;
347 	u32 status;
348 	u32 word_cnt;
349 	int ret;
350 
351 	if (!private_data->poll_cached_bytes_cnt) {
352 		status = readl(uport->membase + SE_GENI_M_IRQ_STATUS);
353 		writel(status, uport->membase + SE_GENI_M_IRQ_CLEAR);
354 
355 		status = readl(uport->membase + SE_GENI_S_IRQ_STATUS);
356 		writel(status, uport->membase + SE_GENI_S_IRQ_CLEAR);
357 
358 		status = readl(uport->membase + SE_GENI_RX_FIFO_STATUS);
359 		word_cnt = status & RX_FIFO_WC_MSK;
360 		if (!word_cnt)
361 			return NO_POLL_CHAR;
362 
363 		if (word_cnt == 1 && (status & RX_LAST))
364 			/*
365 			 * NOTE: If RX_LAST_BYTE_VALID is 0 it needs to be
366 			 * treated as if it was BYTES_PER_FIFO_WORD.
367 			 */
368 			private_data->poll_cached_bytes_cnt =
369 				(status & RX_LAST_BYTE_VALID_MSK) >>
370 				RX_LAST_BYTE_VALID_SHFT;
371 
372 		if (private_data->poll_cached_bytes_cnt == 0)
373 			private_data->poll_cached_bytes_cnt = BYTES_PER_FIFO_WORD;
374 
375 		private_data->poll_cached_bytes =
376 			readl(uport->membase + SE_GENI_RX_FIFOn);
377 	}
378 
379 	private_data->poll_cached_bytes_cnt--;
380 	ret = private_data->poll_cached_bytes & 0xff;
381 	private_data->poll_cached_bytes >>= 8;
382 
383 	return ret;
384 }
385 
386 static void qcom_geni_serial_poll_put_char(struct uart_port *uport,
387 							unsigned char c)
388 {
389 	writel(DEF_TX_WM, uport->membase + SE_GENI_TX_WATERMARK_REG);
390 	qcom_geni_serial_setup_tx(uport, 1);
391 	WARN_ON(!qcom_geni_serial_poll_bit(uport, SE_GENI_M_IRQ_STATUS,
392 						M_TX_FIFO_WATERMARK_EN, true));
393 	writel(c, uport->membase + SE_GENI_TX_FIFOn);
394 	writel(M_TX_FIFO_WATERMARK_EN, uport->membase + SE_GENI_M_IRQ_CLEAR);
395 	qcom_geni_serial_poll_tx_done(uport);
396 }
397 #endif
398 
399 #ifdef CONFIG_SERIAL_QCOM_GENI_CONSOLE
400 static void qcom_geni_serial_wr_char(struct uart_port *uport, unsigned char ch)
401 {
402 	struct qcom_geni_private_data *private_data = uport->private_data;
403 
404 	private_data->write_cached_bytes =
405 		(private_data->write_cached_bytes >> 8) | (ch << 24);
406 	private_data->write_cached_bytes_cnt++;
407 
408 	if (private_data->write_cached_bytes_cnt == BYTES_PER_FIFO_WORD) {
409 		writel(private_data->write_cached_bytes,
410 		       uport->membase + SE_GENI_TX_FIFOn);
411 		private_data->write_cached_bytes_cnt = 0;
412 	}
413 }
414 
415 static void
416 __qcom_geni_serial_console_write(struct uart_port *uport, const char *s,
417 				 unsigned int count)
418 {
419 	struct qcom_geni_private_data *private_data = uport->private_data;
420 
421 	int i;
422 	u32 bytes_to_send = count;
423 
424 	for (i = 0; i < count; i++) {
425 		/*
426 		 * uart_console_write() adds a carriage return for each newline.
427 		 * Account for additional bytes to be written.
428 		 */
429 		if (s[i] == '\n')
430 			bytes_to_send++;
431 	}
432 
433 	writel(DEF_TX_WM, uport->membase + SE_GENI_TX_WATERMARK_REG);
434 	qcom_geni_serial_setup_tx(uport, bytes_to_send);
435 	for (i = 0; i < count; ) {
436 		size_t chars_to_write = 0;
437 		size_t avail = DEF_FIFO_DEPTH_WORDS - DEF_TX_WM;
438 
439 		/*
440 		 * If the WM bit never set, then the Tx state machine is not
441 		 * in a valid state, so break, cancel/abort any existing
442 		 * command. Unfortunately the current data being written is
443 		 * lost.
444 		 */
445 		if (!qcom_geni_serial_poll_bit(uport, SE_GENI_M_IRQ_STATUS,
446 						M_TX_FIFO_WATERMARK_EN, true))
447 			break;
448 		chars_to_write = min_t(size_t, count - i, avail / 2);
449 		uart_console_write(uport, s + i, chars_to_write,
450 						qcom_geni_serial_wr_char);
451 		writel(M_TX_FIFO_WATERMARK_EN, uport->membase +
452 							SE_GENI_M_IRQ_CLEAR);
453 		i += chars_to_write;
454 	}
455 
456 	if (private_data->write_cached_bytes_cnt) {
457 		private_data->write_cached_bytes >>= BITS_PER_BYTE *
458 			(BYTES_PER_FIFO_WORD - private_data->write_cached_bytes_cnt);
459 		writel(private_data->write_cached_bytes,
460 		       uport->membase + SE_GENI_TX_FIFOn);
461 		private_data->write_cached_bytes_cnt = 0;
462 	}
463 
464 	qcom_geni_serial_poll_tx_done(uport);
465 }
466 
467 static void qcom_geni_serial_console_write(struct console *co, const char *s,
468 			      unsigned int count)
469 {
470 	struct uart_port *uport;
471 	struct qcom_geni_serial_port *port;
472 	bool locked = true;
473 	unsigned long flags;
474 	u32 geni_status;
475 	u32 irq_en;
476 
477 	WARN_ON(co->index < 0 || co->index >= GENI_UART_CONS_PORTS);
478 
479 	port = get_port_from_line(co->index, true);
480 	if (IS_ERR(port))
481 		return;
482 
483 	uport = &port->uport;
484 	if (oops_in_progress)
485 		locked = spin_trylock_irqsave(&uport->lock, flags);
486 	else
487 		spin_lock_irqsave(&uport->lock, flags);
488 
489 	geni_status = readl(uport->membase + SE_GENI_STATUS);
490 
491 	/* Cancel the current write to log the fault */
492 	if (!locked) {
493 		geni_se_cancel_m_cmd(&port->se);
494 		if (!qcom_geni_serial_poll_bit(uport, SE_GENI_M_IRQ_STATUS,
495 						M_CMD_CANCEL_EN, true)) {
496 			geni_se_abort_m_cmd(&port->se);
497 			qcom_geni_serial_poll_bit(uport, SE_GENI_M_IRQ_STATUS,
498 							M_CMD_ABORT_EN, true);
499 			writel(M_CMD_ABORT_EN, uport->membase +
500 							SE_GENI_M_IRQ_CLEAR);
501 		}
502 		writel(M_CMD_CANCEL_EN, uport->membase + SE_GENI_M_IRQ_CLEAR);
503 	} else if ((geni_status & M_GENI_CMD_ACTIVE) && !port->tx_remaining) {
504 		/*
505 		 * It seems we can't interrupt existing transfers if all data
506 		 * has been sent, in which case we need to look for done first.
507 		 */
508 		qcom_geni_serial_poll_tx_done(uport);
509 
510 		if (!uart_circ_empty(&uport->state->xmit)) {
511 			irq_en = readl(uport->membase + SE_GENI_M_IRQ_EN);
512 			writel(irq_en | M_TX_FIFO_WATERMARK_EN,
513 					uport->membase + SE_GENI_M_IRQ_EN);
514 		}
515 	}
516 
517 	__qcom_geni_serial_console_write(uport, s, count);
518 
519 	if (port->tx_remaining)
520 		qcom_geni_serial_setup_tx(uport, port->tx_remaining);
521 
522 	if (locked)
523 		spin_unlock_irqrestore(&uport->lock, flags);
524 }
525 
526 static void handle_rx_console(struct uart_port *uport, u32 bytes, bool drop)
527 {
528 	u32 i;
529 	unsigned char buf[sizeof(u32)];
530 	struct tty_port *tport;
531 	struct qcom_geni_serial_port *port = to_dev_port(uport);
532 
533 	tport = &uport->state->port;
534 	for (i = 0; i < bytes; ) {
535 		int c;
536 		int chunk = min_t(int, bytes - i, BYTES_PER_FIFO_WORD);
537 
538 		ioread32_rep(uport->membase + SE_GENI_RX_FIFOn, buf, 1);
539 		i += chunk;
540 		if (drop)
541 			continue;
542 
543 		for (c = 0; c < chunk; c++) {
544 			int sysrq;
545 
546 			uport->icount.rx++;
547 			if (port->brk && buf[c] == 0) {
548 				port->brk = false;
549 				if (uart_handle_break(uport))
550 					continue;
551 			}
552 
553 			sysrq = uart_prepare_sysrq_char(uport, buf[c]);
554 
555 			if (!sysrq)
556 				tty_insert_flip_char(tport, buf[c], TTY_NORMAL);
557 		}
558 	}
559 	if (!drop)
560 		tty_flip_buffer_push(tport);
561 }
562 #else
563 static void handle_rx_console(struct uart_port *uport, u32 bytes, bool drop)
564 {
565 
566 }
567 #endif /* CONFIG_SERIAL_QCOM_GENI_CONSOLE */
568 
569 static void handle_rx_uart(struct uart_port *uport, u32 bytes, bool drop)
570 {
571 	struct qcom_geni_serial_port *port = to_dev_port(uport);
572 	struct tty_port *tport = &uport->state->port;
573 	int ret;
574 
575 	ret = tty_insert_flip_string(tport, port->rx_buf, bytes);
576 	if (ret != bytes) {
577 		dev_err(uport->dev, "%s:Unable to push data ret %d_bytes %d\n",
578 				__func__, ret, bytes);
579 		WARN_ON_ONCE(1);
580 	}
581 	uport->icount.rx += ret;
582 	tty_flip_buffer_push(tport);
583 }
584 
585 static unsigned int qcom_geni_serial_tx_empty(struct uart_port *uport)
586 {
587 	return !readl(uport->membase + SE_GENI_TX_FIFO_STATUS);
588 }
589 
590 static void qcom_geni_serial_stop_tx_dma(struct uart_port *uport)
591 {
592 	struct qcom_geni_serial_port *port = to_dev_port(uport);
593 	bool done;
594 	u32 m_irq_en;
595 
596 	if (!qcom_geni_serial_main_active(uport))
597 		return;
598 
599 	if (port->tx_dma_addr) {
600 		geni_se_tx_dma_unprep(&port->se, port->tx_dma_addr,
601 				      port->tx_remaining);
602 		port->tx_dma_addr = 0;
603 		port->tx_remaining = 0;
604 	}
605 
606 	m_irq_en = readl(uport->membase + SE_GENI_M_IRQ_EN);
607 	writel(m_irq_en, uport->membase + SE_GENI_M_IRQ_EN);
608 	geni_se_cancel_m_cmd(&port->se);
609 
610 	done = qcom_geni_serial_poll_bit(uport, SE_GENI_S_IRQ_STATUS,
611 					 S_CMD_CANCEL_EN, true);
612 	if (!done) {
613 		geni_se_abort_m_cmd(&port->se);
614 		done = qcom_geni_serial_poll_bit(uport, SE_GENI_M_IRQ_STATUS,
615 						 M_CMD_ABORT_EN, true);
616 		if (!done)
617 			dev_err_ratelimited(uport->dev, "M_CMD_ABORT_EN not set");
618 		writel(M_CMD_ABORT_EN, uport->membase + SE_GENI_M_IRQ_CLEAR);
619 	}
620 
621 	writel(M_CMD_CANCEL_EN, uport->membase + SE_GENI_M_IRQ_CLEAR);
622 }
623 
624 static void qcom_geni_serial_start_tx_dma(struct uart_port *uport)
625 {
626 	struct qcom_geni_serial_port *port = to_dev_port(uport);
627 	struct circ_buf *xmit = &uport->state->xmit;
628 	unsigned int xmit_size;
629 	int ret;
630 
631 	if (port->tx_dma_addr)
632 		return;
633 
634 	if (uart_circ_empty(xmit))
635 		return;
636 
637 	xmit_size = CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE);
638 
639 	qcom_geni_serial_setup_tx(uport, xmit_size);
640 
641 	ret = geni_se_tx_dma_prep(&port->se, &xmit->buf[xmit->tail],
642 				  xmit_size, &port->tx_dma_addr);
643 	if (ret) {
644 		dev_err(uport->dev, "unable to start TX SE DMA: %d\n", ret);
645 		qcom_geni_serial_stop_tx_dma(uport);
646 		return;
647 	}
648 
649 	port->tx_remaining = xmit_size;
650 }
651 
652 static void qcom_geni_serial_start_tx_fifo(struct uart_port *uport)
653 {
654 	u32 irq_en;
655 
656 	if (qcom_geni_serial_main_active(uport) ||
657 	    !qcom_geni_serial_tx_empty(uport))
658 		return;
659 
660 	irq_en = readl(uport->membase +	SE_GENI_M_IRQ_EN);
661 	irq_en |= M_TX_FIFO_WATERMARK_EN | M_CMD_DONE_EN;
662 
663 	writel(DEF_TX_WM, uport->membase + SE_GENI_TX_WATERMARK_REG);
664 	writel(irq_en, uport->membase +	SE_GENI_M_IRQ_EN);
665 }
666 
667 static void qcom_geni_serial_stop_tx_fifo(struct uart_port *uport)
668 {
669 	u32 irq_en;
670 	struct qcom_geni_serial_port *port = to_dev_port(uport);
671 
672 	irq_en = readl(uport->membase + SE_GENI_M_IRQ_EN);
673 	irq_en &= ~(M_CMD_DONE_EN | M_TX_FIFO_WATERMARK_EN);
674 	writel(0, uport->membase + SE_GENI_TX_WATERMARK_REG);
675 	writel(irq_en, uport->membase + SE_GENI_M_IRQ_EN);
676 	/* Possible stop tx is called multiple times. */
677 	if (!qcom_geni_serial_main_active(uport))
678 		return;
679 
680 	geni_se_cancel_m_cmd(&port->se);
681 	if (!qcom_geni_serial_poll_bit(uport, SE_GENI_M_IRQ_STATUS,
682 						M_CMD_CANCEL_EN, true)) {
683 		geni_se_abort_m_cmd(&port->se);
684 		qcom_geni_serial_poll_bit(uport, SE_GENI_M_IRQ_STATUS,
685 						M_CMD_ABORT_EN, true);
686 		writel(M_CMD_ABORT_EN, uport->membase + SE_GENI_M_IRQ_CLEAR);
687 	}
688 	writel(M_CMD_CANCEL_EN, uport->membase + SE_GENI_M_IRQ_CLEAR);
689 }
690 
691 static void qcom_geni_serial_handle_rx_fifo(struct uart_port *uport, bool drop)
692 {
693 	u32 status;
694 	u32 word_cnt;
695 	u32 last_word_byte_cnt;
696 	u32 last_word_partial;
697 	u32 total_bytes;
698 
699 	status = readl(uport->membase +	SE_GENI_RX_FIFO_STATUS);
700 	word_cnt = status & RX_FIFO_WC_MSK;
701 	last_word_partial = status & RX_LAST;
702 	last_word_byte_cnt = (status & RX_LAST_BYTE_VALID_MSK) >>
703 						RX_LAST_BYTE_VALID_SHFT;
704 
705 	if (!word_cnt)
706 		return;
707 	total_bytes = BYTES_PER_FIFO_WORD * (word_cnt - 1);
708 	if (last_word_partial && last_word_byte_cnt)
709 		total_bytes += last_word_byte_cnt;
710 	else
711 		total_bytes += BYTES_PER_FIFO_WORD;
712 	handle_rx_console(uport, total_bytes, drop);
713 }
714 
715 static void qcom_geni_serial_stop_rx_fifo(struct uart_port *uport)
716 {
717 	u32 irq_en;
718 	struct qcom_geni_serial_port *port = to_dev_port(uport);
719 	u32 s_irq_status;
720 
721 	irq_en = readl(uport->membase + SE_GENI_S_IRQ_EN);
722 	irq_en &= ~(S_RX_FIFO_WATERMARK_EN | S_RX_FIFO_LAST_EN);
723 	writel(irq_en, uport->membase + SE_GENI_S_IRQ_EN);
724 
725 	irq_en = readl(uport->membase + SE_GENI_M_IRQ_EN);
726 	irq_en &= ~(M_RX_FIFO_WATERMARK_EN | M_RX_FIFO_LAST_EN);
727 	writel(irq_en, uport->membase + SE_GENI_M_IRQ_EN);
728 
729 	if (!qcom_geni_serial_secondary_active(uport))
730 		return;
731 
732 	geni_se_cancel_s_cmd(&port->se);
733 	qcom_geni_serial_poll_bit(uport, SE_GENI_S_IRQ_STATUS,
734 					S_CMD_CANCEL_EN, true);
735 	/*
736 	 * If timeout occurs secondary engine remains active
737 	 * and Abort sequence is executed.
738 	 */
739 	s_irq_status = readl(uport->membase + SE_GENI_S_IRQ_STATUS);
740 	/* Flush the Rx buffer */
741 	if (s_irq_status & S_RX_FIFO_LAST_EN)
742 		qcom_geni_serial_handle_rx_fifo(uport, true);
743 	writel(s_irq_status, uport->membase + SE_GENI_S_IRQ_CLEAR);
744 
745 	if (qcom_geni_serial_secondary_active(uport))
746 		qcom_geni_serial_abort_rx(uport);
747 }
748 
749 static void qcom_geni_serial_start_rx_fifo(struct uart_port *uport)
750 {
751 	u32 irq_en;
752 	struct qcom_geni_serial_port *port = to_dev_port(uport);
753 
754 	if (qcom_geni_serial_secondary_active(uport))
755 		qcom_geni_serial_stop_rx_fifo(uport);
756 
757 	geni_se_setup_s_cmd(&port->se, UART_START_READ, 0);
758 
759 	irq_en = readl(uport->membase + SE_GENI_S_IRQ_EN);
760 	irq_en |= S_RX_FIFO_WATERMARK_EN | S_RX_FIFO_LAST_EN;
761 	writel(irq_en, uport->membase + SE_GENI_S_IRQ_EN);
762 
763 	irq_en = readl(uport->membase + SE_GENI_M_IRQ_EN);
764 	irq_en |= M_RX_FIFO_WATERMARK_EN | M_RX_FIFO_LAST_EN;
765 	writel(irq_en, uport->membase + SE_GENI_M_IRQ_EN);
766 }
767 
768 static void qcom_geni_serial_stop_rx_dma(struct uart_port *uport)
769 {
770 	struct qcom_geni_serial_port *port = to_dev_port(uport);
771 
772 	if (!qcom_geni_serial_secondary_active(uport))
773 		return;
774 
775 	geni_se_cancel_s_cmd(&port->se);
776 	qcom_geni_serial_poll_bit(uport, SE_GENI_S_IRQ_STATUS,
777 				  S_CMD_CANCEL_EN, true);
778 
779 	if (qcom_geni_serial_secondary_active(uport))
780 		qcom_geni_serial_abort_rx(uport);
781 
782 	if (port->rx_dma_addr) {
783 		geni_se_rx_dma_unprep(&port->se, port->rx_dma_addr,
784 				      DMA_RX_BUF_SIZE);
785 		port->rx_dma_addr = 0;
786 	}
787 }
788 
789 static void qcom_geni_serial_start_rx_dma(struct uart_port *uport)
790 {
791 	struct qcom_geni_serial_port *port = to_dev_port(uport);
792 	int ret;
793 
794 	if (qcom_geni_serial_secondary_active(uport))
795 		qcom_geni_serial_stop_rx_dma(uport);
796 
797 	geni_se_setup_s_cmd(&port->se, UART_START_READ, UART_PARAM_RFR_OPEN);
798 
799 	ret = geni_se_rx_dma_prep(&port->se, port->rx_buf,
800 				  DMA_RX_BUF_SIZE,
801 				  &port->rx_dma_addr);
802 	if (ret) {
803 		dev_err(uport->dev, "unable to start RX SE DMA: %d\n", ret);
804 		qcom_geni_serial_stop_rx_dma(uport);
805 	}
806 }
807 
808 static void qcom_geni_serial_handle_rx_dma(struct uart_port *uport, bool drop)
809 {
810 	struct qcom_geni_serial_port *port = to_dev_port(uport);
811 	u32 rx_in;
812 	int ret;
813 
814 	if (!qcom_geni_serial_secondary_active(uport))
815 		return;
816 
817 	if (!port->rx_dma_addr)
818 		return;
819 
820 	geni_se_rx_dma_unprep(&port->se, port->rx_dma_addr, DMA_RX_BUF_SIZE);
821 	port->rx_dma_addr = 0;
822 
823 	rx_in = readl(uport->membase + SE_DMA_RX_LEN_IN);
824 	if (!rx_in) {
825 		dev_warn(uport->dev, "serial engine reports 0 RX bytes in!\n");
826 		return;
827 	}
828 
829 	if (!drop)
830 		handle_rx_uart(uport, rx_in, drop);
831 
832 	ret = geni_se_rx_dma_prep(&port->se, port->rx_buf,
833 				  DMA_RX_BUF_SIZE,
834 				  &port->rx_dma_addr);
835 	if (ret) {
836 		dev_err(uport->dev, "unable to start RX SE DMA: %d\n", ret);
837 		qcom_geni_serial_stop_rx_dma(uport);
838 	}
839 }
840 
841 static void qcom_geni_serial_start_rx(struct uart_port *uport)
842 {
843 	uport->ops->start_rx(uport);
844 }
845 
846 static void qcom_geni_serial_stop_rx(struct uart_port *uport)
847 {
848 	uport->ops->stop_rx(uport);
849 }
850 
851 static void qcom_geni_serial_stop_tx(struct uart_port *uport)
852 {
853 	uport->ops->stop_tx(uport);
854 }
855 
856 static void qcom_geni_serial_send_chunk_fifo(struct uart_port *uport,
857 					     unsigned int remaining)
858 {
859 	struct qcom_geni_serial_port *port = to_dev_port(uport);
860 	struct circ_buf *xmit = &uport->state->xmit;
861 	unsigned int tx_bytes;
862 	u8 buf[BYTES_PER_FIFO_WORD];
863 
864 	while (remaining) {
865 		memset(buf, 0, sizeof(buf));
866 		tx_bytes = min(remaining, BYTES_PER_FIFO_WORD);
867 
868 		memcpy(buf, &xmit->buf[xmit->tail], tx_bytes);
869 		uart_xmit_advance(uport, tx_bytes);
870 
871 		iowrite32_rep(uport->membase + SE_GENI_TX_FIFOn, buf, 1);
872 
873 		remaining -= tx_bytes;
874 		port->tx_remaining -= tx_bytes;
875 	}
876 }
877 
878 static void qcom_geni_serial_handle_tx_fifo(struct uart_port *uport,
879 					    bool done, bool active)
880 {
881 	struct qcom_geni_serial_port *port = to_dev_port(uport);
882 	struct circ_buf *xmit = &uport->state->xmit;
883 	size_t avail;
884 	size_t pending;
885 	u32 status;
886 	u32 irq_en;
887 	unsigned int chunk;
888 
889 	status = readl(uport->membase + SE_GENI_TX_FIFO_STATUS);
890 
891 	/* Complete the current tx command before taking newly added data */
892 	if (active)
893 		pending = port->tx_remaining;
894 	else
895 		pending = uart_circ_chars_pending(xmit);
896 
897 	/* All data has been transmitted and acknowledged as received */
898 	if (!pending && !status && done) {
899 		qcom_geni_serial_stop_tx_fifo(uport);
900 		goto out_write_wakeup;
901 	}
902 
903 	avail = port->tx_fifo_depth - (status & TX_FIFO_WC);
904 	avail *= BYTES_PER_FIFO_WORD;
905 
906 	chunk = min(avail, pending);
907 	if (!chunk)
908 		goto out_write_wakeup;
909 
910 	if (!port->tx_remaining) {
911 		qcom_geni_serial_setup_tx(uport, pending);
912 		port->tx_remaining = pending;
913 
914 		irq_en = readl(uport->membase + SE_GENI_M_IRQ_EN);
915 		if (!(irq_en & M_TX_FIFO_WATERMARK_EN))
916 			writel(irq_en | M_TX_FIFO_WATERMARK_EN,
917 					uport->membase + SE_GENI_M_IRQ_EN);
918 	}
919 
920 	qcom_geni_serial_send_chunk_fifo(uport, chunk);
921 
922 	/*
923 	 * The tx fifo watermark is level triggered and latched. Though we had
924 	 * cleared it in qcom_geni_serial_isr it will have already reasserted
925 	 * so we must clear it again here after our writes.
926 	 */
927 	writel(M_TX_FIFO_WATERMARK_EN,
928 			uport->membase + SE_GENI_M_IRQ_CLEAR);
929 
930 out_write_wakeup:
931 	if (!port->tx_remaining) {
932 		irq_en = readl(uport->membase + SE_GENI_M_IRQ_EN);
933 		if (irq_en & M_TX_FIFO_WATERMARK_EN)
934 			writel(irq_en & ~M_TX_FIFO_WATERMARK_EN,
935 					uport->membase + SE_GENI_M_IRQ_EN);
936 	}
937 
938 	if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
939 		uart_write_wakeup(uport);
940 }
941 
942 static void qcom_geni_serial_handle_tx_dma(struct uart_port *uport)
943 {
944 	struct qcom_geni_serial_port *port = to_dev_port(uport);
945 	struct circ_buf *xmit = &uport->state->xmit;
946 
947 	uart_xmit_advance(uport, port->tx_remaining);
948 	geni_se_tx_dma_unprep(&port->se, port->tx_dma_addr, port->tx_remaining);
949 	port->tx_dma_addr = 0;
950 	port->tx_remaining = 0;
951 
952 	if (!uart_circ_empty(xmit))
953 		qcom_geni_serial_start_tx_dma(uport);
954 
955 	if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
956 		uart_write_wakeup(uport);
957 }
958 
959 static irqreturn_t qcom_geni_serial_isr(int isr, void *dev)
960 {
961 	u32 m_irq_en;
962 	u32 m_irq_status;
963 	u32 s_irq_status;
964 	u32 geni_status;
965 	u32 dma;
966 	u32 dma_tx_status;
967 	u32 dma_rx_status;
968 	struct uart_port *uport = dev;
969 	bool drop_rx = false;
970 	struct tty_port *tport = &uport->state->port;
971 	struct qcom_geni_serial_port *port = to_dev_port(uport);
972 
973 	if (uport->suspended)
974 		return IRQ_NONE;
975 
976 	spin_lock(&uport->lock);
977 
978 	m_irq_status = readl(uport->membase + SE_GENI_M_IRQ_STATUS);
979 	s_irq_status = readl(uport->membase + SE_GENI_S_IRQ_STATUS);
980 	dma_tx_status = readl(uport->membase + SE_DMA_TX_IRQ_STAT);
981 	dma_rx_status = readl(uport->membase + SE_DMA_RX_IRQ_STAT);
982 	geni_status = readl(uport->membase + SE_GENI_STATUS);
983 	dma = readl(uport->membase + SE_GENI_DMA_MODE_EN);
984 	m_irq_en = readl(uport->membase + SE_GENI_M_IRQ_EN);
985 	writel(m_irq_status, uport->membase + SE_GENI_M_IRQ_CLEAR);
986 	writel(s_irq_status, uport->membase + SE_GENI_S_IRQ_CLEAR);
987 	writel(dma_tx_status, uport->membase + SE_DMA_TX_IRQ_CLR);
988 	writel(dma_rx_status, uport->membase + SE_DMA_RX_IRQ_CLR);
989 
990 	if (WARN_ON(m_irq_status & M_ILLEGAL_CMD_EN))
991 		goto out_unlock;
992 
993 	if (s_irq_status & S_RX_FIFO_WR_ERR_EN) {
994 		uport->icount.overrun++;
995 		tty_insert_flip_char(tport, 0, TTY_OVERRUN);
996 	}
997 
998 	if (s_irq_status & (S_GP_IRQ_0_EN | S_GP_IRQ_1_EN)) {
999 		if (s_irq_status & S_GP_IRQ_0_EN)
1000 			uport->icount.parity++;
1001 		drop_rx = true;
1002 	} else if (s_irq_status & (S_GP_IRQ_2_EN | S_GP_IRQ_3_EN)) {
1003 		uport->icount.brk++;
1004 		port->brk = true;
1005 	}
1006 
1007 	if (dma) {
1008 		if (dma_tx_status & TX_DMA_DONE)
1009 			qcom_geni_serial_handle_tx_dma(uport);
1010 
1011 		if (dma_rx_status) {
1012 			if (dma_rx_status & RX_RESET_DONE)
1013 				goto out_unlock;
1014 
1015 			if (dma_rx_status & RX_DMA_PARITY_ERR) {
1016 				uport->icount.parity++;
1017 				drop_rx = true;
1018 			}
1019 
1020 			if (dma_rx_status & RX_DMA_BREAK)
1021 				uport->icount.brk++;
1022 
1023 			if (dma_rx_status & (RX_DMA_DONE | RX_EOT))
1024 				qcom_geni_serial_handle_rx_dma(uport, drop_rx);
1025 		}
1026 	} else {
1027 		if (m_irq_status & m_irq_en &
1028 		    (M_TX_FIFO_WATERMARK_EN | M_CMD_DONE_EN))
1029 			qcom_geni_serial_handle_tx_fifo(uport,
1030 					m_irq_status & M_CMD_DONE_EN,
1031 					geni_status & M_GENI_CMD_ACTIVE);
1032 
1033 		if (s_irq_status & (S_RX_FIFO_WATERMARK_EN | S_RX_FIFO_LAST_EN))
1034 			qcom_geni_serial_handle_rx_fifo(uport, drop_rx);
1035 	}
1036 
1037 out_unlock:
1038 	uart_unlock_and_check_sysrq(uport);
1039 
1040 	return IRQ_HANDLED;
1041 }
1042 
1043 static int setup_fifos(struct qcom_geni_serial_port *port)
1044 {
1045 	struct uart_port *uport;
1046 	u32 old_rx_fifo_depth = port->rx_fifo_depth;
1047 
1048 	uport = &port->uport;
1049 	port->tx_fifo_depth = geni_se_get_tx_fifo_depth(&port->se);
1050 	port->tx_fifo_width = geni_se_get_tx_fifo_width(&port->se);
1051 	port->rx_fifo_depth = geni_se_get_rx_fifo_depth(&port->se);
1052 	uport->fifosize =
1053 		(port->tx_fifo_depth * port->tx_fifo_width) / BITS_PER_BYTE;
1054 
1055 	if (port->rx_buf && (old_rx_fifo_depth != port->rx_fifo_depth) && port->rx_fifo_depth) {
1056 		/*
1057 		 * Use krealloc rather than krealloc_array because rx_buf is
1058 		 * accessed as 1 byte entries as well as 4 byte entries so it's
1059 		 * not necessarily an array.
1060 		 */
1061 		port->rx_buf = devm_krealloc(uport->dev, port->rx_buf,
1062 					     port->rx_fifo_depth * sizeof(u32),
1063 					     GFP_KERNEL);
1064 		if (!port->rx_buf)
1065 			return -ENOMEM;
1066 	}
1067 
1068 	return 0;
1069 }
1070 
1071 
1072 static void qcom_geni_serial_shutdown(struct uart_port *uport)
1073 {
1074 	disable_irq(uport->irq);
1075 
1076 	if (uart_console(uport))
1077 		return;
1078 
1079 	qcom_geni_serial_stop_tx(uport);
1080 	qcom_geni_serial_stop_rx(uport);
1081 }
1082 
1083 static int qcom_geni_serial_port_setup(struct uart_port *uport)
1084 {
1085 	struct qcom_geni_serial_port *port = to_dev_port(uport);
1086 	u32 rxstale = DEFAULT_BITS_PER_CHAR * STALE_TIMEOUT;
1087 	u32 proto;
1088 	u32 pin_swap;
1089 	int ret;
1090 
1091 	proto = geni_se_read_proto(&port->se);
1092 	if (proto != GENI_SE_UART) {
1093 		dev_err(uport->dev, "Invalid FW loaded, proto: %d\n", proto);
1094 		return -ENXIO;
1095 	}
1096 
1097 	qcom_geni_serial_stop_rx(uport);
1098 
1099 	ret = setup_fifos(port);
1100 	if (ret)
1101 		return ret;
1102 
1103 	writel(rxstale, uport->membase + SE_UART_RX_STALE_CNT);
1104 
1105 	pin_swap = readl(uport->membase + SE_UART_IO_MACRO_CTRL);
1106 	if (port->rx_tx_swap) {
1107 		pin_swap &= ~DEFAULT_IO_MACRO_IO2_IO3_MASK;
1108 		pin_swap |= IO_MACRO_IO2_IO3_SWAP;
1109 	}
1110 	if (port->cts_rts_swap) {
1111 		pin_swap &= ~DEFAULT_IO_MACRO_IO0_IO1_MASK;
1112 		pin_swap |= IO_MACRO_IO0_SEL;
1113 	}
1114 	/* Configure this register if RX-TX, CTS-RTS pins are swapped */
1115 	if (port->rx_tx_swap || port->cts_rts_swap)
1116 		writel(pin_swap, uport->membase + SE_UART_IO_MACRO_CTRL);
1117 
1118 	/*
1119 	 * Make an unconditional cancel on the main sequencer to reset
1120 	 * it else we could end up in data loss scenarios.
1121 	 */
1122 	if (uart_console(uport))
1123 		qcom_geni_serial_poll_tx_done(uport);
1124 	geni_se_config_packing(&port->se, BITS_PER_BYTE, BYTES_PER_FIFO_WORD,
1125 			       false, true, true);
1126 	geni_se_init(&port->se, UART_RX_WM, port->rx_fifo_depth - 2);
1127 	geni_se_select_mode(&port->se, port->dev_data->mode);
1128 	qcom_geni_serial_start_rx(uport);
1129 	port->setup = true;
1130 
1131 	return 0;
1132 }
1133 
1134 static int qcom_geni_serial_startup(struct uart_port *uport)
1135 {
1136 	int ret;
1137 	struct qcom_geni_serial_port *port = to_dev_port(uport);
1138 
1139 	if (!port->setup) {
1140 		ret = qcom_geni_serial_port_setup(uport);
1141 		if (ret)
1142 			return ret;
1143 	}
1144 	enable_irq(uport->irq);
1145 
1146 	return 0;
1147 }
1148 
1149 static unsigned long find_clk_rate_in_tol(struct clk *clk, unsigned int desired_clk,
1150 			unsigned int *clk_div, unsigned int percent_tol)
1151 {
1152 	unsigned long freq;
1153 	unsigned long div, maxdiv;
1154 	u64 mult;
1155 	unsigned long offset, abs_tol, achieved;
1156 
1157 	abs_tol = div_u64((u64)desired_clk * percent_tol, 100);
1158 	maxdiv = CLK_DIV_MSK >> CLK_DIV_SHFT;
1159 	div = 1;
1160 	while (div <= maxdiv) {
1161 		mult = (u64)div * desired_clk;
1162 		if (mult != (unsigned long)mult)
1163 			break;
1164 
1165 		offset = div * abs_tol;
1166 		freq = clk_round_rate(clk, mult - offset);
1167 
1168 		/* Can only get lower if we're done */
1169 		if (freq < mult - offset)
1170 			break;
1171 
1172 		/*
1173 		 * Re-calculate div in case rounding skipped rates but we
1174 		 * ended up at a good one, then check for a match.
1175 		 */
1176 		div = DIV_ROUND_CLOSEST(freq, desired_clk);
1177 		achieved = DIV_ROUND_CLOSEST(freq, div);
1178 		if (achieved <= desired_clk + abs_tol &&
1179 		    achieved >= desired_clk - abs_tol) {
1180 			*clk_div = div;
1181 			return freq;
1182 		}
1183 
1184 		div = DIV_ROUND_UP(freq, desired_clk);
1185 	}
1186 
1187 	return 0;
1188 }
1189 
1190 static unsigned long get_clk_div_rate(struct clk *clk, unsigned int baud,
1191 			unsigned int sampling_rate, unsigned int *clk_div)
1192 {
1193 	unsigned long ser_clk;
1194 	unsigned long desired_clk;
1195 
1196 	desired_clk = baud * sampling_rate;
1197 	if (!desired_clk)
1198 		return 0;
1199 
1200 	/*
1201 	 * try to find a clock rate within 2% tolerance, then within 5%
1202 	 */
1203 	ser_clk = find_clk_rate_in_tol(clk, desired_clk, clk_div, 2);
1204 	if (!ser_clk)
1205 		ser_clk = find_clk_rate_in_tol(clk, desired_clk, clk_div, 5);
1206 
1207 	return ser_clk;
1208 }
1209 
1210 static void qcom_geni_serial_set_termios(struct uart_port *uport,
1211 					 struct ktermios *termios,
1212 					 const struct ktermios *old)
1213 {
1214 	unsigned int baud;
1215 	u32 bits_per_char;
1216 	u32 tx_trans_cfg;
1217 	u32 tx_parity_cfg;
1218 	u32 rx_trans_cfg;
1219 	u32 rx_parity_cfg;
1220 	u32 stop_bit_len;
1221 	unsigned int clk_div;
1222 	u32 ser_clk_cfg;
1223 	struct qcom_geni_serial_port *port = to_dev_port(uport);
1224 	unsigned long clk_rate;
1225 	u32 ver, sampling_rate;
1226 	unsigned int avg_bw_core;
1227 
1228 	qcom_geni_serial_stop_rx(uport);
1229 	/* baud rate */
1230 	baud = uart_get_baud_rate(uport, termios, old, 300, 4000000);
1231 	port->baud = baud;
1232 
1233 	sampling_rate = UART_OVERSAMPLING;
1234 	/* Sampling rate is halved for IP versions >= 2.5 */
1235 	ver = geni_se_get_qup_hw_version(&port->se);
1236 	if (ver >= QUP_SE_VERSION_2_5)
1237 		sampling_rate /= 2;
1238 
1239 	clk_rate = get_clk_div_rate(port->se.clk, baud,
1240 		sampling_rate, &clk_div);
1241 	if (!clk_rate) {
1242 		dev_err(port->se.dev,
1243 			"Couldn't find suitable clock rate for %u\n",
1244 			baud * sampling_rate);
1245 		goto out_restart_rx;
1246 	}
1247 
1248 	dev_dbg(port->se.dev, "desired_rate-%u, clk_rate-%lu, clk_div-%u\n",
1249 			baud * sampling_rate, clk_rate, clk_div);
1250 
1251 	uport->uartclk = clk_rate;
1252 	dev_pm_opp_set_rate(uport->dev, clk_rate);
1253 	ser_clk_cfg = SER_CLK_EN;
1254 	ser_clk_cfg |= clk_div << CLK_DIV_SHFT;
1255 
1256 	/*
1257 	 * Bump up BW vote on CPU and CORE path as driver supports FIFO mode
1258 	 * only.
1259 	 */
1260 	avg_bw_core = (baud > 115200) ? Bps_to_icc(CORE_2X_50_MHZ)
1261 						: GENI_DEFAULT_BW;
1262 	port->se.icc_paths[GENI_TO_CORE].avg_bw = avg_bw_core;
1263 	port->se.icc_paths[CPU_TO_GENI].avg_bw = Bps_to_icc(baud);
1264 	geni_icc_set_bw(&port->se);
1265 
1266 	/* parity */
1267 	tx_trans_cfg = readl(uport->membase + SE_UART_TX_TRANS_CFG);
1268 	tx_parity_cfg = readl(uport->membase + SE_UART_TX_PARITY_CFG);
1269 	rx_trans_cfg = readl(uport->membase + SE_UART_RX_TRANS_CFG);
1270 	rx_parity_cfg = readl(uport->membase + SE_UART_RX_PARITY_CFG);
1271 	if (termios->c_cflag & PARENB) {
1272 		tx_trans_cfg |= UART_TX_PAR_EN;
1273 		rx_trans_cfg |= UART_RX_PAR_EN;
1274 		tx_parity_cfg |= PAR_CALC_EN;
1275 		rx_parity_cfg |= PAR_CALC_EN;
1276 		if (termios->c_cflag & PARODD) {
1277 			tx_parity_cfg |= PAR_ODD;
1278 			rx_parity_cfg |= PAR_ODD;
1279 		} else if (termios->c_cflag & CMSPAR) {
1280 			tx_parity_cfg |= PAR_SPACE;
1281 			rx_parity_cfg |= PAR_SPACE;
1282 		} else {
1283 			tx_parity_cfg |= PAR_EVEN;
1284 			rx_parity_cfg |= PAR_EVEN;
1285 		}
1286 	} else {
1287 		tx_trans_cfg &= ~UART_TX_PAR_EN;
1288 		rx_trans_cfg &= ~UART_RX_PAR_EN;
1289 		tx_parity_cfg &= ~PAR_CALC_EN;
1290 		rx_parity_cfg &= ~PAR_CALC_EN;
1291 	}
1292 
1293 	/* bits per char */
1294 	bits_per_char = tty_get_char_size(termios->c_cflag);
1295 
1296 	/* stop bits */
1297 	if (termios->c_cflag & CSTOPB)
1298 		stop_bit_len = TX_STOP_BIT_LEN_2;
1299 	else
1300 		stop_bit_len = TX_STOP_BIT_LEN_1;
1301 
1302 	/* flow control, clear the CTS_MASK bit if using flow control. */
1303 	if (termios->c_cflag & CRTSCTS)
1304 		tx_trans_cfg &= ~UART_CTS_MASK;
1305 	else
1306 		tx_trans_cfg |= UART_CTS_MASK;
1307 
1308 	if (baud)
1309 		uart_update_timeout(uport, termios->c_cflag, baud);
1310 
1311 	if (!uart_console(uport))
1312 		writel(port->loopback,
1313 				uport->membase + SE_UART_LOOPBACK_CFG);
1314 	writel(tx_trans_cfg, uport->membase + SE_UART_TX_TRANS_CFG);
1315 	writel(tx_parity_cfg, uport->membase + SE_UART_TX_PARITY_CFG);
1316 	writel(rx_trans_cfg, uport->membase + SE_UART_RX_TRANS_CFG);
1317 	writel(rx_parity_cfg, uport->membase + SE_UART_RX_PARITY_CFG);
1318 	writel(bits_per_char, uport->membase + SE_UART_TX_WORD_LEN);
1319 	writel(bits_per_char, uport->membase + SE_UART_RX_WORD_LEN);
1320 	writel(stop_bit_len, uport->membase + SE_UART_TX_STOP_BIT_LEN);
1321 	writel(ser_clk_cfg, uport->membase + GENI_SER_M_CLK_CFG);
1322 	writel(ser_clk_cfg, uport->membase + GENI_SER_S_CLK_CFG);
1323 out_restart_rx:
1324 	qcom_geni_serial_start_rx(uport);
1325 }
1326 
1327 #ifdef CONFIG_SERIAL_QCOM_GENI_CONSOLE
1328 static int qcom_geni_console_setup(struct console *co, char *options)
1329 {
1330 	struct uart_port *uport;
1331 	struct qcom_geni_serial_port *port;
1332 	int baud = 115200;
1333 	int bits = 8;
1334 	int parity = 'n';
1335 	int flow = 'n';
1336 	int ret;
1337 
1338 	if (co->index >= GENI_UART_CONS_PORTS  || co->index < 0)
1339 		return -ENXIO;
1340 
1341 	port = get_port_from_line(co->index, true);
1342 	if (IS_ERR(port)) {
1343 		pr_err("Invalid line %d\n", co->index);
1344 		return PTR_ERR(port);
1345 	}
1346 
1347 	uport = &port->uport;
1348 
1349 	if (unlikely(!uport->membase))
1350 		return -ENXIO;
1351 
1352 	if (!port->setup) {
1353 		ret = qcom_geni_serial_port_setup(uport);
1354 		if (ret)
1355 			return ret;
1356 	}
1357 
1358 	if (options)
1359 		uart_parse_options(options, &baud, &parity, &bits, &flow);
1360 
1361 	return uart_set_options(uport, co, baud, parity, bits, flow);
1362 }
1363 
1364 static void qcom_geni_serial_earlycon_write(struct console *con,
1365 					const char *s, unsigned int n)
1366 {
1367 	struct earlycon_device *dev = con->data;
1368 
1369 	__qcom_geni_serial_console_write(&dev->port, s, n);
1370 }
1371 
1372 #ifdef CONFIG_CONSOLE_POLL
1373 static int qcom_geni_serial_earlycon_read(struct console *con,
1374 					  char *s, unsigned int n)
1375 {
1376 	struct earlycon_device *dev = con->data;
1377 	struct uart_port *uport = &dev->port;
1378 	int num_read = 0;
1379 	int ch;
1380 
1381 	while (num_read < n) {
1382 		ch = qcom_geni_serial_get_char(uport);
1383 		if (ch == NO_POLL_CHAR)
1384 			break;
1385 		s[num_read++] = ch;
1386 	}
1387 
1388 	return num_read;
1389 }
1390 
1391 static void __init qcom_geni_serial_enable_early_read(struct geni_se *se,
1392 						      struct console *con)
1393 {
1394 	geni_se_setup_s_cmd(se, UART_START_READ, 0);
1395 	con->read = qcom_geni_serial_earlycon_read;
1396 }
1397 #else
1398 static inline void qcom_geni_serial_enable_early_read(struct geni_se *se,
1399 						      struct console *con) { }
1400 #endif
1401 
1402 static struct qcom_geni_private_data earlycon_private_data;
1403 
1404 static int __init qcom_geni_serial_earlycon_setup(struct earlycon_device *dev,
1405 								const char *opt)
1406 {
1407 	struct uart_port *uport = &dev->port;
1408 	u32 tx_trans_cfg;
1409 	u32 tx_parity_cfg = 0;	/* Disable Tx Parity */
1410 	u32 rx_trans_cfg = 0;
1411 	u32 rx_parity_cfg = 0;	/* Disable Rx Parity */
1412 	u32 stop_bit_len = 0;	/* Default stop bit length - 1 bit */
1413 	u32 bits_per_char;
1414 	struct geni_se se;
1415 
1416 	if (!uport->membase)
1417 		return -EINVAL;
1418 
1419 	uport->private_data = &earlycon_private_data;
1420 
1421 	memset(&se, 0, sizeof(se));
1422 	se.base = uport->membase;
1423 	if (geni_se_read_proto(&se) != GENI_SE_UART)
1424 		return -ENXIO;
1425 	/*
1426 	 * Ignore Flow control.
1427 	 * n = 8.
1428 	 */
1429 	tx_trans_cfg = UART_CTS_MASK;
1430 	bits_per_char = BITS_PER_BYTE;
1431 
1432 	/*
1433 	 * Make an unconditional cancel on the main sequencer to reset
1434 	 * it else we could end up in data loss scenarios.
1435 	 */
1436 	qcom_geni_serial_poll_tx_done(uport);
1437 	qcom_geni_serial_abort_rx(uport);
1438 	geni_se_config_packing(&se, BITS_PER_BYTE, BYTES_PER_FIFO_WORD,
1439 			       false, true, true);
1440 	geni_se_init(&se, DEF_FIFO_DEPTH_WORDS / 2, DEF_FIFO_DEPTH_WORDS - 2);
1441 	geni_se_select_mode(&se, GENI_SE_FIFO);
1442 
1443 	writel(tx_trans_cfg, uport->membase + SE_UART_TX_TRANS_CFG);
1444 	writel(tx_parity_cfg, uport->membase + SE_UART_TX_PARITY_CFG);
1445 	writel(rx_trans_cfg, uport->membase + SE_UART_RX_TRANS_CFG);
1446 	writel(rx_parity_cfg, uport->membase + SE_UART_RX_PARITY_CFG);
1447 	writel(bits_per_char, uport->membase + SE_UART_TX_WORD_LEN);
1448 	writel(bits_per_char, uport->membase + SE_UART_RX_WORD_LEN);
1449 	writel(stop_bit_len, uport->membase + SE_UART_TX_STOP_BIT_LEN);
1450 
1451 	dev->con->write = qcom_geni_serial_earlycon_write;
1452 	dev->con->setup = NULL;
1453 	qcom_geni_serial_enable_early_read(&se, dev->con);
1454 
1455 	return 0;
1456 }
1457 OF_EARLYCON_DECLARE(qcom_geni, "qcom,geni-debug-uart",
1458 				qcom_geni_serial_earlycon_setup);
1459 
1460 static int __init console_register(struct uart_driver *drv)
1461 {
1462 	return uart_register_driver(drv);
1463 }
1464 
1465 static void console_unregister(struct uart_driver *drv)
1466 {
1467 	uart_unregister_driver(drv);
1468 }
1469 
1470 static struct console cons_ops = {
1471 	.name = "ttyMSM",
1472 	.write = qcom_geni_serial_console_write,
1473 	.device = uart_console_device,
1474 	.setup = qcom_geni_console_setup,
1475 	.flags = CON_PRINTBUFFER,
1476 	.index = -1,
1477 	.data = &qcom_geni_console_driver,
1478 };
1479 
1480 static struct uart_driver qcom_geni_console_driver = {
1481 	.owner = THIS_MODULE,
1482 	.driver_name = "qcom_geni_console",
1483 	.dev_name = "ttyMSM",
1484 	.nr =  GENI_UART_CONS_PORTS,
1485 	.cons = &cons_ops,
1486 };
1487 #else
1488 static int console_register(struct uart_driver *drv)
1489 {
1490 	return 0;
1491 }
1492 
1493 static void console_unregister(struct uart_driver *drv)
1494 {
1495 }
1496 #endif /* CONFIG_SERIAL_QCOM_GENI_CONSOLE */
1497 
1498 static struct uart_driver qcom_geni_uart_driver = {
1499 	.owner = THIS_MODULE,
1500 	.driver_name = "qcom_geni_uart",
1501 	.dev_name = "ttyHS",
1502 	.nr =  GENI_UART_PORTS,
1503 };
1504 
1505 static void qcom_geni_serial_pm(struct uart_port *uport,
1506 		unsigned int new_state, unsigned int old_state)
1507 {
1508 	struct qcom_geni_serial_port *port = to_dev_port(uport);
1509 
1510 	/* If we've never been called, treat it as off */
1511 	if (old_state == UART_PM_STATE_UNDEFINED)
1512 		old_state = UART_PM_STATE_OFF;
1513 
1514 	if (new_state == UART_PM_STATE_ON && old_state == UART_PM_STATE_OFF) {
1515 		geni_icc_enable(&port->se);
1516 		geni_se_resources_on(&port->se);
1517 	} else if (new_state == UART_PM_STATE_OFF &&
1518 			old_state == UART_PM_STATE_ON) {
1519 		geni_se_resources_off(&port->se);
1520 		geni_icc_disable(&port->se);
1521 	}
1522 }
1523 
1524 static const struct uart_ops qcom_geni_console_pops = {
1525 	.tx_empty = qcom_geni_serial_tx_empty,
1526 	.stop_tx = qcom_geni_serial_stop_tx_fifo,
1527 	.start_tx = qcom_geni_serial_start_tx_fifo,
1528 	.stop_rx = qcom_geni_serial_stop_rx_fifo,
1529 	.start_rx = qcom_geni_serial_start_rx_fifo,
1530 	.set_termios = qcom_geni_serial_set_termios,
1531 	.startup = qcom_geni_serial_startup,
1532 	.request_port = qcom_geni_serial_request_port,
1533 	.config_port = qcom_geni_serial_config_port,
1534 	.shutdown = qcom_geni_serial_shutdown,
1535 	.type = qcom_geni_serial_get_type,
1536 	.set_mctrl = qcom_geni_serial_set_mctrl,
1537 	.get_mctrl = qcom_geni_serial_get_mctrl,
1538 #ifdef CONFIG_CONSOLE_POLL
1539 	.poll_get_char	= qcom_geni_serial_get_char,
1540 	.poll_put_char	= qcom_geni_serial_poll_put_char,
1541 	.poll_init = qcom_geni_serial_port_setup,
1542 #endif
1543 	.pm = qcom_geni_serial_pm,
1544 };
1545 
1546 static const struct uart_ops qcom_geni_uart_pops = {
1547 	.tx_empty = qcom_geni_serial_tx_empty,
1548 	.stop_tx = qcom_geni_serial_stop_tx_dma,
1549 	.start_tx = qcom_geni_serial_start_tx_dma,
1550 	.start_rx = qcom_geni_serial_start_rx_dma,
1551 	.stop_rx = qcom_geni_serial_stop_rx_dma,
1552 	.set_termios = qcom_geni_serial_set_termios,
1553 	.startup = qcom_geni_serial_startup,
1554 	.request_port = qcom_geni_serial_request_port,
1555 	.config_port = qcom_geni_serial_config_port,
1556 	.shutdown = qcom_geni_serial_shutdown,
1557 	.type = qcom_geni_serial_get_type,
1558 	.set_mctrl = qcom_geni_serial_set_mctrl,
1559 	.get_mctrl = qcom_geni_serial_get_mctrl,
1560 	.pm = qcom_geni_serial_pm,
1561 };
1562 
1563 static int qcom_geni_serial_probe(struct platform_device *pdev)
1564 {
1565 	int ret = 0;
1566 	int line;
1567 	struct qcom_geni_serial_port *port;
1568 	struct uart_port *uport;
1569 	struct resource *res;
1570 	int irq;
1571 	struct uart_driver *drv;
1572 	const struct qcom_geni_device_data *data;
1573 
1574 	data = of_device_get_match_data(&pdev->dev);
1575 	if (!data)
1576 		return -EINVAL;
1577 
1578 	if (data->console) {
1579 		drv = &qcom_geni_console_driver;
1580 		line = of_alias_get_id(pdev->dev.of_node, "serial");
1581 	} else {
1582 		drv = &qcom_geni_uart_driver;
1583 		line = of_alias_get_id(pdev->dev.of_node, "serial");
1584 		if (line == -ENODEV) /* compat with non-standard aliases */
1585 			line = of_alias_get_id(pdev->dev.of_node, "hsuart");
1586 	}
1587 
1588 	port = get_port_from_line(line, data->console);
1589 	if (IS_ERR(port)) {
1590 		dev_err(&pdev->dev, "Invalid line %d\n", line);
1591 		return PTR_ERR(port);
1592 	}
1593 
1594 	uport = &port->uport;
1595 	/* Don't allow 2 drivers to access the same port */
1596 	if (uport->private_data)
1597 		return -ENODEV;
1598 
1599 	uport->dev = &pdev->dev;
1600 	port->dev_data = data;
1601 	port->se.dev = &pdev->dev;
1602 	port->se.wrapper = dev_get_drvdata(pdev->dev.parent);
1603 	port->se.clk = devm_clk_get(&pdev->dev, "se");
1604 	if (IS_ERR(port->se.clk)) {
1605 		ret = PTR_ERR(port->se.clk);
1606 		dev_err(&pdev->dev, "Err getting SE Core clk %d\n", ret);
1607 		return ret;
1608 	}
1609 
1610 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1611 	if (!res)
1612 		return -EINVAL;
1613 	uport->mapbase = res->start;
1614 
1615 	port->tx_fifo_depth = DEF_FIFO_DEPTH_WORDS;
1616 	port->rx_fifo_depth = DEF_FIFO_DEPTH_WORDS;
1617 	port->tx_fifo_width = DEF_FIFO_WIDTH_BITS;
1618 
1619 	if (!data->console) {
1620 		port->rx_buf = devm_kzalloc(uport->dev,
1621 					    DMA_RX_BUF_SIZE, GFP_KERNEL);
1622 		if (!port->rx_buf)
1623 			return -ENOMEM;
1624 	}
1625 
1626 	ret = geni_icc_get(&port->se, NULL);
1627 	if (ret)
1628 		return ret;
1629 	port->se.icc_paths[GENI_TO_CORE].avg_bw = GENI_DEFAULT_BW;
1630 	port->se.icc_paths[CPU_TO_GENI].avg_bw = GENI_DEFAULT_BW;
1631 
1632 	/* Set BW for register access */
1633 	ret = geni_icc_set_bw(&port->se);
1634 	if (ret)
1635 		return ret;
1636 
1637 	port->name = devm_kasprintf(uport->dev, GFP_KERNEL,
1638 			"qcom_geni_serial_%s%d",
1639 			uart_console(uport) ? "console" : "uart", uport->line);
1640 	if (!port->name)
1641 		return -ENOMEM;
1642 
1643 	irq = platform_get_irq(pdev, 0);
1644 	if (irq < 0)
1645 		return irq;
1646 	uport->irq = irq;
1647 	uport->has_sysrq = IS_ENABLED(CONFIG_SERIAL_QCOM_GENI_CONSOLE);
1648 
1649 	if (!data->console)
1650 		port->wakeup_irq = platform_get_irq_optional(pdev, 1);
1651 
1652 	if (of_property_read_bool(pdev->dev.of_node, "rx-tx-swap"))
1653 		port->rx_tx_swap = true;
1654 
1655 	if (of_property_read_bool(pdev->dev.of_node, "cts-rts-swap"))
1656 		port->cts_rts_swap = true;
1657 
1658 	ret = devm_pm_opp_set_clkname(&pdev->dev, "se");
1659 	if (ret)
1660 		return ret;
1661 	/* OPP table is optional */
1662 	ret = devm_pm_opp_of_add_table(&pdev->dev);
1663 	if (ret && ret != -ENODEV) {
1664 		dev_err(&pdev->dev, "invalid OPP table in device tree\n");
1665 		return ret;
1666 	}
1667 
1668 	port->private_data.drv = drv;
1669 	uport->private_data = &port->private_data;
1670 	platform_set_drvdata(pdev, port);
1671 
1672 	irq_set_status_flags(uport->irq, IRQ_NOAUTOEN);
1673 	ret = devm_request_irq(uport->dev, uport->irq, qcom_geni_serial_isr,
1674 			IRQF_TRIGGER_HIGH, port->name, uport);
1675 	if (ret) {
1676 		dev_err(uport->dev, "Failed to get IRQ ret %d\n", ret);
1677 		return ret;
1678 	}
1679 
1680 	ret = uart_add_one_port(drv, uport);
1681 	if (ret)
1682 		return ret;
1683 
1684 	/*
1685 	 * Set pm_runtime status as ACTIVE so that wakeup_irq gets
1686 	 * enabled/disabled from dev_pm_arm_wake_irq during system
1687 	 * suspend/resume respectively.
1688 	 */
1689 	pm_runtime_set_active(&pdev->dev);
1690 
1691 	if (port->wakeup_irq > 0) {
1692 		device_init_wakeup(&pdev->dev, true);
1693 		ret = dev_pm_set_dedicated_wake_irq(&pdev->dev,
1694 						port->wakeup_irq);
1695 		if (ret) {
1696 			device_init_wakeup(&pdev->dev, false);
1697 			uart_remove_one_port(drv, uport);
1698 			return ret;
1699 		}
1700 	}
1701 
1702 	return 0;
1703 }
1704 
1705 static int qcom_geni_serial_remove(struct platform_device *pdev)
1706 {
1707 	struct qcom_geni_serial_port *port = platform_get_drvdata(pdev);
1708 	struct uart_driver *drv = port->private_data.drv;
1709 
1710 	dev_pm_clear_wake_irq(&pdev->dev);
1711 	device_init_wakeup(&pdev->dev, false);
1712 	uart_remove_one_port(drv, &port->uport);
1713 
1714 	return 0;
1715 }
1716 
1717 static int qcom_geni_serial_sys_suspend(struct device *dev)
1718 {
1719 	struct qcom_geni_serial_port *port = dev_get_drvdata(dev);
1720 	struct uart_port *uport = &port->uport;
1721 	struct qcom_geni_private_data *private_data = uport->private_data;
1722 
1723 	/*
1724 	 * This is done so we can hit the lowest possible state in suspend
1725 	 * even with no_console_suspend
1726 	 */
1727 	if (uart_console(uport)) {
1728 		geni_icc_set_tag(&port->se, QCOM_ICC_TAG_ACTIVE_ONLY);
1729 		geni_icc_set_bw(&port->se);
1730 	}
1731 	return uart_suspend_port(private_data->drv, uport);
1732 }
1733 
1734 static int qcom_geni_serial_sys_resume(struct device *dev)
1735 {
1736 	int ret;
1737 	struct qcom_geni_serial_port *port = dev_get_drvdata(dev);
1738 	struct uart_port *uport = &port->uport;
1739 	struct qcom_geni_private_data *private_data = uport->private_data;
1740 
1741 	ret = uart_resume_port(private_data->drv, uport);
1742 	if (uart_console(uport)) {
1743 		geni_icc_set_tag(&port->se, QCOM_ICC_TAG_ALWAYS);
1744 		geni_icc_set_bw(&port->se);
1745 	}
1746 	return ret;
1747 }
1748 
1749 static int qcom_geni_serial_sys_hib_resume(struct device *dev)
1750 {
1751 	int ret = 0;
1752 	struct uart_port *uport;
1753 	struct qcom_geni_private_data *private_data;
1754 	struct qcom_geni_serial_port *port = dev_get_drvdata(dev);
1755 
1756 	uport = &port->uport;
1757 	private_data = uport->private_data;
1758 
1759 	if (uart_console(uport)) {
1760 		geni_icc_set_tag(&port->se, 0x7);
1761 		geni_icc_set_bw(&port->se);
1762 		ret = uart_resume_port(private_data->drv, uport);
1763 		/*
1764 		 * For hibernation usecase clients for
1765 		 * console UART won't call port setup during restore,
1766 		 * hence call port setup for console uart.
1767 		 */
1768 		qcom_geni_serial_port_setup(uport);
1769 	} else {
1770 		/*
1771 		 * Peripheral register settings are lost during hibernation.
1772 		 * Update setup flag such that port setup happens again
1773 		 * during next session. Clients of HS-UART will close and
1774 		 * open the port during hibernation.
1775 		 */
1776 		port->setup = false;
1777 	}
1778 	return ret;
1779 }
1780 
1781 static const struct qcom_geni_device_data qcom_geni_console_data = {
1782 	.console = true,
1783 	.mode = GENI_SE_FIFO,
1784 };
1785 
1786 static const struct qcom_geni_device_data qcom_geni_uart_data = {
1787 	.console = false,
1788 	.mode = GENI_SE_DMA,
1789 };
1790 
1791 static const struct dev_pm_ops qcom_geni_serial_pm_ops = {
1792 	.suspend = pm_sleep_ptr(qcom_geni_serial_sys_suspend),
1793 	.resume = pm_sleep_ptr(qcom_geni_serial_sys_resume),
1794 	.freeze = pm_sleep_ptr(qcom_geni_serial_sys_suspend),
1795 	.poweroff = pm_sleep_ptr(qcom_geni_serial_sys_suspend),
1796 	.restore = pm_sleep_ptr(qcom_geni_serial_sys_hib_resume),
1797 	.thaw = pm_sleep_ptr(qcom_geni_serial_sys_hib_resume),
1798 };
1799 
1800 static const struct of_device_id qcom_geni_serial_match_table[] = {
1801 	{
1802 		.compatible = "qcom,geni-debug-uart",
1803 		.data = &qcom_geni_console_data,
1804 	},
1805 	{
1806 		.compatible = "qcom,geni-uart",
1807 		.data = &qcom_geni_uart_data,
1808 	},
1809 	{}
1810 };
1811 MODULE_DEVICE_TABLE(of, qcom_geni_serial_match_table);
1812 
1813 static struct platform_driver qcom_geni_serial_platform_driver = {
1814 	.remove = qcom_geni_serial_remove,
1815 	.probe = qcom_geni_serial_probe,
1816 	.driver = {
1817 		.name = "qcom_geni_serial",
1818 		.of_match_table = qcom_geni_serial_match_table,
1819 		.pm = &qcom_geni_serial_pm_ops,
1820 	},
1821 };
1822 
1823 static int __init qcom_geni_serial_init(void)
1824 {
1825 	int ret;
1826 
1827 	ret = console_register(&qcom_geni_console_driver);
1828 	if (ret)
1829 		return ret;
1830 
1831 	ret = uart_register_driver(&qcom_geni_uart_driver);
1832 	if (ret) {
1833 		console_unregister(&qcom_geni_console_driver);
1834 		return ret;
1835 	}
1836 
1837 	ret = platform_driver_register(&qcom_geni_serial_platform_driver);
1838 	if (ret) {
1839 		console_unregister(&qcom_geni_console_driver);
1840 		uart_unregister_driver(&qcom_geni_uart_driver);
1841 	}
1842 	return ret;
1843 }
1844 module_init(qcom_geni_serial_init);
1845 
1846 static void __exit qcom_geni_serial_exit(void)
1847 {
1848 	platform_driver_unregister(&qcom_geni_serial_platform_driver);
1849 	console_unregister(&qcom_geni_console_driver);
1850 	uart_unregister_driver(&qcom_geni_uart_driver);
1851 }
1852 module_exit(qcom_geni_serial_exit);
1853 
1854 MODULE_DESCRIPTION("Serial driver for GENI based QUP cores");
1855 MODULE_LICENSE("GPL v2");
1856