blob: e0f650c843c7f59e3fa68b8988c5834ec4cc92d4 [file] [log] [blame]
Damian7caa4342011-05-18 11:10:07 +00001#ifndef __VIDEO_SH_MOBILE_MERAM_H__
2#define __VIDEO_SH_MOBILE_MERAM_H__
3
4/* For sh_mobile_meram_info.addr_mode */
5enum {
6 SH_MOBILE_MERAM_MODE0 = 0,
7 SH_MOBILE_MERAM_MODE1
8};
9
10enum {
11 SH_MOBILE_MERAM_PF_NV = 0,
Damian3fedd2a2011-05-18 11:10:08 +000012 SH_MOBILE_MERAM_PF_RGB,
13 SH_MOBILE_MERAM_PF_NV24
Damian7caa4342011-05-18 11:10:07 +000014};
15
16
17struct sh_mobile_meram_priv;
18struct sh_mobile_meram_ops;
19
Laurent Pinchart48110052011-12-12 16:36:13 +010020/*
21 * struct sh_mobile_meram_info - MERAM platform data
22 * @reserved_icbs: Bitmask of reserved ICBs (for instance used through UIO)
23 */
Damian7caa4342011-05-18 11:10:07 +000024struct sh_mobile_meram_info {
25 int addr_mode;
Laurent Pinchart48110052011-12-12 16:36:13 +010026 u32 reserved_icbs;
Damian7caa4342011-05-18 11:10:07 +000027 struct sh_mobile_meram_ops *ops;
28 struct sh_mobile_meram_priv *priv;
29 struct platform_device *pdev;
30};
31
32/* icb config */
Laurent Pinchartd272f422011-09-19 11:40:31 +020033struct sh_mobile_meram_icb_cfg {
34 unsigned int marker_icb; /* ICB # for Marker ICB */
35 unsigned int cache_icb; /* ICB # for Cache ICB */
Laurent Pinchartd272f422011-09-19 11:40:31 +020036 unsigned int meram_size; /* MERAM Buffer Size to use */
Damian7caa4342011-05-18 11:10:07 +000037};
38
39struct sh_mobile_meram_cfg {
Laurent Pinchart2a618e02011-09-19 11:40:31 +020040 struct sh_mobile_meram_icb_cfg icb[2];
Damian7caa4342011-05-18 11:10:07 +000041};
42
43struct module;
44struct sh_mobile_meram_ops {
45 struct module *module;
46 /* register usage of meram */
Laurent Pinchart48110052011-12-12 16:36:13 +010047 void *(*meram_register)(struct sh_mobile_meram_info *meram_dev,
48 const struct sh_mobile_meram_cfg *cfg,
49 unsigned int xres, unsigned int yres,
50 unsigned int pixelformat,
51 unsigned long base_addr_y,
52 unsigned long base_addr_c,
53 unsigned long *icb_addr_y,
54 unsigned long *icb_addr_c,
55 unsigned int *pitch);
Damian7caa4342011-05-18 11:10:07 +000056
57 /* unregister usage of meram */
58 int (*meram_unregister)(struct sh_mobile_meram_info *meram_dev,
Laurent Pinchart48110052011-12-12 16:36:13 +010059 void *data);
Damian7caa4342011-05-18 11:10:07 +000060
61 /* update meram settings */
62 int (*meram_update)(struct sh_mobile_meram_info *meram_dev,
Laurent Pinchart48110052011-12-12 16:36:13 +010063 void *data,
Damian7caa4342011-05-18 11:10:07 +000064 unsigned long base_addr_y,
65 unsigned long base_addr_c,
66 unsigned long *icb_addr_y,
67 unsigned long *icb_addr_c);
68};
69
70#endif /* __VIDEO_SH_MOBILE_MERAM_H__ */