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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* -*- mode: c; c-basic-offset: 8 -*- */
  2. /* PARISC LASI driver for the 53c700 chip
  3.  *
  4.  * Copyright (C) 2001 by James.Bottomley@HansenPartnership.com
  5. **-----------------------------------------------------------------------------
  6. **  
  7. **  This program is free software; you can redistribute it and/or modify
  8. **  it under the terms of the GNU General Public License as published by
  9. **  the Free Software Foundation; either version 2 of the License, or
  10. **  (at your option) any later version.
  11. **
  12. **  This program is distributed in the hope that it will be useful,
  13. **  but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. **  GNU General Public License for more details.
  16. **
  17. **  You should have received a copy of the GNU General Public License
  18. **  along with this program; if not, write to the Free Software
  19. **  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. **
  21. **-----------------------------------------------------------------------------
  22.  */
  23. #ifndef _LASI700_H
  24. #define _LASI700_H
  25. static int lasi700_detect(Scsi_Host_Template *);
  26. static int lasi700_driver_callback(struct parisc_device *dev);
  27. static int lasi700_release(struct Scsi_Host *host);
  28. #define LASI700_SCSI {
  29. name: "LASI SCSI 53c700",
  30. proc_name: "lasi700",
  31. detect: lasi700_detect,
  32. release: lasi700_release,
  33. this_id: 7,
  34. }
  35. #define LASI_710_SVERSION 0x082
  36. #define LASI_700_SVERSION 0x071
  37. #define LASI700_ID_TABLE {
  38. hw_type: HPHW_FIO,
  39. sversion: LASI_700_SVERSION,
  40. hversion: HVERSION_ANY_ID,
  41. hversion_rev: HVERSION_REV_ANY_ID,
  42. }
  43. #define LASI710_ID_TABLE {
  44. hw_type: HPHW_FIO,
  45. sversion: LASI_710_SVERSION,
  46. hversion: HVERSION_ANY_ID,
  47. hversion_rev: HVERSION_REV_ANY_ID,
  48. }
  49. #define LASI700_DRIVER {
  50. name: "Lasi SCSI",
  51. id_table: lasi700_scsi_tbl,
  52. probe: lasi700_driver_callback,
  53. }
  54. #define LASI700_CLOCK 25
  55. #define LASI710_CLOCK 40
  56. #define LASI_SCSI_CORE_OFFSET 0x100
  57. #endif