summaryrefslogtreecommitdiffstats
path: root/firmware/SOURCES
blob: 96af8d3d38e2f3b6684e2c29f7b47b1dd05551c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
common/unicode.c
#ifdef ROCKBOX_HAS_LOGF
logf.c
#endif
backlight.c
buffer.c
common/atoi.c
common/crc32.c
common/ctype.c
#ifndef SIMULATOR
common/dir.c
common/file.c
#endif
#ifdef HAVE_DIRCACHE
common/dircache.c
#endif
common/disk.c
#if !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__)
common/errno.c
#endif
common/memcmp.c
common/memchr.c
common/qsort.c
common/random.c
common/sprintf.c
common/strcasecmp.c
common/strcasestr.c
common/strcat.c
common/strchr.c
common/strcmp.c
common/strcpy.c
#if (CONFIG_CPU == SH7034) && !defined(SIMULATOR)
target/sh/strlen-sh.S
#else
common/strlen.c
#endif
common/strncmp.c
common/strncpy.c
common/strrchr.c
common/strtok.c
common/timefuncs.c

#ifdef CPU_COLDFIRE
target/coldfire/memcpy-coldfire.S
target/coldfire/memmove-coldfire.S
target/coldfire/memset-coldfire.S
target/coldfire/memset16-coldfire.S
#elif (CONFIG_CPU == SH7034)
target/sh/memcpy-sh.S
target/sh/memmove-sh.S
target/sh/memset-sh.S
#elif defined(CPU_ARM)
common/memcpy.c
common/memmove.c
target/arm/memset-arm.S
target/arm/memset16-arm.S
#else
common/memcpy.c
common/memmove.c
common/memset.c
common/memset16.c
#endif
#ifdef HAVE_LCD_CHARCELLS
drivers/lcd-player-charset.c
drivers/lcd-player.c
#endif
#ifdef HAVE_LCD_BITMAP
arabjoin.c
bidi.c
hangul.c
#if LCD_DEPTH == 1
drivers/lcd-recorder.c
#elif LCD_DEPTH == 2
#if (LCD_PIXELFORMAT == HORIZONTAL_PACKING)
drivers/lcd-2bit-horz.c
#else
drivers/lcd-h100.c
#endif
#elif LCD_DEPTH == 16
drivers/lcd-16bit.c
#endif
#endif
#ifdef HAVE_REMOTE_LCD
#if LCD_REMOTE_DEPTH == 1
drivers/lcd-h100-remote.c
#elif LCD_REMOTE_DEPTH == 2
drivers/lcd-remote-2bit-vi.c
#endif
#endif
#if CONFIG_LCD==LCD_H300
drivers/lcd-h300.c
#endif
#ifndef TARGET_TREE
drivers/power.c
#endif
drivers/led.c
#ifndef SIMULATOR
#ifndef TARGET_TREE
drivers/adc.c
#endif
#ifdef HAVE_MMC
drivers/ata_mmc.c
#else
#ifdef HAVE_FLASH_DISK
drivers/ata_flash.c
#else
#ifndef SANSA_E200
drivers/ata.c
#endif
#endif
#endif
drivers/button.c
drivers/dac.c
drivers/fat.c
#ifdef CONFIG_TUNER
#if (CONFIG_TUNER & S1A0903X01)
drivers/fmradio.c
tuner_samsung.c
#endif
#if (CONFIG_TUNER & TEA5767)
drivers/fmradio_i2c.c
tuner_philips.c
#endif
#endif
#if CONFIG_I2C == I2C_COLDFIRE
drivers/i2c-coldfire.c
#elif CONFIG_I2C == I2C_PP5020
drivers/i2c-pp5020.c
#elif CONFIG_I2C == I2C_PP5002
drivers/i2c-pp5002.c
#elif CONFIG_I2C == I2C_PNX0101
drivers/i2c-pnx0101.c
#elif CONFIG_I2C == I2C_S3C2440
/* no i2c driver yet */
#else
drivers/i2c.c
#endif
#if CONFIG_CODEC != SWCODEC
drivers/mas.c
#endif
#ifdef IRIVER_H300_SERIES
drivers/pcf50606.c
#endif
#ifdef HAVE_EEPROM
drivers/eeprom_24cxx.c
#ifdef HAVE_EEPROM_SETTINGS
eeprom_settings.c
#endif
#endif
#ifdef IPOD_ARCH
drivers/pcf50605.c
#endif
#if (CONFIG_RTC == RTC_M41ST84W) || (CONFIG_RTC == RTC_PCF50606) \
 || (CONFIG_RTC == RTC_PCF50605) || (CONFIG_RTC == RTC_E8564)
