1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
6 #include <linux/console.h>
7 #include <linux/mailbox_client.h>
8 #include <linux/module.h>
10 #include <linux/platform_device.h>
11 #include <linux/serial.h>
12 #include <linux/serial_core.h>
13 #include <linux/slab.h>
14 #include <linux/tty.h>
15 #include <linux/tty_flip.h>
17 #define TCU_MBOX_BYTE(i, x) ((x) << (i * 8))
18 #define TCU_MBOX_BYTE_V(x, i) (((x) >> (i * 8)) & 0xff)
19 #define TCU_MBOX_NUM_BYTES(x) ((x) << 24)
20 #define TCU_MBOX_NUM_BYTES_V(x) (((x) >> 24) & 0x3)
23 struct uart_driver driver;
24 #if IS_ENABLED(CONFIG_SERIAL_TEGRA_TCU_CONSOLE)
25 struct console console;
27 struct uart_port port;
29 struct mbox_client tx_client, rx_client;
30 struct mbox_chan *tx, *rx;
33 static unsigned int tegra_tcu_uart_tx_empty(struct uart_port *port)
38 static void tegra_tcu_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
42 static unsigned int tegra_tcu_uart_get_mctrl(struct uart_port *port)
47 static void tegra_tcu_uart_stop_tx(struct uart_port *port)
51 static void tegra_tcu_write_one(struct tegra_tcu *tcu, u32 value,
56 value |= TCU_MBOX_NUM_BYTES(count);
57 msg = (void *)(unsigned long)value;
58 mbox_send_message(tcu->tx, msg);
59 mbox_flush(tcu->tx, 1000);
62 static void tegra_tcu_write(struct tegra_tcu *tcu, const char *s,
65 unsigned int written = 0, i = 0;
66 bool insert_nl = false;
71 value |= TCU_MBOX_BYTE(written++, '\n');
74 } else if (s[i] == '\n') {
75 value |= TCU_MBOX_BYTE(written++, '\r');
78 value |= TCU_MBOX_BYTE(written++, s[i++]);
82 tegra_tcu_write_one(tcu, value, 3);
88 tegra_tcu_write_one(tcu, value, written);
91 static void tegra_tcu_uart_start_tx(struct uart_port *port)
93 struct tegra_tcu *tcu = port->private_data;
94 struct circ_buf *xmit = &port->state->xmit;
98 count = CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE);
102 tegra_tcu_write(tcu, &xmit->buf[xmit->tail], count);
103 uart_xmit_advance(port, count);
106 uart_write_wakeup(port);
109 static void tegra_tcu_uart_stop_rx(struct uart_port *port)
113 static void tegra_tcu_uart_break_ctl(struct uart_port *port, int ctl)
117 static int tegra_tcu_uart_startup(struct uart_port *port)
122 static void tegra_tcu_uart_shutdown(struct uart_port *port)
126 static void tegra_tcu_uart_set_termios(struct uart_port *port,
127 struct ktermios *new,
128 const struct ktermios *old)
132 static const struct uart_ops tegra_tcu_uart_ops = {
133 .tx_empty = tegra_tcu_uart_tx_empty,
134 .set_mctrl = tegra_tcu_uart_set_mctrl,
135 .get_mctrl = tegra_tcu_uart_get_mctrl,
136 .stop_tx = tegra_tcu_uart_stop_tx,
137 .start_tx = tegra_tcu_uart_start_tx,
138 .stop_rx = tegra_tcu_uart_stop_rx,
139 .break_ctl = tegra_tcu_uart_break_ctl,
140 .startup = tegra_tcu_uart_startup,
141 .shutdown = tegra_tcu_uart_shutdown,
142 .set_termios = tegra_tcu_uart_set_termios,
145 #if IS_ENABLED(CONFIG_SERIAL_TEGRA_TCU_CONSOLE)
146 static void tegra_tcu_console_write(struct console *cons, const char *s,
149 struct tegra_tcu *tcu = container_of(cons, struct tegra_tcu, console);
151 tegra_tcu_write(tcu, s, count);
154 static int tegra_tcu_console_setup(struct console *cons, char *options)
160 static void tegra_tcu_receive(struct mbox_client *cl, void *msg)
162 struct tegra_tcu *tcu = container_of(cl, struct tegra_tcu, rx_client);
163 struct tty_port *port = &tcu->port.state->port;
164 u32 value = (u32)(unsigned long)msg;
165 unsigned int num_bytes, i;
167 num_bytes = TCU_MBOX_NUM_BYTES_V(value);
169 for (i = 0; i < num_bytes; i++)
170 tty_insert_flip_char(port, TCU_MBOX_BYTE_V(value, i),
173 tty_flip_buffer_push(port);
176 static int tegra_tcu_probe(struct platform_device *pdev)
178 struct uart_port *port;
179 struct tegra_tcu *tcu;
182 tcu = devm_kzalloc(&pdev->dev, sizeof(*tcu), GFP_KERNEL);
186 tcu->tx_client.dev = &pdev->dev;
187 tcu->rx_client.dev = &pdev->dev;
188 tcu->rx_client.rx_callback = tegra_tcu_receive;
190 tcu->tx = mbox_request_channel_byname(&tcu->tx_client, "tx");
191 if (IS_ERR(tcu->tx)) {
192 err = PTR_ERR(tcu->tx);
193 dev_err(&pdev->dev, "failed to get tx mailbox: %d\n", err);
197 #if IS_ENABLED(CONFIG_SERIAL_TEGRA_TCU_CONSOLE)
198 /* setup the console */
199 strcpy(tcu->console.name, "ttyTCU");
200 tcu->console.device = uart_console_device;
201 tcu->console.flags = CON_PRINTBUFFER | CON_ANYTIME;
202 tcu->console.index = -1;
203 tcu->console.write = tegra_tcu_console_write;
204 tcu->console.setup = tegra_tcu_console_setup;
205 tcu->console.data = &tcu->driver;
208 /* setup the driver */
209 tcu->driver.owner = THIS_MODULE;
210 tcu->driver.driver_name = "tegra-tcu";
211 tcu->driver.dev_name = "ttyTCU";
212 #if IS_ENABLED(CONFIG_SERIAL_TEGRA_TCU_CONSOLE)
213 tcu->driver.cons = &tcu->console;
217 err = uart_register_driver(&tcu->driver);
219 dev_err(&pdev->dev, "failed to register UART driver: %d\n",
226 spin_lock_init(&port->lock);
227 port->dev = &pdev->dev;
228 port->type = PORT_TEGRA_TCU;
229 port->ops = &tegra_tcu_uart_ops;
231 port->iotype = UPIO_MEM;
232 port->flags = UPF_BOOT_AUTOCONF;
233 port->private_data = tcu;
235 err = uart_add_one_port(&tcu->driver, port);
237 dev_err(&pdev->dev, "failed to add UART port: %d\n", err);
238 goto unregister_uart;
242 * Request RX channel after creating port to ensure tcu->port
243 * is ready for any immediate incoming bytes.
245 tcu->rx = mbox_request_channel_byname(&tcu->rx_client, "rx");
246 if (IS_ERR(tcu->rx)) {
247 err = PTR_ERR(tcu->rx);
248 dev_err(&pdev->dev, "failed to get rx mailbox: %d\n", err);
249 goto remove_uart_port;
252 platform_set_drvdata(pdev, tcu);
253 #if IS_ENABLED(CONFIG_SERIAL_TEGRA_TCU_CONSOLE)
254 register_console(&tcu->console);
260 uart_remove_one_port(&tcu->driver, &tcu->port);
262 uart_unregister_driver(&tcu->driver);
264 mbox_free_channel(tcu->tx);
269 static int tegra_tcu_remove(struct platform_device *pdev)
271 struct tegra_tcu *tcu = platform_get_drvdata(pdev);
273 #if IS_ENABLED(CONFIG_SERIAL_TEGRA_TCU_CONSOLE)
274 unregister_console(&tcu->console);
276 mbox_free_channel(tcu->rx);
277 uart_remove_one_port(&tcu->driver, &tcu->port);
278 uart_unregister_driver(&tcu->driver);
279 mbox_free_channel(tcu->tx);
284 static const struct of_device_id tegra_tcu_match[] = {
285 { .compatible = "nvidia,tegra194-tcu" },
288 MODULE_DEVICE_TABLE(of, tegra_tcu_match);
290 static struct platform_driver tegra_tcu_driver = {
293 .of_match_table = tegra_tcu_match,
295 .probe = tegra_tcu_probe,
296 .remove = tegra_tcu_remove,
298 module_platform_driver(tegra_tcu_driver);
301 MODULE_LICENSE("GPL v2");
302 MODULE_DESCRIPTION("NVIDIA Tegra Combined UART driver");