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"
72 #include "eeprom_settings.h"
73 #include "scrobbler.h"
77 #ifdef IPOD_ACCESSORY_PROTOCOL
81 #if (CONFIG_CODEC == SWCODEC)
85 #if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING) && !defined(SIMULATOR)
86 #include "pcm_record.h"
90 #define SETTINGS_RESET BUTTON_REC
91 #elif (CONFIG_KEYPAD == GIGABEAT_PAD)
92 #define SETTINGS_RESET BUTTON_A
98 #if (CONFIG_STORAGE & STORAGE_MMC)
102 #ifdef HAVE_REMOTE_LCD
103 #include "lcd-remote.h"
106 #if CONFIG_USBOTG == USBOTG_ISP1362
110 #if CONFIG_USBOTG == USBOTG_M5636
115 #include "sim_tasks.h"
116 #include "system-sdl.h"
119 /*#define AUTOROCK*/ /* define this to check for "autostart.rock" on boot */
121 const char appsversion
[]=APPSVERSION
;
123 static void init(void);
128 static void app_main(void)
135 screens
[i
].clear_display();
138 #ifdef HAVE_LCD_BITMAP
142 viewportmanager_init();
144 /* All threads should be created and public queues registered by now */
145 usb_start_monitoring();
150 static const char filename
[] = PLUGIN_APPS_DIR
"/autostart.rock";
152 if(file_exists(filename
)) /* no complaint if it doesn't exist */
154 plugin_load((char*)filename
, NULL
); /* start if it does */
157 #endif /* #ifdef AUTOROCK */
162 static int init_dircache(bool preinit
)
171 if (!global_settings
.dircache
)
174 # ifdef HAVE_EEPROM_SETTINGS
175 if (firmware_settings
.initialized
&& firmware_settings
.disk_clean
178 result
= dircache_load();
182 firmware_settings
.disk_clean
= false;
183 if (global_status
.dircache_size
<= 0)
185 /* This will be in default language, settings are not
186 applied yet. Not really any easy way to fix that. */
187 splash(0, str(LANG_SCANNING_DISK
));
191 dircache_build(global_status
.dircache_size
);
200 if (!dircache_is_enabled()
201 && !dircache_is_initializing())
203 if (global_status
.dircache_size
<= 0)
205 splash(0, str(LANG_SCANNING_DISK
));
208 result
= dircache_build(global_status
.dircache_size
);
213 /* Initialization of dircache failed. Manual action is
214 * necessary to enable dircache again.
216 splashf(0, "Dircache failed, disabled. Result: %d", result
);
217 global_settings
.dircache
= false;
225 global_status
.dircache_size
= dircache_get_cache_size();
237 static void init_tagcache(void)
243 while (!tagcache_is_initialized())
245 #ifdef HAVE_LCD_CHARCELLS
248 int ret
= tagcache_get_commit_step();
252 #if CONFIG_CODEC == SWCODEC
253 /* hwcodec can't use voice here, as the database commit
254 * uses the audio buffer. */
255 static long talked_tick
= 0;
256 if(global_settings
.talk_menu
258 || TIME_AFTER(current_tick
, talked_tick
+7*HZ
)))
260 talked_tick
= current_tick
;
261 talk_id(LANG_TAGCACHE_INIT
, false);
262 talk_number(ret
, true);
263 talk_id(VOICE_OF
, true);
264 talk_number(tagcache_get_max_commit_step(), true);
267 #ifdef HAVE_LCD_BITMAP
268 splashf(0, "%s [%d/%d]",
269 str(LANG_TAGCACHE_INIT
), ret
,
270 tagcache_get_max_commit_step());
272 lcd_double_height(false);
273 snprintf(buf
, sizeof(buf
), " DB [%d/%d]", ret
,
274 tagcache_get_max_commit_step());
294 static void init(void)
300 #ifdef HAVE_REMOTE_LCD
312 /* Must be done before any code uses the multi-screen API */
313 gui_syncstatusbar_init(&statusbars
);
316 settings_load(SETTINGS_ALL
);
318 settings_apply(true);
320 init_dircache(false);
329 #if CONFIG_CODEC != SWCODEC
330 mp3_init( global_settings
.volume
,
331 global_settings
.bass
,
332 global_settings
.treble
,
333 global_settings
.balance
,
334 global_settings
.loudness
,
336 global_settings
.channel_config
,
337 global_settings
.stereo_width
,
338 global_settings
.mdb_strength
,
339 global_settings
.mdb_harmonics
,
340 global_settings
.mdb_center
,
341 global_settings
.mdb_shape
,
342 global_settings
.mdb_enable
,
343 global_settings
.superbass
);
345 /* audio_init must to know the size of voice buffer so init voice first */
347 #endif /* CONFIG_CODEC != SWCODEC */
350 #if CONFIG_CODEC == SWCODEC
352 #endif /* CONFIG_CODEC == SWCODEC */
355 button_clear_queue(); /* Empty the keyboard buffer */
360 static void init(void)
363 bool mounted
= false;
364 #if CONFIG_CHARGING && (CONFIG_CPU == SH7034)
365 /* if nobody initialized ATA before, I consider this a cold start */
366 bool coldstart
= (PACR2
& 0x4000) != 0; /* starting from Flash */
372 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
373 set_cpu_frequency(CPUFREQ_NORMAL
);
375 coldfire_set_pllcr_audio_bits(DEFAULT_PLLCR_AUDIO_BITS
);
393 #ifdef HAVE_REMOTE_LCD
413 settings_load(SETTINGS_RTC
); /* early load parts of global_settings */
419 #if CONFIG_USBOTG == USBOTG_ISP1362
421 #elif CONFIG_USBOTG == USBOTG_M5636
435 /* Must be done before any code uses the multi-screen API */
436 gui_syncstatusbar_init(&statusbars
);
438 #if CONFIG_CHARGING && (CONFIG_CPU == SH7034)
439 /* charger_inserted() can't be used here because power_thread()
440 hasn't checked power_input_status() yet */
441 if (coldstart
&& (power_input_status() & POWER_INPUT_MAIN_CHARGER
)
442 && !global_settings
.car_adapter_mode
443 #ifdef ATA_POWER_PLAYERSTYLE
444 && !ide_powered() /* relies on probing result from bootloader */
448 rc
= charging_screen(); /* display a "charging" screen */
449 if (rc
== 1) /* charger removed */
451 /* "On" pressed or USB connected: proceed */
452 show_logo(); /* again, to provide better visual feedback */
459 #ifdef HAVE_LCD_BITMAP
462 snprintf(str
, 31, "ATA error: %d", rc
);
464 lcd_puts(0, 3, "Press ON to debug");
466 while(!(button_get(true) & BUTTON_REL
)); /*DO NOT CHANGE TO ACTION SYSTEM */
469 panicf("ata: %d", rc
);
472 #ifdef HAVE_EEPROM_SETTINGS
473 eeprom_settings_init();
476 #ifndef HAVE_USBSTACK
477 usb_start_monitoring();
478 while (usb_detect() == USB_INSERTED
)
480 #ifdef HAVE_EEPROM_SETTINGS
481 firmware_settings
.disk_clean
= false;
483 /* enter USB mode early, before trying to mount */
484 if (button_get_w_tmo(HZ
/10) == SYS_USB_CONNECTED
)
485 #if (CONFIG_STORAGE & STORAGE_MMC)
486 if (!mmc_touched() ||
487 (mmc_remove_request() == SYS_HOTSWAP_EXTRACTED
))
491 mounted
= true; /* mounting done @ end of USB mode */
493 #ifdef HAVE_USB_POWER
494 if (usb_powered()) /* avoid deadlock */
502 rc
= disk_mount_all();
506 lcd_puts(0, 0, "No partition");
507 lcd_puts(0, 1, "found.");
508 #ifdef HAVE_LCD_BITMAP
509 lcd_puts(0, 2, "Insert USB cable");
510 lcd_puts(0, 3, "and fix it.");
514 while(button_get(true) != SYS_USB_CONNECTED
) {};
520 #if defined(SETTINGS_RESET) || (CONFIG_KEYPAD == IPOD_4G_PAD) || \
521 (CONFIG_KEYPAD == IRIVER_H10_PAD)
522 #ifdef SETTINGS_RESET
523 /* Reset settings if holding the reset button. (Rec on Archos,
525 if ((button_status() & SETTINGS_RESET
) == SETTINGS_RESET
)
527 /* Reset settings if the hold button is turned on */
531 splash(HZ
*2, str(LANG_RESET_DONE_CLEAR
));
536 settings_load(SETTINGS_ALL
);
538 if (init_dircache(true) < 0)
541 remove(TAGCACHE_STATEFILE
);
546 settings_apply(true);
547 init_dircache(false);
552 #ifdef HAVE_EEPROM_SETTINGS
553 if (firmware_settings
.initialized
)
555 /* In case we crash. */
556 firmware_settings
.disk_clean
= false;
557 eeprom_settings_store();
565 #if CONFIG_CODEC == SWCODEC
567 #endif /* CONFIG_CODEC == SWCODEC */
569 #if CONFIG_CODEC != SWCODEC
570 /* No buffer allocation (see buffer.c) may take place after the call to
571 audio_init() since the mpeg thread takes the rest of the buffer space */
572 mp3_init( global_settings
.volume
,
573 global_settings
.bass
,
574 global_settings
.treble
,
575 global_settings
.balance
,
576 global_settings
.loudness
,
578 global_settings
.channel_config
,
579 global_settings
.stereo_width
,
580 global_settings
.mdb_strength
,
581 global_settings
.mdb_harmonics
,
582 global_settings
.mdb_center
,
583 global_settings
.mdb_shape
,
584 global_settings
.mdb_enable
,
585 global_settings
.superbass
);
587 /* audio_init must to know the size of voice buffer so init voice first */
589 #endif /* CONFIG_CODEC != SWCODEC */
593 #if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING) && !defined(SIMULATOR)
597 /* runtime database has to be initialized after audio_init() */
601 car_adapter_mode_init();
603 #ifdef IPOD_ACCESSORY_PROTOCOL
604 iap_setup(global_settings
.serial_bitrate
);
606 #ifdef HAVE_ACCESSORY_SUPPLY
607 accessory_supply_set(global_settings
.accessory_supply
);
614 /* This is the entry point for the coprocessor
615 Anyone not running an upgraded bootloader will never reach this point,
616 so it should not be assumed that the coprocessor be usable even on
617 platforms which support it.
619 A kernel thread is initially setup on the coprocessor and immediately
620 destroyed for purposes of continuity. The cop sits idle until at least
621 one thread exists on it. */
623 /* 3G doesn't have Rolo or dual core support yet */
627 /* This should never be reached */
640 #if (CONFIG_LED == LED_REAL)
641 led(true); sleep(HZ
/10);
642 led(false); sleep(HZ
/10);