Re-add the lseek to the beginning of the file which was accidentally removed.
[kugel-rb.git] / firmware / export / config.h
blob3a7328315bd070ab46535259cbda196c2dad247d
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Daniel 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 ****************************************************************************/
22 #ifndef __CONFIG_H__
23 #define __CONFIG_H__
25 #include "autoconf.h"
27 /* symbolic names for multiple choice configurations: */
29 /* CONFIG_STORAGE (note these are combineable bit-flags) */
30 #define STORAGE_ATA 0x01
31 #define STORAGE_MMC 0x02
32 #define STORAGE_SD 0x04
33 #define STORAGE_NAND 0x08
34 #define STORAGE_RAMDISK 0x10
36 /* CONFIG_TUNER (note these are combineable bit-flags) */
37 #define S1A0903X01 0x01 /* Samsung */
38 #define TEA5767 0x02 /* Philips */
39 #define LV24020LP 0x04 /* Sanyo */
40 #define SI4700 0x08 /* Silicon Labs */
41 #define TEA5760 0x10 /* Philips */
42 #define LV240000 0x20 /* Sanyo */
43 #define IPOD_REMOTE_TUNER 0x40 /* Apple */
44 #define RDA5802 0x80 /* RDA Microelectronics */
46 /* CONFIG_CODEC */
47 #define MAS3587F 3587
48 #define MAS3507D 3507
49 #define MAS3539F 3539
50 #define SWCODEC 1 /* if codec is done by SW */
52 /* CONFIG_CPU */
53 #define SH7034 7034
54 #define MCF5249 5249
55 #define MCF5250 5250
56 #define PP5002 5002
57 #define PP5020 5020
58 #define PP5022 5022
59 #define PP5024 5024
60 #define PP6100 6100
61 #define PNX0101 101
62 #define S3C2440 2440
63 #define DSC25 25
64 #define DM320 320
65 #define IMX31L 31
66 #define TCC770 770
67 #define TCC771L 771
68 #define TCC773L 773
69 #define TCC7801 7801
70 #define S5L8700 8700
71 #define S5L8701 8701
72 #define JZ4732 4732
73 #define AS3525 3525
74 #define AT91SAM9260 9260
75 #define AS3525v2 35252
77 /* platforms
78 * bit fields to allow PLATFORM_HOSTED to be OR'ed e.g. with a
79 * possible future PLATFORM_ANDROID (some OSes might need totally different
80 * handling to run on them than a stand-alone application) */
81 #define PLATFORM_NATIVE (1<<0)
82 #define PLATFORM_HOSTED (1<<1)
83 #define PLATFORM_ANDROID (1<<2)
84 #define PLATFORM_SDL (1<<3)
86 /* CONFIG_KEYPAD */
87 #define PLAYER_PAD 1
88 #define RECORDER_PAD 2
89 #define ONDIO_PAD 3
90 #define IRIVER_H100_PAD 4
91 #define IRIVER_H300_PAD 5
92 #define IAUDIO_X5M5_PAD 6
93 #define IPOD_4G_PAD 7
94 #define IPOD_3G_PAD 8
95 #define IPOD_1G2G_PAD 9
96 #define IRIVER_IFP7XX_PAD 10
97 #define GIGABEAT_PAD 11
98 #define IRIVER_H10_PAD 12
99 #define SANSA_E200_PAD 13
100 #define SANSA_C200_PAD 14
101 #define TATUNG_TPJ1022_PAD 15
102 #define ARCHOS_AV300_PAD 16
103 #define MROBE100_PAD 17
104 #define MROBE500_PAD 18
105 #define GIGABEAT_S_PAD 19
106 #define LOGIK_DAX_PAD 20
107 #define IAUDIO67_PAD 21
108 #define COWON_D2_PAD 22
109 #define IAUDIO_M3_PAD 23
110 #define CREATIVEZVM_PAD 24
111 #define SANSA_M200_PAD 25
112 #define CREATIVEZV_PAD 26
113 #define PHILIPS_SA9200_PAD 27
114 #define SANSA_C100_PAD 28
115 #define PHILIPS_HDD1630_PAD 29
116 #define MEIZU_M6SL_PAD 30
117 #define ONDAVX747_PAD 31
118 #define ONDAVX767_PAD 32
119 #define MEIZU_M6SP_PAD 33
120 #define MEIZU_M3_PAD 34
121 #define SANSA_CLIP_PAD 35
122 #define SANSA_FUZE_PAD 36
123 #define LYRE_PROTO1_PAD 37
124 #define SAMSUNG_YH_PAD 38
125 #define ONDAVX777_PAD 39
126 #define SAMSUNG_YPS3_PAD 40
127 #define MINI2440_PAD 41
128 #define PHILIPS_HDD6330_PAD 42
129 #define PBELL_VIBE500_PAD 43
130 #define MPIO_HD200_PAD 44
131 #define ANDROID_PAD 45
132 #define SDL_PAD 46
134 /* CONFIG_REMOTE_KEYPAD */
135 #define H100_REMOTE 1
136 #define H300_REMOTE 2
137 #define IAUDIO_REMOTE 3
138 #define MROBE_REMOTE 4
140 /* CONFIG_BACKLIGHT_FADING */
141 /* No fading capabilities at all (yet) */
142 #define BACKLIGHT_NO_FADING 0x0
143 /* Backlight fading is controlled using a hardware PWM mechanism */
144 #define BACKLIGHT_FADING_PWM 0x1
145 /* Backlight is controlled using a software implementation
146 * BACKLIGHT_FADING_SW_SETTING means that backlight is turned on by only setting
147 * the brightness (i.e. no real difference between backlight_on and
148 * backlight_set_brightness)
149 * BACKLIGHT_FADING_SW_HW_REG means that backlight brightness is restored
150 * "in hardware", from a hardware register upon backlight_on
151 * Both types need to have minor adjustments in the software fading code */
152 #define BACKLIGHT_FADING_SW_SETTING 0x2
153 #define BACKLIGHT_FADING_SW_HW_REG 0x4
154 /* Backlight fading is done in a target specific way
155 * for example in hardware, but not controllable*/
156 #define BACKLIGHT_FADING_TARGET 0x8
158 /* CONFIG_CHARGING */
160 /* Generic types */
161 #define CHARGING_SIMPLE 1 /* Simple, hardware controlled charging
162 * (CPU cannot read charger state but may read
163 * when power is plugged-in). */
164 #define CHARGING_MONITOR 2 /* Hardware controlled charging with monitoring
165 * (CPU is able to read HW charging state and
166 * when power is plugged-in). */
168 /* Mostly target-specific code in the /target tree */
169 #define CHARGING_TARGET 3 /* Any algorithm - usually software controlled
170 * charging or specific programming is required to
171 * use the charging hardware. */
173 /* CONFIG_LCD */
174 #define LCD_SSD1815 1 /* as used by Archos Recorders and Ondios */
175 #define LCD_SSD1801 2 /* as used by Archos Player/Studio */
176 #define LCD_S1D15E06 3 /* as used by iRiver H100 series */
177 #define LCD_H300 4 /* as used by iRiver H300 series, exact model name is
178 unknown at the time of this writing */
179 #define LCD_X5 5 /* as used by iAudio X5 series, exact model name is
180 unknown at the time of this writing */
181 #define LCD_IPODCOLOR 6 /* as used by iPod Color/Photo */
182 #define LCD_IPODNANO 7 /* as used by iPod Nano */
183 #define LCD_IPODVIDEO 8 /* as used by iPod Video */
184 #define LCD_IPOD2BPP 9 /* as used by all fullsize greyscale iPods */
185 #define LCD_IPODMINI 10 /* as used by iPod Mini g1/g2 */
186 #define LCD_IFP7XX 11 /* as used by iRiver iFP 7xx/8xx */
187 #define LCD_GIGABEAT 12
188 #define LCD_H10_20GB 13 /* as used by iriver H10 20Gb */
189 #define LCD_H10_5GB 14 /* as used by iriver H10 5Gb */
190 #define LCD_TPJ1022 15 /* as used by Tatung Elio TPJ-1022 */
191 #define LCD_DSC25 16 /* as used by Archos AV300 */
192 #define LCD_C200 17 /* as used by Sandisk Sansa c200 */
193 #define LCD_MROBE500 18 /* as used by Olympus M:Robe 500i */
194 #define LCD_MROBE100 19 /* as used by Olympus M:Robe 100 */
195 #define LCD_LOGIKDAX 20 /* as used by Logik DAX - SSD1815 */
196 #define LCD_IAUDIO67 21 /* as used by iAudio 6/7 - unknown */
197 #define LCD_CREATIVEZVM 22 /* as used by Creative Zen Vision:M */
198 #define LCD_TL0350A 23 /* as used by the iAudio M3 remote, treated as main LCD */
199 #define LCD_COWOND2 24 /* as used by Cowon D2 - LTV250QV, TCC7801 driver */
200 #define LCD_SA9200 25 /* as used by the Philips SA9200 */
201 #define LCD_S6B33B2 26 /* as used by the Sansa c100 */
202 #define LCD_HDD1630 27 /* as used by the Philips HDD1630 */
203 #define LCD_MEIZUM6 28 /* as used by the Meizu M6SP and M6SL (various models) */
204 #define LCD_ONDAVX747 29 /* as used by the Onda VX747 */
205 #define LCD_ONDAVX767 30 /* as used by the Onda VX767 */
206 #define LCD_SSD1303 31 /* as used by the Sansa Clip */
207 #define LCD_FUZE 32 /* as used by the Sansa Fuze */
208 #define LCD_LYRE_PROTO1 33 /* as used by the Lyre prototype 1 */
209 #define LCD_YH925 34 /* as used by Samsung YH-925 (similar to the H10 20GB) */
210 #define LCD_VIEW 35 /* as used by the Sansa View */
211 #define LCD_NANO2G 36 /* as used by the iPod Nano 2nd Generation */
212 #define LCD_MINI2440 37 /* as used by the Mini2440 */
213 #define LCD_HDD6330 38 /* as used by the Philips HDD6330 */
214 #define LCD_VIBE500 39 /* as used by the Packard Bell Vibe 500 */
216 /* LCD_PIXELFORMAT */
217 #define HORIZONTAL_PACKING 1
218 #define VERTICAL_PACKING 2
219 #define HORIZONTAL_INTERLEAVED 3
220 #define VERTICAL_INTERLEAVED 4
221 #define RGB565 565
222 #define RGB565SWAPPED 3553
224 /* LCD_STRIDEFORMAT */
225 #define VERTICAL_STRIDE 1
226 #define HORIZONTAL_STRIDE 2
228 /* CONFIG_ORIENTATION */
229 #define SCREEN_PORTRAIT 0
230 #define SCREEN_LANDSCAPE 1
231 #define SCREEN_SQUARE 2
233 /* CONFIG_I2C */
234 #define I2C_NONE 0 /* For targets that do not use I2C - as the
235 Lyre prototype 1 */
236 #define I2C_PLAYREC 1 /* Archos Player/Recorder style */
237 #define I2C_ONDIO 2 /* Ondio style */
238 #define I2C_COLDFIRE 3 /* Coldfire style */
239 #define I2C_PP5002 4 /* PP5002 style */
240 #define I2C_PP5020 5 /* PP5020 style */
241 #define I2C_PNX0101 6 /* PNX0101 style */
242 #define I2C_S3C2440 7
243 #define I2C_PP5024 8 /* PP5024 style */
244 #define I2C_IMX31L 9
245 #define I2C_TCC77X 10
246 #define I2C_TCC780X 11
247 #define I2C_DM320 12 /* DM320 style */
248 #define I2C_S5L8700 13
249 #define I2C_JZ47XX 14 /* Ingenic Jz47XX style */
250 #define I2C_AS3525 15
252 /* CONFIG_LED */
253 #define LED_REAL 1 /* SW controlled LED (Archos recorders, player) */
254 #define LED_VIRTUAL 2 /* Virtual LED (icon) (Archos Ondio) */
255 /* else HW controlled LED (iRiver H1x0) */
257 /* CONFIG_NAND */
258 #define NAND_IFP7XX 1
259 #define NAND_TCC 2
260 #define NAND_SAMSUNG 3
261 #define NAND_CC 4 /* ChinaChip */
263 /* CONFIG_RTC */
264 #define RTC_M41ST84W 1 /* Archos Recorder */
265 #define RTC_PCF50605 2 /* iPod 3G, 4G & Mini */
266 #define RTC_PCF50606 3 /* iriver H300 */
267 #define RTC_S3C2440 4
268 #define RTC_E8564 5 /* iriver H10 */
269 #define RTC_AS3514 6 /* Sandisk Sansa series */
270 #define RTC_DS1339_DS3231 7 /* h1x0 RTC mod */
271 #define RTC_IMX31L 8
272 #define RTC_RX5X348AB 9
273 #define RTC_TCC77X 10
274 #define RTC_TCC780X 11
275 #define RTC_MR100 12
276 #define RTC_MC13783 13 /* Freescale MC13783 PMIC */
277 #define RTC_S5L8700 14
278 #define RTC_S35390A 15
279 #define RTC_JZ47XX 16 /* Ingenic Jz47XX */
280 #define RTC_NANO2G 17 /* This seems to be a PCF5063x */
281 #define RTC_D2 18 /* Either PCF50606 or PCF50635 */
283 /* USB On-the-go */
284 #define USBOTG_M66591 6591 /* M:Robe 500 */
285 #define USBOTG_ISP1362 1362 /* iriver H300 */
286 #define USBOTG_ISP1583 1583 /* Creative Zen Vision:M */
287 #define USBOTG_M5636 5636 /* iAudio X5 */
288 #define USBOTG_ARC 5020 /* PortalPlayer 502x */
289 #define USBOTG_JZ4740 4740 /* Ingenic Jz4740/Jz4732 */
290 #define USBOTG_AS3525 3525 /* AMS AS3525 */
291 #define USBOTG_AS3525v2 3535 /* AMS AS3525v2 FIXME : same than S3C6400X */
292 #define USBOTG_S3C6400X 6400 /* Samsung S3C6400X, also used in the S5L8701 */
294 /* Multiple cores */
295 #define CPU 0
296 #define COP 1
298 /* now go and pick yours */
299 #if defined(ARCHOS_PLAYER)
300 #include "config/archosplayer.h"
301 #elif defined(ARCHOS_RECORDER)
302 #include "config/archosrecorder.h"
303 #elif defined(ARCHOS_FMRECORDER)
304 #include "config/archosfmrecorder.h"
305 #elif defined(ARCHOS_RECORDERV2)
306 #include "config/archosrecorderv2.h"
307 #elif defined(ARCHOS_ONDIOSP)
308 #include "config/archosondiosp.h"
309 #elif defined(ARCHOS_ONDIOFM)
310 #include "config/archosondiofm.h"
311 #elif defined(ARCHOS_AV300)
312 #include "config/archosav300.h"
313 #elif defined(IRIVER_H100)
314 #include "config/iriverh100.h"
315 #elif defined(IRIVER_H120)
316 #include "config/iriverh120.h"
317 #elif defined(IRIVER_H300)
318 #include "config/iriverh300.h"
319 #elif defined(IAUDIO_X5)
320 #include "config/iaudiox5.h"
321 #elif defined(IAUDIO_M5)
322 #include "config/iaudiom5.h"
323 #elif defined(IAUDIO_M3)
324 #include "config/iaudiom3.h"
325 #elif defined(IPOD_COLOR)
326 #include "config/ipodcolor.h"
327 #elif defined(IPOD_NANO)
328 #include "config/ipodnano1g.h"
329 #elif defined(IPOD_VIDEO)
330 #include "config/ipodvideo.h"
331 #elif defined(IPOD_1G2G)
332 #include "config/ipod1g2g.h"
333 #elif defined(IPOD_3G)
334 #include "config/ipod3g.h"
335 #elif defined(IPOD_4G)
336 #include "config/ipod4g.h"
337 #elif defined(IPOD_NANO2G)
338 #include "config/ipodnano2g.h"
339 #elif defined(IRIVER_IFP7XX)
340 #include "config/iriverifp7xx.h"
341 #elif defined(GIGABEAT_F)
342 #include "config/gigabeatfx.h"
343 #elif defined(GIGABEAT_S)
344 #include "config/gigabeats.h"
345 #elif defined(IPOD_MINI)
346 #include "config/ipodmini1g.h"
347 #elif defined(IPOD_MINI2G)
348 #include "config/ipodmini2g.h"
349 #elif defined(IRIVER_H10)
350 #include "config/iriverh10.h"
351 #elif defined(IRIVER_H10_5GB)
352 #include "config/iriverh10_5gb.h"
353 #elif defined(SANSA_E200)
354 #include "config/sansae200.h"
355 #elif defined(SANSA_C200)
356 #include "config/sansac200.h"
357 #elif defined(SANSA_M200)
358 #include "config/sansam200.h"
359 #elif defined(TATUNG_TPJ1022)
360 #include "config/tatungtpj1022.h"
361 #elif defined(MROBE_100)
362 #include "config/mrobe100.h"
363 #elif defined(MROBE_500)
364 #include "config/mrobe500.h"
365 #elif defined(LOGIK_DAX)
366 #include "config/logikdax.h"
367 #elif defined(IAUDIO_7)
368 #include "config/iaudio7.h"
369 #elif defined(COWON_D2)
370 #include "config/cowond2.h"
371 #elif defined(CREATIVE_ZVM)
372 #include "config/zenvisionm30gb.h"
373 #elif defined(CREATIVE_ZVM60GB)
374 #include "config/zenvisionm60gb.h"
375 #elif defined(CREATIVE_ZV)
376 #include "config/zenvision.h"
377 #elif defined(PHILIPS_SA9200)
378 #include "config/gogearsa9200.h"
379 #elif defined(PHILIPS_HDD1630)
380 #include "config/gogearhdd1630.h"
381 #elif defined(PHILIPS_HDD6330)
382 #include "config/gogearhdd6330.h"
383 #elif defined(SANSA_C100)
384 #include "config/sansac100.h"
385 #elif defined(MEIZU_M6SL)
386 #include "config/meizum6sl.h"
387 #elif defined(MEIZU_M6SP)
388 #include "config/meizum6sp.h"
389 #elif defined(MEIZU_M3)
390 #include "config/meizum3.h"
391 #elif defined(ONDA_VX747) || defined(ONDA_VX747P)
392 #include "config/ondavx747.h"
393 #elif defined(ONDA_VX777)
394 #include "config/ondavx777.h"
395 #elif defined(ONDA_VX767)
396 #include "config/ondavx767.h"
397 #elif defined(SANSA_CLIP)
398 #include "config/sansaclip.h"
399 #elif defined(SANSA_CLIPV2)
400 #include "config/sansaclipv2.h"
401 #elif defined(SANSA_CLIPPLUS)
402 #include "config/sansaclipplus.h"
403 #elif defined(SANSA_E200V2)
404 #include "config/sansae200v2.h"
405 #elif defined(SANSA_M200V4)
406 #include "config/sansam200v4.h"
407 #elif defined(SANSA_FUZE)
408 #include "config/sansafuze.h"
409 #elif defined(SANSA_FUZEV2)
410 #include "config/sansafuzev2.h"
411 #elif defined(SANSA_C200V2)
412 #include "config/sansac200v2.h"
413 #elif defined(SANSA_VIEW)
414 #include "config/sansaview.h"
415 #elif defined(LYRE_PROTO1)
416 #include "config/lyreproto1.h"
417 #elif defined(MINI2440)
418 #include "config/mini2440.h"
419 #elif defined(SAMSUNG_YH820)
420 #include "config/samsungyh820.h"
421 #elif defined(SAMSUNG_YH920)
422 #include "config/samsungyh920.h"
423 #elif defined(SAMSUNG_YH925)
424 #include "config/samsungyh925.h"
425 #elif defined(SAMSUNG_YPS3)
426 #include "config/samsungyps3.h"
427 #elif defined(PBELL_VIBE500)
428 #include "config/vibe500.h"
429 #elif defined(MPIO_HD200)
430 #include "config/mpiohd200.h"
432 #elif defined(APPLICATION)
433 #include "config/application.h"
434 #define CONFIG_CPU 0
435 #define CONFIG_STORAGE 0
436 #else
437 /* no known platform */
438 #endif
440 /* keep this include after the target configs */
441 #ifdef SIMULATOR
442 #include "config/sim.h"
443 #endif
445 /* setup basic macros from capability masks */
446 #include "config_caps.h"
448 /* setup CPU-specific defines */
450 /* define for all cpus from SH family */
451 #if (CONFIG_CPU == SH7034)
452 #define CPU_SH
453 #endif
455 /* define for all cpus from coldfire family */
456 #if (CONFIG_CPU == MCF5249) || (CONFIG_CPU == MCF5250)
457 #define CPU_COLDFIRE
458 #endif
460 /* define for all cpus from PP family */
461 #if (CONFIG_CPU == PP5002)
462 #define CPU_PP
463 #elif (CONFIG_CPU == PP5020) || (CONFIG_CPU == PP5022) \
464 || (CONFIG_CPU == PP5024) || (CONFIG_CPU == PP6100)
465 #define CPU_PP
466 #define CPU_PP502x
467 #endif
469 /* define for all cpus from S5L870X family */
470 #if (CONFIG_CPU == S5L8700) || (CONFIG_CPU == S5L8701)
471 #define CPU_S5L870X
472 #endif
474 /* define for all cpus from TCC77X family */
475 #if (CONFIG_CPU == TCC771L) || (CONFIG_CPU == TCC773L) || (CONFIG_CPU == TCC770)
476 #define CPU_TCC77X
477 #endif
479 /* define for all cpus from TCC780 family */
480 #if (CONFIG_CPU == TCC7801)
481 #define CPU_TCC780X
482 #endif
484 /* define for all cpus from ARM7TDMI family (for specific optimisations) */
485 #if defined(CPU_PP) || (CONFIG_CPU == PNX0101) || (CONFIG_CPU == DSC25)
486 #define CPU_ARM7TDMI
487 #endif
489 /* define for all cpus from ARM family */
490 #if (CONFIG_CPU == IMX31L)
491 #define CPU_ARM
492 #define ARM_ARCH 6 /* ARMv6 */
494 #elif defined(CPU_TCC77X) || defined(CPU_TCC780X) || (CONFIG_CPU == DM320) \
495 || (CONFIG_CPU == AT91SAM9260) || (CONFIG_CPU == AS3525v2)
496 #define CPU_ARM
497 #define ARM_ARCH 5 /* ARMv5 */
499 #elif defined(CPU_PP) || (CONFIG_CPU == PNX0101) || (CONFIG_CPU == S3C2440) \
500 || (CONFIG_CPU == DSC25) || defined(CPU_S5L870X) || (CONFIG_CPU == AS3525)
501 #define CPU_ARM
502 #define ARM_ARCH 4 /* ARMv4 */
503 #endif
505 #if (CONFIG_CPU == JZ4732)
506 #define CPU_MIPS 32
507 #endif
509 /* now set any CONFIG_ defines correctly if they are not used,
510 No need to do this on CONFIG_'s which are compulsory (e.g CONFIG_CODEC ) */
512 #if !defined(CONFIG_BACKLIGHT_FADING)
513 #define CONFIG_BACKLIGHT_FADING BACKLIGHT_NO_FADING
514 #endif
516 #ifndef CONFIG_PLATFORM
517 #define CONFIG_PLATFORM PLATFORM_NATIVE
518 #endif
520 #ifndef CONFIG_TUNER
521 #define CONFIG_TUNER 0
522 #endif
524 #ifndef CONFIG_USBOTG
525 #define CONFIG_USBOTG 0
526 #endif
528 #ifndef CONFIG_LED
529 #define CONFIG_LED LED_VIRTUAL
530 #endif
532 #ifndef CONFIG_CHARGING
533 #define CONFIG_CHARGING 0
534 #endif
536 #ifndef CONFIG_RTC
537 #define CONFIG_RTC 0
538 #endif
540 #ifndef CONFIG_ORIENTATION
541 #if LCD_HEIGHT > LCD_WIDTH
542 #define CONFIG_ORIENTATION SCREEN_PORTRAIT
543 #elif LCD_HEIGHT < LCD_WIDTH
544 #define CONFIG_ORIENTATION SCREEN_LANDSCAPE
545 #else
546 #define CONFIG_ORIENTATION SCREEN_SQUARE
547 #endif
548 #endif
550 /* Pixel aspect ratio is defined in terms of a multiplier for pixel width and
551 * height, and is set to 1:1 if the target does not set a value
553 #ifndef LCD_PIXEL_ASPECT_HEIGHT
554 #define LCD_PIXEL_ASPECT_HEIGHT 1
555 #endif
556 #ifndef LCD_PIXEL_ASPECT_WIDTH
557 #define LCD_PIXEL_ASPECT_WIDTH 1
558 #endif
560 /* Used for split displays (Sansa Clip). Set to 0 otherwise */
561 #ifndef LCD_SPLIT_LINES
562 #define LCD_SPLIT_LINES 0
563 #endif
565 /* Simulator LCD dimensions. Set to standard dimensions if undefined */
566 #ifndef SIM_LCD_WIDTH
567 #define SIM_LCD_WIDTH LCD_WIDTH
568 #endif
569 #ifndef SIM_LCD_HEIGHT
570 #define SIM_LCD_HEIGHT (LCD_HEIGHT + LCD_SPLIT_LINES)
571 #endif
573 #ifdef HAVE_REMOTE_LCD
574 #ifndef SIM_REMOTE_WIDTH
575 #define SIM_REMOTE_WIDTH LCD_REMOTE_WIDTH
576 #endif
577 #ifndef SIM_REMOTE_HEIGHT
578 #define SIM_REMOTE_HEIGHT LCD_REMOTE_HEIGHT
579 #endif
580 #endif /* HAVE_REMOTE_LCD */
582 /* define this in the target config.h to use a different size */
583 #ifndef CONFIG_DEFAULT_ICON_HEIGHT
584 #define CONFIG_DEFAULT_ICON_HEIGHT 8
585 #endif
586 #ifndef CONFIG_DEFAULT_ICON_WIDTH
587 #define CONFIG_DEFAULT_ICON_WIDTH 6
588 #endif
589 #ifndef CONFIG_REMOTE_DEFAULT_ICON_HEIGHT
590 #define CONFIG_REMOTE_DEFAULT_ICON_HEIGHT 8
591 #endif
592 #ifndef CONFIG_REMOTE_DEFAULT_ICON_WIDTH
593 #define CONFIG_REMOTE_DEFAULT_ICON_WIDTH 6
594 #endif
596 #if (CONFIG_TUNER & (CONFIG_TUNER - 1)) != 0
597 /* Multiple possible tuners */
598 #define CONFIG_TUNER_MULTI
599 #endif
601 /* deactivate fading in bootloader */
602 #if defined(BOOTLOADER)
603 #undef CONFIG_BACKLIGHT_FADING
604 #define CONFIG_BACKLIGHT_FADING BACKLIGHT_NO_FADING
605 #endif
607 /* determine which setting/manual text to use */
608 #if (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_PWM)
610 /* possibly overridden in target config */
611 #if !defined(HAVE_BACKLIGHT_FADING_BOOL_SETTING) \
612 && !defined(HAVE_BACKLIGHT_FADING_INT_SETTING)
613 #define HAVE_BACKLIGHT_FADING_INT_SETTING
614 #endif
616 #elif (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_SETTING) \
617 || (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_HW_REG) \
618 || (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_TARGET)
620 /* possibly overridden in target config */
621 #if !defined(HAVE_BACKLIGHT_FADING_BOOL_SETTING) \
622 && !defined(HAVE_BACKLIGHT_FADING_INT_SETTING)
623 #define HAVE_BACKLIGHT_FADING_BOOL_SETTING
624 #endif
626 #endif /* CONFIG_BACKLIGHT_FADING */
628 /* Storage related config handling */
630 #if (CONFIG_STORAGE & (CONFIG_STORAGE - 1)) != 0
631 /* Multiple storage drivers */
632 #define CONFIG_STORAGE_MULTI
633 #endif
635 /* Explicit HAVE_MULTIVOLUME in the config file. Allow the maximum number */
636 #ifdef HAVE_MULTIVOLUME
637 #define NUM_VOLUMES_PER_DRIVE 4
638 #else
639 #define NUM_VOLUMES_PER_DRIVE 1
640 #endif
641 #if defined(CONFIG_STORAGE_MULTI) && !defined(HAVE_MULTIDRIVE)
642 #define HAVE_MULTIDRIVE
643 #endif
645 #if defined(HAVE_MULTIDRIVE) && !defined(HAVE_MULTIVOLUME)
646 #define HAVE_MULTIVOLUME
647 #endif
649 #if defined(HAVE_MULTIDRIVE) && !defined(NUM_DRIVES)
650 #error HAVE_MULTIDRIVE needs to have an explicit NUM_DRIVES
651 #endif
653 #ifndef NUM_DRIVES
654 #define NUM_DRIVES 1
655 #endif
657 #define NUM_VOLUMES (NUM_DRIVES * NUM_VOLUMES_PER_DRIVE)
659 #if defined(BOOTLOADER) && defined(HAVE_ADJUSTABLE_CPU_FREQ)
660 /* Bootloaders don't use CPU frequency adjustment */
661 #undef HAVE_ADJUSTABLE_CPU_FREQ
662 #endif
664 /* Enable the directory cache and tagcache in RAM if we have
665 * plenty of RAM. Both features can be enabled independently. */
666 #if (MEMORYSIZE >= 8) && !defined(BOOTLOADER) && !defined(__PCTOOL__) \
667 && !defined(APPLICATION)
668 #define HAVE_DIRCACHE
669 #ifdef HAVE_TAGCACHE
670 #define HAVE_TC_RAMCACHE
671 #endif
672 #endif
674 #if defined(HAVE_TAGCACHE) && defined(HAVE_LCD_BITMAP)
675 #define HAVE_PICTUREFLOW_INTEGRATION
676 #endif
678 /* Add one HAVE_ define for all mas35xx targets */
679 #if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3507D) || (CONFIG_CODEC == MAS3539F)
680 #define HAVE_MAS35XX
681 #endif
683 #if (CONFIG_CODEC == SWCODEC)
684 #ifdef BOOTLOADER
686 #if CONFIG_CPU == IMX31L
687 /* Priority in bootloader is wanted */
688 #define HAVE_PRIORITY_SCHEDULING
689 #define USB_STATUS_BY_EVENT
690 #define USB_DETECT_BY_DRV
691 #endif
693 #else /* !BOOTLOADER */
695 #define HAVE_EXTENDED_MESSAGING_AND_NAME
696 #define HAVE_WAKEUP_EXT_CB
699 #if (CONFIG_PLATFORM & PLATFORM_ANDROID)
700 #define HAVE_PRIORITY_SCHEDULING
701 #endif
703 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
704 #define HAVE_PRIORITY_SCHEDULING
705 #define HAVE_SCHEDULER_BOOSTCTRL
706 #endif /* PLATFORM_NATIVE */
709 #define HAVE_SEMAPHORE_OBJECTS
711 #if defined(HAVE_USBSTACK) && CONFIG_USBOTG == USBOTG_ARC
712 #define USB_STATUS_BY_EVENT
713 #define USB_DETECT_BY_DRV
714 #if CONFIG_CPU != IMX31L
715 #define INCLUDE_TIMEOUT_API
716 #endif
717 #endif /* HAVE_USBSTACK */
720 #endif /* BOOTLOADER */
722 #if defined(HAVE_USBSTACK) || (CONFIG_CPU == JZ4732) \
723 || (CONFIG_CPU == AS3525) || (CONFIG_CPU == AS3525v2) \
724 || defined(CPU_S5L870X) || (CONFIG_CPU == S3C2440) \
725 || defined(APPLICATION)
726 #define HAVE_WAKEUP_OBJECTS
727 #endif
729 /*include support for crossfading - requires significant PCM buffer space*/
730 #if MEMORYSIZE > 2
731 #define HAVE_CROSSFADE
732 #endif
734 #endif /* (CONFIG_CODEC == SWCODEC) */
736 /* Determine if accesses should be strictly long aligned. */
737 #if (CONFIG_CPU == SH7034) || defined(CPU_ARM) || defined(CPU_MIPS)
738 #define ROCKBOX_STRICT_ALIGN 1
739 #endif
741 #if defined(CPU_ARM) && defined(__ASSEMBLER__)
742 /* ARMv4T doesn't switch the T bit when popping pc directly, we must use BX */
743 .macro ldmpc cond="", order="ia", regs
744 #if ARM_ARCH == 4 && defined(USE_THUMB)
745 ldm\cond\order sp!, { \regs, lr }
746 bx\cond lr
747 #else
748 ldm\cond\order sp!, { \regs, pc }
749 #endif
750 .endm
751 .macro ldrpc cond=""
752 #if ARM_ARCH == 4 && defined(USE_THUMB)
753 ldr\cond lr, [sp], #4
754 bx\cond lr
755 #else
756 ldr\cond pc, [sp], #4
757 #endif
758 .endm
759 #endif
761 #ifndef CODEC_SIZE
762 #define CODEC_SIZE 0
763 #endif
765 /* This attribute can be used to ensure that certain symbols are never profiled
766 * which can be important as profiling a function de-inlines it */
767 #ifdef RB_PROFILE
768 #define NO_PROF_ATTR __attribute__ ((no_instrument_function))
769 #else
770 #define NO_PROF_ATTR
771 #endif
773 /* IRAM usage */
774 #if (CONFIG_PLATFORM & PLATFORM_NATIVE) && /* Not for hosted environments */ \
775 (((CONFIG_CPU == SH7034) && !defined(PLUGIN)) || /* SH1 archos: core only */ \
776 defined(CPU_COLDFIRE) || /* Coldfire: core, plugins, codecs */ \
777 defined(CPU_PP) || /* PortalPlayer: core, plugins, codecs */ \
778 (CONFIG_CPU == AS3525 && MEMORYSIZE > 2 && !defined(BOOTLOADER)) || /* AS3525 +2MB: core, plugins, codecs */ \
779 (CONFIG_CPU == AS3525 && MEMORYSIZE <= 2 && !defined(PLUGIN) && !defined(CODEC) && !defined(BOOTLOADER)) || /* AS3525 2MB: core only */ \
780 (CONFIG_CPU == AS3525v2 && !defined(PLUGIN) && !defined(CODEC) && !defined(BOOTLOADER)) || /* AS3525v2: core only */ \
781 (CONFIG_CPU == PNX0101) || \
782 (CONFIG_CPU == TCC7801) || \
783 defined(CPU_S5L870X)) || /* Samsung S5L8700: core, plugins, codecs */ \
784 (CONFIG_CPU == JZ4732 && !defined(PLUGIN) && !defined(CODEC)) /* Jz4740: core only */
785 #define ICODE_ATTR __attribute__ ((section(".icode")))
786 #define ICONST_ATTR __attribute__ ((section(".irodata")))
787 #define IDATA_ATTR __attribute__ ((section(".idata")))
788 #define IBSS_ATTR __attribute__ ((section(".ibss")))
789 #define USE_IRAM
790 #if CONFIG_CPU != SH7034 && (CONFIG_CPU != AS3525 || MEMORYSIZE > 2) \
791 && CONFIG_CPU != JZ4732 && CONFIG_CPU != AS3525v2
792 #define PLUGIN_USE_IRAM
793 #endif
794 #if defined(CPU_ARM) && !defined(__ARM_EABI__)
795 /* GCC quirk workaround: arm-elf-gcc treats static functions as short_call
796 * when not compiling with -ffunction-sections, even when the function has
797 * a section attribute.
798 * This is fixed with eabi since all calls are short ones by default */
799 #define STATICIRAM
800 #else
801 #define STATICIRAM static
802 #endif
803 #else
804 #define ICODE_ATTR
805 #define ICONST_ATTR
806 #define IDATA_ATTR
807 #define IBSS_ATTR
808 #define STATICIRAM static
809 #endif
811 #if (defined(CPU_PP) || (CONFIG_CPU == AS3525) || (CONFIG_CPU == AS3525v2) || \
812 (CONFIG_CPU == IMX31L)) \
813 && (CONFIG_PLATFORM & PLATFORM_NATIVE) && !defined(BOOTLOADER)
814 /* Functions that have INIT_ATTR attached are NOT guaranteed to survive after
815 * root_menu() has been called. Their code may be overwritten by other data or
816 * code in order to save RAM, and references to them might point into
817 * zombie area.
819 * It is critical that you make sure these functions are only called before
820 * the final call to root_menu() (see apps/main.c) is called (i.e. basically
821 * only while main() runs), otherwise things may go wild,
822 * from crashes to freezes to exploding daps.
824 #define INIT_ATTR __attribute__ ((section(".init")))
825 #define HAVE_INIT_ATTR
826 #else
827 #define INIT_ATTR
828 #endif
830 #if (CONFIG_PLATFORM & PLATFORM_HOSTED) && defined(__APPLE__)
831 #define DATA_ATTR __attribute__ ((section("__DATA, .data")))
832 #else
833 #define DATA_ATTR __attribute__ ((section(".data")))
834 #endif
836 #ifndef IRAM_LCDFRAMEBUFFER
837 /* if the LCD framebuffer has not been moved to IRAM, define it empty here */
838 #define IRAM_LCDFRAMEBUFFER
839 #endif
841 /* Change this if you want to build a single-core firmware for a multicore
842 * target for debugging */
843 #if defined(BOOTLOADER) || (CONFIG_CPU == PP6100)
844 #define FORCE_SINGLE_CORE
845 #endif
847 #if defined(CPU_PP)
848 #define IDLE_STACK_SIZE 0x80
849 #define IDLE_STACK_WORDS 0x20
851 /* Attributes to place data in uncached DRAM */
852 /* These are useful beyond dual-core and ultimately beyond PP since they may
853 * be used for DMA buffers and such without cache maintenence calls. */
854 #define NOCACHEBSS_ATTR __attribute__((section(".ncbss"),nocommon))
855 #define NOCACHEDATA_ATTR __attribute__((section(".ncdata"),nocommon))
857 #if !defined(FORCE_SINGLE_CORE)
859 #define NUM_CORES 2
860 #define HAVE_CORELOCK_OBJECT
861 #define CURRENT_CORE current_core()
862 /* Attributes for core-shared data in DRAM where IRAM is better used for other
863 * purposes. */
864 #define SHAREDBSS_ATTR NOCACHEBSS_ATTR
865 #define SHAREDDATA_ATTR NOCACHEDATA_ATTR
867 #define IF_COP(...) __VA_ARGS__
868 #define IF_COP_VOID(...) __VA_ARGS__
869 #define IF_COP_CORE(core) core
871 #endif /* !defined(FORCE_SINGLE_CORE) */
873 #endif /* CPU_PP */
875 #if CONFIG_CPU == IMX31L
876 #define NOCACHEBSS_ATTR __attribute__((section(".ncbss"),nocommon))
877 #define NOCACHEDATA_ATTR __attribute__((section(".ncdata"),nocommon))
878 #endif
880 #ifndef NUM_CORES
881 /* Default to single core */
882 #define NUM_CORES 1
883 #define CURRENT_CORE CPU
884 /* Attributes for core-shared data in DRAM - no caching considerations */
885 #define SHAREDBSS_ATTR
886 #define SHAREDDATA_ATTR
887 #ifndef NOCACHEBSS_ATTR
888 #define NOCACHEBSS_ATTR
889 #define NOCACHEDATA_ATTR
890 #endif
892 #define IF_COP(...)
893 #define IF_COP_VOID(...) void
894 #define IF_COP_CORE(core) CURRENT_CORE
896 #endif /* NUM_CORES */
898 #ifdef HAVE_HEADPHONE_DETECTION
899 /* Timeout objects required if headphone detection is enabled */
900 #ifndef INCLUDE_TIMEOUT_API
901 #define INCLUDE_TIMEOUT_API
902 #endif
903 #endif /* HAVE_HEADPHONE_DETECTION */
905 #ifdef HAVE_TOUCHSCREEN
906 /* Timeout objects required for kinetic list scrolling */
907 #undef INCLUDE_TIMEOUT_API
908 #define INCLUDE_TIMEOUT_API
909 #endif /* HAVE_TOUCHSCREEN */
911 #if defined(HAVE_USB_CHARGING_ENABLE) && defined(HAVE_USBSTACK)
912 /* USB charging support in the USB stack requires timeout objects */
913 #ifndef INCLUDE_TIMEOUT_API
914 #define INCLUDE_TIMEOUT_API
915 #endif
916 #endif /* HAVE_USB_CHARGING_ENABLE && HAVE_USBSTACK */
918 #if defined(HAVE_USBSTACK) || (CONFIG_STORAGE & STORAGE_NAND)
919 #define STORAGE_GET_INFO
920 #endif
922 #ifdef CPU_MIPS
923 #include <stdbool.h> /* MIPS GCC fix? */
924 #endif
926 #if defined(HAVE_USBSTACK)
927 /* Define the implemented USB transport classes */
928 #if CONFIG_USBOTG == USBOTG_ISP1583
929 #define USB_HAS_BULK
930 #elif (CONFIG_USBOTG == USBOTG_ARC) || \
931 (CONFIG_USBOTG == USBOTG_JZ4740) || \
932 (CONFIG_USBOTG == USBOTG_M66591) || \
933 (CONFIG_USBOTG == USBOTG_AS3525)
934 #define USB_HAS_BULK
935 #define USB_HAS_INTERRUPT
936 #elif defined(CPU_TCC780X) || defined(CPU_TCC77X)
937 #define USB_HAS_BULK
938 #elif CONFIG_USBOTG == USBOTG_S3C6400X || CONFIG_USBOTG == USBOTG_AS3525v2
939 #define USB_HAS_BULK
940 //#define USB_HAS_INTERRUPT -- seems to be broken
941 #endif /* CONFIG_USBOTG */
943 #if (CONFIG_USBOTG == USBOTG_ARC) || \
944 (CONFIG_USBOTG == USBOTG_AS3525)
945 #define USB_HAS_ISOCHRONOUS
946 #endif
948 /* define the class drivers to enable */
949 #ifdef BOOTLOADER
951 /* enable usb storage for targets that do bootloader usb */
952 #if (defined(TOSHIBA_GIGABEAT_S) || \
953 (defined(CREATIVE_ZVx) || \
954 defined(CPU_TCC77X) || defined(CPU_TCC780X))) || \
955 (CONFIG_USBOTG == USBOTG_JZ4740) || defined(IPOD_NANO2G) || \
956 CONFIG_USBOTG == USBOTG_AS3525
957 #define USB_ENABLE_STORAGE
958 #endif
960 #else /* BOOTLOADER */
962 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
963 #ifdef USB_HAS_BULK
964 //#define USB_ENABLE_SERIAL
965 #ifdef USE_ROCKBOX_USB
966 #define USB_ENABLE_STORAGE
967 #endif /* USE_ROCKBOX_USB */
968 #endif /* USB_HAS_BULK */
970 #ifdef USB_HAS_INTERRUPT
971 #define USB_ENABLE_HID
972 #else
973 #define USB_ENABLE_CHARGING_ONLY
974 #endif
975 #endif
977 #endif /* BOOTLOADER */
979 #endif /* HAVE_USBSTACK */
981 /* This attribute can be used to enable to detection of plugin file handles leaks.
982 * When enabled, the plugin core will monitor open/close/creat and when the plugin exits
983 * will display an error message if the plugin leaked some file handles */
984 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
985 #define HAVE_PLUGIN_CHECK_OPEN_CLOSE
986 #endif
988 #if defined(HAVE_DIRCACHE) && (CONFIG_PLATFORM & PLATFORM_NATIVE)
989 #define HAVE_IO_PRIORITY
990 #endif
992 #endif /* __CONFIG_H__ */