All of lore.kernel.org
 help / color / mirror / Atom feed
From: Quentin Schulz <foss+kernel@0leil.net>
Cc: robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org,
	heiko@sntech.de, dmitry.torokhov@gmail.com,
	klaus.goger@theobroma-systems.com, foss+kernel@0leil.net,
	devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-rockchip@lists.infradead.org, linux-kernel@vger.kernel.org,
	linux-input@vger.kernel.org,
	Quentin Schulz <quentin.schulz@theobroma-systems.com>
Subject: [PATCH 0/3] add support for Theobroma Systems PX30-µQ7 (Ringneck) with Haikou devkit
Date: Thu, 22 Sep 2022 12:12:08 +0200	[thread overview]
Message-ID: <20220922101211.3215888-1-foss+kernel@0leil.net> (raw)

From: Quentin Schulz <quentin.schulz@theobroma-systems.com>

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/

The Haikou devkit has a switch "button" which allows to force the
BOOTROM to load the bootloader from SD card instead of trying first from eMMC.
The state of the switch is exposed to userspace via a GPIO but there's currently
no support for such an event, thus it is added in the first patch of
this series.

The Espressif ESP32 support is not added in this patch series as
there'll be some challenges around the Device Tree bindings that will
require its own patch series and discussion.

MIPI-DSI/CSI "consumers" will come later with an adapter board once it
is designed.

Cheers,
Quentin

Quentin Schulz (3):
  Input: add `SW_BOOT_ALT`
  arm64: dts: rockchip: add PX30-µQ7 (Ringneck) SoM with Haikou
    baseboard
  dt-bindings: arm: rockchip: add Theobroma Systems PX30-µQ7 (Ringneck)
    with Haikou

 .../devicetree/bindings/arm/rockchip.yaml     |   5 +
 arch/arm64/boot/dts/rockchip/Makefile         |   1 +
 .../dts/rockchip/px30-ringneck-haikou.dts     | 239 ++++++++++++
 .../boot/dts/rockchip/px30-ringneck.dtsi      | 347 ++++++++++++++++++
 include/linux/mod_devicetable.h               |   2 +-
 include/uapi/linux/input-event-codes.h        |   3 +-
 6 files changed, 595 insertions(+), 2 deletions(-)
 create mode 100644 arch/arm64/boot/dts/rockchip/px30-ringneck-haikou.dts
 create mode 100644 arch/arm64/boot/dts/rockchip/px30-ringneck.dtsi

-- 
2.37.3


_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip

WARNING: multiple messages have this Message-ID (diff)
From: Quentin Schulz <foss+kernel@0leil.net>
Cc: robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org,
	heiko@sntech.de, dmitry.torokhov@gmail.com,
	klaus.goger@theobroma-systems.com, foss+kernel@0leil.net,
	devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-rockchip@lists.infradead.org, linux-kernel@vger.kernel.org,
	linux-input@vger.kernel.org,
	Quentin Schulz <quentin.schulz@theobroma-systems.com>
Subject: [PATCH 0/3] add support for Theobroma Systems PX30-µQ7 (Ringneck) with Haikou devkit
Date: Thu, 22 Sep 2022 12:12:08 +0200	[thread overview]
Message-ID: <20220922101211.3215888-1-foss+kernel@0leil.net> (raw)

From: Quentin Schulz <quentin.schulz@theobroma-systems.com>

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/

The Haikou devkit has a switch "button" which allows to force the
BOOTROM to load the bootloader from SD card instead of trying first from eMMC.
The state of the switch is exposed to userspace via a GPIO but there's currently
no support for such an event, thus it is added in the first patch of
this series.

The Espressif ESP32 support is not added in this patch series as
there'll be some challenges around the Device Tree bindings that will
require its own patch series and discussion.

MIPI-DSI/CSI "consumers" will come later with an adapter board once it
is designed.

Cheers,
Quentin

Quentin Schulz (3):
  Input: add `SW_BOOT_ALT`
  arm64: dts: rockchip: add PX30-µQ7 (Ringneck) SoM with Haikou
    baseboard
  dt-bindings: arm: rockchip: add Theobroma Systems PX30-µQ7 (Ringneck)
    with Haikou

 .../devicetree/bindings/arm/rockchip.yaml     |   5 +
 arch/arm64/boot/dts/rockchip/Makefile         |   1 +
 .../dts/rockchip/px30-ringneck-haikou.dts     | 239 ++++++++++++
 .../boot/dts/rockchip/px30-ringneck.dtsi      | 347 ++++++++++++++++++
 include/linux/mod_devicetable.h               |   2 +-
 include/uapi/linux/input-event-codes.h        |   3 +-
 6 files changed, 595 insertions(+), 2 deletions(-)
 create mode 100644 arch/arm64/boot/dts/rockchip/px30-ringneck-haikou.dts
 create mode 100644 arch/arm64/boot/dts/rockchip/px30-ringneck.dtsi

