1 |
786 |
skrzyp |
2008-08-19 Andrew Lunn
|
2 |
|
|
|
3 |
|
|
* cdl/devs_disk_mmc.cdl: Renamed the device to /dev/mmcdiskX so
|
4 |
|
|
that it is unique with respect to other disk drivers.
|
5 |
|
|
|
6 |
|
|
2007-05-30 Hajime Ishitani
|
7 |
|
|
|
8 |
|
|
* src/mmc_spi.c: Revise debug information with addition.
|
9 |
|
|
Add idle to operational retry wait.
|
10 |
|
|
* cdl/devs_disk_mmc.cdl: Add idle to operational retry wait parameter.
|
11 |
|
|
|
12 |
|
|
2006-09-27 Sergei Gavrikov
|
13 |
|
|
|
14 |
|
|
* src/mmc_spi.c: (mmc_spi_disk_lookup): just fixed a missed
|
15 |
|
|
semicolon.
|
16 |
|
|
|
17 |
|
|
2006-09-21 Jonathan Larmour
|
18 |
|
|
|
19 |
|
|
* Contribution of MMC/SPI package from eCosCentric. eCosCentric
|
20 |
|
|
changes prior to contribution are included below for reference:
|
21 |
|
|
|
22 |
|
|
2006-09-20 Jonathan Larmour
|
23 |
|
|
|
24 |
|
|
* src/mmc_spi.c: DISK_FUNS, DISK_CHANNEL and DISK_CONTROLLER are now
|
25 |
|
|
implicitly static.
|
26 |
|
|
Update DISK_CHANNEL for new io/disk macro definition.
|
27 |
|
|
|
28 |
|
|
2006-04-05 John Dallaway
|
29 |
|
|
|
30 |
|
|
* cdl/devs_disk_mmc.cdl: Add reference to package documentation.
|
31 |
|
|
|
32 |
|
|
2006-03-17 Jonathan Larmour
|
33 |
|
|
|
34 |
|
|
* src/mmc_spi.c (struct cyg_mmc_spi_disk_info_t): Store underlying
|
35 |
|
|
medium's read/write block length.
|
36 |
|
|
(mmc_spi_check_for_disk): Store underlying medium's
|
37 |
|
|
read/write block length.
|
38 |
|
|
(mmc_spi_disk_lookup): Report medium block size to disk layer.
|
39 |
|
|
(mmc_spi_disk_read): API now requires sector reads to be with length
|
40 |
|
|
of sectors not bytes.
|
41 |
|
|
(mmc_spi_disk_write): Ditto.
|
42 |
|
|
|
43 |
|
|
2005-10-28 Jonathan Larmour
|
44 |
|
|
|
45 |
|
|
* include/mmc_protocol.h: Move from src/ to here.
|
46 |
|
|
* src/mmc_spi.c: Reflect above move.
|
47 |
|
|
|
48 |
|
|
2004-08-30 Bart Veer
|
49 |
|
|
|
50 |
|
|
* src/mmc_spi.c (mmc_spi_write_disk_block): disable background
|
51 |
|
|
writes. Some MMC cards don't seem to implement this correctly so
|
52 |
|
|
if you are trying to talking to another SPI device the MMC card
|
53 |
|
|
still replies.
|
54 |
|
|
|
55 |
|
|
2004-07-03 Bart Veer
|
56 |
|
|
|
57 |
|
|
* src/mmc_spi.c (MMC_SPI_READ_DATA_TOKEN_RETRIES): increase the
|
58 |
|
|
number of iterations. With some cards a read can occasionally take
|
59 |
|
|
50* longer than normal.
|
60 |
|
|
|
61 |
|
|
2004-07-01 Bart Veer
|
62 |
|
|
|
63 |
|
|
* src/mmc_spi.c: reorganize write code, to work around problems
|
64 |
|
|
with some cards.
|
65 |
|
|
|
66 |
|
|
2004-06-29 Bart Veer
|
67 |
|
|
|
68 |
|
|
* src/mmc_spi.c: some cards require an extra delay during a mount
|
69 |
|
|
sequence, when doing the first read of a data block. Also added
|
70 |
|
|
some recovery code to the mount code in case a previous session
|
71 |
|
|
left the card still sending data.
|
72 |
|
|
|
73 |
|
|
2004-06-15 Bart Veer
|
74 |
|
|
|
75 |
|
|
* src/mmc_spi.c (mmc_spi_check_for_disk): allow platform HALs to
|
76 |
|
|
customize the mount sequence.
|
77 |
|
|
|
78 |
|
|
* doc/disk_mmc.sgml: document the above change.
|
79 |
|
|
|
80 |
|
|
2004-04-25 Bart Veer
|
81 |
|
|
|
82 |
|
|
* MMC package created
|
83 |
|
|
|
84 |
|
|
//===========================================================================
|
85 |
|
|
// ####GPLCOPYRIGHTBEGIN####
|
86 |
|
|
// -------------------------------------------
|
87 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
88 |
|
|
// Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
|
89 |
|
|
//
|
90 |
|
|
// This program is free software; you can redistribute it and/or modify
|
91 |
|
|
// it under the terms of the GNU General Public License as published by
|
92 |
|
|
// the Free Software Foundation; either version 2 or (at your option) any
|
93 |
|
|
// later version.
|
94 |
|
|
//
|
95 |
|
|
// This program is distributed in the hope that it will be useful, but
|
96 |
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
97 |
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
98 |
|
|
// General Public License for more details.
|
99 |
|
|
//
|
100 |
|
|
// You should have received a copy of the GNU General Public License
|
101 |
|
|
// along with this program; if not, write to the
|
102 |
|
|
// Free Software Foundation, Inc., 51 Franklin Street,
|
103 |
|
|
// Fifth Floor, Boston, MA 02110-1301, USA.
|
104 |
|
|
// -------------------------------------------
|
105 |
|
|
// ####GPLCOPYRIGHTEND####
|
106 |
|
|
//===========================================================================
|