2 * Arm PrimeCell PL110 Color LCD Controller
4 * Copyright (c) 2005 CodeSourcery, LLC.
5 * Written by Paul Brook
7 * This code is licensed 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 "hw/pl110_template.h"
32 #include "hw/pl110_template.h"
34 #include "hw/pl110_template.h"
39 #include "hw/pl110_template.h"
41 #include "hw/pl110_template.h"
43 #include "hw/pl110_template.h"
46 static drawfn
glue(pl110_draw_fn_
,BITS
)[48] =
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_555_lblp_bgr
,BITS
),
53 glue(pl110_draw_line32_lblp_bgr
,BITS
),
54 glue(pl110_draw_line16_lblp_bgr
,BITS
),
55 glue(pl110_draw_line12_lblp_bgr
,BITS
),
57 glue(pl110_draw_line1_bbbp_bgr
,BITS
),
58 glue(pl110_draw_line2_bbbp_bgr
,BITS
),
59 glue(pl110_draw_line4_bbbp_bgr
,BITS
),
60 glue(pl110_draw_line8_bbbp_bgr
,BITS
),
61 glue(pl110_draw_line16_555_bbbp_bgr
,BITS
),
62 glue(pl110_draw_line32_bbbp_bgr
,BITS
),
63 glue(pl110_draw_line16_bbbp_bgr
,BITS
),
64 glue(pl110_draw_line12_bbbp_bgr
,BITS
),
66 glue(pl110_draw_line1_lbbp_bgr
,BITS
),
67 glue(pl110_draw_line2_lbbp_bgr
,BITS
),
68 glue(pl110_draw_line4_lbbp_bgr
,BITS
),
69 glue(pl110_draw_line8_lbbp_bgr
,BITS
),
70 glue(pl110_draw_line16_555_lbbp_bgr
,BITS
),
71 glue(pl110_draw_line32_lbbp_bgr
,BITS
),
72 glue(pl110_draw_line16_lbbp_bgr
,BITS
),
73 glue(pl110_draw_line12_lbbp_bgr
,BITS
),
75 glue(pl110_draw_line1_lblp_rgb
,BITS
),
76 glue(pl110_draw_line2_lblp_rgb
,BITS
),
77 glue(pl110_draw_line4_lblp_rgb
,BITS
),
78 glue(pl110_draw_line8_lblp_rgb
,BITS
),
79 glue(pl110_draw_line16_555_lblp_rgb
,BITS
),
80 glue(pl110_draw_line32_lblp_rgb
,BITS
),
81 glue(pl110_draw_line16_lblp_rgb
,BITS
),
82 glue(pl110_draw_line12_lblp_rgb
,BITS
),
84 glue(pl110_draw_line1_bbbp_rgb
,BITS
),
85 glue(pl110_draw_line2_bbbp_rgb
,BITS
),
86 glue(pl110_draw_line4_bbbp_rgb
,BITS
),
87 glue(pl110_draw_line8_bbbp_rgb
,BITS
),
88 glue(pl110_draw_line16_555_bbbp_rgb
,BITS
),
89 glue(pl110_draw_line32_bbbp_rgb
,BITS
),
90 glue(pl110_draw_line16_bbbp_rgb
,BITS
),
91 glue(pl110_draw_line12_bbbp_rgb
,BITS
),
93 glue(pl110_draw_line1_lbbp_rgb
,BITS
),
94 glue(pl110_draw_line2_lbbp_rgb
,BITS
),
95 glue(pl110_draw_line4_lbbp_rgb
,BITS
),
96 glue(pl110_draw_line8_lbbp_rgb
,BITS
),
97 glue(pl110_draw_line16_555_lbbp_rgb
,BITS
),
98 glue(pl110_draw_line32_lbbp_rgb
,BITS
),
99 glue(pl110_draw_line16_lbbp_rgb
,BITS
),
100 glue(pl110_draw_line12_lbbp_rgb
,BITS
),
109 #define NAME glue(glue(lblp_, BORDER), BITS)
110 #ifdef HOST_WORDS_BIGENDIAN
114 #define NAME glue(glue(bbbp_, BORDER), BITS)
115 #ifndef HOST_WORDS_BIGENDIAN
119 #define SWAP_PIXELS 1
120 #define NAME glue(glue(lbbp_, BORDER), BITS)
121 #ifdef HOST_WORDS_BIGENDIAN
126 #define FN_2(x, y) FN(x, y) FN(x+1, y)
127 #define FN_4(x, y) FN_2(x, y) FN_2(x+2, y)
128 #define FN_8(y) FN_4(0, y) FN_4(4, y)
130 static void glue(pl110_draw_line1_
,NAME
)(void *opaque
, uint8_t *d
, const uint8_t *src
, int width
, int deststep
)
132 uint32_t *palette
= opaque
;
135 data
= *(uint32_t *)src
;
137 #define FN(x, y) COPY_PIXEL(d, palette[(data >> (y + 7 - (x))) & 1]);
139 #define FN(x, y) COPY_PIXEL(d, palette[(data >> ((x) + y)) & 1]);
158 static void glue(pl110_draw_line2_
,NAME
)(void *opaque
, uint8_t *d
, const uint8_t *src
, int width
, int deststep
)
160 uint32_t *palette
= opaque
;
163 data
= *(uint32_t *)src
;
165 #define FN(x, y) COPY_PIXEL(d, palette[(data >> (y + 6 - (x)*2)) & 3]);
167 #define FN(x, y) COPY_PIXEL(d, palette[(data >> ((x)*2 + y)) & 3]);
186 static void glue(pl110_draw_line4_
,NAME
)(void *opaque
, uint8_t *d
, const uint8_t *src
, int width
, int deststep
)
188 uint32_t *palette
= opaque
;
191 data
= *(uint32_t *)src
;
193 #define FN(x, y) COPY_PIXEL(d, palette[(data >> (y + 4 - (x)*4)) & 0xf]);
195 #define FN(x, y) COPY_PIXEL(d, palette[(data >> ((x)*4 + y)) & 0xf]);
214 static void glue(pl110_draw_line8_
,NAME
)(void *opaque
, uint8_t *d
, const uint8_t *src
, int width
, int deststep
)
216 uint32_t *palette
= opaque
;
219 data
= *(uint32_t *)src
;
220 #define FN(x) COPY_PIXEL(d, palette[(data >> (x)) & 0xff]);
238 static void glue(pl110_draw_line16_
,NAME
)(void *opaque
, uint8_t *d
, const uint8_t *src
, int width
, int deststep
)
241 unsigned int r
, g
, b
;
243 data
= *(uint32_t *)src
;
245 data
= bswap32(data
);
262 LSB
= (data
& 0x1f) << 3;
264 g
= (data
& 0x3f) << 2;
266 MSB
= (data
& 0x1f) << 3;
269 COPY_PIXEL(d
, glue(rgb_to_pixel
,BITS
)(r
, g
, b
));
270 LSB
= (data
& 0x1f) << 3;
272 g
= (data
& 0x3f) << 2;
274 MSB
= (data
& 0x1f) << 3;
276 COPY_PIXEL(d
, glue(rgb_to_pixel
,BITS
)(r
, g
, b
));
284 static void glue(pl110_draw_line32_
,NAME
)(void *opaque
, uint8_t *d
, const uint8_t *src
, int width
, int deststep
)
287 unsigned int r
, g
, b
;
289 data
= *(uint32_t *)src
;
299 g
= (data
>> 8) & 0xff;
300 MSB
= (data
>> 16) & 0xff;
302 LSB
= (data
>> 24) & 0xff;
303 g
= (data
>> 16) & 0xff;
304 MSB
= (data
>> 8) & 0xff;
306 COPY_PIXEL(d
, glue(rgb_to_pixel
,BITS
)(r
, g
, b
));
314 static void glue(pl110_draw_line16_555_
,NAME
)(void *opaque
, uint8_t *d
, const uint8_t *src
, int width
, int deststep
)
316 /* RGB 555 plus an intensity bit (which we ignore) */
318 unsigned int r
, g
, b
;
320 data
= *(uint32_t *)src
;
322 data
= bswap32(data
);
331 LSB
= (data
& 0x1f) << 3;
333 g
= (data
& 0x1f) << 3;
335 MSB
= (data
& 0x1f) << 3;
337 COPY_PIXEL(d
, glue(rgb_to_pixel
,BITS
)(r
, g
, b
));
338 LSB
= (data
& 0x1f) << 3;
340 g
= (data
& 0x1f) << 3;
342 MSB
= (data
& 0x1f) << 3;
344 COPY_PIXEL(d
, glue(rgb_to_pixel
,BITS
)(r
, g
, b
));
352 static void glue(pl110_draw_line12_
,NAME
)(void *opaque
, uint8_t *d
, const uint8_t *src
, int width
, int deststep
)
354 /* RGB 444 with 4 bits of zeroes at the top of each halfword */
356 unsigned int r
, g
, b
;
358 data
= *(uint32_t *)src
;
360 data
= bswap32(data
);
369 LSB
= (data
& 0xf) << 4;
371 g
= (data
& 0xf) << 4;
373 MSB
= (data
& 0xf) << 4;
375 COPY_PIXEL(d
, glue(rgb_to_pixel
,BITS
)(r
, g
, b
));
376 LSB
= (data
& 0xf) << 4;
378 g
= (data
& 0xf) << 4;
380 MSB
= (data
& 0xf) << 4;
382 COPY_PIXEL(d
, glue(rgb_to_pixel
,BITS
)(r
, g
, b
));