All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/3] rockchip: pinctrl: rk3399: Add support for UART3.
@ 2019-05-07  8:58 Christoph Muellner
  2019-05-07  8:58 ` [U-Boot] [PATCH 2/3] rockchip: rk3399: Add option to print on UART3 Christoph Muellner
                   ` (3 more replies)
  0 siblings, 4 replies; 12+ messages in thread
From: Christoph Muellner @ 2019-05-07  8:58 UTC (permalink / raw)
  To: u-boot

This patch adds the missing GRF bit definitions for UART3 on the RK3399.

Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
---

 arch/arm/include/asm/arch-rockchip/grf_rk3399.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/arm/include/asm/arch-rockchip/grf_rk3399.h b/arch/arm/include/asm/arch-rockchip/grf_rk3399.h
index b32c7d56c5..dd89cd2050 100644
--- a/arch/arm/include/asm/arch-rockchip/grf_rk3399.h
+++ b/arch/arm/include/asm/arch-rockchip/grf_rk3399.h
@@ -423,6 +423,10 @@ enum {
 	GRF_GPIO3B6_SEL_SHIFT   = 12,
 	GRF_GPIO3B6_SEL_MASK    = 3 << GRF_GPIO3B6_SEL_SHIFT,
 	GRF_MAC_RXCLK           = 1,
+	GRF_UART3_SIN           = 2,
+	GRF_GPIO3B7_SEL_SHIFT   = 14,
+	GRF_GPIO3B7_SEL_MASK    = 3 << GRF_GPIO3B7_SEL_SHIFT,
+	GRF_UART3_SOUT          = 2,
 
 	/* GRF_GPIO3C_IOMUX */
 	GRF_GPIO3C1_SEL_SHIFT	= 2,
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [U-Boot] [PATCH 2/3] rockchip: rk3399: Add option to print on UART3.
  2019-05-07  8:58 [U-Boot] [PATCH 1/3] rockchip: pinctrl: rk3399: Add support for UART3 Christoph Muellner
@ 2019-05-07  8:58 ` Christoph Muellner
  2019-05-18 16:07   ` Simon Glass
  2019-05-27  6:47   ` Kever Yang
  2019-05-07  8:58 ` [U-Boot] [PATCH 3/3] rockchip: clk: rk3399: allow requests for all UART clocks Christoph Muellner
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 12+ messages in thread
From: Christoph Muellner @ 2019-05-07  8:58 UTC (permalink / raw)
  To: u-boot

The RK3399 SPL does not use a pinctrl driver to setup the UART pins.
Instead it works based on config macros, which set the base address
of the actual UART block.

Currently the RK3399 SPL support UART0 and UART2.
This patch adds UART3 in the same way as UART0.

Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
---

 arch/arm/mach-rockchip/rk3399/rk3399.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/arm/mach-rockchip/rk3399/rk3399.c b/arch/arm/mach-rockchip/rk3399/rk3399.c
index a7ccd4f3ed..e1f9f8b8ef 100644
--- a/arch/arm/mach-rockchip/rk3399/rk3399.c
+++ b/arch/arm/mach-rockchip/rk3399/rk3399.c
@@ -80,6 +80,14 @@ void board_debug_uart_init(void)
 	rk_clrsetreg(&grf->gpio2c_iomux,
 		     GRF_GPIO2C1_SEL_MASK,
 		     GRF_UART0BT_SOUT << GRF_GPIO2C1_SEL_SHIFT);
+#elif defined(CONFIG_DEBUG_UART_BASE) && (CONFIG_DEBUG_UART_BASE == 0xff1B0000)
+	/* Enable early UART3 on the RK3399 */
+	rk_clrsetreg(&grf->gpio3b_iomux,
+		     GRF_GPIO3B6_SEL_MASK,
+		     GRF_UART3_SIN << GRF_GPIO3B6_SEL_SHIFT);
+	rk_clrsetreg(&grf->gpio3b_iomux,
+		     GRF_GPIO3B7_SEL_MASK,
+		     GRF_UART3_SOUT << GRF_GPIO3B7_SEL_SHIFT);
 #else
 # ifdef CONFIG_TARGET_CHROMEBOOK_BOB
 	rk_setreg(&grf->io_vsel, 1 << 0);
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [U-Boot] [PATCH 3/3] rockchip: clk: rk3399: allow requests for all UART clocks
  2019-05-07  8:58 [U-Boot] [PATCH 1/3] rockchip: pinctrl: rk3399: Add support for UART3 Christoph Muellner
  2019-05-07  8:58 ` [U-Boot] [PATCH 2/3] rockchip: rk3399: Add option to print on UART3 Christoph Muellner
@ 2019-05-07  8:58 ` Christoph Muellner
  2019-05-18 16:07   ` Simon Glass
  2019-05-27  6:48   ` Kever Yang
  2019-05-18 16:07 ` [U-Boot] [PATCH 1/3] rockchip: pinctrl: rk3399: Add support for UART3 Simon Glass
  2019-05-27  6:47 ` Kever Yang
  3 siblings, 2 replies; 12+ messages in thread
From: Christoph Muellner @ 2019-05-07  8:58 UTC (permalink / raw)
  To: u-boot

This patch adds the rate for UART1 and UART3 the same way
as already implemented for UART0 and UART2.

This is required for boards, which have their console output
on these UARTs.

Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
---

 drivers/clk/rockchip/clk_rk3399.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/clk/rockchip/clk_rk3399.c b/drivers/clk/rockchip/clk_rk3399.c
index 93a652e5ff..aa6a8ad1c9 100644
--- a/drivers/clk/rockchip/clk_rk3399.c
+++ b/drivers/clk/rockchip/clk_rk3399.c
@@ -912,7 +912,9 @@ static ulong rk3399_clk_get_rate(struct clk *clk)
 		rate = rk3399_spi_get_clk(priv->cru, clk->id);
 		break;
 	case SCLK_UART0:
+	case SCLK_UART1:
 	case SCLK_UART2:
+	case SCLK_UART3:
 		return 24000000;
 		break;
 	case PCLK_HDMI_CTRL:
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [U-Boot] [PATCH 2/3] rockchip: rk3399: Add option to print on UART3.
  2019-05-07  8:58 ` [U-Boot] [PATCH 2/3] rockchip: rk3399: Add option to print on UART3 Christoph Muellner
@ 2019-05-18 16:07   ` Simon Glass
  2019-05-27  6:47   ` Kever Yang
  1 sibling, 0 replies; 12+ messages in thread
From: Simon Glass @ 2019-05-18 16:07 UTC (permalink / raw)
  To: u-boot

On Tue, 7 May 2019 at 02:58, Christoph Muellner
<christoph.muellner@theobroma-systems.com> wrote:
>
> The RK3399 SPL does not use a pinctrl driver to setup the UART pins.
> Instead it works based on config macros, which set the base address
> of the actual UART block.
>
> Currently the RK3399 SPL support UART0 and UART2.
> This patch adds UART3 in the same way as UART0.
>
> Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
> ---
>
>  arch/arm/mach-rockchip/rk3399/rk3399.c | 8 ++++++++
>  1 file changed, 8 insertions(+)

Reviewed-by: Simon Glass <sjg@chromium.org>

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot] [PATCH 1/3] rockchip: pinctrl: rk3399: Add support for UART3.
  2019-05-07  8:58 [U-Boot] [PATCH 1/3] rockchip: pinctrl: rk3399: Add support for UART3 Christoph Muellner
  2019-05-07  8:58 ` [U-Boot] [PATCH 2/3] rockchip: rk3399: Add option to print on UART3 Christoph Muellner
  2019-05-07  8:58 ` [U-Boot] [PATCH 3/3] rockchip: clk: rk3399: allow requests for all UART clocks Christoph Muellner
@ 2019-05-18 16:07 ` Simon Glass
  2019-05-27  6:47 ` Kever Yang
  3 siblings, 0 replies; 12+ messages in thread
From: Simon Glass @ 2019-05-18 16:07 UTC (permalink / raw)
  To: u-boot

On Tue, 7 May 2019 at 02:58, Christoph Muellner
<christoph.muellner@theobroma-systems.com> wrote:
>
> This patch adds the missing GRF bit definitions for UART3 on the RK3399.
>
> Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
> ---
>
>  arch/arm/include/asm/arch-rockchip/grf_rk3399.h | 4 ++++
>  1 file changed, 4 insertions(+)
>

Reviewed-by: Simon Glass <sjg@chromium.org>

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot] [PATCH 3/3] rockchip: clk: rk3399: allow requests for all UART clocks
  2019-05-07  8:58 ` [U-Boot] [PATCH 3/3] rockchip: clk: rk3399: allow requests for all UART clocks Christoph Muellner
@ 2019-05-18 16:07   ` Simon Glass
  2019-05-27  6:48   ` Kever Yang
  1 sibling, 0 replies; 12+ messages in thread
From: Simon Glass @ 2019-05-18 16:07 UTC (permalink / raw)
  To: u-boot

On Tue, 7 May 2019 at 02:58, Christoph Muellner
<christoph.muellner@theobroma-systems.com> wrote:
>
> This patch adds the rate for UART1 and UART3 the same way
> as already implemented for UART0 and UART2.
>
> This is required for boards, which have their console output
> on these UARTs.
>
> Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
> ---
>
>  drivers/clk/rockchip/clk_rk3399.c | 2 ++
>  1 file changed, 2 insertions(+)

Reviewed-by: Simon Glass <sjg@chromium.org>

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot] [PATCH 1/3] rockchip: pinctrl: rk3399: Add support for UART3.
  2019-05-07  8:58 [U-Boot] [PATCH 1/3] rockchip: pinctrl: rk3399: Add support for UART3 Christoph Muellner
                   ` (2 preceding siblings ...)
  2019-05-18 16:07 ` [U-Boot] [PATCH 1/3] rockchip: pinctrl: rk3399: Add support for UART3 Simon Glass
