|
2301
|
1 2006-09-20 Jonathan Larmour <jifl@eCosCentric.com> |
|
|
2 |
|
|
3 * src/mmc_spi.c: DISK_FUNS, DISK_CHANNEL and DISK_CONTROLLER are now |
|
|
4 implicitly static. |
|
|
5 Update DISK_CHANNEL for new io/disk macro definition. |
|
|
6 |
|
|
7 2006-04-05 John Dallaway <jld@ecoscentric.com> |
|
|
8 |
|
|
9 * cdl/devs_disk_mmc.cdl: Add reference to package documentation. |
|
|
10 |
|
|
11 2006-03-17 Jonathan Larmour <jifl@eCosCentric.com> |
|
|
12 |
|
|
13 * src/mmc_spi.c (struct cyg_mmc_spi_disk_info_t): Store underlying |
|
|
14 medium's read/write block length. |
|
|
15 (mmc_spi_check_for_disk): Store underlying medium's |
|
|
16 read/write block length. |
|
|
17 (mmc_spi_disk_lookup): Report medium block size to disk layer. |
|
|
18 (mmc_spi_disk_read): API now requires sector reads to be with length |
|
|
19 of sectors not bytes. |
|
|
20 (mmc_spi_disk_write): Ditto. |
|
|
21 |
|
|
22 2005-10-28 Jonathan Larmour <jifl@eCosCentric.com> |
|
|
23 |
|
|
24 * include/mmc_protocol.h: Move from src/ to here. |
|
|
25 * src/mmc_spi.c: Reflect above move. |
|
|
26 |
|
|
27 2004-08-30 Bart Veer <bartv@ecoscentric.com> |
|
|
28 |
|
|
29 * src/mmc_spi.c (mmc_spi_write_disk_block): disable background |
|
|
30 writes. Some MMC cards don't seem to implement this correctly so |
|
|
31 if you are trying to talking to another SPI device the MMC card |
|
|
32 still replies. |
|
|
33 |
|
|
34 2004-07-03 Bart Veer <bartv@ecoscentric.com> |
|
|
35 |
|
|
36 * src/mmc_spi.c (MMC_SPI_READ_DATA_TOKEN_RETRIES): increase the |
|
|
37 number of iterations. With some cards a read can occasionally take |
|
|
38 50* longer than normal. |
|
|
39 |
|
|
40 2004-07-01 Bart Veer <bartv@ecoscentric.com> |
|
|
41 |
|
|
42 * src/mmc_spi.c: reorganize write code, to work around problems |
|
|
43 with some cards. |
|
|
44 |
|
|
45 2004-06-29 Bart Veer <bartv@ecoscentric.com> |
|
|
46 |
|
|
47 * src/mmc_spi.c: some cards require an extra delay during a mount |
|
|
48 sequence, when doing the first read of a data block. Also added |
|
|
49 some recovery code to the mount code in case a previous session |
|
|
50 left the card still sending data. |
|
|
51 |
|
|
52 2004-06-15 Bart Veer <bartv@ecoscentric.com> |
|
|
53 |
|
|
54 * src/mmc_spi.c (mmc_spi_check_for_disk): allow platform HALs to |
|
|
55 customize the mount sequence. |
|
|
56 |
|
|
57 * doc/disk_mmc.sgml: document the above change. |
|
|
58 |
|
|
59 2004-04-25 Bart Veer <bartv@ecoscentric.com> |
|
|
60 |
|
|
61 * MMC package created |
|
|
62 |
|
|
63 //=========================================================================== |
|
|
64 //####ECOSGPLCOPYRIGHTBEGIN#### |
|
|
65 // ------------------------------------------- |
|
|
66 // This file is part of eCos, the Embedded Configurable Operating System. |
|
|
67 // Copyright (C) 2004, 2005, 2006 eCosCentric Ltd. |
|
|
68 // |
|
|
69 // eCos is free software; you can redistribute it and/or modify it under |
|
|
70 // the terms of the GNU General Public License as published by the Free |
|
|
71 // Software Foundation; either version 2 or (at your option) any later version. |
|
|
72 // |
|
|
73 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY |
|
|
74 // WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
|
75 // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
|
76 // for more details. |
|
|
77 // |
|
|
78 // You should have received a copy of the GNU General Public License along |
|
|
79 // with eCos; if not, write to the Free Software Foundation, Inc., |
|
|
80 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. |
|
|
81 // |
|
|
82 // As a special exception, if other files instantiate templates or use macros |
|
|
83 // or inline functions from this file, or you compile this file and link it |
|
|
84 // with other works to produce a work based on this file, this file does not |
|
|
85 // by itself cause the resulting work to be covered by the GNU General Public |
|
|
86 // License. However the source code for this file must still be made available |
|
|
87 // in accordance with section (3) of the GNU General Public License. |
|
|
88 // |
|
|
89 // This exception does not invalidate any other reasons why a work based on |
|
|
90 // this file might be covered by the GNU General Public License. |
|
|
91 // |
|
|
92 // ------------------------------------------- |
|
|
93 //####ECOSGPLCOPYRIGHTEND#### |
|
|
94 //=========================================================================== |