add global proxy / cache settings to httpget class. This removes the need of passing...
[Rockbox.git] / firmware / export / config-iaudiom5.h
blob9330315305ed51912d5427faafb9435f610ee781
1 /*
2 * This config file is for iAudio M5
3 */
4 #define TARGET_TREE /* this target is using the target tree system */
6 /* For Rolo and boot loader */
7 #define MODEL_NUMBER 17
9 /* define this if you have recording possibility */
10 #define HAVE_RECORDING
12 /* Define bitmask of input sources - recordable bitmask can be defined
13 explicitly if different */
14 #define INPUT_SRC_CAPS (SRC_CAP_MIC | SRC_CAP_LINEIN)
16 /* define the bitmask of hardware sample rates */
17 #define HW_SAMPR_CAPS (SAMPR_CAP_88 | SAMPR_CAP_44 | SAMPR_CAP_22 | SAMPR_CAP_11)
19 /* define the bitmask of recording sample rates */
20 #define REC_SAMPR_CAPS (SAMPR_CAP_88 | SAMPR_CAP_44 | SAMPR_CAP_22 | SAMPR_CAP_11)
22 /* define this if you have a bitmap LCD display */
23 #define HAVE_LCD_BITMAP
25 /* define this if you want album art for this target */
26 #define HAVE_ALBUMART
28 /* define this if you can flip your LCD */
29 #define HAVE_LCD_FLIP
31 /* define this if you can invert the colours on your LCD */
32 #define HAVE_LCD_INVERT
34 /* define this if you have access to the quickscreen */
35 #define HAVE_QUICKSCREEN
37 /* define this if you have access to the pitchscreen */
38 #define HAVE_PITCHSCREEN
40 /* define this if you would like tagcache to build on this target */
41 #define HAVE_TAGCACHE
43 /* LCD dimensions */
44 #define LCD_WIDTH 160
45 #define LCD_HEIGHT 128
46 #define LCD_DEPTH 2
48 #define LCD_PIXELFORMAT VERTICAL_PACKING
50 /* remote LCD */
51 #define LCD_REMOTE_WIDTH 128
52 #define LCD_REMOTE_HEIGHT 96
53 #define LCD_REMOTE_DEPTH 2
55 #define LCD_REMOTE_PIXELFORMAT VERTICAL_INTERLEAVED
57 #define CONFIG_KEYPAD IAUDIO_X5M5_PAD
59 #define AB_REPEAT_ENABLE 1
60 #define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
62 /* Define this if you do software codec */
63 #define CONFIG_CODEC SWCODEC
65 /* define this if you have a real-time clock */
66 #define CONFIG_RTC RTC_PCF50606
68 /* Define this if you have an remote lcd */
69 #define HAVE_REMOTE_LCD
71 #define CONFIG_LCD LCD_S1D15E06
73 /* Define this for LCD backlight available */
74 #define HAVE_BACKLIGHT
76 /* Define this if you have a software controlled poweroff */
77 #define HAVE_SW_POWEROFF
79 /* The number of bytes reserved for loadable codecs */
80 #define CODEC_SIZE 0x80000
82 /* The number of bytes reserved for loadable plugins */
83 #define PLUGIN_BUFFER_SIZE 0x80000
85 #define HAVE_TLV320
87 /* TLV320 has no tone controls, so we use the software ones */
88 #define HAVE_SW_TONE_CONTROLS
90 #define BATTERY_CAPACITY_DEFAULT 950 /* default battery capacity */
91 #define BATTERY_CAPACITY_MIN 950 /* min. capacity selectable */
92 #define BATTERY_CAPACITY_MAX 2250 /* max. capacity selectable */
93 #define BATTERY_CAPACITY_INC 50 /* capacity increment */
94 #define BATTERY_TYPES_COUNT 1 /* only one type */
96 /* Hardware controlled charging? FIXME */
97 #define CONFIG_CHARGING CHARGING_SIMPLE
99 #ifndef SIMULATOR
101 /* Define this if your LCD can set contrast */
102 #define HAVE_LCD_CONTRAST
104 /* Define this if you have a Motorola SCF5250 */
105 #define CONFIG_CPU MCF5250
107 /* Define this if you want to use coldfire's i2c interface */
108 #define CONFIG_I2C I2C_COLDFIRE
110 /* define this if the hardware can be powered off while charging */
111 #define HAVE_POWEROFF_WHILE_CHARGING
113 /* The size of the flash ROM */
114 #define FLASH_SIZE 0x400000
116 /* Define this to the CPU frequency */
117 #define CPU_FREQ 11289600
119 /* Define this if you have ATA power-off control */
120 #define HAVE_ATA_POWER_OFF
122 /* Virtual LED (icon) */
123 #define CONFIG_LED LED_VIRTUAL
125 /* Offset ( in the firmware file's header ) to the file CRC */
126 #define FIRMWARE_OFFSET_FILE_CRC 0
128 /* Offset ( in the firmware file's header ) to the real data */
129 #define FIRMWARE_OFFSET_FILE_DATA 8
131 /* Define this if you have adjustable CPU frequency */
132 #define HAVE_ADJUSTABLE_CPU_FREQ
134 #define BOOTFILE_EXT "iaudio"
135 #define BOOTFILE "rockbox." BOOTFILE_EXT
136 #define BOOTDIR "/.rockbox"
138 #define BOOTLOADER_ENTRYPOINT 0x001F0000
139 #define FLASH_ENTRYPOINT 0x00001000
140 #define FLASH_MAGIC 0xfbfbfbf1
142 #endif /* SIMULATOR */
144 /** Port-specific settings **/
146 /* Main LCD contrast range and defaults */
147 #define MIN_CONTRAST_SETTING 24
148 #define MAX_CONTRAST_SETTING 63
149 #define DEFAULT_CONTRAST_SETTING 40
151 /* Remote LCD contrast range and defaults */
152 #define MIN_REMOTE_CONTRAST_SETTING 10
153 #define MAX_REMOTE_CONTRAST_SETTING 35
154 #define DEFAULT_REMOTE_CONTRAST_SETTING 24 /* Match boot contrast */