Blame view

include/media/sh_mobile_ceu.h 627 Bytes
0d3244d64   Magnus Damm   V4L/DVB (8342): s...
1
2
  #ifndef __ASM_SH_MOBILE_CEU_H__
  #define __ASM_SH_MOBILE_CEU_H__
c354b400c   Kuninori Morimoto   V4L/DVB (10671): ...
3
4
  #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 */
85dc1cff0   Kuninori Morimoto   V4L/DVB (13665): ...
5
6
  #define SH_CEU_FLAG_HSYNC_LOW		(1 << 2) /* default High if possible */
  #define SH_CEU_FLAG_VSYNC_LOW		(1 << 3) /* default High if possible */
0d3244d64   Magnus Damm   V4L/DVB (8342): s...
7

b3b5020d8   Guennadi Liakhovetski   V4L/DVB: V4L2: sh...
8
  struct device;
6b526fed0   Guennadi Liakhovetski   [media] V4L: sh_m...
9
10
11
12
13
14
15
16
  struct resource;
  
  struct sh_mobile_ceu_companion {
  	u32		num_resources;
  	struct resource	*resource;
  	int		id;
  	void		*platform_data;
  };
b3b5020d8   Guennadi Liakhovetski   V4L/DVB: V4L2: sh...
17

0d3244d64   Magnus Damm   V4L/DVB (8342): s...
18
  struct sh_mobile_ceu_info {
c354b400c   Kuninori Morimoto   V4L/DVB (10671): ...
19
  	unsigned long flags;
6b526fed0   Guennadi Liakhovetski   [media] V4L: sh_m...
20
  	struct sh_mobile_ceu_companion *csi2;
0d3244d64   Magnus Damm   V4L/DVB (8342): s...
21
22
23
  };
  
  #endif /* __ASM_SH_MOBILE_CEU_H__ */