dl2k: Clean up rio_ioctl
[zen-stable.git] / drivers / media / video / marvell-ccic / mmp-driver.c
blobf7533ae4ee597289542dee7a168c1a4e644c92de
1 /*
2 * Support for the camera device found on Marvell MMP processors; known
3 * to work with the Armada 610 as used in the OLPC 1.75 system.
5 * Copyright 2011 Jonathan Corbet <corbet@lwn.net>
7 * This file may be distributed under the terms of the GNU General
8 * Public License, version 2.
9 */
11 #include <linux/init.h>
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/i2c.h>
15 #include <linux/i2c-gpio.h>
16 #include <linux/interrupt.h>
17 #include <linux/spinlock.h>
18 #include <linux/slab.h>
19 #include <linux/videodev2.h>
20 #include <media/v4l2-device.h>
21 #include <media/v4l2-chip-ident.h>
22 #include <media/mmp-camera.h>
23 #include <linux/device.h>
24 #include <linux/platform_device.h>
25 #include <linux/gpio.h>
26 #include <linux/io.h>
27 #include <linux/delay.h>
28 #include <linux/list.h>
29 #include <linux/pm.h>
31 #include "mcam-core.h"
33 MODULE_ALIAS("platform:mmp-camera");
34 MODULE_AUTHOR("Jonathan Corbet <corbet@lwn.net>");
35 MODULE_LICENSE("GPL");
37 struct mmp_camera {
38 void *power_regs;
39 struct platform_device *pdev;
40 struct mcam_camera mcam;
41 struct list_head devlist;
42 int irq;
45 static inline struct mmp_camera *mcam_to_cam(struct mcam_camera *mcam)
47 return container_of(mcam, struct mmp_camera, mcam);
51 * A silly little infrastructure so we can keep track of our devices.
52 * Chances are that we will never have more than one of them, but
53 * the Armada 610 *does* have two controllers...
56 static LIST_HEAD(mmpcam_devices);
57 static struct mutex mmpcam_devices_lock;
59 static void mmpcam_add_device(struct mmp_camera *cam)
61 mutex_lock(&mmpcam_devices_lock);
62 list_add(&cam->devlist, &mmpcam_devices);
63 mutex_unlock(&mmpcam_devices_lock);
66 static void mmpcam_remove_device(struct mmp_camera *cam)
68 mutex_lock(&mmpcam_devices_lock);
69 list_del(&cam->devlist);
70 mutex_unlock(&mmpcam_devices_lock);
74 * Platform dev remove passes us a platform_device, and there's
75 * no handy unused drvdata to stash a backpointer in. So just
76 * dig it out of our list.
78 static struct mmp_camera *mmpcam_find_device(struct platform_device *pdev)
80 struct mmp_camera *cam;
82 mutex_lock(&mmpcam_devices_lock);
83 list_for_each_entry(cam, &mmpcam_devices, devlist) {
84 if (cam->pdev == pdev) {
85 mutex_unlock(&mmpcam_devices_lock);
86 return cam;
89 mutex_unlock(&mmpcam_devices_lock);
90 return NULL;
97 * Power-related registers; this almost certainly belongs
98 * somewhere else.
100 * ARMADA 610 register manual, sec 7.2.1, p1842.
102 #define CPU_SUBSYS_PMU_BASE 0xd4282800
103 #define REG_CCIC_DCGCR 0x28 /* CCIC dyn clock gate ctrl reg */
104 #define REG_CCIC_CRCR 0x50 /* CCIC clk reset ctrl reg */
107 * Power control.
109 static void mmpcam_power_up(struct mcam_camera *mcam)
111 struct mmp_camera *cam = mcam_to_cam(mcam);
112 struct mmp_camera_platform_data *pdata;
114 * Turn on power and clocks to the controller.
116 iowrite32(0x3f, cam->power_regs + REG_CCIC_DCGCR);
117 iowrite32(0x3805b, cam->power_regs + REG_CCIC_CRCR);
118 mdelay(1);
120 * Provide power to the sensor.
122 mcam_reg_write(mcam, REG_CLKCTRL, 0x60000002);
123 pdata = cam->pdev->dev.platform_data;
124 gpio_set_value(pdata->sensor_power_gpio, 1);
125 mdelay(5);
126 mcam_reg_clear_bit(mcam, REG_CTRL1, 0x10000000);
127 gpio_set_value(pdata->sensor_reset_gpio, 0); /* reset is active low */
128 mdelay(5);
129 gpio_set_value(pdata->sensor_reset_gpio, 1); /* reset is active low */
130 mdelay(5);
133 static void mmpcam_power_down(struct mcam_camera *mcam)
135 struct mmp_camera *cam = mcam_to_cam(mcam);
136 struct mmp_camera_platform_data *pdata;
138 * Turn off clocks and set reset lines
140 iowrite32(0, cam->power_regs + REG_CCIC_DCGCR);
141 iowrite32(0, cam->power_regs + REG_CCIC_CRCR);
143 * Shut down the sensor.
145 pdata = cam->pdev->dev.platform_data;
146 gpio_set_value(pdata->sensor_power_gpio, 0);
147 gpio_set_value(pdata->sensor_reset_gpio, 0);
151 static irqreturn_t mmpcam_irq(int irq, void *data)
153 struct mcam_camera *mcam = data;
154 unsigned int irqs, handled;
156 spin_lock(&mcam->dev_lock);
157 irqs = mcam_reg_read(mcam, REG_IRQSTAT);
158 handled = mccic_irq(mcam, irqs);
159 spin_unlock(&mcam->dev_lock);
160 return IRQ_RETVAL(handled);
164 static int mmpcam_probe(struct platform_device *pdev)
166 struct mmp_camera *cam;
167 struct mcam_camera *mcam;
168 struct resource *res;
169 struct mmp_camera_platform_data *pdata;
170 int ret;
172 cam = kzalloc(sizeof(*cam), GFP_KERNEL);
173 if (cam == NULL)
174 return -ENOMEM;
175 cam->pdev = pdev;
176 INIT_LIST_HEAD(&cam->devlist);
178 mcam = &cam->mcam;
179 mcam->plat_power_up = mmpcam_power_up;
180 mcam->plat_power_down = mmpcam_power_down;
181 mcam->dev = &pdev->dev;
182 mcam->use_smbus = 0;
183 mcam->chip_id = V4L2_IDENT_ARMADA610;
184 mcam->buffer_mode = B_DMA_sg;
185 spin_lock_init(&mcam->dev_lock);
187 * Get our I/O memory.
189 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
190 if (res == NULL) {
191 dev_err(&pdev->dev, "no iomem resource!\n");
192 ret = -ENODEV;
193 goto out_free;
195 mcam->regs = ioremap(res->start, resource_size(res));
196 if (mcam->regs == NULL) {
197 dev_err(&pdev->dev, "MMIO ioremap fail\n");
198 ret = -ENODEV;
199 goto out_free;
202 * Power/clock memory is elsewhere; get it too. Perhaps this
203 * should really be managed outside of this driver?
205 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
206 if (res == NULL) {
207 dev_err(&pdev->dev, "no power resource!\n");
208 ret = -ENODEV;
209 goto out_unmap1;
211 cam->power_regs = ioremap(res->start, resource_size(res));
212 if (cam->power_regs == NULL) {
213 dev_err(&pdev->dev, "power MMIO ioremap fail\n");
214 ret = -ENODEV;
215 goto out_unmap1;
218 * Find the i2c adapter. This assumes, of course, that the
219 * i2c bus is already up and functioning.
221 pdata = pdev->dev.platform_data;
222 mcam->i2c_adapter = platform_get_drvdata(pdata->i2c_device);
223 if (mcam->i2c_adapter == NULL) {
224 ret = -ENODEV;
225 dev_err(&pdev->dev, "No i2c adapter\n");
226 goto out_unmap2;
229 * Sensor GPIO pins.
231 ret = gpio_request(pdata->sensor_power_gpio, "cam-power");
232 if (ret) {
233 dev_err(&pdev->dev, "Can't get sensor power gpio %d",
234 pdata->sensor_power_gpio);
235 goto out_unmap2;
237 gpio_direction_output(pdata->sensor_power_gpio, 0);
238 ret = gpio_request(pdata->sensor_reset_gpio, "cam-reset");
239 if (ret) {
240 dev_err(&pdev->dev, "Can't get sensor reset gpio %d",
241 pdata->sensor_reset_gpio);
242 goto out_gpio;
244 gpio_direction_output(pdata->sensor_reset_gpio, 0);
246 * Power the device up and hand it off to the core.
248 mmpcam_power_up(mcam);
249 ret = mccic_register(mcam);
250 if (ret)
251 goto out_gpio2;
253 * Finally, set up our IRQ now that the core is ready to
254 * deal with it.
256 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
257 if (res == NULL) {
258 ret = -ENODEV;
259 goto out_unregister;
261 cam->irq = res->start;
262 ret = request_irq(cam->irq, mmpcam_irq, IRQF_SHARED,
263 "mmp-camera", mcam);
264 if (ret == 0) {
265 mmpcam_add_device(cam);
266 return 0;
269 out_unregister:
270 mccic_shutdown(mcam);
271 out_gpio2:
272 mmpcam_power_down(mcam);
273 gpio_free(pdata->sensor_reset_gpio);
274 out_gpio:
275 gpio_free(pdata->sensor_power_gpio);
276 out_unmap2:
277 iounmap(cam->power_regs);
278 out_unmap1:
279 iounmap(mcam->regs);
280 out_free:
281 kfree(cam);
282 return ret;
286 static int mmpcam_remove(struct mmp_camera *cam)
288 struct mcam_camera *mcam = &cam->mcam;
289 struct mmp_camera_platform_data *pdata;
291 mmpcam_remove_device(cam);
292 free_irq(cam->irq, mcam);
293 mccic_shutdown(mcam);
294 mmpcam_power_down(mcam);
295 pdata = cam->pdev->dev.platform_data;
296 gpio_free(pdata->sensor_reset_gpio);
297 gpio_free(pdata->sensor_power_gpio);
298 iounmap(cam->power_regs);
299 iounmap(mcam->regs);
300 kfree(cam);
301 return 0;
304 static int mmpcam_platform_remove(struct platform_device *pdev)
306 struct mmp_camera *cam = mmpcam_find_device(pdev);
308 if (cam == NULL)
309 return -ENODEV;
310 return mmpcam_remove(cam);
314 * Suspend/resume support.
316 #ifdef CONFIG_PM
318 static int mmpcam_suspend(struct platform_device *pdev, pm_message_t state)
320 struct mmp_camera *cam = mmpcam_find_device(pdev);
322 if (state.event != PM_EVENT_SUSPEND)
323 return 0;
324 mccic_suspend(&cam->mcam);
325 return 0;
328 static int mmpcam_resume(struct platform_device *pdev)
330 struct mmp_camera *cam = mmpcam_find_device(pdev);
333 * Power up unconditionally just in case the core tries to
334 * touch a register even if nothing was active before; trust
335 * me, it's better this way.
337 mmpcam_power_up(&cam->mcam);
338 return mccic_resume(&cam->mcam);
341 #endif
344 static struct platform_driver mmpcam_driver = {
345 .probe = mmpcam_probe,
346 .remove = mmpcam_platform_remove,
347 #ifdef CONFIG_PM
348 .suspend = mmpcam_suspend,
349 .resume = mmpcam_resume,
350 #endif
351 .driver = {
352 .name = "mmp-camera",
353 .owner = THIS_MODULE
358 static int __init mmpcam_init_module(void)
360 mutex_init(&mmpcam_devices_lock);
361 return platform_driver_register(&mmpcam_driver);
364 static void __exit mmpcam_exit_module(void)
366 platform_driver_unregister(&mmpcam_driver);
368 * platform_driver_unregister() should have emptied the list
370 if (!list_empty(&mmpcam_devices))
371 printk(KERN_ERR "mmp_camera leaving devices behind\n");
374 module_init(mmpcam_init_module);
375 module_exit(mmpcam_exit_module);