* [PATCH v4 0/4] ARM: Basic support for Amazon ford tablet (MT8127)
@ 2026-09-09 19:37 Zakariya Hadrami via B4 Relay
2026-09-09 19:38 ` [PATCH v4 1/4] dt-bindings: watchdog: mediatek: Add MT8127 Zakariya Hadrami via B4 Relay
` (3 more replies)
0 siblings, 4 replies; 12+ messages in thread
From: Zakariya Hadrami via B4 Relay @ 2026-09-09 19:37 UTC (permalink / raw)
To: Matthias Brugger, AngeloGioacchino Del Regno, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Sean Wang, Wim Van Sebroeck,
Guenter Roeck
Cc: linux-kernel, linux-arm-kernel, linux-mediatek, devicetree,
linux-watchdog, zkh1, Zakariya Hadrami, Krzysztof Kozlowski
This series of patches adds basic support for MT8127 SoC based Amazon ford
tablet.
Signed-off-by: Zakariya Hadrami <zkh@mailbox.org>
---
Changes in v4:
- Add chassis-type property to dts.
- Add missing #address-cells, #size-cells and ranges properties to dts
(sashiko report).
- Link to v3: https://patch.msgid.link/20260908-mt8127-amazon-ford-basic-v3-0-fc46bf1b6cb2@mailbox.org
Changes in v3:
- Rebase onto v7.3-rc1.
- Drop [PATCH v2 3/5] as it was superseded by upstream changes.
- Link to v2: https://lore.kernel.org/r/20260617-mt8127-amazon-ford-basic-v2-0-6859e29e72a8@proton.me
Changes in v2:
- Move amazon ford compatible string to existing enum.
- Fix watchdog node not sorted in unit address ascending order (sashiko report).
- Move bindings documentation patches before patches implementing the bindings.
- Link to v1: https://lore.kernel.org/r/20260617-mt8127-amazon-ford-basic-v1-0-d02ad15ac359@proton.me
---
Zakariya Hadrami (4):
dt-bindings: watchdog: mediatek: Add MT8127
dt-bindings: arm: mediatek: Add MT8127 Amazon ford
ARM: dts: mediatek: mt8127: Add watchdog support
ARM: dts: mediatek: Add basic support for Amazon ford board
.../devicetree/bindings/arm/mediatek.yaml | 1 +
.../bindings/watchdog/mediatek,mtk-wdt.yaml | 1 +
arch/arm/boot/dts/mediatek/Makefile | 1 +
arch/arm/boot/dts/mediatek/mt8127-amazon-ford.dts | 54 ++++++++++++++++++++++
arch/arm/boot/dts/mediatek/mt8127.dtsi | 7 +++
5 files changed, 64 insertions(+)
---
base-commit: cee9395acd8043be0644b25c34bfa86623f2b935
change-id: 20260616-mt8127-amazon-ford-basic-1509d7052f7e
Best regards,
--
Zakariya Hadrami <zkh@mailbox.org>
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v4 1/4] dt-bindings: watchdog: mediatek: Add MT8127
2026-09-09 19:37 [PATCH v4 0/4] ARM: Basic support for Amazon ford tablet (MT8127) Zakariya Hadrami via B4 Relay
@ 2026-09-09 19:38 ` Zakariya Hadrami via B4 Relay
2026-09-09 20:42 ` Guenter Roeck
2026-09-10 9:30 ` AngeloGioacchino Del Regno
2026-09-09 19:38 ` [PATCH v4 2/4] dt-bindings: arm: mediatek: Add MT8127 Amazon ford Zakariya Hadrami via B4 Relay
` (2 subsequent siblings)
3 siblings, 2 replies; 12+ messages in thread
From: Zakariya Hadrami via B4 Relay @ 2026-09-09 19:38 UTC (permalink / raw)
To: Matthias Brugger, AngeloGioacchino Del Regno, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Sean Wang, Wim Van Sebroeck,
Guenter Roeck
Cc: linux-kernel, linux-arm-kernel, linux-mediatek, devicetree,
linux-watchdog, zkh1, Zakariya Hadrami, Krzysztof Kozlowski
From: Zakariya Hadrami <zkh@mailbox.org>
Add entry for MT8127 SoC's watchdog which is compatible with MT6589's
one.
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Acked-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Zakariya Hadrami <zkh@mailbox.org>
---
Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml b/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
index 953629cb9558..e6e4546da0aa 100644
--- a/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
+++ b/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
@@ -40,6 +40,7 @@ properties:
- mediatek,mt7622-wdt
- mediatek,mt7623-wdt
- mediatek,mt7629-wdt
+ - mediatek,mt8127-wdt
- mediatek,mt8173-wdt
- mediatek,mt8188-wdt
- mediatek,mt8189-wdt
--
2.54.0
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v4 2/4] dt-bindings: arm: mediatek: Add MT8127 Amazon ford
2026-09-09 19:37 [PATCH v4 0/4] ARM: Basic support for Amazon ford tablet (MT8127) Zakariya Hadrami via B4 Relay
2026-09-09 19:38 ` [PATCH v4 1/4] dt-bindings: watchdog: mediatek: Add MT8127 Zakariya Hadrami via B4 Relay
@ 2026-09-09 19:38 ` Zakariya Hadrami via B4 Relay
2026-09-10 9:30 ` AngeloGioacchino Del Regno
2026-09-10 12:50 ` [v4,2/4] " matthias.bgg
2026-09-09 19:38 ` [PATCH v4 3/4] ARM: dts: mediatek: mt8127: Add watchdog support Zakariya Hadrami via B4 Relay
2026-09-09 19:38 ` [PATCH v4 4/4] ARM: dts: mediatek: Add basic support for Amazon ford board Zakariya Hadrami via B4 Relay
3 siblings, 2 replies; 12+ messages in thread
From: Zakariya Hadrami via B4 Relay @ 2026-09-09 19:38 UTC (permalink / raw)
To: Matthias Brugger, AngeloGioacchino Del Regno, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Sean Wang, Wim Van Sebroeck,
Guenter Roeck
Cc: linux-kernel, linux-arm-kernel, linux-mediatek, devicetree,
linux-watchdog, zkh1, Zakariya Hadrami, Krzysztof Kozlowski
From: Zakariya Hadrami <zkh@mailbox.org>
Add entry for the MT8127 based Amazon ford tablet.
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Signed-off-by: Zakariya Hadrami <zkh@mailbox.org>
---
Documentation/devicetree/bindings/arm/mediatek.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/arm/mediatek.yaml b/Documentation/devicetree/bindings/arm/mediatek.yaml
index cd4040ad3437..180e6e4948e7 100644
--- a/Documentation/devicetree/bindings/arm/mediatek.yaml
+++ b/Documentation/devicetree/bindings/arm/mediatek.yaml
@@ -122,6 +122,7 @@ properties:
- const: mediatek,mt7988a
- items:
- enum:
+ - amazon,ford
- mediatek,mt8127-moose
- const: mediatek,mt8127
- items:
--
2.54.0
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v4 3/4] ARM: dts: mediatek: mt8127: Add watchdog support
2026-09-09 19:37 [PATCH v4 0/4] ARM: Basic support for Amazon ford tablet (MT8127) Zakariya Hadrami via B4 Relay
2026-09-09 19:38 ` [PATCH v4 1/4] dt-bindings: watchdog: mediatek: Add MT8127 Zakariya Hadrami via B4 Relay
2026-09-09 19:38 ` [PATCH v4 2/4] dt-bindings: arm: mediatek: Add MT8127 Amazon ford Zakariya Hadrami via B4 Relay
@ 2026-09-09 19:38 ` Zakariya Hadrami via B4 Relay
2026-09-10 9:29 ` AngeloGioacchino Del Regno
2026-09-09 19:38 ` [PATCH v4 4/4] ARM: dts: mediatek: Add basic support for Amazon ford board Zakariya Hadrami via B4 Relay
3 siblings, 1 reply; 12+ messages in thread
From: Zakariya Hadrami via B4 Relay @ 2026-09-09 19:38 UTC (permalink / raw)
To: Matthias Brugger, AngeloGioacchino Del Regno, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Sean Wang, Wim Van Sebroeck,
Guenter Roeck
Cc: linux-kernel, linux-arm-kernel, linux-mediatek, devicetree,
linux-watchdog, zkh1, Zakariya Hadrami
From: Zakariya Hadrami <zkh@mailbox.org>
Add watchdog node and disable it by default as it was not present
initially.
Signed-off-by: Zakariya Hadrami <zkh@mailbox.org>
---
arch/arm/boot/dts/mediatek/mt8127.dtsi | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/arch/arm/boot/dts/mediatek/mt8127.dtsi b/arch/arm/boot/dts/mediatek/mt8127.dtsi
index bd61ec7e70c0..3e23673e7a9e 100644
--- a/arch/arm/boot/dts/mediatek/mt8127.dtsi
+++ b/arch/arm/boot/dts/mediatek/mt8127.dtsi
@@ -99,6 +99,13 @@ soc {
compatible = "simple-bus";
ranges;
+ watchdog: watchdog@10007000 {
+ compatible = "mediatek,mt8127-wdt","mediatek,mt6589-wdt";
+ reg = <0 0x10007000 0 0x100>;
+ interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_LOW>;
+ status = "disabled";
+ };
+
timer: timer@10008000 {
compatible = "mediatek,mt8127-timer",
"mediatek,mt6577-timer";
--
2.54.0
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v4 4/4] ARM: dts: mediatek: Add basic support for Amazon ford board
2026-09-09 19:37 [PATCH v4 0/4] ARM: Basic support for Amazon ford tablet (MT8127) Zakariya Hadrami via B4 Relay
` (2 preceding siblings ...)
2026-09-09 19:38 ` [PATCH v4 3/4] ARM: dts: mediatek: mt8127: Add watchdog support Zakariya Hadrami via B4 Relay
@ 2026-09-09 19:38 ` Zakariya Hadrami via B4 Relay
2026-09-10 9:29 ` AngeloGioacchino Del Regno
3 siblings, 1 reply; 12+ messages in thread
From: Zakariya Hadrami via B4 Relay @ 2026-09-09 19:38 UTC (permalink / raw)
To: Matthias Brugger, AngeloGioacchino Del Regno, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Sean Wang, Wim Van Sebroeck,
Guenter Roeck
Cc: linux-kernel, linux-arm-kernel, linux-mediatek, devicetree,
linux-watchdog, zkh1, Zakariya Hadrami
From: Zakariya Hadrami <zkh@mailbox.org>
This tablet uses a MediaTek MT8127 system-on-chip with 1GB of RAM.
It can currently boot into initramfs with a working UART and
Simple Framebuffer using already initialized panel by the bootloader.
Signed-off-by: Zakariya Hadrami <zkh@mailbox.org>
---
arch/arm/boot/dts/mediatek/Makefile | 1 +
arch/arm/boot/dts/mediatek/mt8127-amazon-ford.dts | 54 +++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/arch/arm/boot/dts/mediatek/Makefile b/arch/arm/boot/dts/mediatek/Makefile
index 37c4cded0eae..a610bc75c7d9 100644
--- a/arch/arm/boot/dts/mediatek/Makefile
+++ b/arch/arm/boot/dts/mediatek/Makefile
@@ -14,5 +14,6 @@ dtb-$(CONFIG_ARCH_MEDIATEK) += \
mt7623n-rfb-emmc.dtb \
mt7623n-bananapi-bpi-r2.dtb \
mt7629-rfb.dtb \
+ mt8127-amazon-ford.dtb \
mt8127-moose.dtb \
mt8135-evbp1.dtb
diff --git a/arch/arm/boot/dts/mediatek/mt8127-amazon-ford.dts b/arch/arm/boot/dts/mediatek/mt8127-amazon-ford.dts
new file mode 100644
index 000000000000..8edad5482de2
--- /dev/null
+++ b/arch/arm/boot/dts/mediatek/mt8127-amazon-ford.dts
@@ -0,0 +1,54 @@
+// SPDX-License-Identifier: GPL-2.0
+
+/dts-v1/;
+#include "mt8127.dtsi"
+
+/ {
+ model = "MediaTek MT8127 Amazon Ford";
+ compatible = "amazon,ford", "mediatek,mt8127";
+ chassis-type = "tablet";
+
+ aliases {
+ serial0 = &uart0;
+ };
+
+ chosen {
+ #address-cells = <2>;
+ #size-cells = <2>;
+ ranges;
+ stdout-path = "serial0:921600n8";
+
+ framebuffer0: framebuffer@b7a00000 {
+ compatible = "simple-framebuffer";
+ memory-region = <&framebuffer_reserved>;
+ width = <1024>;
+ height = <600>;
+ stride = <(1024 * 2)>;
+ format = "r5g6b5";
+ };
+ };
+
+ memory@80000000 {
+ device_type = "memory";
+ reg = <0 0x80000000 0 0x40000000>;
+ };
+
+ reserved-memory {
+ #address-cells = <2>;
+ #size-cells = <2>;
+ ranges;
+
+ framebuffer_reserved: framebuffer@b7a00000 {
+ reg = <0 0xb7a00000 0 0x1000000>;
+ no-map;
+ };
+ };
+};
+
+&uart0 {
+ status = "okay";
+};
+
+&watchdog {
+ status = "okay";
+};
--
2.54.0
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/4] dt-bindings: watchdog: mediatek: Add MT8127
2026-09-09 19:38 ` [PATCH v4 1/4] dt-bindings: watchdog: mediatek: Add MT8127 Zakariya Hadrami via B4 Relay
@ 2026-09-09 20:42 ` Guenter Roeck
2026-09-10 9:30 ` AngeloGioacchino Del Regno
1 sibling, 0 replies; 12+ messages in thread
From: Guenter Roeck @ 2026-09-09 20:42 UTC (permalink / raw)
To: Zakariya Hadrami
Cc: Matthias Brugger, AngeloGioacchino Del Regno, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Sean Wang, Wim Van Sebroeck,
linux-kernel, linux-arm-kernel, linux-mediatek, devicetree,
linux-watchdog, zkh1, Krzysztof Kozlowski
On Wed, Sep 09, 2026 at 09:38:00PM +0200, Zakariya Hadrami wrote:
> From: Zakariya Hadrami <zkh@mailbox.org>
>
> Add entry for MT8127 SoC's watchdog which is compatible with MT6589's
> one.
>
> Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
> Signed-off-by: Zakariya Hadrami <zkh@mailbox.org>
Applied.
Thanks,
Guenter
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 4/4] ARM: dts: mediatek: Add basic support for Amazon ford board
2026-09-09 19:38 ` [PATCH v4 4/4] ARM: dts: mediatek: Add basic support for Amazon ford board Zakariya Hadrami via B4 Relay
@ 2026-09-10 9:29 ` AngeloGioacchino Del Regno
2026-09-10 13:38 ` Zakariya Hadrami
0 siblings, 1 reply; 12+ messages in thread
From: AngeloGioacchino Del Regno @ 2026-09-10 9:29 UTC (permalink / raw)
To: zkh, Matthias Brugger, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Sean Wang, Wim Van Sebroeck, Guenter Roeck
Cc: linux-kernel, linux-arm-kernel, linux-mediatek, devicetree,
linux-watchdog, zkh1
On 9/9/26 21:38, Zakariya Hadrami via B4 Relay wrote:
> From: Zakariya Hadrami <zkh@mailbox.org>
>
> This tablet uses a MediaTek MT8127 system-on-chip with 1GB of RAM.
> It can currently boot into initramfs with a working UART and
> Simple Framebuffer using already initialized panel by the bootloader.
>
> Signed-off-by: Zakariya Hadrami <zkh@mailbox.org>
> ---
> arch/arm/boot/dts/mediatek/Makefile | 1 +
> arch/arm/boot/dts/mediatek/mt8127-amazon-ford.dts | 54 +++++++++++++++++++++++
> 2 files changed, 55 insertions(+)
>
> diff --git a/arch/arm/boot/dts/mediatek/Makefile b/arch/arm/boot/dts/mediatek/Makefile
> index 37c4cded0eae..a610bc75c7d9 100644
> --- a/arch/arm/boot/dts/mediatek/Makefile
> +++ b/arch/arm/boot/dts/mediatek/Makefile
> @@ -14,5 +14,6 @@ dtb-$(CONFIG_ARCH_MEDIATEK) += \
> mt7623n-rfb-emmc.dtb \
> mt7623n-bananapi-bpi-r2.dtb \
> mt7629-rfb.dtb \
> + mt8127-amazon-ford.dtb \
> mt8127-moose.dtb \
> mt8135-evbp1.dtb
> diff --git a/arch/arm/boot/dts/mediatek/mt8127-amazon-ford.dts b/arch/arm/boot/dts/mediatek/mt8127-amazon-ford.dts
> new file mode 100644
> index 000000000000..8edad5482de2
> --- /dev/null
> +++ b/arch/arm/boot/dts/mediatek/mt8127-amazon-ford.dts
> @@ -0,0 +1,54 @@
> +// SPDX-License-Identifier: GPL-2.0
> +
> +/dts-v1/;
> +#include "mt8127.dtsi"
> +
> +/ {
> + model = "MediaTek MT8127 Amazon Ford";
Please be friendlier with whoever reads this model string :-)
model = "Amazon Fire 7 2015 (Ford)";
that's better, isn't it?
After applying the proposed change,
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Cheers,
Angelo
> + compatible = "amazon,ford", "mediatek,mt8127";
> + chassis-type = "tablet";
> +
> + aliases {
> + serial0 = &uart0;
> + };
> +
> + chosen {
> + #address-cells = <2>;
> + #size-cells = <2>;
> + ranges;
> + stdout-path = "serial0:921600n8";
> +
> + framebuffer0: framebuffer@b7a00000 {
> + compatible = "simple-framebuffer";
> + memory-region = <&framebuffer_reserved>;
> + width = <1024>;
> + height = <600>;
> + stride = <(1024 * 2)>;
> + format = "r5g6b5";
> + };
> + };
> +
> + memory@80000000 {
> + device_type = "memory";
> + reg = <0 0x80000000 0 0x40000000>;
> + };
> +
> + reserved-memory {
> + #address-cells = <2>;
> + #size-cells = <2>;
> + ranges;
> +
> + framebuffer_reserved: framebuffer@b7a00000 {
> + reg = <0 0xb7a00000 0 0x1000000>;
> + no-map;
> + };
> + };
> +};
> +
> +&uart0 {
> + status = "okay";
> +};
> +
> +&watchdog {
> + status = "okay";
> +};
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 3/4] ARM: dts: mediatek: mt8127: Add watchdog support
2026-09-09 19:38 ` [PATCH v4 3/4] ARM: dts: mediatek: mt8127: Add watchdog support Zakariya Hadrami via B4 Relay
@ 2026-09-10 9:29 ` AngeloGioacchino Del Regno
0 siblings, 0 replies; 12+ messages in thread
From: AngeloGioacchino Del Regno @ 2026-09-10 9:29 UTC (permalink / raw)
To: zkh, Matthias Brugger, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Sean Wang, Wim Van Sebroeck, Guenter Roeck
Cc: linux-kernel, linux-arm-kernel, linux-mediatek, devicetree,
linux-watchdog, zkh1
On 9/9/26 21:38, Zakariya Hadrami via B4 Relay wrote:
> From: Zakariya Hadrami <zkh@mailbox.org>
>
> Add watchdog node and disable it by default as it was not present
> initially.
>
> Signed-off-by: Zakariya Hadrami <zkh@mailbox.org>
> ---
> arch/arm/boot/dts/mediatek/mt8127.dtsi | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/arch/arm/boot/dts/mediatek/mt8127.dtsi b/arch/arm/boot/dts/mediatek/mt8127.dtsi
> index bd61ec7e70c0..3e23673e7a9e 100644
> --- a/arch/arm/boot/dts/mediatek/mt8127.dtsi
> +++ b/arch/arm/boot/dts/mediatek/mt8127.dtsi
> @@ -99,6 +99,13 @@ soc {
> compatible = "simple-bus";
> ranges;
>
> + watchdog: watchdog@10007000 {
> + compatible = "mediatek,mt8127-wdt","mediatek,mt6589-wdt";
Missing space:
compatible = "mediatek,mt8127-wdt", "mediatek,mt6589-wdt";
After fixing,
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
P.S.: If you send a v5 between now and now (or next week too :-P) I can pick it
in this cycle.
Cheers,
Angelo
> + reg = <0 0x10007000 0 0x100>;
> + interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_LOW>;
> + status = "disabled";
> + };
> +
> timer: timer@10008000 {
> compatible = "mediatek,mt8127-timer",
> "mediatek,mt6577-timer";
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/4] dt-bindings: watchdog: mediatek: Add MT8127
2026-09-09 19:38 ` [PATCH v4 1/4] dt-bindings: watchdog: mediatek: Add MT8127 Zakariya Hadrami via B4 Relay
2026-09-09 20:42 ` Guenter Roeck
@ 2026-09-10 9:30 ` AngeloGioacchino Del Regno
1 sibling, 0 replies; 12+ messages in thread
From: AngeloGioacchino Del Regno @ 2026-09-10 9:30 UTC (permalink / raw)
To: zkh, Matthias Brugger, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Sean Wang, Wim Van Sebroeck, Guenter Roeck
Cc: linux-kernel, linux-arm-kernel, linux-mediatek, devicetree,
linux-watchdog, zkh1, Krzysztof Kozlowski
On 9/9/26 21:38, Zakariya Hadrami via B4 Relay wrote:
> From: Zakariya Hadrami <zkh@mailbox.org>
>
> Add entry for MT8127 SoC's watchdog which is compatible with MT6589's
> one.
>
> Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
> Acked-by: Guenter Roeck <linux@roeck-us.net>
> Signed-off-by: Zakariya Hadrami <zkh@mailbox.org>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 2/4] dt-bindings: arm: mediatek: Add MT8127 Amazon ford
2026-09-09 19:38 ` [PATCH v4 2/4] dt-bindings: arm: mediatek: Add MT8127 Amazon ford Zakariya Hadrami via B4 Relay
@ 2026-09-10 9:30 ` AngeloGioacchino Del Regno
2026-09-10 12:50 ` [v4,2/4] " matthias.bgg
1 sibling, 0 replies; 12+ messages in thread
From: AngeloGioacchino Del Regno @ 2026-09-10 9:30 UTC (permalink / raw)
To: zkh, Matthias Brugger, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Sean Wang, Wim Van Sebroeck, Guenter Roeck
Cc: linux-kernel, linux-arm-kernel, linux-mediatek, devicetree,
linux-watchdog, zkh1, Krzysztof Kozlowski
On 9/9/26 21:38, Zakariya Hadrami via B4 Relay wrote:
> From: Zakariya Hadrami <zkh@mailbox.org>
>
> Add entry for the MT8127 based Amazon ford tablet.
>
> Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
> Signed-off-by: Zakariya Hadrami <zkh@mailbox.org>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [v4,2/4] dt-bindings: arm: mediatek: Add MT8127 Amazon ford
2026-09-09 19:38 ` [PATCH v4 2/4] dt-bindings: arm: mediatek: Add MT8127 Amazon ford Zakariya Hadrami via B4 Relay
2026-09-10 9:30 ` AngeloGioacchino Del Regno
@ 2026-09-10 12:50 ` matthias.bgg
1 sibling, 0 replies; 12+ messages in thread
From: matthias.bgg @ 2026-09-10 12:50 UTC (permalink / raw)
To: zkh
Cc: Matthias Brugger, AngeloGioacchino Del Regno, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Sean Wang, Wim Van Sebroeck,
Guenter Roeck, linux-kernel, linux-arm-kernel, linux-mediatek,
devicetree, linux-watchdog, zkh1, Krzysztof Kozlowski
> From: Zakariya Hadrami <zkh@mailbox.org>
>
> Add entry for the MT8127 based Amazon ford tablet.
>
> Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
> Signed-off-by: Zakariya Hadrami <zkh@mailbox.org>
Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com>
> ---
> Documentation/devicetree/bindings/arm/mediatek.yaml | 1 +
> 1 file changed, 1 insertion(+)
> diff --git a/Documentation/devicetree/bindings/arm/mediatek.yaml b/Documentation/devicetree/bindings/arm/mediatek.yaml
> index cd4040ad3437..180e6e4948e7 100644
> --- a/Documentation/devicetree/bindings/arm/mediatek.yaml
> +++ b/Documentation/devicetree/bindings/arm/mediatek.yaml
> @@ -122,6 +122,7 @@ properties:
> - const: mediatek,mt7988a
> - items:
> - enum:
> + - amazon,ford
> - mediatek,mt8127-moose
> - const: mediatek,mt8127
> - items:
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 4/4] ARM: dts: mediatek: Add basic support for Amazon ford board
2026-09-10 9:29 ` AngeloGioacchino Del Regno
@ 2026-09-10 13:38 ` Zakariya Hadrami
0 siblings, 0 replies; 12+ messages in thread
From: Zakariya Hadrami @ 2026-09-10 13:38 UTC (permalink / raw)
To: AngeloGioacchino Del Regno
Cc: Matthias Brugger, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Sean Wang, Wim Van Sebroeck, Guenter Roeck, linux-kernel,
linux-arm-kernel, linux-mediatek, devicetree, linux-watchdog,
zkh1
On Thu, Sep 10, 2026 at 11:29:55AM +0200, AngeloGioacchino Del Regno wrote:
> >diff --git a/arch/arm/boot/dts/mediatek/mt8127-amazon-ford.dts b/arch/arm/boot/dts/mediatek/mt8127-amazon-ford.dts
> >new file mode 100644
> >index 000000000000..8edad5482de2
> >--- /dev/null
> >+++ b/arch/arm/boot/dts/mediatek/mt8127-amazon-ford.dts
> >@@ -0,0 +1,54 @@
> >+// SPDX-License-Identifier: GPL-2.0
> >+
> >+/dts-v1/;
> >+#include "mt8127.dtsi"
> >+
> >+/ {
> >+ model = "MediaTek MT8127 Amazon Ford";
>
> Please be friendlier with whoever reads this model string :-)
>
> model = "Amazon Fire 7 2015 (Ford)";
>
> that's better, isn't it?
My bad, sorry!
This and the missing space in watchdog compatible fixed in v5.
Link to v5: https://patch.msgid.link/20260910-mt8127-amazon-ford-basic-v5-0-3cb9eeaffd5c@mailbox.org
Thank you very much!
>
> After applying the proposed change,
> Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
>
> Cheers,
> Angelo
>
> >+ compatible = "amazon,ford", "mediatek,mt8127";
> >+ chassis-type = "tablet";
--
Best regards,
Zakariya
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2026-09-10 13:38 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-09 19:37 [PATCH v4 0/4] ARM: Basic support for Amazon ford tablet (MT8127) Zakariya Hadrami via B4 Relay
2026-09-09 19:38 ` [PATCH v4 1/4] dt-bindings: watchdog: mediatek: Add MT8127 Zakariya Hadrami via B4 Relay
2026-09-09 20:42 ` Guenter Roeck
2026-09-10 9:30 ` AngeloGioacchino Del Regno
2026-09-09 19:38 ` [PATCH v4 2/4] dt-bindings: arm: mediatek: Add MT8127 Amazon ford Zakariya Hadrami via B4 Relay
2026-09-10 9:30 ` AngeloGioacchino Del Regno
2026-09-10 12:50 ` [v4,2/4] " matthias.bgg
2026-09-09 19:38 ` [PATCH v4 3/4] ARM: dts: mediatek: mt8127: Add watchdog support Zakariya Hadrami via B4 Relay
2026-09-10 9:29 ` AngeloGioacchino Del Regno
2026-09-09 19:38 ` [PATCH v4 4/4] ARM: dts: mediatek: Add basic support for Amazon ford board Zakariya Hadrami via B4 Relay
2026-09-10 9:29 ` AngeloGioacchino Del Regno
2026-09-10 13:38 ` Zakariya Hadrami
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®