summaryrefslogtreecommitdiffstats
path: root/firmware
AgeCommit message (Collapse)AuthorFilesLines
2008-08-21Use cached memory for ata_write_sectors(). This seems to finally fix FS#8663Frank Gevaerts1-6/+11
Thanks to Martin Ritter for finding out that the uncached accesses were somehow causing this SERIALIZE_WRITES can probably be removed, but this requires a bit more testing first git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18327 a1c6a512-1295-4272-9138-f99709370657
2008-08-20properly remount the filesystem after usb disconnect with software usbFrank Gevaerts1-0/+3
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18323 a1c6a512-1295-4272-9138-f99709370657
2008-08-19Since several S/PDIF sources do not set the valnogood bit properly, ↵Jens Arnold1-4/+5
valnogood shouldn't be considered as an error. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18322 a1c6a512-1295-4272-9138-f99709370657
2008-08-18Add NAND chip data for Samsung K9F4G08UOM (Sansa M230 512Mb)Rob Purchase1-1/+3
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18311 a1c6a512-1295-4272-9138-f99709370657
2008-08-17Fix a problem reading some ID3v2.4 tags. The data length refers to the size ↵Magnus Holmgren1-6/+1
of the frame without compression, unsynchronization and the like, so it should not be used when skipping unsupported frames in the file. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18304 a1c6a512-1295-4272-9138-f99709370657
2008-08-15The high pass filter setting of the WM8731 seems to work the other way ↵Peter D'Hoye1-1/+1
around. Disabling it removes the DC offset. This fixes FS #9248 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18294 a1c6a512-1295-4272-9138-f99709370657
2008-08-15Greyscale iPods: Fix the default contrast in the bootloader and the core ↵Jens Arnold1-9/+12
before settings are loaded. Especially important on 1st..3rd Gen as we're setting up the LCD controller quite a bit different than the OF on those. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18290 a1c6a512-1295-4272-9138-f99709370657
2008-08-15Change 18 char limit to (LCD_WIDTH/SYSFONT_WIDTH) in panicf() (FS#9282)Maurus Cuelenaere1-4/+5
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18288 a1c6a512-1295-4272-9138-f99709370657
2008-08-15Jz4740: get exception handling workingMaurus Cuelenaere2-10/+42
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18287 a1c6a512-1295-4272-9138-f99709370657
2008-08-15Onda VX747:Maurus Cuelenaere4-3130/+3178
* kill TABs in jz4740.h * clean up LCD * make CONFIG_ORIENTATION work in both ways git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18286 a1c6a512-1295-4272-9138-f99709370657
2008-08-14Apply FS#9155 (Simplified battery bench). This is a simplification/rework of ↵Bertrik Sikken1-2/+0
the current battery bench code. Battery measurements are now done simply once a minute (no more dependency on HDD specific timeouts) and are flushed to disk by using the ata_idle callback instead of polling ata_disk_is_active (this call is removed from the plugin API now) to make the plugin as unobtrusive as possible. This battery bench plugin also works for flash-based targets like sansa e200. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18281 a1c6a512-1295-4272-9138-f99709370657
2008-08-13gcc 4.3.1 quite rightfully warnings when printf-style functions use "formatDaniel Stenberg1-1/+1
not a string literal and no format arguments". Those occurances can (will?) lead to future nasty and surprising bugs. These are just a few of a very large amount of necessary fixes. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18274 a1c6a512-1295-4272-9138-f99709370657
2008-08-11Use shorter fields in sound_settings_info struct to save some bytesNils Wallménius1-5/+5
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18241 a1c6a512-1295-4272-9138-f99709370657
2008-08-10* Get interrupts working (but crashes after 10-30secs)Maurus Cuelenaere8-154/+309
* Make current_tick increase * Convert button driver into SADC driver * Make touchscreen handling work better (still needs good calibration routine) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18240 a1c6a512-1295-4272-9138-f99709370657
2008-08-10ok, that was bigger than expected... reduce the max to 12 open dirs as a ↵Jonathan Gordon2-2/+2
happy compromise.., If you still have errors rethink your directory layout git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18235 a1c6a512-1295-4272-9138-f99709370657
2008-08-10"waste" a bit more RAM on targets with more than 8MB so more directories can ↵Jonathan Gordon2-0/+8
be opened at the same time (most obvious when you have really deep directory trees) closes FS#6410, FS#6512, FS#6514 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18234 a1c6a512-1295-4272-9138-f99709370657
2008-08-09Remove unneeded request_irq()Maurus Cuelenaere1-1/+0
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18230 a1c6a512-1295-4272-9138-f99709370657
2008-08-09* Add interrupt handling (but still not working)Maurus Cuelenaere6-108/+435
* Clean up linker script and bootup routines git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18229 a1c6a512-1295-4272-9138-f99709370657
2008-08-08Add 4 extended latin letters which are needed for Czech and Polish, and an ↵Jens Arnold1-5/+21
additional Greek letter that comes almost for free. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18224 a1c6a512-1295-4272-9138-f99709370657
2008-08-06* Add myself to some areas in docs/MAINTAINERSMaurus Cuelenaere1-0/+3
* Add lcd_call_enable_hook() call git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18204 a1c6a512-1295-4272-9138-f99709370657
2008-08-06* Add basic (non-working) support for NAND flashMaurus Cuelenaere9-47/+423
* Add panicf() handling * Add not-yet-enabled dma acceleration * Other (minor) fixes git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18203 a1c6a512-1295-4272-9138-f99709370657
2008-08-05Apply FS#9195 (LCD disable for sansa c200), which puts the sansa c200 ↵Bertrik Sikken2-1/+25
display controller in standby when the backlight is turned off and thereby improves runtime. I measured 40 minutes improvement over a runtime of about 14h. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18198 a1c6a512-1295-4272-9138-f99709370657
2008-08-05Fix sansa c200 battery type comment.Bertrik Sikken1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18197 a1c6a512-1295-4272-9138-f99709370657
2008-07-30Fix compilingMaurus Cuelenaere1-1/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18149 a1c6a512-1295-4272-9138-f99709370657
2008-07-28Commit FS#9170 by Dave Hooper. Adds support for profiling on ARM, and fixes ↵Michael Giacomelli2-12/+15
various issues with compiling profile builds. Also, note that profile_reader.pl syntax has changed. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18142 a1c6a512-1295-4272-9138-f99709370657
2008-07-27Comment/line length/spelling policeBertrik Sikken1-12/+13
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18127 a1c6a512-1295-4272-9138-f99709370657
2008-07-26commit asap codec. plays .sap files. At the moment it only plays the default ↵Dominik Wenger2-0/+4
song. So subSongs are ignored. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18121 a1c6a512-1295-4272-9138-f99709370657
2008-07-18Fix missing #includes and make local functions static for gigabeatBertrik Sikken14-9/+21
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18091 a1c6a512-1295-4272-9138-f99709370657
2008-07-18Make local variable staticBertrik Sikken1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18089 a1c6a512-1295-4272-9138-f99709370657
2008-07-171) Set svn:keywords where they should've been setMaurus Cuelenaere9-191/+391
2) Onda VX747 specific changes git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18080 a1c6a512-1295-4272-9138-f99709370657
2008-07-17Fix the iPod Photo/Color "type 0 LCD" bug introduced in r17715 by correctly ↵Dave Chapman1-10/+10
initialising the LCD to accept big-endian data (the same format as the "type 1" LCDs). Also some tab policing. Closes FS#9122 and FS#9097 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18079 a1c6a512-1295-4272-9138-f99709370657
2008-07-16Remove obsolete function + cleanup code a bitMaurus Cuelenaere2-14/+6
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18072 a1c6a512-1295-4272-9138-f99709370657
2008-07-16Fix the LCD bug!Maurus Cuelenaere5-13/+49
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18071 a1c6a512-1295-4272-9138-f99709370657
2008-07-16Implement working lcd_off/lcd_on routineMaurus Cuelenaere2-9/+60
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18070 a1c6a512-1295-4272-9138-f99709370657
2008-07-16Switch screen 90 degrees clockwiseMaurus Cuelenaere4-15/+20
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18069 a1c6a512-1295-4272-9138-f99709370657
2008-07-16Use register definesMaurus Cuelenaere2-69/+175
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18068 a1c6a512-1295-4272-9138-f99709370657
2008-07-16Ensure consistency between header file and implementation for iPod drivers, ↵Bertrik Sikken15-6/+25
by #including the appropriate header file and #ifdef'fing out unused code git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18066 a1c6a512-1295-4272-9138-f99709370657
2008-07-15Fix yellowRob Purchase1-1/+0
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18064 a1c6a512-1295-4272-9138-f99709370657
2008-07-15Update the Telechips NAND driver to use the nand_identify() function ↵Rob Purchase2-45/+16
introduced in r18052. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18063 a1c6a512-1295-4272-9138-f99709370657
2008-07-15Fix red for target with insanely wide LCDs.Rob Purchase1-1/+11
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18060 a1c6a512-1295-4272-9138-f99709370657
2008-07-15Update lcd-as-memframe.S to only rotate YUV data for portrait LCDs (and ↵Rob Purchase2-89/+44
remove the D2's temporary C implementation). Enable MpegPlayer dithering option for D2. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18055 a1c6a512-1295-4272-9138-f99709370657
2008-07-15Onda VX747:Maurus Cuelenaere9-44/+503
1) Improve touchscreen handling 2) Add RTC driver 4) Add NAND Flash ID scanning 3) Other minor fixes Nand_ID: Add a generic NAND ID database (currently only containg Samsung chips) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18052 a1c6a512-1295-4272-9138-f99709370657
2008-07-14And set svn:eol-style ...Maurus Cuelenaere7-9602/+9602
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18034 a1c6a512-1295-4272-9138-f99709370657
2008-07-14Remove svn:executableMaurus Cuelenaere19-0/+0
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18033 a1c6a512-1295-4272-9138-f99709370657
2008-07-14Add preliminary support for the Onda VX747 (MIPS target)Maurus Cuelenaere23-0/+10690
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18032 a1c6a512-1295-4272-9138-f99709370657
2008-07-14Revert r18029 as well. It's more complicated than I thought as Rockbox ↵Marc Guay2-2/+2
currently seems to assume that all targets have microphone recording abilities. Will recheck, and verify more thoroughly before committing from now on. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18031 a1c6a512-1295-4272-9138-f99709370657
2008-07-14Revert most of r18029 as recording through line-in is possible on the H10, ↵Marc Guay2-2/+2
just not currently functional. Leave the /nopt for line-in on the Sansas. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18030 a1c6a512-1295-4272-9138-f99709370657
2008-07-14Remove the Mic Recording capacity from the iPod Nano and Video as they can ↵Marc Guay2-2/+2
only record through the dock connector. Manual updated accordingly. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18029 a1c6a512-1295-4272-9138-f99709370657
2008-07-14Fix FS#7541 by removing the line-in recording capacity and the manual entry ↵Marc Guay2-2/+2
for the H10 (and Sansas). More work needs to be done in this department. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18028 a1c6a512-1295-4272-9138-f99709370657
2008-07-13Fix a slightly misleading logfRob Purchase1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18026 a1c6a512-1295-4272-9138-f99709370657