1 // SPDX-License-Identifier: GPL-2.0-only
3 * Support for the camera device found on Marvell MMP processors; known
4 * to work with the Armada 610 as used in the OLPC 1.75 system.
10 #include <linux/init.h>
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/interrupt.h>
14 #include <linux/spinlock.h>
15 #include <linux/slab.h>
16 #include <linux/videodev2.h>
17 #include <media/v4l2-device.h>
18 #include <linux/platform_data/media/mmp-camera.h>
19 #include <linux/device.h>
21 #include <linux/of_platform.h>
22 #include <linux/platform_device.h>
23 #include <linux/pm_runtime.h>
25 #include <linux/list.h>
27 #include <linux/clk.h>
29 #include "mcam-core.h"
31 MODULE_ALIAS("platform:mmp-camera");
33 MODULE_DESCRIPTION("Support for the camera device found on Marvell MMP processors");
34 MODULE_LICENSE("GPL");
36 static char *mcam_clks[] = {"axi", "func", "phy"};
39 struct platform_device *pdev;
40 struct mcam_camera mcam;
41 struct list_head devlist;
46 static inline struct mmp_camera *mcam_to_cam(struct mcam_camera *mcam)
48 return container_of(mcam, struct mmp_camera, mcam);
52 * calc the dphy register values
53 * There are three dphy registers being used.
54 * dphy[0] - CSI2_DPHY3
55 * dphy[1] - CSI2_DPHY5
56 * dphy[2] - CSI2_DPHY6
57 * CSI2_DPHY3 and CSI2_DPHY6 can be set with a default value
58 * or be calculated dynamically
60 static void mmpcam_calc_dphy(struct mcam_camera *mcam)
62 struct mmp_camera *cam = mcam_to_cam(mcam);
63 struct mmp_camera_platform_data *pdata = cam->pdev->dev.platform_data;
64 struct device *dev = &cam->pdev->dev;
65 unsigned long tx_clk_esc;
68 * If CSI2_DPHY3 is calculated dynamically,
69 * pdata->lane_clk should be already set
70 * either in the board driver statically
71 * or in the sensor driver dynamically.
74 * dphy[0] - CSI2_DPHY3:
75 * bit 0 ~ bit 7: HS Term Enable.
76 * defines the time that the DPHY
77 * wait before enabling the data
78 * lane termination after detecting
79 * that the sensor has driven the data
80 * lanes to the LP00 bridge state.
81 * The value is calculated by:
82 * (Max T(D_TERM_EN)/Period(DDR)) - 1
83 * bit 8 ~ bit 15: HS_SETTLE
84 * Time interval during which the HS
85 * receiver shall ignore any Data Lane
87 * The value has been calibrated on
88 * different boards. It seems to work well.
90 * More detail please refer
91 * MIPI Alliance Spectification for D-PHY
92 * document for explanation of HS-SETTLE
95 switch (pdata->dphy3_algo) {
96 case DPHY3_ALGO_PXA910:
98 * Calculate CSI2_DPHY3 algo for PXA910
101 (((1 + (pdata->lane_clk * 80) / 1000) & 0xff) << 8)
102 | (1 + pdata->lane_clk * 35 / 1000);
104 case DPHY3_ALGO_PXA2128:
106 * Calculate CSI2_DPHY3 algo for PXA2128
109 (((2 + (pdata->lane_clk * 110) / 1000) & 0xff) << 8)
110 | (1 + pdata->lane_clk * 35 / 1000);
114 * Use default CSI2_DPHY3 value for PXA688/PXA988
116 dev_dbg(dev, "camera: use the default CSI2_DPHY3 value\n");
120 * mipi_clk will never be changed, it is a fixed value on MMP
122 if (IS_ERR(cam->mipi_clk))
125 /* get the escape clk, this is hard coded */
126 clk_prepare_enable(cam->mipi_clk);
127 tx_clk_esc = (clk_get_rate(cam->mipi_clk) / 1000000) / 12;
128 clk_disable_unprepare(cam->mipi_clk);
130 * dphy[2] - CSI2_DPHY6:
131 * bit 0 ~ bit 7: CK Term Enable
132 * Time for the Clock Lane receiver to enable the HS line
133 * termination. The value is calculated similarly with
135 * bit 8 ~ bit 15: CK Settle
136 * Time interval during which the HS receiver shall ignore
137 * any Clock Lane HS transitions.
138 * The value is calibrated on the boards.
141 ((((534 * tx_clk_esc) / 2000 - 1) & 0xff) << 8)
142 | (((38 * tx_clk_esc) / 1000 - 1) & 0xff);
144 dev_dbg(dev, "camera: DPHY sets: dphy3=0x%x, dphy5=0x%x, dphy6=0x%x\n",
145 pdata->dphy[0], pdata->dphy[1], pdata->dphy[2]);
148 static irqreturn_t mmpcam_irq(int irq, void *data)
150 struct mcam_camera *mcam = data;
151 unsigned int irqs, handled;
153 spin_lock(&mcam->dev_lock);
154 irqs = mcam_reg_read(mcam, REG_IRQSTAT);
155 handled = mccic_irq(mcam, irqs);
156 spin_unlock(&mcam->dev_lock);
157 return IRQ_RETVAL(handled);
160 static void mcam_init_clk(struct mcam_camera *mcam)
164 for (i = 0; i < NR_MCAM_CLK; i++) {
165 if (mcam_clks[i] != NULL) {
166 /* Some clks are not necessary on some boards
167 * We still try to run even it fails getting clk
169 mcam->clk[i] = devm_clk_get(mcam->dev, mcam_clks[i]);
170 if (IS_ERR(mcam->clk[i]))
171 dev_warn(mcam->dev, "Could not get clk: %s\n",
177 static int mmpcam_probe(struct platform_device *pdev)
179 struct mmp_camera *cam;
180 struct mcam_camera *mcam;
181 struct resource *res;
182 struct fwnode_handle *ep;
183 struct mmp_camera_platform_data *pdata;
184 struct v4l2_async_connection *asd;
187 cam = devm_kzalloc(&pdev->dev, sizeof(*cam), GFP_KERNEL);
190 platform_set_drvdata(pdev, cam);
192 INIT_LIST_HEAD(&cam->devlist);
195 mcam->calc_dphy = mmpcam_calc_dphy;
196 mcam->dev = &pdev->dev;
197 pdata = pdev->dev.platform_data;
199 mcam->mclk_src = pdata->mclk_src;
200 mcam->mclk_div = pdata->mclk_div;
201 mcam->bus_type = pdata->bus_type;
202 mcam->dphy = pdata->dphy;
203 mcam->lane = pdata->lane;
206 * These are values that used to be hardcoded in mcam-core and
207 * work well on a OLPC XO 1.75 with a parallel bus sensor.
208 * If it turns out other setups make sense, the values should
209 * be obtained from the device tree.
214 if (mcam->bus_type == V4L2_MBUS_CSI2_DPHY) {
215 cam->mipi_clk = devm_clk_get(mcam->dev, "mipi");
216 if ((IS_ERR(cam->mipi_clk) && mcam->dphy[2] == 0))
217 return PTR_ERR(cam->mipi_clk);
219 mcam->mipi_enabled = false;
220 mcam->chip_id = MCAM_ARMADA610;
221 mcam->buffer_mode = B_DMA_sg;
222 strscpy(mcam->bus_info, "platform:mmp-camera", sizeof(mcam->bus_info));
223 spin_lock_init(&mcam->dev_lock);
225 * Get our I/O memory.
227 mcam->regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
228 if (IS_ERR(mcam->regs))
229 return PTR_ERR(mcam->regs);
230 mcam->regs_size = resource_size(res);
238 ret = v4l2_device_register(mcam->dev, &mcam->v4l2_dev);
243 * Create a match of the sensor against its OF node.
245 ep = fwnode_graph_get_next_endpoint(of_fwnode_handle(pdev->dev.of_node),
249 goto out_v4l2_device_unregister;
252 v4l2_async_nf_init(&mcam->notifier, &mcam->v4l2_dev);
254 asd = v4l2_async_nf_add_fwnode_remote(&mcam->notifier, ep,
255 struct v4l2_async_connection);
256 fwnode_handle_put(ep);
259 goto out_v4l2_device_unregister;
263 * Register the device with the core.
265 ret = mccic_register(mcam);
267 goto out_v4l2_device_unregister;
270 * Add OF clock provider.
272 ret = of_clk_add_provider(pdev->dev.of_node, of_clk_src_simple_get,
275 dev_err(&pdev->dev, "can't add DT clock provider\n");
280 * Finally, set up our IRQ now that the core is ready to
283 ret = platform_get_irq(pdev, 0);
287 ret = devm_request_irq(&pdev->dev, cam->irq, mmpcam_irq, IRQF_SHARED,
292 pm_runtime_enable(&pdev->dev);
295 mccic_shutdown(mcam);
296 out_v4l2_device_unregister:
297 v4l2_device_unregister(&mcam->v4l2_dev);
302 static void mmpcam_remove(struct platform_device *pdev)
304 struct mmp_camera *cam = platform_get_drvdata(pdev);
305 struct mcam_camera *mcam = &cam->mcam;
307 mccic_shutdown(mcam);
308 v4l2_device_unregister(&mcam->v4l2_dev);
309 pm_runtime_force_suspend(mcam->dev);
313 * Suspend/resume support.
316 static int __maybe_unused mmpcam_runtime_resume(struct device *dev)
318 struct mmp_camera *cam = dev_get_drvdata(dev);
319 struct mcam_camera *mcam = &cam->mcam;
322 for (i = 0; i < NR_MCAM_CLK; i++) {
323 if (!IS_ERR(mcam->clk[i]))
324 clk_prepare_enable(mcam->clk[i]);
330 static int __maybe_unused mmpcam_runtime_suspend(struct device *dev)
332 struct mmp_camera *cam = dev_get_drvdata(dev);
333 struct mcam_camera *mcam = &cam->mcam;
336 for (i = NR_MCAM_CLK - 1; i >= 0; i--) {
337 if (!IS_ERR(mcam->clk[i]))
338 clk_disable_unprepare(mcam->clk[i]);
344 static int __maybe_unused mmpcam_suspend(struct device *dev)
346 struct mmp_camera *cam = dev_get_drvdata(dev);
348 if (!pm_runtime_suspended(dev))
349 mccic_suspend(&cam->mcam);
353 static int __maybe_unused mmpcam_resume(struct device *dev)
355 struct mmp_camera *cam = dev_get_drvdata(dev);
357 if (!pm_runtime_suspended(dev))
358 return mccic_resume(&cam->mcam);
362 static const struct dev_pm_ops mmpcam_pm_ops = {
363 SET_RUNTIME_PM_OPS(mmpcam_runtime_suspend, mmpcam_runtime_resume, NULL)
364 SET_SYSTEM_SLEEP_PM_OPS(mmpcam_suspend, mmpcam_resume)
367 static const struct of_device_id mmpcam_of_match[] = {
368 { .compatible = "marvell,mmp2-ccic", },
371 MODULE_DEVICE_TABLE(of, mmpcam_of_match);
373 static struct platform_driver mmpcam_driver = {
374 .probe = mmpcam_probe,
375 .remove = mmpcam_remove,
377 .name = "mmp-camera",
378 .of_match_table = mmpcam_of_match,
379 .pm = &mmpcam_pm_ops,
383 module_platform_driver(mmpcam_driver);