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"
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"
83 #ifdef IPOD_ACCESSORY_PROTOCOL
87 #if (CONFIG_CODEC == SWCODEC)
91 #if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING) && !defined(SIMULATOR)
92 #include "pcm_record.h"
96 #define SETTINGS_RESET BUTTON_REC
97 #elif (CONFIG_KEYPAD == GIGABEAT_PAD)
98 #define SETTINGS_RESET BUTTON_A
104 #if (CONFIG_STORAGE & STORAGE_MMC)
108 #ifdef HAVE_REMOTE_LCD
109 #include "lcd-remote.h"
112 #if CONFIG_USBOTG == USBOTG_ISP1362
116 #if CONFIG_USBOTG == USBOTG_M5636
120 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
121 #define MAIN_NORETURN_ATTR NORETURN_ATTR
123 /* gcc adds an implicit 'return 0;' at the end of main(), causing a warning
124 * with noreturn attribute */
125 #define MAIN_NORETURN_ATTR
128 #if (CONFIG_PLATFORM & (PLATFORM_SDL|PLATFORM_MAEMO|PLATFORM_PANDORA))
129 #include "sim_tasks.h"
130 #include "system-sdl.h"
131 #define HAVE_ARGV_MAIN
132 /* Don't use SDL_main on windows -> no more stdio redirection */
138 /*#define AUTOROCK*/ /* define this to check for "autostart.rock" on boot */
140 static void init(void);
141 /* main(), and various functions called by main() and init() may be
142 * be INIT_ATTR. These functions must not be called after the final call
143 * to root_menu() at the end of main()
144 * see definition of INIT_ATTR in config.h */
145 #ifdef HAVE_ARGV_MAIN
146 int main(int argc
, char *argv
[]) INIT_ATTR MAIN_NORETURN_ATTR
;
147 int main(int argc
, char *argv
[])
149 sys_handle_argv(argc
, argv
);
151 int main(void) INIT_ATTR MAIN_NORETURN_ATTR
;
161 screens
[i
].clear_display();
164 #ifdef HAVE_LCD_BITMAP
168 /* Keep the order of this 3
169 * Must be done before any code uses the multi-screen API */
171 /* All threads should be created and public queues registered by now */
172 usb_start_monitoring();
177 char filename
[MAX_PATH
];
185 if(file_exists(file
)) /* no complaint if it doesn't exist */
187 plugin_load(file
, NULL
); /* start if it does */
190 #endif /* #ifdef AUTOROCK */
192 global_status
.last_volume_change
= 0;
193 /* no calls INIT_ATTR functions after this point anymore!
194 * see definition of INIT_ATTR in config.h */
199 static int init_dircache(bool preinit
) INIT_ATTR
;
200 static int init_dircache(bool preinit
)
209 if (!global_settings
.dircache
)
212 # ifdef HAVE_EEPROM_SETTINGS
213 if (firmware_settings
.initialized
&& firmware_settings
.disk_clean
216 result
= dircache_load();
220 firmware_settings
.disk_clean
= false;
221 if (global_status
.dircache_size
<= 0)
223 /* This will be in default language, settings are not
224 applied yet. Not really any easy way to fix that. */
225 splash(0, str(LANG_SCANNING_DISK
));
229 dircache_build(global_status
.dircache_size
);
238 if (!dircache_is_enabled()
239 && !dircache_is_initializing())
241 if (global_status
.dircache_size
<= 0)
243 splash(0, str(LANG_SCANNING_DISK
));
246 result
= dircache_build(global_status
.dircache_size
);
251 /* Initialization of dircache failed. Manual action is
252 * necessary to enable dircache again.
254 splashf(0, "Dircache failed, disabled. Result: %d", result
);
255 global_settings
.dircache
= false;
263 global_status
.dircache_size
= dircache_get_cache_size();
275 static void init_tagcache(void) INIT_ATTR
;
276 static void init_tagcache(void)
279 #if CONFIG_CODEC == SWCODEC
280 long talked_tick
= 0;
284 while (!tagcache_is_initialized())
286 int ret
= tagcache_get_commit_step();
290 #if CONFIG_CODEC == SWCODEC
291 /* hwcodec can't use voice here, as the database commit
292 * uses the audio buffer. */
293 if(global_settings
.talk_menu
295 || TIME_AFTER(current_tick
, talked_tick
+7*HZ
)))
297 talked_tick
= current_tick
;
298 talk_id(LANG_TAGCACHE_INIT
, false);
299 talk_number(ret
, true);
300 talk_id(VOICE_OF
, true);
301 talk_number(tagcache_get_max_commit_step(), true);
304 #ifdef HAVE_LCD_BITMAP
307 splashf(0, "[%d/%d] %s", ret
, tagcache_get_max_commit_step(),
308 str(LANG_TAGCACHE_INIT
));
312 splashf(0, "%s [%d/%d]", str(LANG_TAGCACHE_INIT
), ret
,
313 tagcache_get_max_commit_step());
316 lcd_double_height(false);
317 lcd_putsf(0, 1, " DB [%d/%d]", ret
,
318 tagcache_get_max_commit_step());
335 #if (CONFIG_PLATFORM & PLATFORM_HOSTED)
337 static void init(void)
347 #ifdef HAVE_REMOTE_LCD
355 #if (CONFIG_PLATFORM & (PLATFORM_SDL|PLATFORM_MAEMO|PLATFORM_PANDORA))
358 #if (CONFIG_PLATFORM & PLATFORM_ANDROID)
361 lang_init(core_language_builtin
, language_strings
,
362 LANG_LAST_INDEX_IN_ARRAY
);
366 /* Keep the order of this 3 (viewportmanager handles statusbars)
367 * Must be done before any code uses the multi-screen API */
368 gui_syncstatusbar_init(&statusbars
);
369 gui_sync_skin_init();
371 viewportmanager_init();
375 settings_load(SETTINGS_ALL
);
376 settings_apply(true);
378 init_dircache(false);
388 #if CONFIG_CODEC != SWCODEC
389 mp3_init( global_settings
.volume
,
390 global_settings
.bass
,
391 global_settings
.treble
,
392 global_settings
.balance
,
393 global_settings
.loudness
,
395 global_settings
.channel_config
,
396 global_settings
.stereo_width
,
397 global_settings
.mdb_strength
,
398 global_settings
.mdb_harmonics
,
399 global_settings
.mdb_center
,
400 global_settings
.mdb_shape
,
401 global_settings
.mdb_enable
,
402 global_settings
.superbass
);
404 /* audio_init must to know the size of voice buffer so init voice first */
406 #endif /* CONFIG_CODEC != SWCODEC */
409 #if CONFIG_CODEC == SWCODEC && defined (HAVE_PITCHSCREEN)
411 #endif /* CONFIG_CODEC == SWCODEC */
415 settings_apply_skins();
420 static void init(void) INIT_ATTR
;
421 static void init(void)
424 bool mounted
= false;
425 #if CONFIG_CHARGING && (CONFIG_CPU == SH7034)
426 /* if nobody initialized ATA before, I consider this a cold start */
427 bool coldstart
= (PACR2
& 0x4000) != 0; /* starting from Flash */
431 #if defined(IPOD_VIDEO)
432 audiobufend
=(unsigned char *)audiobufend_lds
;
433 if(MEMORYSIZE
==64 && probed_ramsize
!=64)
435 audiobufend
-= (32<<20);
440 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
441 set_cpu_frequency(CPUFREQ_NORMAL
);
443 coldfire_set_pllcr_audio_bits(DEFAULT_PLLCR_AUDIO_BITS
);
460 /* current_tick should be ticking by now */
464 #ifdef HAVE_REMOTE_LCD
472 lang_init(core_language_builtin
, language_strings
,
473 LANG_LAST_INDEX_IN_ARRAY
);
487 CHART(">settings_load(RTC)");
488 settings_load(SETTINGS_RTC
); /* early load parts of global_settings */
489 CHART("<settings_load(RTC)");
495 #if CONFIG_USBOTG == USBOTG_ISP1362
497 #elif CONFIG_USBOTG == USBOTG_M5636
511 /* Keep the order of this 3 (viewportmanager handles statusbars)
512 * Must be done before any code uses the multi-screen API */
513 CHART(">gui_syncstatusbar_init");
514 gui_syncstatusbar_init(&statusbars
);
515 CHART("<gui_syncstatusbar_init");
516 CHART(">sb_skin_init");
518 CHART("<sb_skin_init");
519 CHART(">gui_sync_wps_init");
520 gui_sync_skin_init();
521 CHART("<gui_sync_wps_init");
522 CHART(">viewportmanager_init");
523 viewportmanager_init();
524 CHART("<viewportmanager_init");
526 #if CONFIG_CHARGING && (CONFIG_CPU == SH7034)
527 /* charger_inserted() can't be used here because power_thread()
528 hasn't checked power_input_status() yet */
529 if (coldstart
&& (power_input_status() & POWER_INPUT_MAIN_CHARGER
)
530 && !global_settings
.car_adapter_mode
531 #ifdef ATA_POWER_PLAYERSTYLE
532 && !ide_powered() /* relies on probing result from bootloader */
536 rc
= charging_screen(); /* display a "charging" screen */
537 if (rc
== 1) /* charger removed */
539 /* "On" pressed or USB connected: proceed */
540 show_logo(); /* again, to provide better visual feedback */
545 disk_init_subsystem();
546 CHART(">storage_init");
548 CHART("<storage_init");
551 #ifdef HAVE_LCD_BITMAP
553 lcd_putsf(0, 1, "ATA error: %d", rc
);
554 lcd_puts(0, 3, "Press ON to debug");
556 while(!(button_get(true) & BUTTON_REL
)); /* DO NOT CHANGE TO ACTION SYSTEM */
559 panicf("ata: %d", rc
);
562 #ifdef HAVE_EEPROM_SETTINGS
563 CHART(">eeprom_settings_init");
564 eeprom_settings_init();
565 CHART("<eeprom_settings_init");
568 #ifndef HAVE_USBSTACK
569 usb_start_monitoring();
570 while (usb_detect() == USB_INSERTED
)
572 #ifdef HAVE_EEPROM_SETTINGS
573 firmware_settings
.disk_clean
= false;
575 /* enter USB mode early, before trying to mount */
576 if (button_get_w_tmo(HZ
/10) == SYS_USB_CONNECTED
)
577 #if (CONFIG_STORAGE & STORAGE_MMC)
578 if (!mmc_touched() ||
579 (mmc_remove_request() == SYS_HOTSWAP_EXTRACTED
))
582 gui_usb_screen_run(true);
583 mounted
= true; /* mounting done @ end of USB mode */
585 #ifdef HAVE_USB_POWER
586 if (usb_powered()) /* avoid deadlock */
594 CHART(">disk_mount_all");
595 rc
= disk_mount_all();
596 CHART("<disk_mount_all");
600 lcd_puts(0, 0, "No partition");
601 lcd_puts(0, 1, "found.");
602 #ifdef HAVE_LCD_BITMAP
603 lcd_puts(0, 2, "Insert USB cable");
604 lcd_puts(0, 3, "and fix it.");
608 while(button_get(true) != SYS_USB_CONNECTED
) {};
609 gui_usb_screen_run(true);
614 #if defined(SETTINGS_RESET) || (CONFIG_KEYPAD == IPOD_4G_PAD) || \
615 (CONFIG_KEYPAD == IRIVER_H10_PAD)
616 #ifdef SETTINGS_RESET
617 /* Reset settings if holding the reset button. (Rec on Archos,
619 if ((button_status() & SETTINGS_RESET
) == SETTINGS_RESET
)
621 /* Reset settings if the hold button is turned on */
625 splash(HZ
*2, str(LANG_RESET_DONE_CLEAR
));
631 CHART(">settings_load(ALL)");
632 settings_load(SETTINGS_ALL
);
633 CHART("<settings_load(ALL)");
636 CHART(">init_dircache(true)");
637 rc
= init_dircache(true);
638 CHART("<init_dircache(true)");
642 remove(TAGCACHE_STATEFILE
);
646 CHART(">settings_apply(true)");
647 settings_apply(true);
648 CHART("<settings_apply(true)");
649 CHART(">init_dircache(false)");
650 init_dircache(false);
651 CHART("<init_dircache(false)");
653 CHART(">init_tagcache");
655 CHART("<init_tagcache");
658 #ifdef HAVE_EEPROM_SETTINGS
659 if (firmware_settings
.initialized
)
661 /* In case we crash. */
662 firmware_settings
.disk_clean
= false;
663 CHART(">eeprom_settings_store");
664 eeprom_settings_store();
665 CHART("<eeprom_settings_store");
672 #if CONFIG_CODEC == SWCODEC && defined (HAVE_PITCHSCREEN)
674 #endif /* CONFIG_CODEC == SWCODEC */
677 #if CONFIG_CODEC != SWCODEC
678 /* No buffer allocation (see buffer.c) may take place after the call to
679 audio_init() since the mpeg thread takes the rest of the buffer space */
680 mp3_init( global_settings
.volume
,
681 global_settings
.bass
,
682 global_settings
.treble
,
683 global_settings
.balance
,
684 global_settings
.loudness
,
686 global_settings
.channel_config
,
687 global_settings
.stereo_width
,
688 global_settings
.mdb_strength
,
689 global_settings
.mdb_harmonics
,
690 global_settings
.mdb_center
,
691 global_settings
.mdb_shape
,
692 global_settings
.mdb_enable
,
693 global_settings
.superbass
);
695 /* audio_init must to know the size of voice buffer so init voice first */
697 #endif /* CONFIG_CODEC != SWCODEC */
699 CHART(">audio_init");
701 CHART("<audio_init");
703 #if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING) && !defined(SIMULATOR)
707 /* runtime database has to be initialized after audio_init() */
711 car_adapter_mode_init();
713 #ifdef IPOD_ACCESSORY_PROTOCOL
714 iap_setup(global_settings
.serial_bitrate
);
716 #ifdef HAVE_ACCESSORY_SUPPLY
717 accessory_supply_set(global_settings
.accessory_supply
);
719 #ifdef HAVE_LINEOUT_POWEROFF
720 lineout_set(global_settings
.lineout_active
);
722 #ifdef HAVE_HOTSWAP_STORAGE_AS_MAIN
723 CHART("<check_bootfile(false)");
724 check_bootfile(false); /* remember write time and filesize */
725 CHART(">check_bootfile(false)");
727 CHART("<settings_apply_skins");
728 settings_apply_skins();
729 CHART(">settings_apply_skins");
733 void cop_main(void) MAIN_NORETURN_ATTR
;
736 /* This is the entry point for the coprocessor
737 Anyone not running an upgraded bootloader will never reach this point,
738 so it should not be assumed that the coprocessor be usable even on
739 platforms which support it.
741 A kernel thread is initially setup on the coprocessor and immediately
742 destroyed for purposes of continuity. The cop sits idle until at least
743 one thread exists on it. */
748 /* This should never be reached */
756 #endif /* SIMULATOR */