Commit efedc489 authored by Alexandre Belloni's avatar Alexandre Belloni

ARM: dts: at91: move isi definition to at91sam9g25ek

The ISI is only present on the at91sam9g25, move the definition to the
at91sam9g25ek board dts to avoid warnings.

Solves the following warning for other 9x5ek boards:
Warning (unit_address_vs_reg): Node /ahb/apb/isi@f8048000 has a unit name, but no reg property
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@free-electrons.com>
parent e152e3f7
...@@ -26,7 +26,24 @@ mmc1: mmc@f000c000 { ...@@ -26,7 +26,24 @@ mmc1: mmc@f000c000 {
i2c0: i2c@f8010000 { i2c0: i2c@f8010000 {
ov2640: camera@0x30 { ov2640: camera@0x30 {
compatible = "ovti,ov2640";
reg = <0x30>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_pck0_as_isi_mck &pinctrl_sensor_power &pinctrl_sensor_reset>;
resetb-gpios = <&pioA 7 GPIO_ACTIVE_LOW>;
pwdn-gpios = <&pioA 13 GPIO_ACTIVE_HIGH>;
clocks = <&pck0>;
clock-names = "xvclk";
assigned-clocks = <&pck0>;
assigned-clock-rates = <25000000>;
status = "okay"; status = "okay";
port {
ov2640_0: endpoint {
remote-endpoint = <&isi_0>;
bus-width = <8>;
};
};
}; };
}; };
...@@ -37,6 +54,14 @@ macb0: ethernet@f802c000 { ...@@ -37,6 +54,14 @@ macb0: ethernet@f802c000 {
isi: isi@f8048000 { isi: isi@f8048000 {
status = "okay"; status = "okay";
port {
isi_0: endpoint@0 {
remote-endpoint = <&ov2640_0>;
bus-width = <8>;
vsync-active = <1>;
hsync-active = <1>;
};
};
}; };
}; };
}; };
......
...@@ -60,18 +60,6 @@ usb2: gadget@f803c000 { ...@@ -60,18 +60,6 @@ usb2: gadget@f803c000 {
status = "okay"; status = "okay";
}; };
isi: isi@f8048000 {
status = "disabled";
port {
isi_0: endpoint@0 {
remote-endpoint = <&ov2640_0>;
bus-width = <8>;
vsync-active = <1>;
hsync-active = <1>;
};
};
};
i2c0: i2c@f8010000 { i2c0: i2c@f8010000 {
status = "okay"; status = "okay";
...@@ -79,27 +67,6 @@ wm8731: wm8731@1a { ...@@ -79,27 +67,6 @@ wm8731: wm8731@1a {
compatible = "wm8731"; compatible = "wm8731";
reg = <0x1a>; reg = <0x1a>;
}; };
ov2640: camera@0x30 {
compatible = "ovti,ov2640";
reg = <0x30>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_pck0_as_isi_mck &pinctrl_sensor_power &pinctrl_sensor_reset>;
resetb-gpios = <&pioA 7 GPIO_ACTIVE_LOW>;
pwdn-gpios = <&pioA 13 GPIO_ACTIVE_HIGH>;
clocks = <&pck0>;
clock-names = "xvclk";
assigned-clocks = <&pck0>;
assigned-clock-rates = <25000000>;
status = "disabled";
port {
ov2640_0: endpoint {
remote-endpoint = <&isi_0>;
bus-width = <8>;
};
};
};
}; };
adc0: adc@f804c000 { adc0: adc@f804c000 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment