2008-07-17 01:59:28 +00:00
|
|
|
#ifndef __ASM_SH_MOBILE_CEU_H__
|
|
|
|
#define __ASM_SH_MOBILE_CEU_H__
|
|
|
|
|
2009-02-23 15:12:58 +00: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 14:53:54 +00: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 */
|
2008-07-17 01:59:28 +00:00
|
|
|
|
2010-07-26 15:13:34 +00:00
|
|
|
struct device;
|
|
|
|
|
2008-07-17 01:59:28 +00:00
|
|
|
struct sh_mobile_ceu_info {
|
2009-02-23 15:12:58 +00:00
|
|
|
unsigned long flags;
|
2010-07-26 15:13:34 +00:00
|
|
|
struct device *csi2_dev;
|
2008-07-17 01:59:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ASM_SH_MOBILE_CEU_H__ */
|