isense.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/message/fusion/isense.c
  3.  *      Little linux driver / shim that interfaces with the Fusion MPT
  4.  *      Linux base driver to provide english readable strings in SCSI
  5.  *      Error Report logging output.  This module implements SCSI-3
  6.  *      Opcode lookup and a sorted table of SCSI-3 ASC/ASCQ strings.
  7.  *
  8.  *  Copyright (c) 1991-2001 Steven J. Ralston
  9.  *  Written By: Steven J. Ralston
  10.  *  (yes I wrote some of the orig. code back in 1991!)
  11.  *  (mailto:Steve.Ralston@lsil.com)
  12.  *
  13.  *  $Id: isense.c,v 1.28.14.1 2001/08/24 20:07:04 sralston Exp $
  14.  */
  15. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  16. /*
  17.     This program is free software; you can redistribute it and/or modify
  18.     it under the terms of the GNU General Public License as published by
  19.     the Free Software Foundation; version 2 of the License.
  20.     This program is distributed in the hope that it will be useful,
  21.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  22.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23.     GNU General Public License for more details.
  24.     NO WARRANTY
  25.     THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
  26.     CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
  27.     LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
  28.     MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
  29.     solely responsible for determining the appropriateness of using and
  30.     distributing the Program and assumes all risks associated with its
  31.     exercise of rights under this Agreement, including but not limited to
  32.     the risks and costs of program errors, damage to or loss of data,
  33.     programs or equipment, and unavailability or interruption of operations.
  34.     DISCLAIMER OF LIABILITY
  35.     NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
  36.     DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  37.     DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
  38.     ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  39.     TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  40.     USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
  41.     HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
  42.     You should have received a copy of the GNU General Public License
  43.     along with this program; if not, write to the Free Software
  44.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  45. */
  46. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  47. #include <linux/module.h>
  48. #include <linux/kernel.h>
  49. #include <linux/errno.h>
  50. #include <linux/init.h>
  51. #include <linux/version.h>
  52. /* Hmmm, avoid undefined spinlock_t on lk-2.2.14-5.0 */
  53. #if LINUX_VERSION_CODE < KERNEL_VERSION(2,3,0)
  54. #include <asm/spinlock.h>
  55. #endif
  56. #define MODULEAUTHOR "Steven J. Ralston"
  57. #define COPYRIGHT "Copyright (c) 2001 " MODULEAUTHOR
  58. #include "mptbase.h"
  59. #include "isense.h"
  60. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  61. /*
  62.  *  Private data...
  63.  */
  64. /*
  65.  *  YIKES!  I don't usually #include C source files, but..
  66.  *  The following #include's pulls in our needed ASCQ_Table[] array,
  67.  *  ASCQ_TableSz integer, and ScsiOpcodeString[] array!
  68.  */
  69. #include "ascq_tbl.c"
  70. #include "scsiops.c"
  71. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  72. #define my_NAME "SCSI-3 Opcodes & ASC/ASCQ Strings"
  73. #define my_VERSION MPT_LINUX_VERSION_COMMON
  74. #define MYNAM "isense"
  75. EXPORT_NO_SYMBOLS;
  76. MODULE_AUTHOR(MODULEAUTHOR);
  77. MODULE_DESCRIPTION(my_NAME);
  78. MODULE_LICENSE("GPL");
  79. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  80. int __init isense_init(void)
  81. {
  82. show_mptmod_ver(my_NAME, my_VERSION);
  83. /*
  84.  *  Install our handler
  85.  */
  86. if (mpt_register_ascqops_strings(&ASCQ_Table[0], ASCQ_TableSize, ScsiOpcodeString) != 1)
  87. {
  88. printk(KERN_ERR MYNAM ": ERROR: Can't register with Fusion MPT base driver!n");
  89. return -EBUSY;
  90. }
  91. printk(KERN_INFO MYNAM ": Registered SCSI-3 Opcodes & ASC/ASCQ Stringsn");
  92. return 0;
  93. }
  94. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
  95. static void isense_exit(void)
  96. {
  97. #ifdef MODULE
  98. mpt_deregister_ascqops_strings();
  99. #endif
  100. printk(KERN_INFO MYNAM ": Deregistered SCSI-3 Opcodes & ASC/ASCQ Stringsn");
  101. }
  102. module_init(isense_init);
  103. module_exit(isense_exit);
  104. /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/