1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2016 NextThing Co
4  * Copyright (C) 2016-2019 Bootlin
5  *
6  * Author: Maxime Ripard <maxime.ripard@bootlin.com>
7  */
8 
9 #include <linux/clk.h>
10 #include <linux/dma-mapping.h>
11 #include <linux/interrupt.h>
12 #include <linux/module.h>
13 #include <linux/mutex.h>
14 #include <linux/of.h>
15 #include <linux/of_device.h>
16 #include <linux/of_graph.h>
17 #include <linux/platform_device.h>
18 #include <linux/pm_runtime.h>
19 #include <linux/reset.h>
20 #include <linux/videodev2.h>
21 
22 #include <media/v4l2-dev.h>
23 #include <media/v4l2-device.h>
24 #include <media/v4l2-fwnode.h>
25 #include <media/v4l2-ioctl.h>
26 #include <media/v4l2-mediabus.h>
27 
28 #include <media/videobuf2-core.h>
29 #include <media/videobuf2-dma-contig.h>
30 
31 #include "sun4i_csi.h"
32 
33 struct sun4i_csi_traits {
34 	unsigned int channels;
35 	unsigned int max_width;
36 	bool has_isp;
37 };
38 
39 static const struct media_entity_operations sun4i_csi_video_entity_ops = {
40 	.link_validate = v4l2_subdev_link_validate,
41 };
42 
43 static int sun4i_csi_notify_bound(struct v4l2_async_notifier *notifier,
44 				  struct v4l2_subdev *subdev,
45 				  struct v4l2_async_subdev *asd)
46 {
47 	struct sun4i_csi *csi = container_of(notifier, struct sun4i_csi,
48 					     notifier);
49 
50 	csi->src_subdev = subdev;
51 	csi->src_pad = media_entity_get_fwnode_pad(&subdev->entity,
52 						   subdev->fwnode,
53 						   MEDIA_PAD_FL_SOURCE);
54 	if (csi->src_pad < 0) {
55 		dev_err(csi->dev, "Couldn't find output pad for subdev %s\n",
56 			subdev->name);
57 		return csi->src_pad;
58 	}
59 
60 	dev_dbg(csi->dev, "Bound %s pad: %d\n", subdev->name, csi->src_pad);
61 	return 0;
62 }
63 
64 static int sun4i_csi_notify_complete(struct v4l2_async_notifier *notifier)
65 {
66 	struct sun4i_csi *csi = container_of(notifier, struct sun4i_csi,
67 					     notifier);
68 	struct v4l2_subdev *subdev = &csi->subdev;
69 	struct video_device *vdev = &csi->vdev;
70 	int ret;
71 
72 	ret = v4l2_device_register_subdev(&csi->v4l, subdev);
73 	if (ret < 0)
74 		return ret;
75 
76 	ret = sun4i_csi_v4l2_register(csi);
77 	if (ret < 0)
78 		return ret;
79 
80 	ret = media_device_register(&csi->mdev);
81 	if (ret)
82 		return ret;
83 
84 	/* Create link from subdev to main device */
85 	ret = media_create_pad_link(&subdev->entity, CSI_SUBDEV_SOURCE,
86 				    &vdev->entity, 0,
87 				    MEDIA_LNK_FL_ENABLED |
88 				    MEDIA_LNK_FL_IMMUTABLE);
89 	if (ret)
90 		goto err_clean_media;
91 
92 	ret = media_create_pad_link(&csi->src_subdev->entity, csi->src_pad,
93 				    &subdev->entity, CSI_SUBDEV_SINK,
94 				    MEDIA_LNK_FL_ENABLED |
95 				    MEDIA_LNK_FL_IMMUTABLE);
96 	if (ret)
97 		goto err_clean_media;
98 
99 	ret = v4l2_device_register_subdev_nodes(&csi->v4l);
100 	if (ret < 0)
101 		goto err_clean_media;
102 
103 	return 0;
104 
105 err_clean_media:
106 	media_device_unregister(&csi->mdev);
107 
108 	return ret;
109 }
110 
111 static const struct v4l2_async_notifier_operations sun4i_csi_notify_ops = {
112 	.bound		= sun4i_csi_notify_bound,
113 	.complete	= sun4i_csi_notify_complete,
114 };
115 
116 static int sun4i_csi_notifier_init(struct sun4i_csi *csi)
117 {
118 	struct v4l2_fwnode_endpoint vep = {
119 		.bus_type = V4L2_MBUS_PARALLEL,
120 	};
121 	struct v4l2_async_subdev *asd;
122 	struct fwnode_handle *ep;
123 	int ret;
124 
125 	v4l2_async_nf_init(&csi->notifier);
126 
127 	ep = fwnode_graph_get_endpoint_by_id(dev_fwnode(csi->dev), 0, 0,
128 					     FWNODE_GRAPH_ENDPOINT_NEXT);
129 	if (!ep)
130 		return -EINVAL;
131 
132 	ret = v4l2_fwnode_endpoint_parse(ep, &vep);
133 	if (ret)
134 		goto out;
135 
136 	csi->bus = vep.bus.parallel;
137 
138 	asd = v4l2_async_nf_add_fwnode_remote(&csi->notifier, ep,
139 					      struct v4l2_async_subdev);
140 	if (IS_ERR(asd)) {
141 		ret = PTR_ERR(asd);
142 		goto out;
143 	}
144 
145 	csi->notifier.ops = &sun4i_csi_notify_ops;
146 
147 out:
148 	fwnode_handle_put(ep);
149 	return ret;
150 }
151 
152 static int sun4i_csi_probe(struct platform_device *pdev)
153 {
154 	struct v4l2_subdev *subdev;
155 	struct video_device *vdev;
156 	struct sun4i_csi *csi;
157 	int ret;
158 	int irq;
159 
160 	csi = devm_kzalloc(&pdev->dev, sizeof(*csi), GFP_KERNEL);
161 	if (!csi)
162 		return -ENOMEM;
163 	platform_set_drvdata(pdev, csi);
164 	csi->dev = &pdev->dev;
165 	subdev = &csi->subdev;
166 	vdev = &csi->vdev;
167 
168 	csi->traits = of_device_get_match_data(&pdev->dev);
169 	if (!csi->traits)
170 		return -EINVAL;
171 
172 	csi->mdev.dev = csi->dev;
173 	strscpy(csi->mdev.model, "Allwinner Video Capture Device",
174 		sizeof(csi->mdev.model));
175 	csi->mdev.hw_revision = 0;
176 	snprintf(csi->mdev.bus_info, sizeof(csi->mdev.bus_info), "platform:%s",
177 		 dev_name(csi->dev));
178 	media_device_init(&csi->mdev);
179 	csi->v4l.mdev = &csi->mdev;
180 
181 	csi->regs = devm_platform_ioremap_resource(pdev, 0);
182 	if (IS_ERR(csi->regs))
183 		return PTR_ERR(csi->regs);
184 
185 	irq = platform_get_irq(pdev, 0);
186 	if (irq < 0)
187 		return irq;
188 
189 	csi->bus_clk = devm_clk_get(&pdev->dev, "bus");
190 	if (IS_ERR(csi->bus_clk)) {
191 		dev_err(&pdev->dev, "Couldn't get our bus clock\n");
192 		return PTR_ERR(csi->bus_clk);
193 	}
194 
195 	if (csi->traits->has_isp) {
196 		csi->isp_clk = devm_clk_get(&pdev->dev, "isp");
197 		if (IS_ERR(csi->isp_clk)) {
198 			dev_err(&pdev->dev, "Couldn't get our ISP clock\n");
199 			return PTR_ERR(csi->isp_clk);
200 		}
201 	}
202 
203 	csi->ram_clk = devm_clk_get(&pdev->dev, "ram");
204 	if (IS_ERR(csi->ram_clk)) {
205 		dev_err(&pdev->dev, "Couldn't get our ram clock\n");
206 		return PTR_ERR(csi->ram_clk);
207 	}
208 
209 	csi->rst = devm_reset_control_get(&pdev->dev, NULL);
210 	if (IS_ERR(csi->rst)) {
211 		dev_err(&pdev->dev, "Couldn't get our reset line\n");
212 		return PTR_ERR(csi->rst);
213 	}
214 
215 	/* Initialize subdev */
216 	v4l2_subdev_init(subdev, &sun4i_csi_subdev_ops);
217 	subdev->flags = V4L2_SUBDEV_FL_HAS_DEVNODE | V4L2_SUBDEV_FL_HAS_EVENTS;
218 	subdev->entity.function = MEDIA_ENT_F_VID_IF_BRIDGE;
219 	subdev->owner = THIS_MODULE;
220 	snprintf(subdev->name, sizeof(subdev->name), "sun4i-csi-0");
221 	v4l2_set_subdevdata(subdev, csi);
222 
223 	csi->subdev_pads[CSI_SUBDEV_SINK].flags =
224 		MEDIA_PAD_FL_SINK | MEDIA_PAD_FL_MUST_CONNECT;
225 	csi->subdev_pads[CSI_SUBDEV_SOURCE].flags = MEDIA_PAD_FL_SOURCE;
226 	ret = media_entity_pads_init(&subdev->entity, CSI_SUBDEV_PADS,
227 				     csi->subdev_pads);
228 	if (ret < 0)
229 		return ret;
230 
231 	csi->vdev_pad.flags = MEDIA_PAD_FL_SINK | MEDIA_PAD_FL_MUST_CONNECT;
232 	vdev->entity.ops = &sun4i_csi_video_entity_ops;
233 	ret = media_entity_pads_init(&vdev->entity, 1, &csi->vdev_pad);
234 	if (ret < 0)
235 		return ret;
236 
237 	ret = sun4i_csi_dma_register(csi, irq);
238 	if (ret)
239 		goto err_clean_pad;
240 
241 	ret = sun4i_csi_notifier_init(csi);
242 	if (ret)
243 		goto err_unregister_media;
244 
245 	ret = v4l2_async_nf_register(&csi->v4l, &csi->notifier);
246 	if (ret) {
247 		dev_err(csi->dev, "Couldn't register our notifier.\n");
248 		goto err_unregister_media;
249 	}
250 
251 	pm_runtime_enable(&pdev->dev);
252 
253 	return 0;
254 
255 err_unregister_media:
256 	media_device_unregister(&csi->mdev);
257 	sun4i_csi_dma_unregister(csi);
258 
259 err_clean_pad:
260 	media_device_cleanup(&csi->mdev);
261 
262 	return ret;
263 }
264 
265 static int sun4i_csi_remove(struct platform_device *pdev)
266 {
267 	struct sun4i_csi *csi = platform_get_drvdata(pdev);
268 
269 	v4l2_async_nf_unregister(&csi->notifier);
270 	v4l2_async_nf_cleanup(&csi->notifier);
271 	vb2_video_unregister_device(&csi->vdev);
272 	media_device_unregister(&csi->mdev);
273 	sun4i_csi_dma_unregister(csi);
274 	media_device_cleanup(&csi->mdev);
275 
276 	return 0;
277 }
278 
279 static const struct sun4i_csi_traits sun4i_a10_csi1_traits = {
280 	.channels = 1,
281 	.max_width = 24,
282 	.has_isp = false,
283 };
284 
285 static const struct sun4i_csi_traits sun7i_a20_csi0_traits = {
286 	.channels = 4,
287 	.max_width = 16,
288 	.has_isp = true,
289 };
290 
291 static const struct of_device_id sun4i_csi_of_match[] = {
292 	{ .compatible = "allwinner,sun4i-a10-csi1", .data = &sun4i_a10_csi1_traits },
293 	{ .compatible = "allwinner,sun7i-a20-csi0", .data = &sun7i_a20_csi0_traits },
294 	{ /* Sentinel */ }
295 };
296 MODULE_DEVICE_TABLE(of, sun4i_csi_of_match);
297 
298 static int __maybe_unused sun4i_csi_runtime_resume(struct device *dev)
299 {
300 	struct sun4i_csi *csi = dev_get_drvdata(dev);
301 
302 	reset_control_deassert(csi->rst);
303 	clk_prepare_enable(csi->bus_clk);
304 	clk_prepare_enable(csi->ram_clk);
305 	clk_set_rate(csi->isp_clk, 80000000);
306 	clk_prepare_enable(csi->isp_clk);
307 
308 	writel(1, csi->regs + CSI_EN_REG);
309 
310 	return 0;
311 }
312 
313 static int __maybe_unused sun4i_csi_runtime_suspend(struct device *dev)
314 {
315 	struct sun4i_csi *csi = dev_get_drvdata(dev);
316 
317 	clk_disable_unprepare(csi->isp_clk);
318 	clk_disable_unprepare(csi->ram_clk);
319 	clk_disable_unprepare(csi->bus_clk);
320 
321 	reset_control_assert(csi->rst);
322 
323 	return 0;
324 }
325 
326 static const struct dev_pm_ops sun4i_csi_pm_ops = {
327 	SET_RUNTIME_PM_OPS(sun4i_csi_runtime_suspend,
328 			   sun4i_csi_runtime_resume,
329 			   NULL)
330 };
331 
332 static struct platform_driver sun4i_csi_driver = {
333 	.probe	= sun4i_csi_probe,
334 	.remove	= sun4i_csi_remove,
335 	.driver	= {
336 		.name		= "sun4i-csi",
337 		.of_match_table	= sun4i_csi_of_match,
338 		.pm		= &sun4i_csi_pm_ops,
339 	},
340 };
341 module_platform_driver(sun4i_csi_driver);
342 
343 MODULE_DESCRIPTION("Allwinner A10 Camera Sensor Interface driver");
344 MODULE_AUTHOR("Maxime Ripard <mripard@kernel.org>");
345 MODULE_LICENSE("GPL");
346