blob: 29e52a0f1ee0c65d55de4e16680cd0e7010a4a4a [file] [log] [blame]
Marcin Bukat28d54c62010-04-26 21:40:16 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id:$
9 *
10 * Copyright (C) 2010 Marcin Bukat
Marcin Bukat88baa4d2010-04-30 14:13:52 +000011 * based on lcd-as-m3.S by Jens Arnold
Marcin Bukat28d54c62010-04-26 21:40:16 +000012 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
17 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
20 *
21 ****************************************************************************/
22
23#include "config.h"
24#include "cpu.h"
25
26
27#define LCD_BASE_ADDRESS 0xf0000000
28
29 .section .icode,"ax",@progbits
30
31 .align 2
32 .global lcd_write_command
33 .type lcd_write_command,@function
34
35lcd_write_command:
36 move.l (4, %sp), %d0
37 move.w %d0, LCD_BASE_ADDRESS /* data is 1byte but CF uses word
38 * transfers only */
39 rts
40.wc_end:
41 .size lcd_write_command,.wc_end-lcd_write_command
42
43
44 .align 2
45 .global lcd_write_command_e
46 .type lcd_write_command_e,@function
47
48lcd_write_command_e:
49 lea.l LCD_BASE_ADDRESS, %a0
50
51 move.l (4, %sp), %d0 /* Command */
52 move.w %d0, (%a0)
53 move.l (8, %sp), %d0 /* Data */
54 move.w %d0, (%a0) /* Write to LCD */
55
56 rts
57.wce_end:
58 .size lcd_write_command_e,.wce_end-lcd_write_command_e
59
60
61 .align 2
62 .global lcd_write_data
63 .type lcd_write_data,@function
64
65/* PIXELFORMAT = VERTICAL_INTERLEAVED
66 * this means that data is packed verticaly in 8 pixels columns
67 * first byte is lsb of 2bit color in column
68 * second byte is msb of 2bit color in column
69 * so one word of data equals 8 pixels i 2bits color depth packed
70 * verticaly
71 */
72lcd_write_data:
73 movem.l (4, %sp), %a0 /* Data pointer */
74 move.l (8, %sp), %d0 /* Length i in words */
Marcin Bukatcce9c172010-05-17 12:34:59 +000075 lea.l LCD_BASE_ADDRESS+2, %a1 /* LCD data port address */
Marcin Bukat28d54c62010-04-26 21:40:16 +000076
77 btst #0, %d0 /* longwords multiply? */
Marcin Bukatcce9c172010-05-17 12:34:59 +000078 jeq .l_write
Marcin Bukat28d54c62010-04-26 21:40:16 +000079
80.w_write:
81 move.w (%a0)+, %d1 /* load data 3 cycles*/
82 move.w %d1, (%a1) /* first byte 1 cycle*/
83 lsr.l #8, %d1 /* load second byte 1 cycle*/
84 move.w %d1, (%a1) /* transfer 1 cycle*/
85 subq.l #1, %d0 /* decrement counter 1 cycle*/
Marcin Bukatcce9c172010-05-17 12:34:59 +000086 jeq .write_end
Marcin Bukat28d54c62010-04-26 21:40:16 +000087
88.l_write:
89 move.l (%a0)+, %d1 /* load data 2 cycles*/
90 swap %d1 /* 1 cycle */
91 move.w %d1, (%a1) /* first byte 1 cycle*/
92 lsr.l #8, %d1 /* 1 cycle */
93 move.w %d1, (%a1) /* second byte 1 cycle*/
94 lsr.l #8, %d1 /* 1 cycle */
95 move.w %d1, (%a1) /* third byte 1 cycle*/
96 lsr.l #8, %d1 /* 1 cycle */
97 move.w %d1, (%a1) /* forth byte 1 cycle*/
98 subq.l #2, %d0 /* decrement counter 1 cycle*/
Marcin Bukatcce9c172010-05-17 12:34:59 +000099 bne.s .l_write
Marcin Bukat28d54c62010-04-26 21:40:16 +0000100
101.write_end:
102 rts
Marcin Bukat88baa4d2010-04-30 14:13:52 +0000103.wd_end:
Marcin Bukat28d54c62010-04-26 21:40:16 +0000104 .size lcd_write_data,.wd_end-lcd_write_data
105
Marcin Bukat88baa4d2010-04-30 14:13:52 +0000106 .global lcd_mono_data
107 .type lcd_mono_data, @function
108
109lcd_mono_data:
110 move.l (4, %sp), %a0 /* p_bytes */
111 move.l (8, %sp), %d0 /* count */
112 lea.l LCD_BASE_ADDRESS+2, %a1 /* LCD data port address */
113
114.md_loop:
115 move.b (%a0)+, %d1
116 move.w %d1, (%a1) /* byte transfers actually */
117 move.w %d1, (%a1)
118 subq.l #1, %d0
119 bne.s .md_loop
120 rts
121.md_end:
122 .size lcd_mono_data,.md_end-lcd_mono_data
123
124 .global lcd_grey_data
125 .type lcd_grey_data,@function
126
127lcd_grey_data:
Jens Arnold701dafd2010-07-16 07:08:39 +0000128 lea.l (-11*4, %sp), %sp
129 movem.l %d2-%d7/%a2-%a6, (%sp) /* save some registers */
130 movem.l (11*4+4, %sp), %a0-%a2 /* values, phases, length */
Marcin Bukat88baa4d2010-04-30 14:13:52 +0000131 add.l %a2, %a2
132 lea.l (%a1, %a2.l*4), %a2 /* end address */
133 lea.l LCD_BASE_ADDRESS+2, %a3 /* LCD data port address */
Jens Arnoldf053b0d2010-06-11 19:53:17 +0000134 moveq.l #24, %d4 /* shift count */
135 move.l #0x204081, %d5 /* bit shuffle factor */
136
Jens Arnold701dafd2010-07-16 07:08:39 +0000137 moveq.l #8, %d2
Marcin Bukata316ebe2010-06-15 10:41:43 +0000138 add.l %a1, %d2
139 and.l #0xfffffff0, %d2 /* first line bound */
140 cmp.l %d2, %a2 /* end address lower than first line bound? */
141 bhs.s 1f
142 move.l %a2, %d2 /* -> adjust end address of head loop */
1431:
144 cmp.l %a1, %d2
Jens Arnold701dafd2010-07-16 07:08:39 +0000145 bls.s .g_hend
Marcin Bukata316ebe2010-06-15 10:41:43 +0000146
Jens Arnold701dafd2010-07-16 07:08:39 +0000147 /* process head pixels */
Jens Arnoldf053b0d2010-06-11 19:53:17 +0000148 movem.l (%a1), %d0-%d1 /* fetch 8 pixel phases */
Marcin Bukat88baa4d2010-04-30 14:13:52 +0000149
Jens Arnoldf053b0d2010-06-11 19:53:17 +0000150 move.l %d0, %d2
151 and.l #0x80808080, %d2 /* %d2 = 0.......1.......2.......3....... */
Jens Arnold701dafd2010-07-16 07:08:39 +0000152 eor.l %d2, %d0
Jens Arnoldf053b0d2010-06-11 19:53:17 +0000153 add.l (%a0)+, %d0 /* add values to first 4 phases */
Marcin Bukat88baa4d2010-04-30 14:13:52 +0000154
Jens Arnoldf053b0d2010-06-11 19:53:17 +0000155 move.l %d1, %d3
156 and.l #0x80808080, %d3 /* %d3 = 4.......5.......6.......7....... */
157 eor.l %d3, %d1
158 add.l (%a0)+, %d1 /* add values to second 4 phases */
Marcin Bukat88baa4d2010-04-30 14:13:52 +0000159
Jens Arnoldf053b0d2010-06-11 19:53:17 +0000160 lsr.l #4, %d3 /* %d3 = ....4.......5.......6.......7... */
161 or.l %d3, %d2 /* %d2 = 0...4...1...5...2...6...3...7... */
162 mulu.l %d5, %d2 /* %d2 = 01234567123.567.23..67..3...7... */
163 not.l %d2 /* negate bits */
164 lsr.l %d4, %d2 /* %d2 = ........................01234567 */
165
166 move.w %d2, (%a3) /* transfer first LCD byte */
167
168 movem.l %d0-%d1, (%a1) /* store 8 new pixel phases */
169 addq.l #8, %a1
170
171 move.w %d2, (%a3) /* transfer second LCD byte */
Marcin Bukat88baa4d2010-04-30 14:13:52 +0000172
Jens Arnold701dafd2010-07-16 07:08:39 +0000173.g_hend:
Marcin Bukata316ebe2010-06-15 10:41:43 +0000174 cmp.l %a1, %a2
Jens Arnold701dafd2010-07-16 07:08:39 +0000175 bls.w .g_tend
176 subq.l #8, %a2
Marcin Bukata316ebe2010-06-15 10:41:43 +0000177 cmp.l %a1, %a2
Jens Arnold701dafd2010-07-16 07:08:39 +0000178 bls.s .g_lend
Marcin Bukata316ebe2010-06-15 10:41:43 +0000179
180.g_line_loop:
Jens Arnold701dafd2010-07-16 07:08:39 +0000181 /* loop that utilizes line transfers */
Marcin Bukata316ebe2010-06-15 10:41:43 +0000182 movem.l (%a1), %d0-%d3 /* fetch 2 * 8 pixels phases */
183
184 move.l %d0, %d6
185 and.l #0x80808080, %d6 /* %d6 = 0.......1.......2.......3....... */
186 eor.l %d6, %d0
Marcin Bukata316ebe2010-06-15 10:41:43 +0000187
188 move.l %d1, %d7
189 and.l #0x80808080, %d7 /* %d7 = 4.......5.......6.......7....... */
190 eor.l %d7, %d1
Marcin Bukata316ebe2010-06-15 10:41:43 +0000191
192 lsr.l #4, %d7 /* %d7 = ....4.......5.......6.......7... */
193 or.l %d7, %d6 /* %d6 = 0...4...1...5...2...6...3...7... */
194 mulu.l %d5, %d6 /* %d6 = 01234567123.567.23..67..3...7... */
195 not.l %d6 /* negate bits */
196 lsr.l %d4, %d6 /* %d6 = ........................01234567 */
197
198 move.w %d6, (%a3) /* transfer first LCD byte */
Jens Arnold701dafd2010-07-16 07:08:39 +0000199
200 movem.l (%a0), %d7/%a4-%a6 /* fetch 2 * 8 pixel values */
201 lea.l (16, %a0), %a0
202
Marcin Bukata316ebe2010-06-15 10:41:43 +0000203 move.w %d6, (%a3) /* transfer second LCD byte */
204
Jens Arnold701dafd2010-07-16 07:08:39 +0000205 add.l %d7, %d0
206 add.l %a4, %d1
207
Marcin Bukata316ebe2010-06-15 10:41:43 +0000208 move.l %d2, %d6
209 and.l #0x80808080, %d6 /* %d6 = 0.......1.......2.......3....... */
210 eor.l %d6, %d2
Marcin Bukata316ebe2010-06-15 10:41:43 +0000211
212 move.l %d3, %d7
213 and.l #0x80808080, %d7 /* %d7 = 4.......5.......6.......7....... */
214 eor.l %d7, %d3
Marcin Bukata316ebe2010-06-15 10:41:43 +0000215
216 lsr.l #4, %d7 /* %d7 = ....4.......5.......6.......7... */
217 or.l %d7, %d6 /* %d6 = 0...4...1...5...2...6...3...7... */
218 mulu.l %d5, %d6 /* %d6 = 01234567123.567.23..67..3...7... */
219 not.l %d6 /* negate bits */
220 lsr.l %d4, %d6 /* %d6 = ........................01234567 */
221
Jens Arnold701dafd2010-07-16 07:08:39 +0000222 add.l %a5, %d2
223 add.l %a6, %d3
224
Marcin Bukata316ebe2010-06-15 10:41:43 +0000225 move.w %d6, (%a3) /* transfer first LCD byte */
Marcin Bukata316ebe2010-06-15 10:41:43 +0000226
227 movem.l %d0-%d3, (%a1) /* store 2 * 8 new pixel phases */
228 lea.l (16, %a1), %a1 /* advance pointer */
229
Jens Arnold701dafd2010-07-16 07:08:39 +0000230 move.w %d6, (%a3) /* transfer second LCD byte */
231
Marcin Bukata316ebe2010-06-15 10:41:43 +0000232 cmp.l %a2, %a1
233 bls.s .g_line_loop
234
Jens Arnold701dafd2010-07-16 07:08:39 +0000235.g_lend:
236 addq.l #8, %a2
Marcin Bukata316ebe2010-06-15 10:41:43 +0000237 cmp.l %a1, %a2
Jens Arnold701dafd2010-07-16 07:08:39 +0000238 bls.s .g_tend
Marcin Bukata316ebe2010-06-15 10:41:43 +0000239
Jens Arnold701dafd2010-07-16 07:08:39 +0000240 /* process tail pixels */
241 movem.l (%a1), %d0-%d1 /* fetch 8 pixel phases */
242
243 move.l %d0, %d2
244 and.l #0x80808080, %d2 /* %d2 = 0.......1.......2.......3....... */
245 eor.l %d2, %d0
246 add.l (%a0)+, %d0 /* add values to first 4 phases */
247
248 move.l %d1, %d3
249 and.l #0x80808080, %d3 /* %d3 = 4.......5.......6.......7....... */
250 eor.l %d3, %d1
251 add.l (%a0)+, %d1 /* add values to second 4 phases */
252
253 lsr.l #4, %d3 /* %d3 = ....4.......5.......6.......7... */
254 or.l %d3, %d2 /* %d2 = 0...4...1...5...2...6...3...7... */
255 mulu.l %d5, %d2 /* %d2 = 01234567123.567.23..67..3...7... */
256 not.l %d2 /* negate bits */
257 lsr.l %d4, %d2 /* %d2 = ........................01234567 */
258
259 move.w %d2, (%a3) /* transfer first LCD byte */
260
261 movem.l %d0-%d1, (%a1) /* store 8 new pixel phases */
262 /* addq.l #8, %a1 not needed anymore */
263
264 move.w %d2, (%a3) /* transfer second LCD byte */
265
266.g_tend:
267 movem.l (%sp), %d2-%d7/%a2-%a6
268 lea.l (11*4, %sp), %sp
Marcin Bukat88baa4d2010-04-30 14:13:52 +0000269 rts
270.grey_end:
271 .size lcd_grey_data,.grey_end-lcd_grey_data