All of lore.kernel.org
 help / color / mirror / Atom feed
From: Matthias Brugger <matthias.bgg@gmail.com>
To: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Cc: p.zabel@pengutronix.de, airlied@gmail.com, daniel@ffwll.ch,
	robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org,
	jassisinghbrar@gmail.com, chunfeng.yun@mediatek.com,
	vkoul@kernel.org, kishon@kernel.org, thierry.reding@gmail.com,
	u.kleine-koenig@pengutronix.de, chunkuang.hu@kernel.org,
	ck.hu@mediatek.com, jitao.shi@mediatek.com,
	xinlei.lee@mediatek.com, houlong.wei@mediatek.com,
	dri-devel@lists.freedesktop.org,
	linux-mediatek@lists.infradead.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-phy@lists.infradead.org, linux-pwm@vger.kernel.org,
	kernel@collabora.com, phone-devel@vger.kernel.org,
	~postmarketos/upstreaming@lists.sr.ht
Subject: Re: [PATCH 20/27] arm64: dts: mediatek: mt6795: Add tertiary PWM node
Date: Wed, 12 Apr 2023 14:43:22 +0200	[thread overview]
Message-ID: <95aec24f-b393-e36d-b4dd-4c0a228fc619@gmail.com> (raw)
In-Reply-To: <20230412112739.160376-21-angelogioacchino.delregno@collabora.com>



On 12/04/2023 13:27, AngeloGioacchino Del Regno wrote:
> The PWM at 0x11006000 is the tertiary PWM; unlike PWM0, PWM1, this is
> not display specific and can be used as a generic PWM controller.
> 
> This node is left disabled as usage is board-specific.
> 
> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>

Applied, thanks!

