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 ****************************************************************************/
34 #include "ata.h" /* for volume definitions */
36 static bool storage_spinning
= false;
38 #if CONFIG_CODEC != SWCODEC
39 void audio_set_buffer_margin(int seconds
)
45 int fat_startsector(void)
50 bool fat_ismounted(int volume
)
56 int storage_spinup_time(void)
61 int storage_init(void)
66 int storage_write_sectors(IF_MV2(int drive
,)
74 for (i
=0; i
<count
; i
++ ) {
78 sprintf(name
,"sector%lX.bin",start
+i
);
88 int storage_read_sectors(IF_MV2(int drive
,)
96 for (i
=0; i
<count
; i
++ ) {
100 DEBUGF("Reading sector %lX\n",start
+i
);
101 sprintf(name
,"sector%lX.bin",start
+i
);
111 void storage_spin(void)
113 storage_spinning
= true;
116 void storage_sleep(void)
120 bool storage_disk_is_active(void)
122 return storage_spinning
;
125 void storage_spindown(int s
)
128 storage_spinning
= false;
135 int rtc_read(int address
)
137 return address
^ 0x55;
140 int rtc_write(int address
, int value
)
147 int rtc_read_datetime(struct tm
*tm
)
149 time_t now
= time(NULL
);
150 *tm
= *localtime(&now
);
155 int rtc_write_datetime(const struct tm
*tm
)
161 #ifdef HAVE_RTC_ALARM
162 void rtc_get_alarm(int *h
, int *m
)
168 void rtc_set_alarm(int h
, int m
)
174 void rtc_enable_alarm(bool enable
)
179 extern bool sim_alarm_wakeup
;
180 bool rtc_check_alarm_started(bool release_alarm
)
183 return sim_alarm_wakeup
;
186 bool rtc_check_alarm_flag(void)
192 #ifdef HAVE_HEADPHONE_DETECTION
193 bool headphones_inserted(void)
199 #ifdef HAVE_SPDIF_POWER
200 void spdif_power_enable(bool on
)
205 bool spdif_powered(void)
212 bool is_new_player(void)
214 extern char having_new_lcd
;
215 return having_new_lcd
;
219 #ifdef HAVE_USB_POWER
220 bool usb_powered(void)
225 bool usb_charging_enable(bool on
)
233 bool charger_inserted(void)
238 bool power_input_present(void)
243 unsigned int power_input_status(void)
245 #ifdef HAVE_BATTERY_SWITCH
246 return POWER_INPUT_BATTERY
;
248 return POWER_INPUT_NONE
;
252 bool charging_state(void)
256 #endif /* CONFIG_CHARGING */
259 bool usb_inserted(void)
265 #ifdef HAVE_REMOTE_LCD_TICKING
266 void lcd_remote_emireduce(bool state
)
272 void lcd_set_contrast( int x
)
277 void mpeg_set_pitch(int pitch
)
282 static int sleeptime
;
283 void set_sleep_timer(int seconds
)
288 int get_sleep_timer(void)
293 #ifdef HAVE_LCD_CHARCELLS
294 void lcd_clearrect (int x
, int y
, int nx
, int ny
)
296 /* Reprint char if you want to change anything */
303 void lcd_fillrect (int x
, int y
, int nx
, int ny
)
305 /* Reprint char if you want to change display anything */
313 void cpu_sleep(bool enabled
)
318 #ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING
319 void touchpad_set_sensitivity(int level
)