Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 17 Aug 2001 11:32:20 -0400 (EDT)
From:      Joe Clarke <marcus@marcuscom.com>
To:        <gabriele@ing.unipi.it>
Cc:        FreeBSD User Questions List <freebsd-questions@FreeBSD.ORG>
Subject:   Re: Promise FastTrack TX2
Message-ID:  <20010817113007.Q59726-200000@shumai.marcuscom.com>
In-Reply-To: <3B7CF2F7.84FA88CF@sssup.it>

next in thread | previous in thread | raw e-mail | index | archive | help

[-- Attachment #1 --]
Attached is a patch to ata-all.c to get this card working in 4.x.

Joe Clarke

On Fri, 17 Aug 2001, Gabriele Cecchetti wrote:

> I'm trying to use this card but it was not recognised by 4.3-RELEASE.
>
> I've check the source this model is not listed in ata driver: the model
> of this card has this identification number: 0x6268105a.
>
> Any chance to get it working ?
>
> Thank in advance
> Gabriele
>
> To Unsubscribe: send mail to majordomo@FreeBSD.org
> with "unsubscribe freebsd-questions" in the body of the message
>
>

[-- Attachment #2 --]
--- ata-all.c.orig	Tue Aug 14 13:38:09 2001
+++ ata-all.c	Tue Aug 14 13:38:11 2001
@@ -323,6 +323,7 @@
 
     case 0x0d30105a:
     case 0x4d30105a:
+	case 0x4d68105a:
 	return "Promise ATA100 controller";
 
     case 0x00041103:
@@ -424,6 +425,7 @@
     case 0x4d38105a: /* Promise 66 & 100 need their clock changed */
     case 0x4d30105a:
     case 0x0d30105a:
+	case 0x4d68105a:
 	outb(rman_get_start(sc->bmio) + 0x11, 
 	     inb(rman_get_start(sc->bmio) + 0x11) | 0x0a);
 	/* FALLTHROUGH */
@@ -1116,6 +1118,7 @@
     case 0x4d38105a:	/* Promise Ultra/Fasttrak 66 */
     case 0x4d30105a:	/* Promise Ultra/Fasttrak 100 */
     case 0x0d30105a:	/* Promise OEM ATA100 */
+	case 0x4d68105a:	/* Promise TX2 ATA100 */
 	if (!(inl(rman_get_start(sc->bmio) + 0x1c) & 
 	      (scp->channel ? 0x00004000 : 0x00000400)))
 	    return;

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010817113007.Q59726-200000>