1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2007 by Michael Sevakis
12 * LCD scrolling driver and scheduler
14 * Much collected and combined from the various Rockbox LCD drivers.
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License
18 * as published by the Free Software Foundation; either version 2
19 * of the License, or (at your option) any later version.
21 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22 * KIND, either express or implied.
24 ****************************************************************************/
32 #ifdef HAVE_REMOTE_LCD
33 #include "lcd-remote.h"
35 #include "scroll_engine.h"
37 static const char scroll_tick_table
[16] = {
39 1, 1.25, 1.55, 2, 2.5, 3.12, 4, 5, 6.25, 8.33, 10, 12.5, 16.7, 20, 25, 33 */
40 100, 80, 64, 50, 40, 32, 25, 20, 16, 12, 10, 8, 6, 5, 4, 3
43 static void scroll_thread(void);
44 static char scroll_stack
[DEFAULT_STACK_SIZE
*3];
45 static const char scroll_name
[] = "scroll";
47 static struct scrollinfo lcd_scroll
[LCD_SCROLLABLE_LINES
];
49 #ifdef HAVE_REMOTE_LCD
50 struct scrollinfo lcd_remote_scroll
[LCD_REMOTE_SCROLLABLE_LINES
];
51 struct event_queue scroll_queue
;
54 struct scroll_screen_info lcd_scroll_info
=
61 #ifdef HAVE_LCD_BITMAP
64 #ifdef HAVE_LCD_CHARCELLS
65 .jump_scroll_delay
= HZ
/4,
70 #ifdef HAVE_REMOTE_LCD
71 struct scroll_screen_info lcd_remote_scroll_info
=
73 .scroll
= lcd_remote_scroll
,
80 #endif /* HAVE_REMOTE_LCD */
82 void lcd_stop_scroll(void)
84 lcd_scroll_info
.lines
= 0;
87 /* Stop scrolling line y in the specified viewport, or all lines if y < 0 */
88 void lcd_scroll_stop_line(struct viewport
* current_vp
, int y
)
92 while (i
< lcd_scroll_info
.lines
)
94 if ((lcd_scroll_info
.scroll
[i
].vp
== current_vp
) &&
95 ((y
< 0) || (lcd_scroll_info
.scroll
[i
].y
== y
)))
97 /* If i is not the last active line in the array, then move
98 the last item to position i */
99 if ((i
+ 1) != lcd_scroll_info
.lines
)
101 lcd_scroll_info
.scroll
[i
] = lcd_scroll_info
.scroll
[lcd_scroll_info
.lines
-1];
103 lcd_scroll_info
.lines
--;
105 /* A line can only appear once, so we're done. */
115 /* Stop all scrolling lines in the specified viewport */
116 void lcd_scroll_stop(struct viewport
* vp
)
118 lcd_scroll_stop_line(vp
, -1);
121 void lcd_scroll_speed(int speed
)
123 lcd_scroll_info
.ticks
= scroll_tick_table
[speed
];
126 #if defined(HAVE_LCD_BITMAP)
127 void lcd_scroll_step(int step
)
129 lcd_scroll_info
.step
= step
;
133 void lcd_scroll_delay(int ms
)
135 lcd_scroll_info
.delay
= ms
/ (HZ
/ 10);
138 void lcd_bidir_scroll(int percent
)
140 lcd_scroll_info
.bidir_limit
= percent
;
143 #ifdef HAVE_LCD_CHARCELLS
144 void lcd_jump_scroll(int mode
) /* 0=off, 1=once, ..., JUMP_SCROLL_ALWAYS */
146 lcd_scroll_info
.jump_scroll
= mode
;
149 void lcd_jump_scroll_delay(int ms
)
151 lcd_scroll_info
.jump_scroll_delay
= ms
/ (HZ
/ 10);
155 #ifdef HAVE_REMOTE_LCD
156 void lcd_remote_stop_scroll(void)
158 lcd_remote_scroll_info
.lines
= 0;
161 /* Stop scrolling line y in the specified viewport, or all lines if y < 0 */
162 void lcd_remote_scroll_stop_line(struct viewport
* current_vp
, int y
)
166 while (i
< lcd_remote_scroll_info
.lines
)
168 if ((lcd_remote_scroll_info
.scroll
[i
].vp
== current_vp
) &&
169 ((y
< 0) || (lcd_remote_scroll_info
.scroll
[i
].y
== y
)))
171 /* If i is not the last active line in the array, then move
172 the last item to position i */
173 if ((i
+ 1) != lcd_remote_scroll_info
.lines
)
175 lcd_remote_scroll_info
.scroll
[i
] = lcd_remote_scroll_info
.scroll
[lcd_remote_scroll_info
.lines
-1];
177 lcd_remote_scroll_info
.lines
--;
179 /* A line can only appear once, so we're done. */
189 /* Stop all scrolling lines in the specified viewport */
190 void lcd_remote_scroll_stop(struct viewport
* vp
)
192 lcd_remote_scroll_stop_line(vp
, -1);
195 void lcd_remote_scroll_speed(int speed
)
197 lcd_remote_scroll_info
.ticks
= scroll_tick_table
[speed
];
200 void lcd_remote_scroll_step(int step
)
202 lcd_remote_scroll_info
.step
= step
;
205 void lcd_remote_scroll_delay(int ms
)
207 lcd_remote_scroll_info
.delay
= ms
/ (HZ
/ 10);
210 void lcd_remote_bidir_scroll(int percent
)
212 lcd_remote_scroll_info
.bidir_limit
= percent
;
215 static void sync_display_ticks(void)
217 lcd_scroll_info
.last_scroll
=
218 lcd_remote_scroll_info
.last_scroll
= current_tick
;
221 static bool scroll_process_message(int delay
)
223 struct queue_event ev
;
227 long tick
= current_tick
;
228 queue_wait_w_tmo(&scroll_queue
, &ev
, delay
);
234 case SYS_USB_CONNECTED
:
235 usb_acknowledge(SYS_USB_CONNECTED_ACK
);
236 usb_wait_for_disconnect(&scroll_queue
);
237 sync_display_ticks();
240 case SYS_REMOTE_PLUGGED
:
241 if (!remote_initialized
)
242 sync_display_ticks();
246 delay
-= current_tick
- tick
;
252 #endif /* HAVE_REMOTE_LCD */
254 static void scroll_thread(void) __attribute__((noreturn
));
255 #ifdef HAVE_REMOTE_LCD
257 static void scroll_thread(void)
262 SCROLL_LCD_REMOTE
= 0x2,
265 sync_display_ticks();
271 long tick_lcd
, tick_remote
;
273 tick_lcd
= lcd_scroll_info
.last_scroll
+ lcd_scroll_info
.ticks
;
274 delay
= current_tick
;
278 !remote_initialized
||
280 (tick_remote
= lcd_remote_scroll_info
.last_scroll
+
281 lcd_remote_scroll_info
.ticks
,
282 TIME_BEFORE(tick_lcd
, tick_remote
)))
285 delay
= tick_lcd
- delay
;
287 /* TIME_BEFORE(tick_remote, tick_lcd) */
288 else if (tick_lcd
!= tick_remote
)
290 scroll
= SCROLL_LCD_REMOTE
;
291 delay
= tick_remote
- delay
;
295 scroll
= SCROLL_LCD
| SCROLL_LCD_REMOTE
;
296 delay
= tick_lcd
- delay
;
299 if (scroll_process_message(delay
))
302 if (scroll
& SCROLL_LCD
)
304 #ifdef HAVE_LCD_ENABLE
308 lcd_scroll_info
.last_scroll
= current_tick
;
311 if (scroll
== (SCROLL_LCD
| SCROLL_LCD_REMOTE
))
314 if (scroll
& SCROLL_LCD_REMOTE
)
316 lcd_remote_scroll_fn();
317 lcd_remote_scroll_info
.last_scroll
= current_tick
;
322 static void scroll_thread(void)
326 sleep(lcd_scroll_info
.ticks
);
327 #ifdef HAVE_LCD_ENABLE
333 #endif /* HAVE_REMOTE_LCD */
335 void scroll_init(void)
337 #ifdef HAVE_REMOTE_LCD
338 queue_init(&scroll_queue
, true);
340 create_thread(scroll_thread
, scroll_stack
,
341 sizeof(scroll_stack
), 0, scroll_name
342 IF_PRIO(, PRIORITY_USER_INTERFACE
)