Hello Simon, ср, 19 квіт. 2023 р. о 04:47 Simon Glass <s...@chromium.org> пише: > > Hi Svyatoslav, > > On Wed, 12 Apr 2023 at 13:50, Svyatoslav Ryhel <clamo...@gmail.com> wrote: > > > > Nexus 7 is a mini tablet computer co-developed by Google and Asus > > that runs the Android operating system. The Nexus 7 features a 7" > > display, an Nvidia Tegra 3 quad-core chip, 1 GB of RAM and 8/16 GB > > of internal storage. > > > > This patch brings support for all 3 known ASUS/Google devices: > > - Nexus 7 (2012) E1565 > > - Nexus 7 (2012) PM269 > > - Nexus 7 (2012) 3G - tilapia > > > > Tested-by: Andreas Westman Dorcsak <hed...@yahoo.com> # ASUS Grouper E1565 > > Tested-by: Svyatoslav Ryhel <clamo...@gmail.com> # ASUS Grouper E1565 > > Signed-off-by: Svyatoslav Ryhel <clamo...@gmail.com> > > --- > > arch/arm/dts/Makefile | 3 + > > arch/arm/dts/tegra30-asus-grouper-common.dtsi | 125 ++++++ > > .../dts/tegra30-asus-nexus7-grouper-E1565.dts | 40 ++ > > .../dts/tegra30-asus-nexus7-grouper-PM269.dts | 65 ++++ > > .../dts/tegra30-asus-nexus7-tilapia-E1565.dts | 40 ++ > > arch/arm/mach-tegra/tegra30/Kconfig | 5 + > > board/asus/grouper/Kconfig | 20 + > > board/asus/grouper/MAINTAINERS | 6 + > > board/asus/grouper/Makefile | 14 + > > board/asus/grouper/grouper-spl-max.c | 46 +++ > > board/asus/grouper/grouper-spl-ti.c | 42 ++ > > board/asus/grouper/grouper.c | 209 ++++++++++ > > board/asus/grouper/pinmux-config-grouper.h | 362 ++++++++++++++++++ > > configs/grouper_E1565.config | 2 + > > configs/grouper_PM269.config | 2 + > > configs/grouper_common_defconfig | 85 ++++ > > configs/tilapia.config | 3 + > > include/configs/grouper.h | 68 ++++ > > 18 files changed, 1137 insertions(+) > > create mode 100644 arch/arm/dts/tegra30-asus-grouper-common.dtsi > > create mode 100644 arch/arm/dts/tegra30-asus-nexus7-grouper-E1565.dts > > create mode 100644 arch/arm/dts/tegra30-asus-nexus7-grouper-PM269.dts > > create mode 100644 arch/arm/dts/tegra30-asus-nexus7-tilapia-E1565.dts > > create mode 100644 board/asus/grouper/Kconfig > > create mode 100644 board/asus/grouper/MAINTAINERS > > create mode 100644 board/asus/grouper/Makefile > > create mode 100644 board/asus/grouper/grouper-spl-max.c > > create mode 100644 board/asus/grouper/grouper-spl-ti.c > > create mode 100644 board/asus/grouper/grouper.c > > create mode 100644 board/asus/grouper/pinmux-config-grouper.h > > create mode 100644 configs/grouper_E1565.config > > create mode 100644 configs/grouper_PM269.config > > create mode 100644 configs/grouper_common_defconfig > > create mode 100644 configs/tilapia.config > > create mode 100644 include/configs/grouper.h > > Please can add you add a doc/board/... file to describe how to put > this on the device? > > Regards, > Simon
Sure, I will add doc/board/... for all boards I am proposing in the next patchset iteration. Best regards, Svyatoslav R.