From: Tim Harvey <tharvey@gateworks.com>
To: u-boot@lists.denx.de
Subject: [PATCH 0/4] Add Gateworks Venice board support
Date: Wed, 13 Jan 2021 09:00:21 -0800 [thread overview]
Message-ID: <1610557225-3822-1-git-send-email-tharvey@gateworks.com> (raw)
The Gateworks Venice product family consists of several boards based on
the i.MX 8M Mini SoC.
A challenge I've had with this is that the board model information is
stored in an I2C based EEPROM that must be read to know what PMIC is
on the board in order to adjust certain power rails before DRAM init
is called. I found this to be a challenge in the SPL as the SPL does
not free memory thus the conceprt of calling dm_uninit() followed by
dm_init_and_scan() to change dt's live in the SPL runs out of memory.
Therefore I can't rely on DT/DM within the SPL for things that may
differ board to board.
Best Regards,
Tim
Frieder Schrempf (1):
Respect that some compression algos can be enabled separately for SPL
Tim Harvey (3):
power: pmic: add driver for Monolithic Power mp5416
arm: dts: imx8mm: add Gateworks i.MX8 Mini Dev kits
board: gateworks: imx8mm: Add Gateworks Venice board support
arch/arm/dts/Makefile | 4 +
arch/arm/dts/imx8mm-venice-gw700x-u-boot.dtsi | 105 +
arch/arm/dts/imx8mm-venice-gw700x.dtsi | 495 +++++
arch/arm/dts/imx8mm-venice-gw71xx-0x-u-boot.dtsi | 5 +
arch/arm/dts/imx8mm-venice-gw71xx-0x.dts | 19 +
arch/arm/dts/imx8mm-venice-gw71xx.dtsi | 186 ++
arch/arm/dts/imx8mm-venice-gw72xx-0x-u-boot.dtsi | 5 +
arch/arm/dts/imx8mm-venice-gw72xx-0x.dts | 20 +
arch/arm/dts/imx8mm-venice-gw72xx.dtsi | 311 +++
arch/arm/dts/imx8mm-venice-gw73xx-0x-u-boot.dtsi | 5 +
arch/arm/dts/imx8mm-venice-gw73xx-0x.dts | 19 +
arch/arm/dts/imx8mm-venice-gw73xx.dtsi | 362 ++++
arch/arm/dts/imx8mm-venice-u-boot.dtsi | 103 +
arch/arm/dts/imx8mm-venice.dts | 152 ++
arch/arm/mach-imx/imx8m/Kconfig | 7 +
board/gateworks/venice/Kconfig | 13 +
board/gateworks/venice/MAINTAINERS | 7 +
board/gateworks/venice/Makefile | 12 +
board/gateworks/venice/README | 34 +
board/gateworks/venice/gsc.c | 687 ++++++
board/gateworks/venice/gsc.h | 54 +
board/gateworks/venice/imx8mm_venice.c | 133 ++
board/gateworks/venice/lpddr4_timing.c | 2505 ++++++++++++++++++++++
board/gateworks/venice/lpddr4_timing.h | 12 +
board/gateworks/venice/spl.c | 187 ++
common/image.c | 13 +-
configs/imx8mm_venice_defconfig | 113 +
drivers/power/pmic/Kconfig | 15 +
drivers/power/pmic/Makefile | 1 +
drivers/power/pmic/mp5416.c | 98 +
include/configs/imx8mm_venice.h | 125 ++
include/power/mp5416.h | 41 +
32 files changed, 5842 insertions(+), 6 deletions(-)
create mode 100644 arch/arm/dts/imx8mm-venice-gw700x-u-boot.dtsi
create mode 100644 arch/arm/dts/imx8mm-venice-gw700x.dtsi
create mode 100644 arch/arm/dts/imx8mm-venice-gw71xx-0x-u-boot.dtsi
create mode 100644 arch/arm/dts/imx8mm-venice-gw71xx-0x.dts
create mode 100644 arch/arm/dts/imx8mm-venice-gw71xx.dtsi
create mode 100644 arch/arm/dts/imx8mm-venice-gw72xx-0x-u-boot.dtsi
create mode 100644 arch/arm/dts/imx8mm-venice-gw72xx-0x.dts
create mode 100644 arch/arm/dts/imx8mm-venice-gw72xx.dtsi
create mode 100644 arch/arm/dts/imx8mm-venice-gw73xx-0x-u-boot.dtsi
create mode 100644 arch/arm/dts/imx8mm-venice-gw73xx-0x.dts
create mode 100644 arch/arm/dts/imx8mm-venice-gw73xx.dtsi
create mode 100644 arch/arm/dts/imx8mm-venice-u-boot.dtsi
create mode 100644 arch/arm/dts/imx8mm-venice.dts
create mode 100644 board/gateworks/venice/Kconfig
create mode 100644 board/gateworks/venice/MAINTAINERS
create mode 100644 board/gateworks/venice/Makefile
create mode 100644 board/gateworks/venice/README
create mode 100644 board/gateworks/venice/gsc.c
create mode 100644 board/gateworks/venice/gsc.h
create mode 100644 board/gateworks/venice/imx8mm_venice.c
create mode 100644 board/gateworks/venice/lpddr4_timing.c
create mode 100644 board/gateworks/venice/lpddr4_timing.h
create mode 100644 board/gateworks/venice/spl.c
create mode 100644 configs/imx8mm_venice_defconfig
create mode 100644 drivers/power/pmic/mp5416.c
create mode 100644 include/configs/imx8mm_venice.h
create mode 100644 include/power/mp5416.h
--
2.7.4
next reply other threads:[~2021-01-13 17:00 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-13 17:00 Tim Harvey [this message]
2021-01-13 17:00 ` [PATCH 1/4] Respect that some compression algos can be enabled separately for SPL Tim Harvey
2021-01-23 12:39 ` Stefano Babic
2021-01-26 17:53 ` Tim Harvey
2021-01-27 7:57 ` Frieder Schrempf
2021-01-27 13:19 ` Stefano Babic
2021-01-30 21:22 ` Stefano Babic
2021-02-04 17:31 ` Tim Harvey
2021-02-04 20:49 ` Stefano Babic
2021-02-05 1:37 ` Tim Harvey
2021-01-13 17:00 ` [PATCH 2/4] power: pmic: add driver for Monolithic Power mp5416 Tim Harvey
2021-01-14 22:08 ` Jaehoon Chung
2021-01-14 22:10 ` Tim Harvey
2021-01-13 17:00 ` [PATCH 3/4] arm: dts: imx8mm: add Gateworks i.MX8 Mini Dev kits Tim Harvey
2021-01-13 17:00 ` [PATCH 4/4] board: gateworks: imx8mm: Add Gateworks Venice board support Tim Harvey
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=1610557225-3822-1-git-send-email-tharvey@gateworks.com \
--to=tharvey@gateworks.com \
--cc=u-boot@lists.denx.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