linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Krzysztof Kozlowski <krzk@kernel.org>
To: Alexandru Chimac <alex@chimac.ro>,
	Alim Akhtar <alim.akhtar@samsung.com>,
	Rob Herring <robh@kernel.org>, Conor Dooley <conor+dt@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Kees Cook <kees@kernel.org>, Tony Luck <tony.luck@intel.com>,
	"Guilherme G. Piccoli" <gpiccoli@igalia.com>
Cc: linux-arm-kernel@lists.infradead.org,
	linux-samsung-soc@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-hardening@vger.kernel.org
Subject: Re: [PATCH 3/3] arm64: dts: exynos: Add initial support for Samsung Galaxy Tab S6 Lite (gta4xl)
Date: Mon, 15 Sep 2025 06:32:58 +0200	[thread overview]
Message-ID: <9f255174-bfa4-4dfb-8c19-6488286fca21@kernel.org> (raw)
In-Reply-To: <20250914-exynos9610-devicetree-v1-3-2000fc3bbe0b@chimac.ro>

On 14/09/2025 22:44, Alexandru Chimac wrote:
> Add initial support for the Samsung Galaxy Tab S6 Lite (SM-P610/P615):
> 
> - Framebuffer, through SimpleFB
> - RAM
> - Buttons
> 
> Signed-off-by: Alexandru Chimac <alex@chimac.ro>
> ---
>  arch/arm64/boot/dts/exynos/Makefile              |  1 +
>  arch/arm64/boot/dts/exynos/exynos9610-gta4xl.dts | 97 ++++++++++++++++++++++++
>  2 files changed, 98 insertions(+)
> 
> diff --git a/arch/arm64/boot/dts/exynos/Makefile b/arch/arm64/boot/dts/exynos/Makefile
> index bdb9e9813e506de3a8ff6d1c3115382cca6ea9d9..8aacff968fa10d6b645bafe910c71fb65e8569f8 100644
> --- a/arch/arm64/boot/dts/exynos/Makefile
> +++ b/arch/arm64/boot/dts/exynos/Makefile
> @@ -12,6 +12,7 @@ dtb-$(CONFIG_ARCH_EXYNOS) += \
>  	exynos7885-jackpotlte.dtb	\
>  	exynos850-e850-96.dtb		\
>  	exynos8895-dreamlte.dtb		\
> +	exynos9610-gta4xl.dtb		\
>  	exynos9810-starlte.dtb		\
>  	exynos990-c1s.dtb		\
>  	exynos990-r8s.dtb               \
> diff --git a/arch/arm64/boot/dts/exynos/exynos9610-gta4xl.dts b/arch/arm64/boot/dts/exynos/exynos9610-gta4xl.dts
> new file mode 100644
> index 0000000000000000000000000000000000000000..f455af22ff872c6f07b9bcfc68b1ae1f45d0def3
> --- /dev/null
> +++ b/arch/arm64/boot/dts/exynos/exynos9610-gta4xl.dts
> @@ -0,0 +1,97 @@
> +// SPDX-License-Identifier: GPL-2.0
> +/*
> + * Galaxy Tab S6 Lite device tree
> + *
> + * Copyright (c) 2025, Alexandru Chimac <alexchimac@protonmail.com>
> + */
> +
> +/dts-v1/;
> +
> +#include "exynos9610.dtsi"
> +#include <dt-bindings/gpio/gpio.h>
> +#include <dt-bindings/input/input.h>
> +
> +/ {
> +	compatible = "samsung,gta4xl", "samsung,exynos9610";
> +	#address-cells = <2>;
> +	#size-cells = <1>;
> +
> +	chosen {
> +		#address-cells = <2>;
> +		#size-cells = <1>;
> +		ranges;
> +
> +		framebuffer0: framebuffer@ca000000 {
> +			compatible = "simple-framebuffer";
> +			memory-region = <&cont_splash_rmem>;
> +			width = <1200>;
> +			height = <2000>;
> +			stride = <(1200 * 4)>;
> +			format = "a8r8g8b8";
> +		};
> +	};
> +
> +	memory@80000000 {
> +		device_type = "memory";
> +		reg = <0x0 0x80000000 0x3AB00000>,
> +		      <0x0 0xC0000000 0x20000000>,
> +		      <0x0 0xE1900000 0x1E700000>,

Lowercase hex everywhere.


Best regards,
Krzysztof


      reply	other threads:[~2025-09-15  4:33 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-14 20:43 [PATCH 0/3] arm64: dts: exynos: Add initial support for Exynos9610 Alexandru Chimac
2025-09-14 20:43 ` [PATCH 1/3] dt-bindings: arm: samsung: Document gta4xl board binding Alexandru Chimac
2025-09-15 13:21   ` Rob Herring (Arm)
2025-09-14 20:44 ` [PATCH 2/3] arm64: dts: exynos: Add initial support for the Exynos9610 SoC Alexandru Chimac
2025-09-15  4:36   ` Krzysztof Kozlowski
2025-09-14 20:44 ` [PATCH 3/3] arm64: dts: exynos: Add initial support for Samsung Galaxy Tab S6 Lite (gta4xl) Alexandru Chimac
2025-09-15  4:32   ` Krzysztof Kozlowski [this message]

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=9f255174-bfa4-4dfb-8c19-6488286fca21@kernel.org \
    --to=krzk@kernel.org \
    --cc=alex@chimac.ro \
    --cc=alim.akhtar@samsung.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=gpiccoli@igalia.com \
    --cc=kees@kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-hardening@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=robh@kernel.org \
    --cc=tony.luck@intel.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).