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 ****************************************************************************/
33 #include "filetypes.h"
38 #include "powermgmt.h"
45 #include "mp3_playback.h"
48 #include "backlight.h"
50 #include "debug_menu.h"
60 #include "usb_screen.h"
73 #include "eeprom_settings.h"
74 #include "scrobbler.h"
77 #include "statusbar-skinned.h"
79 #ifdef IPOD_ACCESSORY_PROTOCOL
83 #if (CONFIG_CODEC == SWCODEC)
87 #if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING) && !defined(SIMULATOR)
88 #include "pcm_record.h"
92 #define SETTINGS_RESET BUTTON_REC
93 #elif (CONFIG_KEYPAD == GIGABEAT_PAD)
94 #define SETTINGS_RESET BUTTON_A
100 #if (CONFIG_STORAGE & STORAGE_MMC)
104 #ifdef HAVE_REMOTE_LCD
105 #include "lcd-remote.h"
108 #if CONFIG_USBOTG == USBOTG_ISP1362
112 #if CONFIG_USBOTG == USBOTG_M5636
117 #include "sim_tasks.h"
118 #include "system-sdl.h"
121 /*#define AUTOROCK*/ /* define this to check for "autostart.rock" on boot */
123 const char appsversion
[]=APPSVERSION
;
125 static void init(void);
130 int main(void) __attribute__((noreturn
));
138 screens
[i
].clear_display();
141 #ifdef HAVE_LCD_BITMAP
145 /* Keep the order of this 3
146 * Must be done before any code uses the multi-screen API */
148 /* All threads should be created and public queues registered by now */
149 usb_start_monitoring();
154 static const char filename
[] = PLUGIN_APPS_DIR
"/autostart.rock";
156 if(file_exists(filename
)) /* no complaint if it doesn't exist */
158 plugin_load((char*)filename
, NULL
); /* start if it does */
161 #endif /* #ifdef AUTOROCK */
163 global_status
.last_volume_change
= 0;
167 static int init_dircache(bool preinit
)
176 if (!global_settings
.dircache
)
179 # ifdef HAVE_EEPROM_SETTINGS
180 if (firmware_settings
.initialized
&& firmware_settings
.disk_clean
183 result
= dircache_load();
187 firmware_settings
.disk_clean
= false;
188 if (global_status
.dircache_size
<= 0)
190 /* This will be in default language, settings are not
191 applied yet. Not really any easy way to fix that. */
192 splash(0, str(LANG_SCANNING_DISK
));
196 dircache_build(global_status
.dircache_size
);
205 if (!dircache_is_enabled()
206 && !dircache_is_initializing())
208 if (global_status
.dircache_size
<= 0)
210 splash(0, str(LANG_SCANNING_DISK
));
213 result
= dircache_build(global_status
.dircache_size
);
218 /* Initialization of dircache failed. Manual action is
219 * necessary to enable dircache again.
221 splashf(0, "Dircache failed, disabled. Result: %d", result
);
222 global_settings
.dircache
= false;
230 global_status
.dircache_size
= dircache_get_cache_size();
242 static void init_tagcache(void)
245 #if CONFIG_CODEC == SWCODEC
246 long talked_tick
= 0;
250 while (!tagcache_is_initialized())
252 int ret
= tagcache_get_commit_step();
256 #if CONFIG_CODEC == SWCODEC
257 /* hwcodec can't use voice here, as the database commit
258 * uses the audio buffer. */
259 if(global_settings
.talk_menu
261 || TIME_AFTER(current_tick
, talked_tick
+7*HZ
)))
263 talked_tick
= current_tick
;
264 talk_id(LANG_TAGCACHE_INIT
, false);
265 talk_number(ret
, true);
266 talk_id(VOICE_OF
, true);
267 talk_number(tagcache_get_max_commit_step(), true);
270 #ifdef HAVE_LCD_BITMAP
273 splashf(0, "[%d/%d] %s", ret
, tagcache_get_max_commit_step(),
274 str(LANG_TAGCACHE_INIT
));
278 splashf(0, "%s [%d/%d]", str(LANG_TAGCACHE_INIT
), ret
,
279 tagcache_get_max_commit_step());
282 lcd_double_height(false);
283 lcd_putsf(0, 1, " DB [%d/%d]", ret
,
284 tagcache_get_max_commit_step());
303 static void init(void)
309 #ifdef HAVE_REMOTE_LCD
317 lang_init(core_language_builtin
, language_strings
,
318 LANG_LAST_INDEX_IN_ARRAY
);
322 /* Keep the order of this 3 (viewportmanager handles statusbars)
323 * Must be done before any code uses the multi-screen API */
324 gui_syncstatusbar_init(&statusbars
);
326 viewportmanager_init();
331 settings_load(SETTINGS_ALL
);
332 settings_apply(true);
334 init_dircache(false);
343 #if CONFIG_CODEC != SWCODEC
344 mp3_init( global_settings
.volume
,
345 global_settings
.bass
,
346 global_settings
.treble
,
347 global_settings
.balance
,
348 global_settings
.loudness
,
350 global_settings
.channel_config
,
351 global_settings
.stereo_width
,
352 global_settings
.mdb_strength
,
353 global_settings
.mdb_harmonics
,
354 global_settings
.mdb_center
,
355 global_settings
.mdb_shape
,
356 global_settings
.mdb_enable
,
357 global_settings
.superbass
);
359 /* audio_init must to know the size of voice buffer so init voice first */
361 #endif /* CONFIG_CODEC != SWCODEC */
364 #if CONFIG_CODEC == SWCODEC
366 #endif /* CONFIG_CODEC == SWCODEC */
369 button_clear_queue(); /* Empty the keyboard buffer */
374 static void init(void)
377 bool mounted
= false;
378 #if CONFIG_CHARGING && (CONFIG_CPU == SH7034)
379 /* if nobody initialized ATA before, I consider this a cold start */
380 bool coldstart
= (PACR2
& 0x4000) != 0; /* starting from Flash */
386 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
387 set_cpu_frequency(CPUFREQ_NORMAL
);
389 coldfire_set_pllcr_audio_bits(DEFAULT_PLLCR_AUDIO_BITS
);
407 #ifdef HAVE_REMOTE_LCD
413 lang_init(core_language_builtin
, language_strings
,
414 LANG_LAST_INDEX_IN_ARRAY
);
428 settings_load(SETTINGS_RTC
); /* early load parts of global_settings */
434 #if CONFIG_USBOTG == USBOTG_ISP1362
436 #elif CONFIG_USBOTG == USBOTG_M5636
450 /* Keep the order of this 3 (viewportmanager handles statusbars)
451 * Must be done before any code uses the multi-screen API */
452 gui_syncstatusbar_init(&statusbars
);
454 viewportmanager_init();
458 #if CONFIG_CHARGING && (CONFIG_CPU == SH7034)
459 /* charger_inserted() can't be used here because power_thread()
460 hasn't checked power_input_status() yet */
461 if (coldstart
&& (power_input_status() & POWER_INPUT_MAIN_CHARGER
)
462 && !global_settings
.car_adapter_mode
463 #ifdef ATA_POWER_PLAYERSTYLE
464 && !ide_powered() /* relies on probing result from bootloader */
468 rc
= charging_screen(); /* display a "charging" screen */
469 if (rc
== 1) /* charger removed */
471 /* "On" pressed or USB connected: proceed */
472 show_logo(); /* again, to provide better visual feedback */
479 #ifdef HAVE_LCD_BITMAP
481 lcd_putsf(0, 1, "ATA error: %d", rc
);
482 lcd_puts(0, 3, "Press ON to debug");
484 while(!(button_get(true) & BUTTON_REL
)); /*DO NOT CHANGE TO ACTION SYSTEM */
487 panicf("ata: %d", rc
);
490 #ifdef HAVE_EEPROM_SETTINGS
491 eeprom_settings_init();
494 #ifndef HAVE_USBSTACK
495 usb_start_monitoring();
496 while (usb_detect() == USB_INSERTED
)
498 #ifdef HAVE_EEPROM_SETTINGS
499 firmware_settings
.disk_clean
= false;
501 /* enter USB mode early, before trying to mount */
502 if (button_get_w_tmo(HZ
/10) == SYS_USB_CONNECTED
)
503 #if (CONFIG_STORAGE & STORAGE_MMC)
504 if (!mmc_touched() ||
505 (mmc_remove_request() == SYS_HOTSWAP_EXTRACTED
))
508 gui_usb_screen_run();
509 mounted
= true; /* mounting done @ end of USB mode */
511 #ifdef HAVE_USB_POWER
512 if (usb_powered()) /* avoid deadlock */
520 rc
= disk_mount_all();
524 lcd_puts(0, 0, "No partition");
525 lcd_puts(0, 1, "found.");
526 #ifdef HAVE_LCD_BITMAP
527 lcd_puts(0, 2, "Insert USB cable");
528 lcd_puts(0, 3, "and fix it.");
532 while(button_get(true) != SYS_USB_CONNECTED
) {};
533 gui_usb_screen_run();
538 #if defined(SETTINGS_RESET) || (CONFIG_KEYPAD == IPOD_4G_PAD) || \
539 (CONFIG_KEYPAD == IRIVER_H10_PAD)
540 #ifdef SETTINGS_RESET
541 /* Reset settings if holding the reset button. (Rec on Archos,
543 if ((button_status() & SETTINGS_RESET
) == SETTINGS_RESET
)
545 /* Reset settings if the hold button is turned on */
549 splash(HZ
*2, str(LANG_RESET_DONE_CLEAR
));
554 settings_load(SETTINGS_ALL
);
556 if (init_dircache(true) < 0)
559 remove(TAGCACHE_STATEFILE
);
563 settings_apply(true);
564 init_dircache(false);
569 #ifdef HAVE_EEPROM_SETTINGS
570 if (firmware_settings
.initialized
)
572 /* In case we crash. */
573 firmware_settings
.disk_clean
= false;
574 eeprom_settings_store();
581 #if CONFIG_CODEC == SWCODEC
583 #endif /* CONFIG_CODEC == SWCODEC */
585 #if CONFIG_CODEC != SWCODEC
586 /* No buffer allocation (see buffer.c) may take place after the call to
587 audio_init() since the mpeg thread takes the rest of the buffer space */
588 mp3_init( global_settings
.volume
,
589 global_settings
.bass
,
590 global_settings
.treble
,
591 global_settings
.balance
,
592 global_settings
.loudness
,
594 global_settings
.channel_config
,
595 global_settings
.stereo_width
,
596 global_settings
.mdb_strength
,
597 global_settings
.mdb_harmonics
,
598 global_settings
.mdb_center
,
599 global_settings
.mdb_shape
,
600 global_settings
.mdb_enable
,
601 global_settings
.superbass
);
603 /* audio_init must to know the size of voice buffer so init voice first */
605 #endif /* CONFIG_CODEC != SWCODEC */
609 #if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING) && !defined(SIMULATOR)
613 /* runtime database has to be initialized after audio_init() */
617 car_adapter_mode_init();
619 #ifdef IPOD_ACCESSORY_PROTOCOL
620 iap_setup(global_settings
.serial_bitrate
);
622 #ifdef HAVE_ACCESSORY_SUPPLY
623 accessory_supply_set(global_settings
.accessory_supply
);
630 /* This is the entry point for the coprocessor
631 Anyone not running an upgraded bootloader will never reach this point,
632 so it should not be assumed that the coprocessor be usable even on
633 platforms which support it.
635 A kernel thread is initially setup on the coprocessor and immediately
636 destroyed for purposes of continuity. The cop sits idle until at least
637 one thread exists on it. */
639 /* 3G doesn't have Rolo or dual core support yet */
643 /* This should never be reached */