2008-07-17 05:59:28 +04:00
|
|
|
#ifndef __ASM_SH_MOBILE_CEU_H__
|
|
|
|
#define __ASM_SH_MOBILE_CEU_H__
|
|
|
|
|
2009-02-23 18:12:58 +03:00
|
|
|
#define SH_CEU_FLAG_USE_8BIT_BUS (1 << 0) /* use 8bit bus width */
|
|
|
|
#define SH_CEU_FLAG_USE_16BIT_BUS (1 << 1) /* use 16bit bus width */
|
2009-12-11 17:53:54 +03:00
|
|
|
#define SH_CEU_FLAG_HSYNC_LOW (1 << 2) /* default High if possible */
|
|
|
|
#define SH_CEU_FLAG_VSYNC_LOW (1 << 3) /* default High if possible */
|
2012-05-08 07:00:07 +04:00
|
|
|
#define SH_CEU_FLAG_LOWER_8BIT (1 << 4) /* default upper 8bit */
|
2008-07-17 05:59:28 +04:00
|
|
|
|
2010-07-26 19:13:34 +04:00
|
|
|
struct device;
|
2011-07-01 18:19:58 +04:00
|
|
|
struct resource;
|
|
|
|
|
|
|
|
struct sh_mobile_ceu_companion {
|
|
|
|
u32 num_resources;
|
|
|
|
struct resource *resource;
|
|
|
|
int id;
|
|
|
|
void *platform_data;
|
|
|
|
};
|
2010-07-26 19:13:34 +04:00
|
|
|
|
2008-07-17 05:59:28 +04:00
|
|
|
struct sh_mobile_ceu_info {
|
2009-02-23 18:12:58 +03:00
|
|
|
unsigned long flags;
|
2012-03-14 15:37:03 +04:00
|
|
|
int max_width;
|
|
|
|
int max_height;
|
2011-07-01 18:19:58 +04:00
|
|
|
struct sh_mobile_ceu_companion *csi2;
|
2013-01-03 22:06:35 +04:00
|
|
|
struct v4l2_async_subdev **asd; /* Flat array, arranged in groups */
|
2013-06-24 12:19:19 +04:00
|
|
|
unsigned int *asd_sizes; /* 0-terminated array pf asd group sizes */
|
2008-07-17 05:59:28 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ASM_SH_MOBILE_CEU_H__ */
|