Really fix bootloaders now.
[kugel-rb.git] / firmware / export / config.h
blobef72784ff7db45013a9127eb643fceeb6b995e86
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 */
45 /* CONFIG_CODEC */
46 #define MAS3587F 3587
47 #define MAS3507D 3507
48 #define MAS3539F 3539
49 #define SWCODEC 1 /* if codec is done by SW */
51 /* CONFIG_CPU */
52 #define SH7034 7034
53 #define MCF5249 5249
54 #define MCF5250 5250
55 #define PP5002 5002
56 #define PP5020 5020
57 #define PP5022 5022
58 #define PP5024 5024
59 #define PP6100 6100
60 #define PNX0101 101
61 #define S3C2440 2440
62 #define DSC25 25
63 #define DM320 320
64 #define IMX31L 31
65 #define TCC770 770
66 #define TCC771L 771
67 #define TCC773L 773
68 #define TCC7801 7801
69 #define S5L8700 8700
70 #define S5L8701 8701
71 #define JZ4732 4732
72 #define AS3525 3525
73 #define AT91SAM9260 9260
74 #define AS3525v2 35252
76 /* CONFIG_KEYPAD */
77 #define PLAYER_PAD 1
78 #define RECORDER_PAD 2
79 #define ONDIO_PAD 3
80 #define IRIVER_H100_PAD 4
81 #define IRIVER_H300_PAD 5
82 #define IAUDIO_X5M5_PAD 6
83 #define IPOD_4G_PAD 7
84 #define IPOD_3G_PAD 8
85 #define IPOD_1G2G_PAD 9
86 #define IRIVER_IFP7XX_PAD 10
87 #define GIGABEAT_PAD 11
88 #define IRIVER_H10_PAD 12
89 #define SANSA_E200_PAD 13
90 #define SANSA_C200_PAD 14
91 #define TATUNG_TPJ1022_PAD 15
92 #define ARCHOS_AV300_PAD 16
93 #define MROBE100_PAD 17
94 #define MROBE500_PAD 18
95 #define GIGABEAT_S_PAD 19
96 #define LOGIK_DAX_PAD 20
97 #define IAUDIO67_PAD 21
98 #define COWON_D2_PAD 22
99 #define IAUDIO_M3_PAD 23
100 #define CREATIVEZVM_PAD 24
101 #define SANSA_M200_PAD 25
102 #define CREATIVEZV_PAD 26
103 #define PHILIPS_SA9200_PAD 27
104 #define SANSA_C100_PAD 28
105 #define PHILIPS_HDD1630_PAD 29
106 #define MEIZU_M6SL_PAD 30
107 #define ONDAVX747_PAD 31
108 #define ONDAVX767_PAD 32
109 #define MEIZU_M6SP_PAD 33
110 #define MEIZU_M3_PAD 34
111 #define SANSA_CLIP_PAD 35
112 #define SANSA_FUZE_PAD 36
113 #define LYRE_PROTO1_PAD 37
114 #define SAMSUNG_YH_PAD 38
115 #define ONDAVX777_PAD 39
116 #define SAMSUNG_YPS3_PAD 40
117 #define MINI2440_PAD 41
118 #define PHILIPS_HDD6330_PAD 42
119 #define PBELL_VIBE500_PAD 43
121 /* CONFIG_REMOTE_KEYPAD */
122 #define H100_REMOTE 1
123 #define H300_REMOTE 2
124 #define X5_REMOTE 3
125 #define MROBE_REMOTE 4
127 /* CONFIG_BACKLIGHT_FADING */
128 /* No fading capabilities at all (yet) */
129 #define BACKLIGHT_NO_FADING 0x0
130 /* Backlight fading is controlled using a hardware PWM mechanism */
131 #define BACKLIGHT_FADING_PWM 0x1
132 /* Backlight is controlled using a software implementation
133 * BACKLIGHT_FADING_SW_SETTING means that backlight is turned on by only setting
134 * the brightness (i.e. no real difference between backlight_on and
135 * backlight_set_brightness)
136 * BACKLIGHT_FADING_SW_HW_REG means that backlight brightness is restored
137 * "in hardware", from a hardware register upon backlight_on
138 * Both types need to have minor adjustments in the software fading code */
139 #define BACKLIGHT_FADING_SW_SETTING 0x2
140 #define BACKLIGHT_FADING_SW_HW_REG 0x4
141 /* Backlight fading is done in a target specific way
142 * for example in hardware, but not controllable*/
143 #define BACKLIGHT_FADING_TARGET 0x8
145 /* CONFIG_CHARGING */
147 /* Generic types */
148 #define CHARGING_SIMPLE 1 /* Simple, hardware controlled charging
149 * (CPU cannot read charger state but may read
150 * when power is plugged-in). */
151 #define CHARGING_MONITOR 2 /* Hardware controlled charging with monitoring
152 * (CPU is able to read HW charging state and
153 * when power is plugged-in). */
155 /* Mostly target-specific code in the /target tree */
156 #define CHARGING_TARGET 3 /* Any algorithm - usually software controlled
157 * charging or specific programming is required to
158 * use the charging hardware. */
160 /* CONFIG_LCD */
161 #define LCD_SSD1815 1 /* as used by Archos Recorders and Ondios */
162 #define LCD_SSD1801 2 /* as used by Archos Player/Studio */
163 #define LCD_S1D15E06 3 /* as used by iRiver H100 series */
164 #define LCD_H300 4 /* as used by iRiver H300 series, exact model name is
165 unknown at the time of this writing */
166 #define LCD_X5 5 /* as used by iAudio X5 series, exact model name is
167 unknown at the time of this writing */
168 #define LCD_IPODCOLOR 6 /* as used by iPod Color/Photo */
169 #define LCD_IPODNANO 7 /* as used by iPod Nano */
170 #define LCD_IPODVIDEO 8 /* as used by iPod Video */
171 #define LCD_IPOD2BPP 9 /* as used by all fullsize greyscale iPods */
172 #define LCD_IPODMINI 10 /* as used by iPod Mini g1/g2 */
173 #define LCD_IFP7XX 11 /* as used by iRiver iFP 7xx/8xx */
174 #define LCD_GIGABEAT 12
175 #define LCD_H10_20GB 13 /* as used by iriver H10 20Gb */
176 #define LCD_H10_5GB 14 /* as used by iriver H10 5Gb */
177 #define LCD_TPJ1022 15 /* as used by Tatung Elio TPJ-1022 */
178 #define LCD_DSC25 16 /* as used by Archos AV300 */
179 #define LCD_C200 17 /* as used by Sandisk Sansa c200 */
180 #define LCD_MROBE500 18 /* as used by Olympus M:Robe 500i */
181 #define LCD_MROBE100 19 /* as used by Olympus M:Robe 100 */
182 #define LCD_LOGIKDAX 20 /* as used by Logik DAX - SSD1815 */
183 #define LCD_IAUDIO67 21 /* as used by iAudio 6/7 - unknown */
184 #define LCD_CREATIVEZVM 22 /* as used by Creative Zen Vision:M */
185 #define LCD_TL0350A 23 /* as used by the iAudio M3 remote, treated as main LCD */
186 #define LCD_COWOND2 24 /* as used by Cowon D2 - LTV250QV, TCC7801 driver */
187 #define LCD_SA9200 25 /* as used by the Philips SA9200 */
188 #define LCD_S6B33B2 26 /* as used by the Sansa c100 */
189 #define LCD_HDD1630 27 /* as used by the Philips HDD1630 */
190 #define LCD_MEIZUM6 28 /* as used by the Meizu M6SP and M6SL (various models) */
191 #define LCD_ONDAVX747 29 /* as used by the Onda VX747 */
192 #define LCD_ONDAVX767 30 /* as used by the Onda VX767 */
193 #define LCD_SSD1303 31 /* as used by the Sansa Clip */
194 #define LCD_FUZE 32 /* as used by the Sansa Fuze */
195 #define LCD_LYRE_PROTO1 33 /* as used by the Lyre prototype 1 */
196 #define LCD_YH925 34 /* as used by Samsung YH-925 (similar to the H10 20GB) */
197 #define LCD_VIEW 35 /* as used by the Sansa View */
198 #define LCD_NANO2G 36 /* as used by the iPod Nano 2nd Generation */
199 #define LCD_MINI2440 37 /* as used by the Mini2440 */
200 #define LCD_HDD6330 38 /* as used by the Philips HDD6330 */
201 #define LCD_VIBE500 39 /* as used by the Packard Bell Vibe 500 */
203 /* LCD_PIXELFORMAT */
204 #define HORIZONTAL_PACKING 1
205 #define VERTICAL_PACKING 2
206 #define HORIZONTAL_INTERLEAVED 3
207 #define VERTICAL_INTERLEAVED 4
208 #define RGB565 565
209 #define RGB565SWAPPED 3553
211 /* LCD_STRIDEFORMAT */
212 #define VERTICAL_STRIDE 1
213 #define HORIZONTAL_STRIDE 2
215 /* CONFIG_ORIENTATION */
216 #define SCREEN_PORTRAIT 0
217 #define SCREEN_LANDSCAPE 1
218 #define SCREEN_SQUARE 2
220 /* CONFIG_I2C */
221 #define I2C_NONE 0 /* For targets that do not use I2C - as the
222 Lyre prototype 1 */
223 #define I2C_PLAYREC 1 /* Archos Player/Recorder style */
224 #define I2C_ONDIO 2 /* Ondio style */
225 #define I2C_COLDFIRE 3 /* Coldfire style */
226 #define I2C_PP5002 4 /* PP5002 style */
227 #define I2C_PP5020 5 /* PP5020 style */
228 #define I2C_PNX0101 6 /* PNX0101 style */
229 #define I2C_S3C2440 7
230 #define I2C_PP5024 8 /* PP5024 style */
231 #define I2C_IMX31L 9
232 #define I2C_TCC77X 10
233 #define I2C_TCC780X 11
234 #define I2C_DM320 12 /* DM320 style */
235 #define I2C_S5L8700 13
236 #define I2C_JZ47XX 14 /* Ingenic Jz47XX style */
237 #define I2C_AS3525 15
239 /* CONFIG_LED */
240 #define LED_REAL 1 /* SW controlled LED (Archos recorders, player) */
241 #define LED_VIRTUAL 2 /* Virtual LED (icon) (Archos Ondio) */
242 /* else HW controlled LED (iRiver H1x0) */
244 /* CONFIG_NAND */
245 #define NAND_IFP7XX 1
246 #define NAND_TCC 2
247 #define NAND_SAMSUNG 3
248 #define NAND_CC 4 /* ChinaChip */
250 /* CONFIG_RTC */
251 #define RTC_M41ST84W 1 /* Archos Recorder */
252 #define RTC_PCF50605 2 /* iPod 3G, 4G & Mini */
253 #define RTC_PCF50606 3 /* iriver H300 */
254 #define RTC_S3C2440 4
255 #define RTC_E8564 5 /* iriver H10 */
256 #define RTC_AS3514 6 /* Sandisk Sansa series */
257 #define RTC_DS1339_DS3231 7 /* h1x0 RTC mod */
258 #define RTC_IMX31L 8
259 #define RTC_RX5X348AB 9
260 #define RTC_TCC77X 10
261 #define RTC_TCC780X 11
262 #define RTC_MR100 12
263 #define RTC_MC13783 13 /* Freescale MC13783 PMIC */
264 #define RTC_S5L8700 14
265 #define RTC_S35390A 15
266 #define RTC_JZ47XX 16 /* Ingenic Jz47XX */
267 #define RTC_NANO2G 17 /* This seems to be a PCF5063x */
268 #define RTC_D2 18 /* Either PCF50606 or PCF50635 */
270 /* USB On-the-go */
271 #define USBOTG_M66591 6591 /* M:Robe 500 */
272 #define USBOTG_ISP1362 1362 /* iriver H300 */
273 #define USBOTG_ISP1583 1583 /* Creative Zen Vision:M */
274 #define USBOTG_M5636 5636 /* iAudio X5 */
275 #define USBOTG_ARC 5020 /* PortalPlayer 502x */
276 #define USBOTG_JZ4740 4740 /* Ingenic Jz4740/Jz4732 */
277 #define USBOTG_AS3525 3525 /* AMS AS3525 */
278 #define USBOTG_S3C6400X 6400 /* Samsung S3C6400X, also used in the S5L8701 */
280 /* Multiple cores */
281 #define CPU 0
282 #define COP 1
284 /* now go and pick yours */
285 #if defined(ARCHOS_PLAYER)
286 #include "config/archosplayer.h"
287 #elif defined(ARCHOS_RECORDER)
288 #include "config/archosrecorder.h"
289 #elif defined(ARCHOS_FMRECORDER)
290 #include "config/archosfmrecorder.h"
291 #elif defined(ARCHOS_RECORDERV2)
292 #include "config/archosrecorderv2.h"
293 #elif defined(ARCHOS_ONDIOSP)
294 #include "config/archosondiosp.h"
295 #elif defined(ARCHOS_ONDIOFM)
296 #include "config/archosondiofm.h"
297 #elif defined(ARCHOS_AV300)
298 #include "config/archosav300.h"
299 #elif defined(IRIVER_H100)
300 #include "config/iriverh100.h"
301 #elif defined(IRIVER_H120)
302 #include "config/iriverh120.h"
303 #elif defined(IRIVER_H300)
304 #include "config/iriverh300.h"
305 #elif defined(IAUDIO_X5)
306 #include "config/iaudiox5.h"
307 #elif defined(IAUDIO_M5)
308 #include "config/iaudiom5.h"
309 #elif defined(IAUDIO_M3)
310 #include "config/iaudiom3.h"
311 #elif defined(IPOD_COLOR)
312 #include "config/ipodcolor.h"
313 #elif defined(IPOD_NANO)
314 #include "config/ipodnano1g.h"
315 #elif defined(IPOD_VIDEO)
316 #include "config/ipodvideo.h"
317 #elif defined(IPOD_1G2G)
318 #include "config/ipod1g2g.h"
319 #elif defined(IPOD_3G)
320 #include "config/ipod3g.h"
321 #elif defined(IPOD_4G)
322 #include "config/ipod4g.h"
323 #elif defined(IPOD_NANO2G)
324 #include "config/ipodnano2g.h"
325 #elif defined(IRIVER_IFP7XX)
326 #include "config/iriverifp7xx.h"
327 #elif defined(GIGABEAT_F)
328 #include "config/gigabeatfx.h"
329 #elif defined(GIGABEAT_S)
330 #include "config/gigabeats.h"
331 #elif defined(IPOD_MINI)
332 #include "config/ipodmini1g.h"
333 #elif defined(IPOD_MINI2G)
334 #include "config/ipodmini2g.h"
335 #elif defined(IRIVER_H10)
336 #include "config/iriverh10.h"
337 #elif defined(IRIVER_H10_5GB)
338 #include "config/iriverh10_5gb.h"
339 #elif defined(SANSA_E200)
340 #include "config/sansae200.h"
341 #elif defined(SANSA_C200)
342 #include "config/sansac200.h"
343 #elif defined(SANSA_M200)
344 #include "config/sansam200.h"
345 #elif defined(TATUNG_TPJ1022)
346 #include "config/tatungtpj1022.h"
347 #elif defined(MROBE_100)
348 #include "config/mrobe100.h"
349 #elif defined(MROBE_500)
350 #include "config/mrobe500.h"
351 #elif defined(LOGIK_DAX)
352 #include "config/logikdax.h"
353 #elif defined(IAUDIO_7)
354 #include "config/iaudio7.h"
355 #elif defined(COWON_D2)
356 #include "config/cowond2.h"
357 #elif defined(CREATIVE_ZVM)
358 #include "config/zenvisionm30gb.h"
359 #elif defined(CREATIVE_ZVM60GB)
360 #include "config/zenvisionm60gb.h"
361 #elif defined(CREATIVE_ZV)
362 #include "config/zenvision.h"
363 #elif defined(PHILIPS_SA9200)
364 #include "config/gogearsa9200.h"
365 #elif defined(PHILIPS_HDD1630)
366 #include "config/gogearhdd1630.h"
367 #elif defined(PHILIPS_HDD6330)
368 #include "config/gogearhdd6330.h"
369 #elif defined(SANSA_C100)
370 #include "config/sansac100.h"
371 #elif defined(MEIZU_M6SL)
372 #include "config/meizum6sl.h"
373 #elif defined(MEIZU_M6SP)
374 #include "config/meizum6sp.h"
375 #elif defined(MEIZU_M3)
376 #include "config/meizum3.h"
377 #elif defined(ONDA_VX747) || defined(ONDA_VX747P)
378 #include "config/ondavx747.h"
379 #elif defined(ONDA_VX777)
380 #include "config/ondavx777.h"
381 #elif defined(ONDA_VX767)
382 #include "config/ondavx767.h"
383 #elif defined(SANSA_CLIP)
384 #include "config/sansaclip.h"
385 #elif defined(SANSA_CLIPV2)
386 #include "config/sansaclipv2.h"
387 #elif defined(SANSA_CLIPPLUS)
388 #include "config/sansaclipplus.h"
389 #elif defined(SANSA_E200V2)
390 #include "config/sansae200v2.h"
391 #elif defined(SANSA_M200V4)
392 #include "config/sansam200v4.h"
393 #elif defined(SANSA_FUZE)
394 #include "config/sansafuze.h"
395 #elif defined(SANSA_FUZEV2)
396 #include "config/sansafuzev2.h"
397 #elif defined(SANSA_C200V2)
398 #include "config/sansac200v2.h"
399 #elif defined(SANSA_VIEW)
400 #include "config/sansaview.h"
401 #elif defined(LYRE_PROTO1)
402 #include "config/lyreproto1.h"
403 #elif defined(MINI2440)
404 #include "config/mini2440.h"
405 #elif defined(SAMSUNG_YH820)
406 #include "config/samsungyh820.h"
407 #elif defined(SAMSUNG_YH920)
408 #include "config/samsungyh920.h"
409 #elif defined(SAMSUNG_YH925)
410 #include "config/samsungyh925.h"
411 #elif defined(SAMSUNG_YPS3)
412 #include "config/samsungyps3.h"
413 #elif defined(PBELL_VIBE500)
414 #include "config/vibe500.h"
415 #else
416 /* no known platform */
417 #endif
419 /* keep this include after the target configs */
420 #ifdef SIMULATOR
421 #include "config/sim.h"
422 #endif
424 /* setup basic macros from capability masks */
425 #include "config_caps.h"
427 /* setup CPU-specific defines */
429 /* define for all cpus from SH family */
430 #if (CONFIG_CPU == SH7034)
431 #define CPU_SH
432 #endif
434 /* define for all cpus from coldfire family */
435 #if (CONFIG_CPU == MCF5249) || (CONFIG_CPU == MCF5250)
436 #define CPU_COLDFIRE
437 #endif
439 /* define for all cpus from PP family */
440 #if (CONFIG_CPU == PP5002)
441 #define CPU_PP
442 #elif (CONFIG_CPU == PP5020) || (CONFIG_CPU == PP5022) \
443 || (CONFIG_CPU == PP5024) || (CONFIG_CPU == PP6100)
444 #define CPU_PP
445 #define CPU_PP502x
446 #endif
448 /* define for all cpus from S5L870X family */
449 #if (CONFIG_CPU == S5L8700) || (CONFIG_CPU == S5L8701)
450 #define CPU_S5L870X
451 #endif
453 /* define for all cpus from TCC77X family */
454 #if (CONFIG_CPU == TCC771L) || (CONFIG_CPU == TCC773L) || (CONFIG_CPU == TCC770)
455 #define CPU_TCC77X
456 #endif
458 /* define for all cpus from TCC780 family */
459 #if (CONFIG_CPU == TCC7801)
460 #define CPU_TCC780X
461 #endif
463 /* define for all cpus from ARM7TDMI family (for specific optimisations) */
464 #if defined(CPU_PP) || (CONFIG_CPU == PNX0101) || (CONFIG_CPU == DSC25)
465 #define CPU_ARM7TDMI
466 #endif
468 /* define for all cpus from ARM family */
469 #if (CONFIG_CPU == IMX31L)
470 #define CPU_ARM
471 #define ARM_ARCH 6 /* ARMv6 */
473 #elif defined(CPU_TCC77X) || defined(CPU_TCC780X) || (CONFIG_CPU == DM320) \
474 || (CONFIG_CPU == AT91SAM9260) || (CONFIG_CPU == AS3525v2)
475 #define CPU_ARM
476 #define ARM_ARCH 5 /* ARMv5 */
478 #elif defined(CPU_PP) || (CONFIG_CPU == PNX0101) || (CONFIG_CPU == S3C2440) \
479 || (CONFIG_CPU == DSC25) || defined(CPU_S5L870X) || (CONFIG_CPU == AS3525)
480 #define CPU_ARM
481 #define ARM_ARCH 4 /* ARMv4 */
482 #endif
484 #if (CONFIG_CPU == JZ4732)
485 #define CPU_MIPS 32
486 #endif
488 /* now set any CONFIG_ defines correctly if they are not used,
489 No need to do this on CONFIG_'s which are compulsory (e.g CONFIG_CODEC ) */
491 #if !defined(CONFIG_BACKLIGHT_FADING)
492 #define CONFIG_BACKLIGHT_FADING BACKLIGHT_NO_FADING
493 #endif
495 #ifndef CONFIG_TUNER
496 #define CONFIG_TUNER 0
497 #endif
499 #ifndef CONFIG_USBOTG
500 #define CONFIG_USBOTG 0
501 #endif
503 #ifndef CONFIG_LED
504 #define CONFIG_LED LED_VIRTUAL
505 #endif
507 #ifndef CONFIG_CHARGING
508 #define CONFIG_CHARGING 0
509 #endif
511 #ifndef CONFIG_RTC
512 #define CONFIG_RTC 0
513 #endif
515 #ifndef CONFIG_ORIENTATION
516 #if LCD_HEIGHT > LCD_WIDTH
517 #define CONFIG_ORIENTATION SCREEN_PORTRAIT
518 #elif LCD_HEIGHT < LCD_WIDTH
519 #define CONFIG_ORIENTATION SCREEN_LANDSCAPE
520 #else
521 #define CONFIG_ORIENTATION SCREEN_SQUARE
522 #endif
523 #endif
525 /* Pixel aspect ratio is defined in terms of a multiplier for pixel width and
526 * height, and is set to 1:1 if the target does not set a value
528 #ifndef LCD_PIXEL_ASPECT_HEIGHT
529 #define LCD_PIXEL_ASPECT_HEIGHT 1
530 #endif
531 #ifndef LCD_PIXEL_ASPECT_WIDTH
532 #define LCD_PIXEL_ASPECT_WIDTH 1
533 #endif
535 /* Used for split displays (Sansa Clip). Set to 0 otherwise */
536 #ifndef LCD_SPLIT_LINES
537 #define LCD_SPLIT_LINES 0
538 #endif
540 /* Simulator LCD dimensions. Set to standard dimensions if undefined */
541 #ifndef SIM_LCD_WIDTH
542 #define SIM_LCD_WIDTH LCD_WIDTH
543 #endif
544 #ifndef SIM_LCD_HEIGHT
545 #define SIM_LCD_HEIGHT (LCD_HEIGHT + LCD_SPLIT_LINES)
546 #endif
548 #ifdef HAVE_REMOTE_LCD
549 #ifndef SIM_REMOTE_WIDTH
550 #define SIM_REMOTE_WIDTH LCD_REMOTE_WIDTH
551 #endif
552 #ifndef SIM_REMOTE_HEIGHT
553 #define SIM_REMOTE_HEIGHT LCD_REMOTE_HEIGHT
554 #endif
555 #endif /* HAVE_REMOTE_LCD */
557 /* define this in the target config.h to use a different size */
558 #ifndef CONFIG_DEFAULT_ICON_HEIGHT
559 #define CONFIG_DEFAULT_ICON_HEIGHT 8
560 #endif
561 #ifndef CONFIG_DEFAULT_ICON_WIDTH
562 #define CONFIG_DEFAULT_ICON_WIDTH 6
563 #endif
564 #ifndef CONFIG_REMOTE_DEFAULT_ICON_HEIGHT
565 #define CONFIG_REMOTE_DEFAULT_ICON_HEIGHT 8
566 #endif
567 #ifndef CONFIG_REMOTE_DEFAULT_ICON_WIDTH
568 #define CONFIG_REMOTE_DEFAULT_ICON_WIDTH 6
569 #endif
571 #if (CONFIG_TUNER & (CONFIG_TUNER - 1)) != 0
572 /* Multiple possible tuners */
573 #define CONFIG_TUNER_MULTI
574 #endif
576 /* deactivate fading in bootloader */
577 #if defined(BOOTLOADER)
578 #undef CONFIG_BACKLIGHT_FADING
579 #define CONFIG_BACKLIGHT_FADING BACKLIGHT_NO_FADING
580 #endif
582 /* determine which setting/manual text to use */
583 #if (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_PWM)
585 /* possibly overridden in target config */
586 #if !defined(HAVE_BACKLIGHT_FADING_BOOL_SETTING) \
587 && !defined(HAVE_BACKLIGHT_FADING_INT_SETTING)
588 #define HAVE_BACKLIGHT_FADING_INT_SETTING
589 #endif
591 #elif (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_SETTING) \
592 || (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_HW_REG) \
593 || (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_TARGET)
595 /* possibly overridden in target config */
596 #if !defined(HAVE_BACKLIGHT_FADING_BOOL_SETTING) \
597 && !defined(HAVE_BACKLIGHT_FADING_INT_SETTING)
598 #define HAVE_BACKLIGHT_FADING_BOOL_SETTING
599 #endif
601 #endif /* CONFIG_BACKLIGHT_FADING */
603 /* Storage related config handling */
605 #if (CONFIG_STORAGE & (CONFIG_STORAGE - 1)) != 0
606 /* Multiple storage drivers */
607 #define CONFIG_STORAGE_MULTI
608 #endif
610 /* Explicit HAVE_MULTIVOLUME in the config file. Allow the maximum number */
611 #ifdef HAVE_MULTIVOLUME
612 #define NUM_VOLUMES_PER_DRIVE 4
613 #else
614 #define NUM_VOLUMES_PER_DRIVE 1
615 #endif
616 #if defined(CONFIG_STORAGE_MULTI) && !defined(HAVE_MULTIDRIVE)
617 #define HAVE_MULTIDRIVE
618 #endif
620 #if defined(HAVE_MULTIDRIVE) && !defined(HAVE_MULTIVOLUME)
621 #define HAVE_MULTIVOLUME
622 #endif
624 #if defined(HAVE_MULTIDRIVE) && !defined(NUM_DRIVES)
625 #error HAVE_MULTIDRIVE needs to have an explicit NUM_DRIVES
626 #endif
628 #ifndef NUM_DRIVES
629 #define NUM_DRIVES 1
630 #endif
632 #define NUM_VOLUMES (NUM_DRIVES * NUM_VOLUMES_PER_DRIVE)
634 #if defined(BOOTLOADER) && defined(HAVE_ADJUSTABLE_CPU_FREQ)
635 /* Bootloaders don't use CPU frequency adjustment */
636 #undef HAVE_ADJUSTABLE_CPU_FREQ
637 #endif
639 /* Enable the directory cache and tagcache in RAM if we have
640 * plenty of RAM. Both features can be enabled independently. */
641 #if ((defined(MEMORYSIZE) && (MEMORYSIZE >= 8)) || MEM >= 8) && \
642 !defined(BOOTLOADER) && !defined(__PCTOOL__)
643 #define HAVE_DIRCACHE
644 #ifdef HAVE_TAGCACHE
645 #define HAVE_TC_RAMCACHE
646 #endif
647 #endif
649 /* Add one HAVE_ define for all mas35xx targets */
650 #if (CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3507D) || (CONFIG_CODEC == MAS3539F)
651 #define HAVE_MAS35XX
652 #endif
654 #if (CONFIG_CODEC == SWCODEC)
655 #ifdef BOOTLOADER
657 #if CONFIG_CPU == IMX31L
658 /* Priority in bootloader is wanted */
659 #define HAVE_PRIORITY_SCHEDULING
660 #define USB_STATUS_BY_EVENT
661 #define USB_DETECT_BY_DRV
662 #endif
664 #else /* !BOOTLOADER */
666 #define HAVE_EXTENDED_MESSAGING_AND_NAME
668 #ifndef SIMULATOR
669 #define HAVE_PRIORITY_SCHEDULING
670 #define HAVE_SCHEDULER_BOOSTCTRL
671 #endif /* SIMULATOR */
673 #define HAVE_SEMAPHORE_OBJECTS
675 #if defined(HAVE_USBSTACK) && CONFIG_USBOTG == USBOTG_ARC
676 #define USB_STATUS_BY_EVENT
677 #define USB_DETECT_BY_DRV
678 #if CONFIG_CPU != IMX31L
679 #define INCLUDE_TIMEOUT_API
680 #endif
681 #endif /* HAVE_USBSTACK */
684 #endif /* BOOTLOADER */
686 #if defined(HAVE_USBSTACK) || (CONFIG_CPU == JZ4732) \
687 || (CONFIG_CPU == AS3525) || (CONFIG_CPU == AS3525v2) \
688 || defined(CPU_S5L870X) || (CONFIG_CPU == S3C2440)
689 #define HAVE_WAKEUP_OBJECTS
690 #endif
692 /*include support for crossfading - requires significant PCM buffer space*/
693 #if MEMORYSIZE > 2
694 #define HAVE_CROSSFADE
695 #endif
697 #endif /* (CONFIG_CODEC == SWCODEC) */
699 /* Determine if accesses should be strictly long aligned. */
700 #if (CONFIG_CPU == SH7034) || defined(CPU_ARM) || defined(CPU_MIPS)
701 #define ROCKBOX_STRICT_ALIGN 1
702 #endif
704 #ifndef CODEC_SIZE
705 #define CODEC_SIZE 0
706 #endif
708 /* This attribute can be used to ensure that certain symbols are never profiled
709 * which can be important as profiling a function de-inlines it */
710 #ifdef RB_PROFILE
711 #define NO_PROF_ATTR __attribute__ ((no_instrument_function))
712 #else
713 #define NO_PROF_ATTR
714 #endif
716 /* IRAM usage */
717 #if !defined(SIMULATOR) && /* Not for simulators */ \
718 (((CONFIG_CPU == SH7034) && !defined(PLUGIN)) || /* SH1 archos: core only */ \
719 defined(CPU_COLDFIRE) || /* Coldfire: core, plugins, codecs */ \
720 defined(CPU_PP) || /* PortalPlayer: core, plugins, codecs */ \
721 (CONFIG_CPU == AS3525 && MEMORYSIZE > 2) || /* AS3525 +2MB: core, plugins, codecs */ \
722 (CONFIG_CPU == AS3525v2) || /* AS3525v2: core, plugins, codecs */ \
723 (CONFIG_CPU == AS3525 && MEMORYSIZE <= 2 && !defined(PLUGIN) && !defined(CODEC)) || /* AS3525 2MB:core only */ \
724 (CONFIG_CPU == PNX0101) || \
725 defined(CPU_S5L870X)) || /* Samsung S5L8700: core, plugins, codecs */ \
726 (CONFIG_CPU == JZ4732 && !defined(PLUGIN) && !defined(CODEC)) /* Jz4740: core only */
727 #define ICODE_ATTR __attribute__ ((section(".icode")))
728 #define ICONST_ATTR __attribute__ ((section(".irodata")))
729 #define IDATA_ATTR __attribute__ ((section(".idata")))
730 #define IBSS_ATTR __attribute__ ((section(".ibss")))
731 #define USE_IRAM
732 #if CONFIG_CPU != SH7034 && (CONFIG_CPU != AS3525 || MEMORYSIZE > 2) && CONFIG_CPU != JZ4732
733 #define PLUGIN_USE_IRAM
734 #endif
735 #if defined(CPU_ARM)
736 /* GCC quirk workaround: arm-elf-gcc treats static functions as short_call
737 * when not compiling with -ffunction-sections, even when the function has
738 * a section attribute. */
739 #define STATICIRAM
740 #else
741 #define STATICIRAM static
742 #endif
743 #else
744 #define ICODE_ATTR
745 #define ICONST_ATTR
746 #define IDATA_ATTR
747 #define IBSS_ATTR
748 #define STATICIRAM static
749 #endif
750 #if (defined(CPU_PP) || (CONFIG_CPU == AS3525)) && !defined(SIMULATOR) && !defined(BOOTLOADER)
751 #define INIT_ATTR __attribute__ ((section(".init")))
752 #define HAVE_INIT_ATTR
753 #else
754 #define INIT_ATTR
755 #endif
757 #if defined(SIMULATOR) && defined(__APPLE__)
758 #define DATA_ATTR __attribute__ ((section("__DATA, .data")))
759 #else
760 #define DATA_ATTR __attribute__ ((section(".data")))
761 #endif
763 #ifndef IRAM_LCDFRAMEBUFFER
764 /* if the LCD framebuffer has not been moved to IRAM, define it empty here */
765 #define IRAM_LCDFRAMEBUFFER
766 #endif
768 /* Change this if you want to build a single-core firmware for a multicore
769 * target for debugging */
770 #if defined(BOOTLOADER) || (CONFIG_CPU == PP6100)
771 #define FORCE_SINGLE_CORE
772 #endif
774 /* Core locking types - specifies type of atomic operation */
775 #define CORELOCK_NONE 0
776 #define SW_CORELOCK 1 /* Mutual exclusion provided by a software algorithm
777 and not a special semaphore instruction */
778 #define CORELOCK_SWAP 2 /* A swap (exchange) instruction */
780 #if defined(CPU_PP)
781 #define IDLE_STACK_SIZE 0x80
782 #define IDLE_STACK_WORDS 0x20
784 /* Attributes to place data in uncached DRAM */
785 /* These are useful beyond dual-core and ultimately beyond PP since they may
786 * be used for DMA buffers and such without cache maintenence calls. */
787 #define NOCACHEBSS_ATTR __attribute__((section(".ncbss"),nocommon))
788 #define NOCACHEDATA_ATTR __attribute__((section(".ncdata"),nocommon))
790 #if !defined(FORCE_SINGLE_CORE)
792 #define NUM_CORES 2
793 #define CURRENT_CORE current_core()
794 /* Attributes for core-shared data in DRAM where IRAM is better used for other
795 * purposes. */
796 #define SHAREDBSS_ATTR NOCACHEBSS_ATTR
797 #define SHAREDDATA_ATTR NOCACHEDATA_ATTR
799 #define IF_COP(...) __VA_ARGS__
800 #define IF_COP_VOID(...) __VA_ARGS__
801 #define IF_COP_CORE(core) core
803 #ifdef CPU_PP
804 #define CONFIG_CORELOCK SW_CORELOCK /* SWP(B) is broken */
805 #else
806 #define CONFIG_CORELOCK CORELOCK_SWAP
807 #endif
809 #endif /* !defined(BOOTLOADER) && CONFIG_CPU != PP5002 */
811 #endif /* CPU_PP */
813 #ifndef CONFIG_CORELOCK
814 #define CONFIG_CORELOCK CORELOCK_NONE
815 #endif
817 #if CONFIG_CORELOCK == SW_CORELOCK
818 #define IF_SWCL(...) __VA_ARGS__
819 #define IFN_SWCL(...)
820 #else
821 #define IF_SWCL(...)
822 #define IFN_SWCL(...) __VA_ARGS__
823 #endif /* CONFIG_CORELOCK == */
825 #ifndef NUM_CORES
826 /* Default to single core */
827 #define NUM_CORES 1
828 #define CURRENT_CORE CPU
829 /* Attributes for core-shared data in DRAM - no caching considerations */
830 #define SHAREDBSS_ATTR
831 #define SHAREDDATA_ATTR
832 #ifndef NOCACHEBSS_ATTR
833 #define NOCACHEBSS_ATTR
834 #define NOCACHEDATA_ATTR
835 #endif
836 #define CONFIG_CORELOCK CORELOCK_NONE
838 #define IF_COP(...)
839 #define IF_COP_VOID(...) void
840 #define IF_COP_CORE(core) CURRENT_CORE
842 #endif /* NUM_CORES */
844 #ifdef HAVE_HEADPHONE_DETECTION
845 /* Timeout objects required if headphone detection is enabled */
846 #ifndef INCLUDE_TIMEOUT_API
847 #define INCLUDE_TIMEOUT_API
848 #endif
849 #endif /* HAVE_HEADPHONE_DETECTION */
851 #if defined(HAVE_USBSTACK) || (CONFIG_STORAGE & STORAGE_NAND)
852 #define STORAGE_GET_INFO
853 #endif
855 #ifdef CPU_MIPS
856 #include <stdbool.h> /* MIPS GCC fix? */
857 #endif
859 #if defined(HAVE_USBSTACK)
860 /* Define the implemented USB transport classes */
861 #if CONFIG_USBOTG == USBOTG_ISP1583
862 #define USB_HAS_BULK
863 #elif (CONFIG_USBOTG == USBOTG_ARC) || \
864 (CONFIG_USBOTG == USBOTG_JZ4740) || \
865 (CONFIG_USBOTG == USBOTG_M66591)
866 #define USB_HAS_BULK
867 #define USB_HAS_INTERRUPT
868 #elif defined(CPU_TCC780X) || defined(CPU_TCC77X)
869 #define USB_HAS_BULK
870 #elif CONFIG_USBOTG == USBOTG_S3C6400X
871 #define USB_HAS_BULK
872 #define USB_HAS_INTERRUPT
873 #endif /* CONFIG_USBOTG */
875 /* define the class drivers to enable */
876 #ifdef BOOTLOADER
878 /* enable usb storage for targets that do bootloader usb */
879 #if (defined(TOSHIBA_GIGABEAT_S) || \
880 (defined(CREATIVE_ZVx) || \
881 defined(CPU_TCC77X) || defined(CPU_TCC780X))) || \
882 (CONFIG_USBOTG == USBOTG_JZ4740) || defined(IPOD_NANO2G)
883 #define USB_ENABLE_STORAGE
884 #endif
886 #else /* BOOTLOADER */
888 #ifndef SIMULATOR
889 //#define USB_ENABLE_SERIAL
890 #define USB_ENABLE_STORAGE
892 #ifdef USB_HAS_INTERRUPT
893 #define USB_ENABLE_HID
894 #else
895 #define USB_ENABLE_CHARGING_ONLY
896 #endif
897 #endif
899 #endif /* BOOTLOADER */
901 #endif /* HAVE_USBSTACK */
903 /* Storage alignment: the mask specifies a mask of bits which should be
904 * clear in addresses used for storage_{read,write}_sectors(). This is
905 * only relevant for buffers that will contain one or more whole sectors.
908 /* PP502x DMA requires an alignment of at least 16 bytes */
909 #ifdef HAVE_ATA_DMA
910 #ifdef CPU_PP502x
911 #define STORAGE_ALIGN_MASK 15
912 #endif
913 #endif /* HAVE_ATA_DMA */
915 /* by default no alignment is required */
916 #ifndef STORAGE_ALIGN_MASK
917 #define STORAGE_ALIGN_MASK 0
918 #endif
920 /* This attribute can be used to enable to detection of plugin file handles leaks.
921 * When enabled, the plugin core will monitor open/close/creat and when the plugin exits
922 * will display an error message if the plugin leaked some file handles */
923 #ifndef SIMULATOR
924 #define HAVE_PLUGIN_CHECK_OPEN_CLOSE
925 #endif
927 #endif /* __CONFIG_H__ */