@ 2019-05-27  6:47 ` Kever Yang
  2019-06-01  2:37   ` Kever Yang
  3 siblings, 1 reply; 12+ messages in thread
From: Kever Yang @ 2019-05-27  6:47 UTC (permalink / raw)
  To: u-boot



On 05/07/2019 04:58 PM, Christoph Muellner wrote:
> This patch adds the missing GRF bit definitions for UART3 on the RK3399.
>
> Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>

Reviewed-by: Kever Yang <kever.yang@rock-chips.com>

Thanks,
- Kever
> ---
>
>  arch/arm/include/asm/arch-rockchip/grf_rk3399.h | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/arch/arm/include/asm/arch-rockchip/grf_rk3399.h b/arch/arm/include/asm/arch-rockchip/grf_rk3399.h
> index b32c7d56c5..dd89cd2050 100644
> --- a/arch/arm/include/asm/arch-rockchip/grf_rk3399.h
> +++ b/arch/arm/include/asm/arch-rockchip/grf_rk3399.h
> @@ -423,6 +423,10 @@ enum {
>  	GRF_GPIO3B6_SEL_SHIFT   = 12,
>  	GRF_GPIO3B6_SEL_MASK    = 3 << GRF_GPIO3B6_SEL_SHIFT,
>  	GRF_MAC_RXCLK           = 1,
> +	GRF_UART3_SIN           = 2,
> +	GRF_GPIO3B7_SEL_SHIFT   = 14,
> +	GRF_GPIO3B7_SEL_MASK    = 3 << GRF_GPIO3B7_SEL_SHIFT,
> +	GRF_UART3_SOUT          = 2,
>  
>  	/* GRF_GPIO3C_IOMUX */
>  	GRF_GPIO3C1_SEL_SHIFT	= 2,

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot] [PATCH 2/3] rockchip: rk3399: Add option to print on UART3.
  2019-05-07  8:58 ` [U-Boot] [PATCH 2/3] rockchip: rk3399: Add option to print on UART3 Christoph Muellner
  2019-05-18 16:07   ` Simon Glass
