diff options
| author | Dmitry Baryshkov <dbaryshkov@gmail.com> | 2008-10-16 01:03:55 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-16 14:21:45 -0400 |
| commit | b53cde3557b8f97e6a635782875d442551a89bf1 (patch) | |
| tree | 4ce92a40042262fb8bdba2275c4292dcc0275ac6 /include/linux/mfd | |
| parent | d5ca900603283ccb41a9c0c831dd179938d137b2 (diff) | |
fbdev: add new TMIO framebuffer driver
Add driver for TMIO framebuffer cells as found e.g. in Toshiba TC6393XB
chips.
Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
Cc: Ian Molton <spyro@f2s.com>
Acked-by: Samuel Ortiz <sameo@openedhand.com>
Acked-by: Krzysztof Helt <krzysztof.h1@wp.pl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/mfd')
| -rw-r--r-- | include/linux/mfd/tmio.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/linux/mfd/tmio.h b/include/linux/mfd/tmio.h index ec612e66391c..516d955ab8a1 100644 --- a/include/linux/mfd/tmio.h +++ b/include/linux/mfd/tmio.h | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | #ifndef MFD_TMIO_H | 1 | #ifndef MFD_TMIO_H |
| 2 | #define MFD_TMIO_H | 2 | #define MFD_TMIO_H |
| 3 | 3 | ||
| 4 | #include <linux/fb.h> | ||
| 5 | |||
| 4 | #define tmio_ioread8(addr) readb(addr) | 6 | #define tmio_ioread8(addr) readb(addr) |
| 5 | #define tmio_ioread16(addr) readw(addr) | 7 | #define tmio_ioread16(addr) readw(addr) |
| 6 | #define tmio_ioread16_rep(r, b, l) readsw(r, b, l) | 8 | #define tmio_ioread16_rep(r, b, l) readsw(r, b, l) |
| @@ -25,4 +27,21 @@ struct tmio_nand_data { | |||
| 25 | unsigned int num_partitions; | 27 | unsigned int num_partitions; |
| 26 | }; | 28 | }; |
| 27 | 29 | ||
| 30 | #define FBIO_TMIO_ACC_WRITE 0x7C639300 | ||
| 31 | #define FBIO_TMIO_ACC_SYNC 0x7C639301 | ||
| 32 | |||
| 33 | struct tmio_fb_data { | ||
| 34 | int (*lcd_set_power)(struct platform_device *fb_dev, | ||
| 35 | bool on); | ||
| 36 | int (*lcd_mode)(struct platform_device *fb_dev, | ||
| 37 | const struct fb_videomode *mode); | ||
| 38 | int num_modes; | ||
| 39 | struct fb_videomode *modes; | ||
| 40 | |||
| 41 | /* in mm: size of screen */ | ||
| 42 | int height; | ||
| 43 | int width; | ||
| 44 | }; | ||
| 45 | |||
| 46 | |||
| 28 | #endif | 47 | #endif |
