summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJyothi Kumar Seerapu <quic_jseerapu@quicinc.com>2025-05-23 16:07:21 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2025-06-19 13:24:07 +0200
commit341a22fa056ddc01341b5e2a1ca0dbe61fbdb1ea (patch)
treedd2f1c1d34304288a7e19a5bd667c9332da9f51f
parent20ca8be9ad2e05015833b07f4325a398e614cf15 (diff)
serial: qcom-geni: Add support for 8 Mbps baud rate
Current GENI UART driver supports Max Baud rate up to 4 Mbps. Add support to increase maximum baud rate to 8 Mbps. Signed-off-by: Jyothi Kumar Seerapu <quic_jseerapu@quicinc.com> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Link: https://lore.kernel.org/r/20250523103721.5042-1-quic_jseerapu@quicinc.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/tty/serial/qcom_geni_serial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/qcom_geni_serial.c b/drivers/tty/serial/qcom_geni_serial.c
index 0293b6210aa6..8ba6df8abd4d 100644
--- a/drivers/tty/serial/qcom_geni_serial.c
+++ b/drivers/tty/serial/qcom_geni_serial.c
@@ -1303,7 +1303,7 @@ static void qcom_geni_serial_set_termios(struct uart_port *uport,
unsigned long timeout;
/* baud rate */
- baud = uart_get_baud_rate(uport, termios, old, 300, 4000000);
+ baud = uart_get_baud_rate(uport, termios, old, 300, 8000000);
sampling_rate = UART_OVERSAMPLING;
/* Sampling rate is halved for IP versions >= 2.5 */