summaryrefslogtreecommitdiff
path: root/firmware/export/config-h10_5gb.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/config-h10_5gb.h')
-rw-r--r--firmware/export/config-h10_5gb.h120
1 files changed, 120 insertions, 0 deletions
diff --git a/firmware/export/config-h10_5gb.h b/firmware/export/config-h10_5gb.h
new file mode 100644
index 0000000000..09b9132525
--- /dev/null
+++ b/firmware/export/config-h10_5gb.h
@@ -0,0 +1,120 @@
1/*
2 * This config file is for the iriver H10 5/6Gb model
3 */
4
5#define TARGET_TREE /* this target is using the target tree system */
6
7/* For Rolo and boot loader */
8#define MODEL_NUMBER 13
9
10/* define this if you have recording possibility */
11/*#define HAVE_RECORDING 1*/ /* TODO: add support for this */
12
13/* define this if you have a bitmap LCD display */
14#define HAVE_LCD_BITMAP 1
15
16/* define this if you have a colour LCD */
17#define HAVE_LCD_COLOR 1
18
19/* define this if you have access to the quickscreen */
20#define HAVE_QUICKSCREEN
21
22/* LCD dimensions */
23#define LCD_WIDTH 128
24#define LCD_HEIGHT 128
25#define LCD_DEPTH 16 /* 65536 colours */
26#define LCD_PIXELFORMAT RGB565SWAPPED /* rgb565 byte-swapped */
27
28/*#define IRAM_LCDFRAMEBUFFER IDATA_ATTR*//* put the lcd frame buffer in IRAM */
29
30#define CONFIG_KEYPAD IRIVER_H10_PAD
31
32/* Define this if you do software codec */
33#define CONFIG_CODEC SWCODEC
34
35/* define this if you have a real-time clock */
36#ifndef BOOTLOADER
37#define CONFIG_RTC RTC_E8564 /* TODO: figure this out */
38#endif
39
40/* Define this if you have a software controlled poweroff */
41#define HAVE_SW_POWEROFF
42
43/* The number of bytes reserved for loadable codecs */
44#define CODEC_SIZE 0x80000
45
46/* The number of bytes reserved for loadable plugins */
47#define PLUGIN_BUFFER_SIZE 0x80000
48
49/* Define this if you have the WM8975 audio codec */
50#define HAVE_WM8731
51
52#define AB_REPEAT_ENABLE 1
53
54/* FM Tuner */
55/*#define CONFIG_TUNER TEA5767
56#define CONFIG_TUNER_XTAL 32768 *//* TODO: what is this? */
57
58/* Define this for LCD backlight available */
59#define CONFIG_BACKLIGHT BL_H10 /* TODO: figure this out, probably not necessary
60 because of target tree stuff */
61
62#define BATTERY_CAPACITY_DEFAULT 700 /* default battery capacity */
63
64#ifndef SIMULATOR
65
66/* Define this if you have a PortalPlayer PP5020 */
67#define CONFIG_CPU PP5020
68
69/* Define this if you want to use the PP5020 i2c interface */
70#define CONFIG_I2C I2C_PP5020
71
72/* Type of mobile power */
73#define CONFIG_BATTERY BATT_BP009
74#define BATTERY_CAPACITY_MIN 700 /* min. capacity selectable */
75#define BATTERY_CAPACITY_MAX 900 /* max. capacity selectable */
76#define BATTERY_CAPACITY_INC 10 /* capacity increment */
77#define BATTERY_TYPES_COUNT 1 /* only one type */
78#define BATTERY_SCALE_FACTOR 5865
79
80/* Hardware controlled charging? FIXME */
81//#define CONFIG_CHARGING CHARGING_SIMPLE
82
83/* define this if the hardware can be powered off while charging */
84/* TODO: should this be set for the H10? */
85//#define HAVE_POWEROFF_WHILE_CHARGING
86
87/* The start address index for ROM builds */
88#define ROM_START 0x00000000
89
90/* Define this to the CPU frequency */
91/* TODO: this is probably wrong */
92#define CPU_FREQ 11289600
93
94/* Type of LCD */
95#define CONFIG_LCD LCD_H10_5GB
96
97/* Offset ( in the firmware file's header ) to the file length */
98#define FIRMWARE_OFFSET_FILE_LENGTH 0
99
100/* Offset ( in the firmware file's header ) to the file CRC */
101#define FIRMWARE_OFFSET_FILE_CRC 0
102
103/* Offset ( in the firmware file's header ) to the real data */
104#define FIRMWARE_OFFSET_FILE_DATA 8
105
106/* #define USB_IPODSTYLE */
107
108/* define this if the unit can be powered or charged via USB */
109#define HAVE_USB_POWER
110
111/* Virtual LED (icon) */
112#define CONFIG_LED LED_VIRTUAL
113
114/* Define this if you have adjustable CPU frequency */
115#define HAVE_ADJUSTABLE_CPU_FREQ
116
117#define BOOTFILE_EXT "h10"
118#define BOOTFILE "rockbox." BOOTFILE_EXT
119
120#endif