Add ioctls to glamo framebuffer driver to enable/disable glamo engines.
[openwrt/openwrt.git] / target / linux / generic-2.6 / files-2.6.30 / include / linux / glamofb.h
1 #ifndef _LINUX_GLAMOFB_H
2 #define _LINUX_GLAMOFB_H
3
4 #include <linux/fb.h>
5 #include <linux/glamo-engine.h>
6
7 #ifdef __KERNEL__
8
9 #include <linux/spi/glamo.h>
10
11 struct glamo_core;
12
13 struct glamofb_platform_data {
14 int width, height;
15 int fb_mem_size;
16
17 int num_modes;
18 struct fb_videomode *modes;
19
20 struct glamo_spi_info *spi_info;
21 struct glamo_spigpio_info *spigpio_info;
22 struct glamo_core *glamo;
23
24 struct platform_device *mmc_dev;
25
26 /* glamo mmc platform specific info */
27 int (*glamo_can_set_mci_power)(void);
28
29 /* glamo-mci asking if it should use the slow clock to card */
30 int (*glamo_mci_use_slow)(void);
31 int (*glamo_irq_is_wired)(void);
32 void (*glamo_external_reset)(int);
33 };
34
35 int glamofb_cmd_mode(struct glamofb_handle *gfb, int on);
36 int glamofb_cmd_write(struct glamofb_handle *gfb, u_int16_t val);
37
38 #ifdef CONFIG_MFD_GLAMO
39 void glamo_lcm_reset(int level);
40 #else
41 #define glamo_lcm_reset(...) do {} while (0)
42 #endif
43
44 #endif
45
46 #define GLAMOFB_ENGINE_ENABLE _IOW('F', 0x1, __u32)
47 #define GLAMOFB_ENGINE_DISABLE _IOW('F', 0x2, __u32)
48 #define GLAMOFB_ENGINE_RESET _IOW('F', 0x3, __u32)
49
50 #endif