Fix reds. No need for #ifdef to save buttons anymore.
[maemo-rb.git] / apps / main.c
blob9846f116be462934e886a0290b032f075b53c380
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
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 ****************************************************************************/
21 #include "config.h"
23 #include "gcc_extensions.h"
24 #include "storage.h"
25 #include "disk.h"
26 #include "fat.h"
27 #include "lcd.h"
28 #include "rtc.h"
29 #include "debug.h"
30 #include "led.h"
31 #include "kernel.h"
32 #include "button.h"
33 #include "tree.h"
34 #include "filetypes.h"
35 #include "panic.h"
36 #include "menu.h"
37 #include "system.h"
38 #include "usb.h"
39 #include "powermgmt.h"
40 #include "adc.h"
41 #include "i2c.h"
42 #ifndef DEBUG
43 #include "serial.h"
44 #endif
45 #include "audio.h"
46 #include "mp3_playback.h"
47 #include "thread.h"
48 #include "settings.h"
49 #include "backlight.h"
50 #include "status.h"
51 #include "debug_menu.h"
52 #include "font.h"
53 #include "language.h"
54 #include "wps.h"
55 #include "playlist.h"
56 #include "core_alloc.h"
57 #include "rolo.h"
58 #include "screens.h"
59 #include "usb_screen.h"
60 #include "power.h"
61 #include "talk.h"
62 #include "plugin.h"
63 #include "misc.h"
64 #include "dircache.h"
65 #ifdef HAVE_TAGCACHE
66 #include "tagcache.h"
67 #include "tagtree.h"
68 #endif
69 #include "lang.h"
70 #include "string.h"
71 #include "splash.h"
72 #include "eeprom_settings.h"
73 #include "scrobbler.h"
74 #include "icon.h"
75 #include "viewport.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"
81 #endif
82 #include "shortcuts.h"
84 #ifdef IPOD_ACCESSORY_PROTOCOL
85 #include "iap.h"
86 #endif
88 #if (CONFIG_CODEC == SWCODEC)
89 #include "playback.h"
90 #include "tdspeed.h"
91 #endif
92 #if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING) && !defined(SIMULATOR)
93 #include "pcm_record.h"
94 #endif
96 #ifdef BUTTON_REC
97 #define SETTINGS_RESET BUTTON_REC
98 #elif (CONFIG_KEYPAD == GIGABEAT_PAD)
99 #define SETTINGS_RESET BUTTON_A
100 #endif
102 #if CONFIG_TUNER
103 #include "radio.h"
104 #endif
105 #if (CONFIG_STORAGE & STORAGE_MMC)
106 #include "ata_mmc.h"
107 #endif
109 #ifdef HAVE_REMOTE_LCD
110 #include "lcd-remote.h"
111 #endif
113 #if CONFIG_USBOTG == USBOTG_ISP1362
114 #include "isp1362.h"
115 #endif
117 #if CONFIG_USBOTG == USBOTG_M5636
118 #include "m5636.h"
119 #endif
121 #ifdef HAVE_HARDWARE_CLICK
122 #include "piezo.h"
123 #endif
125 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
126 #define MAIN_NORETURN_ATTR NORETURN_ATTR
127 #else
128 /* gcc adds an implicit 'return 0;' at the end of main(), causing a warning
129 * with noreturn attribute */
130 #define MAIN_NORETURN_ATTR
131 #endif
133 #if (CONFIG_PLATFORM & (PLATFORM_SDL|PLATFORM_MAEMO|PLATFORM_PANDORA))
134 #ifdef SIMULATOR
135 #include "sim_tasks.h"
136 #endif
137 #include "system-sdl.h"
138 #define HAVE_ARGV_MAIN
139 /* Don't use SDL_main on windows -> no more stdio redirection */
140 #if defined(WIN32)
141 #undef main
142 #endif
143 #endif
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);
157 #else
158 int main(void) INIT_ATTR MAIN_NORETURN_ATTR;
159 int main(void)
161 #endif
162 CHART(">init");
163 init();
164 CHART("<init");
165 FOR_NB_SCREENS(i)
167 screens[i].clear_display();
168 screens[i].update();
170 #ifdef HAVE_LCD_BITMAP
171 list_init();
172 #endif
173 tree_gui_init();
174 /* Keep the order of this 3
175 * Must be done before any code uses the multi-screen API */
176 #ifdef HAVE_USBSTACK
177 /* All threads should be created and public queues registered by now */
178 usb_start_monitoring();
179 #endif
181 #ifdef AUTOROCK
183 char filename[MAX_PATH];
184 const char *file =
185 #ifdef APPLICATION
186 ROCKBOX_DIR
187 #else
188 PLUGIN_APPS_DIR
189 #endif
190 "/autostart.rock";
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 */
201 CHART(">root_menu");
202 root_menu();
205 static int init_dircache(bool preinit) INIT_ATTR;
206 static int init_dircache(bool preinit)
208 #ifdef HAVE_DIRCACHE
209 int result = 0;
210 bool clear = false;
212 if (preinit)
213 dircache_init();
215 if (!global_settings.dircache)
216 return 0;
218 # ifdef HAVE_EEPROM_SETTINGS
219 if (firmware_settings.initialized && firmware_settings.disk_clean
220 && preinit)
222 result = dircache_load();
224 if (result < 0)
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));
232 clear = true;
235 dircache_build(global_status.dircache_size);
238 else
239 # endif
241 if (preinit)
242 return -1;
244 if (!dircache_is_enabled()
245 && !dircache_is_initializing())
247 if (global_status.dircache_size <= 0)
249 splash(0, str(LANG_SCANNING_DISK));
250 clear = true;
252 result = dircache_build(global_status.dircache_size);
255 if (result < 0)
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;
265 if (clear)
267 backlight_on();
268 show_logo();
269 global_status.dircache_size = dircache_get_cache_size();
270 status_save();
273 return result;
274 #else
275 (void)preinit;
276 return 0;
277 #endif
280 #ifdef HAVE_TAGCACHE
281 static void init_tagcache(void) INIT_ATTR;
282 static void init_tagcache(void)
284 bool clear = false;
285 #if CONFIG_CODEC == SWCODEC
286 long talked_tick = 0;
287 #endif
288 tagcache_init();
290 while (!tagcache_is_initialized())
292 int ret = tagcache_get_commit_step();
294 if (ret > 0)
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
300 && (talked_tick == 0
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);
309 #endif
310 #ifdef HAVE_LCD_BITMAP
311 if (lang_is_rtl())
313 splashf(0, "[%d/%d] %s", ret, tagcache_get_max_commit_step(),
314 str(LANG_TAGCACHE_INIT));
316 else
318 splashf(0, "%s [%d/%d]", str(LANG_TAGCACHE_INIT), ret,
319 tagcache_get_max_commit_step());
321 #else
322 lcd_double_height(false);
323 lcd_putsf(0, 1, " DB [%d/%d]", ret,
324 tagcache_get_max_commit_step());
325 lcd_update();
326 #endif
327 clear = true;
329 sleep(HZ/4);
331 tagtree_init();
333 if (clear)
335 backlight_on();
336 show_logo();
339 #endif
341 #if (CONFIG_PLATFORM & PLATFORM_HOSTED)
343 static void init(void)
345 system_init();
346 core_allocator_init();
347 kernel_init();
348 #ifdef APPLICATION
349 paths_init();
350 #endif
351 enable_irq();
352 lcd_init();
353 #ifdef HAVE_REMOTE_LCD
354 lcd_remote_init();
355 #endif
356 #ifdef HAVE_LCD_BITMAP
357 FOR_NB_SCREENS(i)
358 global_status.font_id[i] = FONT_SYSFIXED;
359 font_init();
360 #endif
361 show_logo();
362 button_init();
363 powermgmt_init();
364 backlight_init();
365 #ifdef SIMULATOR
366 sim_tasks_init();
367 #endif
368 #if (CONFIG_PLATFORM & PLATFORM_ANDROID)
369 notification_init();
370 #endif
371 lang_init(core_language_builtin, language_strings,
372 LANG_LAST_INDEX_IN_ARRAY);
373 #ifdef DEBUG
374 debug_init();
375 #endif
376 /* Keep the order of this 3 (viewportmanager handles statusbars)
377 * Must be done before any code uses the multi-screen API */
378 gui_syncstatusbar_init(&statusbars);
379 gui_sync_skin_init();
380 sb_skin_init();
381 viewportmanager_init();
383 storage_init();
384 settings_reset();
385 settings_load(SETTINGS_ALL);
386 settings_apply(true);
387 init_dircache(true);
388 init_dircache(false);
389 #ifdef HAVE_TAGCACHE
390 init_tagcache();
391 #endif
392 sleep(HZ/2);
393 tree_mem_init();
394 filetype_init();
395 playlist_init();
396 shortcuts_init();
398 #if CONFIG_CODEC != SWCODEC
399 mp3_init( global_settings.volume,
400 global_settings.bass,
401 global_settings.treble,
402 global_settings.balance,
403 global_settings.loudness,
404 global_settings.avc,
405 global_settings.channel_config,
406 global_settings.stereo_width,
407 global_settings.mdb_strength,
408 global_settings.mdb_harmonics,
409 global_settings.mdb_center,
410 global_settings.mdb_shape,
411 global_settings.mdb_enable,
412 global_settings.superbass);
413 #endif /* CONFIG_CODEC != SWCODEC */
415 scrobbler_init();
417 audio_init();
419 #if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING)
420 pcm_rec_init();
421 #endif
423 settings_apply_skins();
426 #else
428 static void init(void) INIT_ATTR;
429 static void init(void)
431 int rc;
432 bool mounted = false;
433 #if CONFIG_CHARGING && (CONFIG_CPU == SH7034)
434 /* if nobody initialized ATA before, I consider this a cold start */
435 bool coldstart = (PACR2 & 0x4000) != 0; /* starting from Flash */
436 #endif
438 system_init();
439 core_allocator_init();
440 kernel_init();
442 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
443 set_cpu_frequency(CPUFREQ_NORMAL);
444 #ifdef CPU_COLDFIRE
445 coldfire_set_pllcr_audio_bits(DEFAULT_PLLCR_AUDIO_BITS);
446 #endif
447 cpu_boost(true);
448 #endif
450 i2c_init();
452 power_init();
454 enable_irq();
455 #ifdef CPU_ARM
456 enable_fiq();
457 #endif
458 /* current_tick should be ticking by now */
459 CHART("ticking");
461 lcd_init();
462 #ifdef HAVE_REMOTE_LCD
463 lcd_remote_init();
464 #endif
465 #ifdef HAVE_LCD_BITMAP
466 FOR_NB_SCREENS(i)
467 global_status.font_id[i] = FONT_SYSFIXED;
468 font_init();
469 #endif
471 settings_reset();
473 CHART(">show_logo");
474 show_logo();
475 CHART("<show_logo");
476 lang_init(core_language_builtin, language_strings,
477 LANG_LAST_INDEX_IN_ARRAY);
479 #ifdef DEBUG
480 debug_init();
481 #else
482 #ifdef HAVE_SERIAL
483 serial_setup();
484 #endif
485 #endif
487 #if CONFIG_RTC
488 rtc_init();
489 #endif
490 #ifdef HAVE_RTC_RAM
491 CHART(">settings_load(RTC)");
492 settings_load(SETTINGS_RTC); /* early load parts of global_settings */
493 CHART("<settings_load(RTC)");
494 #endif
496 adc_init();
498 usb_init();
499 #if CONFIG_USBOTG == USBOTG_ISP1362
500 isp1362_init();
501 #elif CONFIG_USBOTG == USBOTG_M5636
502 m5636_init();
503 #endif
505 backlight_init();
507 button_init();
509 /* Don't initialize power management here if it could incorrectly
510 * measure battery voltage, and it's not needed for charging. */
511 #if !defined(NEED_ATA_POWER_BATT_MEASURE) || \
512 (CONFIG_CHARGING > CHARGING_MONITOR)
513 powermgmt_init();
514 #endif
516 #if CONFIG_TUNER
517 radio_init();
518 #endif
520 #ifdef HAVE_HARDWARE_CLICK
521 piezo_init();
522 #endif
524 /* Keep the order of this 3 (viewportmanager handles statusbars)
525 * Must be done before any code uses the multi-screen API */
526 CHART(">gui_syncstatusbar_init");
527 gui_syncstatusbar_init(&statusbars);
528 CHART("<gui_syncstatusbar_init");
529 CHART(">sb_skin_init");
530 sb_skin_init();
531 CHART("<sb_skin_init");
532 CHART(">gui_sync_wps_init");
533 gui_sync_skin_init();
534 CHART("<gui_sync_wps_init");
535 CHART(">viewportmanager_init");
536 viewportmanager_init();
537 CHART("<viewportmanager_init");
539 #if CONFIG_CHARGING && (CONFIG_CPU == SH7034)
540 /* charger_inserted() can't be used here because power_thread()
541 hasn't checked power_input_status() yet */
542 if (coldstart && (power_input_status() & POWER_INPUT_MAIN_CHARGER)
543 && !global_settings.car_adapter_mode
544 #ifdef ATA_POWER_PLAYERSTYLE
545 && !ide_powered() /* relies on probing result from bootloader */
546 #endif
549 rc = charging_screen(); /* display a "charging" screen */
550 if (rc == 1) /* charger removed */
551 power_off();
552 /* "On" pressed or USB connected: proceed */
553 show_logo(); /* again, to provide better visual feedback */
555 #endif
558 disk_init_subsystem();
559 CHART(">storage_init");
560 rc = storage_init();
561 CHART("<storage_init");
562 if(rc)
564 #ifdef HAVE_LCD_BITMAP
565 lcd_clear_display();
566 lcd_putsf(0, 1, "ATA error: %d", rc);
567 lcd_puts(0, 3, "Press ON to debug");
568 lcd_update();
569 while(!(button_get(true) & BUTTON_REL)); /* DO NOT CHANGE TO ACTION SYSTEM */
570 dbg_ports();
571 #endif
572 panicf("ata: %d", rc);
575 #if defined(NEED_ATA_POWER_BATT_MEASURE) && \
576 (CONFIG_CHARGING <= CHARGING_MONITOR)
577 /* After storage_init(), ATA power must be on, so battery voltage
578 * can be measured. Initialize power management if it was delayed. */
579 powermgmt_init();
580 #endif
581 #ifdef HAVE_EEPROM_SETTINGS
582 CHART(">eeprom_settings_init");
583 eeprom_settings_init();
584 CHART("<eeprom_settings_init");
585 #endif
587 #ifndef HAVE_USBSTACK
588 usb_start_monitoring();
589 while (usb_detect() == USB_INSERTED)
591 #ifdef HAVE_EEPROM_SETTINGS
592 firmware_settings.disk_clean = false;
593 #endif
594 /* enter USB mode early, before trying to mount */
595 if (button_get_w_tmo(HZ/10) == SYS_USB_CONNECTED)
596 #if (CONFIG_STORAGE & STORAGE_MMC)
597 if (!mmc_touched() ||
598 (mmc_remove_request() == SYS_HOTSWAP_EXTRACTED))
599 #endif
601 gui_usb_screen_run(true);
602 mounted = true; /* mounting done @ end of USB mode */
604 #ifdef HAVE_USB_POWER
605 if (usb_powered()) /* avoid deadlock */
606 break;
607 #endif
609 #endif
611 if (!mounted)
613 CHART(">disk_mount_all");
614 rc = disk_mount_all();
615 CHART("<disk_mount_all");
616 if (rc<=0)
618 lcd_clear_display();
619 lcd_puts(0, 0, "No partition");
620 lcd_puts(0, 1, "found.");
621 #ifdef HAVE_LCD_BITMAP
622 lcd_puts(0, 2, "Insert USB cable");
623 lcd_puts(0, 3, "and fix it.");
624 #endif
625 lcd_update();
627 while(button_get(true) != SYS_USB_CONNECTED) {};
628 gui_usb_screen_run(true);
629 system_reboot();
633 #if defined(SETTINGS_RESET) || (CONFIG_KEYPAD == IPOD_4G_PAD) || \
634 (CONFIG_KEYPAD == IRIVER_H10_PAD)
635 #ifdef SETTINGS_RESET
636 /* Reset settings if holding the reset button. (Rec on Archos,
637 A on Gigabeat) */
638 if ((button_status() & SETTINGS_RESET) == SETTINGS_RESET)
639 #else
640 /* Reset settings if the hold button is turned on */
641 if (button_hold())
642 #endif
644 splash(HZ*2, str(LANG_RESET_DONE_CLEAR));
645 settings_reset();
647 else
648 #endif
650 CHART(">settings_load(ALL)");
651 settings_load(SETTINGS_ALL);
652 CHART("<settings_load(ALL)");
655 CHART(">init_dircache(true)");
656 rc = init_dircache(true);
657 CHART("<init_dircache(true)");
658 if (rc < 0)
660 #ifdef HAVE_TAGCACHE
661 remove(TAGCACHE_STATEFILE);
662 #endif
665 CHART(">settings_apply(true)");
666 settings_apply(true);
667 CHART("<settings_apply(true)");
668 CHART(">init_dircache(false)");
669 init_dircache(false);
670 CHART("<init_dircache(false)");
671 #ifdef HAVE_TAGCACHE
672 CHART(">init_tagcache");
673 init_tagcache();
674 CHART("<init_tagcache");
675 #endif
677 #ifdef HAVE_EEPROM_SETTINGS
678 if (firmware_settings.initialized)
680 /* In case we crash. */
681 firmware_settings.disk_clean = false;
682 CHART(">eeprom_settings_store");
683 eeprom_settings_store();
684 CHART("<eeprom_settings_store");
686 #endif
687 playlist_init();
688 tree_mem_init();
689 filetype_init();
690 scrobbler_init();
691 shortcuts_init();
693 #if CONFIG_CODEC != SWCODEC
694 /* No buffer allocation (see buffer.c) may take place after the call to
695 audio_init() since the mpeg thread takes the rest of the buffer space */
696 mp3_init( global_settings.volume,
697 global_settings.bass,
698 global_settings.treble,
699 global_settings.balance,
700 global_settings.loudness,
701 global_settings.avc,
702 global_settings.channel_config,
703 global_settings.stereo_width,
704 global_settings.mdb_strength,
705 global_settings.mdb_harmonics,
706 global_settings.mdb_center,
707 global_settings.mdb_shape,
708 global_settings.mdb_enable,
709 global_settings.superbass);
710 #endif /* CONFIG_CODEC != SWCODEC */
712 CHART(">audio_init");
713 audio_init();
714 CHART("<audio_init");
716 #if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING)
717 pcm_rec_init();
718 #endif
720 /* runtime database has to be initialized after audio_init() */
721 cpu_boost(false);
723 #if CONFIG_CHARGING
724 car_adapter_mode_init();
725 #endif
726 #ifdef IPOD_ACCESSORY_PROTOCOL
727 iap_setup(global_settings.serial_bitrate);
728 #endif
729 #ifdef HAVE_ACCESSORY_SUPPLY
730 accessory_supply_set(global_settings.accessory_supply);
731 #endif
732 #ifdef HAVE_LINEOUT_POWEROFF
733 lineout_set(global_settings.lineout_active);
734 #endif
735 #ifdef HAVE_HOTSWAP_STORAGE_AS_MAIN
736 CHART("<check_bootfile(false)");
737 check_bootfile(false); /* remember write time and filesize */
738 CHART(">check_bootfile(false)");
739 #endif
740 CHART("<settings_apply_skins");
741 settings_apply_skins();
742 CHART(">settings_apply_skins");
745 #ifdef CPU_PP
746 void cop_main(void) MAIN_NORETURN_ATTR;
747 void cop_main(void)
749 /* This is the entry point for the coprocessor
750 Anyone not running an upgraded bootloader will never reach this point,
751 so it should not be assumed that the coprocessor be usable even on
752 platforms which support it.
754 A kernel thread is initially setup on the coprocessor and immediately
755 destroyed for purposes of continuity. The cop sits idle until at least
756 one thread exists on it. */
758 #if NUM_CORES > 1
759 system_init();
760 kernel_init();
761 /* This should never be reached */
762 #endif
763 while(1) {
764 sleep_core(COP);
767 #endif /* CPU_PP */
769 #endif /* SIMULATOR */