2006-02-05 16:52:22 +00:00
|
|
|
/*
|
|
|
|
* This config file is for the Apple iPod 3g
|
|
|
|
*/
|
2006-10-05 10:58:51 +00:00
|
|
|
#define TARGET_TREE /* this target is using the target tree system */
|
2006-02-09 00:48:53 +00:00
|
|
|
|
2006-10-05 11:27:47 +00:00
|
|
|
#define IPOD_ARCH 1
|
|
|
|
|
2006-02-05 16:52:22 +00:00
|
|
|
/* For Rolo and boot loader */
|
|
|
|
#define MODEL_NUMBER 7
|
|
|
|
|
|
|
|
/* define this if you have recording possibility */
|
2007-02-20 14:57:14 +00:00
|
|
|
/*#define HAVE_RECORDING*/
|
2006-02-05 16:52:22 +00:00
|
|
|
|
|
|
|
/* define this if you have a bitmap LCD display */
|
2007-02-20 14:57:14 +00:00
|
|
|
#define HAVE_LCD_BITMAP
|
2006-02-05 16:52:22 +00:00
|
|
|
|
2006-09-25 17:03:18 +00:00
|
|
|
/* define this if you can invert the colours on your LCD */
|
|
|
|
#define HAVE_LCD_INVERT
|
|
|
|
|
2006-04-10 03:51:17 +00:00
|
|
|
/* define this if you have access to the quickscreen */
|
|
|
|
#define HAVE_QUICKSCREEN
|
2006-08-16 13:25:45 +00:00
|
|
|
/* define this if you have access to the pitchscreen */
|
|
|
|
#define HAVE_PITCHSCREEN
|
2006-04-10 03:51:17 +00:00
|
|
|
|
2006-10-25 10:17:57 +00:00
|
|
|
/* define this if you would like tagcache to build on this target */
|
|
|
|
#define HAVE_TAGCACHE
|
|
|
|
|
2006-02-05 16:52:22 +00:00
|
|
|
/* LCD dimensions */
|
|
|
|
#define LCD_WIDTH 160
|
|
|
|
#define LCD_HEIGHT 128
|
|
|
|
#define LCD_DEPTH 2 /* 4 colours - 2bpp */
|
|
|
|
|
2006-02-09 00:48:53 +00:00
|
|
|
#define LCD_PIXELFORMAT HORIZONTAL_PACKING
|
|
|
|
|
2006-04-01 23:48:03 +00:00
|
|
|
/* define this if you can flip your LCD */
|
|
|
|
#define HAVE_LCD_FLIP
|
|
|
|
|
2006-10-05 14:46:42 +00:00
|
|
|
/* LCD contrast */
|
|
|
|
#define MIN_CONTRAST_SETTING 5
|
|
|
|
#define MAX_CONTRAST_SETTING 63
|
|
|
|
#define DEFAULT_CONTRAST_SETTING 40 /* Match boot contrast */
|
|
|
|
|
2006-02-05 16:52:22 +00:00
|
|
|
#define CONFIG_KEYPAD IPOD_3G_PAD
|
|
|
|
|
|
|
|
/* Define this if you do software codec */
|
|
|
|
#define CONFIG_CODEC SWCODEC
|
|
|
|
|
|
|
|
/* define this if you have a real-time clock */
|
|
|
|
#define CONFIG_RTC RTC_PCF50605
|
|
|
|
|
|
|
|
/* Define this if you have a software controlled poweroff */
|
|
|
|
#define HAVE_SW_POWEROFF
|
|
|
|
|
|
|
|
/* The number of bytes reserved for loadable codecs */
|
|
|
|
#define CODEC_SIZE 0x80000
|
|
|
|
|
|
|
|
/* The number of bytes reserved for loadable plugins */
|
|
|
|
#define PLUGIN_BUFFER_SIZE 0x80000
|
|
|
|
|
|
|
|
/* Define this if you have the WM8731L audio codec */
|
2006-02-26 15:59:46 +00:00
|
|
|
#define HAVE_WM8731
|
2006-02-05 16:52:22 +00:00
|
|
|
|
2007-02-26 18:36:58 +00:00
|
|
|
/* WM8731 has no tone controls, so we use the software ones */
|
|
|
|
#define HAVE_SW_TONE_CONTROLS
|
|
|
|
|
2006-02-05 16:52:22 +00:00
|
|
|
/* Define this for LCD backlight available */
|
|
|
|
#define CONFIG_BACKLIGHT BL_IPOD3G /* port controlled */
|
|
|
|
|
2006-04-15 13:07:21 +00:00
|
|
|
#define BATTERY_CAPACITY_DEFAULT 630 /* default battery capacity */
|
|
|
|
|
2006-02-05 16:52:22 +00:00
|
|
|
#ifndef SIMULATOR
|
|
|
|
|
2006-08-08 22:03:56 +00:00
|
|
|
/* Define this if your LCD can be enabled/disabled */
|
|
|
|
#define HAVE_LCD_ENABLE
|
|
|
|
|
2006-02-05 16:52:22 +00:00
|
|
|
/* Define this if you have a PortalPlayer PP5002 */
|
|
|
|
#define CONFIG_CPU PP5002
|
|
|
|
|
|
|
|
/* Define this if you want to use the PP5002 i2c interface */
|
|
|
|
#define CONFIG_I2C I2C_PP5002
|
|
|
|
|
|
|
|
/* Type of mobile power */
|
2006-04-14 07:19:24 +00:00
|
|
|
#define CONFIG_BATTERY BATT_LIPOL1300
|
2006-04-15 12:31:33 +00:00
|
|
|
#define BATTERY_CAPACITY_MIN 630 /* min. capacity selectable */
|
|
|
|
#define BATTERY_CAPACITY_MAX 1000 /* max. capacity selectable */
|
|
|
|
#define BATTERY_CAPACITY_INC 10 /* capacity increment */
|
|
|
|
#define BATTERY_TYPES_COUNT 1 /* only one type */
|
2006-04-14 07:19:24 +00:00
|
|
|
#define BATTERY_SCALE_FACTOR 5865
|
2006-02-05 16:52:22 +00:00
|
|
|
|
2006-06-06 22:23:52 +00:00
|
|
|
/* Hardware controlled charging? FIXME */
|
|
|
|
//#define CONFIG_CHARGING CHARGING_SIMPLE
|
2006-02-05 16:52:22 +00:00
|
|
|
|
|
|
|
/* define this if the hardware can be powered off while charging */
|
|
|
|
//#define HAVE_POWEROFF_WHILE_CHARGING
|
|
|
|
|
|
|
|
/* The start address index for ROM builds */
|
|
|
|
#define ROM_START 0x00000000
|
|
|
|
|
2007-02-23 23:22:03 +00:00
|
|
|
/* The size of the flash ROM */
|
|
|
|
#define FLASH_SIZE 0x100000
|
|
|
|
|
2006-02-05 16:52:22 +00:00
|
|
|
/* Define this to the CPU frequency */
|
|
|
|
#define CPU_FREQ 11289600
|
|
|
|
|
|
|
|
#define CONFIG_LCD LCD_IPOD2BPP
|
|
|
|
|
|
|
|
/* Offset ( in the firmware file's header ) to the file length */
|
|
|
|
#define FIRMWARE_OFFSET_FILE_LENGTH 0
|
|
|
|
|
|
|
|
/* Offset ( in the firmware file's header ) to the file CRC */
|
|
|
|
#define FIRMWARE_OFFSET_FILE_CRC 0
|
|
|
|
|
|
|
|
/* Offset ( in the firmware file's header ) to the real data */
|
|
|
|
#define FIRMWARE_OFFSET_FILE_DATA 8
|
|
|
|
|
2006-02-24 20:54:09 +00:00
|
|
|
#define USB_NONE
|
2006-02-05 16:52:22 +00:00
|
|
|
|
|
|
|
/* Virtual LED (icon) */
|
|
|
|
#define CONFIG_LED LED_VIRTUAL
|
|
|
|
|
2007-03-18 20:54:33 +00:00
|
|
|
/* Define if the device can wake from an RTC alarm */
|
|
|
|
#define HAVE_RTC_ALARM
|
|
|
|
|
2006-02-05 16:52:22 +00:00
|
|
|
/* Define this if you have adjustable CPU frequency */
|
2006-07-24 22:49:06 +00:00
|
|
|
#define HAVE_ADJUSTABLE_CPU_FREQ
|
2006-02-05 16:52:22 +00:00
|
|
|
|
2006-09-26 11:15:33 +00:00
|
|
|
/* Define this if you can detect headphones */
|
|
|
|
#define HAVE_HEADPHONE_DETECTION
|
|
|
|
|
2006-02-05 16:52:22 +00:00
|
|
|
#define BOOTFILE_EXT "ipod"
|
|
|
|
#define BOOTFILE "rockbox." BOOTFILE_EXT
|
|
|
|
|
2006-11-09 21:59:27 +00:00
|
|
|
#define ICODE_ATTR_TREMOR_NOT_MDCT
|
|
|
|
|
2006-08-08 22:03:56 +00:00
|
|
|
#endif /* SIMULATOR */
|