diff options
author | Krzysztof Helt <krzysztof.h1@wp.pl> | 2007-10-16 04:28:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:43:14 -0400 |
commit | e7f76df9648ccd69a99fe6bc7d774dc05922f2f0 (patch) | |
tree | 6ec2d9ad3aeef81b0a89f2eb8f8c63414582d8db /include/video | |
parent | 0a0b53f66043b4f4da728b391232de5e5d22f145 (diff) |
pm3fb: copyarea and partial imageblit suppor
This patch adds accelerated copyarea and partially accelerated imageblit
functions. There is also fixed one register address in the pm3fb.h file.
Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>
Signed-off-by: Antonino Daplas <adaplas@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/pm3fb.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/video/pm3fb.h b/include/video/pm3fb.h index d52e45a1e9b8..871f707c7250 100644 --- a/include/video/pm3fb.h +++ b/include/video/pm3fb.h | |||
@@ -849,7 +849,7 @@ | |||
849 | #define PM3Render_FBSourceRead_Enable (1<<27) | 849 | #define PM3Render_FBSourceRead_Enable (1<<27) |
850 | #define PM3RasterizerMode 0x80a0 | 850 | #define PM3RasterizerMode 0x80a0 |
851 | #define PM3RasterizerModeAnd 0xaba0 | 851 | #define PM3RasterizerModeAnd 0xaba0 |
852 | #define PM3RasterizerModeOr 0xabb8 | 852 | #define PM3RasterizerModeOr 0xaba8 |
853 | #define PM3RectangleHeight 0x94e0 | 853 | #define PM3RectangleHeight 0x94e0 |
854 | #define PM3Render 0x8038 | 854 | #define PM3Render 0x8038 |
855 | #define PM3RepeatLine 0x9328 | 855 | #define PM3RepeatLine 0x9328 |
@@ -1116,6 +1116,9 @@ | |||
1116 | /* ***** pm3fb useful define and macro ***** */ | 1116 | /* ***** pm3fb useful define and macro ***** */ |
1117 | /* ***************************************** */ | 1117 | /* ***************************************** */ |
1118 | 1118 | ||
1119 | /* fifo size in chip */ | ||
1120 | #define PM3_FIFO_SIZE 120 | ||
1121 | |||
1119 | /* max size of options */ | 1122 | /* max size of options */ |
1120 | #define PM3_OPTIONS_SIZE 256 | 1123 | #define PM3_OPTIONS_SIZE 256 |
1121 | 1124 | ||