summaryrefslogtreecommitdiff
path: root/firmware/export/config-ipod1g2g.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/config-ipod1g2g.h')
-rw-r--r--firmware/export/config-ipod1g2g.h171
1 files changed, 171 insertions, 0 deletions
diff --git a/firmware/export/config-ipod1g2g.h b/firmware/export/config-ipod1g2g.h
new file mode 100644
index 0000000000..549af02fdc
--- /dev/null
+++ b/firmware/export/config-ipod1g2g.h
@@ -0,0 +1,171 @@
1/*
2 * This config file is for the Apple iPod 1g and 2g
3 */
4#define TARGET_TREE /* this target is using the target tree system */
5
6#define IPOD_ARCH 1
7
8#define MODEL_NAME "Apple iPod 1g/2g"
9
10/* For Rolo and boot loader */
11#define MODEL_NUMBER 19
12
13/* define this if you use an ATA controller */
14#define CONFIG_STORAGE STORAGE_ATA
15
16/* define this if you have recording possibility
17#define HAVE_RECORDING */
18
19/* define the bitmask of hardware sample rates */
20#define HW_SAMPR_CAPS (SAMPR_CAP_96 | SAMPR_CAP_88 | SAMPR_CAP_48 | \
21 SAMPR_CAP_44 | SAMPR_CAP_32 | SAMPR_CAP_8)
22
23/* define the bitmask of recording sample rates
24#define REC_SAMPR_CAPS (SAMPR_CAP_96 | SAMPR_CAP_88 | SAMPR_CAP_48 | \
25 SAMPR_CAP_44 | SAMPR_CAP_32 | SAMPR_CAP_8) */
26
27/* define this if you have a bitmap LCD display */
28#define HAVE_LCD_BITMAP
29
30/* define this if you want album art for this target */
31#define HAVE_ALBUMART
32
33/* define this to enable bitmap scaling */
34#define HAVE_BMP_SCALING
35
36/* define this to enable JPEG decoding */
37#define HAVE_JPEG
38
39/* define this if you can invert the colours on your LCD */
40#define HAVE_LCD_INVERT
41
42/* define this if the LCD needs to be shutdown */
43#define HAVE_LCD_SHUTDOWN
44
45/* define this if you have access to the quickscreen */
46#define HAVE_QUICKSCREEN
47/* define this if you have access to the pitchscreen */
48#define HAVE_PITCHSCREEN
49
50/* define this if you would like tagcache to build on this target */
51#define HAVE_TAGCACHE
52
53/* LCD dimensions */
54#define LCD_WIDTH 160
55#define LCD_HEIGHT 128
56#define LCD_DEPTH 2 /* 4 colours - 2bpp */
57
58#define LCD_PIXELFORMAT HORIZONTAL_PACKING
59
60/* Display colours, for screenshots and sim (0xRRGGBB) */
61#define LCD_DARKCOLOR 0x000000
62#define LCD_BRIGHTCOLOR 0x648764
63#define LCD_BL_DARKCOLOR 0x000000
64#define LCD_BL_BRIGHTCOLOR 0xdfd8ff
65
66/* define this if you can flip your LCD */
67#define HAVE_LCD_FLIP
68
69#define HAVE_LCD_CONTRAST
70
71/* LCD contrast */
72#define MIN_CONTRAST_SETTING 5
73#define MAX_CONTRAST_SETTING 63
74#define DEFAULT_CONTRAST_SETTING 30 /* Match boot contrast */
75
76#define CONFIG_KEYPAD IPOD_1G2G_PAD
77
78#define HAVE_SCROLLWHEEL
79
80/* Define this if you do software codec */
81#define CONFIG_CODEC SWCODEC
82
83/* Define this if you have a software controlled poweroff */
84#define HAVE_SW_POWEROFF
85
86/* The number of bytes reserved for loadable codecs */
87#define CODEC_SIZE 0x100000
88
89/* The number of bytes reserved for loadable plugins */
90#define PLUGIN_BUFFER_SIZE 0x80000
91
92/* Define this if you have the WM8731L audio codec */
93#define HAVE_WM8721
94
95/* define this if you have a disk storage, i.e. something
96 that needs spinups and can cause skips when shaked */
97#define HAVE_DISK_STORAGE
98
99/* WM8721 has no tone controls, so we use the software ones */
100#define HAVE_SW_TONE_CONTROLS
101
102/* Define this for LCD backlight available */
103#define HAVE_BACKLIGHT
104
105/* Define this if the backlight unverts LCD appearance */
106#define HAVE_BACKLIGHT_INVERSION
107
108/* Define this if you can detect headphones */
109#define HAVE_HEADPHONE_DETECTION
110
111#define BATTERY_CAPACITY_DEFAULT 1200 /* default battery capacity */
112#define BATTERY_CAPACITY_MIN 1200 /* min. capacity selectable */
113#define BATTERY_CAPACITY_MAX 1900 /* max. capacity selectable */
114#define BATTERY_CAPACITY_INC 50 /* capacity increment */
115#define BATTERY_TYPES_COUNT 1 /* only one type */
116
117/* Hardware controlled charging? FIXME */
118//#define CONFIG_CHARGING CHARGING_SIMPLE
119
120/* FIXME: Don't shutdown on low battery until we have proper suspend. */
121#define NO_LOW_BATTERY_SHUTDOWN
122
123#ifndef SIMULATOR
124
125/* Define this if you have a PortalPlayer PP5002 */
126#define CONFIG_CPU PP5002
127
128/* We're able to shut off power to the HDD */
129#define HAVE_ATA_POWER_OFF
130
131/* Define this if you want to use the PP5002 i2c interface */
132#define CONFIG_I2C I2C_PP5002
133
134/* define this if the hardware can be powered off while charging */
135//#define HAVE_POWEROFF_WHILE_CHARGING
136
137/* The start address index for ROM builds */
138#define ROM_START 0x00000000
139
140/* The size of the flash ROM */
141#define FLASH_SIZE 0x100000
142
143/* Define this to the CPU frequency */
144#define CPU_FREQ 11289600
145
146#define CONFIG_LCD LCD_IPOD2BPP
147
148/* Offset ( in the firmware file's header ) to the file length */
149#define FIRMWARE_OFFSET_FILE_LENGTH 0
150
151/* Offset ( in the firmware file's header ) to the file CRC */
152#define FIRMWARE_OFFSET_FILE_CRC 0
153
154/* Offset ( in the firmware file's header ) to the real data */
155#define FIRMWARE_OFFSET_FILE_DATA 8
156
157#define USB_HANDLED_BY_OF
158/* actually firewire only, but handled like USB */
159
160/* Define this if you have adjustable CPU frequency */
161#define HAVE_ADJUSTABLE_CPU_FREQ
162
163#define BOOTFILE_EXT "ipod"
164#define BOOTFILE "rockbox." BOOTFILE_EXT
165#define BOOTDIR "/.rockbox"
166
167#define ICODE_ATTR_TREMOR_NOT_MDCT
168
169#define IRAM_LCDFRAMEBUFFER IBSS_ATTR /* put the lcd frame buffer in IRAM */
170
171#endif /* SIMULATOR */