]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
serial: msm: add debug UART
authorCaleb Connolly <caleb.connolly@linaro.org>
Mon, 26 Feb 2024 17:26:11 +0000 (17:26 +0000)
committerCaleb Connolly <caleb.connolly@linaro.org>
Fri, 1 Mar 2024 14:44:35 +0000 (14:44 +0000)
Introduce support for early debugging. This relies on the previous stage
bootloader to initialise the UART clocks, when running with U-Boot as
the primary bootloader this feature doesn't work. It will require a way
to configure the clocks before the driver model is available.

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Reviewed-by: Sumit Garg <sumit.garg@linaro.org>
Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
drivers/serial/Kconfig
drivers/serial/serial_msm.c

index 26460c4e0cab6116a3a79e6a6ab0a7029107d0b9..fbd351a47859af6a1adb353703774808386f9f13 100644 (file)
@@ -319,6 +319,14 @@ config DEBUG_UART_S5P
          will need to provide parameters to make this work. The driver will
          be available until the real driver-model serial is running.
 
+config DEBUG_UART_MSM
+       bool "Qualcomm QUP UART debug"
+       depends on ARCH_SNAPDRAGON
+       help
+         Select this to enable a debug UART using the serial_msm driver. You
+         will need to provide parameters to make this work. The driver will
+         be available until the real driver-model serial is running.
+
 config DEBUG_UART_MSM_GENI
        bool "Qualcomm snapdragon"
        depends on ARCH_SNAPDRAGON
index f4d96313b93114e51cda1c8f852e040990b914cd..44b93bd7ff2143591a3d81d586361144ad3b8a4d 100644 (file)
@@ -252,3 +252,40 @@ U_BOOT_DRIVER(serial_msm) = {
        .probe = msm_serial_probe,
        .ops    = &msm_serial_ops,
 };
+
+#ifdef CONFIG_DEBUG_UART_MSM
+
+static struct msm_serial_data init_serial_data = {
+       .base = CONFIG_VAL(DEBUG_UART_BASE),
+       .clk_rate = 7372800,
+};
+
+#include <debug_uart.h>
+
+/* Uncomment to turn on UART clocks when debugging U-Boot as aboot on MSM8916 */
+//int apq8016_clk_init_uart(phys_addr_t gcc_base);
+
+static inline void _debug_uart_init(void)
+{
+       /* Uncomment to turn on UART clocks when debugging U-Boot as aboot on MSM8916 */
+       //apq8016_clk_init_uart(0x1800000);
+       uart_dm_init(&init_serial_data);
+}
+
+static inline void _debug_uart_putc(int ch)
+{
+       struct msm_serial_data *priv = &init_serial_data;
+
+       while (!(readl(priv->base + UARTDM_SR) & UARTDM_SR_TX_EMPTY) &&
+              !(readl(priv->base + UARTDM_ISR) & UARTDM_ISR_TX_READY))
+               ;
+
+       writel(UARTDM_CR_CMD_RESET_TX_READY, priv->base + UARTDM_CR);
+
+       writel(1, priv->base + UARTDM_NCF_TX);
+       writel(ch, priv->base + UARTDM_TF);
+}
+
+DEBUG_UART_FUNCS
+
+#endif