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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Adaptec AAC series RAID controller driver
  3.  * (c) Copyright 2001 Red Hat Inc. <alan@redhat.com>
  4.  *
  5.  * based on the old aacraid driver that is..
  6.  * Adaptec aacraid device driver for Linux.
  7.  *
  8.  * Copyright (c) 2000 Adaptec, Inc. (aacraid@adaptec.com)
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2, or (at your option)
  13.  * any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; see the file COPYING.  If not, write to
  22.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  *
  24.  * Module Name:
  25.  *  sap1sup.c
  26.  *
  27.  * Abstract: Drawbridge specific support functions
  28.  *
  29.  */
  30. #include <linux/config.h>
  31. #include <linux/kernel.h>
  32. #include <linux/init.h>
  33. #include <linux/types.h>
  34. #include <linux/sched.h>
  35. #include <linux/pci.h>
  36. #include <linux/spinlock.h>
  37. #include <linux/slab.h>
  38. #include <linux/blk.h>
  39. #include <linux/delay.h>
  40. #include <linux/completion.h>
  41. #include <asm/semaphore.h>
  42. #include "scsi.h"
  43. #include "hosts.h"
  44. #include "aacraid.h"
  45. static void aac_sa_intr(int irq, void *dev_id, struct pt_regs *regs)
  46. {
  47. struct aac_dev *dev = dev_id;
  48. unsigned short intstat, mask;
  49. intstat = sa_readw(dev, DoorbellReg_p);
  50. /*
  51.  * Read mask and invert because drawbridge is reversed.
  52.  * This allows us to only service interrupts that have been enabled.
  53.  */
  54. mask = ~(sa_readw(dev, SaDbCSR.PRISETIRQMASK));
  55. /* Check to see if this is our interrupt.  If it isn't just return */
  56. if (intstat & mask) {
  57. if (intstat & PrintfReady) {
  58. aac_printf(dev, le32_to_cpu(sa_readl(dev, Mailbox5)));
  59. sa_writew(dev, DoorbellClrReg_p, PrintfReady); /* clear PrintfReady */
  60. sa_writew(dev, DoorbellReg_s, PrintfDone);
  61. } else if (intstat & DOORBELL_1) { // dev -> Host Normal Command Ready
  62. aac_command_normal(&dev->queues->queue[HostNormCmdQueue]);
  63. sa_writew(dev, DoorbellClrReg_p, DOORBELL_1);
  64. } else if (intstat & DOORBELL_2) { // dev -> Host Normal Response Ready
  65. aac_response_normal(&dev->queues->queue[HostNormRespQueue]);
  66. sa_writew(dev, DoorbellClrReg_p, DOORBELL_2);
  67. } else if (intstat & DOORBELL_3) { // dev -> Host Normal Command Not Full
  68. sa_writew(dev, DoorbellClrReg_p, DOORBELL_3);
  69. } else if (intstat & DOORBELL_4) { // dev -> Host Normal Response Not Full
  70. sa_writew(dev, DoorbellClrReg_p, DOORBELL_4);
  71. }
  72. }
  73. }
  74. /**
  75.  * aac_sa_enable_interrupt - enable an interrupt event
  76.  * @dev: Which adapter to enable.
  77.  * @event: Which adapter event.
  78.  *
  79.  * This routine will enable the corresponding adapter event to cause an interrupt on 
  80.  *  the host.
  81.  */
  82.  
  83. void aac_sa_enable_interrupt(struct aac_dev *dev, u32 event)
  84. {
  85. switch (event) {
  86. case HostNormCmdQue:
  87. sa_writew(dev, SaDbCSR.PRICLEARIRQMASK, DOORBELL_1);
  88. break;
  89. case HostNormRespQue:
  90. sa_writew(dev, SaDbCSR.PRICLEARIRQMASK, DOORBELL_2);
  91. break;
  92. case AdapNormCmdNotFull:
  93. sa_writew(dev, SaDbCSR.PRICLEARIRQMASK, DOORBELL_3);
  94. break;
  95. case AdapNormRespNotFull:
  96. sa_writew(dev, SaDbCSR.PRICLEARIRQMASK, DOORBELL_4);
  97. break;
  98. }
  99. }
  100. /**
  101.  * aac_sa_disable_interrupt - disable an interrupt event
  102.  * @dev: Which adapter to enable.
  103.  * @event: Which adapter event.
  104.  *
  105.  * This routine will enable the corresponding adapter event to cause an interrupt on 
  106.  *  the host.
  107.  */
  108. void aac_sa_disable_interrupt (struct aac_dev *dev, u32 event)
  109. {
  110. switch (event) {
  111. case HostNormCmdQue:
  112. sa_writew(dev, SaDbCSR.PRISETIRQMASK, DOORBELL_1);
  113. break;
  114. case HostNormRespQue:
  115. sa_writew(dev, SaDbCSR.PRISETIRQMASK, DOORBELL_2);
  116. break;
  117. case AdapNormCmdNotFull:
  118. sa_writew(dev, SaDbCSR.PRISETIRQMASK, DOORBELL_3);
  119. break;
  120. case AdapNormRespNotFull:
  121. sa_writew(dev, SaDbCSR.PRISETIRQMASK, DOORBELL_4);
  122. break;
  123. }
  124. }
  125. /**
  126.  * aac_sa_notify_adapter - handle adapter notification
  127.  * @dev: Adapter that notification is for
  128.  * @event: Event to notidy
  129.  *
  130.  * Notify the adapter of an event
  131.  */
  132.  
  133. void aac_sa_notify_adapter(struct aac_dev *dev, u32 event)
  134. {
  135. switch (event) {
  136. case AdapNormCmdQue:
  137. sa_writew(dev, DoorbellReg_s,DOORBELL_1);
  138. break;
  139. case HostNormRespNotFull:
  140. sa_writew(dev, DoorbellReg_s,DOORBELL_4);
  141. break;
  142. case AdapNormRespQue:
  143. sa_writew(dev, DoorbellReg_s,DOORBELL_2);
  144. break;
  145. case HostNormCmdNotFull:
  146. sa_writew(dev, DoorbellReg_s,DOORBELL_3);
  147. break;
  148. case HostShutdown:
  149. //sa_sync_cmd(dev, HOST_CRASHING, 0, &ret);
  150. break;
  151. case FastIo:
  152. sa_writew(dev, DoorbellReg_s,DOORBELL_6);
  153. break;
  154. case AdapPrintfDone:
  155. sa_writew(dev, DoorbellReg_s,DOORBELL_5);
  156. break;
  157. default:
  158. BUG();
  159. break;
  160. }
  161. }
  162. /**
  163.  * sa_sync_cmd - send a command and wait
  164.  * @dev: Adapter
  165.  * @command: Command to execute
  166.  * @p1: first parameter
  167.  * @ret: adapter status
  168.  *
  169.  * This routine will send a synchronous comamnd to the adapter and wait 
  170.  * for its completion.
  171.  */
  172. static int sa_sync_cmd(struct aac_dev *dev, unsigned long command, unsigned long p1, unsigned long *ret)
  173. {
  174. unsigned long start;
  175.   int ok;
  176. /*
  177.  * Write the Command into Mailbox 0
  178.  */
  179. sa_writel(dev, Mailbox0, cpu_to_le32(command));
  180. /*
  181.  * Write the parameters into Mailboxes 1 - 4
  182.  */
  183. sa_writel(dev, Mailbox1, cpu_to_le32(p1));
  184. sa_writel(dev, Mailbox2, 0);
  185. sa_writel(dev, Mailbox3, 0);
  186. sa_writel(dev, Mailbox4, 0);
  187. /*
  188.  * Clear the synch command doorbell to start on a clean slate.
  189.  */
  190. sa_writew(dev, DoorbellClrReg_p, DOORBELL_0);
  191. /*
  192.  * Signal that there is a new synch command
  193.  */
  194. sa_writew(dev, DoorbellReg_s, DOORBELL_0);
  195. ok = 0;
  196. start = jiffies;
  197. while(time_before(jiffies, start+30*HZ))
  198. {
  199. /*
  200.  * Delay 5uS so that the monitor gets access
  201.  */
  202. udelay(5);
  203. /*
  204.  * Mon110 will set doorbell0 bit when it has 
  205.  * completed the command.
  206.  */
  207. if(sa_readw(dev, DoorbellReg_p) & DOORBELL_0)  {
  208. ok = 1;
  209. break;
  210. }
  211. set_current_state(TASK_UNINTERRUPTIBLE);
  212. schedule_timeout(1);
  213. }
  214. if (ok != 1)
  215. return -ETIMEDOUT;
  216. /*
  217.  * Clear the synch command doorbell.
  218.  */
  219. sa_writew(dev, DoorbellClrReg_p, DOORBELL_0);
  220. /*
  221.  * Pull the synch status from Mailbox 0.
  222.  */
  223. *ret = le32_to_cpu(sa_readl(dev, Mailbox0));
  224. return 0;
  225. }
  226. /**
  227.  * aac_sa_interrupt_adapter - interrupt an adapter
  228.  * @dev: Which adapter to enable.
  229.  *
  230.  * Breakpoint an adapter.
  231.  */
  232.  
  233. static void aac_sa_interrupt_adapter (struct aac_dev *dev)
  234. {
  235. unsigned long ret;
  236. sa_sync_cmd(dev, BREAKPOINT_REQUEST, 0, &ret);
  237. }
  238. /**
  239.  * aac_sa_start_adapter - activate adapter
  240.  * @dev: Adapter
  241.  *
  242.  * Start up processing on an ARM based AAC adapter
  243.  */
  244. static void aac_sa_start_adapter(struct aac_dev *dev)
  245. {
  246. unsigned long ret;
  247. struct aac_init *init;
  248. /*
  249.  * Fill in the remaining pieces of the init.
  250.  */
  251. init = dev->init;
  252. init->HostElapsedSeconds = cpu_to_le32(jiffies/HZ);
  253. dprintk(("INITn"));
  254. /*
  255.  * Tell the adapter we are back and up and running so it will scan its command
  256.  * queues and enable our interrupts
  257.  */
  258. dev->irq_mask = (PrintfReady | DOORBELL_1 | DOORBELL_2 | DOORBELL_3 | DOORBELL_4);
  259. /*
  260.  * First clear out all interrupts.  Then enable the one's that 
  261.  * we can handle.
  262.  */
  263. dprintk(("MASKn"));
  264. sa_writew(dev, SaDbCSR.PRISETIRQMASK, cpu_to_le16(0xffff));
  265. sa_writew(dev, SaDbCSR.PRICLEARIRQMASK, (PrintfReady | DOORBELL_1 | DOORBELL_2 | DOORBELL_3 | DOORBELL_4));
  266. dprintk(("SYNCCMDn"));
  267. sa_sync_cmd(dev, INIT_STRUCT_BASE_ADDRESS, (unsigned long) dev->init_pa, &ret);
  268. }
  269. /**
  270.  * aac_sa_init - initialize an ARM based AAC card
  271.  * @dev: device to configure
  272.  * @devnum: adapter number
  273.  *
  274.  * Allocate and set up resources for the ARM based AAC variants. The 
  275.  * device_interface in the commregion will be allocated and linked 
  276.  * to the comm region.
  277.  */
  278. int aac_sa_init(struct aac_dev *dev, unsigned long devnum)
  279. {
  280. unsigned long start;
  281. unsigned long status;
  282. int instance;
  283. const char *name;
  284. dev->devnum = devnum;
  285. dprintk(("PREINSTn"));
  286. instance = dev->id;
  287. name     = dev->name;
  288. /*
  289.  * Map in the registers from the adapter.
  290.  */
  291. dprintk(("PREMAPn"));
  292. if((dev->regs.sa = (struct sa_registers *)ioremap((unsigned long)dev->scsi_host_ptr->base, 8192))==NULL)
  293. {
  294. printk(KERN_WARNING "aacraid: unable to map ARM.n" );
  295. return -1;
  296. }
  297. /*
  298.  * Check to see if the board failed any self tests.
  299.  */
  300. if (sa_readl(dev, Mailbox7) & SELF_TEST_FAILED) {
  301. printk(KERN_WARNING "%s%d: adapter self-test failed.n", name, instance);
  302. return -1;
  303. }
  304. /*
  305.  * Check to see if the board panic'd while booting.
  306.  */
  307. if (sa_readl(dev, Mailbox7) & KERNEL_PANIC) {
  308. printk(KERN_WARNING "%s%d: adapter kernel panic'd.n", name, instance);
  309. return -1;
  310. }
  311. start = jiffies;
  312. /*
  313.  * Wait for the adapter to be up and running. Wait up to 3 minutes.
  314.  */
  315. while (!(sa_readl(dev, Mailbox7) & KERNEL_UP_AND_RUNNING)) {
  316. if (time_after(start+180*HZ, jiffies)) {
  317. status = sa_readl(dev, Mailbox7) >> 16;
  318. printk(KERN_WARNING "%s%d: adapter kernel failed to start, init status = %d.n", name, instance, le32_to_cpu(status));
  319. return -1;
  320. }
  321. set_current_state(TASK_UNINTERRUPTIBLE);
  322. schedule_timeout(1);
  323. }
  324. dprintk(("ATIRQn"));
  325. if (request_irq(dev->scsi_host_ptr->irq, aac_sa_intr, SA_SHIRQ|SA_INTERRUPT, "aacraid", (void *)dev ) < 0) {
  326. printk(KERN_WARNING "%s%d: Interrupt unavailable.n", name, instance);
  327. return -1;
  328. }
  329. /*
  330.  * Fill in the function dispatch table.
  331.  */
  332. dev->a_ops.adapter_interrupt = aac_sa_interrupt_adapter;
  333. dev->a_ops.adapter_enable_int = aac_sa_enable_interrupt;
  334. dev->a_ops.adapter_disable_int = aac_sa_disable_interrupt;
  335. dev->a_ops.adapter_notify = aac_sa_notify_adapter;
  336. dprintk(("FUNCDONEn"));
  337. if(aac_init_adapter(dev) == NULL)
  338. return -1;
  339. dprintk(("NEWADAPTDONEn"));
  340. /*
  341.  * Start any kernel threads needed
  342.  */
  343. dev->thread_pid = kernel_thread((int (*)(void *))aac_command_thread, dev, 0);
  344. /*
  345.  * Tell the adapter that all is configure, and it can start 
  346.  * accepting requests
  347.  */
  348. dprintk(("STARTINGn"));
  349. aac_sa_start_adapter(dev);
  350. dprintk(("STARTEDn"));
  351. return 0;
  352. }