All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stefano Babic <sbabic@denx.de>
To: Frieder Schrempf <frieder.schrempf@kontron.de>,
	Stefano Babic <sbabic@denx.de>
Cc: Heiko Thiery <heiko.thiery@gmail.com>,
	Michael Walle <michael@walle.cc>, Tom Rini <trini@konsulko.com>,
	Priyanka Jain <priyanka.jain@nxp.com>,
	Fabio Estevam <festevam@gmail.com>,
	Frieder Schrempf <frieder@fris.de>,
	u-boot@lists.denx.de, uboot-imx@nxp.com
Subject: Re: [PATCH v6 0/2] Support for Kontron Electronics i.MX6UL/ULL and i.MX8MM SoMs
Date: Wed, 6 Oct 2021 23:34:12 +0200	[thread overview]
Message-ID: <68d217c4-11f8-b9d6-b945-3a86675ab983@denx.de> (raw)
In-Reply-To: <d95a2299-66f6-edc4-fc00-d654ddf089e5@kontron.de>

Hi Frieder,

On 30.09.21 15:16, Frieder Schrempf wrote:
> Hi Stefano,
> 
> On 29.09.21 16:42, Frieder Schrempf wrote:
>> From: Frieder Schrempf <frieder.schrempf@kontron.de>
>>
>> This a patchset to upstream the support for the SL i.MX6UL, SL i.MX6ULL and
>> SL i.MX8MM families of SoMs and matching evaluation boards by Kontron
>> Electronics.
>>
>> The first patch adds the i.MX6UL/ULL hardware and the second patch the i.MX8MM
>> hardware.
>>
>> Changes in v3:
> 
> side note:   ^ this should be v6 not v3.
> 
>>    * Drop doc preparation patch as Michael picked it up in his series
>>    * Fixes and support for standard distro support for SL/BL i.MX8MM by Heiko (thanks!)
> 
> some weeks ago you picked up a previous version of this set in your
> tree, but it didn't get merged. Meanwhile there have been additional
> iterations and this v6 is now the latest. Can you pick this up for merging?
> 

I get some warnings building the SL i.MX6UL (because something was moved 
into Kconfig). I fixed myself with the following small changes:

diff --git a/configs/kontron-sl-mx6ul_defconfig 
b/configs/kontron-sl-mx6ul_defconfig
index 23d1df7fa9..28b5d0d671 100644
--- a/configs/kontron-sl-mx6ul_defconfig
+++ b/configs/kontron-sl-mx6ul_defconfig
@@ -12,6 +12,7 @@ CONFIG_ENV_OFFSET=0xF0000
  CONFIG_ENV_SECT_SIZE=0x10000
  CONFIG_MX6UL=y
  CONFIG_TARGET_KONTRON_MX6UL=y
+CONFIG_SYS_MALLOC_LEN=0x4000000
  CONFIG_DM_GPIO=y
  CONFIG_DEFAULT_DEVICE_TREE="imx6ul-kontron-n631x-s"
  CONFIG_SPL_TEXT_BASE=0x00908000
@@ -26,7 +27,7 @@ CONFIG_FIT=y
  CONFIG_SPL_LOAD_FIT=y
  # CONFIG_USE_SPL_FIT_GENERATOR is not set
  CONFIG_OF_BOARD_SETUP=y
-CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=arch/arm/mach-imx/spl_sd.cfg"
+CONFIG_IMX_CONFIG="arch/arm/mach-imx/spl_sd.cfg"
  CONFIG_SYS_CONSOLE_IS_IN_ENV=y
  CONFIG_BOARD_TYPES=y
  CONFIG_BOARD_EARLY_INIT_F=y
diff --git a/include/configs/kontron-sl-mx6ul.h 
b/include/configs/kontron-sl-mx6ul.h
index f2774d5e61..65aa250894 100644
--- a/include/configs/kontron-sl-mx6ul.h
+++ b/include/configs/kontron-sl-mx6ul.h
@@ -22,7 +22,6 @@
  #define CONFIG_SYS_INIT_RAM_ADDR	IRAM_BASE_ADDR
  #define CONFIG_SYS_INIT_RAM_SIZE	IRAM_SIZE

-#define CONFIG_SYS_MALLOC_LEN		SZ_64M
  #define CONFIG_SYS_HZ			1000

  #define CONFIG_SYS_INIT_SP_OFFSET \

Regards,
Stefano

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic@denx.de
=====================================================================

  parent reply	other threads:[~2021-10-06 21:34 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-29 14:42 [PATCH v6 0/2] Support for Kontron Electronics i.MX6UL/ULL and i.MX8MM SoMs Frieder Schrempf
2021-09-29 14:42 ` [PATCH v6 1/2] imx: imx6ul: Add support for Kontron Electronics SL/BL i.MX6UL/ULL boards (N63xx/N64xx) Frieder Schrempf
2021-10-07 14:14   ` sbabic
2021-09-29 14:42 ` [PATCH v6 2/2] imx: imx8mm: Add support for Kontron Electronics SL/BL i.MX8M-Mini boards (N801x) Frieder Schrempf
2021-09-29 19:04   ` Heiko Thiery
2021-10-07 14:12   ` sbabic
2021-09-30 13:16 ` [PATCH v6 0/2] Support for Kontron Electronics i.MX6UL/ULL and i.MX8MM SoMs Frieder Schrempf
2021-09-30 13:33   ` Stefano Babic
2021-10-06 21:34   ` Stefano Babic [this message]
2021-10-07  6:38     ` Frieder Schrempf

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=68d217c4-11f8-b9d6-b945-3a86675ab983@denx.de \
    --to=sbabic@denx.de \
    --cc=festevam@gmail.com \
    --cc=frieder.schrempf@kontron.de \
    --cc=frieder@fris.de \
    --cc=heiko.thiery@gmail.com \
    --cc=michael@walle.cc \
    --cc=priyanka.jain@nxp.com \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    --cc=uboot-imx@nxp.com \
    /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 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.