Hi Guennadi,

I'm slowly converting all of my drivers to device-tree.
In the process, I met ... soc_camera.

I converted mt9m111.c and pxa_camera.c, but now I need the linking
soc_camera. And I don't have a clear idea on how it should be done.

I was thinking of having soc_camera_pdrv_probe() changed, to handle
device-tree. What bothers me a bit is that amongst the needed data for me are
the bus_id and a soc_camera_subdev_desc. I was thinking that this could be
expressed in device-tree like :
        soc_camera {
                icd = <&mt9m111>;
                ici = <&pxa_camera>;
        }
...
        pxai2c1: i2c@40301680 {
                status = "okay";

                mt9m111@5d {
                        compatible = "micron,mt9m111";
                        reg = <0x5d>;
                };
        };

        pxa_camera {
                compatible = "mrvl,pxa_camera";
                mclk_10khz = <5000>;
                flags = <0xc9>;
        };

Do you have any hints and advices to help me ?

Cheers.

-- 
Robert
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to