1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 Björn Stenberg
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 ****************************************************************************/
32 #include "backlight.h"
33 #include "sound_menu.h"
35 #include "powermgmt.h"
38 #include "option_select.h"
47 #ifdef HAVE_LCD_BITMAP
48 #include "scrollbar.h"
49 #include "peakmeter.h"
54 #if defined(HAVE_USBSTACK) && defined(USB_ENABLE_HID)
55 #include "usbstack/usb_hid.h"
59 #define PREFIX(_x_) sim_ ## _x_
65 static unsigned char pluginbuf
[PLUGIN_BUFFER_SIZE
];
66 void *sim_plugin_load(char *plugin
, void **pd
);
67 void sim_plugin_close(void *pd
);
68 void sim_lcd_ex_init(unsigned long (*getpixel
)(int, int));
69 void sim_lcd_ex_update_rect(int x
, int y
, int width
, int height
);
71 #define sim_plugin_close(x)
72 extern unsigned char pluginbuf
[];
76 /* for actual plugins only, not for codecs */
77 static bool plugin_loaded
= false;
78 static int plugin_size
= 0;
79 static bool (*pfn_tsr_exit
)(bool reenter
) = NULL
; /* TSR exit callback */
80 static char current_plugin
[MAX_PATH
];
82 char *plugin_get_current_filename(void);
84 static const struct plugin_api rockbox_api
= {
87 #ifdef HAVE_LCD_CONTRAST
97 #ifdef HAVE_LCD_CHARCELLS
99 lcd_get_locked_pattern
,
107 &lcd_framebuffer
[0][0],
118 lcd_mono_bitmap_part
,
131 lcd_bitmap_transparent_part
,
132 lcd_bitmap_transparent
,
135 #if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) \
136 || defined(IRIVER_H10) || defined(COWON_D2) || defined(PHILIPS_HDD1630) \
137 || defined(SANSA_FUZE) || defined(SANSA_E200V2) || defined(TOSHIBA_GIGABEAT_S)
140 #endif /* MEMORYSIZE > 2 */
141 #elif (LCD_DEPTH < 4) && !defined(SIMULATOR)
144 #endif /* LCD_DEPTH */
145 #if defined(HAVE_LCD_MODES) && (HAVE_LCD_MODES & LCD_MODE_PAL256)
147 lcd_pal256_update_pal
,
150 lcd_puts_scroll_style
,
151 #ifdef HAVE_LCD_INVERT
152 lcd_set_invert_display
,
153 #endif /* HAVE_LCD_INVERT */
154 #if defined(HAVE_LCD_MODES)
157 #if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
158 lcd_activation_set_hook
,
169 #endif /* HAVE_LCD_BITMAP */
174 backlight_set_timeout
,
175 #ifdef HAVE_BACKLIGHT_BRIGHTNESS
176 backlight_set_brightness
,
177 #endif /* HAVE_BACKLIGHT_BRIGHTNESS */
180 backlight_set_timeout_plugged
,
186 #ifdef HAVE_REMOTE_LCD
188 lcd_remote_set_contrast
,
189 lcd_remote_clear_display
,
191 lcd_remote_puts_scroll
,
192 lcd_remote_stop_scroll
,
193 lcd_remote_set_drawmode
,
194 lcd_remote_get_drawmode
,
196 lcd_remote_getstringsize
,
197 lcd_remote_drawpixel
,
203 lcd_remote_mono_bitmap_part
,
204 lcd_remote_mono_bitmap
,
206 lcd_remote_puts_style
,
207 lcd_remote_puts_scroll_style
,
208 &lcd_remote_framebuffer
[0][0],
210 lcd_remote_update_rect
,
213 remote_backlight_off
,
214 remote_backlight_set_timeout
,
216 remote_backlight_set_timeout_plugged
,
218 #endif /* HAVE_REMOTE_LCD */
220 {&screens
[SCREEN_MAIN
], &screens
[SCREEN_REMOTE
]},
222 {&screens
[SCREEN_MAIN
]},
224 #if defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1)
225 lcd_remote_set_foreground
,
226 lcd_remote_get_foreground
,
227 lcd_remote_set_background
,
228 lcd_remote_get_background
,
229 lcd_remote_bitmap_part
,
232 viewport_set_defaults
,
233 viewportmanager_set_statusbar
,
237 gui_synclist_set_nb_items
,
238 gui_synclist_set_icon_callback
,
239 gui_synclist_get_nb_items
,
240 gui_synclist_get_sel_pos
,
242 gui_synclist_select_item
,
243 gui_synclist_add_item
,
244 gui_synclist_del_item
,
245 gui_synclist_limit_scroll
,
246 gui_synclist_do_button
,
247 gui_synclist_set_title
,
249 simplelist_info_init
,
250 simplelist_show_list
,
256 #ifdef HAVE_BUTTON_DATA
261 #ifdef HAS_BUTTON_HOLD
264 #ifdef HAVE_TOUCHSCREEN
265 touchscreen_set_mode
,
268 #ifdef HAVE_BUTTON_LIGHT
269 buttonlight_set_timeout
,
272 #ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
273 buttonlight_set_brightness
,
274 #endif /* HAVE_BUTTONLIGHT_BRIGHTNESS */
275 #endif /* HAVE_BUTTON_LIGHT */
278 (open_func
)PREFIX(open
),
280 (read_func
)PREFIX(read
),
282 (creat_func
)PREFIX(creat
),
283 (write_func
)PREFIX(write
),
294 #if USING_STORAGE_CALLBACK
295 register_storage_idle_func
,
296 unregister_storage_idle_func
,
297 #endif /* USING_STORAGE_CALLBACK */
299 create_numbered_filename
,
318 default_event_handler
,
319 default_event_handler_ex
,
323 #if (CONFIG_CODEC == SWCODEC)
325 #ifdef HAVE_PRIORITY_SCHEDULING
333 reset_poweroff_timer
,
338 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
339 #ifdef CPU_BOOST_LOGGING
344 #endif /* HAVE_ADJUSTABLE_CPU_FREQ */
345 #endif /* !SIMULATOR */
346 #ifdef HAVE_SCHEDULER_BOOSTCTRL
362 #if CONFIG_CODEC == SWCODEC
363 queue_enable_queue_send
,
370 #if defined(HAVE_USBSTACK) && defined(USB_ENABLE_HID)
376 __cyg_profile_func_enter
,
377 __cyg_profile_func_exit
,
381 /* special simulator hooks */
382 #if defined(HAVE_LCD_BITMAP) && LCD_DEPTH < 8
384 sim_lcd_ex_update_rect
,
388 /* strings and memory */
431 #if CONFIG_CODEC != SWCODEC
435 #if CONFIG_CODEC == SWCODEC
436 &audio_master_sampr_list
[0],
445 pcm_get_bytes_waiting
,
449 #ifdef HAVE_RECORDING
456 pcm_calculate_rec_peaks
,
457 audio_set_recording_gain
,
458 #endif /* HAVE_RECORDING */
459 #if INPUT_SRC_CAPS != 0
460 audio_set_output_source
,
461 audio_set_input_source
,
470 dsp_flush_limiter_buffer
,
471 #endif /* CONFIG_CODEC == SWCODEC */
473 /* playback control */
479 playlist_remove_all_tracks
,
481 playlist_insert_track
,
482 playlist_insert_directory
,
494 audio_flush_and_reload_tracks
,
496 #if !defined(SIMULATOR) && (CONFIG_CODEC != SWCODEC)
497 mpeg_get_last_header
,
499 #if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) || \
500 (CONFIG_CODEC == SWCODEC)
504 #if !defined(SIMULATOR) && (CONFIG_CODEC != SWCODEC)
505 /* MAS communication */
510 #if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
517 #endif /* !SIMULATOR && CONFIG_CODEC != SWCODEC */
523 gui_syncstatusbar_draw
,
532 #ifdef HAVE_LCD_COLOR
536 /* action handling */
539 #ifdef HAVE_TOUCHSCREEN
540 action_get_touchscreen_press
,
553 # if CONFIG_CHARGING >= CHARGING_MONITOR
557 #ifdef HAVE_USB_POWER
572 plugin_get_audio_buffer
,
574 plugin_get_current_filename
,
575 #ifdef PLUGIN_USE_IRAM
578 #if defined(DEBUG) || defined(SIMULATOR)
581 #ifdef ROCKBOX_HAS_LOGF
587 #if CONFIG_CODEC == SWCODEC
588 codec_thread_do_callback
,
597 #if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
598 peak_meter_scale_value
,
599 peak_meter_set_use_dbfs
,
600 peak_meter_get_use_dbfs
,
602 #ifdef HAVE_LCD_BITMAP
609 screen_dump_set_hook
,
616 #ifdef HAVE_WHEEL_POSITION
621 #ifdef IRIVER_H100_SERIES
622 /* Routines for the iriver_flash -plugin. */
623 detect_original_firmware
,
624 detect_flashed_ramimage
,
625 detect_flashed_romimage
,
628 #if (CONFIG_CODEC == SWCODEC)
641 buf_request_buffer_handle
,
648 tagcache_search_set_uniqbuf
,
649 tagcache_search_add_filter
,
652 tagcache_search_finish
,
653 tagcache_get_numeric
,
654 #ifdef HAVE_TC_RAMCACHE
660 search_albumart_files
,
663 #ifdef HAVE_SEMAPHORE_OBJECTS
670 /* new stuff at the end, sort into place next time
671 the API gets incompatible */
674 int plugin_load(const char* plugin
, const void* parameter
)
678 struct plugin_header
*hdr
;
679 struct viewport plugin_vp
[NB_SCREENS
];
682 #else /* !SIMULATOR */
688 #endif /* !SIMULATOR */
691 fb_data
* old_backdrop
;
694 if (pfn_tsr_exit
!= NULL
) /* if we have a resident old plugin: */
696 if (pfn_tsr_exit(!strcmp(current_plugin
, plugin
)) == false )
698 /* not allowing another plugin to load */
702 plugin_loaded
= false;
705 splash(0, ID2P(LANG_WAIT
));
706 strcpy(current_plugin
, plugin
);
709 hdr
= sim_plugin_load((char *)plugin
, &pd
);
711 splashf(HZ
*2, str(LANG_PLUGIN_CANT_OPEN
), plugin
);
715 || hdr
->magic
!= PLUGIN_MAGIC
716 || hdr
->target_id
!= TARGET_ID
) {
717 sim_plugin_close(pd
);
718 splash(HZ
*2, str(LANG_PLUGIN_WRONG_MODEL
));
721 if (hdr
->api_version
> PLUGIN_API_VERSION
722 || hdr
->api_version
< PLUGIN_MIN_API_VERSION
) {
723 sim_plugin_close(pd
);
724 splash(HZ
*2, str(LANG_PLUGIN_WRONG_VERSION
));
728 fd
= open(plugin
, O_RDONLY
);
730 splashf(HZ
*2, str(LANG_PLUGIN_CANT_OPEN
), plugin
);
734 /* Make sure COP cache is flushed and invalidated before loading */
735 my_core
= switch_core(CURRENT_CORE
^ 1);
736 cpucache_invalidate();
737 switch_core(my_core
);
740 readsize
= read(fd
, pluginbuf
, PLUGIN_BUFFER_SIZE
);
744 splashf(HZ
*2, str(LANG_READ_FAILED
), plugin
);
747 hdr
= (struct plugin_header
*)pluginbuf
;
749 if ((unsigned)readsize
<= sizeof(struct plugin_header
)
750 || hdr
->magic
!= PLUGIN_MAGIC
751 || hdr
->target_id
!= TARGET_ID
752 || hdr
->load_addr
!= pluginbuf
753 || hdr
->end_addr
> pluginbuf
+ PLUGIN_BUFFER_SIZE
) {
754 splash(HZ
*2, str(LANG_PLUGIN_WRONG_MODEL
));
757 if (hdr
->api_version
> PLUGIN_API_VERSION
758 || hdr
->api_version
< PLUGIN_MIN_API_VERSION
) {
759 splash(HZ
*2, str(LANG_PLUGIN_WRONG_VERSION
));
762 plugin_size
= hdr
->end_addr
- pluginbuf
;
764 /* zero out bss area only, above guards end of pluginbuf */
765 if (plugin_size
> readsize
)
766 memset(pluginbuf
+ readsize
, 0, plugin_size
- readsize
);
769 *(hdr
->api
) = &rockbox_api
;
770 plugin_loaded
= true;
773 #if defined HAVE_LCD_BITMAP && LCD_DEPTH > 1
774 old_backdrop
= lcd_get_backdrop();
779 #ifdef HAVE_REMOTE_LCD
780 lcd_remote_clear_display();
784 oldbars
= viewportmanager_set_statusbar(VP_SB_HIDE_ALL
);
787 viewport_set_fullscreen(&plugin_vp
[i
], i
);
789 viewport_set_current_vp(plugin_vp
);
791 cpucache_invalidate();
793 #ifdef HAVE_TOUCHSCREEN
794 touchscreen_set_mode(TOUCHSCREEN_BUTTON
);
797 rc
= hdr
->entry_point(parameter
);
799 /* Go back to the global setting in case the plugin changed it */
800 #ifdef HAVE_TOUCHSCREEN
801 touchscreen_set_mode(global_settings
.touch_mode
);
804 viewportmanager_set_statusbar(oldbars
);
806 button_clear_queue();
808 #ifdef HAVE_LCD_BITMAP
809 lcd_setfont(FONT_UI
);
811 lcd_set_backdrop(old_backdrop
);
812 #ifdef HAVE_LCD_COLOR
813 lcd_set_drawinfo(DRMODE_SOLID
, global_settings
.fg_color
,
814 global_settings
.bg_color
);
816 lcd_set_drawinfo(DRMODE_SOLID
, LCD_DEFAULT_FG
, LCD_DEFAULT_BG
);
818 #else /* LCD_DEPTH == 1 */
819 lcd_set_drawmode(DRMODE_SOLID
);
820 #endif /* LCD_DEPTH */
821 #endif /* HAVE_LCD_BITMAP */
824 #ifdef HAVE_REMOTE_LCD
825 #if LCD_REMOTE_DEPTH > 1
826 lcd_remote_set_drawinfo(DRMODE_SOLID
, LCD_REMOTE_DEFAULT_FG
,
827 LCD_REMOTE_DEFAULT_BG
);
829 lcd_remote_set_drawmode(DRMODE_SOLID
);
833 if (rc
!= PLUGIN_GOTO_WPS
)
835 send_event(GUI_EVENT_REFRESH
, NULL
);
838 viewportmanager_set_statusbar(oldbars
);
839 viewport_set_current_vp(NULL
);
840 if (pfn_tsr_exit
== NULL
)
841 plugin_loaded
= false;
843 sim_plugin_close(pd
);
845 if (rc
== PLUGIN_ERROR
)
846 splash(HZ
*2, str(LANG_PLUGIN_ERROR
));
851 /* Returns a pointer to the portion of the plugin buffer that is not already
852 being used. If no plugin is loaded, returns the entire plugin buffer */
853 void* plugin_get_buffer(size_t *buffer_size
)
859 if (plugin_size
>= PLUGIN_BUFFER_SIZE
)
862 *buffer_size
= PLUGIN_BUFFER_SIZE
-plugin_size
;
863 buffer_pos
= plugin_size
;
867 *buffer_size
= PLUGIN_BUFFER_SIZE
;
871 return &pluginbuf
[buffer_pos
];
874 /* Returns a pointer to the mp3 buffer.
875 Playback gets stopped, to avoid conflicts.
876 Talk buffer is stolen as well.
878 void* plugin_get_audio_buffer(size_t *buffer_size
)
880 #if CONFIG_CODEC == SWCODEC
881 return audio_get_buffer(true, buffer_size
);
884 talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
885 *buffer_size
= audiobufend
- audiobuf
;
890 #ifdef PLUGIN_USE_IRAM
891 /* Initializes plugin IRAM */
892 void plugin_iram_init(char *iramstart
, char *iramcopy
, size_t iram_size
,
893 char *iedata
, size_t iedata_size
)
895 /* We need to stop audio playback in order to use codec IRAM */
897 memcpy(iramstart
, iramcopy
, iram_size
);
898 memset(iedata
, 0, iedata_size
);
899 memset(iramcopy
, 0, iram_size
);
901 /* writeback cleared iedata and iramcopy areas */
905 #endif /* PLUGIN_USE_IRAM */
907 /* The plugin wants to stay resident after leaving its main function, e.g.
908 runs from timer or own thread. The callback is registered to later
909 instruct it to free its resources before a new plugin gets loaded. */
910 void plugin_tsr(bool (*exit_callback
)(bool))
912 pfn_tsr_exit
= exit_callback
; /* remember the callback for later */
915 char *plugin_get_current_filename(void)
917 return current_plugin
;