2003-06-29 16:33:04 +00:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
* __________ __ ___.
|
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
2006-11-11 05:11:05 +00:00
|
|
|
|
* Copyright (C) 2002 Bj<EFBFBD>rn Stenberg
|
2003-06-29 16:33:04 +00:00
|
|
|
|
*
|
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
|
*
|
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
|
* KIND, either express or implied.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
2006-11-11 05:11:05 +00:00
|
|
|
|
#include "plugin.h"
|
|
|
|
|
#include <ctype.h>
|
2003-06-29 16:33:04 +00:00
|
|
|
|
#include <string.h>
|
2006-11-11 05:11:05 +00:00
|
|
|
|
#include <sprintf.h>
|
2003-07-24 10:02:45 +00:00
|
|
|
|
#include <atoi.h>
|
2004-06-10 13:29:52 +00:00
|
|
|
|
#include "debug.h"
|
2006-11-11 05:47:42 +00:00
|
|
|
|
#include "i2c.h"
|
2003-06-29 16:33:04 +00:00
|
|
|
|
#include "lang.h"
|
2007-07-29 03:43:37 +00:00
|
|
|
|
#include "led.h"
|
2003-07-09 22:36:23 +00:00
|
|
|
|
#include "keyboard.h"
|
2004-01-30 22:30:40 +00:00
|
|
|
|
#include "buffer.h"
|
|
|
|
|
#include "backlight.h"
|
2006-03-26 22:33:25 +00:00
|
|
|
|
#include "sound_menu.h"
|
2004-06-10 13:29:52 +00:00
|
|
|
|
#include "mp3data.h"
|
2004-06-15 22:54:37 +00:00
|
|
|
|
#include "powermgmt.h"
|
2005-11-16 15:12:15 +00:00
|
|
|
|
#include "splash.h"
|
2006-11-11 08:00:28 +00:00
|
|
|
|
#include "logf.h"
|
2007-07-11 05:41:23 +00:00
|
|
|
|
#include "option_select.h"
|
2007-10-03 16:17:36 +00:00
|
|
|
|
#include "talk.h"
|
2003-07-09 22:36:23 +00:00
|
|
|
|
|
2007-02-18 05:32:06 +00:00
|
|
|
|
#if CONFIG_CHARGING
|
2006-02-07 14:46:03 +00:00
|
|
|
|
#include "power.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-07-09 22:36:23 +00:00
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2006-11-19 14:11:42 +00:00
|
|
|
|
#include "scrollbar.h"
|
2007-04-10 14:18:30 +00:00
|
|
|
|
#include "peakmeter.h"
|
2005-04-25 07:42:10 +00:00
|
|
|
|
#include "bmp.h"
|
2006-07-19 19:47:34 +00:00
|
|
|
|
#include "bidi.h"
|
2003-07-09 22:36:23 +00:00
|
|
|
|
#endif
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
2003-07-25 23:04:59 +00:00
|
|
|
|
#ifdef SIMULATOR
|
|
|
|
|
static unsigned char pluginbuf[PLUGIN_BUFFER_SIZE];
|
2006-03-02 01:08:38 +00:00
|
|
|
|
void *sim_plugin_load(char *plugin, void **pd);
|
|
|
|
|
void sim_plugin_close(void *pd);
|
2006-02-26 13:37:42 +00:00
|
|
|
|
void sim_lcd_ex_init(int shades, unsigned long (*getpixel)(int, int));
|
|
|
|
|
void sim_lcd_ex_update_rect(int x, int y, int width, int height);
|
2003-07-25 23:04:59 +00:00
|
|
|
|
#else
|
2005-02-22 12:19:12 +00:00
|
|
|
|
#define sim_plugin_close(x)
|
2003-07-25 23:04:59 +00:00
|
|
|
|
extern unsigned char pluginbuf[];
|
2004-09-26 09:25:59 +00:00
|
|
|
|
#include "bitswap.h"
|
2003-07-25 23:04:59 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2005-06-22 02:47:54 +00:00
|
|
|
|
/* for actual plugins only, not for codecs */
|
2003-07-25 23:04:59 +00:00
|
|
|
|
static bool plugin_loaded = false;
|
|
|
|
|
static int plugin_size = 0;
|
2006-10-31 11:30:37 +00:00
|
|
|
|
static bool (*pfn_tsr_exit)(bool reenter) = NULL; /* TSR exit callback */
|
2006-10-31 11:17:00 +00:00
|
|
|
|
static char current_plugin[MAX_PATH];
|
2003-07-25 23:04:59 +00:00
|
|
|
|
|
2007-08-06 13:42:52 +00:00
|
|
|
|
char *plugin_get_current_filename(void);
|
|
|
|
|
|
2007-05-07 23:54:10 +00:00
|
|
|
|
extern struct thread_entry threads[MAXTHREADS];
|
|
|
|
|
|
2004-07-20 21:37:36 +00:00
|
|
|
|
static const struct plugin_api rockbox_api = {
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
|
|
|
|
/* lcd */
|
2005-06-24 22:33:21 +00:00
|
|
|
|
lcd_set_contrast,
|
2007-03-31 09:58:49 +00:00
|
|
|
|
lcd_update,
|
2003-06-29 16:33:04 +00:00
|
|
|
|
lcd_clear_display,
|
2007-03-26 07:52:13 +00:00
|
|
|
|
lcd_setmargins,
|
|
|
|
|
lcd_getstringsize,
|
|
|
|
|
lcd_putsxy,
|
2003-06-29 16:33:04 +00:00
|
|
|
|
lcd_puts,
|
|
|
|
|
lcd_puts_scroll,
|
|
|
|
|
lcd_stop_scroll,
|
|
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
|
|
|
lcd_define_pattern,
|
2003-07-24 09:35:32 +00:00
|
|
|
|
lcd_get_locked_pattern,
|
|
|
|
|
lcd_unlock_pattern,
|
|
|
|
|
lcd_putc,
|
2004-07-27 14:10:48 +00:00
|
|
|
|
lcd_put_cursor,
|
|
|
|
|
lcd_remove_cursor,
|
2007-04-03 18:06:13 +00:00
|
|
|
|
lcd_icon,
|
2005-09-02 05:39:09 +00:00
|
|
|
|
lcd_double_height,
|
2003-06-29 16:33:04 +00:00
|
|
|
|
#else
|
2008-03-24 00:35:53 +00:00
|
|
|
|
&lcd_framebuffer[0][0],
|
2008-03-24 00:45:03 +00:00
|
|
|
|
lcd_update_rect,
|
2005-06-24 22:33:21 +00:00
|
|
|
|
lcd_set_drawmode,
|
|
|
|
|
lcd_get_drawmode,
|
|
|
|
|
lcd_setfont,
|
|
|
|
|
lcd_drawpixel,
|
|
|
|
|
lcd_drawline,
|
2005-06-28 23:15:47 +00:00
|
|
|
|
lcd_hline,
|
|
|
|
|
lcd_vline,
|
2005-06-24 22:33:21 +00:00
|
|
|
|
lcd_drawrect,
|
|
|
|
|
lcd_fillrect,
|
2005-07-06 22:58:02 +00:00
|
|
|
|
lcd_mono_bitmap_part,
|
|
|
|
|
lcd_mono_bitmap,
|
2005-07-26 20:01:11 +00:00
|
|
|
|
#if LCD_DEPTH > 1
|
|
|
|
|
lcd_set_foreground,
|
|
|
|
|
lcd_get_foreground,
|
|
|
|
|
lcd_set_background,
|
|
|
|
|
lcd_get_background,
|
|
|
|
|
lcd_bitmap_part,
|
|
|
|
|
lcd_bitmap,
|
2007-06-22 09:34:57 +00:00
|
|
|
|
lcd_get_backdrop,
|
2006-11-19 14:11:42 +00:00
|
|
|
|
lcd_set_backdrop,
|
2006-02-07 20:38:55 +00:00
|
|
|
|
#endif
|
|
|
|
|
#if LCD_DEPTH == 16
|
|
|
|
|
lcd_bitmap_transparent_part,
|
|
|
|
|
lcd_bitmap_transparent,
|
2008-03-24 00:35:53 +00:00
|
|
|
|
lcd_blit_yuv,
|
|
|
|
|
#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) \
|
|
|
|
|
|| defined (IRIVER_H10)
|
|
|
|
|
lcd_yuv_set_options,
|
2005-07-26 20:01:11 +00:00
|
|
|
|
#endif
|
2008-03-24 01:00:42 +00:00
|
|
|
|
#elif (LCD_DEPTH < 4) && !defined(SIMULATOR)
|
2008-03-24 00:35:53 +00:00
|
|
|
|
lcd_blit_mono,
|
|
|
|
|
lcd_blit_grey_phase,
|
|
|
|
|
#endif /* LCD_DEPTH */
|
|
|
|
|
lcd_puts_style,
|
|
|
|
|
lcd_puts_scroll_style,
|
2006-09-16 16:18:11 +00:00
|
|
|
|
bidi_l2v,
|
|
|
|
|
font_get_bits,
|
|
|
|
|
font_load,
|
2005-06-24 22:33:21 +00:00
|
|
|
|
font_get,
|
2005-07-26 20:01:11 +00:00
|
|
|
|
font_getstringsize,
|
2006-01-15 18:20:18 +00:00
|
|
|
|
font_get_width,
|
2007-08-06 13:42:52 +00:00
|
|
|
|
screen_clear_area,
|
2008-03-24 00:35:53 +00:00
|
|
|
|
gui_scrollbar_draw,
|
2003-06-29 16:33:04 +00:00
|
|
|
|
#endif
|
2008-03-24 00:35:53 +00:00
|
|
|
|
|
2004-07-27 14:10:48 +00:00
|
|
|
|
backlight_on,
|
|
|
|
|
backlight_off,
|
2004-10-23 09:59:53 +00:00
|
|
|
|
backlight_set_timeout,
|
2007-08-13 22:31:11 +00:00
|
|
|
|
#if CONFIG_CHARGING
|
|
|
|
|
backlight_set_timeout_plugged,
|
|
|
|
|
#endif
|
2005-11-16 15:12:15 +00:00
|
|
|
|
gui_syncsplash,
|
2008-03-24 00:35:53 +00:00
|
|
|
|
|
2005-04-15 12:55:31 +00:00
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2005-06-18 01:25:47 +00:00
|
|
|
|
/* remote lcd */
|
2005-06-29 01:39:50 +00:00
|
|
|
|
lcd_remote_set_contrast,
|
2005-04-25 07:42:10 +00:00
|
|
|
|
lcd_remote_clear_display,
|
2007-10-16 01:25:17 +00:00
|
|
|
|
lcd_remote_setmargins,
|
2005-04-25 23:47:51 +00:00
|
|
|
|
lcd_remote_puts,
|
|
|
|
|
lcd_remote_puts_scroll,
|
|
|
|
|
lcd_remote_stop_scroll,
|
2005-06-29 01:39:50 +00:00
|
|
|
|
lcd_remote_set_drawmode,
|
|
|
|
|
lcd_remote_get_drawmode,
|
|
|
|
|
lcd_remote_setfont,
|
|
|
|
|
lcd_remote_getstringsize,
|
|
|
|
|
lcd_remote_drawpixel,
|
|
|
|
|
lcd_remote_drawline,
|
|
|
|
|
lcd_remote_hline,
|
|
|
|
|
lcd_remote_vline,
|
|
|
|
|
lcd_remote_drawrect,
|
|
|
|
|
lcd_remote_fillrect,
|
2005-07-07 00:05:29 +00:00
|
|
|
|
lcd_remote_mono_bitmap_part,
|
|
|
|
|
lcd_remote_mono_bitmap,
|
2005-04-25 23:47:51 +00:00
|
|
|
|
lcd_remote_putsxy,
|
|
|
|
|
lcd_remote_puts_style,
|
|
|
|
|
lcd_remote_puts_scroll_style,
|
2005-06-29 01:39:50 +00:00
|
|
|
|
&lcd_remote_framebuffer[0][0],
|
2005-04-25 23:47:51 +00:00
|
|
|
|
lcd_remote_update,
|
|
|
|
|
lcd_remote_update_rect,
|
2005-06-18 01:25:47 +00:00
|
|
|
|
|
2005-11-21 23:55:39 +00:00
|
|
|
|
remote_backlight_on,
|
|
|
|
|
remote_backlight_off,
|
2008-03-24 00:35:53 +00:00
|
|
|
|
remote_backlight_set_timeout,
|
|
|
|
|
#if CONFIG_CHARGING
|
|
|
|
|
remote_backlight_set_timeout_plugged,
|
2005-04-15 12:55:31 +00:00
|
|
|
|
#endif
|
2008-03-24 00:35:53 +00:00
|
|
|
|
#endif /* HAVE_REMOTE_LCD */
|
2006-09-16 16:18:11 +00:00
|
|
|
|
#if NB_SCREENS == 2
|
|
|
|
|
{&screens[SCREEN_MAIN], &screens[SCREEN_REMOTE]},
|
|
|
|
|
#else
|
|
|
|
|
{&screens[SCREEN_MAIN]},
|
|
|
|
|
#endif
|
|
|
|
|
#if defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1)
|
|
|
|
|
lcd_remote_set_foreground,
|
|
|
|
|
lcd_remote_get_foreground,
|
|
|
|
|
lcd_remote_set_background,
|
|
|
|
|
lcd_remote_get_background,
|
|
|
|
|
lcd_remote_bitmap_part,
|
|
|
|
|
lcd_remote_bitmap,
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* list */
|
|
|
|
|
gui_synclist_init,
|
|
|
|
|
gui_synclist_set_nb_items,
|
|
|
|
|
gui_synclist_set_icon_callback,
|
|
|
|
|
gui_synclist_get_nb_items,
|
|
|
|
|
gui_synclist_get_sel_pos,
|
|
|
|
|
gui_synclist_draw,
|
|
|
|
|
gui_synclist_select_item,
|
|
|
|
|
gui_synclist_add_item,
|
|
|
|
|
gui_synclist_del_item,
|
|
|
|
|
gui_synclist_limit_scroll,
|
|
|
|
|
gui_synclist_do_button,
|
2006-11-30 22:29:48 +00:00
|
|
|
|
gui_synclist_set_title,
|
2006-10-14 01:32:58 +00:00
|
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
|
/* button */
|
|
|
|
|
button_get,
|
|
|
|
|
button_get_w_tmo,
|
2004-07-27 14:10:48 +00:00
|
|
|
|
button_status,
|
|
|
|
|
button_clear_queue,
|
2007-10-16 01:25:17 +00:00
|
|
|
|
button_queue_count,
|
2006-05-01 05:45:18 +00:00
|
|
|
|
#ifdef HAS_BUTTON_HOLD
|
2005-06-18 01:25:47 +00:00
|
|
|
|
button_hold,
|
|
|
|
|
#endif
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
|
|
|
|
/* file */
|
2003-12-09 06:48:55 +00:00
|
|
|
|
(open_func)PREFIX(open),
|
2007-10-09 15:15:00 +00:00
|
|
|
|
PREFIX(close),
|
2007-09-08 12:20:53 +00:00
|
|
|
|
(read_func)PREFIX(read),
|
2005-02-28 18:32:57 +00:00
|
|
|
|
PREFIX(lseek),
|
2003-12-09 06:48:55 +00:00
|
|
|
|
(creat_func)PREFIX(creat),
|
2007-09-08 12:20:53 +00:00
|
|
|
|
(write_func)PREFIX(write),
|
2004-07-23 14:51:49 +00:00
|
|
|
|
PREFIX(remove),
|
|
|
|
|
PREFIX(rename),
|
2005-02-22 12:19:12 +00:00
|
|
|
|
PREFIX(ftruncate),
|
2003-06-29 16:33:04 +00:00
|
|
|
|
PREFIX(filesize),
|
2005-02-22 12:19:12 +00:00
|
|
|
|
fdprintf,
|
2003-06-29 16:33:04 +00:00
|
|
|
|
read_line,
|
2004-07-27 14:10:48 +00:00
|
|
|
|
settings_parseline,
|
2004-07-27 19:16:58 +00:00
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
|
ata_sleep,
|
2006-05-01 05:45:18 +00:00
|
|
|
|
ata_disk_is_active,
|
2004-07-27 19:16:58 +00:00
|
|
|
|
#endif
|
2008-03-24 00:35:53 +00:00
|
|
|
|
ata_spin,
|
2006-10-31 11:17:00 +00:00
|
|
|
|
ata_spindown,
|
2006-09-16 16:18:11 +00:00
|
|
|
|
reload_directory,
|
2007-06-22 09:34:57 +00:00
|
|
|
|
create_numbered_filename,
|
2008-03-24 00:35:53 +00:00
|
|
|
|
file_exists,
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
|
|
|
|
/* dir */
|
2007-07-20 17:06:55 +00:00
|
|
|
|
opendir,
|
|
|
|
|
closedir,
|
|
|
|
|
readdir,
|
|
|
|
|
mkdir,
|
|
|
|
|
rmdir,
|
2008-03-24 00:35:53 +00:00
|
|
|
|
dir_exists,
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
2004-10-23 09:59:53 +00:00
|
|
|
|
/* kernel/ system */
|
2003-06-29 16:33:04 +00:00
|
|
|
|
PREFIX(sleep),
|
2004-07-27 14:10:48 +00:00
|
|
|
|
yield,
|
2007-04-10 14:18:30 +00:00
|
|
|
|
#ifdef HAVE_PRIORITY_SCHEDULING
|
|
|
|
|
priority_yield,
|
|
|
|
|
#endif
|
2003-06-29 16:33:04 +00:00
|
|
|
|
¤t_tick,
|
2004-07-27 14:10:48 +00:00
|
|
|
|
default_event_handler,
|
2004-10-23 09:59:53 +00:00
|
|
|
|
default_event_handler_ex,
|
2007-06-22 09:34:57 +00:00
|
|
|
|
threads,
|
2004-07-27 14:10:48 +00:00
|
|
|
|
create_thread,
|
|
|
|
|
remove_thread,
|
2008-03-24 00:35:53 +00:00
|
|
|
|
thread_wait,
|
|
|
|
|
#if (CONFIG_CODEC == SWCODEC)
|
|
|
|
|
mutex_init,
|
|
|
|
|
mutex_lock,
|
|
|
|
|
mutex_unlock,
|
|
|
|
|
align_buffer,
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-07-27 19:16:58 +00:00
|
|
|
|
reset_poweroff_timer,
|
2004-10-23 09:59:53 +00:00
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
|
system_memory_guard,
|
2005-06-18 01:25:47 +00:00
|
|
|
|
&cpu_frequency,
|
2007-01-22 10:41:25 +00:00
|
|
|
|
|
2005-06-18 01:25:47 +00:00
|
|
|
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
2007-01-22 10:41:25 +00:00
|
|
|
|
#ifdef CPU_BOOST_LOGGING
|
|
|
|
|
cpu_boost_,
|
|
|
|
|
#else
|
2005-06-18 01:25:47 +00:00
|
|
|
|
cpu_boost,
|
2007-01-22 10:41:25 +00:00
|
|
|
|
#endif
|
2008-03-24 00:35:53 +00:00
|
|
|
|
#endif /* HAVE_ADJUSTABLE_CPU_FREQ */
|
|
|
|
|
#endif /* !SIMULATOR */
|
|
|
|
|
#ifdef HAVE_SCHEDULER_BOOSTCTRL
|
|
|
|
|
trigger_cpu_boost,
|
|
|
|
|
cancel_cpu_boost,
|
2007-07-29 03:43:37 +00:00
|
|
|
|
#endif
|
2008-03-24 00:35:53 +00:00
|
|
|
|
#ifdef CACHE_FUNCTIONS_AS_CALL
|
|
|
|
|
flush_icache,
|
|
|
|
|
invalidate_icache,
|
2005-06-18 01:25:47 +00:00
|
|
|
|
#endif
|
2005-07-26 20:01:11 +00:00
|
|
|
|
timer_register,
|
|
|
|
|
timer_unregister,
|
|
|
|
|
timer_set_period,
|
2007-07-29 03:43:37 +00:00
|
|
|
|
|
2006-02-07 20:38:55 +00:00
|
|
|
|
queue_init,
|
|
|
|
|
queue_delete,
|
|
|
|
|
queue_post,
|
|
|
|
|
queue_wait_w_tmo,
|
2008-03-24 00:35:53 +00:00
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
|
queue_enable_queue_send,
|
|
|
|
|
queue_empty,
|
|
|
|
|
queue_wait,
|
|
|
|
|
queue_send,
|
|
|
|
|
queue_reply,
|
|
|
|
|
#endif
|
2006-02-07 20:38:55 +00:00
|
|
|
|
usb_acknowledge,
|
|
|
|
|
#ifdef RB_PROFILE
|
|
|
|
|
profile_thread,
|
|
|
|
|
profstop,
|
|
|
|
|
profile_func_enter,
|
|
|
|
|
profile_func_exit,
|
|
|
|
|
#endif
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
2006-03-11 09:28:49 +00:00
|
|
|
|
#ifdef SIMULATOR
|
|
|
|
|
/* special simulator hooks */
|
|
|
|
|
#if defined(HAVE_LCD_BITMAP) && LCD_DEPTH < 8
|
|
|
|
|
sim_lcd_ex_init,
|
|
|
|
|
sim_lcd_ex_update_rect,
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
|
/* strings and memory */
|
|
|
|
|
snprintf,
|
2006-09-16 16:18:11 +00:00
|
|
|
|
vsnprintf,
|
2003-06-29 16:33:04 +00:00
|
|
|
|
strcpy,
|
2004-07-27 14:10:48 +00:00
|
|
|
|
strncpy,
|
2003-06-29 16:33:04 +00:00
|
|
|
|
strlen,
|
2004-07-13 14:14:30 +00:00
|
|
|
|
strrchr,
|
2004-07-27 14:10:48 +00:00
|
|
|
|
strcmp,
|
2005-07-26 20:01:11 +00:00
|
|
|
|
strncmp,
|
2004-07-27 14:10:48 +00:00
|
|
|
|
strcasecmp,
|
2004-10-23 09:59:53 +00:00
|
|
|
|
strncasecmp,
|
2003-06-29 16:33:04 +00:00
|
|
|
|
memset,
|
|
|
|
|
memcpy,
|
2006-02-07 20:38:55 +00:00
|
|
|
|
memmove,
|
2004-07-13 14:01:41 +00:00
|
|
|
|
_ctype_,
|
2004-07-27 19:16:58 +00:00
|
|
|
|
atoi,
|
2005-02-22 12:19:12 +00:00
|
|
|
|
strchr,
|
|
|
|
|
strcat,
|
2006-09-16 16:18:11 +00:00
|
|
|
|
memchr,
|
2005-02-22 12:19:12 +00:00
|
|
|
|
memcmp,
|
2005-06-18 01:25:47 +00:00
|
|
|
|
strcasestr,
|
2006-10-31 11:17:00 +00:00
|
|
|
|
strtok_r,
|
2006-01-15 18:20:18 +00:00
|
|
|
|
/* unicode stuff */
|
|
|
|
|
utf8decode,
|
|
|
|
|
iso_decode,
|
|
|
|
|
utf16LEdecode,
|
|
|
|
|
utf16BEdecode,
|
|
|
|
|
utf8encode,
|
|
|
|
|
utf8length,
|
2006-09-16 16:18:11 +00:00
|
|
|
|
utf8seek,
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
|
|
|
|
/* sound */
|
2005-04-01 13:41:03 +00:00
|
|
|
|
sound_set,
|
2008-03-24 00:35:53 +00:00
|
|
|
|
sound_default,
|
2006-01-15 18:20:18 +00:00
|
|
|
|
sound_min,
|
|
|
|
|
sound_max,
|
2008-03-24 00:35:53 +00:00
|
|
|
|
sound_unit,
|
|
|
|
|
sound_val2phys,
|
2003-06-29 16:33:04 +00:00
|
|
|
|
#ifndef SIMULATOR
|
2004-07-27 14:10:48 +00:00
|
|
|
|
mp3_play_data,
|
|
|
|
|
mp3_play_pause,
|
|
|
|
|
mp3_play_stop,
|
|
|
|
|
mp3_is_playing,
|
2005-08-29 21:15:27 +00:00
|
|
|
|
#if CONFIG_CODEC != SWCODEC
|
2004-07-27 14:10:48 +00:00
|
|
|
|
bitswap,
|
2005-06-06 00:34:07 +00:00
|
|
|
|
#endif
|
2007-01-01 13:21:19 +00:00
|
|
|
|
#endif
|
2005-08-29 21:15:27 +00:00
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2007-04-10 14:18:30 +00:00
|
|
|
|
&audio_master_sampr_list[0],
|
|
|
|
|
&hw_freq_sampr[0],
|
|
|
|
|
pcm_apply_settings,
|
2006-05-01 05:45:18 +00:00
|
|
|
|
pcm_play_data,
|
2005-06-18 01:25:47 +00:00
|
|
|
|
pcm_play_stop,
|
|
|
|
|
pcm_set_frequency,
|
|
|
|
|
pcm_is_playing,
|
2007-04-10 14:18:30 +00:00
|
|
|
|
pcm_is_paused,
|
2005-06-18 01:25:47 +00:00
|
|
|
|
pcm_play_pause,
|
2007-04-10 14:18:30 +00:00
|
|
|
|
pcm_get_bytes_waiting,
|
2006-03-11 09:38:12 +00:00
|
|
|
|
pcm_calculate_peaks,
|
2008-03-24 00:35:53 +00:00
|
|
|
|
pcm_play_lock,
|
|
|
|
|
pcm_play_unlock,
|
2007-04-10 14:18:30 +00:00
|
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
|
&rec_freq_sampr[0],
|
|
|
|
|
pcm_init_recording,
|
|
|
|
|
pcm_close_recording,
|
|
|
|
|
pcm_record_data,
|
|
|
|
|
pcm_record_more,
|
|
|
|
|
pcm_stop_recording,
|
|
|
|
|
pcm_calculate_rec_peaks,
|
|
|
|
|
audio_set_recording_gain,
|
|
|
|
|
#endif /* HAVE_RECORDING */
|
2007-06-08 23:42:04 +00:00
|
|
|
|
#if INPUT_SRC_CAPS != 0
|
|
|
|
|
audio_set_output_source,
|
|
|
|
|
audio_set_input_source,
|
2003-06-29 16:33:04 +00:00
|
|
|
|
#endif
|
2008-03-24 00:35:53 +00:00
|
|
|
|
dsp_set_crossfeed,
|
|
|
|
|
dsp_set_eq,
|
|
|
|
|
dsp_dither_enable,
|
|
|
|
|
dsp_configure,
|
|
|
|
|
dsp_process,
|
2007-06-08 23:42:04 +00:00
|
|
|
|
#endif /* CONFIG_CODEC == SWCODEC */
|
2005-06-18 01:25:47 +00:00
|
|
|
|
|
2004-07-27 14:10:48 +00:00
|
|
|
|
/* playback control */
|
2007-04-10 14:18:30 +00:00
|
|
|
|
playlist_amount,
|
|
|
|
|
playlist_resume,
|
|
|
|
|
playlist_start,
|
2005-04-04 12:06:29 +00:00
|
|
|
|
PREFIX(audio_play),
|
|
|
|
|
audio_stop,
|
|
|
|
|
audio_pause,
|
|
|
|
|
audio_resume,
|
|
|
|
|
audio_next,
|
|
|
|
|
audio_prev,
|
|
|
|
|
audio_ff_rewind,
|
|
|
|
|
audio_next_track,
|
|
|
|
|
audio_status,
|
|
|
|
|
audio_has_changed_track,
|
|
|
|
|
audio_current_track,
|
|
|
|
|
audio_flush_and_reload_tracks,
|
|
|
|
|
audio_get_file_pos,
|
2005-08-29 21:15:27 +00:00
|
|
|
|
#if !defined(SIMULATOR) && (CONFIG_CODEC != SWCODEC)
|
2005-04-25 08:21:10 +00:00
|
|
|
|
mpeg_get_last_header,
|
2005-04-25 08:59:19 +00:00
|
|
|
|
#endif
|
2006-03-05 19:46:33 +00:00
|
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) || \
|
|
|
|
|
(CONFIG_CODEC == SWCODEC)
|
2005-04-01 13:41:03 +00:00
|
|
|
|
sound_set_pitch,
|
2006-03-05 19:46:33 +00:00
|
|
|
|
#endif
|
2004-07-27 19:16:58 +00:00
|
|
|
|
|
2005-08-29 21:15:27 +00:00
|
|
|
|
#if !defined(SIMULATOR) && (CONFIG_CODEC != SWCODEC)
|
2004-07-27 19:16:58 +00:00
|
|
|
|
/* MAS communication */
|
|
|
|
|
mas_readmem,
|
|
|
|
|
mas_writemem,
|
|
|
|
|
mas_readreg,
|
|
|
|
|
mas_writereg,
|
2005-08-29 21:15:27 +00:00
|
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
2004-07-27 19:16:58 +00:00
|
|
|
|
mas_codec_writereg,
|
|
|
|
|
mas_codec_readreg,
|
2006-09-16 16:18:11 +00:00
|
|
|
|
i2c_begin,
|
|
|
|
|
i2c_end,
|
|
|
|
|
i2c_write,
|
2004-07-27 19:16:58 +00:00
|
|
|
|
#endif
|
2005-08-29 21:15:27 +00:00
|
|
|
|
#endif /* !SIMULATOR && CONFIG_CODEC != SWCODEC */
|
2004-07-27 14:10:48 +00:00
|
|
|
|
|
2006-01-15 18:20:18 +00:00
|
|
|
|
/* menu */
|
2007-03-07 13:00:46 +00:00
|
|
|
|
do_menu,
|
2007-05-08 11:55:43 +00:00
|
|
|
|
/* statusbars */
|
|
|
|
|
&statusbars,
|
|
|
|
|
gui_syncstatusbar_draw,
|
|
|
|
|
/* options */
|
2007-07-11 05:41:23 +00:00
|
|
|
|
find_setting,
|
|
|
|
|
option_screen,
|
2006-03-21 09:36:13 +00:00
|
|
|
|
set_option,
|
2007-06-22 09:34:57 +00:00
|
|
|
|
set_bool_options,
|
2006-09-16 16:18:11 +00:00
|
|
|
|
set_int,
|
|
|
|
|
set_bool,
|
2007-06-22 09:34:57 +00:00
|
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
|
set_color,
|
|
|
|
|
#endif
|
2006-01-15 18:20:18 +00:00
|
|
|
|
|
2006-09-16 16:18:11 +00:00
|
|
|
|
/* action handling */
|
|
|
|
|
get_custom_action,
|
|
|
|
|
get_action,
|
|
|
|
|
action_userabort,
|
2006-10-14 01:32:58 +00:00
|
|
|
|
|
2006-02-07 20:38:55 +00:00
|
|
|
|
/* power */
|
|
|
|
|
battery_level,
|
|
|
|
|
battery_level_safe,
|
|
|
|
|
battery_time,
|
|
|
|
|
#ifndef SIMULATOR
|
2006-05-01 05:45:18 +00:00
|
|
|
|
battery_voltage,
|
2006-02-07 20:38:55 +00:00
|
|
|
|
#endif
|
2007-02-18 05:32:06 +00:00
|
|
|
|
#if CONFIG_CHARGING
|
2006-02-07 20:38:55 +00:00
|
|
|
|
charger_inserted,
|
2006-06-06 22:23:52 +00:00
|
|
|
|
# if CONFIG_CHARGING == CHARGING_MONITOR
|
2006-02-07 20:38:55 +00:00
|
|
|
|
charging_state,
|
|
|
|
|
# endif
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_USB_POWER
|
|
|
|
|
usb_powered,
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
|
/* misc */
|
|
|
|
|
srand,
|
|
|
|
|
rand,
|
2003-12-09 06:48:55 +00:00
|
|
|
|
(qsort_func)qsort,
|
2003-07-09 22:36:23 +00:00
|
|
|
|
kbd_input,
|
2003-07-25 23:04:59 +00:00
|
|
|
|
get_time,
|
2004-07-27 19:16:58 +00:00
|
|
|
|
set_time,
|
2007-07-30 05:19:05 +00:00
|
|
|
|
#if CONFIG_RTC
|
|
|
|
|
mktime,
|
|
|
|
|
#endif
|
2003-07-25 23:04:59 +00:00
|
|
|
|
plugin_get_buffer,
|
2005-04-05 11:33:58 +00:00
|
|
|
|
plugin_get_audio_buffer,
|
2004-07-27 14:10:48 +00:00
|
|
|
|
plugin_tsr,
|
2007-08-06 13:42:52 +00:00
|
|
|
|
plugin_get_current_filename,
|
2007-11-18 17:12:19 +00:00
|
|
|
|
#ifdef PLUGIN_USE_IRAM
|
2007-04-10 14:18:30 +00:00
|
|
|
|
plugin_iram_init,
|
|
|
|
|
#endif
|
2004-06-10 13:29:52 +00:00
|
|
|
|
#if defined(DEBUG) || defined(SIMULATOR)
|
|
|
|
|
debugf,
|
2005-07-26 20:01:11 +00:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef ROCKBOX_HAS_LOGF
|
2006-11-11 08:00:28 +00:00
|
|
|
|
_logf,
|
2004-06-10 13:29:52 +00:00
|
|
|
|
#endif
|
2004-07-27 19:16:58 +00:00
|
|
|
|
&global_settings,
|
2007-04-10 14:18:30 +00:00
|
|
|
|
&global_status,
|
2007-10-19 15:31:42 +00:00
|
|
|
|
talk_disable,
|
2007-10-16 01:25:17 +00:00
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
|
codec_load_file,
|
|
|
|
|
get_codec_filename,
|
|
|
|
|
get_metadata,
|
|
|
|
|
#endif
|
2004-06-10 13:29:52 +00:00
|
|
|
|
mp3info,
|
|
|
|
|
count_mp3_frames,
|
|
|
|
|
create_xing_header,
|
2004-10-23 09:59:53 +00:00
|
|
|
|
find_next_frame,
|
2005-08-29 21:15:27 +00:00
|
|
|
|
#if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
|
2004-07-29 13:59:04 +00:00
|
|
|
|
peak_meter_scale_value,
|
2004-10-23 09:59:53 +00:00
|
|
|
|
peak_meter_set_use_dbfs,
|
2004-07-29 13:59:04 +00:00
|
|
|
|
peak_meter_get_use_dbfs,
|
|
|
|
|
#endif
|
2005-04-25 07:42:10 +00:00
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
|
read_bmp_file,
|
2006-01-15 18:20:18 +00:00
|
|
|
|
screen_dump_set_hook,
|
2005-04-25 07:42:10 +00:00
|
|
|
|
#endif
|
2005-09-02 05:39:09 +00:00
|
|
|
|
show_logo,
|
2006-03-11 09:28:49 +00:00
|
|
|
|
tree_get_context,
|
2007-08-06 13:42:52 +00:00
|
|
|
|
set_current_file,
|
|
|
|
|
set_dirfilter,
|
2005-06-18 01:25:47 +00:00
|
|
|
|
|
2006-09-26 19:25:52 +00:00
|
|
|
|
#ifdef HAVE_WHEEL_POSITION
|
|
|
|
|
wheel_status,
|
|
|
|
|
wheel_send_events,
|
|
|
|
|
#endif
|
2006-10-31 11:17:00 +00:00
|
|
|
|
|
2007-01-12 18:34:00 +00:00
|
|
|
|
#ifdef IRIVER_H100_SERIES
|
|
|
|
|
/* Routines for the iriver_flash -plugin. */
|
|
|
|
|
detect_original_firmware,
|
|
|
|
|
detect_flashed_ramimage,
|
|
|
|
|
detect_flashed_romimage,
|
2007-10-16 01:25:17 +00:00
|
|
|
|
#endif
|
|
|
|
|
led,
|
2007-12-09 18:48:02 +00:00
|
|
|
|
#if (CONFIG_CODEC == SWCODEC)
|
|
|
|
|
bufopen,
|
|
|
|
|
bufalloc,
|
|
|
|
|
bufclose,
|
|
|
|
|
bufseek,
|
|
|
|
|
bufadvance,
|
|
|
|
|
bufread,
|
|
|
|
|
bufgetdata,
|
|
|
|
|
bufgettail,
|
|
|
|
|
bufcuttail,
|
|
|
|
|
|
|
|
|
|
buf_get_offset,
|
|
|
|
|
buf_handle_offset,
|
|
|
|
|
buf_request_buffer_handle,
|
|
|
|
|
buf_set_base_handle,
|
|
|
|
|
buf_used,
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TAGCACHE
|
|
|
|
|
tagcache_search,
|
|
|
|
|
tagcache_search_set_uniqbuf,
|
|
|
|
|
tagcache_search_add_filter,
|
|
|
|
|
tagcache_get_next,
|
|
|
|
|
tagcache_retrieve,
|
|
|
|
|
tagcache_search_finish,
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_ALBUMART
|
|
|
|
|
find_albumart,
|
|
|
|
|
search_albumart_files,
|
|
|
|
|
#endif
|
2007-12-29 19:46:35 +00:00
|
|
|
|
|
2008-03-24 00:35:53 +00:00
|
|
|
|
/* new stuff at the end, sort into place next time
|
|
|
|
|
the API gets incompatible */
|
|
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
|
};
|
|
|
|
|
|
2004-08-18 01:09:31 +00:00
|
|
|
|
int plugin_load(const char* plugin, void* parameter)
|
2003-06-29 16:33:04 +00:00
|
|
|
|
{
|
2006-03-02 01:08:38 +00:00
|
|
|
|
int rc;
|
2006-01-17 20:39:44 +00:00
|
|
|
|
struct plugin_header *hdr;
|
2006-03-02 01:08:38 +00:00
|
|
|
|
#ifdef SIMULATOR
|
|
|
|
|
void *pd;
|
|
|
|
|
#else
|
|
|
|
|
int fd;
|
2006-01-15 18:20:18 +00:00
|
|
|
|
ssize_t readsize;
|
2005-02-22 12:56:58 +00:00
|
|
|
|
#endif
|
2006-01-16 23:20:58 +00:00
|
|
|
|
int xm, ym;
|
2006-02-18 00:13:44 +00:00
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
|
int rxm, rym;
|
|
|
|
|
#endif
|
2006-11-15 06:14:27 +00:00
|
|
|
|
|
2006-11-13 00:45:21 +00:00
|
|
|
|
#if LCD_DEPTH > 1
|
2006-02-02 20:42:56 +00:00
|
|
|
|
fb_data* old_backdrop;
|
|
|
|
|
#endif
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
2004-04-30 20:37:11 +00:00
|
|
|
|
if (pfn_tsr_exit != NULL) /* if we have a resident old plugin: */
|
|
|
|
|
{
|
2007-08-08 07:27:07 +00:00
|
|
|
|
if (pfn_tsr_exit(!strcmp(current_plugin, plugin)) == false )
|
2006-10-31 11:17:00 +00:00
|
|
|
|
{
|
|
|
|
|
/* not allowing another plugin to load */
|
|
|
|
|
return PLUGIN_OK;
|
|
|
|
|
}
|
2004-04-30 20:37:11 +00:00
|
|
|
|
pfn_tsr_exit = NULL;
|
2005-11-10 08:07:31 +00:00
|
|
|
|
plugin_loaded = false;
|
2004-04-30 20:37:11 +00:00
|
|
|
|
}
|
2007-04-10 14:18:30 +00:00
|
|
|
|
|
2007-08-06 13:08:36 +00:00
|
|
|
|
gui_syncsplash(0, ID2P(LANG_WAIT));
|
2007-08-08 07:27:07 +00:00
|
|
|
|
strcpy(current_plugin, plugin);
|
2006-02-16 22:36:04 +00:00
|
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
|
#ifdef SIMULATOR
|
2006-03-02 01:08:38 +00:00
|
|
|
|
hdr = sim_plugin_load((char *)plugin, &pd);
|
|
|
|
|
if (pd == NULL) {
|
2007-03-16 21:56:08 +00:00
|
|
|
|
gui_syncsplash(HZ*2, str(LANG_PLUGIN_CANT_OPEN), plugin);
|
2003-06-29 16:33:04 +00:00
|
|
|
|
return -1;
|
2006-01-16 23:20:58 +00:00
|
|
|
|
}
|
|
|
|
|
if (hdr == NULL
|
|
|
|
|
|| hdr->magic != PLUGIN_MAGIC
|
2006-01-18 08:34:32 +00:00
|
|
|
|
|| hdr->target_id != TARGET_ID) {
|
2006-03-02 01:08:38 +00:00
|
|
|
|
sim_plugin_close(pd);
|
2007-03-16 21:56:08 +00:00
|
|
|
|
gui_syncsplash(HZ*2, str(LANG_PLUGIN_WRONG_MODEL));
|
2006-01-16 23:20:58 +00:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
if (hdr->api_version > PLUGIN_API_VERSION
|
|
|
|
|
|| hdr->api_version < PLUGIN_MIN_API_VERSION) {
|
2006-03-02 01:08:38 +00:00
|
|
|
|
sim_plugin_close(pd);
|
2007-03-16 21:56:08 +00:00
|
|
|
|
gui_syncsplash(HZ*2, str(LANG_PLUGIN_WRONG_VERSION));
|
2006-01-16 23:20:58 +00:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
2003-06-29 16:33:04 +00:00
|
|
|
|
#else
|
|
|
|
|
fd = open(plugin, O_RDONLY);
|
|
|
|
|
if (fd < 0) {
|
2007-03-16 21:56:08 +00:00
|
|
|
|
gui_syncsplash(HZ*2, str(LANG_PLUGIN_CANT_OPEN), plugin);
|
2003-06-29 16:33:04 +00:00
|
|
|
|
return fd;
|
|
|
|
|
}
|
2006-01-17 20:39:44 +00:00
|
|
|
|
|
|
|
|
|
readsize = read(fd, pluginbuf, PLUGIN_BUFFER_SIZE);
|
2006-01-16 23:20:58 +00:00
|
|
|
|
close(fd);
|
2006-01-15 18:20:18 +00:00
|
|
|
|
|
2006-01-18 08:34:32 +00:00
|
|
|
|
if (readsize < 0) {
|
2007-03-16 21:56:08 +00:00
|
|
|
|
gui_syncsplash(HZ*2, str(LANG_READ_FAILED), plugin);
|
2006-01-15 18:20:18 +00:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
2006-01-17 20:39:44 +00:00
|
|
|
|
hdr = (struct plugin_header *)pluginbuf;
|
|
|
|
|
|
2006-01-18 08:34:32 +00:00
|
|
|
|
if ((unsigned)readsize <= sizeof(struct plugin_header)
|
|
|
|
|
|| hdr->magic != PLUGIN_MAGIC
|
2006-01-17 20:39:44 +00:00
|
|
|
|
|| hdr->target_id != TARGET_ID
|
|
|
|
|
|| hdr->load_addr != pluginbuf
|
|
|
|
|
|| hdr->end_addr > pluginbuf + PLUGIN_BUFFER_SIZE) {
|
2007-03-16 21:56:08 +00:00
|
|
|
|
gui_syncsplash(HZ*2, str(LANG_PLUGIN_WRONG_MODEL));
|
2006-01-15 18:20:18 +00:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
2006-01-17 20:39:44 +00:00
|
|
|
|
if (hdr->api_version > PLUGIN_API_VERSION
|
|
|
|
|
|| hdr->api_version < PLUGIN_MIN_API_VERSION) {
|
2007-03-16 21:56:08 +00:00
|
|
|
|
gui_syncsplash(HZ*2, str(LANG_PLUGIN_WRONG_VERSION));
|
2006-01-15 18:20:18 +00:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
2006-01-17 20:39:44 +00:00
|
|
|
|
plugin_size = hdr->end_addr - pluginbuf;
|
2006-04-06 18:26:14 +00:00
|
|
|
|
|
|
|
|
|
/* zero out bss area only, above guards end of pluginbuf */
|
2007-04-12 05:18:53 +00:00
|
|
|
|
if (plugin_size > readsize)
|
|
|
|
|
memset(pluginbuf + readsize, 0, plugin_size - readsize);
|
2003-06-29 16:33:04 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2003-07-25 23:04:59 +00:00
|
|
|
|
plugin_loaded = true;
|
2005-02-09 14:19:14 +00:00
|
|
|
|
|
2006-02-16 22:36:04 +00:00
|
|
|
|
xm = lcd_getxmargin();
|
|
|
|
|
ym = lcd_getymargin();
|
|
|
|
|
lcd_setmargins(0,0);
|
2007-04-10 14:18:30 +00:00
|
|
|
|
|
2007-04-06 22:55:00 +00:00
|
|
|
|
#if defined HAVE_LCD_BITMAP && LCD_DEPTH > 1
|
2006-02-14 00:39:11 +00:00
|
|
|
|
old_backdrop = lcd_get_backdrop();
|
2006-02-16 22:36:04 +00:00
|
|
|
|
#endif
|
|
|
|
|
lcd_clear_display();
|
2006-02-14 00:39:11 +00:00
|
|
|
|
lcd_update();
|
|
|
|
|
|
2006-02-18 00:13:44 +00:00
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
|
rxm = lcd_remote_getxmargin();
|
|
|
|
|
rym = lcd_remote_getymargin();
|
|
|
|
|
lcd_remote_setmargins(0, 0);
|
|
|
|
|
lcd_remote_clear_display();
|
|
|
|
|
lcd_remote_update();
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-02-09 14:19:14 +00:00
|
|
|
|
invalidate_icache();
|
2007-03-21 07:26:07 +00:00
|
|
|
|
|
2006-01-17 20:39:44 +00:00
|
|
|
|
rc = hdr->entry_point((struct plugin_api*) &rockbox_api, parameter);
|
2004-07-21 08:02:23 +00:00
|
|
|
|
/* explicitly casting the pointer here to avoid touching every plugin. */
|
2007-04-10 14:18:30 +00:00
|
|
|
|
|
2004-07-21 08:02:23 +00:00
|
|
|
|
button_clear_queue();
|
2006-02-18 00:13:44 +00:00
|
|
|
|
|
2005-06-24 22:33:21 +00:00
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2005-07-14 18:12:27 +00:00
|
|
|
|
#if LCD_DEPTH > 1
|
2006-10-09 07:00:50 +00:00
|
|
|
|
lcd_set_backdrop(old_backdrop);
|
2006-11-13 00:45:21 +00:00
|
|
|
|
#ifdef HAVE_LCD_COLOR
|
2006-05-01 05:45:18 +00:00
|
|
|
|
lcd_set_drawinfo(DRMODE_SOLID, global_settings.fg_color,
|
2006-02-26 02:48:05 +00:00
|
|
|
|
global_settings.bg_color);
|
|
|
|
|
#else
|
2005-11-16 21:09:23 +00:00
|
|
|
|
lcd_set_drawinfo(DRMODE_SOLID, LCD_DEFAULT_FG, LCD_DEFAULT_BG);
|
2006-02-26 02:48:05 +00:00
|
|
|
|
#endif
|
2005-07-19 10:33:41 +00:00
|
|
|
|
#else /* LCD_DEPTH == 1 */
|
2005-06-24 22:33:21 +00:00
|
|
|
|
lcd_set_drawmode(DRMODE_SOLID);
|
2005-07-19 10:33:41 +00:00
|
|
|
|
#endif /* LCD_DEPTH */
|
2007-04-06 22:55:00 +00:00
|
|
|
|
#endif /* HAVE_LCD_BITMAP */
|
|
|
|
|
|
2006-01-16 23:20:58 +00:00
|
|
|
|
/* restore margins */
|
|
|
|
|
lcd_setmargins(xm,ym);
|
2006-02-16 22:36:04 +00:00
|
|
|
|
lcd_clear_display();
|
|
|
|
|
lcd_update();
|
2006-02-18 00:13:44 +00:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2006-10-09 07:00:50 +00:00
|
|
|
|
#if LCD_REMOTE_DEPTH > 1
|
2006-10-14 01:32:58 +00:00
|
|
|
|
lcd_remote_set_drawinfo(DRMODE_SOLID, LCD_REMOTE_DEFAULT_FG,
|
2006-10-09 07:00:50 +00:00
|
|
|
|
LCD_REMOTE_DEFAULT_BG);
|
|
|
|
|
#else
|
2006-02-18 00:13:44 +00:00
|
|
|
|
lcd_remote_set_drawmode(DRMODE_SOLID);
|
2006-10-09 07:00:50 +00:00
|
|
|
|
#endif
|
2006-02-18 00:13:44 +00:00
|
|
|
|
lcd_remote_setmargins(rxm, rym);
|
|
|
|
|
lcd_remote_clear_display();
|
2007-10-16 01:25:17 +00:00
|
|
|
|
|
|
|
|
|
|
2006-02-18 00:13:44 +00:00
|
|
|
|
lcd_remote_update();
|
2007-10-16 01:25:17 +00:00
|
|
|
|
|
|
|
|
|
|
2006-02-18 00:13:44 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2005-11-10 08:07:31 +00:00
|
|
|
|
if (pfn_tsr_exit == NULL)
|
|
|
|
|
plugin_loaded = false;
|
2003-07-25 23:04:59 +00:00
|
|
|
|
|
2006-03-02 01:08:38 +00:00
|
|
|
|
sim_plugin_close(pd);
|
2006-01-16 23:20:58 +00:00
|
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
|
switch (rc) {
|
|
|
|
|
case PLUGIN_OK:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PLUGIN_USB_CONNECTED:
|
|
|
|
|
return PLUGIN_USB_CONNECTED;
|
|
|
|
|
|
|
|
|
|
default:
|
2007-03-16 21:56:08 +00:00
|
|
|
|
gui_syncsplash(HZ*2, str(LANG_PLUGIN_ERROR));
|
2003-06-29 16:33:04 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return PLUGIN_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2003-07-25 23:04:59 +00:00
|
|
|
|
/* Returns a pointer to the portion of the plugin buffer that is not already
|
|
|
|
|
being used. If no plugin is loaded, returns the entire plugin buffer */
|
2007-04-21 18:38:25 +00:00
|
|
|
|
void* plugin_get_buffer(size_t *buffer_size)
|
2003-07-25 23:04:59 +00:00
|
|
|
|
{
|
|
|
|
|
int buffer_pos;
|
|
|
|
|
|
|
|
|
|
if (plugin_loaded)
|
|
|
|
|
{
|
|
|
|
|
if (plugin_size >= PLUGIN_BUFFER_SIZE)
|
|
|
|
|
return NULL;
|
2006-05-01 05:45:18 +00:00
|
|
|
|
|
2003-07-25 23:04:59 +00:00
|
|
|
|
*buffer_size = PLUGIN_BUFFER_SIZE-plugin_size;
|
|
|
|
|
buffer_pos = plugin_size;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
*buffer_size = PLUGIN_BUFFER_SIZE;
|
|
|
|
|
buffer_pos = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return &pluginbuf[buffer_pos];
|
|
|
|
|
}
|
|
|
|
|
|
2006-05-01 05:45:18 +00:00
|
|
|
|
/* Returns a pointer to the mp3 buffer.
|
2006-11-06 18:07:30 +00:00
|
|
|
|
Playback gets stopped, to avoid conflicts.
|
|
|
|
|
Talk buffer is stolen as well.
|
|
|
|
|
*/
|
2007-04-21 18:38:25 +00:00
|
|
|
|
void* plugin_get_audio_buffer(size_t *buffer_size)
|
2004-01-30 22:30:40 +00:00
|
|
|
|
{
|
2006-11-06 18:07:30 +00:00
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2007-04-21 18:38:25 +00:00
|
|
|
|
return audio_get_buffer(true, buffer_size);
|
2006-11-06 18:07:30 +00:00
|
|
|
|
#else
|
2005-04-04 12:06:29 +00:00
|
|
|
|
audio_stop();
|
2004-03-14 21:33:53 +00:00
|
|
|
|
talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
|
2005-04-05 11:33:58 +00:00
|
|
|
|
*buffer_size = audiobufend - audiobuf;
|
|
|
|
|
return audiobuf;
|
2006-11-18 02:18:29 +00:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-18 17:12:19 +00:00
|
|
|
|
#ifdef PLUGIN_USE_IRAM
|
2006-11-18 02:18:29 +00:00
|
|
|
|
/* Initializes plugin IRAM */
|
|
|
|
|
void plugin_iram_init(char *iramstart, char *iramcopy, size_t iram_size,
|
|
|
|
|
char *iedata, size_t iedata_size)
|
|
|
|
|
{
|
2007-11-18 17:12:19 +00:00
|
|
|
|
/* We need to stop audio playback in order to use codec IRAM */
|
|
|
|
|
audio_hard_stop();
|
2006-11-18 02:18:29 +00:00
|
|
|
|
memcpy(iramstart, iramcopy, iram_size);
|
|
|
|
|
memset(iedata, 0, iedata_size);
|
2006-11-26 18:31:41 +00:00
|
|
|
|
memset(iramcopy, 0, iram_size);
|
2007-08-04 00:11:41 +00:00
|
|
|
|
#if NUM_CORES > 1
|
|
|
|
|
/* writeback cleared iedata and iramcopy areas */
|
|
|
|
|
flush_icache();
|
|
|
|
|
#endif
|
2004-01-30 22:30:40 +00:00
|
|
|
|
}
|
2007-11-18 17:12:19 +00:00
|
|
|
|
#endif /* PLUGIN_USE_IRAM */
|
2004-01-30 22:30:40 +00:00
|
|
|
|
|
2004-04-30 20:37:11 +00:00
|
|
|
|
/* The plugin wants to stay resident after leaving its main function, e.g.
|
2006-05-01 05:45:18 +00:00
|
|
|
|
runs from timer or own thread. The callback is registered to later
|
2004-04-30 20:37:11 +00:00
|
|
|
|
instruct it to free its resources before a new plugin gets loaded. */
|
2006-10-31 11:17:00 +00:00
|
|
|
|
void plugin_tsr(bool (*exit_callback)(bool))
|
2004-04-30 20:37:11 +00:00
|
|
|
|
{
|
|
|
|
|
pfn_tsr_exit = exit_callback; /* remember the callback for later */
|
|
|
|
|
}
|
2007-08-06 13:42:52 +00:00
|
|
|
|
|
|
|
|
|
char *plugin_get_current_filename(void)
|
|
|
|
|
{
|
|
|
|
|
return current_plugin;
|
|
|
|
|
}
|