Serial driver for imx31. Perhaps not 100% but maybe 80-90% (future developments will...
[kugel-rb.git] / firmware / export / config-ipodvideo.h
blob364ae65d3f5a329b73c42cf450575acddfec64de
1 /*
2 * This config file is for the Apple iPod Video
3 */
4 #define TARGET_TREE /* this target is using the target tree system */
6 #define IPOD_ARCH 1
8 /* For Rolo and boot loader */
9 #define MODEL_NUMBER 5
11 /* define this if you use an ATA controller */
12 #define HAVE_ATA
14 /* define this if you have recording possibility */
15 #define HAVE_RECORDING
17 /* Define bitmask of input sources - recordable bitmask can be defined
18 explicitly if different */
19 #define INPUT_SRC_CAPS (SRC_CAP_MIC | SRC_CAP_LINEIN)
21 /* define the bitmask of hardware sample rates */
22 #define HW_SAMPR_CAPS (SAMPR_CAP_44)
24 /* define the bitmask of recording sample rates */
25 #define REC_SAMPR_CAPS (SAMPR_CAP_44)
27 /* define this if you have a bitmap LCD display */
28 #define HAVE_LCD_BITMAP
30 /* define this if you have a colour LCD */
31 #define HAVE_LCD_COLOR
33 /* define this if you want album art for this target */
34 #define HAVE_ALBUMART
36 /* define this if you have access to the quickscreen */
37 #define HAVE_QUICKSCREEN
38 /* define this if you have access to the pitchscreen */
39 #define HAVE_PITCHSCREEN
41 /* define this if you would like tagcache to build on this target */
42 #define HAVE_TAGCACHE
44 /* LCD dimensions */
45 #define LCD_WIDTH 320
46 #define LCD_HEIGHT 240
47 #define LCD_DEPTH 16 /* 65536 colours */
48 #define LCD_PIXELFORMAT RGB565 /* rgb565 */
50 #define CONFIG_KEYPAD IPOD_4G_PAD
52 /* Define this if you do software codec */
53 #define CONFIG_CODEC SWCODEC
55 /* define this if you have a real-time clock */
56 #define CONFIG_RTC RTC_PCF50605
58 /* Define if the device can wake from an RTC alarm */
59 #define HAVE_RTC_ALARM
61 /* Define this if you have a software controlled poweroff */
62 #define HAVE_SW_POWEROFF
64 /* The number of bytes reserved for loadable codecs */
65 #define CODEC_SIZE 0x80000
67 /* The number of bytes reserved for loadable plugins */
68 #define PLUGIN_BUFFER_SIZE 0x80000
70 /* Define this if you have the WM8758 audio codec */
71 #define HAVE_WM8758
73 #define AB_REPEAT_ENABLE 1
74 #define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
76 /* Define this for LCD backlight available */
77 #define HAVE_BACKLIGHT
78 #define HAVE_BACKLIGHT_BRIGHTNESS
80 /* Main LCD backlight brightness range and defaults */
81 #define MIN_BRIGHTNESS_SETTING 1
82 #define MAX_BRIGHTNESS_SETTING 32
83 #define DEFAULT_BRIGHTNESS_SETTING 16
85 /* We can fade the backlight by using PWM */
86 #define HAVE_BACKLIGHT_PWM_FADING
88 /* define this if the unit uses a scrollwheel for navigation */
89 #define HAVE_SCROLLWHEEL
90 /* define from which rotation speed [degree/sec] on the acceleration starts */
91 #define WHEEL_ACCEL_START 270
92 /* define type of acceleration (1 = ^2, 2 = ^3, 3 = ^4) */
93 #define WHEEL_ACCELERATION 3
95 /* Define this if you can detect headphones */
96 #define HAVE_HEADPHONE_DETECTION
98 /* Type of mobile power */
99 #if (MEM==32) /* this is the 30GB-model */
100 # define BATTERY_CAPACITY_DEFAULT 400 /* default battery capacity for the 30GB model */
101 # define BATTERY_CAPACITY_MIN 300 /* min. capacity selectable */
102 # define BATTERY_CAPACITY_MAX 800 /* max. capacity selectable */
103 #else /* these are the 60/80GB-models */
104 # define BATTERY_CAPACITY_DEFAULT 600 /* default battery capacity for the 60/80GB model */
105 # define BATTERY_CAPACITY_MIN 500 /* min. capacity selectable */
106 # define BATTERY_CAPACITY_MAX 1000 /* max. capacity selectable */
107 #endif
108 #define BATTERY_CAPACITY_INC 50 /* capacity increment */
109 #define BATTERY_TYPES_COUNT 1 /* only one type */
111 /* Hardware controlled charging with monitoring */
112 #define CONFIG_CHARGING CHARGING_MONITOR
114 /* define this if the unit can be powered or charged via USB */
115 #define HAVE_USB_POWER
117 #ifndef SIMULATOR
119 /* Define this if you have a PortalPlayer PP5022 */
120 #define CONFIG_CPU PP5022
122 /* Define this if you want to use the PP5020 i2c interface */
123 #define CONFIG_I2C I2C_PP5020
125 /* We're able to shut off power to the HDD */
126 #define HAVE_ATA_POWER_OFF
128 /* define this if the hardware can be powered off while charging */
129 //#define HAVE_POWEROFF_WHILE_CHARGING
131 /* The start address index for ROM builds */
132 #define ROM_START 0x00000000
134 /* The size of the flash ROM */
135 #define FLASH_SIZE 0x100000
137 /* Define this to the CPU frequency */
138 #define CPU_FREQ 11289600
140 #define CONFIG_LCD LCD_IPODVIDEO
142 /* Offset ( in the firmware file's header ) to the file length */
143 #define FIRMWARE_OFFSET_FILE_LENGTH 0
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 #define USB_IPODSTYLE
153 /* USB On-the-go */
154 #define CONFIG_USBOTG USBOTG_ARC
156 /* enable these for the experimental usb stack */
157 #define HAVE_USBSTACK
158 #define USB_VENDOR_ID 0x05ac
159 #define USB_PRODUCT_ID 0x1209
161 /* Virtual LED (icon) */
162 #define CONFIG_LED LED_VIRTUAL
164 /* Define this if you have adjustable CPU frequency */
165 #define HAVE_ADJUSTABLE_CPU_FREQ
167 /* Define this if you can read an absolute wheel position */
168 #define HAVE_WHEEL_POSITION
170 /* define this if the device has larger sectors when accessed via USB */
171 /* (only relevant in disk.c, fat.c now always supports large virtual sectors) */
172 #define MAX_LOG_SECTOR_SIZE 2048
174 /* define this if the hard drive uses large physical sectors (ATA-7 feature) */
175 /* and doesn't handle them in the drive firmware */
176 #define MAX_PHYS_SECTOR_SIZE 1024
178 #define BOOTFILE_EXT "ipod"
179 #define BOOTFILE "rockbox." BOOTFILE_EXT
180 #define BOOTDIR "/.rockbox"
182 #define ICODE_ATTR_TREMOR_NOT_MDCT
184 #endif