-- 
2.37.3


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

             reply	other threads:[~2022-09-22 10:14 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-22 10:12 Quentin Schulz [this message]
2022-09-22 10:12 ` [PATCH 0/3] add support for Theobroma Systems PX30-µQ7 (Ringneck) with Haikou devkit Quentin Schulz
2022-09-22 10:12 ` [PATCH 1/3] Input: add `SW_BOOT_ALT` Quentin Schulz
2022-09-22 10:12   ` Quentin Schulz
2022-09-22 10:12   ` Quentin Schulz
2022-09-22 17:20   ` Jeff LaBundy
2022-09-22 17:20     ` Jeff LaBundy
2022-09-22 17:20     ` Jeff LaBundy
2022-09-23  8:25     ` Quentin Schulz
2022-09-23  8:25       ` Quentin Schulz
2022-09-23  8:25       ` Quentin Schulz
2022-09-23 17:19       ` Jeff LaBundy
2022-09-23 17:19         ` Jeff LaBundy
2022-09-23 17:19         ` Jeff LaBundy
2022-09-23 17:24         ` Dmitry Torokhov
2022-09-23 17:24           ` Dmitry Torokhov
2022-09-23 17:24           ` Dmitry Torokhov
2022-09-26  9:37         ` Quentin Schulz
2022-09-26  9:37           ` Quentin Schulz
2022-09-26  9:37           ` Quentin Schulz
2022-09-27  1:56           ` Jeff LaBundy
2022-09-27  1:56             ` Jeff LaBundy
2022-09-27  1:56             ` Jeff LaBundy
2022-09-27  8:51             ` Quentin Schulz
2022-09-27  8:51               ` Quentin Schulz
2022-09-27  8:51               ` Quentin Schulz
2022-09-27 12:57               ` Robin Murphy
2022-09-27 12:57                 ` Robin Murphy
2022-09-27 12:57                 ` Robin Murphy
2022-09-22 10:12 ` [PATCH 2/3] arm64: dts: rockchip: add PX30-µQ7 (Ringneck) SoM with Haikou baseboard Quentin Schulz
2022-09-22 10:12   ` Quentin Schulz
2022-09-22 10:12   ` Quentin Schulz
2022-09-22 11:56   ` Quentin Schulz
2022-09-22 11:56     ` Quentin Schulz
2022-09-22 11:56     ` Quentin Schulz
2022-09-22 12:45   ` Krzysztof Kozlowski
2022-09-22 12:45     ` Krzysztof Kozlowski
2022-09-22 12:45     ` Krzysztof Kozlowski
2022-09-23  9:55     ` Quentin Schulz
2022-09-23  9:55       ` Quentin Schulz
2022-09-23  9:55       ` Quentin Schulz
2022-09-23 10:28       ` Krzysztof Kozlowski
2022-09-23 10:28         ` Krzysztof Kozlowski
2022-09-23 10:28         ` Krzysztof Kozlowski
2022-09-22 10:12 ` [PATCH 3/3] dt-bindings: arm: rockchip: add Theobroma Systems PX30-µQ7 (Ringneck) with Haikou Quentin Schulz
2022-09-22 10:12   ` Quentin Schulz
2022-09-22 10:12   ` Quentin Schulz
2022-09-22 12:40   ` Krzysztof Kozlowski
2022-09-22 12:40     ` Krzysztof Kozlowski
2022-09-22 12:40     ` Krzysztof Kozlowski
2022-09-22 12:41     ` Krzysztof Kozlowski
2022-09-22 12:41       ` Krzysztof Kozlowski
2022-09-22 12:41       ` Krzysztof Kozlowski

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=20220922101211.3215888-1-foss+kernel@0leil.net \
    --to=foss+kernel@0leil.net \
    --cc=devicetree@vger.kernel.org \
    --cc=dmitry.torokhov@gmail.com \
    --cc=heiko@sntech.de \
    --cc=klaus.goger@theobroma-systems.com \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rockchip@lists.infradead.org \
    --cc=quentin.schulz@theobroma-systems.com \
    --cc=robh+dt@kernel.org \
    /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.