From owner-freebsd-scsi@FreeBSD.ORG Thu Nov 6 15:13:29 2014 Return-Path: Delivered-To: freebsd-scsi@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1C27D1FE for ; Thu, 6 Nov 2014 15:13:29 +0000 (UTC) Received: from cu01176a.smtpx.saremail.com (cu1176c.smtpx.saremail.com [195.16.148.151]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CF002C25 for ; Thu, 6 Nov 2014 15:13:28 +0000 (UTC) Received: from [172.16.2.2] (izaro.sarenet.es [192.148.167.11]) by proxypop02.sare.net (Postfix) with ESMTPSA id 780D99DCF2E for ; Thu, 6 Nov 2014 16:13:26 +0100 (CET) From: Borja Marcos Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: New quirks for Intel 320 SSDs Date: Thu, 6 Nov 2014 16:13:25 +0100 Message-Id: <789D2893-70C9-4312-ADC6-15AC58C6BC77@sarenet.es> To: FreeBSD-scsi Mime-Version: 1.0 (Apple Message framework v1283) X-Mailer: Apple Mail (2.1283) X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Nov 2014 15:13:29 -0000 I stumbled upon two 40 GB Intel 320 SSDs with a new id string. It's very similar to the id string of the Intel 330's, changing just a = letter. The up to date quirks that should be added is: (ata_da.c) { /* * Intel 320 Series SSDs (another ID string) * 4k optimised & trim only works in 4k requests + 4k = aligned */ { T_DIRECT, SIP_MEDIA_FIXED, "*", "INTEL SSDSA2CT*", "*" = }, /*quirks*/ADA_Q_4K }, and of course, (scsi_da.c) { /* * Intel 320 Series SSDs (another ID string) * 4k optimised & trim only works in 4k requests + 4k = aligned */ { T_DIRECT, SIP_MEDIA_FIXED, "*", "INTEL SSDSA2CT*", "*" = }, /*quirks*/DA_Q_4K }, ada1: ATA-8 SATA 2.x device ada1: Serial Number PEPR408501DV040AGN ada1: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes) ada1: Command Queueing enabled ada1: 38166MB (78165360 512 byte sectors: 16H 63S/T 16383C) Cheers, Borja.