1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 Björn Stenberg
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
30 #include "backlight.h"
31 #include "sound_menu.h"
33 #include "powermgmt.h"
36 #include "option_select.h"
43 #ifdef HAVE_LCD_BITMAP
44 #include "scrollbar.h"
45 #include "peakmeter.h"
51 static unsigned char pluginbuf
[PLUGIN_BUFFER_SIZE
];
52 void *sim_plugin_load(char *plugin
, void **pd
);
53 void sim_plugin_close(void *pd
);
54 void sim_lcd_ex_init(int shades
, unsigned long (*getpixel
)(int, int));
55 void sim_lcd_ex_update_rect(int x
, int y
, int width
, int height
);
57 #define sim_plugin_close(x)
58 extern unsigned char pluginbuf
[];
62 /* for actual plugins only, not for codecs */
63 static bool plugin_loaded
= false;
64 static int plugin_size
= 0;
65 static bool (*pfn_tsr_exit
)(bool reenter
) = NULL
; /* TSR exit callback */
66 static char current_plugin
[MAX_PATH
];
68 char *plugin_get_current_filename(void);
70 extern struct thread_entry threads
[MAXTHREADS
];
72 static const struct plugin_api rockbox_api
= {
83 #ifdef HAVE_LCD_CHARCELLS
85 lcd_get_locked_pattern
,
93 &lcd_framebuffer
[0][0],
104 lcd_mono_bitmap_part
,
117 lcd_bitmap_transparent_part
,
118 lcd_bitmap_transparent
,
120 #if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) \
121 || defined (IRIVER_H10)
124 #elif (LCD_DEPTH < 4) && !defined(SIMULATOR)
127 #endif /* LCD_DEPTH */
129 lcd_puts_scroll_style
,
130 #ifdef HAVE_LCD_INVERT
131 lcd_set_invert_display
,
132 #endif /* HAVE_LCD_INVERT */
133 #ifdef HAVE_LCD_ENABLE
149 backlight_set_timeout
,
150 #ifdef HAVE_BACKLIGHT_BRIGHTNESS
151 backlight_set_brightness
,
152 #endif /* HAVE_BACKLIGHT_BRIGHTNESS */
155 backlight_set_timeout_plugged
,
160 #ifdef HAVE_REMOTE_LCD
162 lcd_remote_set_contrast
,
163 lcd_remote_clear_display
,
165 lcd_remote_puts_scroll
,
166 lcd_remote_stop_scroll
,
167 lcd_remote_set_drawmode
,
168 lcd_remote_get_drawmode
,
170 lcd_remote_getstringsize
,
171 lcd_remote_drawpixel
,
177 lcd_remote_mono_bitmap_part
,
178 lcd_remote_mono_bitmap
,
180 lcd_remote_puts_style
,
181 lcd_remote_puts_scroll_style
,
182 &lcd_remote_framebuffer
[0][0],
184 lcd_remote_update_rect
,
187 remote_backlight_off
,
188 remote_backlight_set_timeout
,
190 remote_backlight_set_timeout_plugged
,
192 #endif /* HAVE_REMOTE_LCD */
194 {&screens
[SCREEN_MAIN
], &screens
[SCREEN_REMOTE
]},
196 {&screens
[SCREEN_MAIN
]},
198 #if defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1)
199 lcd_remote_set_foreground
,
200 lcd_remote_get_foreground
,
201 lcd_remote_set_background
,
202 lcd_remote_get_background
,
203 lcd_remote_bitmap_part
,
206 viewport_set_defaults
,
210 gui_synclist_set_nb_items
,
211 gui_synclist_set_icon_callback
,
212 gui_synclist_get_nb_items
,
213 gui_synclist_get_sel_pos
,
215 gui_synclist_select_item
,
216 gui_synclist_add_item
,
217 gui_synclist_del_item
,
218 gui_synclist_limit_scroll
,
219 gui_synclist_do_button
,
220 gui_synclist_set_title
,
221 simplelist_info_init
,
222 simplelist_show_list
,
228 #ifdef HAVE_BUTTON_DATA
233 #ifdef HAS_BUTTON_HOLD
240 #ifdef HAVE_BUTTON_LIGHT
241 buttonlight_set_timeout
,
244 #ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
245 buttonlight_set_brightness
,
246 #endif /* HAVE_BUTTONLIGHT_BRIGHTNESS */
247 #endif /* HAVE_BUTTON_LIGHT */
250 (open_func
)PREFIX(open
),
252 (read_func
)PREFIX(read
),
254 (creat_func
)PREFIX(creat
),
255 (write_func
)PREFIX(write
),
270 create_numbered_filename
,
285 default_event_handler
,
286 default_event_handler_ex
,
291 #if (CONFIG_CODEC == SWCODEC)
298 reset_poweroff_timer
,
303 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
304 #ifdef CPU_BOOST_LOGGING
309 #endif /* HAVE_ADJUSTABLE_CPU_FREQ */
310 #endif /* !SIMULATOR */
311 #ifdef HAVE_SCHEDULER_BOOSTCTRL
315 #ifdef CACHE_FUNCTIONS_AS_CALL
327 #if CONFIG_CODEC == SWCODEC
328 queue_enable_queue_send
,
343 /* special simulator hooks */
344 #if defined(HAVE_LCD_BITMAP) && LCD_DEPTH < 8
346 sim_lcd_ex_update_rect
,
350 /* strings and memory */
393 #if CONFIG_CODEC != SWCODEC
397 #if CONFIG_CODEC == SWCODEC
398 &audio_master_sampr_list
[0],
407 pcm_get_bytes_waiting
,
411 #ifdef HAVE_RECORDING
418 pcm_calculate_rec_peaks
,
419 audio_set_recording_gain
,
420 #endif /* HAVE_RECORDING */
421 #if INPUT_SRC_CAPS != 0
422 audio_set_output_source
,
423 audio_set_input_source
,
430 #endif /* CONFIG_CODEC == SWCODEC */
432 /* playback control */
445 audio_has_changed_track
,
447 audio_flush_and_reload_tracks
,
449 #if !defined(SIMULATOR) && (CONFIG_CODEC != SWCODEC)
450 mpeg_get_last_header
,
452 #if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F) || \
453 (CONFIG_CODEC == SWCODEC)
457 #if !defined(SIMULATOR) && (CONFIG_CODEC != SWCODEC)
458 /* MAS communication */
463 #if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
470 #endif /* !SIMULATOR && CONFIG_CODEC != SWCODEC */
476 gui_syncstatusbar_draw
,
484 #ifdef HAVE_LCD_COLOR
488 /* action handling */
502 # if CONFIG_CHARGING == CHARGING_MONITOR
506 #ifdef HAVE_USB_POWER
521 plugin_get_audio_buffer
,
523 plugin_get_current_filename
,
524 #ifdef PLUGIN_USE_IRAM
527 #if defined(DEBUG) || defined(SIMULATOR)
530 #ifdef ROCKBOX_HAS_LOGF
536 #if CONFIG_CODEC == SWCODEC
545 #if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)
546 peak_meter_scale_value
,
547 peak_meter_set_use_dbfs
,
548 peak_meter_get_use_dbfs
,
550 #ifdef HAVE_LCD_BITMAP
552 screen_dump_set_hook
,
559 #ifdef HAVE_WHEEL_POSITION
564 #ifdef IRIVER_H100_SERIES
565 /* Routines for the iriver_flash -plugin. */
566 detect_original_firmware
,
567 detect_flashed_ramimage
,
568 detect_flashed_romimage
,
571 #if (CONFIG_CODEC == SWCODEC)
584 buf_request_buffer_handle
,
591 tagcache_search_set_uniqbuf
,
592 tagcache_search_add_filter
,
595 tagcache_search_finish
,
600 search_albumart_files
,
603 /* new stuff at the end, sort into place next time
604 the API gets incompatible */
606 tagcache_get_numeric
,
610 int plugin_load(const char* plugin
, const void* parameter
)
613 struct plugin_header
*hdr
;
616 #else /* !SIMULATOR */
622 #endif /* !SIMULATOR */
625 fb_data
* old_backdrop
;
628 if (pfn_tsr_exit
!= NULL
) /* if we have a resident old plugin: */
630 if (pfn_tsr_exit(!strcmp(current_plugin
, plugin
)) == false )
632 /* not allowing another plugin to load */
636 plugin_loaded
= false;
639 gui_syncsplash(0, ID2P(LANG_WAIT
));
640 strcpy(current_plugin
, plugin
);
643 hdr
= sim_plugin_load((char *)plugin
, &pd
);
645 gui_syncsplash(HZ
*2, str(LANG_PLUGIN_CANT_OPEN
), plugin
);
649 || hdr
->magic
!= PLUGIN_MAGIC
650 || hdr
->target_id
!= TARGET_ID
) {
651 sim_plugin_close(pd
);
652 gui_syncsplash(HZ
*2, str(LANG_PLUGIN_WRONG_MODEL
));
655 if (hdr
->api_version
> PLUGIN_API_VERSION
656 || hdr
->api_version
< PLUGIN_MIN_API_VERSION
) {
657 sim_plugin_close(pd
);
658 gui_syncsplash(HZ
*2, str(LANG_PLUGIN_WRONG_VERSION
));
662 fd
= open(plugin
, O_RDONLY
);
664 gui_syncsplash(HZ
*2, str(LANG_PLUGIN_CANT_OPEN
), plugin
);
668 /* Make sure COP cache is flushed and invalidated before loading */
669 my_core
= switch_core(CURRENT_CORE
^ 1);
671 switch_core(my_core
);
674 readsize
= read(fd
, pluginbuf
, PLUGIN_BUFFER_SIZE
);
678 gui_syncsplash(HZ
*2, str(LANG_READ_FAILED
), plugin
);
681 hdr
= (struct plugin_header
*)pluginbuf
;
683 if ((unsigned)readsize
<= sizeof(struct plugin_header
)
684 || hdr
->magic
!= PLUGIN_MAGIC
685 || hdr
->target_id
!= TARGET_ID
686 || hdr
->load_addr
!= pluginbuf
687 || hdr
->end_addr
> pluginbuf
+ PLUGIN_BUFFER_SIZE
) {
688 gui_syncsplash(HZ
*2, str(LANG_PLUGIN_WRONG_MODEL
));
691 if (hdr
->api_version
> PLUGIN_API_VERSION
692 || hdr
->api_version
< PLUGIN_MIN_API_VERSION
) {
693 gui_syncsplash(HZ
*2, str(LANG_PLUGIN_WRONG_VERSION
));
696 plugin_size
= hdr
->end_addr
- pluginbuf
;
698 /* zero out bss area only, above guards end of pluginbuf */
699 if (plugin_size
> readsize
)
700 memset(pluginbuf
+ readsize
, 0, plugin_size
- readsize
);
703 plugin_loaded
= true;
706 #if defined HAVE_LCD_BITMAP && LCD_DEPTH > 1
707 old_backdrop
= lcd_get_backdrop();
712 #ifdef HAVE_REMOTE_LCD
713 lcd_remote_clear_display();
719 rc
= hdr
->entry_point(&rockbox_api
, parameter
);
721 button_clear_queue();
723 #ifdef HAVE_LCD_BITMAP
725 lcd_set_backdrop(old_backdrop
);
726 #ifdef HAVE_LCD_COLOR
727 lcd_set_drawinfo(DRMODE_SOLID
, global_settings
.fg_color
,
728 global_settings
.bg_color
);
730 lcd_set_drawinfo(DRMODE_SOLID
, LCD_DEFAULT_FG
, LCD_DEFAULT_BG
);
732 #else /* LCD_DEPTH == 1 */
733 lcd_set_drawmode(DRMODE_SOLID
);
734 #endif /* LCD_DEPTH */
735 #endif /* HAVE_LCD_BITMAP */
740 #ifdef HAVE_REMOTE_LCD
741 #if LCD_REMOTE_DEPTH > 1
742 lcd_remote_set_drawinfo(DRMODE_SOLID
, LCD_REMOTE_DEFAULT_FG
,
743 LCD_REMOTE_DEFAULT_BG
);
745 lcd_remote_set_drawmode(DRMODE_SOLID
);
747 lcd_remote_clear_display();
755 if (pfn_tsr_exit
== NULL
)
756 plugin_loaded
= false;
758 sim_plugin_close(pd
);
764 case PLUGIN_USB_CONNECTED
:
765 return PLUGIN_USB_CONNECTED
;
768 gui_syncsplash(HZ
*2, str(LANG_PLUGIN_ERROR
));
774 /* Returns a pointer to the portion of the plugin buffer that is not already
775 being used. If no plugin is loaded, returns the entire plugin buffer */
776 void* plugin_get_buffer(size_t *buffer_size
)
782 if (plugin_size
>= PLUGIN_BUFFER_SIZE
)
785 *buffer_size
= PLUGIN_BUFFER_SIZE
-plugin_size
;
786 buffer_pos
= plugin_size
;
790 *buffer_size
= PLUGIN_BUFFER_SIZE
;
794 return &pluginbuf
[buffer_pos
];
797 /* Returns a pointer to the mp3 buffer.
798 Playback gets stopped, to avoid conflicts.
799 Talk buffer is stolen as well.
801 void* plugin_get_audio_buffer(size_t *buffer_size
)
803 #if CONFIG_CODEC == SWCODEC
804 return audio_get_buffer(true, buffer_size
);
807 talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
808 *buffer_size
= audiobufend
- audiobuf
;
813 #ifdef PLUGIN_USE_IRAM
814 /* Initializes plugin IRAM */
815 void plugin_iram_init(char *iramstart
, char *iramcopy
, size_t iram_size
,
816 char *iedata
, size_t iedata_size
)
818 /* We need to stop audio playback in order to use codec IRAM */
820 memcpy(iramstart
, iramcopy
, iram_size
);
821 memset(iedata
, 0, iedata_size
);
822 memset(iramcopy
, 0, iram_size
);
824 /* writeback cleared iedata and iramcopy areas */
828 #endif /* PLUGIN_USE_IRAM */
830 /* The plugin wants to stay resident after leaving its main function, e.g.
831 runs from timer or own thread. The callback is registered to later
832 instruct it to free its resources before a new plugin gets loaded. */
833 void plugin_tsr(bool (*exit_callback
)(bool))
835 pfn_tsr_exit
= exit_callback
; /* remember the callback for later */
838 char *plugin_get_current_filename(void)
840 return current_plugin
;