diff options
author | Björn Stenberg <bjorn@haxx.se> | 2009-12-07 09:17:48 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2009-12-07 09:17:48 +0000 |
commit | 36a81eb9b98ac7b1dff0d6658dba0255dd579f5f (patch) | |
tree | 81b81008c4cb69c276329ecd50200887c4da4838 /firmware/export/config-yh920.h | |
parent | 66fa5b578904f7df61293d6ce5c08966b5db13db (diff) | |
download | rockbox-36a81eb9b98ac7b1dff0d6658dba0255dd579f5f.tar.gz rockbox-36a81eb9b98ac7b1dff0d6658dba0255dd579f5f.zip |
Reverted r23881 mistakenly committed to branch.v3.4
git-svn-id: svn://svn.rockbox.org/rockbox/branches/v3_4@23882 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/config-yh920.h')
-rw-r--r-- | firmware/export/config-yh920.h | 194 |
1 files changed, 194 insertions, 0 deletions
diff --git a/firmware/export/config-yh920.h b/firmware/export/config-yh920.h new file mode 100644 index 0000000000..e5a0fc8f71 --- /dev/null +++ b/firmware/export/config-yh920.h | |||
@@ -0,0 +1,194 @@ | |||
1 | /* | ||
2 | * This config file is for the Samsung YH-920 | ||
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 58 | ||
9 | #define MODEL_NAME "Samsung YH-920" | ||
10 | |||
11 | /* define this if you have recording possibility */ | ||
12 | /* todo #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_MIC | SRC_CAP_LINEIN ) | ||
17 | |||
18 | /* define the bitmask of hardware sample rates */ | ||
19 | #define HW_SAMPR_CAPS (SAMPR_CAP_48 | SAMPR_CAP_44 | SAMPR_CAP_32 | \ | ||
20 | SAMPR_CAP_24 | SAMPR_CAP_22 | SAMPR_CAP_16 | \ | ||
21 | SAMPR_CAP_11 | SAMPR_CAP_8) | ||
22 | |||
23 | /* define the bitmask of recording sample rates */ | ||
24 | #define REC_SAMPR_CAPS (SAMPR_CAP_48 | SAMPR_CAP_44 | SAMPR_CAP_32 | \ | ||
25 | SAMPR_CAP_24 | SAMPR_CAP_22 | SAMPR_CAP_16 | \ | ||
26 | SAMPR_CAP_11 | SAMPR_CAP_8) | ||
27 | |||
28 | /* Type of LCD */ | ||
29 | #define CONFIG_LCD LCD_S1D15E06 | ||
30 | |||
31 | /* LCD dimensions */ | ||
32 | #define LCD_WIDTH 160 | ||
33 | #define LCD_HEIGHT 128 | ||
34 | #define LCD_DEPTH 2 | ||
35 | #define LCD_PIXELFORMAT VERTICAL_PACKING | ||
36 | |||
37 | /* Display colours, for screenshots and sim (0xRRGGBB) */ | ||
38 | #define LCD_DARKCOLOR 0x000000 | ||
39 | #define LCD_BRIGHTCOLOR 0x5a915a | ||
40 | #define LCD_BL_DARKCOLOR 0x000000 | ||
41 | #define LCD_BL_BRIGHTCOLOR 0xadd8e6 | ||
42 | |||
43 | /* todo */ | ||
44 | /* #ifndef BOOTLOADER */ | ||
45 | #if 0 | ||
46 | /* Define this if your LCD can be enabled/disabled */ | ||
47 | #define HAVE_LCD_ENABLE | ||
48 | |||
49 | /* Define this if your LCD can be put to sleep. HAVE_LCD_ENABLE | ||
50 | * should be defined as well. | ||
51 | * We can currently put the lcd to sleep but it won't wake up properly */ | ||
52 | #define HAVE_LCD_SLEEP | ||
53 | #define HAVE_LCD_SLEEP_SETTING | ||
54 | #endif | ||
55 | |||
56 | /* Define this for LCD backlight available */ | ||
57 | #define HAVE_BACKLIGHT | ||
58 | |||
59 | /* Define this if your LCD can set contrast */ | ||
60 | /* todo #define HAVE_LCD_CONTRAST */ | ||
61 | |||
62 | #define MIN_CONTRAST_SETTING 0 | ||
63 | #define MAX_CONTRAST_SETTING 30 | ||
64 | #define DEFAULT_CONTRAST_SETTING 14 /* Match boot contrast */ | ||
65 | |||
66 | /* define this if you can flip your LCD */ | ||
67 | /* todo #define HAVE_LCD_FLIP */ | ||
68 | |||
69 | /* define this if you can invert the colours on your LCD */ | ||
70 | /* todo #define HAVE_LCD_INVERT */ | ||
71 | |||
72 | /* put the lcd frame buffer in IRAM */ | ||
73 | /* #define IRAM_LCDFRAMEBUFFER IDATA_ATTR */ | ||
74 | |||
75 | /* define this if you have a bitmap LCD display */ | ||
76 | #define HAVE_LCD_BITMAP | ||
77 | |||
78 | /* define this if you want album art for this target */ | ||
79 | #define HAVE_ALBUMART | ||
80 | |||
81 | /* define this to enable bitmap scaling */ | ||
82 | #define HAVE_BMP_SCALING | ||
83 | |||
84 | /* define this to enable JPEG decoding */ | ||
85 | #define HAVE_JPEG | ||
86 | |||
87 | /* define this if you have access to the quickscreen */ | ||
88 | #define HAVE_QUICKSCREEN | ||
89 | |||
90 | /* define this if you have access to the pitchscreen */ | ||
91 | #define HAVE_PITCHSCREEN | ||
92 | |||
93 | /* define this if you would like tagcache to build on this target */ | ||
94 | #define HAVE_TAGCACHE | ||
95 | |||
96 | #define CONFIG_KEYPAD SAMSUNG_YH_PAD | ||
97 | |||
98 | /* Define this if you do software codec */ | ||
99 | #define CONFIG_CODEC SWCODEC | ||
100 | |||
101 | /* define this if you have a real-time clock */ | ||
102 | #ifndef BOOTLOADER | ||
103 | #define CONFIG_RTC RTC_E8564 | ||
104 | /* TODO ??? */ | ||
105 | //#define HAVE_RTC_ALARM | ||
106 | #endif | ||
107 | |||
108 | /* define this if you have a disk storage, i.e. something | ||
109 | that needs spinups and can cause skips when shaked */ | ||
110 | #define HAVE_DISK_STORAGE | ||
111 | |||
112 | /* define this if you use an ATA controller */ | ||
113 | #define CONFIG_STORAGE STORAGE_ATA | ||
114 | |||
115 | /* We're able to shut off power to the HDD */ | ||
116 | #ifndef SIMULATOR | ||
117 | /* todo #define HAVE_ATA_POWER_OFF */ | ||
118 | #endif | ||
119 | |||
120 | /* Define this if you have a software controlled poweroff */ | ||
121 | #define HAVE_SW_POWEROFF | ||
122 | |||
123 | /* The number of bytes reserved for loadable codecs */ | ||
124 | #define CODEC_SIZE 0x100000 | ||
125 | |||
126 | /* The number of bytes reserved for loadable plugins */ | ||
127 | #define PLUGIN_BUFFER_SIZE 0x80000 | ||
128 | |||
129 | /* Define this if you have the AK4537 audio codec */ | ||
130 | #define HAVE_AK4537 | ||
131 | |||
132 | /* AK4537 has no tone controls, so we use the software ones */ | ||
133 | #define HAVE_SW_TONE_CONTROLS | ||
134 | |||
135 | #define AB_REPEAT_ENABLE 1 | ||
136 | |||
137 | #define BATTERY_CAPACITY_DEFAULT 1550 /* default battery capacity */ | ||
138 | #define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */ | ||
139 | #define BATTERY_CAPACITY_MAX 3200 /* max. capacity selectable */ | ||
140 | #define BATTERY_CAPACITY_INC 50 /* capacity increment */ | ||
141 | #define BATTERY_TYPES_COUNT 1 /* only one type */ | ||
142 | |||
143 | /* Hardware controlled charging */ | ||
144 | #define CONFIG_CHARGING CHARGING_SIMPLE | ||
145 | |||
146 | /* define this if the unit can be powered or charged via USB */ | ||
147 | #define HAVE_USB_POWER | ||
148 | |||
149 | #ifndef SIMULATOR | ||
150 | |||
151 | /* Define this if you have a PortalPlayer PP5020 */ | ||
152 | #define CONFIG_CPU PP5020 | ||
153 | |||
154 | /* Define this if you want to use the PP5020 i2c interface */ | ||
155 | #define CONFIG_I2C I2C_PP5020 | ||
156 | |||
157 | /* define this if the hardware can be powered off while charging */ | ||
158 | #define HAVE_POWEROFF_WHILE_CHARGING | ||
159 | |||
160 | /* The start address index for ROM builds */ | ||
161 | #define ROM_START 0x00000000 | ||
162 | |||
163 | /* The size of the flash ROM */ | ||
164 | #define FLASH_SIZE 0x100000 | ||
165 | |||
166 | /* Define this to the CPU frequency */ | ||
167 | #define CPU_FREQ 75000000 | ||
168 | |||
169 | /* USB On-the-go */ | ||
170 | #define CONFIG_USBOTG USBOTG_ARC | ||
171 | |||
172 | /* enable these for the experimental usb stack */ | ||
173 | #define HAVE_USBSTACK | ||
174 | #define USE_ROCKBOX_USB | ||
175 | #define USB_VENDOR_ID 0x04e8 | ||
176 | #define USB_PRODUCT_ID 0x5022 | ||
177 | |||
178 | /* Define this if you have adjustable CPU frequency */ | ||
179 | #define HAVE_ADJUSTABLE_CPU_FREQ | ||
180 | |||
181 | #define MI4_FORMAT | ||
182 | #define BOOTFILE_EXT "mi4" | ||
183 | #define BOOTFILE "rockbox." BOOTFILE_EXT | ||
184 | #define BOOTDIR "/.rockbox" | ||
185 | |||
186 | /* Offset ( in the firmware file's header ) to the file CRC */ | ||
187 | #define FIRMWARE_OFFSET_FILE_CRC 0x00 | ||
188 | |||
189 | /* Offset ( in the firmware file's header ) to the real data */ | ||
190 | #define FIRMWARE_OFFSET_FILE_DATA 0x00 | ||
191 | |||
192 | #define ICODE_ATTR_TREMOR_NOT_MDCT | ||
193 | |||
194 | #endif /* !SIMULATOR */ | ||