summaryrefslogtreecommitdiff
path: root/firmware/export/config-ipodnano2g.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/config-ipodnano2g.h')
-rw-r--r--firmware/export/config-ipodnano2g.h173
1 files changed, 173 insertions, 0 deletions
diff --git a/firmware/export/config-ipodnano2g.h b/firmware/export/config-ipodnano2g.h
new file mode 100644
index 0000000000..31830fd2c1
--- /dev/null
+++ b/firmware/export/config-ipodnano2g.h
@@ -0,0 +1,173 @@
1/*
2 * This config file is for iPod Nano 2nd Generation
3 */
4#define TARGET_TREE /* this target is using the target tree system */
5
6/* For Rolo and boot loader */
7#define MODEL_NUMBER 62
8
9#define MODEL_NAME "Apple iPod Nano 2g"
10
11/* define this if you have recording possibility */
12#define HAVE_RECORDING
13
14/* Define bitmask of input sources - recordable bitmask can be defined
15 explicitly if different */
16#define INPUT_SRC_CAPS (SRC_CAP_LINEIN)
17
18/* define the bitmask of hardware sample rates */
19#define HW_SAMPR_CAPS (SAMPR_CAP_88 | SAMPR_CAP_44 | SAMPR_CAP_22 | SAMPR_CAP_11)
20
21/* define the bitmask of recording sample rates */
22#define REC_SAMPR_CAPS (SAMPR_CAP_88 | SAMPR_CAP_44 | SAMPR_CAP_22 | SAMPR_CAP_11)
23
24/* define this if you have a bitmap LCD display */
25#define HAVE_LCD_BITMAP
26
27/* define this if you can flip your LCD */
28//#define HAVE_LCD_FLIP
29
30/* define this if you have a colour LCD */
31#define HAVE_LCD_COLOR
32
33/* define this if you want album art for this target */
34#define HAVE_ALBUMART
35
36/* define this to enable bitmap scaling */
37#define HAVE_BMP_SCALING
38
39/* define this to enable JPEG decoding */
40#define HAVE_JPEG
41
42/* define this if you can invert the colours on your LCD */
43//#define HAVE_LCD_INVERT
44
45/* define this if you have access to the quickscreen */
46#define HAVE_QUICKSCREEN
47
48/* define this if you have access to the pitchscreen */
49#define HAVE_PITCHSCREEN
50
51/* define this if you would like tagcache to build on this target */
52#define HAVE_TAGCACHE
53
54/* define this if you have a flash memory storage */
55#define HAVE_FLASH_STORAGE
56
57#define CONFIG_STORAGE STORAGE_NAND
58
59#define CONFIG_NAND NAND_SAMSUNG
60
61/* LCD dimensions */
62#define LCD_WIDTH 176
63#define LCD_HEIGHT 132
64#define LCD_DEPTH 16 /* pseudo 262.144 colors */
65#define LCD_PIXELFORMAT RGB565 /* rgb565 */
66
67/* Define this if your LCD can be enabled/disabled */
68//#define HAVE_LCD_ENABLE
69
70/* Define this if your LCD can be put to sleep. HAVE_LCD_ENABLE
71 should be defined as well. */
72//#define HAVE_LCD_SLEEP
73
74#define CONFIG_KEYPAD IPOD_4G_PAD
75
76//#define AB_REPEAT_ENABLE 1
77//#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
78
79/* Define this if you do software codec */
80#define CONFIG_CODEC SWCODEC
81
82/* define this if you have a real-time clock */
83//#define CONFIG_RTC RTC_S5L8700
84#define CONFIG_RTC RTC_S35390A
85
86#define CONFIG_LCD LCD_NANO2G
87
88/* Define the type of audio codec */
89#define HAVE_WM8975
90
91/* Define this for LCD backlight available */
92#define HAVE_BACKLIGHT
93#define HAVE_BACKLIGHT_BRIGHTNESS
94
95/* Define this if you have a software controlled poweroff */
96#define HAVE_SW_POWEROFF
97
98/* The number of bytes reserved for loadable codecs */
99#define CODEC_SIZE 0x100000
100
101/* The number of bytes reserved for loadable plugins */
102#define PLUGIN_BUFFER_SIZE 0x80000
103
104
105#define BATTERY_CAPACITY_DEFAULT 700 /* default battery capacity */
106#define BATTERY_CAPACITY_MIN 500 /* min. capacity selectable */
107#define BATTERY_CAPACITY_MAX 2250 /* max. capacity selectable */
108#define BATTERY_CAPACITY_INC 50 /* capacity increment */
109#define BATTERY_TYPES_COUNT 1 /* only one type */
110
111/* Hardware controlled charging? FIXME */
112#define CONFIG_CHARGING CHARGING_SIMPLE
113
114#ifndef SIMULATOR
115
116/* Define this if your LCD can set contrast */
117//#define HAVE_LCD_CONTRAST
118
119/* The exact type of CPU */
120#define CONFIG_CPU S5L8701
121
122/* I2C interface */
123#define CONFIG_I2C I2C_S5L8700
124
125/* define this if the hardware can be powered off while charging */
126#define HAVE_POWEROFF_WHILE_CHARGING
127
128/* The size of the flash ROM */
129#define FLASH_SIZE 0x400000
130
131/* Define this to the CPU frequency */
132#define CPU_FREQ 200000000
133
134/* Define this if you have ATA power-off control */
135//#define HAVE_ATA_POWER_OFF
136
137/* Offset ( in the firmware file's header ) to the file CRC */
138#define FIRMWARE_OFFSET_FILE_CRC 0
139
140/* Offset ( in the firmware file's header ) to the real data */
141#define FIRMWARE_OFFSET_FILE_DATA 8
142
143/* USB On-the-go */
144//#define CONFIG_USBOTG USBOTG_M5636
145
146/* Define this if you have adjustable CPU frequency */
147#define HAVE_ADJUSTABLE_CPU_FREQ
148
149#define BOOTFILE_EXT "ipod"
150#define BOOTFILE "rockbox." BOOTFILE_EXT
151#define BOOTDIR "/.rockbox"
152
153#define BOOTLOADER_ENTRYPOINT 0x001F0000
154#define FLASH_ENTRYPOINT 0x00001000
155#define FLASH_MAGIC 0xfbfbfbf1
156
157#endif /* SIMULATOR */
158
159/* Define this for FM radio input available */
160#define HAVE_FMRADIO_IN
161
162/** Port-specific settings **/
163
164/* Main LCD contrast range and defaults */
165#define MIN_CONTRAST_SETTING 1
166#define MAX_CONTRAST_SETTING 30
167#define DEFAULT_CONTRAST_SETTING 19 /* Match boot contrast */
168
169/* Main LCD backlight brightness range and defaults */
170#define MIN_BRIGHTNESS_SETTING 0
171#define MAX_BRIGHTNESS_SETTING 15
172#define DEFAULT_BRIGHTNESS_SETTING 10
173