[media] MAINTAINERS: Add s5c73m3 driver entry
[deliverable/linux.git] / drivers / media / platform / s5p-fimc / fimc-mdevice.h
CommitLineData
d3953223 1/*
0c9204d3 2 * Copyright (C) 2011 - 2012 Samsung Electronics Co., Ltd.
d3953223
SN
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#ifndef FIMC_MDEVICE_H_
10#define FIMC_MDEVICE_H_
11
12#include <linux/clk.h>
13#include <linux/platform_device.h>
14#include <linux/mutex.h>
15#include <media/media-device.h>
16#include <media/media-entity.h>
17#include <media/v4l2-device.h>
18#include <media/v4l2-subdev.h>
19
20#include "fimc-core.h"
4af81310 21#include "fimc-lite.h"
d3953223
SN
22#include "mipi-csis.h"
23
4af81310 24/* Group IDs of sensor, MIPI-CSIS, FIMC-LITE and the writeback subdevs. */
588c87be
SN
25#define GRP_ID_SENSOR (1 << 8)
26#define GRP_ID_FIMC_IS_SENSOR (1 << 9)
27#define GRP_ID_WRITEBACK (1 << 10)
28#define GRP_ID_CSIS (1 << 11)
29#define GRP_ID_FIMC (1 << 12)
30#define GRP_ID_FLITE (1 << 13)
31#define GRP_ID_FIMC_IS (1 << 14)
d3953223
SN
32
33#define FIMC_MAX_SENSORS 8
34#define FIMC_MAX_CAMCLKS 2
35
36struct fimc_csis_info {
37 struct v4l2_subdev *sd;
38 int id;
39};
40
41struct fimc_camclk_info {
42 struct clk *clock;
43 int use_count;
44 unsigned long frequency;
45};
46
47/**
48 * struct fimc_sensor_info - image data source subdev information
49 * @pdata: sensor's atrributes passed as media device's platform data
50 * @subdev: image sensor v4l2 subdev
51 * @host: fimc device the sensor is currently linked to
d3953223
SN
52 *
53 * This data structure applies to image sensor and the writeback subdevs.
54 */
55struct fimc_sensor_info {
6612a082 56 struct s5p_fimc_isp_info pdata;
d3953223
SN
57 struct v4l2_subdev *subdev;
58 struct fimc_dev *host;
d3953223
SN
59};
60
61/**
62 * struct fimc_md - fimc media device information
63 * @csis: MIPI CSIS subdevs data
64 * @sensor: array of registered sensor subdevs
65 * @num_sensors: actual number of registered sensors
66 * @camclk: external sensor clock information
67 * @fimc: array of registered fimc devices
68 * @media_dev: top level media device
69 * @v4l2_dev: top level v4l2_device holding up the subdevs
70 * @pdev: platform device this media device is hooked up into
71 * @user_subdev_api: true if subdevs are not configured by the host driver
72 * @slock: spinlock protecting @sensor array
73 */
74struct fimc_md {
75 struct fimc_csis_info csis[CSIS_MAX_ENTITIES];
76 struct fimc_sensor_info sensor[FIMC_MAX_SENSORS];
77 int num_sensors;
78 struct fimc_camclk_info camclk[FIMC_MAX_CAMCLKS];
4af81310 79 struct fimc_lite *fimc_lite[FIMC_LITE_MAX_DEVS];
d3953223
SN
80 struct fimc_dev *fimc[FIMC_MAX_DEVS];
81 struct media_device media_dev;
82 struct v4l2_device v4l2_dev;
83 struct platform_device *pdev;
84 bool user_subdev_api;
85 spinlock_t slock;
86};
87
88#define is_subdev_pad(pad) (pad == NULL || \
89 media_entity_type(pad->entity) == MEDIA_ENT_T_V4L2_SUBDEV)
90
91#define me_subtype(me) \
92 ((me->type) & (MEDIA_ENT_TYPE_MASK | MEDIA_ENT_SUBTYPE_MASK))
93
94#define subdev_has_devnode(__sd) (__sd->flags & V4L2_SUBDEV_FL_HAS_DEVNODE)
95
96static inline struct fimc_md *entity_to_fimc_mdev(struct media_entity *me)
97{
98 return me->parent == NULL ? NULL :
99 container_of(me->parent, struct fimc_md, media_dev);
100}
101
102static inline void fimc_md_graph_lock(struct fimc_dev *fimc)
103{
31d34d9b 104 mutex_lock(&fimc->vid_cap.vfd.entity.parent->graph_mutex);
d3953223
SN
105}
106
107static inline void fimc_md_graph_unlock(struct fimc_dev *fimc)
108{
31d34d9b 109 mutex_unlock(&fimc->vid_cap.vfd.entity.parent->graph_mutex);
d3953223
SN
110}
111
112int fimc_md_set_camclk(struct v4l2_subdev *sd, bool on);
d3953223
SN
113
114#endif
This page took 0.116988 seconds and 5 git commands to generate.