diff mbox series

serial: Setup serial base and freq for zynq/zynqmp

Message ID ce93efd3ed67aa6390810ce0b79e0d00e7c36b4b.1652871485.git.michal.simek@amd.com
State Accepted
Commit ad55d99e3cc3aabdb1c167b7b63e64a26a458225
Delegated to: Michal Simek
Headers show
Series serial: Setup serial base and freq for zynq/zynqmp | expand

Commit Message

Michal Simek May 18, 2022, 10:58 a.m. UTC
Setup default values for debug console, base address and frequency.

Signed-off-by: Michal Simek <michal.simek@amd.com>
---

 drivers/serial/Kconfig | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Michal Simek June 6, 2022, 7:38 a.m. UTC | #1
st 18. 5. 2022 v 12:58 odesílatel Michal Simek <monstr@monstr.eu> napsal:
>
> Setup default values for debug console, base address and frequency.
>
> Signed-off-by: Michal Simek <michal.simek@amd.com>
> ---
>
>  drivers/serial/Kconfig | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig
> index 26fa498bbbb7..f9db7860750b 100644
> --- a/drivers/serial/Kconfig
> +++ b/drivers/serial/Kconfig
> @@ -502,6 +502,8 @@ config DEBUG_UART_BASE
>         depends on DEBUG_UART
>         default 0 if DEBUG_SBI_CONSOLE
>         default 0 if DEBUG_UART_SANDBOX
> +       default 0xff000000 if DEBUG_UART_ZYNQ && ARCH_ZYNQMP
> +       default 0xe0000000 if DEBUG_UART_ZYNQ && ARCH_ZYNQ
>         help
>           This is the base address of your UART for memory-mapped UARTs.
>
> @@ -514,6 +516,8 @@ config DEBUG_UART_CLOCK
>         default 0 if DEBUG_SBI_CONSOLE
>         default 0 if DEBUG_UART_SANDBOX
>         default 0 if DEBUG_MVEBU_A3700_UART
> +       default 100000000 if DEBUG_UART_ZYNQ && ARCH_ZYNQMP
> +       default 50000000 if DEBUG_UART_ZYNQ && ARCH_ZYNQ
>         help
>           The UART input clock determines the speed of the internal UART
>           circuitry. The baud rate is derived from this by dividing the input
> --
> 2.36.0
>

Applied.
M
diff mbox series

Patch

diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig
index 26fa498bbbb7..f9db7860750b 100644
--- a/drivers/serial/Kconfig
+++ b/drivers/serial/Kconfig
@@ -502,6 +502,8 @@  config DEBUG_UART_BASE
 	depends on DEBUG_UART
 	default 0 if DEBUG_SBI_CONSOLE
 	default 0 if DEBUG_UART_SANDBOX
+	default 0xff000000 if DEBUG_UART_ZYNQ && ARCH_ZYNQMP
+	default 0xe0000000 if DEBUG_UART_ZYNQ && ARCH_ZYNQ
 	help
 	  This is the base address of your UART for memory-mapped UARTs.
 
@@ -514,6 +516,8 @@  config DEBUG_UART_CLOCK
 	default 0 if DEBUG_SBI_CONSOLE
 	default 0 if DEBUG_UART_SANDBOX
 	default 0 if DEBUG_MVEBU_A3700_UART
+	default 100000000 if DEBUG_UART_ZYNQ && ARCH_ZYNQMP
+	default 50000000 if DEBUG_UART_ZYNQ && ARCH_ZYNQ
 	help
 	  The UART input clock determines the speed of the internal UART
 	  circuitry. The baud rate is derived from this by dividing the input