3825c358172f3f7529ef57157bc3ea68d895d2bb
[pandora-kernel.git] / drivers / media / video / soc_camera_platform.c
1 /*
2  * Generic Platform Camera Driver
3  *
4  * Copyright (C) 2008 Magnus Damm
5  * Based on mt9m001 driver,
6  * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  */
12
13 #include <linux/init.h>
14 #include <linux/module.h>
15 #include <linux/slab.h>
16 #include <linux/delay.h>
17 #include <linux/platform_device.h>
18 #include <linux/videodev2.h>
19 #include <media/v4l2-subdev.h>
20 #include <media/soc_camera.h>
21 #include <media/soc_camera_platform.h>
22
23 struct soc_camera_platform_priv {
24         struct v4l2_subdev subdev;
25         struct soc_camera_data_format format;
26 };
27
28 static struct soc_camera_platform_priv *get_priv(struct platform_device *pdev)
29 {
30         struct v4l2_subdev *subdev = platform_get_drvdata(pdev);
31         return container_of(subdev, struct soc_camera_platform_priv, subdev);
32 }
33
34 static struct soc_camera_platform_info *get_info(struct soc_camera_device *icd)
35 {
36         struct platform_device *pdev = to_platform_device(to_soc_camera_control(icd));
37         return pdev->dev.platform_data;
38 }
39
40 static int soc_camera_platform_s_stream(struct v4l2_subdev *sd, int enable)
41 {
42         struct soc_camera_platform_info *p = v4l2_get_subdevdata(sd);
43         return p->set_capture(p, enable);
44 }
45
46 static int soc_camera_platform_set_bus_param(struct soc_camera_device *icd,
47                                              unsigned long flags)
48 {
49         return 0;
50 }
51
52 static unsigned long
53 soc_camera_platform_query_bus_param(struct soc_camera_device *icd)
54 {
55         struct soc_camera_platform_info *p = get_info(icd);
56         return p->bus_param;
57 }
58
59 static int soc_camera_platform_try_fmt(struct v4l2_subdev *sd,
60                                        struct v4l2_format *f)
61 {
62         struct soc_camera_platform_info *p = v4l2_get_subdevdata(sd);
63         struct v4l2_pix_format *pix = &f->fmt.pix;
64
65         pix->width = p->format.width;
66         pix->height = p->format.height;
67         return 0;
68 }
69
70 static void soc_camera_platform_video_probe(struct soc_camera_device *icd,
71                                             struct platform_device *pdev)
72 {
73         struct soc_camera_platform_priv *priv = get_priv(pdev);
74         struct soc_camera_platform_info *p = pdev->dev.platform_data;
75
76         priv->format.name = p->format_name;
77         priv->format.depth = p->format_depth;
78         priv->format.fourcc = p->format.pixelformat;
79         priv->format.colorspace = p->format.colorspace;
80
81         icd->formats = &priv->format;
82         icd->num_formats = 1;
83 }
84
85 static struct v4l2_subdev_core_ops platform_subdev_core_ops;
86
87 static struct v4l2_subdev_video_ops platform_subdev_video_ops = {
88         .s_stream       = soc_camera_platform_s_stream,
89         .try_fmt        = soc_camera_platform_try_fmt,
90 };
91
92 static struct v4l2_subdev_ops platform_subdev_ops = {
93         .core   = &platform_subdev_core_ops,
94         .video  = &platform_subdev_video_ops,
95 };
96
97 static struct soc_camera_ops soc_camera_platform_ops = {
98         .set_bus_param          = soc_camera_platform_set_bus_param,
99         .query_bus_param        = soc_camera_platform_query_bus_param,
100 };
101
102 static int soc_camera_platform_probe(struct platform_device *pdev)
103 {
104         struct soc_camera_host *ici;
105         struct soc_camera_platform_priv *priv;
106         struct soc_camera_platform_info *p = pdev->dev.platform_data;
107         struct soc_camera_device *icd;
108         int ret;
109
110         if (!p)
111                 return -EINVAL;
112
113         if (!p->dev) {
114                 dev_err(&pdev->dev,
115                         "Platform has not set soc_camera_device pointer!\n");
116                 return -EINVAL;
117         }
118
119         priv = kzalloc(sizeof(*priv), GFP_KERNEL);
120         if (!priv)
121                 return -ENOMEM;
122
123         icd = to_soc_camera_dev(p->dev);
124
125         /* soc-camera convention: control's drvdata points to the subdev */
126         platform_set_drvdata(pdev, &priv->subdev);
127         /* Set the control device reference */
128         dev_set_drvdata(&icd->dev, &pdev->dev);
129
130         icd->y_skip_top         = 0;
131         icd->ops                = &soc_camera_platform_ops;
132
133         ici = to_soc_camera_host(icd->dev.parent);
134
135         soc_camera_platform_video_probe(icd, pdev);
136
137         v4l2_subdev_init(&priv->subdev, &platform_subdev_ops);
138         v4l2_set_subdevdata(&priv->subdev, p);
139         priv->subdev.grp_id = (__u32)icd;
140         strncpy(priv->subdev.name, dev_name(&pdev->dev), V4L2_SUBDEV_NAME_SIZE);
141
142         ret = v4l2_device_register_subdev(&ici->v4l2_dev, &priv->subdev);
143         if (ret)
144                 goto evdrs;
145
146         return ret;
147
148 evdrs:
149         icd->ops = NULL;
150         platform_set_drvdata(pdev, NULL);
151         kfree(priv);
152         return ret;
153 }
154
155 static int soc_camera_platform_remove(struct platform_device *pdev)
156 {
157         struct soc_camera_platform_priv *priv = get_priv(pdev);
158         struct soc_camera_platform_info *p = pdev->dev.platform_data;
159         struct soc_camera_device *icd = to_soc_camera_dev(p->dev);
160
161         v4l2_device_unregister_subdev(&priv->subdev);
162         icd->ops = NULL;
163         platform_set_drvdata(pdev, NULL);
164         kfree(priv);
165         return 0;
166 }
167
168 static struct platform_driver soc_camera_platform_driver = {
169         .driver         = {
170                 .name   = "soc_camera_platform",
171                 .owner  = THIS_MODULE,
172         },
173         .probe          = soc_camera_platform_probe,
174         .remove         = soc_camera_platform_remove,
175 };
176
177 static int __init soc_camera_platform_module_init(void)
178 {
179         return platform_driver_register(&soc_camera_platform_driver);
180 }
181
182 static void __exit soc_camera_platform_module_exit(void)
183 {
184         platform_driver_unregister(&soc_camera_platform_driver);
185 }
186
187 module_init(soc_camera_platform_module_init);
188 module_exit(soc_camera_platform_module_exit);
189
190 MODULE_DESCRIPTION("SoC Camera Platform driver");
191 MODULE_AUTHOR("Magnus Damm");
192 MODULE_LICENSE("GPL v2");
193 MODULE_ALIAS("platform:soc_camera_platform");