@ 2019-05-27  6:47   ` Kever Yang
  2019-06-01  2:37     ` Kever Yang
  1 sibling, 1 reply; 12+ messages in thread
From: Kever Yang @ 2019-05-27  6:47 UTC (permalink / raw)
  To: u-boot



On 05/07/2019 04:58 PM, Christoph Muellner wrote:
> The RK3399 SPL does not use a pinctrl driver to setup the UART pins.
> Instead it works based on config macros, which set the base address
> of the actual UART block.
>
> Currently the RK3399 SPL support UART0 and UART2.
> This patch adds UART3 in the same way as UART0.
>
> Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>

Reviewed-by: Kever Yang <kever.yang@rock-chips.com>

Thanks,
- Kever
> ---
>
>  arch/arm/mach-rockchip/rk3399/rk3399.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
>
> diff --git a/arch/arm/mach-rockchip/rk3399/rk3399.c b/arch/arm/mach-rockchip/rk3399/rk3399.c
> index a7ccd4f3ed..e1f9f8b8ef 100644
> --- a/arch/arm/mach-rockchip/rk3399/rk3399.c
> +++ b/arch/arm/mach-rockchip/rk3399/rk3399.c
> @@ -80,6 +80,14 @@ void board_debug_uart_init(void)
>  	rk_clrsetreg(&grf->gpio2c_iomux,
>  		     GRF_GPIO2C1_SEL_MASK,
>  		     GRF_UART0BT_SOUT << GRF_GPIO2C1_SEL_SHIFT);
> +#elif defined(CONFIG_DEBUG_UART_BASE) && (CONFIG_DEBUG_UART_BASE == 0xff1B0000)
> +	/* Enable early UART3 on the RK3399 */
> +	rk_clrsetreg(&grf->gpio3b_iomux,
> +		     GRF_GPIO3B6_SEL_MASK,
> +		     GRF_UART3_SIN << GRF_GPIO3B6_SEL_SHIFT);
> +	rk_clrsetreg(&grf->gpio3b_iomux,
> +		     GRF_GPIO3B7_SEL_MASK,
> +		     GRF_UART3_SOUT << GRF_GPIO3B7_SEL_SHIFT);
>  #else
>  # ifdef CONFIG_TARGET_CHROMEBOOK_BOB
>  	rk_setreg(&grf->io_vsel, 1 << 0);

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot] [PATCH 3/3] rockchip: clk: rk3399: allow requests for all UART clocks
  2019-05-07  8:58 ` [U-Boot] [PATCH 3/3] rockchip: clk: rk3399: allow requests for all UART clocks Christoph Muellner
  2019-05-18 16:07   ` Simon Glass
