Tool/software: Linux
Hello every one.
I used am5728-evm board and I want to use adv7180 to show something of camera in LCD of my board !
in config of kernel CONFIG_VIDEO_ADV7180 set to "m" and in device tree :
&i2c5 {
status = "okay";
adv7180@20 {
compatible = "adi,adv7180";
reg = <0x20>;
port {
adv7180_1: endpoint{
remore-endpoint=<&vin3a>;
};
};
};
};
&vip2 {
status = "okay";
};
&vin3a {
status = "okay";
endpoint@0 {
slave-mode;
remote-endpoint = <&adv7180_1>;
};
};
after boot linux up by this command i faced with these errors:
root@am57xx-evm:~# dmesg | grep adv
[ 8.193027] systemd[1]: System time before build time, advancing clock.
[ 14.103261] probing adv7180 driver
[ 14.103268] adv7180 0-0020: chip found @ 0x20 (OMAP I2C adapter)
[ 14.103276] adv7180 0-0020: GPIO lookup for consumer powerdown
[ 14.103281] adv7180 0-0020: using device tree for GPIO lookup
[ 14.103387] of_get_named_gpiod_flags: can't parse 'powerdown-gpios' property of node '/ocp/i2c@48070000/adv7180@20[0]'
[ 14.103392] of_get_named_gpiod_flags: can't parse 'powerdown-gpio' property of node '/ocp/i2c@48070000/adv7180@20[0]'
[ 14.103397] adv7180 0-0020: using lookup tables for GPIO lookup
[ 14.103403] adv7180 0-0020: lookup for GPIO powerdown failed
[ 14.112658] adv7180: probe of 0-0020 failed with error -121
root@am57xx-evm:~#