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

嵌入式Linux

开发平台:

Unix_Linux

  1. /******************************************************************************
  2. **  High Performance device driver for the Symbios 53C896 controller.
  3. **
  4. **  Copyright (C) 1998-2001  Gerard Roudier <groudier@free.fr>
  5. **
  6. **  This driver also supports all the Symbios 53C8XX controller family, 
  7. **  except 53C810 revisions < 16, 53C825 revisions < 16 and all 
  8. **  revisions of 53C815 controllers.
  9. **
  10. **  This driver is based on the Linux port of the FreeBSD ncr driver.
  11. ** 
  12. **  Copyright (C) 1994  Wolfgang Stanglmeier
  13. **  
  14. **-----------------------------------------------------------------------------
  15. **  
  16. **  This program is free software; you can redistribute it and/or modify
  17. **  it under the terms of the GNU General Public License as published by
  18. **  the Free Software Foundation; either version 2 of the License, or
  19. **  (at your option) any later version.
  20. **
  21. **  This program is distributed in the hope that it will be useful,
  22. **  but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  24. **  GNU General Public License for more details.
  25. **
  26. **  You should have received a copy of the GNU General Public License
  27. **  along with this program; if not, write to the Free Software
  28. **  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  29. **
  30. **-----------------------------------------------------------------------------
  31. **
  32. **  The Linux port of the FreeBSD ncr driver has been achieved in 
  33. **  november 1995 by:
  34. **
  35. **          Gerard Roudier              <groudier@free.fr>
  36. **
  37. **  Being given that this driver originates from the FreeBSD version, and
  38. **  in order to keep synergy on both, any suggested enhancements and corrections
  39. **  received on Linux are automatically a potential candidate for the FreeBSD 
  40. **  version.
  41. **
  42. **  The original driver has been written for 386bsd and FreeBSD by
  43. **          Wolfgang Stanglmeier        <wolf@cologne.de>
  44. **          Stefan Esser                <se@mi.Uni-Koeln.de>
  45. **
  46. **-----------------------------------------------------------------------------
  47. **
  48. **  Major contributions:
  49. **  --------------------
  50. **
  51. **  NVRAM detection and reading.
  52. **    Copyright (C) 1997 Richard Waltham <dormouse@farsrobt.demon.co.uk>
  53. **
  54. *******************************************************************************
  55. */
  56. /*
  57. ** This file contains definitions and code that the 
  58. ** sym53c8xx and ncr53c8xx drivers should share.
  59. ** The sharing will be achieved in a further version  
  60. ** of the driver bundle. For now, only the ncr53c8xx 
  61. ** driver includes this file.
  62. */
  63. #define MIN(a,b)        (((a) < (b)) ? (a) : (b))
  64. #define MAX(a,b)        (((a) > (b)) ? (a) : (b))
  65. /*==========================================================
  66. **
  67. ** Hmmm... What complex some PCI-HOST bridges actually 
  68. ** are, despite the fact that the PCI specifications 
  69. ** are looking so smart and simple! ;-)
  70. **
  71. **==========================================================
  72. */
  73. #if LINUX_VERSION_CODE >= LinuxVersionCode(2,3,47)
  74. #define SCSI_NCR_DYNAMIC_DMA_MAPPING
  75. #endif
  76. /*==========================================================
  77. **
  78. ** Miscallaneous defines.
  79. **
  80. **==========================================================
  81. */
  82. #define u_char unsigned char
  83. #define u_short unsigned short
  84. #define u_int unsigned int
  85. #define u_long unsigned long
  86. #ifndef bcopy
  87. #define bcopy(s, d, n) memcpy((d), (s), (n))
  88. #endif
  89. #ifndef bcmp
  90. #define bcmp(s, d, n) memcmp((d), (s), (n))
  91. #endif
  92. #ifndef bzero
  93. #define bzero(d, n) memset((d), 0, (n))
  94. #endif
  95.  
  96. #ifndef offsetof
  97. #define offsetof(t, m) ((size_t) (&((t *)0)->m))
  98. #endif
  99. /*==========================================================
  100. **
  101. ** assert ()
  102. **
  103. **==========================================================
  104. **
  105. ** modified copy from 386bsd:/usr/include/sys/assert.h
  106. **
  107. **----------------------------------------------------------
  108. */
  109. #define assert(expression) { 
  110. if (!(expression)) { 
  111. (void)panic( 
  112. "assertion "%s" failed: file "%s", line %dn", 
  113. #expression, 
  114. __FILE__, __LINE__); 
  115. }
  116. /*==========================================================
  117. **
  118. ** Debugging tags
  119. **
  120. **==========================================================
  121. */
  122. #define DEBUG_ALLOC    (0x0001)
  123. #define DEBUG_PHASE    (0x0002)
  124. #define DEBUG_QUEUE    (0x0008)
  125. #define DEBUG_RESULT   (0x0010)
  126. #define DEBUG_POINTER  (0x0020)
  127. #define DEBUG_SCRIPT   (0x0040)
  128. #define DEBUG_TINY     (0x0080)
  129. #define DEBUG_TIMING   (0x0100)
  130. #define DEBUG_NEGO     (0x0200)
  131. #define DEBUG_TAGS     (0x0400)
  132. #define DEBUG_SCATTER  (0x0800)
  133. #define DEBUG_IC        (0x1000)
  134. /*
  135. **    Enable/Disable debug messages.
  136. **    Can be changed at runtime too.
  137. */
  138. #ifdef SCSI_NCR_DEBUG_INFO_SUPPORT
  139. static int ncr_debug = SCSI_NCR_DEBUG_FLAGS;
  140. #define DEBUG_FLAGS ncr_debug
  141. #else
  142. #define DEBUG_FLAGS SCSI_NCR_DEBUG_FLAGS
  143. #endif
  144. /*==========================================================
  145. **
  146. ** A la VMS/CAM-3 queue management.
  147. ** Implemented from linux list management.
  148. **
  149. **==========================================================
  150. */
  151. typedef struct xpt_quehead {
  152. struct xpt_quehead *flink; /* Forward  pointer */
  153. struct xpt_quehead *blink; /* Backward pointer */
  154. } XPT_QUEHEAD;
  155. #define xpt_que_init(ptr) do { 
  156. (ptr)->flink = (ptr); (ptr)->blink = (ptr); 
  157. } while (0)
  158. static inline void __xpt_que_add(struct xpt_quehead * new,
  159. struct xpt_quehead * blink,
  160. struct xpt_quehead * flink)
  161. {
  162. flink->blink = new;
  163. new->flink = flink;
  164. new->blink = blink;
  165. blink->flink = new;
  166. }
  167. static inline void __xpt_que_del(struct xpt_quehead * blink,
  168. struct xpt_quehead * flink)
  169. {
  170. flink->blink = blink;
  171. blink->flink = flink;
  172. }
  173. static inline int xpt_que_empty(struct xpt_quehead *head)
  174. {
  175. return head->flink == head;
  176. }
  177. static inline void xpt_que_splice(struct xpt_quehead *list,
  178. struct xpt_quehead *head)
  179. {
  180. struct xpt_quehead *first = list->flink;
  181. if (first != list) {
  182. struct xpt_quehead *last = list->blink;
  183. struct xpt_quehead *at   = head->flink;
  184. first->blink = head;
  185. head->flink  = first;
  186. last->flink = at;
  187. at->blink   = last;
  188. }
  189. }
  190. #define xpt_que_entry(ptr, type, member) 
  191. ((type *)((char *)(ptr)-(unsigned long)(&((type *)0)->member)))
  192. #define xpt_insque(new, pos) __xpt_que_add(new, pos, (pos)->flink)
  193. #define xpt_remque(el) __xpt_que_del((el)->blink, (el)->flink)
  194. #define xpt_insque_head(new, head) __xpt_que_add(new, head, (head)->flink)
  195. static inline struct xpt_quehead *xpt_remque_head(struct xpt_quehead *head)
  196. {
  197. struct xpt_quehead *elem = head->flink;
  198. if (elem != head)
  199. __xpt_que_del(head, elem->flink);
  200. else
  201. elem = 0;
  202. return elem;
  203. }
  204. #define xpt_insque_tail(new, head) __xpt_que_add(new, (head)->blink, head)
  205. static inline struct xpt_quehead *xpt_remque_tail(struct xpt_quehead *head)
  206. {
  207. struct xpt_quehead *elem = head->blink;
  208. if (elem != head)
  209. __xpt_que_del(elem->blink, head);
  210. else
  211. elem = 0;
  212. return elem;
  213. }
  214. /*==========================================================
  215. **
  216. ** Simple Wrapper to kernel PCI bus interface.
  217. **
  218. ** This wrapper allows to get rid of old kernel PCI 
  219. ** interface and still allows to preserve linux-2.0 
  220. ** compatibilty. In fact, it is mostly an incomplete 
  221. ** emulation of the new PCI code for pre-2.2 kernels.
  222. ** When kernel-2.0 support will be dropped, we will 
  223. ** just have to remove most of this code.
  224. **
  225. **==========================================================
  226. */
  227. #if LINUX_VERSION_CODE >= LinuxVersionCode(2,2,0)
  228. typedef struct pci_dev *pcidev_t;
  229. #define PCIDEV_NULL (0)
  230. #define PciBusNumber(d) (d)->bus->number
  231. #define PciDeviceFn(d) (d)->devfn
  232. #define PciVendorId(d) (d)->vendor
  233. #define PciDeviceId(d) (d)->device
  234. #define PciIrqLine(d) (d)->irq
  235. static u_long __init
  236. pci_get_base_cookie(struct pci_dev *pdev, int index)
  237. {
  238. u_long base;
  239. #if LINUX_VERSION_CODE > LinuxVersionCode(2,3,12)
  240. base = pdev->resource[index].start;
  241. #else
  242. base = pdev->base_address[index];
  243. #if BITS_PER_LONG > 32
  244. if ((base & 0x7) == 0x4)
  245. *base |= (((u_long)pdev->base_address[++index]) << 32);
  246. #endif
  247. #endif
  248. return (base & ~0x7ul);
  249. }
  250. static int __init
  251. pci_get_base_address(struct pci_dev *pdev, int index, u_long *base)
  252. {
  253. u32 tmp;
  254. #define PCI_BAR_OFFSET(index) (PCI_BASE_ADDRESS_0 + (index<<2))
  255. pci_read_config_dword(pdev, PCI_BAR_OFFSET(index), &tmp);
  256. *base = tmp;
  257. ++index;
  258. if ((tmp & 0x7) == 0x4) {
  259. #if BITS_PER_LONG > 32
  260. pci_read_config_dword(pdev, PCI_BAR_OFFSET(index), &tmp);
  261. *base |= (((u_long)tmp) << 32);
  262. #endif
  263. ++index;
  264. }
  265. return index;
  266. #undef PCI_BAR_OFFSET
  267. }
  268. #else /* Incomplete emulation of current PCI code for pre-2.2 kernels */
  269. typedef unsigned int pcidev_t;
  270. #define PCIDEV_NULL (~0u)
  271. #define PciBusNumber(d) ((d)>>8)
  272. #define PciDeviceFn(d) ((d)&0xff)
  273. #define __PciDev(busn, devfn) (((busn)<<8)+(devfn))
  274. #define pci_present pcibios_present
  275. #define pci_read_config_byte(d, w, v) 
  276. pcibios_read_config_byte(PciBusNumber(d), PciDeviceFn(d), w, v)
  277. #define pci_read_config_word(d, w, v) 
  278. pcibios_read_config_word(PciBusNumber(d), PciDeviceFn(d), w, v)
  279. #define pci_read_config_dword(d, w, v) 
  280. pcibios_read_config_dword(PciBusNumber(d), PciDeviceFn(d), w, v)
  281. #define pci_write_config_byte(d, w, v) 
  282. pcibios_write_config_byte(PciBusNumber(d), PciDeviceFn(d), w, v)
  283. #define pci_write_config_word(d, w, v) 
  284. pcibios_write_config_word(PciBusNumber(d), PciDeviceFn(d), w, v)
  285. #define pci_write_config_dword(d, w, v) 
  286. pcibios_write_config_dword(PciBusNumber(d), PciDeviceFn(d), w, v)
  287. static pcidev_t __init
  288. pci_find_device(unsigned int vendor, unsigned int device, pcidev_t prev)
  289. {
  290. static unsigned short pci_index;
  291. int retv;
  292. unsigned char bus_number, device_fn;
  293. if (prev == PCIDEV_NULL)
  294. pci_index = 0;
  295. else
  296. ++pci_index;
  297. retv = pcibios_find_device (vendor, device, pci_index,
  298.     &bus_number, &device_fn);
  299. return retv ? PCIDEV_NULL : __PciDev(bus_number, device_fn);
  300. }
  301. static u_short __init PciVendorId(pcidev_t dev)
  302. {
  303. u_short vendor_id;
  304. pci_read_config_word(dev, PCI_VENDOR_ID, &vendor_id);
  305. return vendor_id;
  306. }
  307. static u_short __init PciDeviceId(pcidev_t dev)
  308. {
  309. u_short device_id;
  310. pci_read_config_word(dev, PCI_DEVICE_ID, &device_id);
  311. return device_id;
  312. }
  313. static u_int __init PciIrqLine(pcidev_t dev)
  314. {
  315. u_char irq;
  316. pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &irq);
  317. return irq;
  318. }
  319. static int __init 
  320. pci_get_base_address(pcidev_t dev, int offset, u_long *base)
  321. {
  322. u_int32 tmp;
  323. pci_read_config_dword(dev, PCI_BASE_ADDRESS_0 + offset, &tmp);
  324. *base = tmp;
  325. offset += sizeof(u_int32);
  326. if ((tmp & 0x7) == 0x4) {
  327. #if BITS_PER_LONG > 32
  328. pci_read_config_dword(dev, PCI_BASE_ADDRESS_0 + offset, &tmp);
  329. *base |= (((u_long)tmp) << 32);
  330. #endif
  331. offset += sizeof(u_int32);
  332. }
  333. return offset;
  334. }
  335. static u_long __init
  336. pci_get_base_cookie(struct pci_dev *pdev, int offset)
  337. {
  338. u_long base;
  339. (void) pci_get_base_address(dev, offset, &base);
  340. return base;
  341. }
  342. #endif /* LINUX_VERSION_CODE >= LinuxVersionCode(2,2,0) */
  343. /* Does not make sense in earlier kernels */
  344. #if LINUX_VERSION_CODE < LinuxVersionCode(2,4,0)
  345. #define pci_enable_device(pdev) (0)
  346. #endif
  347. #if LINUX_VERSION_CODE < LinuxVersionCode(2,4,4)
  348. #define scsi_set_pci_device(inst, pdev) (0)
  349. #endif
  350. /*==========================================================
  351. **
  352. ** SMP threading.
  353. **
  354. ** Assuming that SMP systems are generally high end 
  355. ** systems and may use several SCSI adapters, we are 
  356. ** using one lock per controller instead of some global 
  357. ** one. For the moment (linux-2.1.95), driver's entry 
  358. ** points are called with the 'io_request_lock' lock 
  359. ** held, so:
  360. ** - We are uselessly loosing a couple of micro-seconds 
  361. **   to lock the controller data structure.
  362. ** - But the driver is not broken by design for SMP and 
  363. **   so can be more resistant to bugs or bad changes in 
  364. **   the IO sub-system code.
  365. ** - A small advantage could be that the interrupt code 
  366. **   is grained as wished (e.g.: by controller).
  367. **
  368. **==========================================================
  369. */
  370. #if LINUX_VERSION_CODE >= LinuxVersionCode(2,1,93)
  371. spinlock_t DRIVER_SMP_LOCK = SPIN_LOCK_UNLOCKED;
  372. #define NCR_LOCK_DRIVER(flags)     spin_lock_irqsave(&DRIVER_SMP_LOCK, flags)
  373. #define NCR_UNLOCK_DRIVER(flags)   
  374. spin_unlock_irqrestore(&DRIVER_SMP_LOCK, flags)
  375. #define NCR_INIT_LOCK_NCB(np)      spin_lock_init(&np->smp_lock)
  376. #define NCR_LOCK_NCB(np, flags)    spin_lock_irqsave(&np->smp_lock, flags)
  377. #define NCR_UNLOCK_NCB(np, flags)  spin_unlock_irqrestore(&np->smp_lock, flags)
  378. #define NCR_LOCK_SCSI_DONE(np, flags) 
  379. spin_lock_irqsave(&io_request_lock, flags)
  380. #define NCR_UNLOCK_SCSI_DONE(np, flags) 
  381. spin_unlock_irqrestore(&io_request_lock, flags)
  382. #else
  383. #define NCR_LOCK_DRIVER(flags)     do { save_flags(flags); cli(); } while (0)
  384. #define NCR_UNLOCK_DRIVER(flags)   do { restore_flags(flags); } while (0)
  385. #define NCR_INIT_LOCK_NCB(np)      do { } while (0)
  386. #define NCR_LOCK_NCB(np, flags)    do { save_flags(flags); cli(); } while (0)
  387. #define NCR_UNLOCK_NCB(np, flags)  do { restore_flags(flags); } while (0)
  388. #define NCR_LOCK_SCSI_DONE(np, flags)    do {;} while (0)
  389. #define NCR_UNLOCK_SCSI_DONE(np, flags)  do {;} while (0)
  390. #endif
  391. /*==========================================================
  392. **
  393. ** Memory mapped IO
  394. **
  395. ** Since linux-2.1, we must use ioremap() to map the io 
  396. ** memory space and iounmap() to unmap it. This allows 
  397. ** portability. Linux 1.3.X and 2.0.X allow to remap 
  398. ** physical pages addresses greater than the highest 
  399. ** physical memory address to kernel virtual pages with 
  400. ** vremap() / vfree(). That was not portable but worked 
  401. ** with i386 architecture.
  402. **
  403. **==========================================================
  404. */
  405. #if LINUX_VERSION_CODE < LinuxVersionCode(2,1,0)
  406. #define ioremap vremap
  407. #define iounmap vfree
  408. #endif
  409. #ifdef __sparc__
  410. #  include <asm/irq.h>
  411. #  define memcpy_to_pci(a, b, c) memcpy_toio((a), (b), (c))
  412. #elif defined(__alpha__)
  413. #  define memcpy_to_pci(a, b, c) memcpy_toio((a), (b), (c))
  414. #else /* others */
  415. #  define memcpy_to_pci(a, b, c) memcpy_toio((a), (b), (c))
  416. #endif
  417. #ifndef SCSI_NCR_PCI_MEM_NOT_SUPPORTED
  418. static u_long __init remap_pci_mem(u_long base, u_long size)
  419. {
  420. u_long page_base = ((u_long) base) & PAGE_MASK;
  421. u_long page_offs = ((u_long) base) - page_base;
  422. u_long page_remapped = (u_long) ioremap(page_base, page_offs+size);
  423. return page_remapped? (page_remapped + page_offs) : 0UL;
  424. }
  425. static void __init unmap_pci_mem(u_long vaddr, u_long size)
  426. {
  427. if (vaddr)
  428. iounmap((void *) (vaddr & PAGE_MASK));
  429. }
  430. #endif /* not def SCSI_NCR_PCI_MEM_NOT_SUPPORTED */
  431. /*==========================================================
  432. **
  433. ** Insert a delay in micro-seconds and milli-seconds.
  434. **
  435. ** Under Linux, udelay() is restricted to delay < 
  436. ** 1 milli-second. In fact, it generally works for up 
  437. ** to 1 second delay. Since 2.1.105, the mdelay() function 
  438. ** is provided for delays in milli-seconds.
  439. ** Under 2.0 kernels, udelay() is an inline function 
  440. ** that is very inaccurate on Pentium processors.
  441. **
  442. **==========================================================
  443. */
  444. #if LINUX_VERSION_CODE >= LinuxVersionCode(2,1,105)
  445. #define UDELAY udelay
  446. #define MDELAY mdelay
  447. #else
  448. static void UDELAY(long us) { udelay(us); }
  449. static void MDELAY(long ms) { while (ms--) UDELAY(1000); }
  450. #endif
  451. /*==========================================================
  452. **
  453. ** Simple power of two buddy-like allocator.
  454. **
  455. ** This simple code is not intended to be fast, but to 
  456. ** provide power of 2 aligned memory allocations.
  457. ** Since the SCRIPTS processor only supplies 8 bit 
  458. ** arithmetic, this allocator allows simple and fast 
  459. ** address calculations  from the SCRIPTS code.
  460. ** In addition, cache line alignment is guaranteed for 
  461. ** power of 2 cache line size.
  462. ** Enhanced in linux-2.3.44 to provide a memory pool 
  463. ** per pcidev to support dynamic dma mapping. (I would 
  464. ** have preferred a real bus astraction, btw).
  465. **
  466. **==========================================================
  467. */
  468. #if LINUX_VERSION_CODE >= LinuxVersionCode(2,1,0)
  469. #define __GetFreePages(flags, order) __get_free_pages(flags, order)
  470. #else
  471. #define __GetFreePages(flags, order) __get_free_pages(flags, order, 0)
  472. #endif
  473. #define MEMO_SHIFT 4 /* 16 bytes minimum memory chunk */
  474. #if PAGE_SIZE >= 8192
  475. #define MEMO_PAGE_ORDER 0 /* 1 PAGE  maximum */
  476. #else
  477. #define MEMO_PAGE_ORDER 1 /* 2 PAGES maximum */
  478. #endif
  479. #define MEMO_FREE_UNUSED /* Free unused pages immediately */
  480. #define MEMO_WARN 1
  481. #define MEMO_GFP_FLAGS GFP_ATOMIC
  482. #define MEMO_CLUSTER_SHIFT (PAGE_SHIFT+MEMO_PAGE_ORDER)
  483. #define MEMO_CLUSTER_SIZE (1UL << MEMO_CLUSTER_SHIFT)
  484. #define MEMO_CLUSTER_MASK (MEMO_CLUSTER_SIZE-1)
  485. typedef u_long m_addr_t; /* Enough bits to bit-hack addresses */
  486. typedef pcidev_t m_bush_t; /* Something that addresses DMAable */
  487. typedef struct m_link { /* Link between free memory chunks */
  488. struct m_link *next;
  489. } m_link_s;
  490. #ifdef SCSI_NCR_DYNAMIC_DMA_MAPPING
  491. typedef struct m_vtob { /* Virtual to Bus address translation */
  492. struct m_vtob *next;
  493. m_addr_t vaddr;
  494. m_addr_t baddr;
  495. } m_vtob_s;
  496. #define VTOB_HASH_SHIFT 5
  497. #define VTOB_HASH_SIZE (1UL << VTOB_HASH_SHIFT)
  498. #define VTOB_HASH_MASK (VTOB_HASH_SIZE-1)
  499. #define VTOB_HASH_CODE(m)
  500. ((((m_addr_t) (m)) >> MEMO_CLUSTER_SHIFT) & VTOB_HASH_MASK)
  501. #endif
  502. typedef struct m_pool { /* Memory pool of a given kind */
  503. #ifdef SCSI_NCR_DYNAMIC_DMA_MAPPING
  504. m_bush_t bush;
  505. m_addr_t (*getp)(struct m_pool *);
  506. void (*freep)(struct m_pool *, m_addr_t);
  507. #define M_GETP() mp->getp(mp)
  508. #define M_FREEP(p) mp->freep(mp, p)
  509. #define GetPages() __GetFreePages(MEMO_GFP_FLAGS, MEMO_PAGE_ORDER)
  510. #define FreePages(p) free_pages(p, MEMO_PAGE_ORDER)
  511. int nump;
  512. m_vtob_s *(vtob[VTOB_HASH_SIZE]);
  513. struct m_pool *next;
  514. #else
  515. #define M_GETP() __GetFreePages(MEMO_GFP_FLAGS, MEMO_PAGE_ORDER)
  516. #define M_FREEP(p) free_pages(p, MEMO_PAGE_ORDER)
  517. #endif /* SCSI_NCR_DYNAMIC_DMA_MAPPING */
  518. struct m_link h[PAGE_SHIFT-MEMO_SHIFT+MEMO_PAGE_ORDER+1];
  519. } m_pool_s;
  520. static void *___m_alloc(m_pool_s *mp, int size)
  521. {
  522. int i = 0;
  523. int s = (1 << MEMO_SHIFT);
  524. int j;
  525. m_addr_t a;
  526. m_link_s *h = mp->h;
  527. if (size > (PAGE_SIZE << MEMO_PAGE_ORDER))
  528. return 0;
  529. while (size > s) {
  530. s <<= 1;
  531. ++i;
  532. }
  533. j = i;
  534. while (!h[j].next) {
  535. if (s == (PAGE_SIZE << MEMO_PAGE_ORDER)) {
  536. h[j].next = (m_link_s *) M_GETP();
  537. if (h[j].next)
  538. h[j].next->next = 0;
  539. break;
  540. }
  541. ++j;
  542. s <<= 1;
  543. }
  544. a = (m_addr_t) h[j].next;
  545. if (a) {
  546. h[j].next = h[j].next->next;
  547. while (j > i) {
  548. j -= 1;
  549. s >>= 1;
  550. h[j].next = (m_link_s *) (a+s);
  551. h[j].next->next = 0;
  552. }
  553. }
  554. #ifdef DEBUG
  555. printk("___m_alloc(%d) = %pn", size, (void *) a);
  556. #endif
  557. return (void *) a;
  558. }
  559. static void ___m_free(m_pool_s *mp, void *ptr, int size)
  560. {
  561. int i = 0;
  562. int s = (1 << MEMO_SHIFT);
  563. m_link_s *q;
  564. m_addr_t a, b;
  565. m_link_s *h = mp->h;
  566. #ifdef DEBUG
  567. printk("___m_free(%p, %d)n", ptr, size);
  568. #endif
  569. if (size > (PAGE_SIZE << MEMO_PAGE_ORDER))
  570. return;
  571. while (size > s) {
  572. s <<= 1;
  573. ++i;
  574. }
  575. a = (m_addr_t) ptr;
  576. while (1) {
  577. #ifdef MEMO_FREE_UNUSED
  578. if (s == (PAGE_SIZE << MEMO_PAGE_ORDER)) {
  579. M_FREEP(a);
  580. break;
  581. }
  582. #endif
  583. b = a ^ s;
  584. q = &h[i];
  585. while (q->next && q->next != (m_link_s *) b) {
  586. q = q->next;
  587. }
  588. if (!q->next) {
  589. ((m_link_s *) a)->next = h[i].next;
  590. h[i].next = (m_link_s *) a;
  591. break;
  592. }
  593. q->next = q->next->next;
  594. a = a & b;
  595. s <<= 1;
  596. ++i;
  597. }
  598. }
  599. static void *__m_calloc2(m_pool_s *mp, int size, char *name, int uflags)
  600. {
  601. void *p;
  602. p = ___m_alloc(mp, size);
  603. if (DEBUG_FLAGS & DEBUG_ALLOC)
  604. printk ("new %-10s[%4d] @%p.n", name, size, p);
  605. if (p)
  606. bzero(p, size);
  607. else if (uflags & MEMO_WARN)
  608. printk (NAME53C8XX ": failed to allocate %s[%d]n", name, size);
  609. return p;
  610. }
  611. #define __m_calloc(mp, s, n) __m_calloc2(mp, s, n, MEMO_WARN)
  612. static void __m_free(m_pool_s *mp, void *ptr, int size, char *name)
  613. {
  614. if (DEBUG_FLAGS & DEBUG_ALLOC)
  615. printk ("freeing %-10s[%4d] @%p.n", name, size, ptr);
  616. ___m_free(mp, ptr, size);
  617. }
  618. /*
  619.  * With pci bus iommu support, we use a default pool of unmapped memory 
  620.  * for memory we donnot need to DMA from/to and one pool per pcidev for 
  621.  * memory accessed by the PCI chip. `mp0' is the default not DMAable pool.
  622.  */
  623. #ifndef SCSI_NCR_DYNAMIC_DMA_MAPPING
  624. static m_pool_s mp0;
  625. #else
  626. static m_addr_t ___mp0_getp(m_pool_s *mp)
  627. {
  628. m_addr_t m = GetPages();
  629. if (m)
  630. ++mp->nump;
  631. return m;
  632. }
  633. static void ___mp0_freep(m_pool_s *mp, m_addr_t m)
  634. {
  635. FreePages(m);
  636. --mp->nump;
  637. }
  638. static m_pool_s mp0 = {0, ___mp0_getp, ___mp0_freep};
  639. #endif /* SCSI_NCR_DYNAMIC_DMA_MAPPING */
  640. static void *m_calloc(int size, char *name)
  641. {
  642. u_long flags;
  643. void *m;
  644. NCR_LOCK_DRIVER(flags);
  645. m = __m_calloc(&mp0, size, name);
  646. NCR_UNLOCK_DRIVER(flags);
  647. return m;
  648. }
  649. static void m_free(void *ptr, int size, char *name)
  650. {
  651. u_long flags;
  652. NCR_LOCK_DRIVER(flags);
  653. __m_free(&mp0, ptr, size, name);
  654. NCR_UNLOCK_DRIVER(flags);
  655. }
  656. /*
  657.  * DMAable pools.
  658.  */
  659. #ifndef SCSI_NCR_DYNAMIC_DMA_MAPPING
  660. /* Without pci bus iommu support, all the memory is assumed DMAable */
  661. #define __m_calloc_dma(b, s, n) m_calloc(s, n)
  662. #define __m_free_dma(b, p, s, n) m_free(p, s, n)
  663. #define __vtobus(b, p) virt_to_bus(p)
  664. #else
  665. /*
  666.  * With pci bus iommu support, we maintain one pool per pcidev and a 
  667.  * hashed reverse table for virtual to bus physical address translations.
  668.  */
  669. static m_addr_t ___dma_getp(m_pool_s *mp)
  670. {
  671. m_addr_t vp;
  672. m_vtob_s *vbp;
  673. vbp = __m_calloc(&mp0, sizeof(*vbp), "VTOB");
  674. if (vbp) {
  675. dma_addr_t daddr;
  676. vp = (m_addr_t) pci_alloc_consistent(mp->bush,
  677. PAGE_SIZE<<MEMO_PAGE_ORDER,
  678. &daddr);
  679. if (vp) {
  680. int hc = VTOB_HASH_CODE(vp);
  681. vbp->vaddr = vp;
  682. vbp->baddr = daddr;
  683. vbp->next = mp->vtob[hc];
  684. mp->vtob[hc] = vbp;
  685. ++mp->nump;
  686. return vp;
  687. }
  688. }
  689. if (vbp)
  690. __m_free(&mp0, vbp, sizeof(*vbp), "VTOB");
  691. return 0;
  692. }
  693. static void ___dma_freep(m_pool_s *mp, m_addr_t m)
  694. {
  695. m_vtob_s **vbpp, *vbp;
  696. int hc = VTOB_HASH_CODE(m);
  697. vbpp = &mp->vtob[hc];
  698. while (*vbpp && (*vbpp)->vaddr != m)
  699. vbpp = &(*vbpp)->next;
  700. if (*vbpp) {
  701. vbp = *vbpp;
  702. *vbpp = (*vbpp)->next;
  703. pci_free_consistent(mp->bush, PAGE_SIZE<<MEMO_PAGE_ORDER,
  704.     (void *)vbp->vaddr, (dma_addr_t)vbp->baddr);
  705. __m_free(&mp0, vbp, sizeof(*vbp), "VTOB");
  706. --mp->nump;
  707. }
  708. }
  709. static inline m_pool_s *___get_dma_pool(m_bush_t bush)
  710. {
  711. m_pool_s *mp;
  712. for (mp = mp0.next; mp && mp->bush != bush; mp = mp->next);
  713. return mp;
  714. }
  715. static m_pool_s *___cre_dma_pool(m_bush_t bush)
  716. {
  717. m_pool_s *mp;
  718. mp = __m_calloc(&mp0, sizeof(*mp), "MPOOL");
  719. if (mp) {
  720. bzero(mp, sizeof(*mp));
  721. mp->bush = bush;
  722. mp->getp = ___dma_getp;
  723. mp->freep = ___dma_freep;
  724. mp->next = mp0.next;
  725. mp0.next = mp;
  726. }
  727. return mp;
  728. }
  729. static void ___del_dma_pool(m_pool_s *p)
  730. {
  731. struct m_pool **pp = &mp0.next;
  732. while (*pp && *pp != p)
  733. pp = &(*pp)->next;
  734. if (*pp) {
  735. *pp = (*pp)->next;
  736. __m_free(&mp0, p, sizeof(*p), "MPOOL");
  737. }
  738. }
  739. static void *__m_calloc_dma(m_bush_t bush, int size, char *name)
  740. {
  741. u_long flags;
  742. struct m_pool *mp;
  743. void *m = 0;
  744. NCR_LOCK_DRIVER(flags);
  745. mp = ___get_dma_pool(bush);
  746. if (!mp)
  747. mp = ___cre_dma_pool(bush);
  748. if (mp)
  749. m = __m_calloc(mp, size, name);
  750. if (mp && !mp->nump)
  751. ___del_dma_pool(mp);
  752. NCR_UNLOCK_DRIVER(flags);
  753. return m;
  754. }
  755. static void __m_free_dma(m_bush_t bush, void *m, int size, char *name)
  756. {
  757. u_long flags;
  758. struct m_pool *mp;
  759. NCR_LOCK_DRIVER(flags);
  760. mp = ___get_dma_pool(bush);
  761. if (mp)
  762. __m_free(mp, m, size, name);
  763. if (mp && !mp->nump)
  764. ___del_dma_pool(mp);
  765. NCR_UNLOCK_DRIVER(flags);
  766. }
  767. static m_addr_t __vtobus(m_bush_t bush, void *m)
  768. {
  769. u_long flags;
  770. m_pool_s *mp;
  771. int hc = VTOB_HASH_CODE(m);
  772. m_vtob_s *vp = 0;
  773. m_addr_t a = ((m_addr_t) m) & ~MEMO_CLUSTER_MASK;
  774. NCR_LOCK_DRIVER(flags);
  775. mp = ___get_dma_pool(bush);
  776. if (mp) {
  777. vp = mp->vtob[hc];
  778. while (vp && (m_addr_t) vp->vaddr != a)
  779. vp = vp->next;
  780. }
  781. NCR_UNLOCK_DRIVER(flags);
  782. return vp ? vp->baddr + (((m_addr_t) m) - a) : 0;
  783. }
  784. #endif /* SCSI_NCR_DYNAMIC_DMA_MAPPING */
  785. #define _m_calloc_dma(np, s, n) __m_calloc_dma(np->pdev, s, n)
  786. #define _m_free_dma(np, p, s, n) __m_free_dma(np->pdev, p, s, n)
  787. #define m_calloc_dma(s, n) _m_calloc_dma(np, s, n)
  788. #define m_free_dma(p, s, n) _m_free_dma(np, p, s, n)
  789. #define _vtobus(np, p) __vtobus(np->pdev, p)
  790. #define vtobus(p) _vtobus(np, p)
  791. /*
  792.  *  Deal with DMA mapping/unmapping.
  793.  */
  794. #ifndef SCSI_NCR_DYNAMIC_DMA_MAPPING
  795. /* Linux versions prior to pci bus iommu kernel interface */
  796. #define __unmap_scsi_data(pdev, cmd) do {; } while (0)
  797. #define __map_scsi_single_data(pdev, cmd) (__vtobus(pdev,(cmd)->request_buffer))
  798. #define __map_scsi_sg_data(pdev, cmd) ((cmd)->use_sg)
  799. #define __sync_scsi_data(pdev, cmd) do {; } while (0)
  800. #define scsi_sg_dma_address(sc) vtobus((sc)->address)
  801. #define scsi_sg_dma_len(sc) ((sc)->length)
  802. #else
  803. /* Linux version with pci bus iommu kernel interface */
  804. /* To keep track of the dma mapping (sg/single) that has been set */
  805. #define __data_mapped SCp.phase
  806. #define __data_mapping SCp.have_data_in
  807. static void __unmap_scsi_data(pcidev_t pdev, Scsi_Cmnd *cmd)
  808. {
  809. int dma_dir = scsi_to_pci_dma_dir(cmd->sc_data_direction);
  810. switch(cmd->__data_mapped) {
  811. case 2:
  812. pci_unmap_sg(pdev, cmd->buffer, cmd->use_sg, dma_dir);
  813. break;
  814. case 1:
  815. pci_unmap_single(pdev, cmd->__data_mapping,
  816.  cmd->request_bufflen, dma_dir);
  817. break;
  818. }
  819. cmd->__data_mapped = 0;
  820. }
  821. static u_long __map_scsi_single_data(pcidev_t pdev, Scsi_Cmnd *cmd)
  822. {
  823. dma_addr_t mapping;
  824. int dma_dir = scsi_to_pci_dma_dir(cmd->sc_data_direction);
  825. if (cmd->request_bufflen == 0)
  826. return 0;
  827. mapping = pci_map_single(pdev, cmd->request_buffer,
  828.  cmd->request_bufflen, dma_dir);
  829. cmd->__data_mapped = 1;
  830. cmd->__data_mapping = mapping;
  831. return mapping;
  832. }
  833. static int __map_scsi_sg_data(pcidev_t pdev, Scsi_Cmnd *cmd)
  834. {
  835. int use_sg;
  836. int dma_dir = scsi_to_pci_dma_dir(cmd->sc_data_direction);
  837. if (cmd->use_sg == 0)
  838. return 0;
  839. use_sg = pci_map_sg(pdev, cmd->buffer, cmd->use_sg, dma_dir);
  840. cmd->__data_mapped = 2;
  841. cmd->__data_mapping = use_sg;
  842. return use_sg;
  843. }
  844. static void __sync_scsi_data(pcidev_t pdev, Scsi_Cmnd *cmd)
  845. {
  846. int dma_dir = scsi_to_pci_dma_dir(cmd->sc_data_direction);
  847. switch(cmd->__data_mapped) {
  848. case 2:
  849. pci_dma_sync_sg(pdev, cmd->buffer, cmd->use_sg, dma_dir);
  850. break;
  851. case 1:
  852. pci_dma_sync_single(pdev, cmd->__data_mapping,
  853.     cmd->request_bufflen, dma_dir);
  854. break;
  855. }
  856. }
  857. #define scsi_sg_dma_address(sc) sg_dma_address(sc)
  858. #define scsi_sg_dma_len(sc) sg_dma_len(sc)
  859. #endif /* SCSI_NCR_DYNAMIC_DMA_MAPPING */
  860. #define unmap_scsi_data(np, cmd) __unmap_scsi_data(np->pdev, cmd)
  861. #define map_scsi_single_data(np, cmd) __map_scsi_single_data(np->pdev, cmd)
  862. #define map_scsi_sg_data(np, cmd) __map_scsi_sg_data(np->pdev, cmd)
  863. #define sync_scsi_data(np, cmd) __sync_scsi_data(np->pdev, cmd)
  864. /*==========================================================
  865. **
  866. ** SCSI data transfer direction
  867. **
  868. ** Until some linux kernel version near 2.3.40, 
  869. ** low-level scsi drivers were not told about data 
  870. ** transfer direction. We check the existence of this 
  871. ** feature that has been expected for a _long_ time by 
  872. ** all SCSI driver developers by just testing against 
  873. ** the definition of SCSI_DATA_UNKNOWN. Indeed this is 
  874. ** a hack, but testing against a kernel version would 
  875. ** have been a shame. ;-)
  876. **
  877. **==========================================================
  878. */
  879. #ifdef SCSI_DATA_UNKNOWN
  880. #define scsi_data_direction(cmd) (cmd->sc_data_direction)
  881. #else
  882. #define SCSI_DATA_UNKNOWN 0
  883. #define SCSI_DATA_WRITE 1
  884. #define SCSI_DATA_READ 2
  885. #define SCSI_DATA_NONE 3
  886. static __inline__ int scsi_data_direction(Scsi_Cmnd *cmd)
  887. {
  888. int direction;
  889. switch((int) cmd->cmnd[0]) {
  890. case 0x08:  /* READ(6) 08 */
  891. case 0x28:  /* READ(10) 28 */
  892. case 0xA8:  /* READ(12) A8 */
  893. direction = SCSI_DATA_READ;
  894. break;
  895. case 0x0A:  /* WRITE(6) 0A */
  896. case 0x2A:  /* WRITE(10) 2A */
  897. case 0xAA:  /* WRITE(12) AA */
  898. direction = SCSI_DATA_WRITE;
  899. break;
  900. default:
  901. direction = SCSI_DATA_UNKNOWN;
  902. break;
  903. }
  904. return direction;
  905. }
  906. #endif /* SCSI_DATA_UNKNOWN */
  907. /*==========================================================
  908. **
  909. ** Driver setup.
  910. **
  911. ** This structure is initialized from linux config 
  912. ** options. It can be overridden at boot-up by the boot 
  913. ** command line.
  914. **
  915. **==========================================================
  916. */
  917. static struct ncr_driver_setup
  918. driver_setup = SCSI_NCR_DRIVER_SETUP;
  919. #ifdef SCSI_NCR_BOOT_COMMAND_LINE_SUPPORT
  920. static struct ncr_driver_setup
  921. driver_safe_setup __initdata = SCSI_NCR_DRIVER_SAFE_SETUP;
  922. #endif
  923. #define initverbose (driver_setup.verbose)
  924. #define bootverbose (np->verbose)
  925. /*==========================================================
  926. **
  927. ** Structures used by the detection routine to transmit 
  928. ** device configuration to the attach function.
  929. **
  930. **==========================================================
  931. */
  932. typedef struct {
  933. int bus;
  934. u_char device_fn;
  935. u_long base;
  936. u_long base_2;
  937. u_long io_port;
  938. u_long base_c;
  939. u_long base_2_c;
  940. int irq;
  941. /* port and reg fields to use INB, OUTB macros */
  942. u_long base_io;
  943. volatile struct ncr_reg *reg;
  944. } ncr_slot;
  945. /*==========================================================
  946. **
  947. ** Structure used to store the NVRAM content.
  948. **
  949. **==========================================================
  950. */
  951. typedef struct {
  952. int type;
  953. #define SCSI_NCR_SYMBIOS_NVRAM (1)
  954. #define SCSI_NCR_TEKRAM_NVRAM (2)
  955. #ifdef SCSI_NCR_NVRAM_SUPPORT
  956. union {
  957. Symbios_nvram Symbios;
  958. Tekram_nvram Tekram;
  959. } data;
  960. #endif
  961. } ncr_nvram;
  962. /*==========================================================
  963. **
  964. ** Structure used by detection routine to save data on 
  965. ** each detected board for attach.
  966. **
  967. **==========================================================
  968. */
  969. typedef struct {
  970. pcidev_t  pdev;
  971. ncr_slot  slot;
  972. ncr_chip  chip;
  973. ncr_nvram *nvram;
  974. u_char host_id;
  975. #ifdef SCSI_NCR_PQS_PDS_SUPPORT
  976. u_char pqs_pds;
  977. #endif
  978. int attach_done;
  979. } ncr_device;
  980. static int ncr_attach (Scsi_Host_Template *tpnt, int unit, ncr_device *device);
  981. /*==========================================================
  982. **
  983. ** NVRAM detection and reading.
  984. **  
  985. ** Currently supported:
  986. ** - 24C16 EEPROM with both Symbios and Tekram layout.
  987. ** - 93C46 EEPROM with Tekram layout.
  988. **
  989. **==========================================================
  990. */
  991. #ifdef SCSI_NCR_NVRAM_SUPPORT
  992. /*
  993.  *  24C16 EEPROM reading.
  994.  *
  995.  *  GPOI0 - data in/data out
  996.  *  GPIO1 - clock
  997.  *  Symbios NVRAM wiring now also used by Tekram.
  998.  */
  999. #define SET_BIT 0
  1000. #define CLR_BIT 1
  1001. #define SET_CLK 2
  1002. #define CLR_CLK 3
  1003. /*
  1004.  *  Set/clear data/clock bit in GPIO0
  1005.  */
  1006. static void __init
  1007. S24C16_set_bit(ncr_slot *np, u_char write_bit, u_char *gpreg, int bit_mode)
  1008. {
  1009. UDELAY (5);
  1010. switch (bit_mode){
  1011. case SET_BIT:
  1012. *gpreg |= write_bit;
  1013. break;
  1014. case CLR_BIT:
  1015. *gpreg &= 0xfe;
  1016. break;
  1017. case SET_CLK:
  1018. *gpreg |= 0x02;
  1019. break;
  1020. case CLR_CLK:
  1021. *gpreg &= 0xfd;
  1022. break;
  1023. }
  1024. OUTB (nc_gpreg, *gpreg);
  1025. UDELAY (5);
  1026. }
  1027. /*
  1028.  *  Send START condition to NVRAM to wake it up.
  1029.  */
  1030. static void __init S24C16_start(ncr_slot *np, u_char *gpreg)
  1031. {
  1032. S24C16_set_bit(np, 1, gpreg, SET_BIT);
  1033. S24C16_set_bit(np, 0, gpreg, SET_CLK);
  1034. S24C16_set_bit(np, 0, gpreg, CLR_BIT);
  1035. S24C16_set_bit(np, 0, gpreg, CLR_CLK);
  1036. }
  1037. /*
  1038.  *  Send STOP condition to NVRAM - puts NVRAM to sleep... ZZzzzz!!
  1039.  */
  1040. static void __init S24C16_stop(ncr_slot *np, u_char *gpreg)
  1041. {
  1042. S24C16_set_bit(np, 0, gpreg, SET_CLK);
  1043. S24C16_set_bit(np, 1, gpreg, SET_BIT);
  1044. }
  1045. /*
  1046.  *  Read or write a bit to the NVRAM,
  1047.  *  read if GPIO0 input else write if GPIO0 output
  1048.  */
  1049. static void __init 
  1050. S24C16_do_bit(ncr_slot *np, u_char *read_bit, u_char write_bit, u_char *gpreg)
  1051. {
  1052. S24C16_set_bit(np, write_bit, gpreg, SET_BIT);
  1053. S24C16_set_bit(np, 0, gpreg, SET_CLK);
  1054. if (read_bit)
  1055. *read_bit = INB (nc_gpreg);
  1056. S24C16_set_bit(np, 0, gpreg, CLR_CLK);
  1057. S24C16_set_bit(np, 0, gpreg, CLR_BIT);
  1058. }
  1059. /*
  1060.  *  Output an ACK to the NVRAM after reading,
  1061.  *  change GPIO0 to output and when done back to an input
  1062.  */
  1063. static void __init
  1064. S24C16_write_ack(ncr_slot *np, u_char write_bit, u_char *gpreg, u_char *gpcntl)
  1065. {
  1066. OUTB (nc_gpcntl, *gpcntl & 0xfe);
  1067. S24C16_do_bit(np, 0, write_bit, gpreg);
  1068. OUTB (nc_gpcntl, *gpcntl);
  1069. }
  1070. /*
  1071.  *  Input an ACK from NVRAM after writing,
  1072.  *  change GPIO0 to input and when done back to an output
  1073.  */
  1074. static void __init 
  1075. S24C16_read_ack(ncr_slot *np, u_char *read_bit, u_char *gpreg, u_char *gpcntl)
  1076. {
  1077. OUTB (nc_gpcntl, *gpcntl | 0x01);
  1078. S24C16_do_bit(np, read_bit, 1, gpreg);
  1079. OUTB (nc_gpcntl, *gpcntl);
  1080. }
  1081. /*
  1082.  *  WRITE a byte to the NVRAM and then get an ACK to see it was accepted OK,
  1083.  *  GPIO0 must already be set as an output
  1084.  */
  1085. static void __init 
  1086. S24C16_write_byte(ncr_slot *np, u_char *ack_data, u_char write_data, 
  1087.   u_char *gpreg, u_char *gpcntl)
  1088. {
  1089. int x;
  1090. for (x = 0; x < 8; x++)
  1091. S24C16_do_bit(np, 0, (write_data >> (7 - x)) & 0x01, gpreg);
  1092. S24C16_read_ack(np, ack_data, gpreg, gpcntl);
  1093. }
  1094. /*
  1095.  *  READ a byte from the NVRAM and then send an ACK to say we have got it,
  1096.  *  GPIO0 must already be set as an input
  1097.  */
  1098. static void __init 
  1099. S24C16_read_byte(ncr_slot *np, u_char *read_data, u_char ack_data, 
  1100.          u_char *gpreg, u_char *gpcntl)
  1101. {
  1102. int x;
  1103. u_char read_bit;
  1104. *read_data = 0;
  1105. for (x = 0; x < 8; x++) {
  1106. S24C16_do_bit(np, &read_bit, 1, gpreg);
  1107. *read_data |= ((read_bit & 0x01) << (7 - x));
  1108. }
  1109. S24C16_write_ack(np, ack_data, gpreg, gpcntl);
  1110. }
  1111. /*
  1112.  *  Read 'len' bytes starting at 'offset'.
  1113.  */
  1114. static int __init 
  1115. sym_read_S24C16_nvram (ncr_slot *np, int offset, u_char *data, int len)
  1116. {
  1117. u_char gpcntl, gpreg;
  1118. u_char old_gpcntl, old_gpreg;
  1119. u_char ack_data;
  1120. int retv = 1;
  1121. int x;
  1122. /* save current state of GPCNTL and GPREG */
  1123. old_gpreg = INB (nc_gpreg);
  1124. old_gpcntl = INB (nc_gpcntl);
  1125. gpcntl = old_gpcntl & 0x1c;
  1126. /* set up GPREG & GPCNTL to set GPIO0 and GPIO1 in to known state */
  1127. OUTB (nc_gpreg,  old_gpreg);
  1128. OUTB (nc_gpcntl, gpcntl);
  1129. /* this is to set NVRAM into a known state with GPIO0/1 both low */
  1130. gpreg = old_gpreg;
  1131. S24C16_set_bit(np, 0, &gpreg, CLR_CLK);
  1132. S24C16_set_bit(np, 0, &gpreg, CLR_BIT);
  1133. /* now set NVRAM inactive with GPIO0/1 both high */
  1134. S24C16_stop(np, &gpreg);
  1135. /* activate NVRAM */
  1136. S24C16_start(np, &gpreg);
  1137. /* write device code and random address MSB */
  1138. S24C16_write_byte(np, &ack_data,
  1139. 0xa0 | ((offset >> 7) & 0x0e), &gpreg, &gpcntl);
  1140. if (ack_data & 0x01)
  1141. goto out;
  1142. /* write random address LSB */
  1143. S24C16_write_byte(np, &ack_data,
  1144. offset & 0xff, &gpreg, &gpcntl);
  1145. if (ack_data & 0x01)
  1146. goto out;
  1147. /* regenerate START state to set up for reading */
  1148. S24C16_start(np, &gpreg);
  1149. /* rewrite device code and address MSB with read bit set (lsb = 0x01) */
  1150. S24C16_write_byte(np, &ack_data,
  1151. 0xa1 | ((offset >> 7) & 0x0e), &gpreg, &gpcntl);
  1152. if (ack_data & 0x01)
  1153. goto out;
  1154. /* now set up GPIO0 for inputting data */
  1155. gpcntl |= 0x01;
  1156. OUTB (nc_gpcntl, gpcntl);
  1157. /* input all requested data - only part of total NVRAM */
  1158. for (x = 0; x < len; x++) 
  1159. S24C16_read_byte(np, &data[x], (x == (len-1)), &gpreg, &gpcntl);
  1160. /* finally put NVRAM back in inactive mode */
  1161. gpcntl &= 0xfe;
  1162. OUTB (nc_gpcntl, gpcntl);
  1163. S24C16_stop(np, &gpreg);
  1164. retv = 0;
  1165. out:
  1166. /* return GPIO0/1 to original states after having accessed NVRAM */
  1167. OUTB (nc_gpcntl, old_gpcntl);
  1168. OUTB (nc_gpreg,  old_gpreg);
  1169. return retv;
  1170. }
  1171. #undef SET_BIT
  1172. #undef CLR_BIT
  1173. #undef SET_CLK
  1174. #undef CLR_CLK
  1175. /*
  1176.  *  Try reading Symbios NVRAM.
  1177.  *  Return 0 if OK.
  1178.  */
  1179. static int __init sym_read_Symbios_nvram (ncr_slot *np, Symbios_nvram *nvram)
  1180. {
  1181. static u_char Symbios_trailer[6] = {0xfe, 0xfe, 0, 0, 0, 0};
  1182. u_char *data = (u_char *) nvram;
  1183. int len  = sizeof(*nvram);
  1184. u_short csum;
  1185. int x;
  1186. /* probe the 24c16 and read the SYMBIOS 24c16 area */
  1187. if (sym_read_S24C16_nvram (np, SYMBIOS_NVRAM_ADDRESS, data, len))
  1188. return 1;
  1189. /* check valid NVRAM signature, verify byte count and checksum */
  1190. if (nvram->type != 0 ||
  1191.     memcmp(nvram->trailer, Symbios_trailer, 6) ||
  1192.     nvram->byte_count != len - 12)
  1193. return 1;
  1194. /* verify checksum */
  1195. for (x = 6, csum = 0; x < len - 6; x++)
  1196. csum += data[x];
  1197. if (csum != nvram->checksum)
  1198. return 1;
  1199. return 0;
  1200. }
  1201. /*
  1202.  *  93C46 EEPROM reading.
  1203.  *
  1204.  *  GPOI0 - data in
  1205.  *  GPIO1 - data out
  1206.  *  GPIO2 - clock
  1207.  *  GPIO4 - chip select
  1208.  *
  1209.  *  Used by Tekram.
  1210.  */
  1211. /*
  1212.  *  Pulse clock bit in GPIO0
  1213.  */
  1214. static void __init T93C46_Clk(ncr_slot *np, u_char *gpreg)
  1215. {
  1216. OUTB (nc_gpreg, *gpreg | 0x04);
  1217. UDELAY (2);
  1218. OUTB (nc_gpreg, *gpreg);
  1219. }
  1220. /* 
  1221.  *  Read bit from NVRAM
  1222.  */
  1223. static void __init T93C46_Read_Bit(ncr_slot *np, u_char *read_bit, u_char *gpreg)
  1224. {
  1225. UDELAY (2);
  1226. T93C46_Clk(np, gpreg);
  1227. *read_bit = INB (nc_gpreg);
  1228. }
  1229. /*
  1230.  *  Write bit to GPIO0
  1231.  */
  1232. static void __init T93C46_Write_Bit(ncr_slot *np, u_char write_bit, u_char *gpreg)
  1233. {
  1234. if (write_bit & 0x01)
  1235. *gpreg |= 0x02;
  1236. else
  1237. *gpreg &= 0xfd;
  1238. *gpreg |= 0x10;
  1239. OUTB (nc_gpreg, *gpreg);
  1240. UDELAY (2);
  1241. T93C46_Clk(np, gpreg);
  1242. }
  1243. /*
  1244.  *  Send STOP condition to NVRAM - puts NVRAM to sleep... ZZZzzz!!
  1245.  */
  1246. static void __init T93C46_Stop(ncr_slot *np, u_char *gpreg)
  1247. {
  1248. *gpreg &= 0xef;
  1249. OUTB (nc_gpreg, *gpreg);
  1250. UDELAY (2);
  1251. T93C46_Clk(np, gpreg);
  1252. }
  1253. /*
  1254.  *  Send read command and address to NVRAM
  1255.  */
  1256. static void __init 
  1257. T93C46_Send_Command(ncr_slot *np, u_short write_data, 
  1258.     u_char *read_bit, u_char *gpreg)
  1259. {
  1260. int x;
  1261. /* send 9 bits, start bit (1), command (2), address (6)  */
  1262. for (x = 0; x < 9; x++)
  1263. T93C46_Write_Bit(np, (u_char) (write_data >> (8 - x)), gpreg);
  1264. *read_bit = INB (nc_gpreg);
  1265. }
  1266. /*
  1267.  *  READ 2 bytes from the NVRAM
  1268.  */
  1269. static void __init 
  1270. T93C46_Read_Word(ncr_slot *np, u_short *nvram_data, u_char *gpreg)
  1271. {
  1272. int x;
  1273. u_char read_bit;
  1274. *nvram_data = 0;
  1275. for (x = 0; x < 16; x++) {
  1276. T93C46_Read_Bit(np, &read_bit, gpreg);
  1277. if (read_bit & 0x01)
  1278. *nvram_data |=  (0x01 << (15 - x));
  1279. else
  1280. *nvram_data &= ~(0x01 << (15 - x));
  1281. }
  1282. }
  1283. /*
  1284.  *  Read Tekram NvRAM data.
  1285.  */
  1286. static int __init 
  1287. T93C46_Read_Data(ncr_slot *np, u_short *data,int len,u_char *gpreg)
  1288. {
  1289. u_char read_bit;
  1290. int x;
  1291. for (x = 0; x < len; x++)  {
  1292. /* output read command and address */
  1293. T93C46_Send_Command(np, 0x180 | x, &read_bit, gpreg);
  1294. if (read_bit & 0x01)
  1295. return 1; /* Bad */
  1296. T93C46_Read_Word(np, &data[x], gpreg);
  1297. T93C46_Stop(np, gpreg);
  1298. }
  1299. return 0;
  1300. }
  1301. /*
  1302.  *  Try reading 93C46 Tekram NVRAM.
  1303.  */
  1304. static int __init 
  1305. sym_read_T93C46_nvram (ncr_slot *np, Tekram_nvram *nvram)
  1306. {
  1307. u_char gpcntl, gpreg;
  1308. u_char old_gpcntl, old_gpreg;
  1309. int retv = 1;
  1310. /* save current state of GPCNTL and GPREG */
  1311. old_gpreg = INB (nc_gpreg);
  1312. old_gpcntl = INB (nc_gpcntl);
  1313. /* set up GPREG & GPCNTL to set GPIO0/1/2/4 in to known state, 0 in,
  1314.    1/2/4 out */
  1315. gpreg = old_gpreg & 0xe9;
  1316. OUTB (nc_gpreg, gpreg);
  1317. gpcntl = (old_gpcntl & 0xe9) | 0x09;
  1318. OUTB (nc_gpcntl, gpcntl);
  1319. /* input all of NVRAM, 64 words */
  1320. retv = T93C46_Read_Data(np, (u_short *) nvram,
  1321. sizeof(*nvram) / sizeof(short), &gpreg);
  1322. /* return GPIO0/1/2/4 to original states after having accessed NVRAM */
  1323. OUTB (nc_gpcntl, old_gpcntl);
  1324. OUTB (nc_gpreg,  old_gpreg);
  1325. return retv;
  1326. }
  1327. /*
  1328.  *  Try reading Tekram NVRAM.
  1329.  *  Return 0 if OK.
  1330.  */
  1331. static int __init 
  1332. sym_read_Tekram_nvram (ncr_slot *np, u_short device_id, Tekram_nvram *nvram)
  1333. {
  1334. u_char *data = (u_char *) nvram;
  1335. int len = sizeof(*nvram);
  1336. u_short csum;
  1337. int x;
  1338. switch (device_id) {
  1339. case PCI_DEVICE_ID_NCR_53C885:
  1340. case PCI_DEVICE_ID_NCR_53C895:
  1341. case PCI_DEVICE_ID_NCR_53C896:
  1342. x = sym_read_S24C16_nvram(np, TEKRAM_24C16_NVRAM_ADDRESS,
  1343.   data, len);
  1344. break;
  1345. case PCI_DEVICE_ID_NCR_53C875:
  1346. x = sym_read_S24C16_nvram(np, TEKRAM_24C16_NVRAM_ADDRESS,
  1347.   data, len);
  1348. if (!x)
  1349. break;
  1350. default:
  1351. x = sym_read_T93C46_nvram(np, nvram);
  1352. break;
  1353. }
  1354. if (x)
  1355. return 1;
  1356. /* verify checksum */
  1357. for (x = 0, csum = 0; x < len - 1; x += 2)
  1358. csum += data[x] + (data[x+1] << 8);
  1359. if (csum != 0x1234)
  1360. return 1;
  1361. return 0;
  1362. }
  1363. #endif /* SCSI_NCR_NVRAM_SUPPORT */
  1364. /*===================================================================
  1365. **
  1366. **    Detect and try to read SYMBIOS and TEKRAM NVRAM.
  1367. **
  1368. **    Data can be used to order booting of boards.
  1369. **
  1370. **    Data is saved in ncr_device structure if NVRAM found. This
  1371. **    is then used to find drive boot order for ncr_attach().
  1372. **
  1373. **    NVRAM data is passed to Scsi_Host_Template later during 
  1374. **    ncr_attach() for any device set up.
  1375. **
  1376. **===================================================================
  1377. */
  1378. #ifdef SCSI_NCR_NVRAM_SUPPORT
  1379. static void __init ncr_get_nvram(ncr_device *devp, ncr_nvram *nvp)
  1380. {
  1381. devp->nvram = nvp;
  1382. if (!nvp)
  1383. return;
  1384. /*
  1385. **    Get access to chip IO registers
  1386. */
  1387. #ifdef SCSI_NCR_IOMAPPED
  1388. request_region(devp->slot.io_port, 128, NAME53C8XX);
  1389. devp->slot.base_io = devp->slot.io_port;
  1390. #else
  1391. devp->slot.reg = 
  1392. (struct ncr_reg *) remap_pci_mem(devp->slot.base_c, 128);
  1393. if (!devp->slot.reg)
  1394. return;
  1395. #endif
  1396. /*
  1397. **    Try to read SYMBIOS nvram.
  1398. **    Try to read TEKRAM nvram if Symbios nvram not found.
  1399. */
  1400. if (!sym_read_Symbios_nvram(&devp->slot, &nvp->data.Symbios))
  1401. nvp->type = SCSI_NCR_SYMBIOS_NVRAM;
  1402. else if (!sym_read_Tekram_nvram(&devp->slot, devp->chip.device_id,
  1403. &nvp->data.Tekram))
  1404. nvp->type = SCSI_NCR_TEKRAM_NVRAM;
  1405. else {
  1406. nvp->type = 0;
  1407. devp->nvram = 0;
  1408. }
  1409. /*
  1410. ** Release access to chip IO registers
  1411. */
  1412. #ifdef SCSI_NCR_IOMAPPED
  1413. release_region(devp->slot.base_io, 128);
  1414. #else
  1415. unmap_pci_mem((u_long) devp->slot.reg, 128ul);
  1416. #endif
  1417. }
  1418. /*===================================================================
  1419. **
  1420. ** Display the content of NVRAM for debugging purpose.
  1421. **
  1422. **===================================================================
  1423. */
  1424. #ifdef SCSI_NCR_DEBUG_NVRAM
  1425. static void __init ncr_display_Symbios_nvram(Symbios_nvram *nvram)
  1426. {
  1427. int i;
  1428. /* display Symbios nvram host data */
  1429. printk(KERN_DEBUG NAME53C8XX ": HOST ID=%d%s%s%s%s%sn",
  1430. nvram->host_id & 0x0f,
  1431. (nvram->flags  & SYMBIOS_SCAM_ENABLE) ? " SCAM" :"",
  1432. (nvram->flags  & SYMBIOS_PARITY_ENABLE) ? " PARITY" :"",
  1433. (nvram->flags  & SYMBIOS_VERBOSE_MSGS) ? " VERBOSE" :"", 
  1434. (nvram->flags  & SYMBIOS_CHS_MAPPING) ? " CHS_ALT" :"", 
  1435. (nvram->flags1 & SYMBIOS_SCAN_HI_LO) ? " HI_LO" :"");
  1436. /* display Symbios nvram drive data */
  1437. for (i = 0 ; i < 15 ; i++) {
  1438. struct Symbios_target *tn = &nvram->target[i];
  1439. printk(KERN_DEBUG NAME53C8XX 
  1440. "-%d:%s%s%s%s WIDTH=%d SYNC=%d TMO=%dn",
  1441. i,
  1442. (tn->flags & SYMBIOS_DISCONNECT_ENABLE) ? " DISC" : "",
  1443. (tn->flags & SYMBIOS_SCAN_AT_BOOT_TIME) ? " SCAN_BOOT" : "",
  1444. (tn->flags & SYMBIOS_SCAN_LUNS) ? " SCAN_LUNS" : "",
  1445. (tn->flags & SYMBIOS_QUEUE_TAGS_ENABLED)? " TCQ" : "",
  1446. tn->bus_width,
  1447. tn->sync_period / 4,
  1448. tn->timeout);
  1449. }
  1450. }
  1451. static u_char Tekram_boot_delay[7] __initdata = {3, 5, 10, 20, 30, 60, 120};
  1452. static void __init ncr_display_Tekram_nvram(Tekram_nvram *nvram)
  1453. {
  1454. int i, tags, boot_delay;
  1455. char *rem;
  1456. /* display Tekram nvram host data */
  1457. tags = 2 << nvram->max_tags_index;
  1458. boot_delay = 0;
  1459. if (nvram->boot_delay_index < 6)
  1460. boot_delay = Tekram_boot_delay[nvram->boot_delay_index];
  1461. switch((nvram->flags & TEKRAM_REMOVABLE_FLAGS) >> 6) {
  1462. default:
  1463. case 0: rem = ""; break;
  1464. case 1: rem = " REMOVABLE=boot device"; break;
  1465. case 2: rem = " REMOVABLE=all"; break;
  1466. }
  1467. printk(KERN_DEBUG NAME53C8XX
  1468. ": HOST ID=%d%s%s%s%s%s%s%s%s%s BOOT DELAY=%d tags=%dn",
  1469. nvram->host_id & 0x0f,
  1470. (nvram->flags1 & SYMBIOS_SCAM_ENABLE) ? " SCAM" :"",
  1471. (nvram->flags & TEKRAM_MORE_THAN_2_DRIVES) ? " >2DRIVES":"",
  1472. (nvram->flags & TEKRAM_DRIVES_SUP_1GB) ? " >1GB" :"",
  1473. (nvram->flags & TEKRAM_RESET_ON_POWER_ON) ? " RESET" :"",
  1474. (nvram->flags & TEKRAM_ACTIVE_NEGATION) ? " ACT_NEG" :"",
  1475. (nvram->flags & TEKRAM_IMMEDIATE_SEEK) ? " IMM_SEEK" :"",
  1476. (nvram->flags & TEKRAM_SCAN_LUNS) ? " SCAN_LUNS" :"",
  1477. (nvram->flags1 & TEKRAM_F2_F6_ENABLED) ? " F2_F6" :"",
  1478. rem, boot_delay, tags);
  1479. /* display Tekram nvram drive data */
  1480. for (i = 0; i <= 15; i++) {
  1481. int sync, j;
  1482. struct Tekram_target *tn = &nvram->target[i];
  1483. j = tn->sync_index & 0xf;
  1484. sync = Tekram_sync[j];
  1485. printk(KERN_DEBUG NAME53C8XX "-%d:%s%s%s%s%s%s PERIOD=%dn",
  1486. i,
  1487. (tn->flags & TEKRAM_PARITY_CHECK) ? " PARITY" : "",
  1488. (tn->flags & TEKRAM_SYNC_NEGO) ? " SYNC" : "",
  1489. (tn->flags & TEKRAM_DISCONNECT_ENABLE) ? " DISC" : "",
  1490. (tn->flags & TEKRAM_START_CMD) ? " START" : "",
  1491. (tn->flags & TEKRAM_TAGGED_COMMANDS) ? " TCQ" : "",
  1492. (tn->flags & TEKRAM_WIDE_NEGO) ? " WIDE" : "",
  1493. sync);
  1494. }
  1495. }
  1496. #endif /* SCSI_NCR_DEBUG_NVRAM */
  1497. #endif /* SCSI_NCR_NVRAM_SUPPORT */
  1498. /*===================================================================
  1499. **
  1500. ** Utility routines that protperly return data through /proc FS.
  1501. **
  1502. **===================================================================
  1503. */
  1504. #ifdef SCSI_NCR_USER_INFO_SUPPORT
  1505. struct info_str
  1506. {
  1507. char *buffer;
  1508. int length;
  1509. int offset;
  1510. int pos;
  1511. };
  1512. static void copy_mem_info(struct info_str *info, char *data, int len)
  1513. {
  1514. if (info->pos + len > info->length)
  1515. len = info->length - info->pos;
  1516. if (info->pos + len < info->offset) {
  1517. info->pos += len;
  1518. return;
  1519. }
  1520. if (info->pos < info->offset) {
  1521. data += (info->offset - info->pos);
  1522. len  -= (info->offset - info->pos);
  1523. }
  1524. if (len > 0) {
  1525. memcpy(info->buffer + info->pos, data, len);
  1526. info->pos += len;
  1527. }
  1528. }
  1529. static int copy_info(struct info_str *info, char *fmt, ...)
  1530. {
  1531. va_list args;
  1532. char buf[81];
  1533. int len;
  1534. va_start(args, fmt);
  1535. len = vsprintf(buf, fmt, args);
  1536. va_end(args);
  1537. copy_mem_info(info, buf, len);
  1538. return len;
  1539. }
  1540. #endif
  1541. /*===================================================================
  1542. **
  1543. ** Driver setup from the boot command line
  1544. **
  1545. **===================================================================
  1546. */
  1547. #ifdef MODULE
  1548. #define ARG_SEP ' '
  1549. #else
  1550. #define ARG_SEP ','
  1551. #endif
  1552. #define OPT_TAGS 1
  1553. #define OPT_MASTER_PARITY 2
  1554. #define OPT_SCSI_PARITY 3
  1555. #define OPT_DISCONNECTION 4
  1556. #define OPT_SPECIAL_FEATURES 5
  1557. #define OPT_UNUSED_1 6
  1558. #define OPT_FORCE_SYNC_NEGO 7
  1559. #define OPT_REVERSE_PROBE 8
  1560. #define OPT_DEFAULT_SYNC 9
  1561. #define OPT_VERBOSE 10
  1562. #define OPT_DEBUG 11
  1563. #define OPT_BURST_MAX 12
  1564. #define OPT_LED_PIN 13
  1565. #define OPT_MAX_WIDE 14
  1566. #define OPT_SETTLE_DELAY 15
  1567. #define OPT_DIFF_SUPPORT 16
  1568. #define OPT_IRQM 17
  1569. #define OPT_PCI_FIX_UP 18
  1570. #define OPT_BUS_CHECK 19
  1571. #define OPT_OPTIMIZE 20
  1572. #define OPT_RECOVERY 21
  1573. #define OPT_SAFE_SETUP 22
  1574. #define OPT_USE_NVRAM 23
  1575. #define OPT_EXCLUDE 24
  1576. #define OPT_HOST_ID 25
  1577. #ifdef SCSI_NCR_IARB_SUPPORT
  1578. #define OPT_IARB 26
  1579. #endif
  1580. static char setup_token[] __initdata = 
  1581. "tags:"   "mpar:"
  1582. "spar:"   "disc:"
  1583. "specf:"  "ultra:"
  1584. "fsn:"    "revprob:"
  1585. "sync:"   "verb:"
  1586. "debug:"  "burst:"
  1587. "led:"    "wide:"
  1588. "settle:" "diff:"
  1589. "irqm:"   "pcifix:"
  1590. "buschk:" "optim:"
  1591. "recovery:"
  1592. "safe:"   "nvram:"
  1593. "excl:"   "hostid:"
  1594. #ifdef SCSI_NCR_IARB_SUPPORT
  1595. "iarb:"
  1596. #endif
  1597. ; /* DONNOT REMOVE THIS ';' */
  1598. #ifdef MODULE
  1599. #define ARG_SEP ' '
  1600. #else
  1601. #define ARG_SEP ','
  1602. #endif
  1603. static int __init get_setup_token(char *p)
  1604. {
  1605. char *cur = setup_token;
  1606. char *pc;
  1607. int i = 0;
  1608. while (cur != NULL && (pc = strchr(cur, ':')) != NULL) {
  1609. ++pc;
  1610. ++i;
  1611. if (!strncmp(p, cur, pc - cur))
  1612. return i;
  1613. cur = pc;
  1614. }
  1615. return 0;
  1616. }
  1617. static int __init sym53c8xx__setup(char *str)
  1618. {
  1619. #ifdef SCSI_NCR_BOOT_COMMAND_LINE_SUPPORT
  1620. char *cur = str;
  1621. char *pc, *pv;
  1622. int i, val, c;
  1623. int xi = 0;
  1624. while (cur != NULL && (pc = strchr(cur, ':')) != NULL) {
  1625. char *pe;
  1626. val = 0;
  1627. pv = pc;
  1628. c = *++pv;
  1629. if (c == 'n')
  1630. val = 0;
  1631. else if (c == 'y')
  1632. val = 1;
  1633. else
  1634. val = (int) simple_strtoul(pv, &pe, 0);
  1635. switch (get_setup_token(cur)) {
  1636. case OPT_TAGS:
  1637. driver_setup.default_tags = val;
  1638. if (pe && *pe == '/') {
  1639. i = 0;
  1640. while (*pe && *pe != ARG_SEP && 
  1641. i < sizeof(driver_setup.tag_ctrl)-1) {
  1642. driver_setup.tag_ctrl[i++] = *pe++;
  1643. }
  1644. driver_setup.tag_ctrl[i] = '';
  1645. }
  1646. break;
  1647. case OPT_MASTER_PARITY:
  1648. driver_setup.master_parity = val;
  1649. break;
  1650. case OPT_SCSI_PARITY:
  1651. driver_setup.scsi_parity = val;
  1652. break;
  1653. case OPT_DISCONNECTION:
  1654. driver_setup.disconnection = val;
  1655. break;
  1656. case OPT_SPECIAL_FEATURES:
  1657. driver_setup.special_features = val;
  1658. break;
  1659. case OPT_FORCE_SYNC_NEGO:
  1660. driver_setup.force_sync_nego = val;
  1661. break;
  1662. case OPT_REVERSE_PROBE:
  1663. driver_setup.reverse_probe = val;
  1664. break;
  1665. case OPT_DEFAULT_SYNC:
  1666. driver_setup.default_sync = val;
  1667. break;
  1668. case OPT_VERBOSE:
  1669. driver_setup.verbose = val;
  1670. break;
  1671. case OPT_DEBUG:
  1672. driver_setup.debug = val;
  1673. break;
  1674. case OPT_BURST_MAX:
  1675. driver_setup.burst_max = val;
  1676. break;
  1677. case OPT_LED_PIN:
  1678. driver_setup.led_pin = val;
  1679. break;
  1680. case OPT_MAX_WIDE:
  1681. driver_setup.max_wide = val? 1:0;
  1682. break;
  1683. case OPT_SETTLE_DELAY:
  1684. driver_setup.settle_delay = val;
  1685. break;
  1686. case OPT_DIFF_SUPPORT:
  1687. driver_setup.diff_support = val;
  1688. break;
  1689. case OPT_IRQM:
  1690. driver_setup.irqm = val;
  1691. break;
  1692. case OPT_PCI_FIX_UP:
  1693. driver_setup.pci_fix_up = val;
  1694. break;
  1695. case OPT_BUS_CHECK:
  1696. driver_setup.bus_check = val;
  1697. break;
  1698. case OPT_OPTIMIZE:
  1699. driver_setup.optimize = val;
  1700. break;
  1701. case OPT_RECOVERY:
  1702. driver_setup.recovery = val;
  1703. break;
  1704. case OPT_USE_NVRAM:
  1705. driver_setup.use_nvram = val;
  1706. break;
  1707. case OPT_SAFE_SETUP:
  1708. memcpy(&driver_setup, &driver_safe_setup,
  1709. sizeof(driver_setup));
  1710. break;
  1711. case OPT_EXCLUDE:
  1712. if (xi < SCSI_NCR_MAX_EXCLUDES)
  1713. driver_setup.excludes[xi++] = val;
  1714. break;
  1715. case OPT_HOST_ID:
  1716. driver_setup.host_id = val;
  1717. break;
  1718. #ifdef SCSI_NCR_IARB_SUPPORT
  1719. case OPT_IARB:
  1720. driver_setup.iarb = val;
  1721. break;
  1722. #endif
  1723. default:
  1724. printk("sym53c8xx_setup: unexpected boot option '%.*s' ignoredn", (int)(pc-cur+1), cur);
  1725. break;
  1726. }
  1727. if ((cur = strchr(cur, ARG_SEP)) != NULL)
  1728. ++cur;
  1729. }
  1730. #endif /* SCSI_NCR_BOOT_COMMAND_LINE_SUPPORT */
  1731. return 1;
  1732. }
  1733. /*===================================================================
  1734. **
  1735. ** Get device queue depth from boot command line.
  1736. **
  1737. **===================================================================
  1738. */
  1739. #define DEF_DEPTH (driver_setup.default_tags)
  1740. #define ALL_TARGETS -2
  1741. #define NO_TARGET -1
  1742. #define ALL_LUNS -2
  1743. #define NO_LUN -1
  1744. static int device_queue_depth(int unit, int target, int lun)
  1745. {
  1746. int c, h, t, u, v;
  1747. char *p = driver_setup.tag_ctrl;
  1748. char *ep;
  1749. h = -1;
  1750. t = NO_TARGET;
  1751. u = NO_LUN;
  1752. while ((c = *p++) != 0) {
  1753. v = simple_strtoul(p, &ep, 0);
  1754. switch(c) {
  1755. case '/':
  1756. ++h;
  1757. t = ALL_TARGETS;
  1758. u = ALL_LUNS;
  1759. break;
  1760. case 't':
  1761. if (t != target)
  1762. t = (target == v) ? v : NO_TARGET;
  1763. u = ALL_LUNS;
  1764. break;
  1765. case 'u':
  1766. if (u != lun)
  1767. u = (lun == v) ? v : NO_LUN;
  1768. break;
  1769. case 'q':
  1770. if (h == unit &&
  1771. (t == ALL_TARGETS || t == target) &&
  1772. (u == ALL_LUNS    || u == lun))
  1773. return v;
  1774. break;
  1775. case '-':
  1776. t = ALL_TARGETS;
  1777. u = ALL_LUNS;
  1778. break;
  1779. default:
  1780. break;
  1781. }
  1782. p = ep;
  1783. }
  1784. return DEF_DEPTH;
  1785. }
  1786. /*===================================================================
  1787. **
  1788. ** Print out information about driver configuration.
  1789. **
  1790. **===================================================================
  1791. */
  1792. static void __init ncr_print_driver_setup(void)
  1793. {
  1794. #define YesNo(y) y ? 'y' : 'n'
  1795. printk (NAME53C8XX ": setup=disc:%c,specf:%d,tags:%d,sync:%d,"
  1796. "burst:%d,wide:%c,diff:%d,revprob:%c,buschk:0x%xn",
  1797. YesNo(driver_setup.disconnection),
  1798. driver_setup.special_features,
  1799. driver_setup.default_tags,
  1800. driver_setup.default_sync,
  1801. driver_setup.burst_max,
  1802. YesNo(driver_setup.max_wide),
  1803. driver_setup.diff_support,
  1804. YesNo(driver_setup.reverse_probe),
  1805. driver_setup.bus_check);
  1806. printk (NAME53C8XX ": setup=mpar:%c,spar:%c,fsn=%c,verb:%d,debug:0x%x,"
  1807. "led:%c,settle:%d,irqm:0x%x,nvram:0x%x,pcifix:0x%xn",
  1808. YesNo(driver_setup.master_parity),
  1809. YesNo(driver_setup.scsi_parity),
  1810. YesNo(driver_setup.force_sync_nego),
  1811. driver_setup.verbose,
  1812. driver_setup.debug,
  1813. YesNo(driver_setup.led_pin),
  1814. driver_setup.settle_delay,
  1815. driver_setup.irqm,
  1816. driver_setup.use_nvram,
  1817. driver_setup.pci_fix_up);
  1818. #undef YesNo
  1819. }
  1820. /*===================================================================
  1821. **
  1822. **   SYM53C8XX devices description table.
  1823. **
  1824. **===================================================================
  1825. */
  1826. static ncr_chip ncr_chip_table[] __initdata = SCSI_NCR_CHIP_TABLE;
  1827. #ifdef SCSI_NCR_PQS_PDS_SUPPORT
  1828. /*===================================================================
  1829. **
  1830. **    Detect all NCR PQS/PDS boards and keep track of their bus nr.
  1831. **
  1832. **    The NCR PQS or PDS card is constructed as a DEC bridge
  1833. **    behind which sit a proprietary NCR memory controller and
  1834. **    four or two 53c875s as separate devices.  In its usual mode
  1835. **    of operation, the 875s are slaved to the memory controller
  1836. **    for all transfers.  We can tell if an 875 is part of a
  1837. **    PQS/PDS or not since if it is, it will be on the same bus
  1838. **    as the memory controller.  To operate with the Linux
  1839. **    driver, the memory controller is disabled and the 875s
  1840. **    freed to function independently.  The only wrinkle is that
  1841. **    the preset SCSI ID (which may be zero) must be read in from
  1842. **    a special configuration space register of the 875.
  1843. **
  1844. **===================================================================
  1845. */
  1846. #define SCSI_NCR_MAX_PQS_BUS 16
  1847. static int pqs_bus[SCSI_NCR_MAX_PQS_BUS] __initdata = { 0 };
  1848. static void __init ncr_detect_pqs_pds(void)
  1849. {
  1850. short index;
  1851. pcidev_t dev = PCIDEV_NULL;
  1852. for(index=0; index < SCSI_NCR_MAX_PQS_BUS; index++) {
  1853. u_char tmp;
  1854. dev = pci_find_device(0x101a, 0x0009, dev);
  1855. if (dev == PCIDEV_NULL) {
  1856. pqs_bus[index] = -1;
  1857. break;
  1858. }
  1859. printk(KERN_INFO NAME53C8XX ": NCR PQS/PDS memory controller detected on bus %dn", PciBusNumber(dev));
  1860. pci_read_config_byte(dev, 0x44, &tmp);
  1861. /* bit 1: allow individual 875 configuration */
  1862. tmp |= 0x2;
  1863. pci_write_config_byte(dev, 0x44, tmp);
  1864. pci_read_config_byte(dev, 0x45, &tmp);
  1865. /* bit 2: drive individual 875 interrupts to the bus */
  1866. tmp |= 0x4;
  1867. pci_write_config_byte(dev, 0x45, tmp);
  1868. pqs_bus[index] = PciBusNumber(dev);
  1869. }
  1870. }
  1871. #endif /* SCSI_NCR_PQS_PDS_SUPPORT */
  1872. /*===================================================================
  1873. **
  1874. **   Read and check the PCI configuration for any detected NCR 
  1875. **   boards and save data for attaching after all boards have 
  1876. **   been detected.
  1877. **
  1878. **===================================================================
  1879. */
  1880. static int __init
  1881. sym53c8xx_pci_init(Scsi_Host_Template *tpnt, pcidev_t pdev, ncr_device *device)
  1882. {
  1883. u_short vendor_id, device_id, command;
  1884. u_char cache_line_size, latency_timer;
  1885. u_char suggested_cache_line_size = 0;
  1886. u_char pci_fix_up = driver_setup.pci_fix_up;
  1887. u_char revision;
  1888. u_int irq;
  1889. u_long base, base_c, base_2, base_2_c, io_port; 
  1890. int i;
  1891. ncr_chip *chip;
  1892. printk(KERN_INFO NAME53C8XX ": at PCI bus %d, device %d, function %dn",
  1893. PciBusNumber(pdev),
  1894. (int) (PciDeviceFn(pdev) & 0xf8) >> 3,
  1895. (int) (PciDeviceFn(pdev) & 7));
  1896. #ifdef SCSI_NCR_DYNAMIC_DMA_MAPPING
  1897. if (!pci_dma_supported(pdev, 0xffffffff)) {
  1898. printk(KERN_WARNING NAME53C8XX
  1899.        "32 BIT PCI BUS DMA ADDRESSING NOT SUPPORTEDn");
  1900. return -1;
  1901. }
  1902. #endif
  1903. /*
  1904. **    Read info from the PCI config space.
  1905. **    pci_read_config_xxx() functions are assumed to be used for 
  1906. **    successfully detected PCI devices.
  1907. */
  1908. vendor_id = PciVendorId(pdev);
  1909. device_id = PciDeviceId(pdev);
  1910. irq   = PciIrqLine(pdev);
  1911. i = pci_get_base_address(pdev, 0, &io_port);
  1912. io_port = pci_get_base_cookie(pdev, 0);
  1913. base_c = pci_get_base_cookie(pdev, i);
  1914. i = pci_get_base_address(pdev, i, &base);
  1915. base_2_c = pci_get_base_cookie(pdev, i);
  1916. (void) pci_get_base_address(pdev, i, &base_2);
  1917. pci_read_config_word(pdev, PCI_COMMAND, &command);
  1918. pci_read_config_byte(pdev, PCI_CLASS_REVISION, &revision);
  1919. pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &cache_line_size);
  1920. pci_read_config_byte(pdev, PCI_LATENCY_TIMER, &latency_timer);
  1921. #ifdef SCSI_NCR_PQS_PDS_SUPPORT
  1922. /*
  1923. **    Match the BUS number for PQS/PDS devices.
  1924. **    Read the SCSI ID from a special register mapped
  1925. **    into the configuration space of the individual
  1926. **    875s.  This register is set up by the PQS bios
  1927. */
  1928. for(i = 0; i < SCSI_NCR_MAX_PQS_BUS && pqs_bus[i] != -1; i++) {
  1929. u_char tmp;
  1930. if (pqs_bus[i] == PciBusNumber(pdev)) {
  1931. pci_read_config_byte(pdev, 0x84, &tmp);
  1932. device->pqs_pds = 1;
  1933. device->host_id = tmp;
  1934. break;
  1935. }
  1936. }
  1937. #endif /* SCSI_NCR_PQS_PDS_SUPPORT */
  1938. /*
  1939. ** If user excludes this chip, donnot initialize it.
  1940. */
  1941. for (i = 0 ; i < SCSI_NCR_MAX_EXCLUDES ; i++) {
  1942. if (driver_setup.excludes[i] ==
  1943. (io_port & PCI_BASE_ADDRESS_IO_MASK))
  1944. return -1;
  1945. }
  1946. /*
  1947. **    Check if the chip is supported
  1948. */
  1949. if ((device_id == PCI_DEVICE_ID_LSI_53C1010) ||
  1950. (device_id == PCI_DEVICE_ID_LSI_53C1010_66)){
  1951. printk(NAME53C8XX ": not initializing, device not supportedn");
  1952. return -1;
  1953. }
  1954. chip = 0;
  1955. for (i = 0; i < sizeof(ncr_chip_table)/sizeof(ncr_chip_table[0]); i++) {
  1956. if (device_id != ncr_chip_table[i].device_id)
  1957. continue;
  1958. if (revision > ncr_chip_table[i].revision_id)
  1959. continue;
  1960. chip = &device->chip;
  1961. memcpy(chip, &ncr_chip_table[i], sizeof(*chip));
  1962. chip->revision_id = revision;
  1963. break;
  1964. }
  1965. /*
  1966. ** Ignore Symbios chips controlled by SISL RAID controller.
  1967. ** This controller sets value 0x52414944 at RAM end - 16.
  1968. */
  1969. #if defined(__i386__) && !defined(SCSI_NCR_PCI_MEM_NOT_SUPPORTED)
  1970. if (chip && (base_2_c & PCI_BASE_ADDRESS_MEM_MASK)) {
  1971. unsigned int ram_size, ram_val;
  1972. u_long ram_ptr;
  1973. if (chip->features & FE_RAM8K)
  1974. ram_size = 8192;
  1975. else
  1976. ram_size = 4096;
  1977. ram_ptr = remap_pci_mem(base_2_c & PCI_BASE_ADDRESS_MEM_MASK,
  1978. ram_size);
  1979. if (ram_ptr) {
  1980. ram_val = readl_raw(ram_ptr + ram_size - 16);
  1981. unmap_pci_mem(ram_ptr, ram_size);
  1982. if (ram_val == 0x52414944) {
  1983. printk(NAME53C8XX": not initializing, "
  1984.        "driven by SISL RAID controller.n");
  1985. return -1;
  1986. }
  1987. }
  1988. }
  1989. #endif /* i386 and PCI MEMORY accessible */
  1990. if (!chip) {
  1991. printk(NAME53C8XX ": not initializing, device not supportedn");
  1992. return -1;
  1993. }
  1994. #ifdef __powerpc__
  1995. /*
  1996. ** Fix-up for power/pc.
  1997. ** Should not be performed by the driver.
  1998. */
  1999. if ((command & (PCI_COMMAND_IO | PCI_COMMAND_MEMORY))
  2000.     != (PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) {
  2001. printk(NAME53C8XX ": setting%s%s...n",
  2002. (command & PCI_COMMAND_IO)     ? "" : " PCI_COMMAND_IO",
  2003. (command & PCI_COMMAND_MEMORY) ? "" : " PCI_COMMAND_MEMORY");
  2004. command |= (PCI_COMMAND_IO | PCI_COMMAND_MEMORY);
  2005. pci_write_config_word(pdev, PCI_COMMAND, command);
  2006. }
  2007. #if LINUX_VERSION_CODE < LinuxVersionCode(2,2,0)
  2008. if ( is_prep ) {
  2009. if (io_port >= 0x10000000) {
  2010. printk(NAME53C8XX ": reallocating io_port (Wacky IBM)");
  2011. io_port = (io_port & 0x00FFFFFF) | 0x01000000;
  2012. pci_write_config_dword(pdev,
  2013.        PCI_BASE_ADDRESS_0, io_port);
  2014. }
  2015. if (base >= 0x10000000) {
  2016. printk(NAME53C8XX ": reallocating base (Wacky IBM)");
  2017. base = (base & 0x00FFFFFF) | 0x01000000;
  2018. pci_write_config_dword(pdev,
  2019.        PCI_BASE_ADDRESS_1, base);
  2020. }
  2021. if (base_2 >= 0x10000000) {
  2022. printk(NAME53C8XX ": reallocating base2 (Wacky IBM)");
  2023. base_2 = (base_2 & 0x00FFFFFF) | 0x01000000;
  2024. pci_write_config_dword(pdev,
  2025.        PCI_BASE_ADDRESS_2, base_2);
  2026. }
  2027. }
  2028. #endif
  2029. #endif /* __powerpc__ */
  2030. #if defined(__i386__) && !defined(MODULE)
  2031. if (!cache_line_size) {
  2032. #if LINUX_VERSION_CODE < LinuxVersionCode(2,1,75)
  2033. extern char x86;
  2034. switch(x86) {
  2035. #else
  2036. switch(boot_cpu_data.x86) {
  2037. #endif
  2038. case 4: suggested_cache_line_size = 4; break;
  2039. case 6:
  2040. case 5: suggested_cache_line_size = 8; break;
  2041. }
  2042. }
  2043. #endif /* __i386__ */
  2044. /*
  2045. **    Check availability of IO space, memory space.
  2046. **    Enable master capability if not yet.
  2047. **
  2048. **    We shouldn't have to care about the IO region when 
  2049. **    we are using MMIO. But calling check_region() from 
  2050. **    both the ncr53c8xx and the sym53c8xx drivers prevents 
  2051. **    from attaching devices from the both drivers.
  2052. **    If you have a better idea, let me know.
  2053. */
  2054. /* #ifdef SCSI_NCR_IOMAPPED */
  2055. #if 1
  2056. if (!(command & PCI_COMMAND_IO)) { 
  2057. printk(NAME53C8XX ": I/O base address (0x%lx) disabled.n",
  2058. (long) io_port);
  2059. io_port = 0;
  2060. }
  2061. #endif
  2062. if (!(command & PCI_COMMAND_MEMORY)) {
  2063. printk(NAME53C8XX ": PCI_COMMAND_MEMORY not set.n");
  2064. base = 0;
  2065. base_2 = 0;
  2066. }
  2067. io_port &= PCI_BASE_ADDRESS_IO_MASK;
  2068. base &= PCI_BASE_ADDRESS_MEM_MASK;
  2069. base_2 &= PCI_BASE_ADDRESS_MEM_MASK;
  2070. /* #ifdef SCSI_NCR_IOMAPPED */
  2071. #if 1
  2072. if (io_port && check_region (io_port, 128)) {
  2073. printk(NAME53C8XX ": IO region 0x%lx[0..127] is in usen",
  2074. (long) io_port);
  2075. io_port = 0;
  2076. }
  2077. if (!io_port)
  2078. return -1;
  2079. #endif
  2080. #ifndef SCSI_NCR_IOMAPPED
  2081. if (!base) {
  2082. printk(NAME53C8XX ": MMIO base address disabled.n");
  2083. return -1;
  2084. }
  2085. #endif
  2086. /* The ncr53c8xx driver never did set the PCI parity bit. */
  2087. /* Since setting this bit is known to trigger spurious MDPE */
  2088. /* errors on some 895 controllers when noise on power lines is */
  2089. /* too high, I donnot want to change previous ncr53c8xx driver */
  2090. /* behaviour on that point (the sym53c8xx driver set this bit). */
  2091. #if 0
  2092. /*
  2093. **    Set MASTER capable and PARITY bit, if not yet.
  2094. */
  2095. if ((command & (PCI_COMMAND_MASTER | PCI_COMMAND_PARITY))
  2096.      != (PCI_COMMAND_MASTER | PCI_COMMAND_PARITY)) {
  2097. printk(NAME53C8XX ": setting%s%s...(fix-up)n",
  2098. (command & PCI_COMMAND_MASTER) ? "" : " PCI_COMMAND_MASTER",
  2099. (command & PCI_COMMAND_PARITY) ? "" : " PCI_COMMAND_PARITY");
  2100. command |= (PCI_COMMAND_MASTER | PCI_COMMAND_PARITY);
  2101. pci_write_config_word(pdev, PCI_COMMAND, command);
  2102. }
  2103. #else
  2104. /*
  2105. **    Set MASTER capable if not yet.
  2106. */
  2107. if ((command & PCI_COMMAND_MASTER) != PCI_COMMAND_MASTER) {
  2108. printk(NAME53C8XX ": setting PCI_COMMAND_MASTER...(fix-up)n");
  2109. command |= PCI_COMMAND_MASTER;
  2110. pci_write_config_word(pdev, PCI_COMMAND, command);
  2111. }
  2112. #endif
  2113. /*
  2114. **    Fix some features according to driver setup.
  2115. */
  2116. if (!(driver_setup.special_features & 1))
  2117. chip->features &= ~FE_SPECIAL_SET;
  2118. else {
  2119. if (driver_setup.special_features & 2)
  2120. chip->features &= ~FE_WRIE;
  2121. if (driver_setup.special_features & 4)
  2122. chip->features &= ~FE_NOPM;
  2123. }
  2124. /*
  2125. ** Some features are required to be enabled in order to 
  2126. ** work around some chip problems. :) ;)
  2127. ** (ITEM 12 of a DEL about the 896 I haven't yet).
  2128. ** We must ensure the chip will use WRITE AND INVALIDATE.
  2129. ** The revision number limit is for now arbitrary.
  2130. */
  2131. if (device_id == PCI_DEVICE_ID_NCR_53C896 && revision <= 0x10) {
  2132. chip->features |= (FE_WRIE | FE_CLSE);
  2133. pci_fix_up |=  3; /* Force appropriate PCI fix-up */
  2134. }
  2135. #ifdef SCSI_NCR_PCI_FIX_UP_SUPPORT
  2136. /*
  2137. **    Try to fix up PCI config according to wished features.
  2138. */
  2139. if ((pci_fix_up & 1) && (chip->features & FE_CLSE) && 
  2140.     !cache_line_size && suggested_cache_line_size) {
  2141. cache_line_size = suggested_cache_line_size;
  2142. pci_write_config_byte(pdev,
  2143.       PCI_CACHE_LINE_SIZE, cache_line_size);
  2144. printk(NAME53C8XX ": PCI_CACHE_LINE_SIZE set to %d (fix-up).n",
  2145. cache_line_size);
  2146. }
  2147. if ((pci_fix_up & 2) && cache_line_size &&
  2148.     (chip->features & FE_WRIE) && !(command & PCI_COMMAND_INVALIDATE)) {
  2149. printk(NAME53C8XX": setting PCI_COMMAND_INVALIDATE (fix-up)n");
  2150. command |= PCI_COMMAND_INVALIDATE;
  2151. pci_write_config_word(pdev, PCI_COMMAND, command);
  2152. }
  2153. /*
  2154. **    Tune PCI LATENCY TIMER according to burst max length transfer.
  2155. **    (latency timer >= burst length + 6, we add 10 to be quite sure)
  2156. */
  2157. if (chip->burst_max && (latency_timer == 0 || (pci_fix_up & 4))) {
  2158. u_char lt = (1 << chip->burst_max) + 6 + 10;
  2159. if (latency_timer < lt) {
  2160. printk(NAME53C8XX 
  2161.        ": changing PCI_LATENCY_TIMER from %d to %d.n",
  2162.        (int) latency_timer, (int) lt);
  2163. latency_timer = lt;
  2164. pci_write_config_byte(pdev,
  2165.       PCI_LATENCY_TIMER, latency_timer);
  2166. }
  2167. }
  2168. #endif /* SCSI_NCR_PCI_FIX_UP_SUPPORT */
  2169.   /*
  2170. **    Initialise ncr_device structure with items required by ncr_attach.
  2171. */
  2172. device->pdev = pdev;
  2173. device->slot.bus = PciBusNumber(pdev);
  2174. device->slot.device_fn = PciDeviceFn(pdev);
  2175. device->slot.base = base;
  2176. device->slot.base_2 = base_2;
  2177. device->slot.base_c = base_c;
  2178. device->slot.base_2_c = base_2_c;
  2179. device->slot.io_port = io_port;
  2180. device->slot.irq = irq;
  2181. device->attach_done = 0;
  2182. return 0;
  2183. }
  2184. /*===================================================================
  2185. **
  2186. **    Detect all 53c8xx hosts and then attach them.
  2187. **
  2188. **    If we are using NVRAM, once all hosts are detected, we need to 
  2189. **    check any NVRAM for boot order in case detect and boot order 
  2190. **    differ and attach them using the order in the NVRAM.
  2191. **
  2192. **    If no NVRAM is found or data appears invalid attach boards in 
  2193. **    the the order they are detected.
  2194. **
  2195. **===================================================================
  2196. */
  2197. static int __init 
  2198. sym53c8xx__detect(Scsi_Host_Template *tpnt, u_short ncr_chip_ids[], int chips)
  2199. {
  2200. pcidev_t pcidev;
  2201. int i, j, hosts, count;
  2202. int attach_count = 0;
  2203. ncr_device *devtbl, *devp;
  2204. #ifdef SCSI_NCR_NVRAM_SUPPORT
  2205. ncr_nvram  nvram0, nvram, *nvp;
  2206. #endif
  2207. /*
  2208. **    PCI is required.
  2209. */
  2210. if (!pci_present())
  2211. return 0;
  2212. #ifdef SCSI_NCR_DEBUG_INFO_SUPPORT
  2213. ncr_debug = driver_setup.debug;
  2214. #endif
  2215. if (initverbose >= 2)
  2216. ncr_print_driver_setup();
  2217. /*
  2218. ** Allocate the device table since we donnot want to 
  2219. ** overflow the kernel stack.
  2220. ** 1 x 4K PAGE is enough for more than 40 devices for i386.
  2221. */
  2222. devtbl = m_calloc(PAGE_SIZE, "devtbl");
  2223. if (!devtbl)
  2224. return 0;
  2225. /*
  2226. **    Detect all NCR PQS/PDS memory controllers.
  2227. */
  2228. #ifdef SCSI_NCR_PQS_PDS_SUPPORT
  2229. ncr_detect_pqs_pds();
  2230. #endif
  2231. /* 
  2232. **    Detect all 53c8xx hosts.
  2233. **    Save the first Symbios NVRAM content if any 
  2234. **    for the boot order.
  2235. */
  2236. hosts = PAGE_SIZE / sizeof(*devtbl);
  2237. #ifdef SCSI_NCR_NVRAM_SUPPORT
  2238. nvp = (driver_setup.use_nvram & 0x1) ? &nvram0 : 0;
  2239. #endif
  2240. j = 0;
  2241. count = 0;
  2242. pcidev = PCIDEV_NULL;
  2243. while (1) {
  2244. char *msg = "";
  2245. if (count >= hosts)
  2246. break;
  2247. if (j >= chips)
  2248. break;
  2249. i = driver_setup.reverse_probe ? chips - 1 - j : j;
  2250. pcidev = pci_find_device(PCI_VENDOR_ID_NCR, ncr_chip_ids[i],
  2251.  pcidev);
  2252. if (pcidev == PCIDEV_NULL) {
  2253. ++j;
  2254. continue;
  2255. }
  2256. if (pci_enable_device(pcidev)) /* @!*!$&*!%-*#;! */
  2257. continue;
  2258. /* Some HW as the HP LH4 may report twice PCI devices */
  2259. for (i = 0; i < count ; i++) {
  2260. if (devtbl[i].slot.bus      == PciBusNumber(pcidev) && 
  2261.     devtbl[i].slot.device_fn == PciDeviceFn(pcidev))
  2262. break;
  2263. }
  2264. if (i != count) /* Ignore this device if we already have it */
  2265. continue;
  2266. devp = &devtbl[count];
  2267. devp->host_id = driver_setup.host_id;
  2268. devp->attach_done = 0;
  2269. if (sym53c8xx_pci_init(tpnt, pcidev, devp)) {
  2270. continue;
  2271. }
  2272. ++count;
  2273. #ifdef SCSI_NCR_NVRAM_SUPPORT
  2274. if (nvp) {
  2275. ncr_get_nvram(devp, nvp);
  2276. switch(nvp->type) {
  2277. case SCSI_NCR_SYMBIOS_NVRAM:
  2278. /*
  2279.  *   Switch to the other nvram buffer, so that 
  2280.  *   nvram0 will contain the first Symbios 
  2281.  *   format NVRAM content with boot order.
  2282.  */
  2283. nvp = &nvram;
  2284. msg = "with Symbios NVRAM";
  2285. break;
  2286. case SCSI_NCR_TEKRAM_NVRAM:
  2287. msg = "with Tekram NVRAM";
  2288. break;
  2289. }
  2290. }
  2291. #endif
  2292. #ifdef SCSI_NCR_PQS_PDS_SUPPORT
  2293. if (devp->pqs_pds)
  2294. msg = "(NCR PQS/PDS)";
  2295. #endif
  2296. printk(KERN_INFO NAME53C8XX ": 53c%s detected %sn",
  2297.        devp->chip.name, msg);
  2298. }
  2299. /*
  2300. **    If we have found a SYMBIOS NVRAM, use first the NVRAM boot 
  2301. **    sequence as device boot order.
  2302. **    check devices in the boot record against devices detected. 
  2303. **    attach devices if we find a match. boot table records that 
  2304. **    do not match any detected devices will be ignored. 
  2305. **    devices that do not match any boot table will not be attached
  2306. **    here but will attempt to be attached during the device table 
  2307. **    rescan.
  2308. */
  2309. #ifdef SCSI_NCR_NVRAM_SUPPORT
  2310. if (!nvp || nvram0.type != SCSI_NCR_SYMBIOS_NVRAM)
  2311. goto next;
  2312. for (i = 0; i < 4; i++) {
  2313. Symbios_host *h = &nvram0.data.Symbios.host[i];
  2314. for (j = 0 ; j < count ; j++) {
  2315. devp = &devtbl[j];
  2316. if (h->device_fn != devp->slot.device_fn ||
  2317.     h->bus_nr  != devp->slot.bus  ||
  2318.     h->device_id != devp->chip.device_id)
  2319. continue;
  2320. if (devp->attach_done)
  2321. continue;
  2322. if (h->flags & SYMBIOS_INIT_SCAN_AT_BOOT) {
  2323. ncr_get_nvram(devp, nvp);
  2324. if (!ncr_attach (tpnt, attach_count, devp))
  2325. attach_count++;
  2326. }
  2327. #if 0 /* Restore previous behaviour of ncr53c8xx driver */
  2328. else if (!(driver_setup.use_nvram & 0x80))
  2329. printk(KERN_INFO NAME53C8XX
  2330.        ": 53c%s state OFF thus not attachedn",
  2331.        devp->chip.name);
  2332. #endif
  2333. else
  2334. continue;
  2335. devp->attach_done = 1;
  2336. break;
  2337. }
  2338. }
  2339. next:
  2340. #endif
  2341. /* 
  2342. **    Rescan device list to make sure all boards attached.
  2343. **    Devices without boot records will not be attached yet
  2344. **    so try to attach them here.
  2345. */
  2346. for (i= 0; i < count; i++) {
  2347. devp = &devtbl[i];
  2348. if (!devp->attach_done) {
  2349. #ifdef SCSI_NCR_NVRAM_SUPPORT
  2350. ncr_get_nvram(devp, nvp);
  2351. #endif
  2352. if (!ncr_attach (tpnt, attach_count, devp))
  2353. attach_count++;
  2354. }
  2355. }
  2356. m_free(devtbl, PAGE_SIZE, "devtbl");
  2357. return attach_count;
  2358. }