initial Meizu M6SL port
[Rockbox.git] / firmware / export / config-meizu-m6sl.h
blob1c3b5f8a238173d16ff2b7e94d372ae5725efe78
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 1
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 | SRC_CAP_FMRADIO)
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 can flip your LCD */
26 //#define HAVE_LCD_FLIP
28 /* define this if you have a colour LCD */
29 #define HAVE_LCD_COLOR
31 /* define this if you want album art for this target */
32 #define HAVE_ALBUMART
34 /* define this if you can invert the colours on your LCD */
35 //#define HAVE_LCD_INVERT
37 /* define this if you have access to the quickscreen */
38 #define HAVE_QUICKSCREEN
40 /* define this if you have access to the pitchscreen */
41 #define HAVE_PITCHSCREEN
43 /* define this if you would like tagcache to build on this target */
44 #define HAVE_TAGCACHE
46 /* define this if you have a flash memory storage */
47 #define HAVE_FLASH_STORAGE
49 /* LCD dimensions */
50 #define LCD_WIDTH 320
51 #define LCD_HEIGHT 240
52 #define LCD_DEPTH 16 /* pseudo 262.144 colors */
53 #define LCD_PIXELFORMAT RGB565 /* rgb565 */
55 /* Define this if your LCD can be enabled/disabled */
56 //#define HAVE_LCD_ENABLE
58 /* Define this if your LCD can be put to sleep. HAVE_LCD_ENABLE
59 should be defined as well. */
60 //#define HAVE_LCD_SLEEP
62 #define CONFIG_KEYPAD MEIZU_M6SL_PAD
64 //#define AB_REPEAT_ENABLE 1
65 //#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
67 /* Define this if you do software codec */
68 #define CONFIG_CODEC SWCODEC
70 /* define this if you have a real-time clock */
71 #define CONFIG_RTC RTC_S5L8700
72 //#define CONFIG_RTC RTC_S35390A
74 #define CONFIG_LCD LCD_S6D0129
76 /* Define this for LCD backlight available */
77 #define HAVE_BACKLIGHT
78 #define HAVE_BACKLIGHT_BRIGHTNESS
80 /* Define this if you have a software controlled poweroff */
81 #define HAVE_SW_POWEROFF
83 /* The number of bytes reserved for loadable codecs */
84 #define CODEC_SIZE 0x80000
86 /* The number of bytes reserved for loadable plugins */
87 #define PLUGIN_BUFFER_SIZE 0x80000
89 /* FM Tuner */
90 #define CONFIG_TUNER TEA5760
91 #define CONFIG_TUNER_XTAL 32768
93 //#define HAVE_TLV320
95 /* TLV320 has no tone controls, so we use the software ones */
96 #define HAVE_SW_TONE_CONTROLS
98 #define BATTERY_CAPACITY_DEFAULT 700 /* default battery capacity */
99 #define BATTERY_CAPACITY_MIN 500 /* min. capacity selectable */
100 #define BATTERY_CAPACITY_MAX 2250 /* max. capacity selectable */
101 #define BATTERY_CAPACITY_INC 50 /* capacity increment */
102 #define BATTERY_TYPES_COUNT 1 /* only one type */
104 /* Hardware controlled charging? FIXME */
105 #define CONFIG_CHARGING CHARGING_SIMPLE
107 #ifndef SIMULATOR
109 /* Define this if your LCD can set contrast */
110 //#define HAVE_LCD_CONTRAST
112 /* Define this if you have a Motorola SCF5250 */
113 #define CONFIG_CPU S5L8700
115 /* Define this if you want to use coldfire's i2c interface */
116 #define CONFIG_I2C I2C_S5L8700
118 /* define this if the hardware can be powered off while charging */
119 #define HAVE_POWEROFF_WHILE_CHARGING
121 /* The size of the flash ROM */
122 #define FLASH_SIZE 0x400000
124 /* Define this to the CPU frequency */
125 #define CPU_FREQ 11289600
127 /* Define this if you have ATA power-off control */
128 //#define HAVE_ATA_POWER_OFF
130 /* Virtual LED (icon) */
131 #define CONFIG_LED LED_VIRTUAL
133 /* Offset ( in the firmware file's header ) to the file CRC */
134 #define FIRMWARE_OFFSET_FILE_CRC 0
136 /* Offset ( in the firmware file's header ) to the real data */
137 #define FIRMWARE_OFFSET_FILE_DATA 8
139 /* USB On-the-go */
140 //#define CONFIG_USBOTG USBOTG_M5636
142 /* Define this if you have adjustable CPU frequency */
143 #define HAVE_ADJUSTABLE_CPU_FREQ
145 #define BOOTFILE_EXT "meizu"
146 #define BOOTFILE "rockbox." BOOTFILE_EXT
147 #define BOOTDIR "/.rockbox"
149 #define BOOTLOADER_ENTRYPOINT 0x001F0000
150 #define FLASH_ENTRYPOINT 0x00001000
151 #define FLASH_MAGIC 0xfbfbfbf1
153 #endif /* SIMULATOR */
155 /* Define this for FM radio input available */
156 #define HAVE_FMRADIO_IN
158 /** Port-specific settings **/
160 /* Main LCD contrast range and defaults */
161 #define MIN_CONTRAST_SETTING 1
162 #define MAX_CONTRAST_SETTING 30
163 #define DEFAULT_CONTRAST_SETTING 19 /* Match boot contrast */
165 /* Main LCD backlight brightness range and defaults */
166 /* PCF50506 can output 0%-100% duty cycle but D305A expects %15-100%. */
167 #define MIN_BRIGHTNESS_SETTING 1 /* 15/16 (93.75%) */
168 #define MAX_BRIGHTNESS_SETTING 13 /* 3/16 (18.75%) */
169 #define DEFAULT_BRIGHTNESS_SETTING 8 /* 8/16 (50.00%) = x5 boot default */