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 ****************************************************************************/
26 #include "gcc_extensions.h"
33 #ifdef HAVE_REMOTE_LCD
34 #include "lcd-remote.h"
36 #include "scroll_engine.h"
38 static const char scroll_tick_table
[18] = {
39 /* Hz values [f(x)=100.8/(x+.048)]:
40 1, 1.25, 1.55, 2, 2.5, 3.12, 4, 5, 6.25, 8.33, 10, 12.5, 16.7, 20, 25, 33, 49.2, 96.2 */
41 100, 80, 64, 50, 40, 32, 25, 20, 16, 12, 10, 8, 6, 5, 4, 3, 2, 1
44 static void scroll_thread(void);
45 static char scroll_stack
[DEFAULT_STACK_SIZE
*3];
46 static const char scroll_name
[] = "scroll";
48 static struct scrollinfo lcd_scroll
[LCD_SCROLLABLE_LINES
];
50 #ifdef HAVE_REMOTE_LCD
51 static struct scrollinfo lcd_remote_scroll
[LCD_REMOTE_SCROLLABLE_LINES
];
52 static struct event_queue scroll_queue SHAREDBSS_ATTR
;
55 struct scroll_screen_info lcd_scroll_info
=
62 #ifdef HAVE_LCD_BITMAP
65 #ifdef HAVE_LCD_CHARCELLS
66 .jump_scroll_delay
= HZ
/4,
71 #ifdef HAVE_REMOTE_LCD
72 struct scroll_screen_info lcd_remote_scroll_info
=
74 .scroll
= lcd_remote_scroll
,
81 #endif /* HAVE_REMOTE_LCD */
83 void lcd_stop_scroll(void)
85 lcd_scroll_info
.lines
= 0;
88 /* Stop scrolling line y in the specified viewport, or all lines if y < 0 */
89 void lcd_scroll_stop_line(const struct viewport
* current_vp
, int y
)
93 while (i
< lcd_scroll_info
.lines
)
95 if ((lcd_scroll_info
.scroll
[i
].vp
== current_vp
) &&
96 ((y
< 0) || (lcd_scroll_info
.scroll
[i
].y
== y
)))
98 /* If i is not the last active line in the array, then move
99 the last item to position i */
100 if ((i
+ 1) != lcd_scroll_info
.lines
)
102 lcd_scroll_info
.scroll
[i
] =
103 lcd_scroll_info
.scroll
[lcd_scroll_info
.lines
-1];
105 lcd_scroll_info
.lines
--;
107 /* A line can only appear once, so we're done,
108 * unless we are clearing the whole viewport */
119 /* Stop all scrolling lines in the specified viewport */
120 void lcd_scroll_stop(const struct viewport
* vp
)
122 lcd_scroll_stop_line(vp
, -1);
125 void lcd_scroll_speed(int speed
)
127 lcd_scroll_info
.ticks
= scroll_tick_table
[speed
];
130 #if defined(HAVE_LCD_BITMAP)
131 void lcd_scroll_step(int step
)
133 lcd_scroll_info
.step
= step
;
137 void lcd_scroll_delay(int ms
)
139 lcd_scroll_info
.delay
= ms
/ (HZ
/ 10);
142 void lcd_bidir_scroll(int percent
)
144 lcd_scroll_info
.bidir_limit
= percent
;
147 #ifdef HAVE_LCD_CHARCELLS
148 void lcd_jump_scroll(int mode
) /* 0=off, 1=once, ..., JUMP_SCROLL_ALWAYS */
150 lcd_scroll_info
.jump_scroll
= mode
;
153 void lcd_jump_scroll_delay(int ms
)
155 lcd_scroll_info
.jump_scroll_delay
= ms
/ (HZ
/ 10);
159 #ifdef HAVE_REMOTE_LCD
160 void lcd_remote_stop_scroll(void)
162 lcd_remote_scroll_info
.lines
= 0;
165 /* Stop scrolling line y in the specified viewport, or all lines if y < 0 */
166 void lcd_remote_scroll_stop_line(const struct viewport
* current_vp
, int y
)
170 while (i
< lcd_remote_scroll_info
.lines
)
172 if ((lcd_remote_scroll_info
.scroll
[i
].vp
== current_vp
) &&
173 ((y
< 0) || (lcd_remote_scroll_info
.scroll
[i
].y
== y
)))
175 /* If i is not the last active line in the array, then move
176 the last item to position i */
177 if ((i
+ 1) != lcd_remote_scroll_info
.lines
)
179 lcd_remote_scroll_info
.scroll
[i
] =
180 lcd_remote_scroll_info
.scroll
[lcd_remote_scroll_info
.lines
-1];
182 lcd_remote_scroll_info
.lines
--;
184 /* A line can only appear once, so we're done,
185 * unless we are clearing the whole viewport */
196 /* Stop all scrolling lines in the specified viewport */
197 void lcd_remote_scroll_stop(const struct viewport
* vp
)
199 lcd_remote_scroll_stop_line(vp
, -1);
202 void lcd_remote_scroll_speed(int speed
)
204 lcd_remote_scroll_info
.ticks
= scroll_tick_table
[speed
];
207 void lcd_remote_scroll_step(int step
)
209 lcd_remote_scroll_info
.step
= step
;
212 void lcd_remote_scroll_delay(int ms
)
214 lcd_remote_scroll_info
.delay
= ms
/ (HZ
/ 10);
217 void lcd_remote_bidir_scroll(int percent
)
219 lcd_remote_scroll_info
.bidir_limit
= percent
;
222 static void sync_display_ticks(void)
224 lcd_scroll_info
.last_scroll
=
225 lcd_remote_scroll_info
.last_scroll
= current_tick
;
228 static bool scroll_process_message(int delay
)
230 struct queue_event ev
;
234 long tick
= current_tick
;
235 queue_wait_w_tmo(&scroll_queue
, &ev
, delay
);
241 case SYS_USB_CONNECTED
:
242 usb_acknowledge(SYS_USB_CONNECTED_ACK
);
243 usb_wait_for_disconnect(&scroll_queue
);
244 sync_display_ticks();
246 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
247 case SYS_REMOTE_PLUGGED
:
248 if (!remote_initialized
)
249 sync_display_ticks();
253 delay
-= current_tick
- tick
;
259 #endif /* HAVE_REMOTE_LCD */
261 static void scroll_thread(void) NORETURN_ATTR
;
262 #ifdef HAVE_REMOTE_LCD
264 static void scroll_thread(void)
269 SCROLL_LCD_REMOTE
= 0x2,
272 sync_display_ticks();
278 long tick_lcd
, tick_remote
;
280 tick_lcd
= lcd_scroll_info
.last_scroll
+ lcd_scroll_info
.ticks
;
281 delay
= current_tick
;
284 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
285 !remote_initialized
||
287 (tick_remote
= lcd_remote_scroll_info
.last_scroll
+
288 lcd_remote_scroll_info
.ticks
,
289 TIME_BEFORE(tick_lcd
, tick_remote
)))
292 delay
= tick_lcd
- delay
;
294 /* TIME_BEFORE(tick_remote, tick_lcd) */
295 else if (tick_lcd
!= tick_remote
)
297 scroll
= SCROLL_LCD_REMOTE
;
298 delay
= tick_remote
- delay
;
302 scroll
= SCROLL_LCD
| SCROLL_LCD_REMOTE
;
303 delay
= tick_lcd
- delay
;
306 if (scroll_process_message(delay
))
309 if (scroll
& SCROLL_LCD
)
311 #if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
315 lcd_scroll_info
.last_scroll
= current_tick
;
318 if (scroll
== (SCROLL_LCD
| SCROLL_LCD_REMOTE
))
321 if (scroll
& SCROLL_LCD_REMOTE
)
323 lcd_remote_scroll_fn();
324 lcd_remote_scroll_info
.last_scroll
= current_tick
;
329 static void scroll_thread(void)
333 sleep(lcd_scroll_info
.ticks
);
334 #if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
340 #endif /* HAVE_REMOTE_LCD */
342 void scroll_init(void)
344 #ifdef HAVE_REMOTE_LCD
345 queue_init(&scroll_queue
, true);
347 create_thread(scroll_thread
, scroll_stack
,
348 sizeof(scroll_stack
), 0, scroll_name
349 IF_PRIO(, PRIORITY_USER_INTERFACE
)