An error occurred fetching the project authors.
- 23 Sep, 2007 2 commits
-
-
Pierre Ossman authored
Remove the BYTEBLOCK capability and let the broken hosts fail the requests with -EINVAL instead. Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Pierre Ossman authored
Convert the MMC layer to use standard error codes and not its own, incompatible values. Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
- 08 May, 2007 1 commit
-
-
Alex Dubov authored
Socket power must be fully controlled by adapter driver. This also prevents unnecessary power-off of the socket when media driver is unloaded, yet media remains in the socket. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
- 01 May, 2007 13 commits
-
-
Adrian Bunk authored
This patch makes the needlessly global tifm_sd_set_dma_data() static. Signed-off-by:
Adrian Bunk <bunk@stusta.de> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Pierre Ossman authored
Clean up the drivers/mmc directory by moving card and host drivers into subdirectories. Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Pierre Ossman authored
All host drivers were #include:ing mmc/protocol.h just to get access to the OCR bit defines. Move these to host.h instead. Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
Cosmetic changes to the code. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
It was found that delays associated with issue and completion of the commands severely limit performance of the new, fast SD cards. To alleviate this issue scatter-gather emulation in software is implemented for both dma and pio transfer modes. Non-block aligned and high memory sg entries are accounted for. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
Resume should not explicitly check for media type. Instead, it may relay on success of socket initialization. Small changes are introduced to tifm_sd_initialize to make it more robust. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
State machine used to to track mmc command state was found to be fragile and unreliable, making many cards unusable. The safer solution is to perform all needed checks at every card event. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
To allow for switching of trasfer mode (dma/pio) on a per-request basis, pio and dma request issue and completion function are now merged. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
host->flags variable was hosting a collection of bits with different semantics. For clarity, hardware bit masks are now defined as macros, socket flags represented as bit fields and flags (now cmd_flags) only hosts command processing modifiers. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
This wait was needed because of the mmc layer failure to wait for completion of all outstanding commands before host removal. It should be fixed now in the mmc layer. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
tifm_sd_terminate can only lawfully be called on device removal so it can be merged with tifm_sd_remove. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
Remove code duplicating the kernel functionality and clean up data structures involved in driver matching. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
Instead of passing transformed value of adapter interrupt status to socket drivers, implement two separate callbacks - one for card events and another for dma events. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
- 11 Feb, 2007 1 commit
-
-
Alex Dubov authored
TI FlasMedia controller attempts to validate command responses and issues a "status error" if response does not matches its perceived (by controller) value. As mmc layer does its own validation we can safely ignore the controller's opinion. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
- 04 Feb, 2007 11 commits
-
-
Pierre Ossman authored
Since we actively avoid highmem, calling kmap_atomic() instead of page_address() is effectively only obfuscation. Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Pierre Ossman authored
Many controllers have an upper limit on the number of blocks that can be transferred in one request. Allow the host drivers to specify this and make sure we avoid hitting this limit. Also change the max_sectors field to avoid confusion. This makes it map less directly to the block layer limits, but as they didn't apply directly on MMC cards anyway, this isn't a great loss. Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Pierre Ossman authored
Most controllers have an upper limit on the block size. Allow the host drivers to specify this and make sure we avoid hitting this limit. Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
This patch introduces no semantic changes - it is here for estetic purposes. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
In order to support correct suspend and resume several changes were needed: 1. Switch from work_struct to tasklet for command handling. When device suspend is called workqueues are already frozen and can not be used. 2. Separate host initialization code from driver's probe and don't rely on interrupts for host initialization. This, in turn, addresses two problems: a) Resume needs to re-initialize the host, but can not assume that device interrupts were already re-armed. b) Previously, probe will return successfully before really knowing the state of the host, as host interrupts were not armed in time. Now it uses polling to determine the real host state before returning. 3. Separate termination code from driver's remove. Termination may be caused by resume, if media changed type or became unavailable during suspend. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
The register access order when setting hardware timeout was incorrect and causing problems (wrong timeout intervals). This is now fixed. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
Two changes are introduced to software timeout handler in order to simplify its management: 1. The implementation is switched from work_struct to timer 2. Previously, software timeout was rearmed with each interrupt. Now, current request must complete entirely within timeout interval. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
Data buffer for PIO transfer used to be mapped in advance with kmap. Abolish it in favor of on-demand kmap_atomic. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
Alex Dubov authored
Previously, stop command was issued right after BRS (block received/sent) event. Stop command completion event could interfere with the card busy event, causing miscount of the written blocks. This patch ensures that stop command issued as last action for a particular command, after DMA sompletion event and written block count verification. Signed-off-by:
Alex Dubov <oakad@yahoo.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
- 15 Jan, 2007 1 commit
-
-
Philip Langdale authored
During development of SDHC support, it was discovered that the definition for R6 was incorrect. This patch fixes that and patches the drivers that do switch on the response type. Signed-off-by:
Philip Langdale <philipl@overt.org> Cc: Alex Dubov <oakad@yahoo.com> Cc: Pavel Pisa <ppisa@pikron.com> Signed-off-by:
Pierre Ossman <drzeus@drzeus.cx>
-
- 08 Dec, 2006 1 commit
-
-
David Howells authored
This facility provides three entry points: ilog2() Log base 2 of unsigned long ilog2_u32() Log base 2 of u32 ilog2_u64() Log base 2 of u64 These facilities can either be used inside functions on dynamic data: int do_something(long q) { ...; y = ilog2(x) ...; } Or can be used to statically initialise global variables with constant values: unsigned n = ilog2(27); When performing static initialisation, the compiler will report "error: initializer element is not constant" if asked to take a log of zero or of something not reducible to a constant. They treat negative numbers as unsigned. When not dealing with a constant, they fall back to using fls() which permits them to use arch-specific log calculation instructions - such as BSR on x86/x86_64 or SCAN on FRV - if available. [akpm@osdl.org: MMC fix] Signed-off-by:
David Howells <dhowells@redhat.com> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Herbert Xu <herbert@gondor.apana.org.au> Cc: David Howells <dhowells@redhat.com> Cc: Wojtek Kaniewski <wojtekka@toxygen.net> Signed-off-by:
Andrew Morton <akpm@osdl.org> Signed-off-by:
Linus Torvalds <torvalds@osdl.org>
-
- 22 Nov, 2006 1 commit
-
-
David Howells authored
Fix up for make allyesconfig. Signed-Off-By:
David Howells <dhowells@redhat.com>
-
- 25 Oct, 2006 1 commit
-
-
Al Viro authored
Signed-off-by:
Al Viro <viro@zeniv.linux.org.uk> Signed-off-by:
Linus Torvalds <torvalds@osdl.org>
-
- 09 Oct, 2006 1 commit
-
-
Al Viro authored
Signed-off-by:
Al Viro <viro@zeniv.linux.org.uk> Signed-off-by:
Linus Torvalds <torvalds@osdl.org>
-
- 04 Oct, 2006 1 commit
-
-
Alex Dubov authored
Driver for TI Flash Media card reader. At present, only MMC/SD cards are supported. [akpm@osdl.org: cleanups, build fixes] Signed-off-by:
Alex Dubov <oakad@yahoo.com> Cc: Daniel Qarras <dqarras@yahoo.com> Acked-by:
Pierre Ossman <drzeus@drzeus.cx> Cc: Russell King <rmk@arm.linux.org.uk> Signed-off-by:
Andrew Morton <akpm@osdl.org> Signed-off-by:
Linus Torvalds <torvalds@osdl.org>
-