@ 2019-05-27  6:48   ` Kever Yang
  2019-06-01  2:37     ` Kever Yang
  1 sibling, 1 reply; 12+ messages in thread
From: Kever Yang @ 2019-05-27  6:48 UTC (permalink / raw)
  To: u-boot



On 05/07/2019 04:58 PM, Christoph Muellner wrote:
> This patch adds the rate for UART1 and UART3 the same way
> as already implemented for UART0 and UART2.
>
> This is required for boards, which have their console output
> on these UARTs.
>
> Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>

Reviewed-by: Kever Yang <kever.yang@rock-chips.com>

Thanks,
- Kever
> ---
>
>  drivers/clk/rockchip/clk_rk3399.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/drivers/clk/rockchip/clk_rk3399.c b/drivers/clk/rockchip/clk_rk3399.c
> index 93a652e5ff..aa6a8ad1c9 100644
> --- a/drivers/clk/rockchip/clk_rk3399.c
> +++ b/drivers/clk/rockchip/clk_rk3399.c
> @@ -912,7 +912,9 @@ static ulong rk3399_clk_get_rate(struct clk *clk)
>  		rate = rk3399_spi_get_clk(priv->cru, clk->id);
>  		break;
>  	case SCLK_UART0:
> +	case SCLK_UART1:
>  	case SCLK_UART2:
> +	case SCLK_UART3:
>  		return 24000000;
>  		break;
>  	case PCLK_HDMI_CTRL:

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot] [PATCH 1/3] rockchip: pinctrl: rk3399: Add support for UART3.
  2019-05-27  6:47 ` Kever Yang
@ 2019-06-01  2:37   ` Kever Yang
  0 siblings, 0 replies; 12+ messages in thread
