All of lore.kernel.org
 help / color / mirror / Atom feed
From: Svyatoslav Ryhel <clamor95@gmail.com>
To: "Tom Rini" <trini@konsulko.com>,
	"Thierry Reding" <treding@nvidia.com>,
	"Svyatoslav Ryhel" <clamor95@gmail.com>,
	"Jonas Schwöbel" <jonasschwoebel@yahoo.de>,
	"Jonas Karlman" <jonas@kwiboo.se>
Cc: u-boot@lists.denx.de
Subject: [PATCH v1 0/4] Initial support for new Tegra 2/3 devices
Date: Sat, 15 Jun 2024 12:19:42 +0300	[thread overview]
Message-ID: <20240615091950.239610-1-clamor95@gmail.com> (raw)

Patchset includes initial support bringup for 4 new Tegra 2 and
Tegra 3 devices which include Asus Transformers with Tegra 2,
Microfost Surface RT, Lenovo Ideapad Yoga 11 and Wexler Tab 7t.
All setups are tested on real hardware and pass buildman.

Jonas Schwöbel (2):
  board: microsoft: surface-rt: add Microsoft Surface RT support
  board: lenovo: ideapad-yoga-11: Lenovo Ideapad Yoga 11

Svyatoslav Ryhel (2):
  board: asus: transformer: add ASUS Transformer T20 family support
  board: wexler: qc750: add WEXLER Tab 7t support

 arch/arm/dts/Makefile                         |    9 +-
 arch/arm/dts/tegra20-asus-sl101.dts           |    9 +
 arch/arm/dts/tegra20-asus-tf101.dts           |    9 +
 arch/arm/dts/tegra20-asus-tf101g.dts          |    9 +
 arch/arm/dts/tegra20-asus-transformer.dtsi    |  545 +++++++
 .../dts/tegra30-lenovo-ideapad-yoga-11.dts    | 1266 +++++++++++++++++
 arch/arm/dts/tegra30-microsoft-surface-rt.dts | 1083 ++++++++++++++
 arch/arm/dts/tegra30-wexler-qc750.dts         | 1106 ++++++++++++++
 arch/arm/mach-tegra/tegra20/Kconfig           |    5 +
 arch/arm/mach-tegra/tegra30/Kconfig           |   15 +
 board/asus/transformer-t20/Kconfig            |   12 +
 board/asus/transformer-t20/MAINTAINERS        |    8 +
 board/asus/transformer-t20/Makefile           |    9 +
 .../asus/transformer-t20/configs/sl101.config |    1 +
 .../asus/transformer-t20/configs/tf101.config |    1 +
 .../transformer-t20/configs/tf101g.config     |    1 +
 board/asus/transformer-t20/transformer-t20.c  |   57 +
 board/lenovo/ideapad-yoga-11/Kconfig          |   12 +
 board/lenovo/ideapad-yoga-11/MAINTAINERS      |    7 +
 board/lenovo/ideapad-yoga-11/Makefile         |    6 +
 .../ideapad-yoga-11/ideapad-yoga-11-spl.c     |   41 +
 board/microsoft/surface-rt/Kconfig            |   12 +
 board/microsoft/surface-rt/MAINTAINERS        |    7 +
 board/microsoft/surface-rt/Makefile           |    6 +
 board/microsoft/surface-rt/surface-rt-spl.c   |   41 +
 board/wexler/qc750/Kconfig                    |   12 +
 board/wexler/qc750/MAINTAINERS                |    7 +
 board/wexler/qc750/Makefile                   |   11 +
 board/wexler/qc750/qc750-spl.c                |   45 +
 board/wexler/qc750/qc750.c                    |   21 +
 configs/ideapad-yoga-11_defconfig             |   84 ++
 configs/qc750_defconfig                       |   81 ++
 configs/surface-rt_defconfig                  |   80 ++
 configs/transformer_t20_defconfig             |   82 ++
 doc/board/asus/index.rst                      |    1 +
 doc/board/asus/transformer_t20.rst            |  129 ++
 doc/board/index.rst                           |    3 +
 doc/board/lenovo/ideapad-yoga-11.rst          |   41 +
 doc/board/lenovo/index.rst                    |    9 +
 doc/board/microsoft/index.rst                 |    9 +
 doc/board/microsoft/surface-rt.rst            |   41 +
 doc/board/wexler/index.rst                    |    9 +
 doc/board/wexler/qc750.rst                    |  125 ++
 include/configs/ideapad-yoga-11.h             |   79 +
 include/configs/qc750.h                       |   67 +
 include/configs/surface-rt.h                  |   41 +
 include/configs/transformer-t20.h             |   23 +
 47 files changed, 5276 insertions(+), 1 deletion(-)
 create mode 100644 arch/arm/dts/tegra20-asus-sl101.dts
 create mode 100644 arch/arm/dts/tegra20-asus-tf101.dts
 create mode 100644 arch/arm/dts/tegra20-asus-tf101g.dts
 create mode 100644 arch/arm/dts/tegra20-asus-transformer.dtsi
 create mode 100644 arch/arm/dts/tegra30-lenovo-ideapad-yoga-11.dts
 create mode 100644 arch/arm/dts/tegra30-microsoft-surface-rt.dts
 create mode 100644 arch/arm/dts/tegra30-wexler-qc750.dts
 create mode 100644 board/asus/transformer-t20/Kconfig
 create mode 100644 board/asus/transformer-t20/MAINTAINERS
 create mode 100644 board/asus/transformer-t20/Makefile
 create mode 100644 board/asus/transformer-t20/configs/sl101.config
 create mode 100644 board/asus/transformer-t20/configs/tf101.config
 create mode 100644 board/asus/transformer-t20/configs/tf101g.config
 create mode 100644 board/asus/transformer-t20/transformer-t20.c
 create mode 100644 board/lenovo/ideapad-yoga-11/Kconfig
 create mode 100644 board/lenovo/ideapad-yoga-11/MAINTAINERS
 create mode 100644 board/lenovo/ideapad-yoga-11/Makefile
 create mode 100644 board/lenovo/ideapad-yoga-11/ideapad-yoga-11-spl.c
 create mode 100644 board/microsoft/surface-rt/Kconfig
 create mode 100644 board/microsoft/surface-rt/MAINTAINERS
 create mode 100644 board/microsoft/surface-rt/Makefile
 create mode 100644 board/microsoft/surface-rt/surface-rt-spl.c
 create mode 100644 board/wexler/qc750/Kconfig
 create mode 100644 board/wexler/qc750/MAINTAINERS
 create mode 100644 board/wexler/qc750/Makefile
 create mode 100644 board/wexler/qc750/qc750-spl.c
 create mode 100644 board/wexler/qc750/qc750.c
 create mode 100644 configs/ideapad-yoga-11_defconfig
 create mode 100644 configs/qc750_defconfig
 create mode 100644 configs/surface-rt_defconfig
 create mode 100644 configs/transformer_t20_defconfig
 create mode 100644 doc/board/asus/transformer_t20.rst
 create mode 100644 doc/board/lenovo/ideapad-yoga-11.rst
 create mode 100644 doc/board/lenovo/index.rst
 create mode 100644 doc/board/microsoft/index.rst
 create mode 100644 doc/board/microsoft/surface-rt.rst
 create mode 100644 doc/board/wexler/index.rst
 create mode 100644 doc/board/wexler/qc750.rst
 create mode 100644 include/configs/ideapad-yoga-11.h
 create mode 100644 include/configs/qc750.h
 create mode 100644 include/configs/surface-rt.h
 create mode 100644 include/configs/transformer-t20.h

