Re: [PATCH] ARM: phytec-phycard-imx27: Add debug UART support

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Some background on that patch:

I've tried to get barebox master compiled with OSELAS 2018 running on a
phycard-imx27. I had a few problems with that:

It turned out, that I can boot the resulting image as a seconds stage (from an
older version of barebox), after commenting out pca100_usb_init(). I suppose
that is not a real problem, but probably related to some clock setup that
barebox master does somewhere during early boot (which I suppose, is skipped
when booting it as 2nd stage).

However, when flashing the resulting image to NAND, there seems to be a bigger
issue somewhere during early boot. This problem does not exist when compiling
barebox master with OSELAS 2016.

The result is that I do not see anything on the console. The imx27 also does not
seem to enter bootstrap mode though.

Further I found out that with CONSOLE_PBL, barebox also has issues somewhere
during early boot. It breaks either after calling pbl_set_putc(), or even
without calling pbl_set_putc(), when I increase the compile and default
loglevel.

So I tested the patch with the OSELAS 2016-Toolchain, without CONSOLE_PBL and it
worked. No success so far with the OSELAS 2018-Toolchain (to be clear: the patch
does not break barebox in that case, barebox is broken without the patch as well).

Am Donnerstag, den 23.08.2018, 11:58 +0200 schrieb Florian Bäuerle:
> Signed-off-by: Florian Bäuerle <florian.baeuerle@xxxxxxxxxxxx>
> ---
>  arch/arm/boards/phytec-phycard-imx27/lowlevel.c | 15 +++++++++++++++
>  arch/arm/mach-imx/include/mach/debug_ll.h       | 13 +++++++++++++
>  include/serial/imx-uart.h                       |  5 +++++
>  3 files changed, 33 insertions(+)
> 
> diff --git a/arch/arm/boards/phytec-phycard-imx27/lowlevel.c b/arch/arm/boards/phytec-phycard-imx27/lowlevel.c
> index e1132e0..8244337 100644
> --- a/arch/arm/boards/phytec-phycard-imx27/lowlevel.c
> +++ b/arch/arm/boards/phytec-phycard-imx27/lowlevel.c
> @@ -14,6 +14,8 @@
>  #include <mach/imx-pll.h>
>  #include <mach/esdctl.h>
>  #include <mach/imx-nand.h>
> +#include <mach/debug_ll.h>
> +#include <serial/imx-uart.h>
>  
>  #define ESDCTL0_VAL (ESDCTL0_SDE | ESDCTL0_ROW13 | ESDCTL0_COL10)
>  
> @@ -58,6 +60,18 @@ static void sdram_init(void)
>  			MX27_ESDCTL_BASE_ADDR + IMX_ESDCTL0);
>  }
>  
> +static void setup_uart(void)
> +{
> +	/* Set PE[12-15] use, direction, function and pull-up */
> +	writel(0xfffc0f27, MX27_GPIO5_BASE_ADDR + 0x20);
> +	writel(0x00005000, MX27_GPIO5_BASE_ADDR);
> +	writel(0x00000000, MX27_GPIO5_BASE_ADDR + 0x38);
> +	writel(0xffff0fff, MX27_GPIO5_BASE_ADDR + 0x40);
> +
> +	imx27_ungate_all_peripherals();
> +	imx27_uart_setup_ll();
> +}
> +
>  void __bare_init __naked phytec_phycard_imx27_common_init(void *fdt)
>  {
>  	unsigned long r;
> @@ -97,6 +111,7 @@ void __bare_init __naked phytec_phycard_imx27_common_init(void *fdt)
>  		MX27_CSCR_MSHC_SEL, MX27_CCM_BASE_ADDR + MX27_CSCR);
>  
>  	sdram_init();
> +	setup_uart();
>  
>  	imx27_barebox_boot_nand_external(fdt);
>  }
> diff --git a/arch/arm/mach-imx/include/mach/debug_ll.h b/arch/arm/mach-imx/include/mach/debug_ll.h
> index 1550e05..6c9b21d 100644
> --- a/arch/arm/mach-imx/include/mach/debug_ll.h
> +++ b/arch/arm/mach-imx/include/mach/debug_ll.h
> @@ -56,6 +56,12 @@
>  #error "unknown i.MX debug uart soc type"
>  #endif
>  
> +static inline void imx27_uart_setup_ll(void)  {
> +	void *base = IOMEM(IMX_UART_BASE(IMX_DEBUG_SOC,
> +				CONFIG_DEBUG_IMX_UART_PORT));
> +	imx27_uart_setup(base);
> +}
> +
>  static inline void imx50_uart_setup_ll(void)
>  {
>  	void *base = IOMEM(IMX_UART_BASE(IMX_DEBUG_SOC, CONFIG_DEBUG_IMX_UART_PORT));
> @@ -121,6 +127,7 @@ static inline void PUTC_LL(int c)
>  
>  #else
>  
> +static inline void imx27_uart_setup_ll(void) {}
>  static inline void imx50_uart_setup_ll(void) {}
>  static inline void imx51_uart_setup_ll(void) {}
>  static inline void imx53_uart_setup_ll(void) {}
> @@ -138,6 +145,12 @@ static inline void imx_ungate_all_peripherals(void __iomem *ccmbase)
>  		writel(0xffffffff, ccmbase + i);
>  }
>  
> +static inline void imx27_ungate_all_peripherals(void)
> +{
> +	writel(0xfffffbff, IOMEM(MX27_CCM_BASE_ADDR) + 0x20);
> +	writel(0xfffffffc, IOMEM(MX27_CCM_BASE_ADDR) + 0x24);
> +}
> +
>  static inline void imx6_ungate_all_peripherals(void)
>  {
>  	imx_ungate_all_peripherals(IOMEM(MX6_CCM_BASE_ADDR));
> diff --git a/include/serial/imx-uart.h b/include/serial/imx-uart.h
> index c236065..0c033c2 100644
> --- a/include/serial/imx-uart.h
> +++ b/include/serial/imx-uart.h
> @@ -155,6 +155,11 @@ static inline void imx_uart_set_dte(void __iomem *uartbase)
>  	writel(ufcr, uartbase + UFCR);
>  }
>  
> +static inline void imx27_uart_setup(void __iomem *uartbase)
> +{
> +	imx_uart_setup(uartbase, 66500000);
> +}
> +
>  static inline void imx50_uart_setup(void __iomem *uartbase)
>  {
>  	imx_uart_setup(uartbase, 66666666);
_______________________________________________
barebox mailing list
barebox@xxxxxxxxxxxxxxxxxxx
http://lists.infradead.org/mailman/listinfo/barebox




[Index of Archives]     [Linux Embedded]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [XFree86]

  Powered by Linux