Re: [PATCH v3 6/6] ARM: dts: stm32: Use new media bus type macros

2023-01-17 Thread Alexandre TORGUE

Hi Laurent

On 6/16/22 00:14, Laurent Pinchart wrote:

Now that a header exists with macros for the media interface bus-type
values, replace hardcoding numerical constants with the corresponding
macros in the DT sources.

Signed-off-by: Laurent Pinchart 



Applied on stm32-next.

Thanks.
Alex





Re: [PATCH v3 6/6] ARM: dts: stm32: Use new media bus type macros

2023-01-17 Thread Alexandre TORGUE

Hi Laurent

On 1/14/23 16:36, Laurent Pinchart wrote:

Hugues, Maxime, Alexandre, could one of you take this patch in your tree
for v6.3 ? The two patches that it depends on have both been merged in
v6.2.


Yes sure.

Cheers
Alex



On Thu, Jun 16, 2022 at 01:14:10AM +0300, Laurent Pinchart wrote:

Now that a header exists with macros for the media interface bus-type
values, replace hardcoding numerical constants with the corresponding
macros in the DT sources.

Signed-off-by: Laurent Pinchart 
---
  arch/arm/boot/dts/stm32429i-eval.dts  | 3 ++-
  arch/arm/boot/dts/stm32mp157c-ev1.dts | 3 ++-
  2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/stm32429i-eval.dts 
b/arch/arm/boot/dts/stm32429i-eval.dts
index 0d98aca01736..5fae11e6607b 100644
--- a/arch/arm/boot/dts/stm32429i-eval.dts
+++ b/arch/arm/boot/dts/stm32429i-eval.dts
@@ -50,6 +50,7 @@
  #include "stm32f429-pinctrl.dtsi"
  #include 
  #include 
+#include 
  
  / {

model = "STMicroelectronics STM32429i-EVAL board";
@@ -186,7 +187,7 @@  {
port {
dcmi_0: endpoint {
remote-endpoint = <_0>;
-   bus-type = <5>;
+   bus-type = ;
bus-width = <8>;
hsync-active = <0>;
vsync-active = <0>;
diff --git a/arch/arm/boot/dts/stm32mp157c-ev1.dts 
b/arch/arm/boot/dts/stm32mp157c-ev1.dts
index d142dd30e16b..306d41a6138f 100644
--- a/arch/arm/boot/dts/stm32mp157c-ev1.dts
+++ b/arch/arm/boot/dts/stm32mp157c-ev1.dts
@@ -8,6 +8,7 @@
  #include "stm32mp157c-ed1.dts"
  #include 
  #include 
+#include 
  
  / {

model = "STMicroelectronics STM32MP157C eval daughter on eval mother";
@@ -90,7 +91,7 @@  {
port {
dcmi_0: endpoint {
remote-endpoint = <_0>;
-   bus-type = <5>;
+   bus-type = ;
bus-width = <8>;
hsync-active = <0>;
vsync-active = <0>;






Re: [PATCH v3 6/6] ARM: dts: stm32: Use new media bus type macros

2023-01-14 Thread Laurent Pinchart
Hugues, Maxime, Alexandre, could one of you take this patch in your tree
for v6.3 ? The two patches that it depends on have both been merged in
v6.2.

On Thu, Jun 16, 2022 at 01:14:10AM +0300, Laurent Pinchart wrote:
> Now that a header exists with macros for the media interface bus-type
> values, replace hardcoding numerical constants with the corresponding
> macros in the DT sources.
> 
> Signed-off-by: Laurent Pinchart 
> ---
>  arch/arm/boot/dts/stm32429i-eval.dts  | 3 ++-
>  arch/arm/boot/dts/stm32mp157c-ev1.dts | 3 ++-
>  2 files changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/stm32429i-eval.dts 
> b/arch/arm/boot/dts/stm32429i-eval.dts
> index 0d98aca01736..5fae11e6607b 100644
> --- a/arch/arm/boot/dts/stm32429i-eval.dts
> +++ b/arch/arm/boot/dts/stm32429i-eval.dts
> @@ -50,6 +50,7 @@
>  #include "stm32f429-pinctrl.dtsi"
>  #include 
>  #include 
> +#include 
>  
>  / {
>   model = "STMicroelectronics STM32429i-EVAL board";
> @@ -186,7 +187,7 @@  {
>   port {
>   dcmi_0: endpoint {
>   remote-endpoint = <_0>;
> - bus-type = <5>;
> + bus-type = ;
>   bus-width = <8>;
>   hsync-active = <0>;
>   vsync-active = <0>;
> diff --git a/arch/arm/boot/dts/stm32mp157c-ev1.dts 
> b/arch/arm/boot/dts/stm32mp157c-ev1.dts
> index d142dd30e16b..306d41a6138f 100644
> --- a/arch/arm/boot/dts/stm32mp157c-ev1.dts
> +++ b/arch/arm/boot/dts/stm32mp157c-ev1.dts
> @@ -8,6 +8,7 @@
>  #include "stm32mp157c-ed1.dts"
>  #include 
>  #include 
> +#include 
>  
>  / {
>   model = "STMicroelectronics STM32MP157C eval daughter on eval mother";
> @@ -90,7 +91,7 @@  {
>   port {
>   dcmi_0: endpoint {
>   remote-endpoint = <_0>;
> - bus-type = <5>;
> + bus-type = ;
>   bus-width = <8>;
>   hsync-active = <0>;
>   vsync-active = <0>;

-- 
Regards,

Laurent Pinchart


[PATCH v3 6/6] ARM: dts: stm32: Use new media bus type macros

2022-06-15 Thread Laurent Pinchart
Now that a header exists with macros for the media interface bus-type
values, replace hardcoding numerical constants with the corresponding
macros in the DT sources.

Signed-off-by: Laurent Pinchart 
---
 arch/arm/boot/dts/stm32429i-eval.dts  | 3 ++-
 arch/arm/boot/dts/stm32mp157c-ev1.dts | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/stm32429i-eval.dts 
b/arch/arm/boot/dts/stm32429i-eval.dts
index 0d98aca01736..5fae11e6607b 100644
--- a/arch/arm/boot/dts/stm32429i-eval.dts
+++ b/arch/arm/boot/dts/stm32429i-eval.dts
@@ -50,6 +50,7 @@
 #include "stm32f429-pinctrl.dtsi"
 #include 
 #include 
+#include 
 
 / {
model = "STMicroelectronics STM32429i-EVAL board";
@@ -186,7 +187,7 @@  {
port {
dcmi_0: endpoint {
remote-endpoint = <_0>;
-   bus-type = <5>;
+   bus-type = ;
bus-width = <8>;
hsync-active = <0>;
vsync-active = <0>;
diff --git a/arch/arm/boot/dts/stm32mp157c-ev1.dts 
b/arch/arm/boot/dts/stm32mp157c-ev1.dts
index d142dd30e16b..306d41a6138f 100644
--- a/arch/arm/boot/dts/stm32mp157c-ev1.dts
+++ b/arch/arm/boot/dts/stm32mp157c-ev1.dts
@@ -8,6 +8,7 @@
 #include "stm32mp157c-ed1.dts"
 #include 
 #include 
+#include 
 
 / {
model = "STMicroelectronics STM32MP157C eval daughter on eval mother";
@@ -90,7 +91,7 @@  {
port {
dcmi_0: endpoint {
remote-endpoint = <_0>;
-   bus-type = <5>;
+   bus-type = ;
bus-width = <8>;
hsync-active = <0>;
vsync-active = <0>;
-- 
Regards,

Laurent Pinchart