-- 
2.43.0


             reply	other threads:[~2024-06-15  9:20 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-15  9:19 Svyatoslav Ryhel [this message]
2024-06-15  9:19 ` [PATCH v1 1/4] board: asus: transformer: add ASUS Transformer T20 family support Svyatoslav Ryhel
2024-06-17 17:42   ` Tom Rini
2024-06-15  9:19 ` [PATCH v1 2/4] board: wexler: qc750: add WEXLER Tab 7t support Svyatoslav Ryhel
2024-06-17 17:48   ` Tom Rini
2024-06-15  9:19 ` [PATCH v1 3/4] board: microsoft: surface-rt: add Microsoft Surface RT support Svyatoslav Ryhel
2024-06-15  9:19 ` [PATCH v1 4/4] board: lenovo: ideapad-yoga-11: Lenovo Ideapad Yoga 11 Svyatoslav Ryhel
2024-06-17 17:43 ` [PATCH v1 0/4] Initial support for new Tegra 2/3 devices Tom Rini

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=20240615091950.239610-1-clamor95@gmail.com \
    --to=clamor95@gmail.com \
    --cc=jonas@kwiboo.se \
    --cc=jonasschwoebel@yahoo.de \
    --cc=treding@nvidia.com \
    --cc=trini@konsulko.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 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.