drivers/rtc.c
#endif
drivers/serial.c
#endif /* !SIMULATOR */
#ifdef HAVE_LCD_BITMAP
lru.c
font_cache.c
font.c
#endif
id3.c
#ifndef SIMULATOR
#ifdef RB_PROFILE
profile.c
#endif /* RB_PROFILE */
hwcompat.c
kernel.c
rolo.c
thread.c
timer.c
#ifdef CPU_PP
target/arm/crt0-pp.S
#elif defined(CPU_ARM)
target/arm/crt0.S
#elif defined(CPU_COLDFIRE)
target/coldfire/crt0.S
#elif CONFIG_CPU == SH7034
target/sh/crt0.S
#else
crt0.S
#endif
drivers/lcd.S
#endif
mp3_playback.c
mp3data.c
#if CONFIG_CODEC != SWCODEC
mpeg.c
#endif
#if !defined(WIN32) || defined(SDL)
panic.c
debug.c
#endif
powermgmt.c
system.c
usb.c
#if (CONFIG_CPU == SH7034) && !defined(SIMULATOR)
bitswap.S
descramble.S
#endif
#if defined(HAVE_UDA1380) && !defined(SIMULATOR)
drivers/uda1380.c
#elif defined(HAVE_WM8975) && !defined(SIMULATOR)
drivers/wm8975.c
#elif defined(HAVE_WM8758) && !defined(SIMULATOR)
drivers/wm8758.c
#elif (defined(HAVE_WM8731) || defined(HAVE_WM8721)) && !defined(SIMULATOR)
drivers/wm8731l.c
#elif defined(HAVE_TLV320) && !defined(SIMULATOR)
drivers/tlv320.c
#endif
#if (CONFIG_CODEC == SWCODEC) && !defined(SIMULATOR)
pcm_playback.c
#endif
#if CONFIG_CODEC == SWCODEC
replaygain.c
#endif
#if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
pcm_record.c
#endif
sound.c
#if defined(IRIVER_IFP7XX_SERIES) && defined(STUB)
common/sscanf.c
usb_serial.c
#endif
#if CONFIG_USBOTG == USBOTG_ISP1362
drivers/isp1362.c
#endif
#if CONFIG_USBOTG == USBOTG_M5636
drivers/m5636.c
#endif

#ifdef SANSA_E200
target/arm/sandisk/sansa-e200/ata-e200.c
target/arm/sandisk/sansa-e200/lcd-e200.c
#endif

#ifdef IAUDIO_X5
target/coldfire/iaudio/x5/power-x5.c
#ifndef SIMULATOR
drivers/generic_i2c.c
target/coldfire/iaudio/x5/button-x5.c
target/coldfire/iaudio/x5/lcd-as-x5.S
target/coldfire/iaudio/x5/lcd-x5.c
target/coldfire/iaudio/x5/pcf50606-x5.c
target/coldfire/iaudio/x5/adc-x5.c
target/coldfire/iaudio/x5/ata-x5.c
target/coldfire/iaudio/x5/system-x5.c
target/coldfire/iaudio/x5/usb-x5.c
target/coldfire/iaudio/x5/backlight-x5.c
target/coldfire/iaudio/x5/m5636-x5.c
target/coldfire/iaudio/x5/lcd-remote-x5.c
#endif
#endif

#ifdef IRIVER_H300_SERIES
#ifndef SIMULATOR
target/coldfire/iriver/h300/lcd-as-h300.S
#endif
#endif

#ifdef IRIVER_H10
#ifndef SIMULATOR
target/arm/iriver/h10/backlight-h10.c
target/arm/iriver/h10/button-h10.c
target/arm/ata-pp5020.c
target/arm/iriver/h10/power-h10.c
target/arm/iriver/h10/usb-h10.c
target/arm/iriver/h10/lcd-h10_20gb.c
target/arm/iriver/h10/adc-h10.c
#endif
#endif

#ifdef IRIVER_H10_5GB
#ifndef SIMULATOR
target/arm/iriver/h10/backlight-h10.c
target/arm/iriver/h10/button-h10.c
target/arm/ata-pp5020.c
target/arm/iriver/h10/power-h10.c
target/arm/iriver/h10/usb-h10.c
target/arm/iriver/h10/lcd-h10_5gb.c
target/arm/iriver/h10/adc-h10.c
#endif
#endif

