mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Compact Flash Serial ATA patch
@ 2006-05-23 10:16 Russell McConnachie
  2006-05-23 17:23 ` Matthew Dharm
  2006-05-23 18:56 ` Alan Cox
  0 siblings, 2 replies; 7+ messages in thread
From: Russell McConnachie @ 2006-05-23 10:16 UTC (permalink / raw)
  To: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 381 bytes --]

I was having some trouble with a serial ATA compact flash adapter with
libata. I wrote a small patch for the kernel to work around the sanity
check, dma blacklisting and device ID detections in ata_dev_classify(). 

I am not exactly a programmer, I'm sure this can be written much better
but for anyone who may run into a similar problem with compact flash.

Russell McConnachie.


[-- Attachment #2: linux-2.6.16.16-compactflash-sata.patch --]
[-- Type: text/x-patch, Size: 1256 bytes --]

822,825c822,845
< 	    ((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
< 		DPRINTK("found ATA device by sig\n");
< 		return ATA_DEV_ATA;
< 	}
---
> 		// Allows the compact flash to work, For some reason our 
> 		// Addonics SATA flash reader/writer. 
> 		// The following types of flash have been used: 
> 		// 	- Infineon 2.0GB
> 		// 	- Sandisk Ultra II 2.0GB 
> 		// 	- Lexar Platinum
> 		//
> 	
> 		// Sandisk Compact Flash
> 		((tf->lbam == 0x30) && (tf->lbah == 0)) ||
> 		 
> 		// Infineon Compact Flash 
> 		((tf->lbam == 0x50) && (tf->lbah == 0)) ||
> 		 
> 		// Infineon Compact Flash 
> 		((tf->lbam == 0x55) && (tf->lbah == 0)) ||
> 		           
> 		// Infineon Compact Flash 
> 		(((tf->lbam > 0x2f) && (tf->lbam < 0x7f))  && (tf->lbah == 0)) ||
> 		 
> 		((tf->lbam == 0x3c) && (tf->lbah == 0xc3))) {
> 		        DPRINTK("found ATA device by sig\n");
> 		        return ATA_DEV_ATA;
> 		}
875a896,897
> 	else if (device == 0)
> 		/* do nothing */ ; 
1335,1336c1357,1358
< 		if (!ata_id_is_ata(dev->id))	/* sanity check */
< 			goto err_out_nosup;
---
> //		if (!ata_id_is_ata(dev->id))	/* sanity check */
> //			goto err_out_nosup;
2235a2258,2260
> 	"MODEL",
> 	"SMI MODEL",
> 	"SanDisk SDCFH-2048",

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-05-24  7:17 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-05-23 10:16 Compact Flash Serial ATA patch Russell McConnachie
2006-05-23 17:23 ` Matthew Dharm
2006-05-23 10:41   ` Russell McConnachie
2006-05-23 18:54   ` Alan Cox
2006-05-23 18:56 ` Alan Cox
2006-05-23 20:47   ` markus reichelt
2006-05-24  7:14     ` Helge Hafting

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®