1 // SPDX-License-Identifier: GPL-2.0+
3 * Serial Port driver for Tegra devices
5 * Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
8 #include <linux/acpi.h>
10 #include <linux/console.h>
11 #include <linux/delay.h>
13 #include <linux/module.h>
14 #include <linux/reset.h>
15 #include <linux/slab.h>
21 struct reset_control
*rst
;
25 static void tegra_uart_handle_break(struct uart_port
*p
)
27 unsigned int status
, tmout
= 10000;
30 status
= p
->serial_in(p
, UART_LSR
);
31 if (status
& (UART_LSR_FIFOE
| UART_LSR_BRK_ERROR_BITS
))
32 status
= p
->serial_in(p
, UART_RX
);
41 static int tegra_uart_probe(struct platform_device
*pdev
)
43 struct uart_8250_port port8250
;
44 struct tegra_uart
*uart
;
45 struct uart_port
*port
;
49 uart
= devm_kzalloc(&pdev
->dev
, sizeof(*uart
), GFP_KERNEL
);
53 memset(&port8250
, 0, sizeof(port8250
));
55 port
= &port8250
.port
;
56 spin_lock_init(&port
->lock
);
58 port
->flags
= UPF_SHARE_IRQ
| UPF_BOOT_AUTOCONF
| UPF_FIXED_PORT
|
60 port
->iotype
= UPIO_MEM32
;
62 port
->type
= PORT_TEGRA
;
63 port
->irqflags
|= IRQF_SHARED
;
64 port
->dev
= &pdev
->dev
;
65 port
->handle_break
= tegra_uart_handle_break
;
67 ret
= of_alias_get_id(pdev
->dev
.of_node
, "serial");
71 ret
= platform_get_irq(pdev
, 0);
77 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
81 port
->membase
= devm_ioremap(&pdev
->dev
, res
->start
,
86 port
->mapbase
= res
->start
;
87 port
->mapsize
= resource_size(res
);
89 uart
->rst
= devm_reset_control_get_optional_shared(&pdev
->dev
, NULL
);
90 if (IS_ERR(uart
->rst
))
91 return PTR_ERR(uart
->rst
);
93 if (device_property_read_u32(&pdev
->dev
, "clock-frequency",
95 uart
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
96 if (IS_ERR(uart
->clk
)) {
97 dev_err(&pdev
->dev
, "failed to get clock!\n");
101 ret
= clk_prepare_enable(uart
->clk
);
105 port
->uartclk
= clk_get_rate(uart
->clk
);
108 ret
= reset_control_deassert(uart
->rst
);
112 ret
= serial8250_register_8250_port(&port8250
);
116 platform_set_drvdata(pdev
, uart
);
122 clk_disable_unprepare(uart
->clk
);
127 static int tegra_uart_remove(struct platform_device
*pdev
)
129 struct tegra_uart
*uart
= platform_get_drvdata(pdev
);
131 serial8250_unregister_port(uart
->line
);
132 reset_control_assert(uart
->rst
);
133 clk_disable_unprepare(uart
->clk
);
138 #ifdef CONFIG_PM_SLEEP
139 static int tegra_uart_suspend(struct device
*dev
)
141 struct tegra_uart
*uart
= dev_get_drvdata(dev
);
142 struct uart_8250_port
*port8250
= serial8250_get_port(uart
->line
);
143 struct uart_port
*port
= &port8250
->port
;
145 serial8250_suspend_port(uart
->line
);
147 if (!uart_console(port
) || console_suspend_enabled
)
148 clk_disable_unprepare(uart
->clk
);
153 static int tegra_uart_resume(struct device
*dev
)
155 struct tegra_uart
*uart
= dev_get_drvdata(dev
);
156 struct uart_8250_port
*port8250
= serial8250_get_port(uart
->line
);
157 struct uart_port
*port
= &port8250
->port
;
159 if (!uart_console(port
) || console_suspend_enabled
)
160 clk_prepare_enable(uart
->clk
);
162 serial8250_resume_port(uart
->line
);
168 static SIMPLE_DEV_PM_OPS(tegra_uart_pm_ops
, tegra_uart_suspend
,
171 static const struct of_device_id tegra_uart_of_match
[] = {
172 { .compatible
= "nvidia,tegra20-uart", },
175 MODULE_DEVICE_TABLE(of
, tegra_uart_of_match
);
177 static const struct acpi_device_id tegra_uart_acpi_match
[] = {
181 MODULE_DEVICE_TABLE(acpi
, tegra_uart_acpi_match
);
183 static struct platform_driver tegra_uart_driver
= {
185 .name
= "tegra-uart",
186 .pm
= &tegra_uart_pm_ops
,
187 .of_match_table
= tegra_uart_of_match
,
188 .acpi_match_table
= ACPI_PTR(tegra_uart_acpi_match
),
190 .probe
= tegra_uart_probe
,
191 .remove
= tegra_uart_remove
,
194 module_platform_driver(tegra_uart_driver
);
196 MODULE_AUTHOR("Jeff Brasen <jbrasen@nvidia.com>");
197 MODULE_DESCRIPTION("NVIDIA Tegra 8250 Driver");
198 MODULE_LICENSE("GPL v2");