annotate packages/devs/disk/generic/mmc/current/ChangeLog @ 2301:67647617a206

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