dt-bindings: mailbox: Add Amlogic Meson MHU Bindings
[deliverable/linux.git] / drivers / media / platform / soc_camera / 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 <linux/platform_data/media/soc_camera_platform.h>
22
23 struct soc_camera_platform_priv {
24 struct v4l2_subdev subdev;
25 };
26
27 static struct soc_camera_platform_priv *get_priv(struct platform_device *pdev)
28 {
29 struct v4l2_subdev *subdev = platform_get_drvdata(pdev);
30 return container_of(subdev, struct soc_camera_platform_priv, subdev);
31 }
32
33 static int soc_camera_platform_s_stream(struct v4l2_subdev *sd, int enable)
34 {
35 struct soc_camera_platform_info *p = v4l2_get_subdevdata(sd);
36 return p->set_capture(p, enable);
37 }
38
39 static int soc_camera_platform_fill_fmt(struct v4l2_subdev *sd,
40 struct v4l2_subdev_pad_config *cfg,
41 struct v4l2_subdev_format *format)
42 {
43 struct soc_camera_platform_info *p = v4l2_get_subdevdata(sd);
44 struct v4l2_mbus_framefmt *mf = &format->format;
45
46 mf->width = p->format.width;
47 mf->height = p->format.height;
48 mf->code = p->format.code;
49 mf->colorspace = p->format.colorspace;
50 mf->field = p->format.field;
51
52 return 0;
53 }
54
55 static int soc_camera_platform_s_power(struct v4l2_subdev *sd, int on)
56 {
57 struct soc_camera_platform_info *p = v4l2_get_subdevdata(sd);
58
59 return soc_camera_set_power(p->icd->control, &p->icd->sdesc->subdev_desc, NULL, on);
60 }
61
62 static struct v4l2_subdev_core_ops platform_subdev_core_ops = {
63 .s_power = soc_camera_platform_s_power,
64 };
65
66 static int soc_camera_platform_enum_mbus_code(struct v4l2_subdev *sd,
67 struct v4l2_subdev_pad_config *cfg,
68 struct v4l2_subdev_mbus_code_enum *code)
69 {
70 struct soc_camera_platform_info *p = v4l2_get_subdevdata(sd);
71
72 if (code->pad || code->index)
73 return -EINVAL;
74
75 code->code = p->format.code;
76 return 0;
77 }
78
79 static int soc_camera_platform_g_crop(struct v4l2_subdev *sd,
80 struct v4l2_crop *a)
81 {
82 struct soc_camera_platform_info *p = v4l2_get_subdevdata(sd);
83
84 a->c.left = 0;
85 a->c.top = 0;
86 a->c.width = p->format.width;
87 a->c.height = p->format.height;
88 a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
89
90 return 0;
91 }
92
93 static int soc_camera_platform_cropcap(struct v4l2_subdev *sd,
94 struct v4l2_cropcap *a)
95 {
96 struct soc_camera_platform_info *p = v4l2_get_subdevdata(sd);
97
98 a->bounds.left = 0;
99 a->bounds.top = 0;
100 a->bounds.width = p->format.width;
101 a->bounds.height = p->format.height;
102 a->defrect = a->bounds;
103 a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
104 a->pixelaspect.numerator = 1;
105 a->pixelaspect.denominator = 1;
106
107 return 0;
108 }
109
110 static int soc_camera_platform_g_mbus_config(struct v4l2_subdev *sd,
111 struct v4l2_mbus_config *cfg)
112 {
113 struct soc_camera_platform_info *p = v4l2_get_subdevdata(sd);
114
115 cfg->flags = p->mbus_param;
116 cfg->type = p->mbus_type;
117
118 return 0;
119 }
120
121 static struct v4l2_subdev_video_ops platform_subdev_video_ops = {
122 .s_stream = soc_camera_platform_s_stream,
123 .cropcap = soc_camera_platform_cropcap,
124 .g_crop = soc_camera_platform_g_crop,
125 .g_mbus_config = soc_camera_platform_g_mbus_config,
126 };
127
128 static const struct v4l2_subdev_pad_ops platform_subdev_pad_ops = {
129 .enum_mbus_code = soc_camera_platform_enum_mbus_code,
130 .get_fmt = soc_camera_platform_fill_fmt,
131 .set_fmt = soc_camera_platform_fill_fmt,
132 };
133
134 static struct v4l2_subdev_ops platform_subdev_ops = {
135 .core = &platform_subdev_core_ops,
136 .video = &platform_subdev_video_ops,
137 .pad = &platform_subdev_pad_ops,
138 };
139
140 static int soc_camera_platform_probe(struct platform_device *pdev)
141 {
142 struct soc_camera_host *ici;
143 struct soc_camera_platform_priv *priv;
144 struct soc_camera_platform_info *p = pdev->dev.platform_data;
145 struct soc_camera_device *icd;
146
147 if (!p)
148 return -EINVAL;
149
150 if (!p->icd) {
151 dev_err(&pdev->dev,
152 "Platform has not set soc_camera_device pointer!\n");
153 return -EINVAL;
154 }
155
156 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
157 if (!priv)
158 return -ENOMEM;
159
160 icd = p->icd;
161
162 /* soc-camera convention: control's drvdata points to the subdev */
163 platform_set_drvdata(pdev, &priv->subdev);
164 /* Set the control device reference */
165 icd->control = &pdev->dev;
166
167 ici = to_soc_camera_host(icd->parent);
168
169 v4l2_subdev_init(&priv->subdev, &platform_subdev_ops);
170 v4l2_set_subdevdata(&priv->subdev, p);
171 strncpy(priv->subdev.name, dev_name(&pdev->dev), V4L2_SUBDEV_NAME_SIZE);
172
173 return v4l2_device_register_subdev(&ici->v4l2_dev, &priv->subdev);
174 }
175
176 static int soc_camera_platform_remove(struct platform_device *pdev)
177 {
178 struct soc_camera_platform_priv *priv = get_priv(pdev);
179 struct soc_camera_platform_info *p = v4l2_get_subdevdata(&priv->subdev);
180
181 p->icd->control = NULL;
182 v4l2_device_unregister_subdev(&priv->subdev);
183 return 0;
184 }
185
186 static struct platform_driver soc_camera_platform_driver = {
187 .driver = {
188 .name = "soc_camera_platform",
189 },
190 .probe = soc_camera_platform_probe,
191 .remove = soc_camera_platform_remove,
192 };
193
194 module_platform_driver(soc_camera_platform_driver);
195
196 MODULE_DESCRIPTION("SoC Camera Platform driver");
197 MODULE_AUTHOR("Magnus Damm");
198 MODULE_LICENSE("GPL v2");
199 MODULE_ALIAS("platform:soc_camera_platform");
This page took 0.037509 seconds and 5 git commands to generate.