DistroKit Mailinglist
 help / color / mirror / Atom feed
From: "Leonard Göhrs" <l.goehrs@pengutronix.de>
To: Ahmad Fatoum <a.fatoum@pengutronix.de>,
	distrokit@pengutronix.de, Marco Felsch <m.felsch@pengutronix.de>
Subject: Re: [DistroKit] [PATCH v1 1/5] tf-a: add patch to auto-detect the correct UART on i.MX8M
Date: Tue, 16 Jan 2024 11:50:02 +0100	[thread overview]
Message-ID: <02dd393b-2737-4c16-8cdb-de3203a47256@pengutronix.de> (raw)
In-Reply-To: <1a1688bb-0ceb-467d-8dad-45a53005edf6@pengutronix.de>

Hi,

On 11.01.24 19:03, Ahmad Fatoum wrote:
> Hello Leonard,
> 
> On 11.01.24 16:01, Leonard Göhrs wrote:
>> diff --git a/configs/platform-v8a/platformconfig b/configs/platform-v8a/platformconfig
>> index b71b361..6925dac 100644
>> --- a/configs/platform-v8a/platformconfig
>> +++ b/configs/platform-v8a/platformconfig
>> @@ -216,7 +216,7 @@ PTXCONF_TF_A_ARM_ARCH_MAJOR_8=y
>>   PTXCONF_TF_A_ARM_ARCH_MAJOR=8
>>   PTXCONF_TF_A_PLATFORMS="imx8mq imx8mm imx8mn imx8mp"
>>   PTXCONF_TF_A_ARM_ARCH_MINOR=0
>> -PTXCONF_TF_A_EXTRA_ARGS=""
>> +PTXCONF_TF_A_EXTRA_ARGS="IMX_BOOT_UART_BASE=0"
> 
> Patches below add auto as alias for 0. I think that would be better as to be
> more descriptive.

I tried that, but it makes the build fail:


   --------------------
   target: tf-a.compile
   --------------------

   make: Entering directory '…/DistroKit/platform-v8a/build-target/tf-a-v2.8'
   Building imx8mq
     CC      lib/libc/abort.c
     …
     CC      plat/common/plat_bl_common.c
   plat/imx/imx8m/imx8mq/imx8mq_bl31_setup.c: In function 'bl31_early_platform_setup2':
   <command-line>: error: expected expression before 'auto'
   plat/imx/imx8m/imx8mq/imx8mq_bl31_setup.c:136:35: note: in expansion of macro 'IMX_BOOT_UART_BASE'
     136 |         console_imx_uart_register(IMX_BOOT_UART_BASE, IMX_BOOT_UART_CLK_IN_HZ,
         |                                   ^~~~~~~~~~~~~~~~~~
   plat/imx/imx8m/imx8mq/imx8mq_bl31_setup.c:136:9: error: too few arguments to function 'console_imx_uart_register'
     136 |         console_imx_uart_register(IMX_BOOT_UART_BASE, IMX_BOOT_UART_CLK_IN_HZ,
         |         ^~~~~~~~~~~~~~~~~~~~~~~~~
   In file included from plat/imx/imx8m/imx8mq/imx8mq_bl31_setup.c:26:
   plat/imx/common/include/imx_uart.h:14:5: note: declared here
      14 | int console_imx_uart_register(uintptr_t baseaddr, uint32_t clock, uint32_t baud,
         |     ^~~~~~~~~~~~~~~~~~~~~~~~~
   make: *** [Makefile:1347: …/DistroKit/platform-v8a/build-target/tf-a-v2.8/build/imx8mq/release/bl31/imx8mq_bl31_setup.o] Error 1
   make: *** Waiting for unfinished jobs....
   make: Leaving directory '…/DistroKit/platform-v8a/build-target/tf-a-v2.8'
   make: *** [/usr/lib/x86_64-linux-gnu/ptxdist/ptxdist-2023.12.0/rules/tf-a.make:81: …/DistroKit/platform-v8a/state/tf-a.compile] Error 2


I first dismissed it as some hickup between make and the override,
but the error is actually totally valid and the version with IMX_BOOT_UART_BASE=0
instead of IMX_BOOT_UART_BASE=auto would have silently broken support for i.MX8MQ,
because the automatic UART discovery is not implemented yet for that SoC.

@Marco: do you know why auto discovery was not implemented for i.MX8MQ along
with the others?

Leonard



  reply	other threads:[~2024-01-16 10:50 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-11 15:01 [DistroKit] [PATCH v1 0/5] v8a: imx8m: add i.MX8MP based TQ MBa8MPxL board Leonard Göhrs
2024-01-11 15:01 ` [DistroKit] [PATCH v1 1/5] tf-a: add patch to auto-detect the correct UART on i.MX8M Leonard Göhrs
2024-01-11 18:03   ` Ahmad Fatoum
2024-01-16 10:50     ` Leonard Göhrs [this message]
2024-01-16 11:08       ` Marco Felsch
2024-01-11 15:01 ` [DistroKit] [PATCH v1 2/5] v8a: images: imx8m: add barebox state partition Leonard Göhrs
2024-01-11 17:07   ` Jan Lübbe
2024-01-11 18:06     ` Ahmad Fatoum
2024-01-11 15:01 ` [DistroKit] [PATCH v1 3/5] v8a: imx8m: add i.MX8MP based TQ MBa8MPxL board Leonard Göhrs
2024-01-11 15:01 ` [DistroKit] [PATCH v1 4/5] v8a: imx8m: enable image generation for TQ MBa8MPxL Leonard Göhrs
2024-01-11 15:01 ` [DistroKit] [PATCH v1 5/5] v8a: imx8m: enable barebox state " Leonard Göhrs
2024-01-11 18:08   ` Ahmad Fatoum

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=02dd393b-2737-4c16-8cdb-de3203a47256@pengutronix.de \
    --to=l.goehrs@pengutronix.de \
    --cc=a.fatoum@pengutronix.de \
    --cc=distrokit@pengutronix.de \
    --cc=m.felsch@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox