1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 Peter D'Hoye
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #include "lib/helper.h"
25 #if (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_3G_PAD) || \
26 (CONFIG_KEYPAD == IPOD_1G2G_PAD)
27 #define FPS_QUIT BUTTON_MENU
28 #elif CONFIG_KEYPAD == IAUDIO_M3_PAD
29 #define FPS_QUIT BUTTON_RC_REC
30 #elif CONFIG_KEYPAD == SAMSUNG_YH_PAD
31 #define FPS_QUIT BUTTON_PLAY
32 #elif CONFIG_KEYPAD == SANSA_FUZE_PAD
33 #define FPS_QUIT (BUTTON_HOME|BUTTON_REPEAT)
34 #elif CONFIG_KEYPAD == MPIO_HD200_PAD
35 #define FPS_QUIT (BUTTON_REC|BUTTON_PLAY)
36 #elif defined(BUTTON_OFF)
37 #define FPS_QUIT BUTTON_OFF
39 #define FPS_QUIT BUTTON_POWER
42 #define DURATION (2*HZ) /* longer duration gives more precise results */
49 #ifdef HAVE_REMOTE_LCD
50 static int remote_line
;
51 static int remote_max_line
;
54 static void log_init(void)
58 rb
->lcd_getstringsize("A", NULL
, &h
);
59 max_line
= LCD_HEIGHT
/ h
;
61 rb
->lcd_clear_display();
63 #ifdef HAVE_REMOTE_LCD
64 rb
->lcd_remote_getstringsize("A", NULL
, &h
);
65 remote_max_line
= LCD_REMOTE_HEIGHT
/ h
;
67 rb
->lcd_remote_clear_display();
68 rb
->lcd_remote_update();
72 static void log_text(char *text
)
74 rb
->lcd_puts(0, line
, text
);
75 if (++line
>= max_line
)
78 #ifdef HAVE_REMOTE_LCD
79 rb
->lcd_remote_puts(0, remote_line
, text
);
80 if (++remote_line
>= remote_max_line
)
82 rb
->lcd_remote_update();
86 static int calc_tenth_fps(int framecount
, long ticks
)
88 return (10*HZ
) * framecount
/ ticks
;
91 static void time_main_update(void)
93 char str
[32]; /* text buffer */
94 long time_start
; /* start tickcount */
95 long time_end
; /* end tickcount */
99 const int part14_x
= LCD_WIDTH
/4; /* x-offset for 1/4 update test */
100 const int part14_w
= LCD_WIDTH
/2; /* x-size for 1/4 update test */
101 const int part14_y
= LCD_HEIGHT
/4; /* y-offset for 1/4 update test */
102 const int part14_h
= LCD_HEIGHT
/2; /* y-size for 1/4 update test */
104 log_text("Main LCD Update");
106 /* Test 1: full LCD update */
108 rb
->sleep(0); /* sync to tick */
109 time_start
= *rb
->current_tick
;
110 while((time_end
= *rb
->current_tick
) - time_start
< DURATION
)
115 fps
= calc_tenth_fps(frame_count
, time_end
- time_start
);
116 rb
->snprintf(str
, sizeof(str
), "1/1: %d.%d fps", fps
/ 10, fps
% 10);
119 /* Test 2: quarter LCD update */
121 rb
->sleep(0); /* sync to tick */
122 time_start
= *rb
->current_tick
;
123 while((time_end
= *rb
->current_tick
) - time_start
< DURATION
)
125 rb
->lcd_update_rect(part14_x
, part14_y
, part14_w
, part14_h
);
128 fps
= calc_tenth_fps(frame_count
, time_end
- time_start
);
129 rb
->snprintf(str
, sizeof(str
), "1/4: %d.%d fps", fps
/ 10, fps
% 10);
133 #if defined(HAVE_LCD_COLOR) && (MEMORYSIZE > 2)
135 #if LCD_WIDTH >= LCD_HEIGHT
136 #define YUV_WIDTH LCD_WIDTH
137 #define YUV_HEIGHT LCD_HEIGHT
138 #else /* Assume the screen is rotated on portrait LCDs */
139 #define YUV_WIDTH LCD_HEIGHT
140 #define YUV_HEIGHT LCD_WIDTH
143 static unsigned char ydata
[YUV_HEIGHT
][YUV_WIDTH
];
144 static unsigned char udata
[YUV_HEIGHT
/2][YUV_WIDTH
/2];
145 static unsigned char vdata
[YUV_HEIGHT
/2][YUV_WIDTH
/2];
147 static unsigned char * const yuvbuf
[3] = {
153 static void make_gradient_rect(int width
, int height
)
155 unsigned char vline
[YUV_WIDTH
/2];
161 for (x
= 0; x
< width
; x
++)
162 vline
[x
] = (x
<< 8) / width
;
163 for (y
= 0; y
< height
; y
++)
165 rb
->memset(udata
[y
], (y
<< 8) / height
, width
);
166 rb
->memcpy(vdata
[y
], vline
, width
);
170 static void time_main_yuv(void)
172 char str
[32]; /* text buffer */
173 long time_start
; /* start tickcount */
174 long time_end
; /* end tickcount */
178 const int part14_x
= YUV_WIDTH
/4; /* x-offset for 1/4 update test */
179 const int part14_w
= YUV_WIDTH
/2; /* x-size for 1/4 update test */
180 const int part14_y
= YUV_HEIGHT
/4; /* y-offset for 1/4 update test */
181 const int part14_h
= YUV_HEIGHT
/2; /* y-size for 1/4 update test */
183 log_text("Main LCD YUV");
185 rb
->memset(ydata
, 128, sizeof(ydata
)); /* medium grey */
187 /* Test 1: full LCD update */
188 make_gradient_rect(YUV_WIDTH
, YUV_HEIGHT
);
191 rb
->sleep(0); /* sync to tick */
192 time_start
= *rb
->current_tick
;
193 while((time_end
= *rb
->current_tick
) - time_start
< DURATION
)
195 rb
->lcd_blit_yuv(yuvbuf
, 0, 0, YUV_WIDTH
,
196 0, 0, YUV_WIDTH
, YUV_HEIGHT
);
199 fps
= calc_tenth_fps(frame_count
, time_end
- time_start
);
200 rb
->snprintf(str
, sizeof(str
), "1/1: %d.%d fps", fps
/ 10, fps
% 10);
203 /* Test 2: quarter LCD update */
204 make_gradient_rect(YUV_WIDTH
/2, YUV_HEIGHT
/2);
207 rb
->sleep(0); /* sync to tick */
208 time_start
= *rb
->current_tick
;
209 while((time_end
= *rb
->current_tick
) - time_start
< DURATION
)
211 rb
->lcd_blit_yuv(yuvbuf
, 0, 0, YUV_WIDTH
,
212 part14_x
, part14_y
, part14_w
, part14_h
);
215 fps
= calc_tenth_fps(frame_count
, time_end
- time_start
);
216 rb
->snprintf(str
, sizeof(str
), "1/4: %d.%d fps", fps
/ 10, fps
% 10);
221 #ifdef HAVE_REMOTE_LCD
222 static void time_remote_update(void)
224 char str
[32]; /* text buffer */
225 long time_start
; /* start tickcount */
226 long time_end
; /* end tickcount */
230 const int part14_x
= LCD_REMOTE_WIDTH
/4; /* x-offset for 1/4 update test */
231 const int part14_w
= LCD_REMOTE_WIDTH
/2; /* x-size for 1/4 update test */
232 const int part14_y
= LCD_REMOTE_HEIGHT
/4; /* y-offset for 1/4 update test */
233 const int part14_h
= LCD_REMOTE_HEIGHT
/2; /* y-size for 1/4 update test */
235 log_text("Remote LCD Update");
237 /* Test 1: full LCD update */
239 rb
->sleep(0); /* sync to tick */
240 time_start
= *rb
->current_tick
;
241 while((time_end
= *rb
->current_tick
) - time_start
< DURATION
)
243 rb
->lcd_remote_update();
246 fps
= calc_tenth_fps(frame_count
, time_end
- time_start
);
247 rb
->snprintf(str
, sizeof(str
), "1/1: %d.%d fps", fps
/ 10, fps
% 10);
250 /* Test 2: quarter LCD update */
252 rb
->sleep(0); /* sync to tick */
253 time_start
= *rb
->current_tick
;
254 while((time_end
= *rb
->current_tick
) - time_start
< DURATION
)
256 rb
->lcd_remote_update_rect(part14_x
, part14_y
, part14_w
, part14_h
);
259 fps
= calc_tenth_fps(frame_count
, time_end
- time_start
);
260 rb
->snprintf(str
, sizeof(str
), "1/4: %d.%d fps", fps
/ 10, fps
% 10);
267 GREY_INFO_STRUCT_IRAM
268 static unsigned char greydata
[LCD_HEIGHT
][LCD_WIDTH
];
270 static void make_grey_rect(int width
, int height
)
272 unsigned char vline
[LCD_WIDTH
];
275 for (x
= 0; x
< width
; x
++)
276 vline
[x
] = (x
<< 8) / width
;
277 for (y
= 0; y
< height
; y
++)
278 rb
->memcpy(greydata
[y
], vline
, width
);
281 static void time_greyscale(void)
283 char str
[32]; /* text buffer */
284 long time_start
; /* start tickcount */
285 long time_end
; /* end tickcount */
287 int frames_1
, frames_2
;
290 unsigned char *gbuf
= (unsigned char *) rb
->plugin_get_buffer(&gbuf_size
);
294 for (i
= 0; i
< NUM_CORES
; i
++)
296 rb
->snprintf(str
, sizeof(str
), "Greyscale (%s)",
297 (i
> 0) ? "COP" : "CPU");
301 log_text("Greyscale library");
305 if (!grey_init(gbuf
, gbuf_size
, (i
> 0) ? GREY_ON_COP
: 0,
306 LCD_WIDTH
, LCD_HEIGHT
, NULL
))
308 log_text("greylib: out of memory.");
311 make_grey_rect(LCD_WIDTH
, LCD_HEIGHT
);
313 /* Test 1 - greyscale overlay not yet enabled */
315 rb
->sleep(0); /* sync to tick */
316 time_start
= *rb
->current_tick
;
317 while((time_end
= *rb
->current_tick
) - time_start
< DURATION
)
319 grey_ub_gray_bitmap(greydata
[0], 0, 0, LCD_WIDTH
, LCD_HEIGHT
);
322 time_1
= time_end
- time_start
;
324 /* Test 2 - greyscale overlay enabled */
327 rb
->sleep(0); /* sync to tick */
328 time_start
= *rb
->current_tick
;
329 while((time_end
= *rb
->current_tick
) - time_start
< DURATION
)
331 grey_ub_gray_bitmap(greydata
[0], 0, 0, LCD_WIDTH
, LCD_HEIGHT
);
334 time_2
= time_end
- time_start
;
337 fps
= calc_tenth_fps(frames_2
, time_2
);
338 load
= 100 - (100 * frames_2
* time_1
) / (frames_1
* time_2
);
339 rb
->snprintf(str
, sizeof(str
), "1/1: %d.%d fps", fps
/ 10, fps
% 10);
342 if (load
> 0 && load
< 100)
344 rb
->snprintf(str
, sizeof(str
), "CPU load: %d%%", load
);
348 log_text("CPU load err (boost?)");
353 /* plugin entry point */
354 enum plugin_status
plugin_start(const void* parameter
)
356 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
365 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
366 cpu_freq
= *rb
->cpu_frequency
; /* remember CPU frequency */
368 backlight_force_on(); /* backlight control in lib/helper.c */
371 #if defined(HAVE_LCD_COLOR) && (MEMORYSIZE > 2)
377 #ifdef HAVE_REMOTE_LCD
378 time_remote_update();
381 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
382 if (*rb
->cpu_frequency
!= cpu_freq
)
383 rb
->snprintf(str
, sizeof(str
), "CPU clock changed!");
385 rb
->snprintf(str
, sizeof(str
), "CPU: %d MHz",
386 (cpu_freq
+ 500000) / 1000000);
389 backlight_use_settings(); /* backlight control in lib/helper.c */
391 /* wait until user closes plugin */
392 while (rb
->button_get(true) != FPS_QUIT
);