From: Kever Yang @ 2019-06-01  2:37 UTC (permalink / raw)
  To: u-boot



On 05/27/2019 02:47 PM, Kever Yang wrote:
>
> On 05/07/2019 04:58 PM, Christoph Muellner wrote:
>> This patch adds the missing GRF bit definitions for UART3 on the RK3399.
>>
>> Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>

Applied to u-boot-rockchip/master, thanks!

>
> Thanks,
> - Kever
>> ---
>>
>>  arch/arm/include/asm/arch-rockchip/grf_rk3399.h | 4 ++++
>>  1 file changed, 4 insertions(+)
>>
>> diff --git a/arch/arm/include/asm/arch-rockchip/grf_rk3399.h b/arch/arm/include/asm/arch-rockchip/grf_rk3399.h
>> index b32c7d56c5..dd89cd2050 100644
>> --- a/arch/arm/include/asm/arch-rockchip/grf_rk3399.h
>> +++ b/arch/arm/include/asm/arch-rockchip/grf_rk3399.h
>> @@ -423,6 +423,10 @@ enum {
>>  	GRF_GPIO3B6_SEL_SHIFT   = 12,
>>  	GRF_GPIO3B6_SEL_MASK    = 3 << GRF_GPIO3B6_SEL_SHIFT,
>>  	GRF_MAC_RXCLK           = 1,
>> +	GRF_UART3_SIN           = 2,
>> +	GRF_GPIO3B7_SEL_SHIFT   = 14,
>> +	GRF_GPIO3B7_SEL_MASK    = 3 << GRF_GPIO3B7_SEL_SHIFT,
>> +	GRF_UART3_SOUT          = 2,
>>  
>>  	/* GRF_GPIO3C_IOMUX */
>>  	GRF_GPIO3C1_SEL_SHIFT	= 2,
>
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> https://lists.denx.de/listinfo/u-boot

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot] [PATCH 2/3] rockchip: rk3399: Add option to print on UART3.
  2019-05-27  6:47   ` Kever Yang
@ 2019-06-01  2:37     ` Kever Yang
  0 siblings, 0 replies; 12+ messages in thread
From: Kever Yang @ 2019-06-01  2:37 UTC (permalink / raw)
  To: u-boot



On 05/27/2019 02:47 PM, Kever Yang wrote:
>
> On 05/07/2019 04:58 PM, Christoph Muellner wrote:
>> The RK3399 SPL does not use a pinctrl driver to setup the UART pins.
>> Instead it works based on config macros, which set the base address
>> of the actual UART block.
>>
>> Currently the RK3399 SPL support UART0 and UART2.
>> This patch adds UART3 in the same way as UART0.
>>
>> Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>

Applied to u-boot-rockchip/master, thanks!

