diff options
author | Michael Hennerich <michael.hennerich@analog.com> | 2009-12-15 19:46:21 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-16 10:20:01 -0500 |
commit | 9cfe4a93e50bb36392c8d74432e4607f297cdbfc (patch) | |
tree | 77fa42b5cd0cd0a1af2668f3ee728cd67ee8c2ad /arch | |
parent | 0769746183caff9d4334be48c7b0e7d2ec8716c4 (diff) |
fbdev: bfin-lq035q1-fb: new Blackfin Landscape LCD EZ-Extender driver
Framebuffer driver for the Landscape LCD EZ-Extender (ADZS-BFLLCD-EZEXT)
http://docs.blackfin.uclinux.org/doku.php?id=hw:cards:landscape_lcd_ez-extender
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/blackfin/include/asm/bfin-lq035q1.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/arch/blackfin/include/asm/bfin-lq035q1.h b/arch/blackfin/include/asm/bfin-lq035q1.h new file mode 100644 index 000000000000..57bc21ac2296 --- /dev/null +++ b/arch/blackfin/include/asm/bfin-lq035q1.h | |||
@@ -0,0 +1,28 @@ | |||
1 | /* | ||
2 | * Blackfin LCD Framebuffer driver SHARP LQ035Q1DH02 | ||
3 | * | ||
4 | * Copyright 2008-2009 Analog Devices Inc. | ||
5 | * Licensed under the GPL-2 or later. | ||
6 | */ | ||
7 | |||
8 | #ifndef BFIN_LQ035Q1_H | ||
9 | #define BFIN_LQ035Q1_H | ||
10 | |||
11 | #define LQ035_RL (0 << 8) /* Right -> Left Scan */ | ||
12 | #define LQ035_LR (1 << 8) /* Left -> Right Scan */ | ||
13 | #define LQ035_TB (1 << 9) /* Top -> Botton Scan */ | ||
14 | #define LQ035_BT (0 << 9) /* Botton -> Top Scan */ | ||
15 | #define LQ035_BGR (1 << 11) /* Use BGR format */ | ||
16 | #define LQ035_RGB (0 << 11) /* Use RGB format */ | ||
17 | #define LQ035_NORM (1 << 13) /* Reversal */ | ||
18 | #define LQ035_REV (0 << 13) /* Reversal */ | ||
19 | |||
20 | struct bfin_lq035q1fb_disp_info { | ||
21 | |||
22 | unsigned mode; | ||
23 | /* GPIOs */ | ||
24 | int use_bl; | ||
25 | unsigned gpio_bl; | ||
26 | }; | ||
27 | |||
28 | #endif /* BFIN_LQ035Q1_H */ | ||