Add target/hosted/unix/thread-pth.c, which is a working thread implementation
[kugel-rb.git] / uisimulator / common / stubs.c
bloba274e5eda2c4480cdd916f77c9b8134acd5913ee
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
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 ****************************************************************************/
21 #include <stdio.h>
22 #include <time.h>
23 #include <stdbool.h>
25 #include "debug.h"
27 #include "screens.h"
28 #include "button.h"
30 #include "string.h"
31 #include "lcd.h"
33 #include "power.h"
35 #include "ata.h" /* for volume definitions */
37 extern char having_new_lcd;
38 static bool storage_spinning = false;
40 #if CONFIG_CODEC != SWCODEC
41 void audio_set_buffer_margin(int seconds)
43 (void)seconds;
45 #endif
47 int fat_startsector(void)
49 return 63;
52 bool fat_ismounted(int volume)
54 (void)volume;
55 return true;
58 int storage_init(void)
60 return 1;
63 int storage_write_sectors(IF_MV2(int drive,)
64 unsigned long start,
65 int count,
66 const void* buf)
68 IF_MV((void)drive;)
69 int i;
71 for (i=0; i<count; i++ ) {
72 FILE* f;
73 char name[32];
75 sprintf(name,"sector%lX.bin",start+i);
76 f=fopen(name,"wb");
77 if (f) {
78 fwrite(buf,512,1,f);
79 fclose(f);
82 return 1;
85 int storage_read_sectors(IF_MV2(int drive,)
86 unsigned long start,
87 int count,
88 void* buf)
90 IF_MV((void)drive;)
91 int i;
93 for (i=0; i<count; i++ ) {
94 FILE* f;
95 char name[32];
97 DEBUGF("Reading sector %lX\n",start+i);
98 sprintf(name,"sector%lX.bin",start+i);
99 f=fopen(name,"rb");
100 if (f) {
101 fread(buf,512,1,f);
102 fclose(f);
105 return 1;
108 void storage_spin(void)
110 storage_spinning = true;
113 void storage_sleep(void)
117 bool storage_disk_is_active(void)
119 return storage_spinning;
122 void storage_spindown(int s)
124 (void)s;
125 storage_spinning = false;
128 void rtc_init(void)
132 int rtc_read(int address)
134 return address ^ 0x55;
137 int rtc_write(int address, int value)
139 (void)address;
140 (void)value;
141 return 0;
144 int rtc_read_datetime(struct tm *tm)
146 time_t now = time(NULL);
147 *tm = *localtime(&now);
149 return 0;
152 int rtc_write_datetime(const struct tm *tm)
154 (void)tm;
155 return 0;
158 #ifdef HAVE_RTC_ALARM
159 void rtc_get_alarm(int *h, int *m)
161 *h = 11;
162 *m = 55;
165 void rtc_set_alarm(int h, int m)
167 (void)h;
168 (void)m;
171 bool rtc_enable_alarm(bool enable)
173 return enable;
176 extern bool sim_alarm_wakeup;
177 bool rtc_check_alarm_started(bool release_alarm)
179 (void)release_alarm;
180 return sim_alarm_wakeup;
183 bool rtc_check_alarm_flag(void)
185 return true;
187 #endif
189 #ifdef HAVE_HEADPHONE_DETECTION
190 bool headphones_inserted(void)
192 return true;
194 #endif
196 #ifdef HAVE_SPDIF_POWER
197 void spdif_power_enable(bool on)
199 (void)on;
202 bool spdif_powered(void)
204 return false;
206 #endif
208 bool is_new_player(void)
210 return having_new_lcd;
213 #ifdef HAVE_USB_POWER
214 bool usb_powered(void)
216 return false;
219 bool usb_charging_enable(bool on)
221 (void)on;
222 return false;
224 #endif
226 #if CONFIG_CHARGING
227 bool charger_inserted(void)
229 return false;
232 bool power_input_present(void)
234 return false;
237 unsigned int power_input_status(void)
239 #ifdef HAVE_BATTERY_SWITCH
240 return POWER_INPUT_BATTERY;
241 #else
242 return POWER_INPUT_NONE;
243 #endif
246 bool charging_state(void)
248 return false;
250 #endif /* CONFIG_CHARGING */
252 #ifndef USB_NONE
253 bool usb_inserted(void)
255 return false;
257 #endif
259 #ifdef HAVE_REMOTE_LCD_TICKING
260 void lcd_remote_emireduce(bool state)
262 (void)state;
264 #endif
266 void lcd_set_contrast( int x )
268 (void)x;
271 void lcd_init_device(void)
275 void mpeg_set_pitch(int pitch)
277 (void)pitch;
280 static int sleeptime;
281 void set_sleep_timer(int seconds)
283 sleeptime = seconds;
286 int get_sleep_timer(void)
288 return sleeptime;
291 #ifdef HAVE_LCD_CHARCELLS
292 void lcd_clearrect (int x, int y, int nx, int ny)
294 /* Reprint char if you want to change anything */
295 (void)x;
296 (void)y;
297 (void)nx;
298 (void)ny;
301 void lcd_fillrect (int x, int y, int nx, int ny)
303 /* Reprint char if you want to change display anything */
304 (void)x;
305 (void)y;
306 (void)nx;
307 (void)ny;
309 #endif
311 void cpu_sleep(bool enabled)
313 (void)enabled;
316 #ifdef HAVE_TOUCHPAD_SENSITIVITY_SETTING
317 void touchpad_set_sensitivity(int level)
319 (void)level;
321 #endif