>
> Thanks,
> - Kever
>> ---
>>
>>  arch/arm/mach-rockchip/rk3399/rk3399.c | 8 ++++++++
>>  1 file changed, 8 insertions(+)
>>
>> diff --git a/arch/arm/mach-rockchip/rk3399/rk3399.c b/arch/arm/mach-rockchip/rk3399/rk3399.c
>> index a7ccd4f3ed..e1f9f8b8ef 100644
>> --- a/arch/arm/mach-rockchip/rk3399/rk3399.c
>> +++ b/arch/arm/mach-rockchip/rk3399/rk3399.c
>> @@ -80,6 +80,14 @@ void board_debug_uart_init(void)
>>  	rk_clrsetreg(&grf->gpio2c_iomux,
>>  		     GRF_GPIO2C1_SEL_MASK,
>>  		     GRF_UART0BT_SOUT << GRF_GPIO2C1_SEL_SHIFT);
>> +#elif defined(CONFIG_DEBUG_UART_BASE) && (CONFIG_DEBUG_UART_BASE == 0xff1B0000)
>> +	/* Enable early UART3 on the RK3399 */
>> +	rk_clrsetreg(&grf->gpio3b_iomux,
>> +		     GRF_GPIO3B6_SEL_MASK,
>> +		     GRF_UART3_SIN << GRF_GPIO3B6_SEL_SHIFT);
>> +	rk_clrsetreg(&grf->gpio3b_iomux,
>> +		     GRF_GPIO3B7_SEL_MASK,
>> +		     GRF_UART3_SOUT << GRF_GPIO3B7_SEL_SHIFT);
>>  #else
>>  # ifdef CONFIG_TARGET_CHROMEBOOK_BOB
>>  	rk_setreg(&grf->io_vsel, 1 << 0);
>
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> https://lists.denx.de/listinfo/u-boot

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot] [PATCH 3/3] rockchip: clk: rk3399: allow requests for all UART clocks
  2019-05-27  6:48   ` Kever Yang
@ 2019-06-01  2:37     ` Kever Yang
  0 siblings, 0 replies; 12+ messages in thread
From: Kever Yang @ 2019-06-01  2:37 UTC (permalink / raw)
  To: u-boot



On 05/27/2019 02:48 PM, Kever Yang wrote:
>
> On 05/07/2019 04:58 PM, Christoph Muellner wrote:
>> This patch adds the rate for UART1 and UART3 the same way
>> as already implemented for UART0 and UART2.
>>
>> This is required for boards, which have their console output
>> on these UARTs.
>>
>> Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>

Applied to u-boot-rockchip/master, thanks!

>
> Thanks,
> - Kever
>> ---
>>
>>  drivers/clk/rockchip/clk_rk3399.c | 2 ++
>>  1 file changed, 2 insertions(+)
>>
>> diff --git a/drivers/clk/rockchip/clk_rk3399.c b/drivers/clk/rockchip/clk_rk3399.c
>> index 93a652e5ff..aa6a8ad1c9 100644
>> --- a/drivers/clk/rockchip/clk_rk3399.c
>> +++ b/drivers/clk/rockchip/clk_rk3399.c
>> @@ -912,7 +912,9 @@ static ulong rk3399_clk_get_rate(struct clk *clk)
>>  		rate = rk3399_spi_get_clk(priv->cru, clk->id);
>>  		break;
>>  	case SCLK_UART0:
>> +	case SCLK_UART1:
>>  	case SCLK_UART2:
>> +	case SCLK_UART3:
>>  		return 24000000;
>>  		break;
>>  	case PCLK_HDMI_CTRL:
>
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> https://lists.denx.de/listinfo/u-boot

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2019-06-01  2:37 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-07  8:58 [U-Boot] [PATCH 1/3] rockchip: pinctrl: rk3399: Add support for UART3 Christoph Muellner
2019-05-07  8:58 ` [U-Boot] [PATCH 2/3] rockchip: rk3399: Add option to print on UART3 Christoph Muellner
2019-05-18 16:07   ` Simon Glass
2019-05-27  6:47   ` Kever Yang
2019-06-01  2:37     ` Kever Yang
2019-05-07  8:58 ` [U-Boot] [PATCH 3/3] rockchip: clk: rk3399: allow requests for all UART clocks Christoph Muellner
2019-05-18 16:07   ` Simon Glass
2019-05-27  6:48   ` Kever Yang
2019-06-01  2:37     ` Kever Yang
2019-05-18 16:07 ` [U-Boot] [PATCH 1/3] rockchip: pinctrl: rk3399: Add support for UART3 Simon Glass
2019-05-27  6:47 ` Kever Yang
2019-06-01  2:37   ` Kever Yang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.