All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 0/4] Initial support for new Tegra 2/3 devices
@ 2024-06-15  9:19 Svyatoslav Ryhel
  2024-06-15  9:19 ` [PATCH v1 1/4] board: asus: transformer: add ASUS Transformer T20 family support Svyatoslav Ryhel
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Svyatoslav Ryhel @ 2024-06-15  9:19 UTC (permalink / raw)
  To: Tom Rini, Thierry Reding, Svyatoslav Ryhel, Jonas Schwöbel,
	Jonas Karlman
  Cc: u-boot

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


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-06-17 17:48 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-15  9:19 [PATCH v1 0/4] Initial support for new Tegra 2/3 devices Svyatoslav Ryhel
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

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.