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

嵌入式Linux

开发平台:

Unix_Linux

  1. #include <linux/types.h>
  2. #include <linux/mm.h>
  3. #include <linux/blk.h>
  4. #include <linux/sched.h>
  5. #include <linux/version.h>
  6. #include <asm/page.h>
  7. #include <asm/pgtable.h>
  8. #include <asm/mvme147hw.h>
  9. #include <asm/irq.h>
  10. #include "scsi.h"
  11. #include "hosts.h"
  12. #include "wd33c93.h"
  13. #include "mvme147.h"
  14. #include<linux/stat.h>
  15. #define HDATA(ptr) ((struct WD33C93_hostdata *)((ptr)->hostdata))
  16. static struct Scsi_Host *mvme147_host = NULL;
  17. static void mvme147_intr (int irq, void *dummy, struct pt_regs *fp)
  18. {
  19.     if (irq == MVME147_IRQ_SCSI_PORT)
  20. wd33c93_intr (mvme147_host);
  21.     else
  22. m147_pcc->dma_intr = 0x89; /* Ack and enable ints */
  23. }
  24. static int dma_setup (Scsi_Cmnd *cmd, int dir_in)
  25. {
  26.     unsigned char flags = 0x01;
  27.     unsigned long addr = virt_to_bus(cmd->SCp.ptr);
  28.     /* setup dma direction */
  29.     if (!dir_in)
  30. flags |= 0x04;
  31.     /* remember direction */
  32.     HDATA(mvme147_host)->dma_dir = dir_in;
  33.     if (dir_in)
  34.    /* invalidate any cache */
  35. cache_clear (addr, cmd->SCp.this_residual);
  36.     else
  37. /* push any dirty cache */
  38. cache_push (addr, cmd->SCp.this_residual);
  39.     /* start DMA */
  40.     m147_pcc->dma_bcr   = cmd->SCp.this_residual | (1<<24);
  41.     m147_pcc->dma_dadr  = addr;
  42.     m147_pcc->dma_cntrl = flags;
  43.     /* return success */
  44.     return 0;
  45. }
  46. static void dma_stop (struct Scsi_Host *instance, Scsi_Cmnd *SCpnt,
  47.       int status)
  48. {
  49.     m147_pcc->dma_cntrl = 0;
  50. }
  51. int mvme147_detect(Scsi_Host_Template *tpnt)
  52. {
  53.     static unsigned char called = 0;
  54.     wd33c93_regs regs;
  55.     if (!MACH_IS_MVME147 || called)
  56. return 0;
  57.     called++;
  58.     tpnt->proc_name = "MVME147";
  59.     tpnt->proc_info = &wd33c93_proc_info;
  60.     mvme147_host = scsi_register (tpnt, sizeof(struct WD33C93_hostdata));
  61.     if (!mvme147_host)
  62.     goto err_out;
  63.     mvme147_host->base = 0xfffe4000;
  64.     mvme147_host->irq = MVME147_IRQ_SCSI_PORT;
  65.     regs.SASR = (volatile unsigned char *)0xfffe4000;
  66.     regs.SCMD = (volatile unsigned char *)0xfffe4001;
  67.     wd33c93_init(mvme147_host, regs, dma_setup, dma_stop, WD33C93_FS_8_10);
  68.     if (request_irq(MVME147_IRQ_SCSI_PORT, mvme147_intr, 0, "MVME147 SCSI PORT", mvme147_intr))
  69.     goto err_unregister;
  70.     if (request_irq(MVME147_IRQ_SCSI_DMA, mvme147_intr, 0, "MVME147 SCSI DMA", mvme147_intr))
  71.     goto err_free_irq;
  72. #if 0 /* Disabled; causes problems booting */
  73.     m147_pcc->scsi_interrupt = 0x10; /* Assert SCSI bus reset */
  74.     udelay(100);
  75.     m147_pcc->scsi_interrupt = 0x00; /* Negate SCSI bus reset */
  76.     udelay(2000);
  77.     m147_pcc->scsi_interrupt = 0x40; /* Clear bus reset interrupt */
  78. #endif
  79.     m147_pcc->scsi_interrupt = 0x09; /* Enable interrupt */
  80.     m147_pcc->dma_cntrl = 0x00; /* ensure DMA is stopped */
  81.     m147_pcc->dma_intr = 0x89; /* Ack and enable ints */
  82.     return 1;
  83.  err_free_irq:
  84.     free_irq(MVME147_IRQ_SCSI_PORT, mvme147_intr);
  85.  err_unregister:
  86.     wd33c93_release();
  87.     scsi_unregister(mvme147_host);
  88.  err_out:
  89.     return 0;
  90. }
  91. #define HOSTS_C
  92. #include "mvme147.h"
  93. static Scsi_Host_Template driver_template = MVME147_SCSI;
  94. #include "scsi_module.c"
  95. int mvme147_release(struct Scsi_Host *instance)
  96. {
  97. #ifdef MODULE
  98.     /* XXX Make sure DMA is stopped! */
  99.     wd33c93_release();
  100.     free_irq(MVME147_IRQ_SCSI_PORT, mvme147_intr);
  101.     free_irq(MVME147_IRQ_SCSI_DMA, mvme147_intr);
  102. #endif
  103.     return 1;
  104. }