All of lore.kernel.org
 help / color / mirror / Atom feed
From: Quentin Schulz <foss+uboot@0leil.net>
To: klaus.goger@theobroma-systems.com, sjg@chromium.org,
	philipp.tomsich@vrull.eu, kever.yang@rock-chips.com
Cc: heiko@sntech.de, u-boot@lists.denx.de,
	Quentin Schulz <foss+uboot@0leil.net>,
	Quentin Schulz <quentin.schulz@theobroma-systems.com>
Subject: [PATCH v2 0/5] add support for Theobroma Systems PX30-µQ7 (Ringneck) with Haikou devkit
Date: Mon, 17 Oct 2022 12:46:36 +0200	[thread overview]
Message-ID: <20221017-upstream-ringneck-v2-0-0f03912ebac2@theobroma-systems.com> (raw)

The PX30-uQ7 (Ringneck) SoM is a µQseven-compatible (40mmx70mm, MXM-230
connector) system-on-module from Theobroma Systems[1], featuring the
Rockchip PX30.

It provides the following feature set:
* up to 4GB DDR4
* up to 128GB on-module eMMC (with 8-bit 1.8V interface)
* SD card (on a baseboard) via edge connector
* Fast Ethernet with on-module TI DP83825I PHY
* MIPI-DSI/LVDS
* MIPI-CSI
* USB
- 1x USB 2.0 dual-role
- 3x USB 2.0 host
* on-module STM32 Cortex-M0 companion controller, implementing:
- low-power RTC functionality (ISL1208 emulation)
- fan controller (AMC6821 emulation)
- USB<->CAN bridge controller
* on-module Espressif ESP32 for Bluetooth + 2.4GHz WiFi
* on-module NXP SE05x Secure Element

[1] https://www.theobroma-systems.com/som-product/px30-%C2%B5q7/

This patch series depends on the following patch series:
https://lore.kernel.org/u-boot/20220915101247.796236-1-foss+uboot@0leil.net/

The non-U-Boot-specific Device Trees are from the following Linux kernel
patch series:
https://lore.kernel.org/linux-rockchip/20220930-upstream-ringneck-v2-0-6671694b6934@theobroma-systems.com/

Cheers,
Quentin

v2:
 - updated DTS from Linux with v2 of the Linux kernel patch series,
 - updated node nade for bios-disable-override-hog to match v2 of Linux kernel,
 - removed uapi input patch since it is not needed anymore,

To: Kever Yang <kever.yang@rock-chips.com>
To: Heiko Stuebner <heiko@sntech.de>
To: Simon Glass <sjg@chromium.org>
To: Philipp Tomsich <philipp.tomsich@vrull.eu>
To: Klaus Goger <klaus.goger@theobroma-systems.com>
Cc: Quentin Schulz <foss+uboot@0leil.net>
Cc: u-boot@lists.denx.de
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>

---
Quentin Schulz (5):
      rockchip: px30: fix CONFIG_IRAM_BASE
      rockchip: px30: list possible SPL boot devices
      rockchip: px30: insert u-boot, spl-boot-device into U-Boot device tree
      arm64: dts: rockchip: sync px30 with linux-next
      rockchip: add support for PX30 Ringneck SoM on Haikou Devkit

 arch/arm/dts/px30-ringneck-haikou-u-boot.dtsi      |  91 +++++
 arch/arm/dts/px30-ringneck-haikou.dts              | 232 +++++++++++++
 arch/arm/dts/px30-ringneck.dtsi                    | 382 +++++++++++++++++++++
 arch/arm/dts/px30.dtsi                             |  28 +-
 arch/arm/mach-rockchip/px30/Kconfig                |  25 ++
 arch/arm/mach-rockchip/px30/px30.c                 |  56 +++
 board/theobroma-systems/ringneck_px30/Kconfig      |  18 +
 board/theobroma-systems/ringneck_px30/MAINTAINERS  |   9 +
 board/theobroma-systems/ringneck_px30/Makefile     |   7 +
 board/theobroma-systems/ringneck_px30/README       |  69 ++++
 .../ringneck_px30/ringneck-px30.c                  | 175 ++++++++++
 configs/ringneck-px30_defconfig                    | 131 +++++++
 doc/board/rockchip/rockchip.rst                    |   1 +
 include/configs/px30_common.h                      |   3 +-
 include/configs/ringneck_px30.h                    |  15 +
 15 files changed, 1237 insertions(+), 5 deletions(-)
---
base-commit: 5e973853e2535cc2ccff20d6fb8f981f6863a3b2
change-id: 20221017-upstream-ringneck-57abd09a7aaa

Best regards,
-- 
Quentin Schulz <quentin.schulz@theobroma-systems.com>

             reply	other threads:[~2022-10-17 10:47 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-17 10:46 Quentin Schulz [this message]
2022-10-17 10:46 ` [PATCH v2 1/5] rockchip: px30: fix CONFIG_IRAM_BASE Quentin Schulz
2022-10-17 10:46 ` [PATCH v2 2/5] rockchip: px30: list possible SPL boot devices Quentin Schulz
2022-10-17 10:46 ` [PATCH v2 3/5] rockchip: px30: insert u-boot, spl-boot-device into U-Boot device tree Quentin Schulz
2022-10-17 10:46 ` [PATCH v2 4/5] arm64: dts: rockchip: sync px30 with linux-next Quentin Schulz
2022-10-17 10:46 ` [PATCH v2 5/5] rockchip: add support for PX30 Ringneck SoM on Haikou Devkit Quentin Schulz

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=20221017-upstream-ringneck-v2-0-0f03912ebac2@theobroma-systems.com \
    --to=foss+uboot@0leil.net \
    --cc=heiko@sntech.de \
    --cc=kever.yang@rock-chips.com \
    --cc=klaus.goger@theobroma-systems.com \
    --cc=philipp.tomsich@vrull.eu \
    --cc=quentin.schulz@theobroma-systems.com \
    --cc=sjg@chromium.org \
    --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 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.