summaryrefslogtreecommitdiffstats
path: root/common/usb_storage.c
Commit message (Collapse)AuthorAgeFilesLines
* common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).Jon Loeliger2007-07-041-1/+1
| | | | | | | | | | | | | | This is a compatibility step that allows both the older form and the new form to co-exist for a while until the older can be removed entirely. All transformations are of the form: Before: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) After: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) Signed-off-by: Jon Loeliger <jdl@freescale.com>
* [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write ↵Grant Likely2007-02-201-2/+2
| | | | | | | | | buffer pointers Block device read/write is anonymous data; there is no need to use a typed pointer. void * is fine. Also add a hook for block_read functions Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
* [PATCH 1_4] Merge common get_dev() routines for block devicesGrant Likely2007-02-201-1/+2
| | | | | | | Each of the filesystem drivers duplicate the get_dev routine. This change merges them into a single function in part.c Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
* Coding style cleanupWolfgang Denk2006-10-201-2/+2
|
* Add a fix for a buggy USB device on the FO300 board.Bartlomiej Sieka2006-08-221-0/+25
|
* Fix problems with SanDisk Corporation Cruzer Micro USB memory stick.Bartlomiej Sieka2006-07-131-0/+4
|
* Cleanup for GCC-4.xWolfgang Denk2005-10-131-4/+4
|
* (re)enabled scsi commands do_scsi() and do_scsiboot()Wolfgang Denk2005-08-041-4/+11
| | | | Patch by Denis Peter, 06 Dec 2004
* Coding style cleanupWolfgang Denk2005-08-021-5/+5
|
* Fix low-level OHCI transfers for ARM920t and MPC5xxxWolfgang Denk2005-07-211-45/+74
| | | | | | | | A new, Windows compatible init sequence was also backported from Linux 2.6, but disabled with #undef NEW_INIT_SEQ as it wouldn't change the behaviour of the memopry sticks we tested. Maybe it's not relevant for mass storage devices. For recerence, see file common/usb.c, function usb_new_device(), section #ifdef NEW_INIT_SEQ.
* * Fix minor NAND JFFS2 related issuewdenk2004-05-031-1/+4
| | | | | | | | | * Fixes for SL811 USB controller: - implement workaround for broken memory stick - improve error handling * Increase packet send timeout to 10 ms in cpu/mpc8xx/scc.c to better cope with congested networks.
* * Fix SDRAM timings for LITE5200 / IceCube boardwdenk2004-03-021-2/+6
| | | | | | * Handle Auti-MDIX / connection status for INCA-IP * Fix USB problems when attempting to read 0 bytes
* * Patch by Markus Pietrek, 24 Feb 2004:wdenk2004-02-261-38/+46
| | | | | | | | | | | | | NS9750 DevBoard added * Patch by Pierre AUBERT, 24 Feb 2004 add USB support for MPC5200 * Patch by Steven Scholz, 24 Feb 2004: - fix MII commands to use values from last command * Patch by Torsten Demke, 24 Feb 2004: Add support for the eXalion platform (SPSW-8240, F-30, F-300)
* Add auto-update code for TRAB board using USB memory stickswdenk2003-09-171-1/+1
|
* * Patch by Gary Jennejohn, 11 Sep 2003:wdenk2003-09-111-2/+2
| | | | | | | | | | | - allow for longer timeouts for USB mass storage devices * Patch by Denis Peter, 11 Sep 2003: - fix USB data pointer assignment for bulk only transfer. - prevent to display erased directories in FAT filesystem. * Change output format for NAND flash - make it look like for other memory, too
* * Add support for USB Mass Storage Devices (BBB)wdenk2003-09-101-36/+322
| | | | | | (tested with USB memory sticks only) * Avoid flicker on TRAB's VFD
* * Code cleanup:wdenk2003-06-271-10/+0
| | | | | | | | | - remove trailing white space, trailing empty lines, C++ comments, etc. - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c) * Patches by Kenneth Johansson, 25 Jun 2003: - major rework of command structure (work done mostly by Michal Cendrowski and Joakim Kristiansen)
* Initial revisionwdenk2002-08-171-0/+895
OpenPOWER on IntegriCloud