> ---
>   arch/arm64/boot/dts/mediatek/mt6795.dtsi | 19 +++++++++++++++++++
>   1 file changed, 19 insertions(+)
> 
> diff --git a/arch/arm64/boot/dts/mediatek/mt6795.dtsi b/arch/arm64/boot/dts/mediatek/mt6795.dtsi
> index cf45cb4ad3d2..50d9276d18c6 100644
> --- a/arch/arm64/boot/dts/mediatek/mt6795.dtsi
> +++ b/arch/arm64/boot/dts/mediatek/mt6795.dtsi
> @@ -583,6 +583,25 @@ uart3: serial@11005000 {
>   			status = "disabled";
>   		};
>   
> +		pwm2: pwm@11006000 {
> +			compatible = "mediatek,mt6795-pwm";
> +			reg = <0 0x11006000 0 0x1000>;
> +			#pwm-cells = <2>;
> +			interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_LOW>;
> +			clocks = <&topckgen CLK_TOP_PWM_SEL>,
> +				 <&pericfg CLK_PERI_PWM>,
> +				 <&pericfg CLK_PERI_PWM1>,
> +				 <&pericfg CLK_PERI_PWM2>,
> +				 <&pericfg CLK_PERI_PWM3>,
> +				 <&pericfg CLK_PERI_PWM4>,
> +				 <&pericfg CLK_PERI_PWM5>,
> +				 <&pericfg CLK_PERI_PWM6>,
> +				 <&pericfg CLK_PERI_PWM7>;
> +			clock-names = "top", "main", "pwm1", "pwm2", "pwm3",
> +				      "pwm4", "pwm5", "pwm6", "pwm7";
> +			status = "disabled";
> +		};
> +
>   		i2c0: i2c@11007000 {
>   			compatible = "mediatek,mt6795-i2c", "mediatek,mt8173-i2c";
>   			reg = <0 0x11007000 0 0x70>, <0 0x11000100 0 0x80>;


WARNING: multiple messages have this Message-ID (diff)
From: Matthias Brugger <matthias.bgg@gmail.com>
To: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Cc: p.zabel@pengutronix.de, airlied@gmail.com, daniel@ffwll.ch,
	robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org,
	jassisinghbrar@gmail.com, chunfeng.yun@mediatek.com,
	vkoul@kernel.org, kishon@kernel.org, thierry.reding@gmail.com,
	u.kleine-koenig@pengutronix.de, chunkuang.hu@kernel.org,
	ck.hu@mediatek.com, jitao.shi@mediatek.com,
	xinlei.lee@mediatek.com, houlong.wei@mediatek.com,
	dri-devel@lists.freedesktop.org,
	linux-mediatek@lists.infradead.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-phy@lists.infradead.org, linux-pwm@vger.kernel.org,
	kernel@collabora.com, phone-devel@vger.kernel.org,
	~postmarketos/upstreaming@lists.sr.ht
Subject: Re: [PATCH 20/27] arm64: dts: mediatek: mt6795: Add tertiary PWM node
Date: Wed, 12 Apr 2023 14:43:22 +0200	[thread overview]
Message-ID: <95aec24f-b393-e36d-b4dd-4c0a228fc619@gmail.com> (raw)
In-Reply-To: <20230412112739.160376-21-angelogioacchino.delregno@collabora.com>



On 12/04/2023 13:27, AngeloGioacchino Del Regno wrote:
> The PWM at 0x11006000 is the tertiary PWM; unlike PWM0, PWM1, this is
> not display specific and can be used as a generic PWM controller.
> 
> This node is left disabled as usage is board-specific.
> 
> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>

Applied, thanks!

> ---
>   arch/arm64/boot/dts/mediatek/mt6795.dtsi | 19 +++++++++++++++++++
>   1 file changed, 19 insertions(+)
> 
> diff --git a/arch/arm64/boot/dts/mediatek/mt6795.dtsi b/arch/arm64/boot/dts/mediatek/mt6795.dtsi
> index cf45cb4ad3d2..50d9276d18c6 100644
> --- a/arch/arm64/boot/dts/mediatek/mt6795.dtsi
> +++ b/arch/arm64/boot/dts/mediatek/mt6795.dtsi
> @@ -583,6 +583,25 @@ uart3: serial@11005000 {
>   			status = "disabled";
>   		};
>   
> +		pwm2: pwm@11006000 {
> +			compatible = "mediatek,mt6795-pwm";
> +			reg = <0 0x11006000 0 0x1000>;
> +			#pwm-cells = <2>;
> +			interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_LOW>;
> +			clocks = <&topckgen CLK_TOP_PWM_SEL>,
> +				 <&pericfg CLK_PERI_PWM>,
> +				 <&pericfg CLK_PERI_PWM1>,
> +				 <&pericfg CLK_PERI_PWM2>,
> +				 <&pericfg CLK_PERI_PWM3>,
> +				 <&pericfg CLK_PERI_PWM4>,
> +				 <&pericfg CLK_PERI_PWM5>,
> +				 <&pericfg CLK_PERI_PWM6>,
> +				 <&pericfg CLK_PERI_PWM7>;
> +			clock-names = "top", "main", "pwm1", "pwm2", "pwm3",
> +				      "pwm4", "pwm5", "pwm6", "pwm7";
> +			status = "disabled";
> +		};
> +
>   		i2c0: i2c@11007000 {
>   			compatible = "mediatek,mt6795-i2c", "mediatek,mt8173-i2c";
>   			reg = <0 0x11007000 0 0x70>, <0 0x11000100 0 0x80>;

-- 
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy

WARNING: multiple messages have this Message-ID (diff)
From: Matthias Brugger <matthias.bgg@gmail.com>
To: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Cc: p.zabel@pengutronix.de, airlied@gmail.com, daniel@ffwll.ch,
	robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org,
	jassisinghbrar@gmail.com, chunfeng.yun@mediatek.com,
	vkoul@kernel.org, kishon@kernel.org, thierry.reding@gmail.com,
	u.kleine-koenig@pengutronix.de, chunkuang.hu@kernel.org,
	ck.hu@mediatek.com, jitao.shi@mediatek.com,
	xinlei.lee@mediatek.com, houlong.wei@mediatek.com,
	dri-devel@lists.freedesktop.org,
	linux-mediatek@lists.infradead.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-phy@lists.infradead.org, linux-pwm@vger.kernel.org,
	kernel@collabora.com, phone-devel@vger.kernel.org,
	~postmarketos/upstreaming@lists.sr.ht
Subject: Re: [PATCH 20/27] arm64: dts: mediatek: mt6795: Add tertiary PWM node
Date: Wed, 12 Apr 2023 14:43:22 +0200	[thread overview]
Message-ID: <95aec24f-b393-e36d-b4dd-4c0a228fc619@gmail.com> (raw)
In-Reply-To: <20230412112739.160376-21-angelogioacchino.delregno@collabora.com>



On 12/04/2023 13:27, AngeloGioacchino Del Regno wrote:
> The PWM at 0x11006000 is the tertiary PWM; unlike PWM0, PWM1, this is
> not display specific and can be used as a generic PWM controller.
> 
> This node is left disabled as usage is board-specific.
> 
> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>

Applied, thanks!

> ---
>   arch/arm64/boot/dts/mediatek/mt6795.dtsi | 19 +++++++++++++++++++
>   1 file changed, 19 insertions(+)
> 
> diff --git a/arch/arm64/boot/dts/mediatek/mt6795.dtsi b/arch/arm64/boot/dts/mediatek/mt6795.dtsi
> index cf45cb4ad3d2..50d9276d18c6 100644
> --- a/arch/arm64/boot/dts/mediatek/mt6795.dtsi
> +++ b/arch/arm64/boot/dts/mediatek/mt6795.dtsi
> @@ -583,6 +583,25 @@ uart3: serial@11005000 {
>   			status = "disabled";
>   		};
>   
> +		pwm2: pwm@11006000 {
> +			compatible = "mediatek,mt6795-pwm";
> +			reg = <0 0x11006000 0 0x1000>;
> +			#pwm-cells = <2>;
> +			interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_LOW>;
> +			clocks = <&topckgen CLK_TOP_PWM_SEL>,
> +				 <&pericfg CLK_PERI_PWM>,
> +				 <&pericfg CLK_PERI_PWM1>,
> +				 <&pericfg CLK_PERI_PWM2>,
> +				 <&pericfg CLK_PERI_PWM3>,
> +				 <&pericfg CLK_PERI_PWM4>,
> +				 <&pericfg CLK_PERI_PWM5>,
> +				 <&pericfg CLK_PERI_PWM6>,
> +				 <&pericfg CLK_PERI_PWM7>;
> +			clock-names = "top", "main", "pwm1", "pwm2", "pwm3",
> +				      "pwm4", "pwm5", "pwm6", "pwm7";
> +			status = "disabled";
> +		};
> +
>   		i2c0: i2c@11007000 {
>   			compatible = "mediatek,mt6795-i2c", "mediatek,mt8173-i2c";
>   			reg = <0 0x11007000 0 0x70>, <0 0x11000100 0 0x80>;

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

WARNING: multiple messages have this Message-ID (diff)
From: Matthias Brugger <matthias.bgg@gmail.com>
To: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Cc: devicetree@vger.kernel.org, dri-devel@lists.freedesktop.org,
	thierry.reding@gmail.com, krzysztof.kozlowski+dt@linaro.org,
	linux-phy@lists.infradead.org, kernel@collabora.com,
	xinlei.lee@mediatek.com, kishon@kernel.org,
	phone-devel@vger.kernel.org, jassisinghbrar@gmail.com,
	linux-pwm@vger.kernel.org, u.kleine-koenig@pengutronix.de,
	chunkuang.hu@kernel.org, jitao.shi@mediatek.com,
	houlong.wei@mediatek.com, chunfeng.yun@mediatek.com,
	robh+dt@kernel.org, linux-mediatek@lists.infradead.org,
	~postmarketos/upstreaming@lists.sr.ht,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, vkoul@kernel.org
Subject: Re: [PATCH 20/27] arm64: dts: mediatek: mt6795: Add tertiary PWM node
Date: Wed, 12 Apr 2023 14:43:22 +0200	[thread overview]
Message-ID: <95aec24f-b393-e36d-b4dd-4c0a228fc619@gmail.com> (raw)
In-Reply-To: <20230412112739.160376-21-angelogioacchino.delregno@collabora.com>



On 12/04/2023 13:27, AngeloGioacchino Del Regno wrote:
> The PWM at 0x11006000 is the tertiary PWM; unlike PWM0, PWM1, this is
> not display specific and can be used as a generic PWM controller.
> 
> This node is left disabled as usage is board-specific.
> 
> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>

Applied, thanks!

> ---
>   arch/arm64/boot/dts/mediatek/mt6795.dtsi | 19 +++++++++++++++++++
>   1 file changed, 19 insertions(+)
> 
> diff --git a/arch/arm64/boot/dts/mediatek/mt6795.dtsi b/arch/arm64/boot/dts/mediatek/mt6795.dtsi
> index cf45cb4ad3d2..50d9276d18c6 100644
> --- a/arch/arm64/boot/dts/mediatek/mt6795.dtsi
> +++ b/arch/arm64/boot/dts/mediatek/mt6795.dtsi
> @@ -583,6 +583,25 @@ uart3: serial@11005000 {
>   			status = "disabled";
>   		};
>   
> +		pwm2: pwm@11006000 {
> +			compatible = "mediatek,mt6795-pwm";
> +			reg = <0 0x11006000 0 0x1000>;
> +			#pwm-cells = <2>;
> +			interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_LOW>;
> +			clocks = <&topckgen CLK_TOP_PWM_SEL>,
> +				 <&pericfg CLK_PERI_PWM>,
> +				 <&pericfg CLK_PERI_PWM1>,
> +				 <&pericfg CLK_PERI_PWM2>,
> +				 <&pericfg CLK_PERI_PWM3>,
> +				 <&pericfg CLK_PERI_PWM4>,
> +				 <&pericfg CLK_PERI_PWM5>,
> +				 <&pericfg CLK_PERI_PWM6>,
> +				 <&pericfg CLK_PERI_PWM7>;
> +			clock-names = "top", "main", "pwm1", "pwm2", "pwm3",
> +				      "pwm4", "pwm5", "pwm6", "pwm7";
> +			status = "disabled";
> +		};
> +
>   		i2c0: i2c@11007000 {
>   			compatible = "mediatek,mt6795-i2c", "mediatek,mt8173-i2c";
>   			reg = <0 0x11007000 0 0x70>, <0 0x11000100 0 0x80>;

  reply	other threads:[~2023-04-12 12:43 UTC|newest]

Thread overview: 396+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-12 11:27 [PATCH 00/27] MediaTek Helio X10 - Mailbox, Display, MMC/SD/SDIO AngeloGioacchino Del Regno
2023-04-12 11:27 ` AngeloGioacchino Del Regno
2023-04-12 11:27 ` AngeloGioacchino Del Regno
2023-04-12 11:27 ` AngeloGioacchino Del Regno
2023-04-12 11:27 ` [PATCH 01/27] dt-bindings: pwm: Add compatible for MediaTek MT6795 AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 12:30   ` Matthias Brugger
2023-04-12 12:30     ` Matthias Brugger
2023-04-12 12:30     ` Matthias Brugger
2023-04-12 12:30     ` Matthias Brugger
2023-04-12 21:03   ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-13  8:52     ` Matthias Brugger
2023-04-13  8:52       ` Matthias Brugger
2023-04-13  8:52       ` Matthias Brugger
2023-04-13  8:52       ` Matthias Brugger
2023-04-13  9:28       ` AngeloGioacchino Del Regno
2023-04-13  9:28         ` AngeloGioacchino Del Regno
2023-04-13  9:28         ` AngeloGioacchino Del Regno
2023-04-13  9:28         ` AngeloGioacchino Del Regno
2023-04-18  0:58       ` Rob Herring
2023-04-18  0:58         ` Rob Herring
2023-04-18  0:58         ` Rob Herring
2023-04-18  0:58         ` Rob Herring
2023-04-14  5:43   ` Uwe Kleine-König
2023-04-14  5:43     ` Uwe Kleine-König
2023-04-14  5:43     ` Uwe Kleine-König
2023-04-14  5:43     ` Uwe Kleine-König
2023-04-18 11:56     ` Matthias Brugger
2023-04-18 11:56       ` Matthias Brugger
2023-04-18 11:56       ` Matthias Brugger
2023-04-18 11:56       ` Matthias Brugger
2023-04-14  8:21   ` Krzysztof Kozlowski
2023-04-14  8:21     ` Krzysztof Kozlowski
2023-04-14  8:21     ` Krzysztof Kozlowski
2023-04-14  8:21     ` Krzysztof Kozlowski
2023-04-14  8:30     ` Uwe Kleine-König
2023-04-14  8:30       ` Uwe Kleine-König
2023-04-14  8:30       ` Uwe Kleine-König
2023-04-14  8:30       ` Uwe Kleine-König
2023-04-14  8:34       ` Krzysztof Kozlowski
2023-04-14  8:34         ` Krzysztof Kozlowski
2023-04-14  8:34         ` Krzysztof Kozlowski
2023-04-14  8:34         ` Krzysztof Kozlowski
2023-04-14 10:25         ` AngeloGioacchino Del Regno
2023-04-14 10:25           ` AngeloGioacchino Del Regno
2023-04-14 10:25           ` AngeloGioacchino Del Regno
2023-04-14 10:25           ` AngeloGioacchino Del Regno
2023-04-14 10:31           ` Krzysztof Kozlowski
2023-04-14 10:31             ` Krzysztof Kozlowski
2023-04-14 10:31             ` Krzysztof Kozlowski
2023-04-14 10:31             ` Krzysztof Kozlowski
2023-04-14 10:31   ` Krzysztof Kozlowski
2023-04-14 10:31     ` Krzysztof Kozlowski
2023-04-14 10:31     ` Krzysztof Kozlowski
2023-04-14 10:31     ` Krzysztof Kozlowski
2023-05-29 13:51   ` Matthias Brugger
2023-05-29 13:51     ` Matthias Brugger
2023-05-29 13:51     ` Matthias Brugger
2023-05-29 13:51     ` Matthias Brugger
2023-04-12 11:27 ` [PATCH 02/27] dt-bindings: phy: mediatek,dsi-phy: Add compatible for MT6795 Helio X10 AngeloGioacchino Del Regno
2023-04-12 11:27   ` [PATCH 02/27] dt-bindings: phy: mediatek, dsi-phy: " AngeloGioacchino Del Regno
2023-04-12 11:27   ` [PATCH 02/27] dt-bindings: phy: mediatek,dsi-phy: " AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 12:34   ` Matthias Brugger
2023-04-12 12:34     ` [PATCH 02/27] dt-bindings: phy: mediatek, dsi-phy: " Matthias Brugger
2023-04-12 12:34     ` [PATCH 02/27] dt-bindings: phy: mediatek,dsi-phy: " Matthias Brugger
2023-04-12 12:34     ` Matthias Brugger
2023-04-12 12:59   ` Alexandre Mergnat
2023-04-12 12:59     ` [PATCH 02/27] dt-bindings: phy: mediatek, dsi-phy: " Alexandre Mergnat
2023-04-12 12:59     ` [PATCH 02/27] dt-bindings: phy: mediatek,dsi-phy: " Alexandre Mergnat
2023-04-12 12:59     ` Alexandre Mergnat
2023-04-12 13:03     ` AngeloGioacchino Del Regno
2023-04-12 13:03       ` [PATCH 02/27] dt-bindings: phy: mediatek, dsi-phy: " AngeloGioacchino Del Regno
2023-04-12 13:03       ` [PATCH 02/27] dt-bindings: phy: mediatek,dsi-phy: " AngeloGioacchino Del Regno
2023-04-12 13:03       ` AngeloGioacchino Del Regno
2023-04-12 13:12       ` Alexandre Mergnat
2023-04-12 13:12         ` [PATCH 02/27] dt-bindings: phy: mediatek, dsi-phy: " Alexandre Mergnat
2023-04-12 13:12         ` [PATCH 02/27] dt-bindings: phy: mediatek,dsi-phy: " Alexandre Mergnat
2023-04-12 13:12         ` Alexandre Mergnat
2023-04-12 13:17         ` AngeloGioacchino Del Regno
2023-04-12 13:17           ` [PATCH 02/27] dt-bindings: phy: mediatek, dsi-phy: " AngeloGioacchino Del Regno
2023-04-12 13:17           ` [PATCH 02/27] dt-bindings: phy: mediatek,dsi-phy: " AngeloGioacchino Del Regno
2023-04-12 13:17           ` AngeloGioacchino Del Regno
2023-04-13  8:58           ` Matthias Brugger
2023-04-13  8:58             ` [PATCH 02/27] dt-bindings: phy: mediatek, dsi-phy: " Matthias Brugger
2023-04-13  8:58             ` [PATCH 02/27] dt-bindings: phy: mediatek,dsi-phy: " Matthias Brugger
2023-04-13  8:58             ` Matthias Brugger
2023-04-14  8:22   ` Krzysztof Kozlowski
2023-04-14  8:22     ` [PATCH 02/27] dt-bindings: phy: mediatek, dsi-phy: " Krzysztof Kozlowski
2023-04-14  8:22     ` [PATCH 02/27] dt-bindings: phy: mediatek,dsi-phy: " Krzysztof Kozlowski
2023-04-14  8:22     ` Krzysztof Kozlowski
2023-05-29 14:05     ` Matthias Brugger
2023-05-29 14:05       ` [PATCH 02/27] dt-bindings: phy: mediatek, dsi-phy: " Matthias Brugger
2023-05-29 14:05       ` [PATCH 02/27] dt-bindings: phy: mediatek,dsi-phy: " Matthias Brugger
2023-05-29 14:05       ` Matthias Brugger
2023-04-12 11:27 ` [PATCH 03/27] dt-bindings: display: mediatek: dpi: Add compatible for MediaTek MT6795 AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 12:35   ` Matthias Brugger
2023-04-12 12:35     ` Matthias Brugger
2023-04-12 12:35     ` Matthias Brugger
2023-04-12 12:35     ` Matthias Brugger
2023-04-14  8:23     ` Krzysztof Kozlowski
2023-04-14  8:23       ` Krzysztof Kozlowski
2023-04-14  8:23       ` Krzysztof Kozlowski
2023-04-14  8:23       ` Krzysztof Kozlowski
2023-04-12 13:13   ` Alexandre Mergnat
2023-04-12 13:13     ` Alexandre Mergnat
2023-04-12 13:13     ` Alexandre Mergnat
2023-04-12 13:13     ` Alexandre Mergnat
2023-04-12 21:03   ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-14  8:23   ` Krzysztof Kozlowski
2023-04-14  8:23     ` Krzysztof Kozlowski
2023-04-14  8:23     ` Krzysztof Kozlowski
2023-04-14  8:23     ` Krzysztof Kozlowski
2023-05-29 14:07   ` Matthias Brugger
2023-05-29 14:07     ` Matthias Brugger
2023-05-29 14:07     ` Matthias Brugger
2023-05-29 14:07     ` Matthias Brugger
2023-06-13  0:12     ` Chun-Kuang Hu
2023-06-13  0:12       ` Chun-Kuang Hu
2023-06-13  0:12       ` Chun-Kuang Hu
2023-06-13  0:12       ` Chun-Kuang Hu
2023-04-12 11:27 ` [PATCH 04/27] dt-bindings: display: mediatek: aal: " AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 12:35   ` Matthias Brugger
2023-04-12 12:35     ` Matthias Brugger
2023-04-12 12:35     ` Matthias Brugger
2023-04-12 12:35     ` Matthias Brugger
2023-04-12 13:03   ` Alexandre Mergnat
2023-04-12 13:03     ` Alexandre Mergnat
2023-04-12 13:03     ` Alexandre Mergnat
2023-04-12 13:03     ` Alexandre Mergnat
2023-04-14  8:24   ` Krzysztof Kozlowski
2023-04-14  8:24     ` Krzysztof Kozlowski
2023-04-14  8:24     ` Krzysztof Kozlowski
2023-04-14  8:24     ` Krzysztof Kozlowski
2023-04-12 11:27 ` [PATCH 05/27] dt-bindings: display: mediatek: dsi: " AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 12:36   ` Matthias Brugger
2023-04-12 12:36     ` Matthias Brugger
2023-04-12 12:36     ` Matthias Brugger
2023-04-12 12:36     ` Matthias Brugger
2023-04-12 13:21     ` AngeloGioacchino Del Regno
2023-04-12 13:21       ` AngeloGioacchino Del Regno
2023-04-12 13:21       ` AngeloGioacchino Del Regno
2023-04-12 13:21       ` AngeloGioacchino Del Regno
2023-04-12 21:03   ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-14  8:24   ` Krzysztof Kozlowski
2023-04-14  8:24     ` Krzysztof Kozlowski
2023-04-14  8:24     ` Krzysztof Kozlowski
2023-04-14  8:24     ` Krzysztof Kozlowski
2023-04-12 11:27 ` [PATCH 06/27] dt-bindings: display: mediatek: ovl: " AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 21:03   ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-14  8:24   ` Krzysztof Kozlowski
2023-04-14  8:24     ` Krzysztof Kozlowski
2023-04-14  8:24     ` Krzysztof Kozlowski
2023-04-14  8:24     ` Krzysztof Kozlowski
2023-04-12 11:27 ` [PATCH 07/27] dt-bindings: display: mediatek: rdma: " AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 21:03   ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-14  8:26   ` Krzysztof Kozlowski
2023-04-14  8:26     ` Krzysztof Kozlowski
2023-04-14  8:26     ` Krzysztof Kozlowski
2023-04-14  8:26     ` Krzysztof Kozlowski
2023-04-12 11:27 ` [PATCH 08/27] dt-bindings: display: mediatek: wdma: " AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 12:36   ` Matthias Brugger
2023-04-12 12:36     ` Matthias Brugger
2023-04-12 12:36     ` Matthias Brugger
2023-04-12 12:36     ` Matthias Brugger
2023-04-14  8:26   ` Krzysztof Kozlowski
2023-04-14  8:26     ` Krzysztof Kozlowski
2023-04-14  8:26     ` Krzysztof Kozlowski
2023-04-14  8:26     ` Krzysztof Kozlowski
2023-04-12 11:27 ` [PATCH 09/27] dt-bindings: display: mediatek: color: " AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 12:37   ` Matthias Brugger
2023-04-12 12:37     ` Matthias Brugger
2023-04-12 12:37     ` Matthias Brugger
2023-04-12 12:37     ` Matthias Brugger
2023-04-12 21:03   ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-14  8:26   ` Krzysztof Kozlowski
2023-04-14  8:26     ` Krzysztof Kozlowski
2023-04-14  8:26     ` Krzysztof Kozlowski
2023-04-14  8:26     ` Krzysztof Kozlowski
2023-04-12 11:27 ` [PATCH 10/27] dt-bindings: display: mediatek: gamma: " AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-14  8:27   ` Krzysztof Kozlowski
2023-04-14  8:27     ` Krzysztof Kozlowski
2023-04-14  8:27     ` Krzysztof Kozlowski
2023-04-14  8:27     ` Krzysztof Kozlowski
2023-04-12 11:27 ` [PATCH 11/27] dt-bindings: display: mediatek: merge: " AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 12:37   ` Matthias Brugger
2023-04-12 12:37     ` Matthias Brugger
2023-04-12 12:37     ` Matthias Brugger
2023-04-12 12:37     ` Matthias Brugger
2023-04-14  8:33   ` Krzysztof Kozlowski
2023-04-14  8:33     ` Krzysztof Kozlowski
2023-04-14  8:33     ` Krzysztof Kozlowski
2023-04-14  8:33     ` Krzysztof Kozlowski
2023-04-12 11:27 ` [PATCH 12/27] dt-bindings: display: mediatek: split: " AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 12:37   ` Matthias Brugger
2023-04-12 12:37     ` Matthias Brugger
2023-04-12 12:37     ` Matthias Brugger
2023-04-12 12:37     ` Matthias Brugger
2023-04-14  8:34   ` Krzysztof Kozlowski
2023-04-14  8:34     ` Krzysztof Kozlowski
2023-04-14  8:34     ` Krzysztof Kozlowski
2023-04-14  8:34     ` Krzysztof Kozlowski
2023-04-12 11:27 ` [PATCH 13/27] dt-bindings: display: mediatek: ufoe: " AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 12:38   ` Matthias Brugger
2023-04-12 12:38     ` Matthias Brugger
2023-04-12 12:38     ` Matthias Brugger
2023-04-12 12:38     ` Matthias Brugger
2023-04-12 21:03   ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-14  8:44   ` Krzysztof Kozlowski
2023-04-14  8:44     ` Krzysztof Kozlowski
2023-04-14  8:44     ` Krzysztof Kozlowski
2023-04-14  8:44     ` Krzysztof Kozlowski
2023-04-12 11:27 ` [PATCH 14/27] dt-bindings: display: mediatek: od: " AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 12:38   ` Matthias Brugger
2023-04-12 12:38     ` Matthias Brugger
2023-04-12 12:38     ` Matthias Brugger
2023-04-12 12:38     ` Matthias Brugger
2023-04-12 21:03   ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-12 21:03     ` Rob Herring
2023-04-14  8:45   ` Krzysztof Kozlowski
2023-04-14  8:45     ` Krzysztof Kozlowski
2023-04-14  8:45     ` Krzysztof Kozlowski
2023-04-14  8:45     ` Krzysztof Kozlowski
2023-04-12 11:27 ` [PATCH 15/27] dt-bindings: mailbox: mediatek,gce-mailbox: Add support for MT6795 AngeloGioacchino Del Regno
2023-04-12 11:27   ` [PATCH 15/27] dt-bindings: mailbox: mediatek, gce-mailbox: " AngeloGioacchino Del Regno
2023-04-12 11:27   ` [PATCH 15/27] dt-bindings: mailbox: mediatek,gce-mailbox: " AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 12:38   ` Matthias Brugger
2023-04-12 12:38     ` Matthias Brugger
2023-04-12 12:38     ` Matthias Brugger
2023-04-12 12:38     ` Matthias Brugger
2023-04-12 11:27 ` [PATCH 16/27] arm64: dts: mediatek: mt6795: Add support for the CMDQ/GCE mailbox AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-05-29 13:54   ` Matthias Brugger
2023-05-29 13:54     ` Matthias Brugger
2023-05-29 13:54     ` Matthias Brugger
2023-05-29 13:54     ` Matthias Brugger
2023-04-12 11:27 ` [PATCH 17/27] arm64: dts: mediatek: mt6795: Add MMSYS node for multimedia clocks AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-05-29 13:55   ` Matthias Brugger
2023-05-29 13:55     ` Matthias Brugger
2023-05-29 13:55     ` Matthias Brugger
2023-05-29 13:55     ` Matthias Brugger
2023-04-12 11:27 ` [PATCH 18/27] arm64: dts: mediatek: mt6795: Add support for IOMMU and LARBs AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-05-29 13:56   ` Matthias Brugger
2023-05-29 13:56     ` Matthias Brugger
2023-05-29 13:56     ` Matthias Brugger
2023-05-29 13:56     ` Matthias Brugger
2023-04-12 11:27 ` [PATCH 19/27] arm64: dts: mediatek: mt6795: Add support for display blocks and DPI/DSI AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27 ` [PATCH 20/27] arm64: dts: mediatek: mt6795: Add tertiary PWM node AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 12:43   ` Matthias Brugger [this message]
2023-04-12 12:43     ` Matthias Brugger
2023-04-12 12:43     ` Matthias Brugger
2023-04-12 12:43     ` Matthias Brugger
2023-04-12 11:27 ` [PATCH 21/27] arm64: dts: mediatek: mt6795: Add PMIC Wrapper node AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-05-29 13:57   ` Matthias Brugger
2023-05-29 13:57     ` Matthias Brugger
2023-05-29 13:57     ` Matthias Brugger
2023-05-29 13:57     ` Matthias Brugger
2023-04-12 11:27 ` [PATCH 22/27] arm64: dts: mediatek: mt6795: Copyright header additions AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 12:41   ` Matthias Brugger
2023-04-12 12:41     ` Matthias Brugger
2023-04-12 12:41     ` Matthias Brugger
2023-04-12 12:41     ` Matthias Brugger
2023-04-12 13:23     ` AngeloGioacchino Del Regno
2023-04-12 13:23       ` AngeloGioacchino Del Regno
2023-04-12 13:23       ` AngeloGioacchino Del Regno
2023-04-12 13:23       ` AngeloGioacchino Del Regno
2023-04-14  8:46   ` Krzysztof Kozlowski
2023-04-14  8:46     ` Krzysztof Kozlowski
2023-04-14  8:46     ` Krzysztof Kozlowski
2023-04-14  8:46     ` Krzysztof Kozlowski
2023-04-14 10:28     ` AngeloGioacchino Del Regno
2023-04-14 10:28       ` AngeloGioacchino Del Regno
2023-04-14 10:28       ` AngeloGioacchino Del Regno
2023-04-14 10:28       ` AngeloGioacchino Del Regno
2023-04-12 11:27 ` [PATCH 23/27] arm64: dts: mediatek: Add MT6331 PMIC devicetree AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-05-29 13:59   ` Matthias Brugger
2023-05-29 13:59     ` Matthias Brugger
2023-05-29 13:59     ` Matthias Brugger
2023-05-29 13:59     ` Matthias Brugger
2023-04-12 11:27 ` [PATCH 24/27] arm64: dts: mediatek: mt6795-xperia-m5: Add MT6331 Combo PMIC AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-05-29 14:00   ` Matthias Brugger
2023-05-29 14:00     ` Matthias Brugger
2023-05-29 14:00     ` Matthias Brugger
2023-05-29 14:00     ` Matthias Brugger
2023-04-12 11:27 ` [PATCH 25/27] arm64: dts: mediatek: mt6795-xperia-m5: Add eMMC, MicroSD slot, SDIO AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-05-29 14:01   ` Matthias Brugger
2023-05-29 14:01     ` Matthias Brugger
2023-05-29 14:01     ` Matthias Brugger
2023-05-29 14:01     ` Matthias Brugger
2023-04-12 11:27 ` [PATCH 26/27] arm64: dts: mediatek: mt6795-xperia-m5: Add Bosch BMA255 Accelerometer AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 12:44   ` Matthias Brugger
2023-04-12 12:44     ` Matthias Brugger
2023-04-12 12:44     ` Matthias Brugger
2023-04-12 12:44     ` Matthias Brugger
2023-04-12 11:27 ` [PATCH 27/27] arm64: dts: mediatek: mt6795-xperia-m5: Add Bosch BMM050 Magnetometer AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 11:27   ` AngeloGioacchino Del Regno
2023-04-12 12:44   ` Matthias Brugger
2023-04-12 12:44     ` Matthias Brugger
2023-04-12 12:44     ` Matthias Brugger
2023-04-12 12:44     ` Matthias Brugger

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=95aec24f-b393-e36d-b4dd-4c0a228fc619@gmail.com \
    --to=matthias.bgg@gmail.com \
    --cc=airlied@gmail.com \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=chunfeng.yun@mediatek.com \
    --cc=chunkuang.hu@kernel.org \
    --cc=ck.hu@mediatek.com \
    --cc=daniel@ffwll.ch \
    --cc=devicetree@vger.kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=houlong.wei@mediatek.com \
    --cc=jassisinghbrar@gmail.com \
    --cc=jitao.shi@mediatek.com \
    --cc=kernel@collabora.com \
    --cc=kishon@kernel.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux-phy@lists.infradead.org \
    --cc=linux-pwm@vger.kernel.org \
    --cc=p.zabel@pengutronix.de \
    --cc=phone-devel@vger.kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=thierry.reding@gmail.com \
    --cc=u.kleine-koenig@pengutronix.de \
    --cc=vkoul@kernel.org \
    --cc=xinlei.lee@mediatek.com \
    --cc=~postmarketos/upstreaming@lists.sr.ht \
    /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.