public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 5/5] scsi: megaraid_sas - Version and documentation update
@ 2010-09-23  3:11 bo yang
  2010-10-12 13:21 ` Yang, Bo
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: bo yang @ 2010-09-23  3:11 UTC (permalink / raw)
  To: linux-scsi, akpm, linux-kernel, James.Bottomley, bo.yang

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

Update the version and documentation.

Signed-off-by Bo Yang<bo.yang@lsi.com>

---
 Documentation/scsi/ChangeLog.megaraid_sas |   47 ++++++++++++++++++++++++++++++
 drivers/scsi/megaraid/megaraid_sas.c      |    2 -
 drivers/scsi/megaraid/megaraid_sas.h      |    6 +--
 3 files changed, 51 insertions(+), 4 deletions(-)

[-- Attachment #2: megasas-version.patch --]
[-- Type: application/octet-stream, Size: 3518 bytes --]

diff -rupN old/Documentation/scsi/ChangeLog.megaraid_sas new/Documentation/scsi/ChangeLog.megaraid_sas
--- old/Documentation/scsi/ChangeLog.megaraid_sas	2010-09-17 02:19:46.000000000 -0400
+++ new/Documentation/scsi/ChangeLog.megaraid_sas	2010-09-17 02:19:46.000000000 -0400
@@ -1,3 +1,50 @@
+1 Release Date    : Thur.  May 03, 2010 09:12:45 PST 2009 -
+			(emaild-id:megaraidlinux@lsi.com)
+			Bo Yang
+
+2 Current Version : 00.00.04.31-rc1
+3 Older Version   : 00.00.04.17.1-rc1
+
+1.	Add the Online Controller Reset (OCR) to the Driver.
+	OCR is the new feature for megaraid_sas driver which
+	will allow the fw to do the chip reset which will not
+	affact the OS behavious.
+
+	To add the OCR support, driver need to do: 
+		a). reset the controller chips -- Xscale and Gen2 which
+		will change the function calls and add the reset function
+		related to this two chips.
+		
+		b). during the reset, driver will store the pending cmds
+		which not returned by FW to driver's pending queue.  Driver
+		will re-issue those pending cmds again to FW after the OCR
+		finished.
+		
+		c). In driver's timeout routine, driver will report to
+		OS as reset. Also driver's queue routine will block the
+		cmds until the OCR finished.
+		
+		d). in Driver's ISR routine, if driver get the FW state as
+		state change, FW in Failure status and FW support online controller
+		reset (OCR), driver will start to do the controller reset.
+		
+		e). In driver's IOCTL routine, the application cmds will wait for the
+		OCR to finish, then issue the cmds to FW.
+		 
+		f). Before driver kill adapter, driver will do last chance of
+		OCR to see if driver can bring back the FW.      
+
+2.	Add the support update flag to the driver to tell LSI megaraid_sas
+	application which driver will support the device update.  So application
+	will not need to do the device update after application add/del the device
+	from the system.
+3.	In driver's timeout routine, driver will do three time reset if fw is in 
+	failed state.  Driver will kill adapter if can't bring back FW after the
+	this three times reset.
+4.	Add the input parameter max_sectors to 1MB support to our GEN2 controller.
+	customer can use the input paramenter max_sectors to add 1MB support to GEN2
+	controller.
+
 1 Release Date    : Thur.  Oct 29, 2009 09:12:45 PST 2009 -
 			(emaild-id:megaraidlinux@lsi.com)
 			Bo Yang
diff -rupN old/drivers/scsi/megaraid/megaraid_sas.c new/drivers/scsi/megaraid/megaraid_sas.c
--- old/drivers/scsi/megaraid/megaraid_sas.c	2010-09-17 03:29:29.000000000 -0400
+++ new/drivers/scsi/megaraid/megaraid_sas.c	2010-09-18 08:27:02.000000000 -0400
@@ -10,7 +10,7 @@
  *	   2 of the License, or (at your option) any later version.
  *
  * FILE		: megaraid_sas.c
- * Version     : v00.00.04.17.1-rc1
+ * Version     : v00.00.04.31-rc1
  *
  * Authors:
  *	(email-id : megaraidlinux@lsi.com)
diff -rupN old/drivers/scsi/megaraid/megaraid_sas.h new/drivers/scsi/megaraid/megaraid_sas.h
--- old/drivers/scsi/megaraid/megaraid_sas.h	2010-09-17 02:19:46.000000000 -0400
+++ new/drivers/scsi/megaraid/megaraid_sas.h	2010-09-17 02:19:46.000000000 -0400
@@ -18,9 +18,9 @@
 /*
  * MegaRAID SAS Driver meta data
  */
-#define MEGASAS_VERSION			"00.00.04.17.1-rc1"
-#define MEGASAS_RELDATE			"Oct. 29, 2009"
-#define MEGASAS_EXT_VERSION		"Thu. Oct. 29, 11:41:51 PST 2009"
+#define MEGASAS_VERSION			"00.00.04.31-rc1"
+#define MEGASAS_RELDATE			"May 3, 2010"
+#define MEGASAS_EXT_VERSION		"Mon. May 3, 11:41:51 PST 2010"
 
 /*
  * Device IDs

^ permalink raw reply	[flat|nested] 8+ messages in thread
* [PATCH 5/5] scsi: megaraid_sas - Version and documentation update
@ 2010-08-11 21:12 bo yang
  0 siblings, 0 replies; 8+ messages in thread
From: bo yang @ 2010-08-11 21:12 UTC (permalink / raw)
  To: bo.yang, James.Bottomley, James.Bottomley; +Cc: linux-scsi, akpm, linux-kernel

Update the version and documentation.

Signed-off-by Bo Yang<bo.yang@lsi.com>

---
 Documentation/scsi/ChangeLog.megaraid_sas |   16 +++++++++++++++-
 drivers/scsi/megaraid/megaraid_sas.h      |    6 +++---
 2 files changed, 18 insertions(+), 4 deletions(-)

diff -rupN old/Documentation/scsi/ChangeLog.megaraid_sas
new/Documentation/scsi/ChangeLog.megaraid_sas
--- old/Documentation/scsi/ChangeLog.megaraid_sas	2010-08-10
05:00:31.000000000 -0400
+++ new/Documentation/scsi/ChangeLog.megaraid_sas	2010-08-10
05:09:38.000000000 -0400
@@ -2,7 +2,7 @@
 			(emaild-id:megaraidlinux@lsi.com)
 			Bo Yang

-2 Current Version : 00.00.04.17.1-rc1
+2 Current Version : 00.00.04.31-rc1
 3 Older Version   : 00.00.04.17.1-rc1

 1.	Add the Online Controller Reset (OCR) to the Driver.
@@ -31,6 +31,20 @@
 		e). In driver's IOCTL routine, the application cmds will wait for the
 		OCR to finish, then issue the cmds to FW.
 		
+		f). Before driver kill adapter, driver will do last chance of
+		OCR to see if driver can bring back the FW.
+
+2.	Add the support update flag to the driver to tell LSI megaraid_sas
+	application which driver will support the device update.  So application
+	will not need to do the device update after application add/del the device
+	from the system.
+3.	In driver's timeout routine, driver will do three time reset if fw is in
+	failed state.  Driver will kill adapter if can't bring back FW after the
+	this three times reset.
+4.	Add the input parameter max_sectors to 1MB support to our GEN2 controller.
+	customer can use the input paramenter max_sectors to add 1MB support to GEN2
+	controller.
+
 1 Release Date    : Thur.  Oct 29, 2009 09:12:45 PST 2009 -
 			(emaild-id:megaraidlinux@lsi.com)
 			Bo Yang
diff -rupN old/drivers/scsi/megaraid/megaraid_sas.h
new/drivers/scsi/megaraid/megaraid_sas.h
--- old/drivers/scsi/megaraid/megaraid_sas.h	2010-08-10 04:51:39.000000000 -0400
+++ new/drivers/scsi/megaraid/megaraid_sas.h	2010-08-10 04:36:15.000000000 -0400
@@ -18,9 +18,9 @@
 /*
  * MegaRAID SAS Driver meta data
  */
-#define MEGASAS_VERSION			"00.00.04.17.1-rc1"
-#define MEGASAS_RELDATE			"Oct. 29, 2009"
-#define MEGASAS_EXT_VERSION		"Thu. Oct. 29, 11:41:51 PST 2009"
+#define MEGASAS_VERSION			"00.00.04.31-rc1"
+#define MEGASAS_RELDATE			"May 3, 2010"
+#define MEGASAS_EXT_VERSION		"Mon. May 3, 11:41:51 PST 2010"

 /*
  * Device IDs

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

end of thread, other threads:[~2010-10-27 11:54 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-23  3:11 [PATCH 5/5] scsi: megaraid_sas - Version and documentation update bo yang
2010-10-12 13:21 ` Yang, Bo
2010-10-26 16:12   ` James Bottomley
2010-10-26 17:15     ` Yang, Bo
2010-10-27 11:54       ` Tomas Henzl
2010-10-20 15:31 ` Yang, Bo
2010-10-26 13:49 ` Yang, Bo
  -- strict thread matches above, loose matches on Subject: below --
2010-08-11 21:12 bo yang

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