2 * Arm PrimeCell PL110 Color LCD Controller
4 * Copyright (c) 2005 CodeSourcery, LLC.
5 * Written by Paul Brook
7 * This code is licenced under the GNU LGPL
9 * Framebuffer format conversion routines.
15 #define COPY_PIXEL(to, from) *(to++) = from
16 #elif BITS == 15 || BITS == 16
17 #define COPY_PIXEL(to, from) *(uint16_t *)to = from; to += 2;
19 #define COPY_PIXEL(to, from) \
20 *(to++) = from; *(to++) = (from) >> 8; *(to++) = (from) >> 16
22 #define COPY_PIXEL(to, from) *(uint32_t *)to = from; to += 4;
24 #error unknown bit depth
30 #include "pl110_template.h"
32 #include "pl110_template.h"
34 #include "pl110_template.h"
39 #include "pl110_template.h"
41 #include "pl110_template.h"
43 #include "pl110_template.h"
46 static drawfn glue(pl110_draw_fn_,BITS)[36] =
48 glue(pl110_draw_line1_lblp_bgr,BITS),
49 glue(pl110_draw_line2_lblp_bgr,BITS),
50 glue(pl110_draw_line4_lblp_bgr,BITS),
51 glue(pl110_draw_line8_lblp_bgr,BITS),
52 glue(pl110_draw_line16_lblp_bgr,BITS),
53 glue(pl110_draw_line32_lblp_bgr,BITS),
55 glue(pl110_draw_line1_bbbp_bgr,BITS),
56 glue(pl110_draw_line2_bbbp_bgr,BITS),
57 glue(pl110_draw_line4_bbbp_bgr,BITS),
58 glue(pl110_draw_line8_bbbp_bgr,BITS),
59 glue(pl110_draw_line16_bbbp_bgr,BITS),
60 glue(pl110_draw_line32_bbbp_bgr,BITS),
62 glue(pl110_draw_line1_lbbp_bgr,BITS),
63 glue(pl110_draw_line2_lbbp_bgr,BITS),
64 glue(pl110_draw_line4_lbbp_bgr,BITS),
65 glue(pl110_draw_line8_lbbp_bgr,BITS),
66 glue(pl110_draw_line16_lbbp_bgr,BITS),
67 glue(pl110_draw_line32_lbbp_bgr,BITS),
69 glue(pl110_draw_line1_lblp_rgb,BITS),
70 glue(pl110_draw_line2_lblp_rgb,BITS),
71 glue(pl110_draw_line4_lblp_rgb,BITS),
72 glue(pl110_draw_line8_lblp_rgb,BITS),
73 glue(pl110_draw_line16_lblp_rgb,BITS),
74 glue(pl110_draw_line32_lblp_rgb,BITS),
76 glue(pl110_draw_line1_bbbp_rgb,BITS),
77 glue(pl110_draw_line2_bbbp_rgb,BITS),
78 glue(pl110_draw_line4_bbbp_rgb,BITS),
79 glue(pl110_draw_line8_bbbp_rgb,BITS),
80 glue(pl110_draw_line16_bbbp_rgb,BITS),
81 glue(pl110_draw_line32_bbbp_rgb,BITS),
83 glue(pl110_draw_line1_lbbp_rgb,BITS),
84 glue(pl110_draw_line2_lbbp_rgb,BITS),
85 glue(pl110_draw_line4_lbbp_rgb,BITS),
86 glue(pl110_draw_line8_lbbp_rgb,BITS),
87 glue(pl110_draw_line16_lbbp_rgb,BITS),
88 glue(pl110_draw_line32_lbbp_rgb,BITS),
97 #define NAME glue(glue(lblp_, BORDER), BITS)
98 #ifdef WORDS_BIGENDIAN
102 #define NAME glue(glue(bbbp_, BORDER), BITS)
103 #ifndef WORDS_BIGENDIAN
107 #define SWAP_PIXELS 1
108 #define NAME glue(glue(lbbp_, BORDER), BITS)
109 #ifdef WORDS_BIGENDIAN
114 #define FN_2(x, y) FN(x, y) FN(x+1, y)
115 #define FN_4(x, y) FN_2(x, y) FN_2(x+2, y)
116 #define FN_8(y) FN_4(0, y) FN_4(4, y)
118 static void glue(pl110_draw_line1_,NAME)(uint32_t *pallette, uint8_t *d, const uint8_t *src, int width)
122 data = *(uint32_t *)src;
124 #define FN(x, y) COPY_PIXEL(d, pallette[(data >> (y + 7 - (x))) & 1]);
126 #define FN(x, y) COPY_PIXEL(d, pallette[(data >> ((x) + y)) & 1]);
145 static void glue(pl110_draw_line2_,NAME)(uint32_t *pallette, uint8_t *d, const uint8_t *src, int width)
149 data = *(uint32_t *)src;
151 #define FN(x, y) COPY_PIXEL(d, pallette[(data >> (y + 6 - (x)*2)) & 3]);
153 #define FN(x, y) COPY_PIXEL(d, pallette[(data >> ((x)*2 + y)) & 3]);
172 static void glue(pl110_draw_line4_,NAME)(uint32_t *pallette, uint8_t *d, const uint8_t *src, int width)
176 data = *(uint32_t *)src;
178 #define FN(x, y) COPY_PIXEL(d, pallette[(data >> (y + 4 - (x)*4)) & 0xf]);
180 #define FN(x, y) COPY_PIXEL(d, pallette[(data >> ((x)*4 + y)) & 0xf]);
199 static void glue(pl110_draw_line8_,NAME)(uint32_t *pallette, uint8_t *d, const uint8_t *src, int width)
203 data = *(uint32_t *)src;
204 #define FN(x) COPY_PIXEL(d, pallette[(data >> (x)) & 0xff]);
222 static void glue(pl110_draw_line16_,NAME)(uint32_t *pallette, uint8_t *d, const uint8_t *src, int width)
225 unsigned int r, g, b;
227 data = *(uint32_t *)src;
229 data = bswap32(data);
246 LSB = (data & 0x1f) << 3;
248 g = (data & 0x3f) << 2;
250 MSB = (data & 0x1f) << 3;
253 COPY_PIXEL(d, glue(rgb_to_pixel,BITS)(r, g, b));
254 LSB = (data & 0x1f) << 3;
256 g = (data & 0x3f) << 2;
258 MSB = (data & 0x1f) << 3;
260 COPY_PIXEL(d, glue(rgb_to_pixel,BITS)(r, g, b));
268 static void glue(pl110_draw_line32_,NAME)(uint32_t *pallette, uint8_t *d, const uint8_t *src, int width)
271 unsigned int r, g, b;
273 data = *(uint32_t *)src;
283 g = (data >> 8) & 0xff;
284 MSB = (data >> 16) & 0xff;
286 LSB = (data >> 24) & 0xff;
287 g = (data >> 16) & 0xff;
288 MSB = (data >> 8) & 0xff;
290 COPY_PIXEL(d, glue(rgb_to_pixel,BITS)(r, g, b));