public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Christoph Stoidner <C.Stoidner@phytec.de>
To: PHYTEC Upstream <upstream@lists.phytec.de>,
	Wadim Egorov <W.Egorov@phytec.de>,
	"u-boot@lists.denx.de" <u-boot@lists.denx.de>
Subject: Re: [Upstream] [PATCH v2 0/3] Add support for all variants of the phyCORE-i.MX93 SOM
Date: Thu, 14 Nov 2024 12:08:48 +0000	[thread overview]
Message-ID: <85a51489bcdfbdc9b232b8e71d8b14eae49492ae.camel@phytec.de> (raw)
In-Reply-To: <d4ad41bc-114d-457e-8c5b-58774fad91b6@phytec.de>



On Mi, 2024-11-13 at 20:47 +0100, Wadim Egorov wrote:
> 
> 
> Am 13.11.24 um 17:00 schrieb Christoph Stoidner:
> > The phyCORE-i.MX 93 is available in various variants (e.g.
> > different ram
> > sizes, eMMC HS400 yes/no). It's eeprom contains information which
> > features
> > the existing module supports.
> > 
> > Extend the existing board-code to support all the SOM variants. The
> > spl/u-boot
> > evaluates the eeprom information and enables supported features
> > accordingly.
> > The resulting spl and u-boot binary is able to boot each phyCORE-
> > i.MX 93 SOM
> > variant on each carrier board.
> > 
> > Changes in v2:
> > 
> > patch #1:
> > - remove multiple blank lines
> > - add update of 1GB ram timings to commit message
> > 
> > patch #2:
> > - encapsulate handling of feature flag VOLTAGE into own function
> > - move definition of enum phytec_imx93_ddr_eeprom_code into header
> > file
> > 
> > patch #3:
> > - just rename imx93-phyboard-segin_defconfig and add needed
> > CONFIGs,
> >    instead of creating an entirely new second defconfig
> 
> Don't forget to update the docs "Build U-Boot" chapter mentioning the
> new defconfig.

Good point, thanks! I will add that in the v3.

> 
> 
> > - remove wrong comment from imx93-phyboard-segin-u-boot.dtsi
> > - improve commit message
> > 
> > Christoph Stoidner (3):
> >    board: phytec: phycore-imx93: Add 2GB LPDDR4X RAM timings
> >    board: phytec: imx93: Add eeprom-based hardware introspection
> >    board: phytec: imx93: Add phyCORE-i.MX 93 support for all SOM
> > variants
> > 
> >   arch/arm/dts/imx93-phyboard-segin-u-boot.dtsi |  25 +-
> >   arch/arm/mach-imx/imx9/Kconfig                |   2 +
> >   arch/arm/mach-imx/imx9/soc.c                  |   2 +-
> >   board/phytec/common/Kconfig                   |   8 +
> >   board/phytec/common/Makefile                  |   1 +
> >   board/phytec/common/imx93_som_detection.c     | 111 +++
> >   board/phytec/common/imx93_som_detection.h     |  51 ++
> >   board/phytec/phycore_imx93/Kconfig            |  28 +
> >   board/phytec/phycore_imx93/MAINTAINERS        |   7 +-
> >   board/phytec/phycore_imx93/lpddr4_timing.c    | 793
> > ++++++++++++++++--
> >   board/phytec/phycore_imx93/phycore-imx93.c    |  51 ++
> >   board/phytec/phycore_imx93/spl.c              |  48 ++
> >   ...egin_defconfig => imx93-phycore_defconfig} |   4 +-
> >   13 files changed, 1064 insertions(+), 67 deletions(-)
> >   create mode 100644 board/phytec/common/imx93_som_detection.c
> >   create mode 100644 board/phytec/common/imx93_som_detection.h
> >   rename configs/{imx93-phyboard-segin_defconfig => imx93-
> > phycore_defconfig} (98%)
> > 
> 

      reply	other threads:[~2024-11-14 12:08 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-13 16:00 [PATCH v2 0/3] Add support for all variants of the phyCORE-i.MX93 SOM Christoph Stoidner
2024-11-13 16:00 ` [PATCH v2 1/3] board: phytec: phycore-imx93: Add 2GB LPDDR4X RAM timings Christoph Stoidner
2024-11-13 16:00 ` [PATCH v2 2/3] board: phytec: imx93: Add eeprom-based hardware introspection Christoph Stoidner
2024-11-13 18:29   ` Fabio Estevam
2024-11-13 19:50     ` Wadim Egorov
2024-11-14 11:31     ` Christoph Stoidner
2024-11-13 19:42   ` Wadim Egorov
2024-11-14 15:21     ` Christoph Stoidner
2024-11-14  6:30   ` Yannic Moog
2024-11-19 16:45     ` Christoph Stoidner
2024-11-20  8:08       ` Yannic Moog
2024-11-14  8:37   ` Primoz Fiser
2024-11-19  9:35     ` Christoph Stoidner
2024-11-13 16:00 ` [PATCH v2 3/3] board: phytec: imx93: Add phyCORE-i.MX 93 support for all SOM variants Christoph Stoidner
2024-11-13 19:17   ` Wadim Egorov
2024-11-14  6:37   ` Yannic Moog
2024-11-14 11:48     ` Christoph Stoidner
2024-11-14 13:27       ` Yannic Moog
2024-11-14 13:46         ` Wadim Egorov
2024-11-19  9:44         ` Christoph Stoidner
2024-11-14  8:39   ` Primoz Fiser
2024-11-19  9:32     ` Christoph Stoidner
2024-11-13 19:47 ` [Upstream] [PATCH v2 0/3] Add support for all variants of the phyCORE-i.MX93 SOM Wadim Egorov
2024-11-14 12:08   ` Christoph Stoidner [this message]

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=85a51489bcdfbdc9b232b8e71d8b14eae49492ae.camel@phytec.de \
    --to=c.stoidner@phytec.de \
    --cc=W.Egorov@phytec.de \
    --cc=u-boot@lists.denx.de \
    --cc=upstream@lists.phytec.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