1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 by Björn Stenberg <bjorn@haxx.se>
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 ****************************************************************************/
24 #include "thread-sdl.h"
36 #include "ata.h" /* for volume definitions */
38 extern char having_new_lcd
;
39 static bool storage_spinning
= false;
41 #if CONFIG_CODEC != SWCODEC
42 void audio_set_buffer_margin(int seconds
)
48 int fat_startsector(void)
53 bool fat_ismounted(int volume
)
59 int storage_init(void)
64 int storage_write_sectors(IF_MV2(int drive
,)
72 for (i
=0; i
<count
; i
++ ) {
76 sprintf(name
,"sector%lX.bin",start
+i
);
86 int storage_read_sectors(IF_MV2(int drive
,)
94 for (i
=0; i
<count
; i
++ ) {
98 DEBUGF("Reading sector %lX\n",start
+i
);
99 sprintf(name
,"sector%lX.bin",start
+i
);
109 void storage_spin(void)
111 storage_spinning
= true;
114 void storage_sleep(void)
118 bool storage_disk_is_active(void)
120 return storage_spinning
;
123 void storage_spindown(int s
)
126 storage_spinning
= false;
133 int rtc_read(int address
)
135 return address
^ 0x55;
138 int rtc_write(int address
, int value
)
145 int rtc_read_datetime(struct tm
*tm
)
147 time_t now
= time(NULL
);
148 *tm
= *localtime(&now
);
153 int rtc_write_datetime(const struct tm
*tm
)
159 #ifdef HAVE_RTC_ALARM
160 void rtc_get_alarm(int *h
, int *m
)
166 void rtc_set_alarm(int h
, int m
)
172 bool rtc_enable_alarm(bool enable
)
177 extern bool sim_alarm_wakeup
;
178 bool rtc_check_alarm_started(bool release_alarm
)
181 return sim_alarm_wakeup
;
184 bool rtc_check_alarm_flag(void)
190 #ifdef HAVE_HEADPHONE_DETECTION
191 bool headphones_inserted(void)
197 #ifdef HAVE_SPDIF_POWER
198 void spdif_power_enable(bool on
)
203 bool spdif_powered(void)
209 bool is_new_player(void)
211 return having_new_lcd
;
214 #ifdef HAVE_USB_POWER
215 bool usb_powered(void)
220 bool usb_charging_enable(bool on
)
228 bool charger_inserted(void)
233 bool power_input_present(void)
238 unsigned int power_input_status(void)
240 #ifdef HAVE_BATTERY_SWITCH
241 return POWER_INPUT_BATTERY
;
243 return POWER_INPUT_NONE
;
247 bool charging_state(void)
251 #endif /* CONFIG_CHARGING */
254 bool usb_inserted(void)
260 #ifdef HAVE_REMOTE_LCD_TICKING
261 void lcd_remote_emireduce(bool state
)
267 void lcd_set_contrast( int x
)
272 void lcd_init_device(void)
276 void mpeg_set_pitch(int pitch
)
281 static int sleeptime
;
282 void set_sleep_timer(int seconds
)
287 int get_sleep_timer(void)
292 #ifdef HAVE_LCD_CHARCELLS
293 void lcd_clearrect (int x
, int y
, int nx
, int ny
)
295 /* Reprint char if you want to change anything */
302 void lcd_fillrect (int x
, int y
, int nx
, int ny
)
304 /* Reprint char if you want to change display anything */
312 void cpu_sleep(bool enabled
)
317 void button_set_flip(bool yesno
)
322 #ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING
323 void touchpad_set_sensitivity(int level
)
329 void system_exception_wait(void)
331 thread_sdl_exception_wait();
334 void system_reboot(void)
336 thread_sdl_exception_wait();