blob: 8a5afaf2c6dca2cb24bf89aefed0b3704e0eb6be [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 {
Laurent Pinchartd272f422011-09-19 11:40:31 +020034 unsigned int meram_size; /* MERAM Buffer Size to use */
Damian7caa4342011-05-18 11:10:07 +000035};
36
37struct sh_mobile_meram_cfg {
Laurent Pinchart2a618e02011-09-19 11:40:31 +020038 struct sh_mobile_meram_icb_cfg icb[2];
Damian7caa4342011-05-18 11:10:07 +000039};
40
41struct module;
42struct sh_mobile_meram_ops {
43 struct module *module;
Damian7caa4342011-05-18 11:10:07 +000044
Laurent Pinchart4a2371772012-03-15 12:40:47 +010045 /* LCDC cache management */
46 void *(*cache_alloc)(struct sh_mobile_meram_info *meram_dev,
47 const struct sh_mobile_meram_cfg *cfg,
48 unsigned int xres, unsigned int yres,
49 unsigned int pixelformat, unsigned int *pitch);
50 void (*cache_free)(struct sh_mobile_meram_info *meram_dev, void *data);
51 void (*cache_update)(struct sh_mobile_meram_info *meram_dev, void *data,
Laurent Pinchartcdf88b92011-11-22 00:56:58 +010052 unsigned long base_addr_y,
53 unsigned long base_addr_c,
54 unsigned long *icb_addr_y,
55 unsigned long *icb_addr_c);
Damian7caa4342011-05-18 11:10:07 +000056};
57
58#endif /* __VIDEO_SH_MOBILE_MERAM_H__ */