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 ****************************************************************************/
23 #include "gcc_extensions.h"
34 #include "filetypes.h"
39 #include "powermgmt.h"
46 #include "mp3_playback.h"
49 #include "backlight.h"
51 #include "debug_menu.h"
56 #include "core_alloc.h"
59 #include "usb_screen.h"
72 #include "eeprom_settings.h"
73 #include "scrobbler.h"
76 #include "skin_engine/skin_engine.h"
77 #include "statusbar-skinned.h"
78 #include "bootchart.h"
79 #if (CONFIG_PLATFORM & PLATFORM_ANDROID)
80 #include "notification.h"
82 #include "shortcuts.h"
84 #ifdef IPOD_ACCESSORY_PROTOCOL
88 #if (CONFIG_CODEC == SWCODEC)
92 #if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING) && !defined(SIMULATOR)
93 #include "pcm_record.h"
97 #define SETTINGS_RESET BUTTON_REC
98 #elif (CONFIG_KEYPAD == GIGABEAT_PAD)
99 #define SETTINGS_RESET BUTTON_A
105 #if (CONFIG_STORAGE & STORAGE_MMC)
109 #ifdef HAVE_REMOTE_LCD
110 #include "lcd-remote.h"
113 #if CONFIG_USBOTG == USBOTG_ISP1362
117 #if CONFIG_USBOTG == USBOTG_M5636
121 #ifdef HAVE_HARDWARE_CLICK
125 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
126 #define MAIN_NORETURN_ATTR NORETURN_ATTR
128 /* gcc adds an implicit 'return 0;' at the end of main(), causing a warning
129 * with noreturn attribute */
130 #define MAIN_NORETURN_ATTR
133 #if (CONFIG_PLATFORM & (PLATFORM_SDL|PLATFORM_MAEMO|PLATFORM_PANDORA))
135 #include "sim_tasks.h"
137 #include "system-sdl.h"
138 #define HAVE_ARGV_MAIN
139 /* Don't use SDL_main on windows -> no more stdio redirection */
145 /*#define AUTOROCK*/ /* define this to check for "autostart.rock" on boot */
147 static void init(void);
148 /* main(), and various functions called by main() and init() may be
149 * be INIT_ATTR. These functions must not be called after the final call
150 * to root_menu() at the end of main()
151 * see definition of INIT_ATTR in config.h */
152 #ifdef HAVE_ARGV_MAIN
153 int main(int argc
, char *argv
[]) INIT_ATTR MAIN_NORETURN_ATTR
;
154 int main(int argc
, char *argv
[])
156 sys_handle_argv(argc
, argv
);
158 int main(void) INIT_ATTR MAIN_NORETURN_ATTR
;
167 screens
[i
].clear_display();
170 #ifdef HAVE_LCD_BITMAP
174 /* Keep the order of this 3
175 * Must be done before any code uses the multi-screen API */
177 /* All threads should be created and public queues registered by now */
178 usb_start_monitoring();
183 char filename
[MAX_PATH
];
191 if(file_exists(file
)) /* no complaint if it doesn't exist */
193 plugin_load(file
, NULL
); /* start if it does */
196 #endif /* #ifdef AUTOROCK */
198 global_status
.last_volume_change
= 0;
199 /* no calls INIT_ATTR functions after this point anymore!
200 * see definition of INIT_ATTR in config.h */
205 static int init_dircache(bool preinit
) INIT_ATTR
;
206 static int init_dircache(bool preinit
)
215 if (!global_settings
.dircache
)
218 # ifdef HAVE_EEPROM_SETTINGS
219 if (firmware_settings
.initialized
&& firmware_settings
.disk_clean
222 result
= dircache_load();
226 firmware_settings
.disk_clean
= false;
227 if (global_status
.dircache_size
<= 0)
229 /* This will be in default language, settings are not
230 applied yet. Not really any easy way to fix that. */
231 splash(0, str(LANG_SCANNING_DISK
));
235 dircache_build(global_status
.dircache_size
);
244 if (!dircache_is_enabled()
245 && !dircache_is_initializing())
247 if (global_status
.dircache_size
<= 0)
249 splash(0, str(LANG_SCANNING_DISK
));
252 result
= dircache_build(global_status
.dircache_size
);
257 /* Initialization of dircache failed. Manual action is
258 * necessary to enable dircache again.
260 splashf(0, "Dircache failed, disabled. Result: %d", result
);
261 global_settings
.dircache
= false;
269 global_status
.dircache_size
= dircache_get_cache_size();
281 static void init_tagcache(void) INIT_ATTR
;
282 static void init_tagcache(void)
285 #if CONFIG_CODEC == SWCODEC
286 long talked_tick
= 0;
290 while (!tagcache_is_initialized())
292 int ret
= tagcache_get_commit_step();
296 #if CONFIG_CODEC == SWCODEC
297 /* hwcodec can't use voice here, as the database commit
298 * uses the audio buffer. */
299 if(global_settings
.talk_menu
301 || TIME_AFTER(current_tick
, talked_tick
+7*HZ
)))
303 talked_tick
= current_tick
;
304 talk_id(LANG_TAGCACHE_INIT
, false);
305 talk_number(ret
, true);
306 talk_id(VOICE_OF
, true);
307 talk_number(tagcache_get_max_commit_step(), true);
310 #ifdef HAVE_LCD_BITMAP
313 splashf(0, "[%d/%d] %s", ret
, tagcache_get_max_commit_step(),
314 str(LANG_TAGCACHE_INIT
));
318 splashf(0, "%s [%d/%d]", str(LANG_TAGCACHE_INIT
), ret
,
319 tagcache_get_max_commit_step());
322 lcd_double_height(false);
323 lcd_putsf(0, 1, " DB [%d/%d]", ret
,
324 tagcache_get_max_commit_step());
341 #if (CONFIG_PLATFORM & PLATFORM_HOSTED)
343 static void init(void)
346 core_allocator_init();
353 #ifdef HAVE_REMOTE_LCD
356 #ifdef HAVE_LCD_BITMAP
358 global_status
.font_id
[i
] = FONT_SYSFIXED
;
368 #if (CONFIG_PLATFORM & PLATFORM_ANDROID)
371 lang_init(core_language_builtin
, language_strings
,
372 LANG_LAST_INDEX_IN_ARRAY
);
379 /* Keep the order of this 3 (viewportmanager handles statusbars)
380 * Must be done before any code uses the multi-screen API */
381 gui_syncstatusbar_init(&statusbars
);
382 gui_sync_skin_init();
384 viewportmanager_init();
387 #if CONFIG_CODEC == SWCODEC
391 settings_load(SETTINGS_ALL
);
392 settings_apply(true);
394 init_dircache(false);
403 #if CONFIG_CODEC != SWCODEC
404 mp3_init( global_settings
.volume
,
405 global_settings
.bass
,
406 global_settings
.treble
,
407 global_settings
.balance
,
408 global_settings
.loudness
,
410 global_settings
.channel_config
,
411 global_settings
.stereo_width
,
412 global_settings
.mdb_strength
,
413 global_settings
.mdb_harmonics
,
414 global_settings
.mdb_center
,
415 global_settings
.mdb_shape
,
416 global_settings
.mdb_enable
,
417 global_settings
.superbass
);
418 #endif /* CONFIG_CODEC != SWCODEC */
424 #if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING)
428 settings_apply_skins();
433 static void init(void) INIT_ATTR
;
434 static void init(void)
437 bool mounted
= false;
438 #if CONFIG_CHARGING && (CONFIG_CPU == SH7034)
439 /* if nobody initialized ATA before, I consider this a cold start */
440 bool coldstart
= (PACR2
& 0x4000) != 0; /* starting from Flash */
444 core_allocator_init();
447 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
448 set_cpu_frequency(CPUFREQ_NORMAL
);
450 coldfire_set_pllcr_audio_bits(DEFAULT_PLLCR_AUDIO_BITS
);
463 /* current_tick should be ticking by now */
467 #ifdef HAVE_REMOTE_LCD
470 #ifdef HAVE_LCD_BITMAP
472 global_status
.font_id
[i
] = FONT_SYSFIXED
;
481 lang_init(core_language_builtin
, language_strings
,
482 LANG_LAST_INDEX_IN_ARRAY
);
496 CHART(">settings_load(RTC)");
497 settings_load(SETTINGS_RTC
); /* early load parts of global_settings */
498 CHART("<settings_load(RTC)");
504 #if CONFIG_USBOTG == USBOTG_ISP1362
506 #elif CONFIG_USBOTG == USBOTG_M5636
514 /* Don't initialize power management here if it could incorrectly
515 * measure battery voltage, and it's not needed for charging. */
516 #if !defined(NEED_ATA_POWER_BATT_MEASURE) || \
517 (CONFIG_CHARGING > CHARGING_MONITOR)
525 #ifdef HAVE_HARDWARE_CLICK
529 /* Keep the order of this 3 (viewportmanager handles statusbars)
530 * Must be done before any code uses the multi-screen API */
531 CHART(">gui_syncstatusbar_init");
532 gui_syncstatusbar_init(&statusbars
);
533 CHART("<gui_syncstatusbar_init");
534 CHART(">sb_skin_init");
536 CHART("<sb_skin_init");
537 CHART(">gui_sync_wps_init");
538 gui_sync_skin_init();
539 CHART("<gui_sync_wps_init");
540 CHART(">viewportmanager_init");
541 viewportmanager_init();
542 CHART("<viewportmanager_init");
544 #if CONFIG_CHARGING && (CONFIG_CPU == SH7034)
545 /* charger_inserted() can't be used here because power_thread()
546 hasn't checked power_input_status() yet */
547 if (coldstart
&& (power_input_status() & POWER_INPUT_MAIN_CHARGER
)
548 && !global_settings
.car_adapter_mode
549 #ifdef ATA_POWER_PLAYERSTYLE
550 && !ide_powered() /* relies on probing result from bootloader */
554 rc
= charging_screen(); /* display a "charging" screen */
555 if (rc
== 1) /* charger removed */
557 /* "On" pressed or USB connected: proceed */
558 show_logo(); /* again, to provide better visual feedback */
563 disk_init_subsystem();
564 CHART(">storage_init");
566 CHART("<storage_init");
569 #ifdef HAVE_LCD_BITMAP
571 lcd_putsf(0, 1, "ATA error: %d", rc
);
572 lcd_puts(0, 3, "Press ON to debug");
574 while(!(button_get(true) & BUTTON_REL
)); /* DO NOT CHANGE TO ACTION SYSTEM */
577 panicf("ata: %d", rc
);
580 #if defined(NEED_ATA_POWER_BATT_MEASURE) && \
581 (CONFIG_CHARGING <= CHARGING_MONITOR)
582 /* After storage_init(), ATA power must be on, so battery voltage
583 * can be measured. Initialize power management if it was delayed. */
586 #ifdef HAVE_EEPROM_SETTINGS
587 CHART(">eeprom_settings_init");
588 eeprom_settings_init();
589 CHART("<eeprom_settings_init");
592 #ifndef HAVE_USBSTACK
593 usb_start_monitoring();
594 while (usb_detect() == USB_INSERTED
)
596 #ifdef HAVE_EEPROM_SETTINGS
597 firmware_settings
.disk_clean
= false;
599 /* enter USB mode early, before trying to mount */
600 if (button_get_w_tmo(HZ
/10) == SYS_USB_CONNECTED
)
601 #if (CONFIG_STORAGE & STORAGE_MMC)
602 if (!mmc_touched() ||
603 (mmc_remove_request() == SYS_HOTSWAP_EXTRACTED
))
606 gui_usb_screen_run(true);
607 mounted
= true; /* mounting done @ end of USB mode */
609 #ifdef HAVE_USB_POWER
610 if (usb_powered()) /* avoid deadlock */
618 CHART(">disk_mount_all");
619 rc
= disk_mount_all();
620 CHART("<disk_mount_all");
624 lcd_puts(0, 0, "No partition");
625 lcd_puts(0, 1, "found.");
626 #ifdef HAVE_LCD_BITMAP
627 lcd_puts(0, 2, "Insert USB cable");
628 lcd_puts(0, 3, "and fix it.");
632 while(button_get(true) != SYS_USB_CONNECTED
) {};
633 gui_usb_screen_run(true);
638 #if CONFIG_CODEC == SWCODEC
642 #if defined(SETTINGS_RESET) || (CONFIG_KEYPAD == IPOD_4G_PAD) || \
643 (CONFIG_KEYPAD == IRIVER_H10_PAD)
644 #ifdef SETTINGS_RESET
645 /* Reset settings if holding the reset button. (Rec on Archos,
647 if ((button_status() & SETTINGS_RESET
) == SETTINGS_RESET
)
649 /* Reset settings if the hold button is turned on */
653 splash(HZ
*2, str(LANG_RESET_DONE_CLEAR
));
659 CHART(">settings_load(ALL)");
660 settings_load(SETTINGS_ALL
);
661 CHART("<settings_load(ALL)");
664 CHART(">init_dircache(true)");
665 rc
= init_dircache(true);
666 CHART("<init_dircache(true)");
670 remove(TAGCACHE_STATEFILE
);
674 CHART(">settings_apply(true)");
675 settings_apply(true);
676 CHART("<settings_apply(true)");
677 CHART(">init_dircache(false)");
678 init_dircache(false);
679 CHART("<init_dircache(false)");
681 CHART(">init_tagcache");
683 CHART("<init_tagcache");
686 #ifdef HAVE_EEPROM_SETTINGS
687 if (firmware_settings
.initialized
)
689 /* In case we crash. */
690 firmware_settings
.disk_clean
= false;
691 CHART(">eeprom_settings_store");
692 eeprom_settings_store();
693 CHART("<eeprom_settings_store");
702 #if CONFIG_CODEC != SWCODEC
703 /* No buffer allocation (see buffer.c) may take place after the call to
704 audio_init() since the mpeg thread takes the rest of the buffer space */
705 mp3_init( global_settings
.volume
,
706 global_settings
.bass
,
707 global_settings
.treble
,
708 global_settings
.balance
,
709 global_settings
.loudness
,
711 global_settings
.channel_config
,
712 global_settings
.stereo_width
,
713 global_settings
.mdb_strength
,
714 global_settings
.mdb_harmonics
,
715 global_settings
.mdb_center
,
716 global_settings
.mdb_shape
,
717 global_settings
.mdb_enable
,
718 global_settings
.superbass
);
719 #endif /* CONFIG_CODEC != SWCODEC */
721 CHART(">audio_init");
723 CHART("<audio_init");
725 #if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING)
729 /* runtime database has to be initialized after audio_init() */
733 car_adapter_mode_init();
735 #ifdef IPOD_ACCESSORY_PROTOCOL
736 iap_setup(global_settings
.serial_bitrate
);
738 #ifdef HAVE_ACCESSORY_SUPPLY
739 accessory_supply_set(global_settings
.accessory_supply
);
741 #ifdef HAVE_LINEOUT_POWEROFF
742 lineout_set(global_settings
.lineout_active
);
744 #ifdef HAVE_HOTSWAP_STORAGE_AS_MAIN
745 CHART("<check_bootfile(false)");
746 check_bootfile(false); /* remember write time and filesize */
747 CHART(">check_bootfile(false)");
749 CHART("<settings_apply_skins");
750 settings_apply_skins();
751 CHART(">settings_apply_skins");
755 void cop_main(void) MAIN_NORETURN_ATTR
;
758 /* This is the entry point for the coprocessor
759 Anyone not running an upgraded bootloader will never reach this point,
760 so it should not be assumed that the coprocessor be usable even on
761 platforms which support it.
763 A kernel thread is initially setup on the coprocessor and immediately
764 destroyed for purposes of continuity. The cop sits idle until at least
765 one thread exists on it. */
770 /* This should never be reached */
778 #endif /* SIMULATOR */