#ifdef GIGABEAT_F
#ifndef SIMULATOR
target/arm/gigabeat/meg-fx/backlight-meg-fx.c
target/arm/gigabeat/meg-fx/button-meg-fx.c
target/arm/gigabeat/meg-fx/ata-meg-fx.c
target/arm/gigabeat/meg-fx/power-meg-fx.c
target/arm/gigabeat/meg-fx/usb-meg-fx.c
target/arm/gigabeat/meg-fx/lcd-meg-fx.c
target/arm/gigabeat/meg-fx/sc606-meg-fx.c
target/arm/gigabeat/meg-fx/adc-meg-fx.c
drivers/generic_i2c.c
target/arm/gigabeat/meg-fx/i2c-meg-fx.c
#endif
#endif

#ifdef ELIO_TPJ1022
#ifndef SIMULATOR
target/arm/tatung/tpj1022/backlight-tpj1022.c
target/arm/tatung/tpj1022/button-tpj1022.c
target/arm/ata-pp5020.c
target/arm/tatung/tpj1022/power-tpj1022.c
target/arm/tatung/tpj1022/usb-tpj1022.c
target/arm/tatung/tpj1022/lcd-tpj1022.c
target/arm/tatung/tpj1022/adc-tpj1022.c
#endif
#endif

#ifdef IPOD_4G
#ifndef SIMULATOR
drivers/lcd-ipod.c
drivers/pcf50605.c
target/arm/ata-pp5020.c
target/arm/ipod/adc-ipod.c
target/arm/ipod/backlight-4g_color.c
target/arm/ipod/button-clickwheel.c
target/arm/ipod/power-ipod.c
target/arm/ipod/usb-ipod.c
#endif
#endif

#ifdef IPOD_COLOR
#ifndef SIMULATOR
drivers/lcd-ipod.c
drivers/pcf50605.c
target/arm/ata-pp5020.c
target/arm/ipod/adc-ipod.c
target/arm/ipod/backlight-4g_color.c
target/arm/ipod/button-clickwheel.c
target/arm/ipod/power-ipod.c
target/arm/ipod/usb-ipod.c
#endif
#endif

#ifdef IPOD_NANO
#ifndef SIMULATOR
drivers/lcd-ipod.c
drivers/pcf50605.c
target/arm/ata-pp5020.c
target/arm/ipod/adc-ipod.c
target/arm/ipod/backlight-nano_video.c
target/arm/ipod/button-clickwheel.c
target/arm/ipod/power-ipod.c
target/arm/ipod/usb-ipod.c
#endif
#endif

#ifdef IPOD_VIDEO
#ifndef SIMULATOR
drivers/pcf50605.c
target/arm/ata-pp5020.c
target/arm/ipod/adc-ipod.c
target/arm/ipod/backlight-nano_video.c
target/arm/ipod/button-clickwheel.c
target/arm/ipod/power-ipod.c
target/arm/ipod/usb-ipod.c
drivers/lcd-ipodvideo.c
#endif
#endif

#ifdef IPOD_3G
#ifndef SIMULATOR
drivers/lcd-ipod.c
drivers/pcf50605.c
target/arm/ata-pp5020.c
target/arm/ipod/adc-ipod.c
target/arm/ipod/3g/backlight-3g.c
target/arm/ipod/3g/button-3g.c
target/arm/ipod/power-ipod.c
target/arm/ipod/usb-ipod.c
#endif
#endif

#ifdef IPOD_MINI
#ifndef SIMULATOR
drivers/lcd-ipod.c
drivers/pcf50605.c
target/arm/ata-pp5020.c
target/arm/ipod/adc-ipod.c
target/arm/ipod/backlight-mini1g_mini2g.c
target/arm/ipod/button-mini1g.c
target/arm/ipod/power-ipod.c
target/arm/ipod/usb-ipod.c
#endif
#endif


#ifdef IPOD_MINI2G
#ifndef SIMULATOR
drivers/lcd-ipod.c
drivers/pcf50605.c
target/arm/ata-pp5020.c
target/arm/ipod/adc-ipod.c
target/arm/ipod/backlight-mini1g_mini2g.c
target/arm/ipod/button-clickwheel.c
target/arm/ipod/power-ipod.c
target/arm/ipod/usb-ipod.c
#endif
#endif