serial: tegra: drop bogus NULL tty-port checks
[linux/fpc-iii.git] / drivers / tty / hvc / hvc_dcc.c
blob8e0edb7d93fdaff3243868a5a1da0f85c3ca5d94
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2010, 2014 The Linux Foundation. All rights reserved. */
4 #include <linux/console.h>
5 #include <linux/init.h>
6 #include <linux/serial.h>
7 #include <linux/serial_core.h>
9 #include <asm/dcc.h>
10 #include <asm/processor.h>
12 #include "hvc_console.h"
14 /* DCC Status Bits */
15 #define DCC_STATUS_RX (1 << 30)
16 #define DCC_STATUS_TX (1 << 29)
18 static void dcc_uart_console_putchar(struct uart_port *port, int ch)
20 while (__dcc_getstatus() & DCC_STATUS_TX)
21 cpu_relax();
23 __dcc_putchar(ch);
26 static void dcc_early_write(struct console *con, const char *s, unsigned n)
28 struct earlycon_device *dev = con->data;
30 uart_console_write(&dev->port, s, n, dcc_uart_console_putchar);
33 static int __init dcc_early_console_setup(struct earlycon_device *device,
34 const char *opt)
36 device->con->write = dcc_early_write;
38 return 0;
41 EARLYCON_DECLARE(dcc, dcc_early_console_setup);
43 static int hvc_dcc_put_chars(uint32_t vt, const char *buf, int count)
45 int i;
47 for (i = 0; i < count; i++) {
48 while (__dcc_getstatus() & DCC_STATUS_TX)
49 cpu_relax();
51 __dcc_putchar(buf[i]);
54 return count;
57 static int hvc_dcc_get_chars(uint32_t vt, char *buf, int count)
59 int i;
61 for (i = 0; i < count; ++i)
62 if (__dcc_getstatus() & DCC_STATUS_RX)
63 buf[i] = __dcc_getchar();
64 else
65 break;
67 return i;
70 static bool hvc_dcc_check(void)
72 unsigned long time = jiffies + (HZ / 10);
74 /* Write a test character to check if it is handled */
75 __dcc_putchar('\n');
77 while (time_is_after_jiffies(time)) {
78 if (!(__dcc_getstatus() & DCC_STATUS_TX))
79 return true;
82 return false;
85 static const struct hv_ops hvc_dcc_get_put_ops = {
86 .get_chars = hvc_dcc_get_chars,
87 .put_chars = hvc_dcc_put_chars,
90 static int __init hvc_dcc_console_init(void)
92 int ret;
94 if (!hvc_dcc_check())
95 return -ENODEV;
97 /* Returns -1 if error */
98 ret = hvc_instantiate(0, 0, &hvc_dcc_get_put_ops);
100 return ret < 0 ? -ENODEV : 0;
102 console_initcall(hvc_dcc_console_init);
104 static int __init hvc_dcc_init(void)
106 struct hvc_struct *p;
108 if (!hvc_dcc_check())
109 return -ENODEV;
111 p = hvc_alloc(0, 0, &hvc_dcc_get_put_ops, 128);
113 return PTR_ERR_OR_ZERO(p);
115 device_initcall(hvc_dcc_init);