summaryrefslogtreecommitdiff
path: root/firmware/export/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/config.h')
-rw-r--r--firmware/export/config.h24
1 files changed, 15 insertions, 9 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index e37cc3f782..20fdc1d770 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -37,14 +37,15 @@
37#define SWCODEC 1 /* if codec is done by SW */ 37#define SWCODEC 1 /* if codec is done by SW */
38 38
39/* CONFIG_CPU */ 39/* CONFIG_CPU */
40#define SH7034 7034 40#define SH7034 7034
41#define MCF5249 5249 41#define MCF5249 5249
42#define MCF5250 5250 42#define MCF5250 5250
43#define PP5002 5002 43#define PP5002 5002
44#define PP5020 5020 44#define PP5020 5020
45#define PNX0101 101 45#define PNX0101 101
46#define S3C2440 2440 46#define S3C2440 2440
47#define PP5024 5024 47#define PP5024 5024
48#define TMS320DSC25 25
48 49
49/* CONFIG_KEYPAD */ 50/* CONFIG_KEYPAD */
50#define PLAYER_PAD 1 51#define PLAYER_PAD 1
@@ -60,6 +61,7 @@
60#define IRIVER_H10_PAD 11 61#define IRIVER_H10_PAD 11
61#define SANSA_E200_PAD 12 62#define SANSA_E200_PAD 12
62#define ELIO_TPJ1022_PAD 13 63#define ELIO_TPJ1022_PAD 13
64#define ARCHOS_AV300_PAD 14
63 65
64/* CONFIG_REMOTE_KEYPAD */ 66/* CONFIG_REMOTE_KEYPAD */
65#define H100_REMOTE 1 67#define H100_REMOTE 1
@@ -99,6 +101,7 @@
99#define LCD_H10 13 /* as used by iriver H10 20Gb */ 101#define LCD_H10 13 /* as used by iriver H10 20Gb */
100#define LCD_H10_5GB 14 /* as used by iriver H10 5Gb */ 102#define LCD_H10_5GB 14 /* as used by iriver H10 5Gb */
101#define LCD_TPJ1022 15 /* as used by Tatung Elio TPJ-1022 */ 103#define LCD_TPJ1022 15 /* as used by Tatung Elio TPJ-1022 */
104#define LCD_DSC25 16 /* as used by Archos AV300 */
102 105
103/* LCD_PIXELFORMAT */ 106/* LCD_PIXELFORMAT */
104#define HORIZONTAL_PACKING 1 107#define HORIZONTAL_PACKING 1
@@ -170,6 +173,8 @@
170#include "config-ondiosp.h" 173#include "config-ondiosp.h"
171#elif defined(ARCHOS_ONDIOFM) 174#elif defined(ARCHOS_ONDIOFM)
172#include "config-ondiofm.h" 175#include "config-ondiofm.h"
176#elif defined(ARCHOS_AV300)
177#include "config-av300.h"
173#elif defined(IRIVER_H100) 178#elif defined(IRIVER_H100)
174#include "config-h100.h" 179#include "config-h100.h"
175#elif defined(IRIVER_H120) 180#elif defined(IRIVER_H120)
@@ -255,7 +260,8 @@
255#endif 260#endif
256 261
257/* define for all cpus from ARM family */ 262/* define for all cpus from ARM family */
258#if defined(CPU_PP) || (CONFIG_CPU == PNX0101) || (CONFIG_CPU == S3C2440) 263#if defined(CPU_PP) || (CONFIG_CPU == PNX0101) || (CONFIG_CPU == S3C2440) \
264 || (CONFIG_CPU == TMS320DSC25)
259#define CPU_ARM 265#define CPU_ARM
260#endif 266#endif
261 267