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.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index 4a4185fdc3..40d1c168a3 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -30,6 +30,7 @@
30#define S1A0903X01 0x01 /* Samsung */ 30#define S1A0903X01 0x01 /* Samsung */
31#define TEA5767 0x02 /* Philips */ 31#define TEA5767 0x02 /* Philips */
32#define LV24020LP 0x04 /* Sanyo */ 32#define LV24020LP 0x04 /* Sanyo */
33#define SI4700 0x08 /* Silicon Labs */
33 34
34/* CONFIG_CODEC */ 35/* CONFIG_CODEC */
35#define MAS3587F 3587 36#define MAS3587F 3587
@@ -49,6 +50,7 @@
49#define S3C2440 2440 50#define S3C2440 2440
50#define TMS320DSC25 25 51#define TMS320DSC25 25
51#define DM320 320 52#define DM320 320
53#define IMX31L 31
52 54
53/* CONFIG_KEYPAD */ 55/* CONFIG_KEYPAD */
54#define PLAYER_PAD 1 56#define PLAYER_PAD 1
@@ -68,6 +70,7 @@
68#define ELIO_TPJ1022_PAD 15 70#define ELIO_TPJ1022_PAD 15
69#define ARCHOS_AV300_PAD 16 71#define ARCHOS_AV300_PAD 16
70#define MROBE500_PAD 17 72#define MROBE500_PAD 17
73#define GIGABEAT_S_PAD 18
71 74
72/* CONFIG_REMOTE_KEYPAD */ 75/* CONFIG_REMOTE_KEYPAD */
73#define H100_REMOTE 1 76#define H100_REMOTE 1
@@ -118,6 +121,7 @@
118#define I2C_PNX0101 6 /* PNX0101 style */ 121#define I2C_PNX0101 6 /* PNX0101 style */
119#define I2C_S3C2440 7 122#define I2C_S3C2440 7
120#define I2C_PP5024 8 /* PP5024 style */ 123#define I2C_PP5024 8 /* PP5024 style */
124#define I2C_IMX31L 9
121 125
122/* CONFIG_LED */ 126/* CONFIG_LED */
123#define LED_REAL 1 /* SW controlled LED (Archos recorders, player) */ 127#define LED_REAL 1 /* SW controlled LED (Archos recorders, player) */
@@ -135,6 +139,7 @@
135#define RTC_E8564 5 /* iriver H10 */ 139#define RTC_E8564 5 /* iriver H10 */
136#define RTC_AS3514 6 /* Sandisk Sansa e200 series */ 140#define RTC_AS3514 6 /* Sandisk Sansa e200 series */
137#define RTC_DS1339_DS3231 7 /* h1x0 RTC mod */ 141#define RTC_DS1339_DS3231 7 /* h1x0 RTC mod */
142#define RTC_IMX31L 8
138 143
139/* USB On-the-go */ 144/* USB On-the-go */
140#define USBOTG_ISP1362 1362 /* iriver H300 */ 145#define USBOTG_ISP1362 1362 /* iriver H300 */
@@ -186,6 +191,8 @@
186#include "config-ifp7xx.h" 191#include "config-ifp7xx.h"
187#elif defined(GIGABEAT_F) 192#elif defined(GIGABEAT_F)
188#include "config-gigabeat.h" 193#include "config-gigabeat.h"
194#elif defined(GIGABEAT_S)
195#include "config-gigabeat-s.h"
189#elif defined(IPOD_MINI) 196#elif defined(IPOD_MINI)
190#include "config-ipodmini.h" 197#include "config-ipodmini.h"
191#elif defined(IPOD_MINI2G) 198#elif defined(IPOD_MINI2G)
@@ -299,7 +306,8 @@
299 306
300/* define for all cpus from ARM family */ 307/* define for all cpus from ARM family */
301#if defined(CPU_PP) || (CONFIG_CPU == PNX0101) || (CONFIG_CPU == S3C2440) \ 308#if defined(CPU_PP) || (CONFIG_CPU == PNX0101) || (CONFIG_CPU == S3C2440) \
302 || (CONFIG_CPU == TMS320DSC25) || (CONFIG_CPU == DM320) 309 || (CONFIG_CPU == TMS320DSC25) || (CONFIG_CPU == DM320) \
310 || (CONFIG_CPU == IMX31L)
303#define CPU_ARM 311#define CPU_ARM
304#endif 312#endif
305 313