Re: [U-Boot] [PATCH 2/3] rockchip: rk3399: Add option to print on UART3.

2019-05-31 Thread Kever Yang
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 SP

Re: [U-Boot] [PATCH 2/3] rockchip: rk3399: Add option to print on UART3.

2019-05-26 Thread Kever Yang
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

Re: [U-Boot] [PATCH 2/3] rockchip: rk3399: Add option to print on UART3.

2019-05-18 Thread Simon Glass
On Tue, 7 May 2019 at 02:58, 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

[U-Boot] [PATCH 2/3] rockchip: rk3399: Add option to print on UART3.

2019-05-07 Thread Christoph Muellner
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 -