2008-07-16 18:59:28 -07:00
|
|
|
#ifndef __ASM_SH_MOBILE_CEU_H__
|
|
|
|
#define __ASM_SH_MOBILE_CEU_H__
|
|
|
|
|
2009-02-23 08:12:58 -07: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 07:53:54 -07: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-07 20:00:07 -07:00
|
|
|
#define SH_CEU_FLAG_LOWER_8BIT (1 << 4) /* default upper 8bit */
|
2008-07-16 18:59:28 -07:00
|
|
|
|
2010-07-26 08:13:34 -07:00
|
|
|
struct device;
|
2011-07-01 07:19:58 -07:00
|
|
|
struct resource;
|
|
|
|
|
|
|
|
struct sh_mobile_ceu_companion {
|
|
|
|
u32 num_resources;
|
|
|
|
struct resource *resource;
|
|
|
|
int id;
|
|
|
|
void *platform_data;
|
|
|
|
};
|
2010-07-26 08:13:34 -07:00
|
|
|
|
2008-07-16 18:59:28 -07:00
|
|
|
struct sh_mobile_ceu_info {
|
2009-02-23 08:12:58 -07:00
|
|
|
unsigned long flags;
|
2012-03-14 04:37:03 -07:00
|
|
|
int max_width;
|
|
|
|
int max_height;
|
2011-07-01 07:19:58 -07:00
|
|
|
struct sh_mobile_ceu_companion *csi2;
|
2013-01-03 11:06:35 -07:00
|
|
|
struct v4l2_async_subdev **asd; /* Flat array, arranged in groups */
|
2013-06-24 01:19:19 -07:00
|
|
|
unsigned int *asd_sizes; /* 0-terminated array pf asd group sizes */
|
2008-07-16 18:59:28 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ASM_SH_MOBILE_CEU_H__ */
|