NCR_D700.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* -*- mode: c; c-basic-offset: 8 -*- */
  2. /* NCR Dual 700 MCA SCSI Driver
  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. /* Notes:
  24.  *
  25.  * Most of the work is done in the chip specific module, 53c700.o
  26.  *
  27.  * TODO List:
  28.  *
  29.  * 1. Extract the SCSI ID from the voyager CMOS table (necessary to
  30.  *    support multi-host environments.
  31.  *
  32.  * */
  33. /* CHANGELOG 
  34.  *
  35.  * Version 2.2
  36.  *
  37.  * Added mca_set_adapter_name().
  38.  *
  39.  * Version 2.1
  40.  *
  41.  * Modularise the driver into a Board piece (this file) and a chip
  42.  * piece 53c700.[ch] and 53c700.scr, added module options.  You can
  43.  * now specify the scsi id by the parameters
  44.  *
  45.  * NCR_D700=slot:<n> [siop:<n>] id:<n> ....
  46.  *
  47.  * They need to be comma separated if compiled into the kernel
  48.  *
  49.  * Version 2.0
  50.  *
  51.  * Initial implementation of TCQ (Tag Command Queueing).  TCQ is full
  52.  * featured and uses the clock algorithm to keep track of outstanding
  53.  * tags and guard against individual tag starvation.  Also fixed a bug
  54.  * in all of the 1.x versions where the D700_data_residue() function
  55.  * was returning results off by 32 bytes (and thus causing the same 32
  56.  * bytes to be written twice corrupting the data block).  It turns out
  57.  * the 53c700 only has a 6 bit DBC and DFIFO registers not 7 bit ones
  58.  * like the 53c710 (The 710 is the only data manual still available,
  59.  * which I'd been using to program the 700).
  60.  *
  61.  * Version 1.2
  62.  *
  63.  * Much improved message handling engine
  64.  *
  65.  * Version 1.1
  66.  *
  67.  * Add code to handle selection reasonably correctly.  By the time we
  68.  * get the selection interrupt, we've already responded, but drop off the
  69.  * bus and hope the selector will go away.
  70.  *
  71.  * Version 1.0:
  72.  *
  73.  *   Initial release.  Fully functional except for procfs and tag
  74.  * command queueing.  Has only been tested on cards with 53c700-66
  75.  * chips and only single ended. Features are
  76.  *
  77.  * 1. Synchronous data transfers to offset 8 (limit of 700-66) and
  78.  *    100ns (10MHz) limit of SCSI-2
  79.  *
  80.  * 2. Disconnection and reselection
  81.  *
  82.  * Testing:
  83.  * 
  84.  *  I've only really tested this with the 700-66 chip, but have done
  85.  * soak tests in multi-device environments to verify that
  86.  * disconnections and reselections are being processed correctly.
  87.  * */
  88. #define NCR_D700_VERSION "2.2"
  89. #include <linux/config.h>
  90. #include <linux/version.h>
  91. #include <linux/kernel.h>
  92. #include <linux/types.h>
  93. #include <linux/string.h>
  94. #include <linux/spinlock.h>
  95. #include <linux/ioport.h>
  96. #include <linux/delay.h>
  97. #include <linux/sched.h>
  98. #include <linux/proc_fs.h>
  99. #include <linux/init.h>
  100. #include <linux/mca.h>
  101. #include <asm/dma.h>
  102. #include <asm/system.h>
  103. #include <asm/io.h>
  104. #include <asm/pgtable.h>
  105. #include <asm/byteorder.h>
  106. #include <linux/blk.h>
  107. #include <linux/module.h>
  108. #include "scsi.h"
  109. #include "hosts.h"
  110. #include "constants.h"
  111. #include "53c700.h"
  112. #include "NCR_D700.h"
  113. #ifndef CONFIG_MCA
  114. #error "NCR_D700 driver only compiles for MCA"
  115. #endif
  116. #ifdef NCR_D700_DEBUG
  117. #define STATIC
  118. #else
  119. #define STATIC static
  120. #endif
  121. char *NCR_D700; /* command line from insmod */
  122. MODULE_AUTHOR("James Bottomley");
  123. MODULE_DESCRIPTION("NCR Dual700 SCSI Driver");
  124. MODULE_LICENSE("GPL");
  125. MODULE_PARM(NCR_D700, "s");
  126. static __u8 __initdata id_array[2*(MCA_MAX_SLOT_NR + 1)] =
  127. { [0 ... 2*(MCA_MAX_SLOT_NR + 1)-1] = 7 };
  128. #ifdef MODULE
  129. #define ARG_SEP ' '
  130. #else
  131. #define ARG_SEP ','
  132. #endif
  133. static int __init
  134. param_setup(char *string)
  135. {
  136. char *pos = string, *next;
  137. int slot = -1, siop = -1;
  138. while(pos != NULL && (next = strchr(pos, ':')) != NULL) {
  139. int val = (int)simple_strtoul(++next, NULL, 0);
  140. if(!strncmp(pos, "slot:", 5))
  141. slot = val;
  142. else if(!strncmp(pos, "siop:", 5))
  143. siop = val;
  144. else if(!strncmp(pos, "id:", 3)) {
  145. if(slot == -1) {
  146. printk(KERN_WARNING "NCR D700: Must specify slot for id parametern");
  147. } else if(slot > MCA_MAX_SLOT_NR) {
  148. printk(KERN_WARNING "NCR D700: Illegal slot %d for id %dn", slot, val);
  149. } else {
  150. if(siop != 0 && siop != 1) {
  151. id_array[slot*2] = val;
  152. id_array[slot*2 + 1] =val;
  153. } else {
  154. id_array[slot*2 + siop] = val;
  155. }
  156. }
  157. }
  158. if((pos = strchr(pos, ARG_SEP)) != NULL)
  159. pos++;
  160. }
  161. return 1;
  162. }
  163. #ifndef MODULE
  164. __setup("NCR_D700=", param_setup);
  165. #endif
  166. /* Detect a D700 card.  Note, because of the set up---the chips are
  167.  * essentially connectecd to the MCA bus independently, it is easier
  168.  * to set them up as two separate host adapters, rather than one
  169.  * adapter with two channels */
  170. STATIC int __init
  171. D700_detect(Scsi_Host_Template *tpnt)
  172. {
  173. int slot = 0;
  174. int found = 0;
  175. int differential;
  176. int banner = 1;
  177. if(!MCA_bus)
  178. return 0;
  179. #ifdef MODULE
  180. if(NCR_D700)
  181. param_setup(NCR_D700);
  182. #endif
  183. for(slot = 0; (slot = mca_find_adapter(NCR_D700_MCA_ID, slot)) != MCA_NOTFOUND; slot++) {
  184. int irq, i;
  185. int pos3j, pos3k, pos3a, pos3b, pos4;
  186. __u32 base_addr, offset_addr;
  187. struct Scsi_Host *host = NULL;
  188. /* enable board interrupt */
  189. pos4 = mca_read_pos(slot, 4);
  190. pos4 |= 0x4;
  191. mca_write_pos(slot, 4, pos4);
  192. mca_write_pos(slot, 6, 9);
  193. pos3j = mca_read_pos(slot, 3);
  194. mca_write_pos(slot, 6, 10);
  195. pos3k = mca_read_pos(slot, 3);
  196. mca_write_pos(slot, 6, 0);
  197. pos3a = mca_read_pos(slot, 3);
  198. mca_write_pos(slot, 6, 1);
  199. pos3b = mca_read_pos(slot, 3);
  200. base_addr = ((pos3j << 8) | pos3k) & 0xfffffff0;
  201. offset_addr = ((pos3a << 8) | pos3b) & 0xffffff70;
  202. irq = (pos4 & 0x3) + 11;
  203. if(irq >= 13)
  204. irq++;
  205. if(banner) {
  206. printk(KERN_NOTICE "NCR D700: Driver Version " NCR_D700_VERSION "n"
  207.        "NCR D700:  Copyright (c) 2001 by James.Bottomley@HansenPartnership.comn"
  208.        "NCR D700:n");
  209. banner = 0;
  210. }
  211. printk(KERN_NOTICE "NCR D700: found in slot %d  irq = %d  I/O base = 0x%xn", slot, irq, offset_addr);
  212. tpnt->proc_name = "NCR_D700";
  213. /*outb(BOARD_RESET, base_addr);*/
  214. /* clear any pending interrupts */
  215. (void)inb(base_addr + 0x08);
  216. /* get modctl, used later for setting diff bits */
  217. switch(differential = (inb(base_addr + 0x08) >> 6)) {
  218. case 0x00:
  219. /* only SIOP1 differential */
  220. differential = 0x02;
  221. break;
  222. case 0x01:
  223. /* Both SIOPs differential */
  224. differential = 0x03;
  225. break;
  226. case 0x03:
  227. /* No SIOPs differential */
  228. differential = 0x00;
  229. break;
  230. default:
  231. printk(KERN_ERR "D700: UNEXPECTED DIFFERENTIAL RESULT 0x%02xn",
  232.        differential);
  233. differential = 0x00;
  234. break;
  235. }
  236. /* plumb in both 700 chips */
  237. for(i=0; i<2; i++) {
  238. __u32 region = offset_addr | (0x80 * i);
  239. struct NCR_700_Host_Parameters *hostdata =
  240. kmalloc(sizeof(struct NCR_700_Host_Parameters),
  241. GFP_KERNEL);
  242. if(hostdata == NULL) {
  243. printk(KERN_ERR "NCR D700: Failed to allocate host data for channel %d, detatchingn", i);
  244. continue;
  245. }
  246. memset(hostdata, 0, sizeof(struct NCR_700_Host_Parameters));
  247. if(request_region(region, 64, "NCR_D700") == NULL) {
  248. printk(KERN_ERR "NCR D700: Failed to reserve IO region 0x%xn", region);
  249. kfree(hostdata);
  250. continue;
  251. }
  252. /* Fill in the three required pieces of hostdata */
  253. hostdata->base = region;
  254. hostdata->differential = (((1<<i) & differential) != 0);
  255. hostdata->clock = NCR_D700_CLOCK_MHZ;
  256. /* and register the chip */
  257. if((host = NCR_700_detect(tpnt, hostdata)) == NULL) {
  258. kfree(hostdata);
  259. release_region(host->base, 64);
  260. continue;
  261. }
  262. host->irq = irq;
  263. /* FIXME: Read this from SUS */
  264. host->this_id = id_array[slot * 2 + i];
  265. printk(KERN_NOTICE "NCR D700: SIOP%d, SCSI id is %dn",
  266.        i, host->this_id);
  267. if(request_irq(irq, NCR_700_intr, SA_SHIRQ, "NCR_D700", host)) {
  268. printk(KERN_ERR "NCR D700, channel %d: irq problem, detatchingn", i);
  269. scsi_unregister(host);
  270. NCR_700_release(host);
  271. continue;
  272. }
  273. found++;
  274. mca_set_adapter_name(slot, "NCR D700 SCSI Adapter (version " NCR_D700_VERSION ")");
  275. }
  276. }
  277. return found;
  278. }
  279. STATIC int
  280. D700_release(struct Scsi_Host *host)
  281. {
  282. struct D700_Host_Parameters *hostdata = 
  283. (struct D700_Host_Parameters *)host->hostdata[0];
  284. NCR_700_release(host);
  285. kfree(hostdata);
  286. free_irq(host->irq, host);
  287. release_region(host->base, 64);
  288. return 1;
  289. }
  290. static Scsi_Host_Template driver_template = NCR_D700_SCSI;
  291. #include "scsi_module.c"