Updated our source code header to explicitly mention that we are GPL v2 or
[Rockbox.git] / firmware / export / config-iaudiox5.h
blob0d6e50053faf32d65066340752685585d29e6d3e
1 /*
2 * This config file is for iAudio X5
3 */
4 #define TARGET_TREE /* this target is using the target tree system */
6 /* For Rolo and boot loader */
7 #define MODEL_NUMBER 10
9 /* define this if you use an ATA controller */
10 #define HAVE_ATA
12 /* define this if you have recording possibility */
13 #define HAVE_RECORDING
15 /* Define bitmask of input sources - recordable bitmask can be defined
16 explicitly if different */
17 #define INPUT_SRC_CAPS (SRC_CAP_MIC | SRC_CAP_LINEIN | SRC_CAP_FMRADIO)
19 /* define the bitmask of hardware sample rates */
20 #define HW_SAMPR_CAPS (SAMPR_CAP_88 | SAMPR_CAP_44 | SAMPR_CAP_22 | SAMPR_CAP_11)
22 /* define the bitmask of recording sample rates */
23 #define REC_SAMPR_CAPS (SAMPR_CAP_88 | SAMPR_CAP_44 | SAMPR_CAP_22 | SAMPR_CAP_11)
25 /* define this if you have a bitmap LCD display */
26 #define HAVE_LCD_BITMAP
28 /* define this if you can flip your LCD */
29 #define HAVE_LCD_FLIP
31 /* define this if you have a colour LCD */
32 #define HAVE_LCD_COLOR
34 /* define this if you want album art for this target */
35 #define HAVE_ALBUMART
37 /* define this if you can invert the colours on your LCD */
38 #define HAVE_LCD_INVERT
40 /* define this if you have access to the quickscreen */
41 #define HAVE_QUICKSCREEN
43 /* define this if you have access to the pitchscreen */
44 #define HAVE_PITCHSCREEN
46 /* define this if you would like tagcache to build on this target */
47 #define HAVE_TAGCACHE
49 /* LCD dimensions */
50 #define LCD_WIDTH 160
51 #define LCD_HEIGHT 128
52 #define LCD_DEPTH 16 /* pseudo 262.144 colors */
53 #define LCD_PIXELFORMAT RGB565 /* rgb565 */
55 /* remote LCD */
56 #define LCD_REMOTE_WIDTH 128
57 #define LCD_REMOTE_HEIGHT 96
58 #define LCD_REMOTE_DEPTH 2
60 #define LCD_REMOTE_PIXELFORMAT VERTICAL_INTERLEAVED
62 #ifndef BOOTLOADER
63 /* Define this if your LCD can be enabled/disabled */
64 #define HAVE_LCD_ENABLE
66 /* Define this if your LCD can be put to sleep. HAVE_LCD_ENABLE
67 should be defined as well. */
68 #define HAVE_LCD_SLEEP
69 #define HAVE_LCD_SLEEP_SETTING
70 #endif
72 #define CONFIG_KEYPAD IAUDIO_X5M5_PAD
74 #define AB_REPEAT_ENABLE 1
75 #define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
77 /* Define this if you do software codec */
78 #define CONFIG_CODEC SWCODEC
80 /* define this if you have a real-time clock */
81 #define CONFIG_RTC RTC_PCF50606
83 /* Define this if you have an remote lcd */
84 #define HAVE_REMOTE_LCD
86 #define CONFIG_LCD LCD_X5
88 /* Define this for LCD backlight available */
89 #define HAVE_BACKLIGHT
90 #define HAVE_BACKLIGHT_BRIGHTNESS
92 /* Define this if you have a software controlled poweroff */
93 #define HAVE_SW_POWEROFF
95 /* The number of bytes reserved for loadable codecs */
96 #define CODEC_SIZE 0x80000
98 /* The number of bytes reserved for loadable plugins */
99 #define PLUGIN_BUFFER_SIZE 0x80000
101 /* FM Tuner */
102 #define CONFIG_TUNER TEA5767
103 #define CONFIG_TUNER_XTAL 32768
105 #define HAVE_TLV320
107 /* TLV320 has no tone controls, so we use the software ones */
108 #define HAVE_SW_TONE_CONTROLS
110 #define BATTERY_CAPACITY_DEFAULT 950 /* default battery capacity */
111 #define BATTERY_CAPACITY_MIN 950 /* min. capacity selectable */
112 #define BATTERY_CAPACITY_MAX 2250 /* max. capacity selectable */
113 #define BATTERY_CAPACITY_INC 50 /* capacity increment */
114 #define BATTERY_TYPES_COUNT 1 /* only one type */
116 /* Hardware controlled charging? FIXME */
117 #define CONFIG_CHARGING CHARGING_SIMPLE
119 #ifndef SIMULATOR
121 /* Define this if your LCD can set contrast */
122 #define HAVE_LCD_CONTRAST
124 /* Define this if you have a Motorola SCF5250 */
125 #define CONFIG_CPU MCF5250
127 /* Define this if you want to use coldfire's i2c interface */
128 #define CONFIG_I2C I2C_COLDFIRE
130 /* define this if the hardware can be powered off while charging */
131 #define HAVE_POWEROFF_WHILE_CHARGING
133 /* The size of the flash ROM */
134 #define FLASH_SIZE 0x400000
136 /* Define this to the CPU frequency */
137 #define CPU_FREQ 11289600
139 /* Define this if you have ATA power-off control */
140 #define HAVE_ATA_POWER_OFF
142 /* Virtual LED (icon) */
143 #define CONFIG_LED LED_VIRTUAL
145 /* Offset ( in the firmware file's header ) to the file CRC */
146 #define FIRMWARE_OFFSET_FILE_CRC 0
148 /* Offset ( in the firmware file's header ) to the real data */
149 #define FIRMWARE_OFFSET_FILE_DATA 8
151 /* USB On-the-go */
152 #define CONFIG_USBOTG USBOTG_M5636
154 /* Define this if you have adjustable CPU frequency */
155 #define HAVE_ADJUSTABLE_CPU_FREQ
157 #define BOOTFILE_EXT "iaudio"
158 #define BOOTFILE "rockbox." BOOTFILE_EXT
159 #define BOOTDIR "/.rockbox"
161 #define BOOTLOADER_ENTRYPOINT 0x001F0000
162 #define FLASH_ENTRYPOINT 0x00001000
163 #define FLASH_MAGIC 0xfbfbfbf1
165 #endif /* SIMULATOR */
167 /* Define this for FM radio input available */
168 #define HAVE_FMRADIO_IN
170 /** Port-specific settings **/
172 /* Main LCD contrast range and defaults */
173 #define MIN_CONTRAST_SETTING 1
174 #define MAX_CONTRAST_SETTING 30
175 #define DEFAULT_CONTRAST_SETTING 19 /* Match boot contrast */
177 /* Main LCD backlight brightness range and defaults */
178 /* PCF50506 can output 0%-100% duty cycle but D305A expects %15-100%. */
179 #define MIN_BRIGHTNESS_SETTING 1 /* 15/16 (93.75%) */
180 #define MAX_BRIGHTNESS_SETTING 13 /* 3/16 (18.75%) */
181 #define DEFAULT_BRIGHTNESS_SETTING 8 /* 8/16 (50.00%) = x5 boot default */
183 /* Remote LCD contrast range and defaults */
184 #define MIN_REMOTE_CONTRAST_SETTING 10
185 #define MAX_REMOTE_CONTRAST_SETTING 35
186 #define DEFAULT_REMOTE_CONTRAST_SETTING 24 /* Match boot contrast */