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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * sbp2.c - SBP-2 protocol driver for IEEE-1394
  3.  *
  4.  * Copyright (C) 2000 James Goodwin, Filanet Corporation (www.filanet.com)
  5.  * jamesg@filanet.com
  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 Foundation,
  19.  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  20.  */
  21. /*
  22.  * Brief Description:
  23.  *
  24.  * This driver implements the Serial Bus Protocol 2 (SBP-2) over IEEE-1394
  25.  * under Linux. The SBP-2 driver is implemented as an IEEE-1394 high-level
  26.  * driver. It also registers as a SCSI lower-level driver in order to accept
  27.  * SCSI commands for transport using SBP-2.
  28.  *
  29.  * Driver Loading:
  30.  *
  31.  * Currently, the SBP-2 driver is supported only as a module. Because the 
  32.  * Linux SCSI stack is not Plug-N-Play aware, module load order is 
  33.  * important. Assuming the SCSI core drivers are either built into the 
  34.  * kernel or already loaded as modules, you should load the IEEE-1394 modules 
  35.  * in the following order:
  36.  *
  37.  *  ieee1394 (e.g. insmod ieee1394)
  38.  * ohci1394 (e.g. insmod ohci1394)
  39.  * sbp2 (e.g. insmod sbp2)
  40.  *
  41.  * The SBP-2 driver will attempt to discover any attached SBP-2 devices when first
  42.  * loaded, or after any IEEE-1394 bus reset (e.g. a hot-plug). It will then print 
  43.  * out a debug message indicating if it was able to discover a SBP-2 device.
  44.  *
  45.  * Currently, the SBP-2 driver will catch any attached SBP-2 devices during the
  46.  * initial scsi bus scan (when the driver is first loaded). To add or remove
  47.  * SBP-2 devices after this initial scan (i.e. if you plug-in or un-plug a 
  48.  * device after the SBP-2 driver is loaded), you must either use the scsi procfs
  49.  * add-single-device, remove-single-device, or a shell script such as 
  50.  * rescan-scsi-bus.sh.
  51.  *
  52.  * The easiest way to add/detect new SBP-2 devices is to run the shell script
  53.  * rescan-scsi-bus.sh (or re-load the SBP-2 driver). This script may be 
  54.  * found at:
  55.  * http://www.garloff.de/kurt/linux/rescan-scsi-bus.sh
  56.  *
  57.  * As an alternative, you may manually add/remove SBP-2 devices via the procfs with
  58.  * add-single-device <h> <b> <t> <l> or remove-single-device <h> <b> <t> <l>, where:
  59.  * <h> = host (starting at zero for first SCSI adapter)
  60.  * <b> = bus (normally zero)
  61.  * <t> = target (starting at zero for first SBP-2 device)
  62.  * <l> = lun (normally zero)
  63.  *
  64.  * e.g. To manually add/detect a new SBP-2 device
  65.  * echo "scsi add-single-device 0 0 0 0" > /proc/scsi/scsi
  66.  *
  67.  * e.g. To manually remove a SBP-2 device after it's been unplugged
  68.  * echo "scsi remove-single-device 0 0 0 0" > /proc/scsi/scsi
  69.  *
  70.  * e.g. To check to see which SBP-2/SCSI devices are currently registered
  71.  *  cat /proc/scsi/scsi
  72.  *
  73.  * After scanning for new SCSI devices (above), you may access any attached 
  74.  * SBP-2 storage devices as if they were SCSI devices (e.g. mount /dev/sda1, 
  75.  * fdisk, mkfs, etc.).
  76.  *
  77.  *
  78.  * Current Support:
  79.  *
  80.  * The SBP-2 driver is still in an early state, but supports a variety of devices.
  81.  * I have read/written many gigabytes of data from/to SBP-2 drives, and have seen 
  82.  * performance of more than 16 MBytes/s on individual drives (limit of the media 
  83.  * transfer rate).
  84.  *
  85.  * Following are the devices that have been tested successfully:
  86.  *
  87.  * - Western Digital IEEE-1394 hard drives
  88.  * - Maxtor IEEE-1394 hard drives
  89.  * - VST (SmartDisk) IEEE-1394 hard drives and Zip drives (several flavors)
  90.  * - LaCie IEEE-1394 hard drives (several flavors)
  91.  * - QPS IEEE-1394 CD-RW/DVD drives and hard drives
  92.  * - BusLink IEEE-1394 hard drives
  93.  * - Iomega IEEE-1394 Zip/Jazz drives
  94.  * - ClubMac IEEE-1394 hard drives
  95.  * - FirePower IEEE-1394 hard drives
  96.  * - EzQuest IEEE-1394 hard drives and CD-RW drives
  97.  * - Castlewood/ADS IEEE-1394 ORB drives
  98.  * - Evergreen IEEE-1394 hard drives and CD-RW drives
  99.  * - Addonics IEEE-1394 CD-RW drives
  100.  * - Bellstor IEEE-1394 hard drives and CD-RW drives
  101.  * - APDrives IEEE-1394 hard drives
  102.  * - Fujitsu IEEE-1394 MO drives
  103.  * - Sony IEEE-1394 CD-RW drives
  104.  * - Epson IEEE-1394 scanner
  105.  * - ADS IEEE-1394 memory stick and compact flash readers 
  106.  *   (e.g. "insmod sbp2 mode_sense_hack=1" for mem stick and flash readers))
  107.  * - SBP-2 bridge-based devices (LSI, Oxford Semiconductor, Indigita bridges)
  108.  * - Various other standard IEEE-1394 hard drives and enclosures
  109.  *
  110.  *
  111.  * Performance Issues:
  112.  *
  113.  * - Make sure you are "not" running fat/fat32 on your attached SBP-2 drives. You'll
  114.  *   get much better performance formatting the drive ext2 (but you will lose the
  115.  *   ability to easily move the drive between Windows/Linux).
  116.  *
  117.  *
  118.  * Current Issues:
  119.  *
  120.  * - Currently, all I/O from the scsi stack is serialized by default, as there
  121.  *   are some stress issues under investigation with deserialized I/O. To enable
  122.  *   deserialized I/O for testing, do "insmod sbp2 serialize_io=0"
  123.  *
  124.  * - Error Handling: SCSI aborts and bus reset requests are handled somewhat
  125.  *   but the code needs additional debugging.
  126.  *
  127.  * - The SBP-2 driver is currently only supported as a module. It would not take
  128.  *   much work to allow it to be compiled into the kernel, but you'd have to 
  129.  *   add some init code to the kernel to support this... and modules are much
  130.  *   more flexible anyway.   ;-)
  131.  *
  132.  *     - The scsi stack in recent kernels pass down the data transfer
  133.  *       direction as scsicmd->sc_data_direction, which we should use
  134.  *       instead of the sbp2scsi_direction_table.
  135.  *
  136.  *
  137.  * History:
  138.  *
  139.  * 07/25/00 - Initial revision (JSG)
  140.  * 08/11/00 - Following changes/bug fixes were made (JSG):
  141.  *    * Bug fix to SCSI procfs code (still needs to be synched with 2.4 kernel).
  142.  *    * Bug fix where request sense commands were actually sent on the bus.
  143.  *    * Changed bus reset/abort code to deal with devices that spin up quite
  144.  *      slowly (which result in SCSI time-outs).
  145.  *    * "More" properly pull information from device's config rom, for enumeration
  146.  *      of SBP-2 devices, and determining SBP-2 register offsets.
  147.  *    * Change Simplified Direct Access Device type to Direct Access Device type in
  148.  *      returned inquiry data, in order to make the SCSI stack happy.
  149.  *    * Modified driver to register with the SCSI stack "before" enumerating any attached
  150.  *      SBP-2 devices. This means that you'll have to use procfs scsi-add-device or 
  151.  *      some sort of script to discover new SBP-2 devices.
  152.  *    * Minor re-write of some code and other minor changes.
  153.  * 08/28/00 - Following changes/bug fixes were made (JSG):
  154.  *    * Bug fixes to scatter/gather support (case of one s/g element)
  155.  *    * Updated direction table for scsi commands (mostly DVD commands)
  156.  *    * Retries when trying to detect SBP-2 devices (for slow devices)
  157.  *    * Slightly better error handling (previously none) when commands time-out.
  158.  *    * Misc. other bug fixes and code reorganization.
  159.  * 09/13/00 - Following changes/bug fixes were made (JSG)
  160.  *    * Moved detection/enumeration code to a kernel thread which is woken up when IEEE-1394
  161.  *      bus resets occur.
  162.  *    * Added code to handle bus resets and hot-plugging while devices are mounted, but full
  163.  *      hot-plug support is not quite there yet.
  164.  *    * Now use speed map to determine speed and max payload sizes for ORBs
  165.  *    * Clean-up of code and reorganization 
  166.  * 09/19/00 - Added better hot-plug support and other minor changes (JSG)
  167.  * 10/15/00 - Fixes for latest 2.4.0 test kernel, minor fix for hot-plug race. (JSG)
  168.  * 12/03/00 - Created pool of request packet structures for use in sending out sbp2 command
  169.  *    and agent reset requests. This removes the kmallocs/kfrees in the critical I/O paths,
  170.  *    and also deals with some subtle race conditions related to allocating and freeing
  171.  *    packets. (JSG)
  172.  *      12/09/00 - Improved the sbp2 device detection by actually reading the root and unit 
  173.  *    directory (khk@khk.net)
  174.  * 12/23/00 - Following changes/enhancements were made (JSG)
  175.  *    * Only do SCSI to RBC command conversion for Direct Access and Simplified
  176.  *      Direct Access Devices (this is pulled from the config rom root directory).
  177.  *      This is needed because doing the conversion for all device types broke the
  178.  *      Epson scanner. Still looking for a better way of determining when to convert
  179.  *      commands (for RBC devices). Thanks to khk for helping on this!
  180.  *    * Added ability to "emulate" physical dma support, for host adapters such as TILynx.
  181.  *    * Determine max payload and speed by also looking at the host adapter's max_rec field.
  182.  * 01/19/01 - Added checks to sbp2 login and made the login time-out longer. Also fixed a compile 
  183.  *    problem for 2.4.0. (JSG)
  184.  * 01/24/01 - Fixed problem when individual s/g elements are 64KB or larger. Needed to break
  185.  *    up these larger elements, since the sbp2 page table element size is only 16 bits. (JSG)
  186.  * 01/29/01 - Minor byteswap fix for login response (used for reconnect and log out).
  187.  * 03/07/01 - Following changes/enhancements were made (JSG)
  188.  *    * Changes to allow us to catch the initial scsi bus scan (for detecting sbp2
  189.  *      devices when first loading sbp2.o). To disable this, un-define 
  190.  *      SBP2_SUPPORT_INITIAL_BUS_SCAN.
  191.  *    * Temporary fix to deal with many sbp2 devices that do not support individual
  192.  *      transfers of greater than 128KB in size. 
  193.  *    * Mode sense conversion from 6 byte to 10 byte versions for CDRW/DVD devices. (Mark Burton)
  194.  *    * Define allowing support for goofy sbp2 devices that do not support mode
  195.  *      sense command at all, allowing them to be mounted rw (such as 1394 memory
  196.  *      stick and compact flash readers). Define SBP2_MODE_SENSE_WRITE_PROTECT_HACK
  197.  *      if you need this fix.
  198.  * 03/29/01 - Major performance enhancements and misc. other changes. Thanks to Daniel Berlin for many of
  199.  *    changes and suggestions for change:
  200.  *    * Now use sbp2 doorbell and link commands on the fly (instead of serializing requests)
  201.  *    * Removed all bit fields in an attempt to run on PPC machines (still needs a little more work)
  202.  *    * Added large request break-up/linking support for sbp2 chipsets that do not support transfers 
  203.  *      greater than 128KB in size.
  204.  *    * Bumped up max commands per lun to two, and max total outstanding commands to eight.
  205.  * 04/03/01 - Minor clean-up. Write orb pointer directly if no outstanding commands (saves one 1394 bus
  206.  *    transaction). Added module load options (bus scan, mode sense hack, max speed, serialize_io,
  207.  *    no_large_transfers). Better bus reset handling while I/O pending. Set serialize_io to 1 by 
  208.  *    default (debugging of deserialized I/O in progress).
  209.  * 04/04/01 - Added workaround for PPC Pismo firewire chipset. See #define below. (Daniel Berlin)
  210.  * 04/20/01 - Minor clean-up. Allocate more orb structures when running with sbp2 target chipsets with
  211.  *    128KB max transfer limit.
  212.  * 06/16/01 - Converted DMA interfaces to pci_dma - Ben Collins
  213.  *  <bcollins@debian.org
  214.  * 07/22/01 - Use NodeMngr to get info about the local host and
  215.  *    attached devices. Ben Collins
  216.  *
  217.  *      09/15/01 - Remove detection code, instead subscribe to the nodemgr
  218.  *                 driver management interface.  This also removes the
  219.  *                 initial bus scan stuff since the nodemgr calls
  220.  *                 sbp2_probe for each sbp2 device already on the bus,
  221.  *                 when we register our driver.  This change 
  222.  *                 automtically adds hotplug support to the driver.
  223.  *                                 Kristian Hogsberg <hogsberg@users.sf.net>
  224.  *
  225.  *      11/17/01 - Various bugfixes/cleanups:
  226.  *                 * Remember to logout of device in sbp2_disconnect.
  227.  *                 * If we fail to reconnect to a device after bus reset
  228.  *                   remember to release unit directory, so the ieee1394
  229.  *                   knows we no longer manage it.
  230.  *                 * Unregister scsi hosts in sbp2_remove_host when a
  231.  *                   hpsb_host goes away.
  232.  *                 * Remove stupid hack in sbp2_remove_host.
  233.  *                 * Switched to "manual" module initialization
  234.  *                   (i.e. not scsi_module.c) and moved sbp2_cleanup
  235.  *                   moved sbp2scsi_release to sbp2_module_ext.  The
  236.  *                   release function is called once pr. registered
  237.  *                   scsi host, but sbp2_cleanup should only be called
  238.  *                   upon module unload.  Moved much initialization
  239.  *                   from sbp2scsi_detect to sbp2_module_init.
  240.  *                                 Kristian Hogsberg <hogsberg@users.sf.net>
  241.  */
  242. /*
  243.  * Includes
  244.  */
  245. #include <linux/config.h>
  246. #include <linux/kernel.h>
  247. #include <linux/list.h>
  248. #include <linux/string.h>
  249. #include <linux/slab.h>
  250. #include <linux/fs.h>
  251. #include <linux/poll.h>
  252. #include <linux/module.h>
  253. #include <linux/types.h>
  254. #include <linux/delay.h>
  255. #include <linux/sched.h>
  256. #include <linux/proc_fs.h>
  257. #include <linux/blk.h>
  258. #include <linux/smp_lock.h>
  259. #include <linux/init.h>
  260. #include <asm/current.h>
  261. #include <asm/uaccess.h>
  262. #include <asm/io.h>
  263. #include <asm/byteorder.h>
  264. #include <asm/system.h>
  265. #include <asm/io.h>
  266. #include <asm/scatterlist.h>
  267. #include "ieee1394.h"
  268. #include "ieee1394_types.h"
  269. #include "ieee1394_core.h"
  270. #include "hosts.h"
  271. #include "nodemgr.h"
  272. #include "highlevel.h"
  273. #include "ieee1394_transactions.h"
  274. #include "ieee1394_hotplug.h"
  275. #include "../scsi/scsi.h"
  276. #include "../scsi/hosts.h"
  277. #include "../scsi/sd.h"
  278. #include "sbp2.h"
  279. /*
  280.  * Module load parameter definitions
  281.  */
  282. /*
  283.  * Set mode_sense_hack to 1 if you have some sort of unusual sbp2 device,
  284.  * like a 1394 memory stick reader, compact flash reader, or MO drive that
  285.  * does not support mode sense. Allows you to mount the media rw instead
  286.  * of ro.
  287.  */
  288. MODULE_PARM(mode_sense_hack,"i");
  289. MODULE_PARM_DESC(mode_sense_hack, "Emulate mode sense for devices like 1394 memory stick readers");
  290. static int mode_sense_hack = 0;
  291. /*
  292.  * Change max_speed on module load if you have a bad IEEE-1394 controller
  293.  * that has trouble running 2KB packets at 400mb.
  294.  *
  295.  * NOTE: On certain OHCI parts I have seen short packets on async transmit
  296.  * (probably due to PCI latency/throughput issues with the part). You can
  297.  * bump down the speed if you are running into problems.
  298.  *
  299.  * Valid values:
  300.  * max_speed = 2 (default: max speed 400mb)
  301.  * max_speed = 1 (max speed 200mb)
  302.  * max_speed = 0 (max speed 100mb)
  303.  */
  304. MODULE_PARM(max_speed,"i");
  305. MODULE_PARM_DESC(max_speed, "Force down max speed (2 = 400mb default, 1 = 200mb, 0 = 100mb)");
  306. static int max_speed = SPEED_400;
  307. /*
  308.  * Set serialize_io to 1 if you'd like only one scsi command sent down to
  309.  * us at a time (debugging).
  310.  */
  311. MODULE_PARM(serialize_io,"i");
  312. MODULE_PARM_DESC(serialize_io, "Serialize all I/O coming down from the scsi drivers (debugging)");
  313. static int serialize_io = 1; /* serialize I/O until stress issues are resolved */
  314. /*
  315.  * Set no_large_packets to 1 if you'd like to limit the size of requests
  316.  * sent down to us (normally the sbp2 driver will break up any requests to
  317.  * any individual devices with 128KB transfer size limits).  Sets max s/g
  318.  * list elements to 0x1f in size and disables s/g clustering.
  319.  */
  320. MODULE_PARM(no_large_packets,"i");
  321. MODULE_PARM_DESC(no_large_packets, "Do not allow large transfers from scsi drivers (debugging)");
  322. static int no_large_packets = 0;
  323. /*
  324.  * Export information about protocols/devices supported by this driver.
  325.  */
  326. static struct ieee1394_device_id sbp2_id_table[] = {
  327. {
  328. match_flags:  IEEE1394_MATCH_SPECIFIER_ID |
  329.               IEEE1394_MATCH_VERSION,
  330. specifier_id: SBP2_UNIT_SPEC_ID_ENTRY & 0xffffff,
  331. version:      SBP2_SW_VERSION_ENTRY & 0xffffff
  332. },
  333. { }
  334. };
  335. MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
  336. /*
  337.  * Debug levels, configured via kernel config.
  338.  */
  339. #ifdef CONFIG_IEEE1394_SBP2_DEBUG_ORBS
  340. #define SBP2_ORB_DEBUG(fmt, args...) HPSB_ERR("sbp2("__FUNCTION__"): "fmt, ## args)
  341. static u32 global_outstanding_command_orbs = 0;
  342. #define outstanding_orb_incr global_outstanding_command_orbs++
  343. #define outstanding_orb_decr global_outstanding_command_orbs--
  344. #else
  345. #define SBP2_ORB_DEBUG(fmt, args...)
  346. #define outstanding_orb_incr
  347. #define outstanding_orb_decr
  348. #endif
  349. #ifdef CONFIG_IEEE1394_SBP2_DEBUG_DMA
  350. #define SBP2_DMA_ALLOC(fmt, args...) 
  351. HPSB_ERR("sbp2("__FUNCTION__")alloc(%d): "fmt, 
  352.  ++global_outstanding_dmas, ## args)
  353. #define SBP2_DMA_FREE(fmt, args...) 
  354. HPSB_ERR("sbp2("__FUNCTION__")free(%d): "fmt, 
  355.  --global_outstanding_dmas, ## args)
  356. static u32 global_outstanding_dmas = 0;
  357. #else
  358. #define SBP2_DMA_ALLOC(fmt, args...)
  359. #define SBP2_DMA_FREE(fmt, args...)
  360. #endif
  361. #if CONFIG_IEEE1394_SBP2_DEBUG >= 2
  362. #define SBP2_DEBUG(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
  363. #define SBP2_INFO(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
  364. #define SBP2_NOTICE(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
  365. #define SBP2_WARN(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
  366. #elif CONFIG_IEEE1394_SBP2_DEBUG == 1
  367. #define SBP2_DEBUG(fmt, args...) HPSB_DEBUG("sbp2: "fmt, ## args)
  368. #define SBP2_INFO(fmt, args...) HPSB_INFO("sbp2: "fmt, ## args)
  369. #define SBP2_NOTICE(fmt, args...) HPSB_NOTICE("sbp2: "fmt, ## args)
  370. #define SBP2_WARN(fmt, args...) HPSB_WARN("sbp2: "fmt, ## args)
  371. #else 
  372. #define SBP2_DEBUG(fmt, args...)
  373. #define SBP2_INFO(fmt, args...)
  374. #define SBP2_NOTICE(fmt, args...)
  375. #define SBP2_WARN(fmt, args...)
  376. #endif
  377. #define SBP2_ERR(fmt, args...) HPSB_ERR("sbp2: "fmt, ## args)
  378. /*
  379.  * Spinlock debugging stuff. I'm playing it safe until the driver has been
  380.  * debugged on SMP. (JSG)
  381.  */
  382. /* #define SBP2_USE_REAL_SPINLOCKS */
  383. #ifdef SBP2_USE_REAL_SPINLOCKS
  384. #define sbp2_spin_lock(lock, flags) spin_lock_irqsave(lock, flags)
  385. #define sbp2_spin_unlock(lock, flags) spin_unlock_irqrestore(lock, flags);
  386. static spinlock_t sbp2_host_info_lock = SPIN_LOCK_UNLOCKED;
  387. #else
  388. #define sbp2_spin_lock(lock, flags) do {save_flags(flags); cli();} while (0)
  389. #define sbp2_spin_unlock(lock, flags) do {restore_flags(flags);} while (0)
  390. #endif
  391. /*
  392.  * Globals
  393.  */
  394. static Scsi_Host_Template scsi_driver_template;
  395. static u8 sbp2_speedto_maxrec[] = { 0x7, 0x8, 0x9 };
  396. static LIST_HEAD(sbp2_host_info_list);
  397. static int sbp2_host_count = 0;
  398. static struct hpsb_highlevel *sbp2_hl_handle = NULL;
  399. static struct hpsb_highlevel_ops sbp2_hl_ops = {
  400. add_host: sbp2_add_host,
  401. remove_host: sbp2_remove_host,
  402. };
  403. static struct hpsb_address_ops sbp2_ops = {
  404. write: sbp2_handle_status_write
  405. };
  406. static struct hpsb_protocol_driver sbp2_driver = {
  407. name: "SBP2 Driver",
  408. id_table:  sbp2_id_table,
  409. probe:  sbp2_probe,
  410. disconnect:  sbp2_disconnect,
  411. update:  sbp2_update
  412. };
  413. /**************************************
  414.  * General utility functions
  415.  **************************************/
  416. #ifndef __BIG_ENDIAN
  417. /*
  418.  * Converts a buffer from be32 to cpu byte ordering. Length is in bytes.
  419.  */
  420. static __inline__ void sbp2util_be32_to_cpu_buffer(void *buffer, int length)
  421. {
  422. u32 *temp = buffer;
  423. for (length = (length >> 2); length--; )
  424. temp[length] = be32_to_cpu(temp[length]);
  425. return;
  426. }
  427. /*
  428.  * Converts a buffer from cpu to be32 byte ordering. Length is in bytes.
  429.  */
  430. static __inline__ void sbp2util_cpu_to_be32_buffer(void *buffer, int length)
  431. {
  432. u32 *temp = buffer;
  433. for (length = (length >> 2); length--; )
  434. temp[length] = cpu_to_be32(temp[length]);
  435. return;
  436. }
  437. #else /* BIG_ENDIAN */
  438. /* Why waste the cpu cycles? */
  439. #define sbp2util_be32_to_cpu_buffer(x,y)
  440. #define sbp2util_cpu_to_be32_buffer(x,y)
  441. #endif
  442. /*
  443.  * This function is called to initially create a packet pool for use in
  444.  * sbp2 I/O requests. This packet pool is used when sending out sbp2
  445.  * command and agent reset requests, and allows us to remove all
  446.  * kmallocs/kfrees from the critical I/O paths.
  447.  */
  448. static int sbp2util_create_request_packet_pool(struct sbp2scsi_host_info *hi)
  449. {
  450. struct hpsb_packet *packet;
  451. int i;
  452. /* Create SBP2_MAX_REQUEST_PACKETS number of request packets. */
  453. for (i=0; i<SBP2_MAX_REQUEST_PACKETS; i++) {
  454. /*
  455.  * Max payload of 8 bytes since the sbp2 command request
  456.  * uses a payload of 8 bytes, and agent reset is a quadlet
  457.  * write request. Bump this up if we plan on using this
  458.  * pool for other stuff.
  459.  */
  460. packet = alloc_hpsb_packet(8);
  461. if (!packet) {
  462. SBP2_ERR("sbp2util_create_request_packet_pool - packet allocation failed!");
  463. return(-ENOMEM);
  464. }
  465. /* 
  466.  * Put these request packets into a free list
  467.  */
  468. INIT_LIST_HEAD(&hi->request_packet[i].list);
  469. hi->request_packet[i].packet = packet;
  470. list_add_tail(&hi->request_packet[i].list, &hi->sbp2_req_free);
  471. }
  472. return(0);
  473. }
  474. /*
  475.  * This function is called to remove the packet pool. It is called when
  476.  * the sbp2 driver is unloaded.
  477.  */
  478. static void sbp2util_remove_request_packet_pool(struct sbp2scsi_host_info *hi)
  479. {
  480. struct list_head *lh;
  481. struct sbp2_request_packet *request_packet;
  482. unsigned long flags;
  483. /* 
  484.  * Go through free list releasing packets
  485.  */
  486. sbp2_spin_lock(&hi->sbp2_request_packet_lock, flags);
  487. while (!list_empty(&hi->sbp2_req_free)) {
  488. lh = hi->sbp2_req_free.next;
  489. list_del(lh);
  490. request_packet = list_entry(lh, struct sbp2_request_packet, list);
  491. /*
  492.  * Free the hpsb packets that we allocated for the pool
  493.  */
  494. if (request_packet) {
  495. free_hpsb_packet(request_packet->packet);
  496. }
  497. }
  498. sbp2_spin_unlock(&hi->sbp2_request_packet_lock, flags);
  499. return;
  500. }
  501. /*
  502.  * This function is called to retrieve a block write packet from our
  503.  * packet pool. This function is used in place of calling
  504.  * alloc_hpsb_packet (which costs us three kmallocs). Instead we just pull
  505.  * out a free request packet and re-initialize values in it. I'm sure this
  506.  * can still stand some more optimization.
  507.  */
  508. static struct sbp2_request_packet *
  509. sbp2util_allocate_write_request_packet(struct sbp2scsi_host_info *hi,
  510.        nodeid_t node, u64 addr,
  511.        size_t data_size,
  512.        quadlet_t data) {
  513. struct list_head *lh;
  514. struct sbp2_request_packet *request_packet = NULL;
  515. struct hpsb_packet *packet;
  516. unsigned long flags;
  517. sbp2_spin_lock(&hi->sbp2_request_packet_lock, flags);
  518. if (!list_empty(&hi->sbp2_req_free)) {
  519. /*
  520.  * Pull out a free request packet
  521.  */
  522. lh = hi->sbp2_req_free.next;
  523. list_del(lh);
  524. request_packet = list_entry(lh, struct sbp2_request_packet, list);
  525. packet = request_packet->packet;
  526. /*
  527.  * Initialize the packet (this is really initialization
  528.  * the core 1394 stack should do, but I'm doing it myself
  529.  * to avoid the overhead).
  530.  */
  531. packet->data_size = data_size;
  532. INIT_LIST_HEAD(&packet->list);
  533. sema_init(&packet->state_change, 0);
  534. packet->state = hpsb_unused;
  535. packet->generation = get_hpsb_generation(hi->host);
  536. packet->data_be = 1;
  537. packet->host = hi->host;
  538. packet->tlabel = get_tlabel(hi->host, node, 1);
  539. packet->node_id = node;
  540. if (!data_size) {
  541. fill_async_writequad(packet, addr, data);
  542. } else {
  543. fill_async_writeblock(packet, addr, data_size);         
  544. }
  545. /*
  546.  * Set up a task queue completion routine, which returns
  547.  * the packet to the free list and releases the tlabel.
  548.  */
  549. request_packet->tq.routine = (void (*)(void*))sbp2util_free_request_packet;
  550. request_packet->tq.data = request_packet;
  551. request_packet->hi_context = hi;
  552. queue_task(&request_packet->tq, &packet->complete_tq);
  553. /*
  554.  * Now, put the packet on the in-use list.
  555.  */
  556. list_add_tail(&request_packet->list, &hi->sbp2_req_inuse);
  557. } else {
  558. SBP2_ERR("sbp2util_allocate_request_packet - no packets available!");
  559. }
  560. sbp2_spin_unlock(&hi->sbp2_request_packet_lock, flags);
  561. return(request_packet);
  562. }
  563. /*
  564.  * This function is called to return a packet to our packet pool. It is
  565.  * also called as a completion routine when a request packet is completed.
  566.  */
  567. static void sbp2util_free_request_packet(struct sbp2_request_packet *request_packet)
  568. {
  569. unsigned long flags;
  570. struct sbp2scsi_host_info *hi = request_packet->hi_context;
  571. /*
  572.  * Free the tlabel, and return the packet to the free pool.
  573.  */
  574. sbp2_spin_lock(&hi->sbp2_request_packet_lock, flags);
  575. free_tlabel(hi->host, LOCAL_BUS | request_packet->packet->node_id,
  576.     request_packet->packet->tlabel);
  577. list_del(&request_packet->list);
  578. list_add_tail(&request_packet->list, &hi->sbp2_req_free);
  579. sbp2_spin_unlock(&hi->sbp2_request_packet_lock, flags);
  580. return;
  581. }
  582. /*
  583.  * This function is called to create a pool of command orbs used for
  584.  * command processing. It is called when a new sbp2 device is detected.
  585.  */
  586. static int sbp2util_create_command_orb_pool(struct scsi_id_instance_data *scsi_id,
  587.     struct sbp2scsi_host_info *hi)
  588. {
  589. int i;
  590. unsigned long flags;
  591. struct sbp2_command_info *command;
  592.         
  593. sbp2_spin_lock(&scsi_id->sbp2_command_orb_lock, flags);
  594. for (i = 0; i < scsi_id->sbp2_total_command_orbs; i++) {
  595. command = (struct sbp2_command_info *)
  596.     kmalloc(sizeof(struct sbp2_command_info), GFP_KERNEL);
  597. if (!command) {
  598. sbp2_spin_unlock(&scsi_id->sbp2_command_orb_lock, flags);
  599. return(-ENOMEM);
  600. }
  601. memset(command, '', sizeof(struct sbp2_command_info));
  602. command->command_orb_dma =
  603. pci_map_single (hi->host->pdev, &command->command_orb,
  604. sizeof(struct sbp2_command_orb),
  605. PCI_DMA_BIDIRECTIONAL);
  606. SBP2_DMA_ALLOC("single command orb DMA");
  607. command->sge_dma =
  608. pci_map_single (hi->host->pdev, &command->scatter_gather_element,
  609. sizeof(command->scatter_gather_element),
  610. PCI_DMA_BIDIRECTIONAL);
  611. SBP2_DMA_ALLOC("scatter_gather_element");
  612. INIT_LIST_HEAD(&command->list);
  613. list_add_tail(&command->list, &scsi_id->sbp2_command_orb_completed);
  614. }
  615. sbp2_spin_unlock(&scsi_id->sbp2_command_orb_lock, flags);
  616. return 0;
  617. }
  618. /*
  619.  * This function is called to delete a pool of command orbs.
  620.  */
  621. static void sbp2util_remove_command_orb_pool(struct scsi_id_instance_data *scsi_id,
  622.      struct sbp2scsi_host_info *hi)
  623. {
  624. struct list_head *lh, *next;
  625. struct sbp2_command_info *command;
  626. unsigned long flags;
  627.         
  628. sbp2_spin_lock(&scsi_id->sbp2_command_orb_lock, flags);
  629. if (!list_empty(&scsi_id->sbp2_command_orb_completed)) {
  630. list_for_each_safe(lh, next, &scsi_id->sbp2_command_orb_completed) {
  631. command = list_entry(lh, struct sbp2_command_info, list);
  632. /* Release our generic DMA's */
  633. pci_unmap_single(hi->host->pdev, command->command_orb_dma,
  634.  sizeof(struct sbp2_command_orb),
  635.  PCI_DMA_BIDIRECTIONAL);
  636. SBP2_DMA_FREE("single command orb DMA");
  637. pci_unmap_single(hi->host->pdev, command->sge_dma,
  638.  sizeof(command->scatter_gather_element),
  639.  PCI_DMA_BIDIRECTIONAL);
  640. SBP2_DMA_FREE("scatter_gather_element");
  641. kfree(command);
  642. }
  643. }
  644. sbp2_spin_unlock(&scsi_id->sbp2_command_orb_lock, flags);
  645. return;
  646. }
  647. /* 
  648.  * This functions finds the sbp2_command for a given outstanding command
  649.  * orb. Only looks at the inuse list.
  650.  */
  651. static struct sbp2_command_info *sbp2util_find_command_for_orb(
  652. struct scsi_id_instance_data *scsi_id, dma_addr_t orb)
  653. {
  654. struct list_head *lh;
  655. struct sbp2_command_info *command;
  656. unsigned long flags;
  657. sbp2_spin_lock(&scsi_id->sbp2_command_orb_lock, flags);
  658. if (!list_empty(&scsi_id->sbp2_command_orb_inuse)) {
  659. list_for_each(lh, &scsi_id->sbp2_command_orb_inuse) {
  660. command = list_entry(lh, struct sbp2_command_info, list);
  661. if (command->command_orb_dma == orb) {
  662. sbp2_spin_unlock(&scsi_id->sbp2_command_orb_lock, flags);
  663. return (command);
  664. }
  665. }
  666. }
  667. sbp2_spin_unlock(&scsi_id->sbp2_command_orb_lock, flags);
  668. SBP2_ORB_DEBUG("could not match command orb %x", (unsigned int)orb);
  669. return(NULL);
  670. }
  671. /* 
  672.  * This functions finds the sbp2_command for a given outstanding SCpnt.
  673.  * Only looks at the inuse list.
  674.  */
  675. static struct sbp2_command_info *sbp2util_find_command_for_SCpnt(struct scsi_id_instance_data *scsi_id, void *SCpnt)
  676. {
  677. struct list_head *lh;
  678. struct sbp2_command_info *command;
  679. unsigned long flags;
  680. sbp2_spin_lock(&scsi_id->sbp2_command_orb_lock, flags);
  681. if (!list_empty(&scsi_id->sbp2_command_orb_inuse)) {
  682. list_for_each(lh, &scsi_id->sbp2_command_orb_inuse) {
  683. command = list_entry(lh, struct sbp2_command_info, list);
  684. if (command->Current_SCpnt == SCpnt) {
  685. sbp2_spin_unlock(&scsi_id->sbp2_command_orb_lock, flags);
  686. return (command);
  687. }
  688. }
  689. }
  690. sbp2_spin_unlock(&scsi_id->sbp2_command_orb_lock, flags);
  691. return(NULL);
  692. }
  693. /*
  694.  * This function allocates a command orb used to send a scsi command.
  695.  */
  696. static struct sbp2_command_info *sbp2util_allocate_command_orb(
  697. struct scsi_id_instance_data *scsi_id, 
  698. Scsi_Cmnd *Current_SCpnt, 
  699. void (*Current_done)(Scsi_Cmnd *),
  700. struct sbp2scsi_host_info *hi)
  701. {
  702. struct list_head *lh;
  703. struct sbp2_command_info *command = NULL;
  704. unsigned long flags;
  705. sbp2_spin_lock(&scsi_id->sbp2_command_orb_lock, flags);
  706. if (!list_empty(&scsi_id->sbp2_command_orb_completed)) {
  707. lh = scsi_id->sbp2_command_orb_completed.next;
  708. list_del(lh);
  709. command = list_entry(lh, struct sbp2_command_info, list);
  710. command->Current_done = Current_done;
  711. command->Current_SCpnt = Current_SCpnt;
  712. command->linked = 0;
  713. list_add_tail(&command->list, &scsi_id->sbp2_command_orb_inuse);
  714. } else {
  715. SBP2_ERR("sbp2util_allocate_command_orb - No orbs available!");
  716. }
  717. sbp2_spin_unlock(&scsi_id->sbp2_command_orb_lock, flags);
  718. return (command);
  719. }
  720. /* Free our DMA's */
  721. static void sbp2util_free_command_dma(struct sbp2_command_info *command)
  722. {
  723. struct sbp2scsi_host_info *hi;
  724. hi = (struct sbp2scsi_host_info *) command->Current_SCpnt->host->hostdata[0];
  725. if (hi == NULL) {
  726. printk(KERN_ERR __FUNCTION__": hi == NULLn");
  727. return;
  728. }
  729. if (command->cmd_dma) {
  730. pci_unmap_single(hi->host->pdev, command->cmd_dma,
  731.  command->dma_size, command->dma_dir);
  732. SBP2_DMA_FREE("single bulk");
  733. command->cmd_dma = 0;
  734. }
  735. if (command->sge_buffer) {
  736. pci_unmap_sg(hi->host->pdev, command->sge_buffer,
  737.      command->dma_size, command->dma_dir);
  738. SBP2_DMA_FREE("scatter list");
  739. command->sge_buffer = NULL;
  740. }
  741. }
  742. /*
  743.  * This function moves a command to the completed orb list.
  744.  */
  745. static void sbp2util_mark_command_completed(struct scsi_id_instance_data *scsi_id, struct sbp2_command_info *command)
  746. {
  747. unsigned long flags;
  748. sbp2_spin_lock(&scsi_id->sbp2_command_orb_lock, flags);
  749. list_del(&command->list);
  750. sbp2util_free_command_dma(command);
  751. list_add_tail(&command->list, &scsi_id->sbp2_command_orb_completed);
  752. sbp2_spin_unlock(&scsi_id->sbp2_command_orb_lock, flags);
  753. }
  754. /*********************************************
  755.  * IEEE-1394 core driver stack related section
  756.  *********************************************/
  757. /*
  758.  * This function is called at SCSI init in order to register our driver
  759.  * with the IEEE-1394 stack.
  760.  */
  761. int sbp2_init(void)
  762. {
  763. SBP2_DEBUG("sbp2_init");
  764. /*
  765.  * Register our high level driver with 1394 stack
  766.  */
  767. sbp2_hl_handle = hpsb_register_highlevel(SBP2_DEVICE_NAME, &sbp2_hl_ops);
  768. if (sbp2_hl_handle == NULL) {
  769. SBP2_ERR("sbp2 failed to register with ieee1394 highlevel");
  770. return(-ENOMEM);
  771. }
  772. /*
  773.  * Register our sbp2 status address space...
  774.  */
  775. hpsb_register_addrspace(sbp2_hl_handle, &sbp2_ops, SBP2_STATUS_FIFO_ADDRESS,
  776. SBP2_STATUS_FIFO_ADDRESS + sizeof(struct sbp2_status_block));
  777. hpsb_register_protocol(&sbp2_driver);
  778. return 0;
  779. }
  780. /*
  781.  * This function is called from cleanup module, or during shut-down, in
  782.  * order to unregister our driver.
  783.  */
  784. void sbp2_cleanup(void)
  785. {
  786. SBP2_DEBUG("sbp2_cleanup");
  787. hpsb_unregister_protocol(&sbp2_driver);
  788. if (sbp2_hl_handle) {
  789. hpsb_unregister_highlevel(sbp2_hl_handle);
  790. sbp2_hl_handle = NULL;
  791. }
  792. }
  793. static int sbp2_probe(struct unit_directory *ud)
  794. {
  795. struct sbp2scsi_host_info *hi;
  796. SBP2_DEBUG("sbp2_probe");
  797. hi = sbp2_find_host_info(ud->ne->host);
  798. return sbp2_start_device(hi, ud);
  799. }
  800. static void sbp2_disconnect(struct unit_directory *ud)
  801. {
  802. struct sbp2scsi_host_info *hi;
  803. struct scsi_id_instance_data *scsi_id = ud->driver_data;
  804. SBP2_DEBUG("sbp2_disconnect");
  805. hi = sbp2_find_host_info(ud->ne->host);
  806. if (hi != NULL) {
  807. sbp2_logout_device(hi, scsi_id);
  808.   sbp2_remove_device(hi, scsi_id);
  809. }
  810. }
  811. static void sbp2_update(struct unit_directory *ud)
  812. {
  813. struct sbp2scsi_host_info *hi;
  814. struct scsi_id_instance_data *scsi_id = ud->driver_data;
  815. unsigned long flags;
  816. SBP2_DEBUG("sbp2_update");
  817. hi = sbp2_find_host_info(ud->ne->host);
  818. if (sbp2_reconnect_device(hi, scsi_id)) {
  819. /* Ok, reconnect has failed.  Perhaps we didn't
  820.  * reconnect fast enough. Try doing a regular login.
  821.  */
  822. if (sbp2_login_device(hi, scsi_id)) {
  823. /* Login failed too, just remove the device. */
  824. SBP2_ERR("sbp2_reconnect_device failed!");
  825. sbp2_remove_device(hi, scsi_id);
  826. hpsb_release_unit_directory(ud);
  827. return;
  828. }
  829. }
  830. /* Set max retries to something large on the device. */
  831. sbp2_set_busy_timeout(hi, scsi_id);
  832. /* Do a SBP-2 fetch agent reset. */
  833. sbp2_agent_reset(hi, scsi_id, 0);
  834. /* Get the max speed and packet size that we can use. */
  835. sbp2_max_speed_and_size(hi, scsi_id);
  836. /* Complete any pending commands with busy (so they get
  837.  * retried) and remove them from our queue
  838.  */
  839. sbp2_spin_lock(&hi->sbp2_command_lock, flags);
  840. sbp2scsi_complete_all_commands(hi, scsi_id, DID_BUS_BUSY);
  841. sbp2_spin_unlock(&hi->sbp2_command_lock, flags);
  842. }
  843. /*
  844.  * This function is called after registering our operations in sbp2_init.
  845.  * We go ahead and allocate some memory for our host info structure, and
  846.  * init some structures.
  847.  */
  848. static void sbp2_add_host(struct hpsb_host *host)
  849. {
  850. struct sbp2scsi_host_info *hi;
  851. unsigned long flags;
  852. SBP2_DEBUG("sbp2_add_host");
  853. /* Allocate some memory for our host info structure */
  854. hi = (struct sbp2scsi_host_info *)kmalloc(sizeof(struct sbp2scsi_host_info),
  855.   GFP_KERNEL);
  856. if (hi == NULL) {
  857. SBP2_ERR("out of memory in sbp2_add_host");
  858. return;
  859. }
  860. /* Initialize some host stuff */
  861. memset(hi, 0, sizeof(struct sbp2scsi_host_info));
  862. INIT_LIST_HEAD(&hi->list);
  863. INIT_LIST_HEAD(&hi->sbp2_req_inuse);
  864. INIT_LIST_HEAD(&hi->sbp2_req_free);
  865. hi->host = host;
  866. hi->sbp2_command_lock = SPIN_LOCK_UNLOCKED;
  867. hi->sbp2_request_packet_lock = SPIN_LOCK_UNLOCKED;
  868. /* Create our request packet pool (pool of packets for use in I/O) */
  869. if (sbp2util_create_request_packet_pool(hi)) {
  870. SBP2_ERR("sbp2util_create_request_packet_pool failed!");
  871. return;
  872. }
  873. sbp2_spin_lock(&sbp2_host_info_lock, flags);
  874. list_add_tail(&hi->list, &sbp2_host_info_list);
  875. sbp2_host_count++;
  876. sbp2_spin_unlock(&sbp2_host_info_lock, flags);
  877. /* Register our host with the SCSI stack. */
  878. hi->scsi_host = scsi_register (&scsi_driver_template, sizeof(void *));
  879. if (hi->scsi_host)
  880. hi->scsi_host->hostdata[0] = (unsigned long)hi;
  881. scsi_driver_template.present++;
  882. return;
  883. }
  884. /*
  885.  * This fuction returns a host info structure from the host structure, in
  886.  * case we have multiple hosts.
  887.  */
  888. static struct sbp2scsi_host_info *sbp2_find_host_info(struct hpsb_host *host)
  889. {
  890. struct list_head *lh;
  891. struct sbp2scsi_host_info *hi;
  892. list_for_each (lh, &sbp2_host_info_list) {
  893. hi = list_entry(lh, struct sbp2scsi_host_info, list);
  894. if (hi->host == host) {
  895. return hi;
  896. }
  897. }
  898. return(NULL);
  899. }
  900. /*
  901.  * This function is called when a host is removed.
  902.  */
  903. static void sbp2_remove_host(struct hpsb_host *host)
  904. {
  905. struct sbp2scsi_host_info *hi;
  906. unsigned long flags;
  907. SBP2_DEBUG("sbp2_remove_host");
  908. sbp2_spin_lock(&sbp2_host_info_lock, flags);
  909. hi = sbp2_find_host_info(host);
  910. if (hi != NULL) {
  911. sbp2util_remove_request_packet_pool(hi);
  912. sbp2_host_count--;
  913. list_del(&hi->list);
  914. scsi_unregister(hi->scsi_host);
  915. scsi_driver_template.present--;
  916. kfree(hi);
  917. }
  918. else
  919. SBP2_ERR("attempt to remove unknown host %p", host);
  920. sbp2_spin_unlock(&sbp2_host_info_lock, flags);
  921. }
  922. /*
  923.  * This function is where we first pull the node unique ids, and then
  924.  * allocate memory and register a SBP-2 device.
  925.  */
  926. static int sbp2_start_device(struct sbp2scsi_host_info *hi, struct unit_directory *ud)
  927. {
  928. struct scsi_id_instance_data *scsi_id = NULL;
  929. struct node_entry *ne;
  930. int i;
  931. SBP2_DEBUG("sbp2_start_device");
  932. ne = ud->ne;
  933. /*
  934.  * This really is a "new" device plugged in. Let's allocate memory
  935.  * for our scsi id instance data.
  936.  */
  937. scsi_id = (struct scsi_id_instance_data *)kmalloc(sizeof(struct scsi_id_instance_data),
  938.   GFP_KERNEL);
  939. if (!scsi_id)
  940. goto alloc_fail_first;
  941. memset(scsi_id, 0, sizeof(struct scsi_id_instance_data));
  942. /* Login FIFO DMA */
  943. scsi_id->login_response =
  944. pci_alloc_consistent(hi->host->pdev, sizeof(struct sbp2_login_response),
  945.      &scsi_id->login_response_dma);
  946. if (!scsi_id->login_response)
  947. goto alloc_fail;
  948. SBP2_DMA_ALLOC("consistent DMA region for login FIFO");
  949. /* Reconnect ORB DMA */
  950. scsi_id->reconnect_orb =
  951. pci_alloc_consistent(hi->host->pdev, sizeof(struct sbp2_reconnect_orb),
  952.      &scsi_id->reconnect_orb_dma);
  953. if (!scsi_id->reconnect_orb)
  954. goto alloc_fail;
  955. SBP2_DMA_ALLOC("consistent DMA region for reconnect ORB");
  956. /* Logout ORB DMA */
  957. scsi_id->logout_orb =
  958. pci_alloc_consistent(hi->host->pdev, sizeof(struct sbp2_logout_orb),
  959.      &scsi_id->logout_orb_dma);
  960. if (!scsi_id->logout_orb)
  961. goto alloc_fail;
  962. SBP2_DMA_ALLOC("consistent DMA region for logout ORB");
  963. /* Login ORB DMA */
  964. scsi_id->login_orb =
  965. pci_alloc_consistent(hi->host->pdev, sizeof(struct sbp2_login_orb),
  966.      &scsi_id->login_orb_dma);
  967. if (scsi_id->login_orb == NULL) {
  968. alloc_fail:
  969. if (scsi_id->logout_orb) {
  970. pci_free_consistent(hi->host->pdev,
  971. sizeof(struct sbp2_logout_orb),
  972. scsi_id->logout_orb,
  973. scsi_id->logout_orb_dma);
  974. SBP2_DMA_FREE("logout ORB DMA");
  975. }
  976. if (scsi_id->reconnect_orb) {
  977. pci_free_consistent(hi->host->pdev,
  978. sizeof(struct sbp2_reconnect_orb),
  979. scsi_id->reconnect_orb,
  980. scsi_id->reconnect_orb_dma);
  981. SBP2_DMA_FREE("reconnect ORB DMA");
  982. }
  983. if (scsi_id->login_response) {
  984. pci_free_consistent(hi->host->pdev,
  985. sizeof(struct sbp2_login_response),
  986. scsi_id->login_response,
  987. scsi_id->login_response_dma);
  988. SBP2_DMA_FREE("login FIFO DMA");
  989. }
  990. kfree(scsi_id);
  991. alloc_fail_first:
  992. SBP2_ERR ("Could not allocate memory for scsi_id");
  993. return(-ENOMEM);
  994. }
  995. SBP2_DMA_ALLOC("consistent DMA region for login ORB");
  996. /*
  997.  * Initialize some of the fields in this structure
  998.  */
  999. scsi_id->ne = ne;
  1000. scsi_id->ud = ud;
  1001. scsi_id->speed_code = SPEED_100;
  1002. scsi_id->max_payload_size = sbp2_speedto_maxrec[SPEED_100];
  1003. ud->driver_data = scsi_id;
  1004. init_waitqueue_head(&scsi_id->sbp2_login_wait);
  1005. /* 
  1006.  * Initialize structures needed for the command orb pool.
  1007.  */
  1008. INIT_LIST_HEAD(&scsi_id->sbp2_command_orb_inuse);
  1009. INIT_LIST_HEAD(&scsi_id->sbp2_command_orb_completed);
  1010. scsi_id->sbp2_command_orb_lock = SPIN_LOCK_UNLOCKED;
  1011. scsi_id->sbp2_total_command_orbs = 0;
  1012. /*
  1013.  * Make sure that we've gotten ahold of the sbp2 management agent
  1014.  * address. Also figure out the command set being used (SCSI or
  1015.  * RBC).
  1016.  */
  1017. sbp2_parse_unit_directory(scsi_id);
  1018. scsi_id->sbp2_total_command_orbs = SBP2_MAX_COMMAND_ORBS;
  1019. /* 
  1020.  * Knock the total command orbs down if we are serializing I/O
  1021.  */
  1022. if (serialize_io) {
  1023. scsi_id->sbp2_total_command_orbs = 2; /* one extra for good measure */
  1024. }
  1025. /*
  1026.  * Allocate some extra command orb structures for devices with
  1027.  * 128KB limit.
  1028.  */
  1029. if (scsi_id->sbp2_firmware_revision == SBP2_128KB_BROKEN_FIRMWARE) {
  1030. scsi_id->sbp2_total_command_orbs *= 4;
  1031. /*
  1032.  * Find an empty spot to stick our scsi id instance data. 
  1033.  */
  1034. for (i = 0; i < SBP2SCSI_MAX_SCSI_IDS; i++) {
  1035. if (!hi->scsi_id[i]) {
  1036. hi->scsi_id[i] = scsi_id;
  1037. scsi_id->id = i;
  1038. SBP2_DEBUG("New SBP-2 device inserted, SCSI ID = %x", (unsigned int) i);
  1039. break;
  1040. }
  1041. }
  1042. /*
  1043.  * Create our command orb pool
  1044.  */
  1045. if (sbp2util_create_command_orb_pool(scsi_id, hi)) {
  1046. SBP2_ERR("sbp2util_create_command_orb_pool failed!");
  1047. sbp2_remove_device(hi, scsi_id);
  1048. return -ENOMEM;
  1049. }
  1050. /*
  1051.  * Make sure we are not out of space
  1052.  */
  1053. if (i == SBP2SCSI_MAX_SCSI_IDS) {
  1054. SBP2_ERR("No slots left for SBP-2 device");
  1055. sbp2_remove_device(hi, scsi_id);
  1056. return -EBUSY;
  1057. }
  1058. /*
  1059.  * Login to the sbp-2 device
  1060.  */
  1061. if (sbp2_login_device(hi, scsi_id)) {
  1062. /* Login failed, just remove the device. */
  1063. SBP2_ERR("sbp2_login_device failed");
  1064. sbp2_remove_device(hi, scsi_id);
  1065. return -EBUSY;
  1066. }
  1067. /*
  1068.  * Set max retries to something large on the device
  1069.  */
  1070. sbp2_set_busy_timeout(hi, scsi_id);
  1071. /*
  1072.  * Do a SBP-2 fetch agent reset
  1073.  */
  1074. sbp2_agent_reset(hi, scsi_id, 0);
  1075. /*
  1076.  * Get the max speed and packet size that we can use
  1077.  */
  1078. sbp2_max_speed_and_size(hi, scsi_id);
  1079. return 0;
  1080. }
  1081. /*
  1082.  * This function removes an sbp2 device from the sbp2scsi_host_info struct.
  1083.  */
  1084. static void sbp2_remove_device(struct sbp2scsi_host_info *hi, 
  1085.        struct scsi_id_instance_data *scsi_id)
  1086. {
  1087. SBP2_DEBUG("sbp2_remove_device");
  1088. /* Complete any pending commands with selection timeout */
  1089. sbp2scsi_complete_all_commands(hi, scsi_id, DID_NO_CONNECT);
  1090.        
  1091. /* Clean up any other structures */
  1092. if (scsi_id->sbp2_total_command_orbs) {
  1093. sbp2util_remove_command_orb_pool(scsi_id, hi);
  1094. }
  1095. if (scsi_id->login_response) {
  1096. pci_free_consistent(hi->host->pdev,
  1097.     sizeof(struct sbp2_login_response),
  1098.     scsi_id->login_response,
  1099.     scsi_id->login_response_dma);
  1100. SBP2_DMA_FREE("single login FIFO");
  1101. }
  1102. if (scsi_id->login_orb) {
  1103. pci_free_consistent(hi->host->pdev,
  1104.     sizeof(struct sbp2_login_orb),
  1105.     scsi_id->login_orb,
  1106.     scsi_id->login_orb_dma);
  1107. SBP2_DMA_FREE("single login ORB");
  1108. }
  1109. if (scsi_id->reconnect_orb) {
  1110. pci_free_consistent(hi->host->pdev,
  1111.     sizeof(struct sbp2_reconnect_orb),
  1112.     scsi_id->reconnect_orb,
  1113.     scsi_id->reconnect_orb_dma);
  1114. SBP2_DMA_FREE("single reconnect orb");
  1115. }
  1116. if (scsi_id->logout_orb) {
  1117. pci_free_consistent(hi->host->pdev,
  1118.     sizeof(struct sbp2_logout_orb),
  1119.     scsi_id->logout_orb,
  1120.     scsi_id->reconnect_orb_dma);
  1121. SBP2_DMA_FREE("single logout orb");
  1122. }
  1123. SBP2_DEBUG("SBP-2 device removed, SCSI ID = %d", scsi_id->id);
  1124. hi->scsi_id[scsi_id->id] = NULL;
  1125. kfree(scsi_id);
  1126. }
  1127. /**************************************
  1128.  * SBP-2 protocol related section
  1129.  **************************************/
  1130. /*
  1131.  * This function is called in order to login to a particular SBP-2 device,
  1132.  * after a bus reset.
  1133.  */
  1134. static int sbp2_login_device(struct sbp2scsi_host_info *hi, struct scsi_id_instance_data *scsi_id) 
  1135. {
  1136. quadlet_t data[2];
  1137. unsigned long flags;
  1138. SBP2_DEBUG("sbp2_login_device");
  1139. if (!scsi_id->login_orb) {
  1140. SBP2_DEBUG("sbp2_login_device: login_orb not alloc'd!");
  1141. return(-EIO);
  1142. }
  1143. /* Set-up login ORB, assume no password */
  1144. scsi_id->login_orb->password_hi = 0; 
  1145. scsi_id->login_orb->password_lo = 0;
  1146. SBP2_DEBUG("sbp2_login_device: password_hi/lo initialized");
  1147. scsi_id->login_orb->login_response_lo = scsi_id->login_response_dma;
  1148. scsi_id->login_orb->login_response_hi = ORB_SET_NODE_ID(hi->host->node_id);
  1149. SBP2_DEBUG("sbp2_login_device: login_response_hi/lo initialized");
  1150. scsi_id->login_orb->lun_misc = ORB_SET_FUNCTION(LOGIN_REQUEST);
  1151. scsi_id->login_orb->lun_misc |= ORB_SET_RECONNECT(0); /* One second reconnect time */
  1152. scsi_id->login_orb->lun_misc |= ORB_SET_EXCLUSIVE(1); /* Exclusive access to device */
  1153. scsi_id->login_orb->lun_misc |= ORB_SET_NOTIFY(1); /* Notify us of login complete */
  1154. SBP2_DEBUG("sbp2_login_device: lun_misc initialized");
  1155. scsi_id->login_orb->passwd_resp_lengths =
  1156. ORB_SET_LOGIN_RESP_LENGTH(sizeof(struct sbp2_login_response));
  1157. SBP2_DEBUG("sbp2_login_device: passwd_resp_lengths initialized");
  1158. scsi_id->login_orb->status_FIFO_lo = SBP2_STATUS_FIFO_ADDRESS_LO;
  1159. scsi_id->login_orb->status_FIFO_hi = (ORB_SET_NODE_ID(hi->host->node_id) |
  1160.       SBP2_STATUS_FIFO_ADDRESS_HI);
  1161. SBP2_DEBUG("sbp2_login_device: status FIFO initialized");
  1162. /*
  1163.  * Byte swap ORB if necessary
  1164.  */
  1165. sbp2util_cpu_to_be32_buffer(scsi_id->login_orb, sizeof(struct sbp2_login_orb));
  1166. SBP2_DEBUG("sbp2_login_device: orb byte-swapped");
  1167. /*
  1168.  * Initialize login response and status fifo
  1169.  */
  1170. memset(scsi_id->login_response, 0, sizeof(struct sbp2_login_response));
  1171. memset(&scsi_id->status_block, 0, sizeof(struct sbp2_status_block));
  1172. SBP2_DEBUG("sbp2_login_device: login_response/status FIFO memset");
  1173. /*
  1174.  * Ok, let's write to the target's management agent register
  1175.  */
  1176. data[0] = ORB_SET_NODE_ID(hi->host->node_id);
  1177. data[1] = scsi_id->login_orb_dma;
  1178. sbp2util_cpu_to_be32_buffer(data, 8);
  1179. SBP2_DEBUG("sbp2_login_device: prepared to write");
  1180. hpsb_write(hi->host, LOCAL_BUS | scsi_id->ne->nodeid, scsi_id->sbp2_management_agent_addr, data, 8);
  1181. SBP2_DEBUG("sbp2_login_device: written");
  1182. /*
  1183.  * Wait for login status... but, only if the device has not
  1184.  * already logged-in (some devices are fast)
  1185.  */
  1186. save_flags(flags);
  1187. cli();
  1188. /* 10 second timeout */
  1189. if (scsi_id->status_block.ORB_offset_lo != scsi_id->login_orb_dma)
  1190. sleep_on_timeout(&scsi_id->sbp2_login_wait, 10*HZ);
  1191. restore_flags(flags);
  1192. SBP2_DEBUG("sbp2_login_device: initial check");
  1193. /*
  1194.  * Match status to the login orb. If they do not match, it's
  1195.  * probably because the login timed-out.
  1196.  */
  1197. if (scsi_id->status_block.ORB_offset_lo != scsi_id->login_orb_dma) {
  1198. SBP2_ERR("Error logging into SBP-2 device - login timed-out");
  1199. return(-EIO);
  1200. }
  1201. SBP2_DEBUG("sbp2_login_device: second check");
  1202. /*
  1203.  * Check status
  1204.  */
  1205. if (STATUS_GET_RESP(scsi_id->status_block.ORB_offset_hi_misc) ||
  1206.     STATUS_GET_DEAD_BIT(scsi_id->status_block.ORB_offset_hi_misc) ||
  1207.     STATUS_GET_SBP_STATUS(scsi_id->status_block.ORB_offset_hi_misc)) {
  1208. SBP2_ERR("Error logging into SBP-2 device - login failed");
  1209. return(-EIO);
  1210. }
  1211. /*
  1212.  * Byte swap the login response, for use when reconnecting or
  1213.  * logging out.
  1214.  */
  1215. sbp2util_cpu_to_be32_buffer(scsi_id->login_response, sizeof(struct sbp2_login_response));
  1216. /*
  1217.  * Grab our command block agent address from the login response.
  1218.  */
  1219. SBP2_DEBUG("command_block_agent_hi = %x",
  1220.    (unsigned int)scsi_id->login_response->command_block_agent_hi);
  1221. SBP2_DEBUG("command_block_agent_lo = %x",
  1222.    (unsigned int)scsi_id->login_response->command_block_agent_lo);
  1223. scsi_id->sbp2_command_block_agent_addr =
  1224. ((u64)scsi_id->login_response->command_block_agent_hi) << 32;
  1225. scsi_id->sbp2_command_block_agent_addr |= ((u64)scsi_id->login_response->command_block_agent_lo);
  1226. scsi_id->sbp2_command_block_agent_addr &= 0x0000ffffffffffffULL;
  1227. SBP2_INFO("Logged into SBP-2 device");
  1228. return(0);
  1229. }
  1230. /*
  1231.  * This function is called in order to logout from a particular SBP-2
  1232.  * device, usually called during driver unload.
  1233.  */
  1234. static int sbp2_logout_device(struct sbp2scsi_host_info *hi, struct scsi_id_instance_data *scsi_id) 
  1235. {
  1236. quadlet_t data[2];
  1237. SBP2_DEBUG("sbp2_logout_device");
  1238. /*
  1239.  * Set-up logout ORB
  1240.  */
  1241. scsi_id->logout_orb->reserved1 = 0x0;
  1242. scsi_id->logout_orb->reserved2 = 0x0;
  1243. scsi_id->logout_orb->reserved3 = 0x0;
  1244. scsi_id->logout_orb->reserved4 = 0x0;
  1245. scsi_id->logout_orb->login_ID_misc = ORB_SET_FUNCTION(LOGOUT_REQUEST);
  1246. scsi_id->logout_orb->login_ID_misc |= ORB_SET_LOGIN_ID(scsi_id->login_response->length_login_ID);
  1247. /* Notify us when complete */
  1248. scsi_id->logout_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
  1249. scsi_id->logout_orb->reserved5 = 0x0;
  1250. scsi_id->logout_orb->status_FIFO_lo = SBP2_STATUS_FIFO_ADDRESS_LO;
  1251. scsi_id->logout_orb->status_FIFO_hi = (ORB_SET_NODE_ID(hi->host->node_id) |
  1252.        SBP2_STATUS_FIFO_ADDRESS_HI);
  1253. /*
  1254.  * Byte swap ORB if necessary
  1255.  */
  1256. sbp2util_cpu_to_be32_buffer(scsi_id->logout_orb, sizeof(struct sbp2_logout_orb));
  1257. /*
  1258.  * Ok, let's write to the target's management agent register
  1259.  */
  1260. data[0] = ORB_SET_NODE_ID(hi->host->node_id);
  1261. data[1] = scsi_id->logout_orb_dma;
  1262. sbp2util_cpu_to_be32_buffer(data, 8);
  1263. hpsb_write(hi->host, LOCAL_BUS | scsi_id->ne->nodeid, scsi_id->sbp2_management_agent_addr, data, 8);
  1264. /* Wait for device to logout...1 second. */
  1265. sleep_on_timeout(&scsi_id->sbp2_login_wait, HZ);
  1266. SBP2_INFO("Logged out of SBP-2 device");
  1267. return(0);
  1268. }
  1269. /*
  1270.  * This function is called in order to reconnect to a particular SBP-2
  1271.  * device, after a bus reset.
  1272.  */
  1273. static int sbp2_reconnect_device(struct sbp2scsi_host_info *hi, struct scsi_id_instance_data *scsi_id) 
  1274. {
  1275. quadlet_t data[2];
  1276. unsigned long flags;
  1277. SBP2_DEBUG("sbp2_reconnect_device");
  1278. /*
  1279.  * Set-up reconnect ORB
  1280.  */
  1281. scsi_id->reconnect_orb->reserved1 = 0x0;
  1282. scsi_id->reconnect_orb->reserved2 = 0x0;
  1283. scsi_id->reconnect_orb->reserved3 = 0x0;
  1284. scsi_id->reconnect_orb->reserved4 = 0x0;
  1285. scsi_id->reconnect_orb->login_ID_misc = ORB_SET_FUNCTION(RECONNECT_REQUEST);
  1286. scsi_id->reconnect_orb->login_ID_misc |=
  1287. ORB_SET_LOGIN_ID(scsi_id->login_response->length_login_ID);
  1288. /* Notify us when complete */
  1289. scsi_id->reconnect_orb->login_ID_misc |= ORB_SET_NOTIFY(1);
  1290. scsi_id->reconnect_orb->reserved5 = 0x0;
  1291. scsi_id->reconnect_orb->status_FIFO_lo = SBP2_STATUS_FIFO_ADDRESS_LO;
  1292. scsi_id->reconnect_orb->status_FIFO_hi =
  1293. (ORB_SET_NODE_ID(hi->host->node_id) | SBP2_STATUS_FIFO_ADDRESS_HI);
  1294. /*
  1295.  * Byte swap ORB if necessary
  1296.  */
  1297. sbp2util_cpu_to_be32_buffer(scsi_id->reconnect_orb, sizeof(struct sbp2_reconnect_orb));
  1298. /*
  1299.  * Initialize status fifo
  1300.  */
  1301. memset(&scsi_id->status_block, 0, sizeof(struct sbp2_status_block));
  1302. /*
  1303.  * Ok, let's write to the target's management agent register
  1304.  */
  1305. data[0] = ORB_SET_NODE_ID(hi->host->node_id);
  1306. data[1] = scsi_id->reconnect_orb_dma;
  1307. sbp2util_cpu_to_be32_buffer(data, 8);
  1308. hpsb_write(hi->host, LOCAL_BUS | scsi_id->ne->nodeid, scsi_id->sbp2_management_agent_addr, data, 8);
  1309. /*
  1310.  * Wait for reconnect status... but, only if the device has not
  1311.  * already reconnected (some devices are fast).
  1312.  */
  1313. save_flags(flags);
  1314. cli();
  1315. /* One second timout */
  1316. if (scsi_id->status_block.ORB_offset_lo != scsi_id->reconnect_orb_dma)
  1317. sleep_on_timeout(&scsi_id->sbp2_login_wait, HZ);
  1318. restore_flags(flags);
  1319. /*
  1320.  * Match status to the reconnect orb. If they do not match, it's
  1321.  * probably because the reconnect timed-out.
  1322.  */
  1323. if (scsi_id->status_block.ORB_offset_lo != scsi_id->reconnect_orb_dma) {
  1324. SBP2_ERR("Error reconnecting to SBP-2 device - reconnect timed-out");
  1325. return(-EIO);
  1326. }
  1327. /*
  1328.  * Check status
  1329.  */
  1330. if (STATUS_GET_RESP(scsi_id->status_block.ORB_offset_hi_misc) ||
  1331.     STATUS_GET_DEAD_BIT(scsi_id->status_block.ORB_offset_hi_misc) ||
  1332.     STATUS_GET_SBP_STATUS(scsi_id->status_block.ORB_offset_hi_misc)) {
  1333. SBP2_ERR("Error reconnecting to SBP-2 device - reconnect failed");
  1334. return(-EIO);
  1335. }
  1336. SBP2_INFO("Reconnected to SBP-2 device");
  1337. return(0);
  1338. }
  1339. /*
  1340.  * This function is called in order to set the busy timeout (number of
  1341.  * retries to attempt) on the sbp2 device. 
  1342.  */
  1343. static int sbp2_set_busy_timeout(struct sbp2scsi_host_info *hi, struct scsi_id_instance_data *scsi_id)
  1344. {      
  1345. quadlet_t data;
  1346. SBP2_DEBUG("sbp2_set_busy_timeout");
  1347. /*
  1348.  * Ok, let's write to the target's busy timeout register
  1349.  */
  1350. data = cpu_to_be32(SBP2_BUSY_TIMEOUT_VALUE);
  1351. if (hpsb_write(hi->host, LOCAL_BUS | scsi_id->ne->nodeid, SBP2_BUSY_TIMEOUT_ADDRESS, &data, 4)) {
  1352. SBP2_ERR("sbp2_set_busy_timeout error");
  1353. }
  1354. return(0);
  1355. }
  1356. /*
  1357.  * This function is called to parse sbp2 device's config rom unit
  1358.  * directory. Used to determine things like sbp2 management agent offset,
  1359.  * and command set used (SCSI or RBC). 
  1360.  */
  1361. static void sbp2_parse_unit_directory(struct scsi_id_instance_data *scsi_id)
  1362. {
  1363. struct unit_directory *ud;
  1364. int i;
  1365. SBP2_DEBUG("sbp2_parse_unit_directory");
  1366. ud = scsi_id->ud;
  1367. /* Handle different fields in the unit directory, based on keys */
  1368. for (i = 0; i < ud->arb_count; i++) {
  1369. switch (ud->arb_keys[i]) {
  1370. case SBP2_CSR_OFFSET_KEY:
  1371. /* Save off the management agent address */
  1372. scsi_id->sbp2_management_agent_addr =
  1373. CONFIG_ROM_INITIAL_MEMORY_SPACE + 
  1374. (ud->arb_values[i] << 2);
  1375. SBP2_DEBUG("sbp2_management_agent_addr = %x",
  1376.    (unsigned int) scsi_id->sbp2_management_agent_addr);
  1377. break;
  1378. case SBP2_COMMAND_SET_SPEC_ID_KEY:
  1379. /* Command spec organization */
  1380. scsi_id->sbp2_command_set_spec_id = ud->arb_values[i];
  1381. SBP2_DEBUG("sbp2_command_set_spec_id = %x",
  1382.    (unsigned int) scsi_id->sbp2_command_set_spec_id);
  1383. break;
  1384. case SBP2_COMMAND_SET_KEY:
  1385. /* Command set used by sbp2 device */
  1386. scsi_id->sbp2_command_set = ud->arb_values[i];
  1387. SBP2_DEBUG("sbp2_command_set = %x",
  1388.    (unsigned int) scsi_id->sbp2_command_set);
  1389. break;
  1390. case SBP2_UNIT_CHARACTERISTICS_KEY:
  1391. /*
  1392.  * Unit characterisitcs (orb related stuff
  1393.  * that I'm not yet paying attention to)
  1394.  */
  1395. scsi_id->sbp2_unit_characteristics = ud->arb_values[i];
  1396. SBP2_DEBUG("sbp2_unit_characteristics = %x",
  1397.    (unsigned int) scsi_id->sbp2_unit_characteristics);
  1398. break;
  1399. case SBP2_DEVICE_TYPE_AND_LUN_KEY:
  1400. /*
  1401.  * Device type and lun (used for
  1402.  * detemining type of sbp2 device)
  1403.  */
  1404. scsi_id->sbp2_device_type_and_lun = ud->arb_values[i];
  1405. SBP2_DEBUG("sbp2_device_type_and_lun = %x",
  1406.    (unsigned int) scsi_id->sbp2_device_type_and_lun);
  1407. break;
  1408. case SBP2_FIRMWARE_REVISION_KEY:
  1409. /*
  1410.  * Firmware revision (used to find broken
  1411.  * devices). If the vendor id is 0xa0b8
  1412.  * (Symbios vendor id), then we have a
  1413.  * bridge with 128KB max transfer size
  1414.  * limitation.
  1415.  */
  1416. scsi_id->sbp2_firmware_revision = ud->arb_values[i];
  1417. if (scsi_id->sbp2_firmware_revision ==
  1418.     SBP2_128KB_BROKEN_FIRMWARE) {
  1419. SBP2_WARN("warning: Bridge chipset supports 128KB max transfer size");
  1420. }
  1421. break;
  1422. default:
  1423. break;
  1424. }
  1425. }
  1426. }
  1427. /*
  1428.  * This function is called in order to determine the max speed and packet
  1429.  * size we can use in our ORBs. Note, that we (the driver and host) only
  1430.  * initiate the transaction. The SBP-2 device actually transfers the data
  1431.  * (by reading from the DMA area we tell it). This means that the SBP-2
  1432.  * device decides the actual maximum data it can transfer. We just tell it
  1433.  * the speed that it needs to use, and the max_rec the host supports, and
  1434.  * it takes care of the rest.
  1435.  */
  1436. static int sbp2_max_speed_and_size(struct sbp2scsi_host_info *hi, struct scsi_id_instance_data *scsi_id)
  1437. {
  1438. SBP2_DEBUG("sbp2_max_speed_and_size");
  1439. /* Initial setting comes from the hosts speed map */
  1440. scsi_id->speed_code = hi->host->speed_map[(hi->host->node_id & NODE_MASK) * 64
  1441.   + (scsi_id->ne->nodeid & NODE_MASK)];
  1442. /* Bump down our speed if the user requested it */
  1443. if (scsi_id->speed_code > max_speed) {
  1444. scsi_id->speed_code = max_speed;
  1445. SBP2_ERR("Forcing SBP-2 max speed down to %s",
  1446.  hpsb_speedto_str[scsi_id->speed_code]);
  1447. }
  1448. /* Payload size is the lesser of what our speed supports and what
  1449.  * our host supports.  */
  1450. scsi_id->max_payload_size = min(sbp2_speedto_maxrec[scsi_id->speed_code],
  1451. (u8)(((be32_to_cpu(hi->host->csr.rom[2]) >> 12) & 0xf) - 1));
  1452. SBP2_ERR("Node " NODE_BUS_FMT ": Max speed [%s] - Max payload [%u]",
  1453.  NODE_BUS_ARGS(scsi_id->ne->nodeid), hpsb_speedto_str[scsi_id->speed_code],
  1454.  1 << ((u32)scsi_id->max_payload_size + 2));
  1455. return(0);
  1456. }
  1457. /*
  1458.  * This function is called in order to perform a SBP-2 agent reset. 
  1459.  */
  1460. static int sbp2_agent_reset(struct sbp2scsi_host_info *hi, struct scsi_id_instance_data *scsi_id, u32 flags) 
  1461. {
  1462. struct sbp2_request_packet *agent_reset_request_packet;
  1463. SBP2_DEBUG("sbp2_agent_reset");
  1464. /*
  1465.  * Ok, let's write to the target's management agent register
  1466.  */
  1467. agent_reset_request_packet =
  1468. sbp2util_allocate_write_request_packet(hi, LOCAL_BUS | scsi_id->ne->nodeid,
  1469.        scsi_id->sbp2_command_block_agent_addr +
  1470.        SBP2_AGENT_RESET_OFFSET,
  1471.        0, ntohl(SBP2_AGENT_RESET_DATA));
  1472. if (!agent_reset_request_packet) {
  1473. SBP2_ERR("sbp2util_allocate_write_request_packet failed");
  1474. return(-EIO);
  1475. }
  1476. if (!hpsb_send_packet(agent_reset_request_packet->packet)) {
  1477. SBP2_ERR("hpsb_send_packet failed");
  1478. sbp2util_free_request_packet(agent_reset_request_packet); 
  1479. return(-EIO);
  1480. }
  1481. if (!(flags & SBP2_SEND_NO_WAIT)) {
  1482. down(&agent_reset_request_packet->packet->state_change);
  1483. down(&agent_reset_request_packet->packet->state_change);
  1484. }
  1485. /*
  1486.  * Need to make sure orb pointer is written on next command
  1487.  */
  1488. scsi_id->last_orb = NULL;
  1489. return(0);
  1490. }
  1491. /*
  1492.  * This function is called to create the actual command orb and s/g list
  1493.  * out of the scsi command itself.
  1494.  */
  1495. static int sbp2_create_command_orb(struct sbp2scsi_host_info *hi, 
  1496.    struct scsi_id_instance_data *scsi_id,
  1497.    struct sbp2_command_info *command,
  1498.    unchar *scsi_cmd,
  1499.    unsigned int scsi_use_sg,
  1500.    unsigned int scsi_request_bufflen,
  1501.    void *scsi_request_buffer, int dma_dir)
  1502. {
  1503. struct scatterlist *sgpnt = (struct scatterlist *) scsi_request_buffer;
  1504. struct sbp2_command_orb *command_orb = &command->command_orb;
  1505. struct sbp2_unrestricted_page_table *scatter_gather_element =
  1506. &command->scatter_gather_element[0];
  1507. u32 sg_count, sg_len;
  1508. dma_addr_t sg_addr;
  1509. int i;
  1510. /*
  1511.  * Set-up our command ORB..
  1512.  *
  1513.  * NOTE: We're doing unrestricted page tables (s/g), as this is
  1514.  * best performance (at least with the devices I have). This means
  1515.  * that data_size becomes the number of s/g elements, and
  1516.  * page_size should be zero (for unrestricted).
  1517.  */
  1518. command_orb->next_ORB_hi = 0xffffffff;
  1519. command_orb->next_ORB_lo = 0xffffffff;
  1520. command_orb->misc = ORB_SET_MAX_PAYLOAD(scsi_id->max_payload_size);
  1521. command_orb->misc |= ORB_SET_SPEED(scsi_id->speed_code);
  1522. command_orb->misc |= ORB_SET_NOTIFY(1); /* Notify us when complete */
  1523. /*
  1524.  * Set-up our pagetable stuff... unfortunately, this has become
  1525.  * messier than I'd like. Need to clean this up a bit.   ;-)
  1526.  */
  1527. if (sbp2scsi_direction_table[*scsi_cmd] == ORB_DIRECTION_NO_DATA_TRANSFER) {
  1528. SBP2_DEBUG("No data transfer");
  1529. /*
  1530.  * Handle no data transfer
  1531.  */
  1532. command_orb->data_descriptor_hi = 0xffffffff;
  1533. command_orb->data_descriptor_lo = 0xffffffff;
  1534. command_orb->misc |= ORB_SET_DIRECTION(1);
  1535. } else if (scsi_use_sg) {
  1536. SBP2_DEBUG("Use scatter/gather");
  1537. /*
  1538.  * Special case if only one element (and less than 64KB in size)
  1539.  */
  1540. if ((scsi_use_sg == 1) && (sgpnt[0].length <= SBP2_MAX_SG_ELEMENT_LENGTH)) {
  1541. SBP2_DEBUG("Only one s/g element");
  1542. command->dma_dir = dma_dir;
  1543. command->dma_size = sgpnt[0].length;
  1544. command->cmd_dma = pci_map_single (hi->host->pdev, sgpnt[0].address,
  1545.    command->dma_size,
  1546.    command->dma_dir);
  1547. SBP2_DMA_ALLOC("single scatter element");
  1548. command_orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
  1549. command_orb->data_descriptor_lo = command->cmd_dma;
  1550. command_orb->misc |= ORB_SET_DATA_SIZE(command->dma_size);
  1551. command_orb->misc |= ORB_SET_DIRECTION(sbp2scsi_direction_table[*scsi_cmd]);
  1552. } else {
  1553. int count = pci_map_sg(hi->host->pdev, sgpnt, scsi_use_sg, dma_dir);
  1554. SBP2_DMA_ALLOC("scatter list");
  1555. command->dma_size = scsi_use_sg;
  1556. command->dma_dir = dma_dir;
  1557. command->sge_buffer = sgpnt;
  1558. /* use page tables (s/g) */
  1559. command_orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
  1560. command_orb->misc |= ORB_SET_DIRECTION(sbp2scsi_direction_table[*scsi_cmd]);
  1561. command_orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
  1562. command_orb->data_descriptor_lo = command->sge_dma;
  1563. /*
  1564.  * Loop through and fill out our sbp-2 page tables
  1565.  * (and split up anything too large)
  1566.  */
  1567. for (i = 0, sg_count = 0 ; i < count; i++, sgpnt++) {
  1568. sg_len = sg_dma_len(sgpnt);
  1569. sg_addr = sg_dma_address(sgpnt);
  1570. while (sg_len) {
  1571. scatter_gather_element[sg_count].segment_base_lo = sg_addr;
  1572. if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
  1573. scatter_gather_element[sg_count].length_segment_base_hi =  
  1574. PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
  1575. sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
  1576. sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
  1577. } else {
  1578. scatter_gather_element[sg_count].length_segment_base_hi = 
  1579. PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
  1580. sg_len = 0;
  1581. }
  1582. sg_count++;
  1583. }
  1584. }
  1585. /* Number of page table (s/g) elements */
  1586. command_orb->misc |= ORB_SET_DATA_SIZE(sg_count);
  1587. /*
  1588.  * Byte swap page tables if necessary
  1589.  */
  1590. sbp2util_cpu_to_be32_buffer(scatter_gather_element, 
  1591.     (sizeof(struct sbp2_unrestricted_page_table)) *
  1592.     sg_count);
  1593. }
  1594. } else {
  1595. SBP2_DEBUG("No scatter/gather");
  1596. command->dma_dir = dma_dir;
  1597. command->dma_size = scsi_request_bufflen;
  1598. command->cmd_dma = pci_map_single (hi->host->pdev, scsi_request_buffer,
  1599.    command->dma_size,
  1600.    command->dma_dir);
  1601. SBP2_DMA_ALLOC("single bulk");
  1602. /*
  1603.  * Handle case where we get a command w/o s/g enabled (but
  1604.  * check for transfers larger than 64K)
  1605.  */
  1606. if (scsi_request_bufflen <= SBP2_MAX_SG_ELEMENT_LENGTH) {
  1607. command_orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
  1608. command_orb->data_descriptor_lo = command->cmd_dma;
  1609. command_orb->misc |= ORB_SET_DATA_SIZE(scsi_request_bufflen);
  1610. command_orb->misc |= ORB_SET_DIRECTION(sbp2scsi_direction_table[*scsi_cmd]);
  1611. /*
  1612.  * Sanity, in case our direction table is not
  1613.  * up-to-date
  1614.  */
  1615. if (!scsi_request_bufflen) {
  1616. command_orb->data_descriptor_hi = 0xffffffff;
  1617. command_orb->data_descriptor_lo = 0xffffffff;
  1618. command_orb->misc |= ORB_SET_DIRECTION(1);
  1619. }
  1620. } else {
  1621. /*
  1622.  * Need to turn this into page tables, since the
  1623.  * buffer is too large.
  1624.  */                     
  1625. command_orb->data_descriptor_hi = ORB_SET_NODE_ID(hi->host->node_id);
  1626. command_orb->data_descriptor_lo = command->sge_dma;
  1627. /* Use page tables (s/g) */
  1628. command_orb->misc |= ORB_SET_PAGE_TABLE_PRESENT(0x1);
  1629. command_orb->misc |= ORB_SET_DIRECTION(sbp2scsi_direction_table[*scsi_cmd]);
  1630. /*
  1631.  * fill out our sbp-2 page tables (and split up
  1632.  * the large buffer)
  1633.  */
  1634. sg_count = 0;
  1635. sg_len = scsi_request_bufflen;
  1636. sg_addr = command->cmd_dma;
  1637. while (sg_len) {
  1638. scatter_gather_element[sg_count].segment_base_lo = sg_addr;
  1639. if (sg_len > SBP2_MAX_SG_ELEMENT_LENGTH) {
  1640. scatter_gather_element[sg_count].length_segment_base_hi = 
  1641. PAGE_TABLE_SET_SEGMENT_LENGTH(SBP2_MAX_SG_ELEMENT_LENGTH);
  1642. sg_addr += SBP2_MAX_SG_ELEMENT_LENGTH;
  1643. sg_len -= SBP2_MAX_SG_ELEMENT_LENGTH;
  1644. } else {
  1645. scatter_gather_element[sg_count].length_segment_base_hi = 
  1646. PAGE_TABLE_SET_SEGMENT_LENGTH(sg_len);
  1647. sg_len = 0;
  1648. }
  1649. sg_count++;
  1650. }
  1651. /* Number of page table (s/g) elements */
  1652. command_orb->misc |= ORB_SET_DATA_SIZE(sg_count);
  1653. /*
  1654.  * Byte swap page tables if necessary
  1655.  */
  1656. sbp2util_cpu_to_be32_buffer(scatter_gather_element, 
  1657.     (sizeof(struct sbp2_unrestricted_page_table)) *
  1658.      sg_count);
  1659. }
  1660. }
  1661. /*
  1662.  * Byte swap command ORB if necessary
  1663.  */
  1664. sbp2util_cpu_to_be32_buffer(command_orb, sizeof(struct sbp2_command_orb));
  1665. /*
  1666.  * Put our scsi command in the command ORB
  1667.  */
  1668. memset(command_orb->cdb, 0, 12);
  1669. memcpy(command_orb->cdb, scsi_cmd, COMMAND_SIZE(*scsi_cmd));
  1670. return(0);
  1671. }
  1672.  
  1673. /*
  1674.  * This function is called in order to begin a regular SBP-2 command. 
  1675.  */
  1676. static int sbp2_link_orb_command(struct sbp2scsi_host_info *hi, struct scsi_id_instance_data *scsi_id,
  1677.  struct sbp2_command_info *command)
  1678. {
  1679.         struct sbp2_request_packet *command_request_packet;
  1680. struct sbp2_command_orb *command_orb = &command->command_orb;
  1681. outstanding_orb_incr;
  1682. SBP2_ORB_DEBUG("sending command orb %p, linked = %x, total orbs = %x",
  1683. command_orb, command->linked, global_outstanding_command_orbs);
  1684. /*
  1685.  * Check to see if there are any previous orbs to use
  1686.  */
  1687. if (scsi_id->last_orb == NULL) {
  1688. /*
  1689.  * Ok, let's write to the target's management agent register
  1690.  */
  1691. if (hpsb_node_entry_valid(scsi_id->ne)) {
  1692. command_request_packet =
  1693. sbp2util_allocate_write_request_packet(hi, LOCAL_BUS | scsi_id->ne->nodeid,
  1694. scsi_id->sbp2_command_block_agent_addr +
  1695. SBP2_ORB_POINTER_OFFSET, 8, 0);
  1696. if (!command_request_packet) {
  1697. SBP2_ERR("sbp2util_allocate_write_request_packet failed");
  1698. return(-EIO);
  1699. }
  1700. command_request_packet->packet->data[0] = ORB_SET_NODE_ID(hi->host->node_id);
  1701. command_request_packet->packet->data[1] = command->command_orb_dma;
  1702. sbp2util_cpu_to_be32_buffer(command_request_packet->packet->data, 8);
  1703. SBP2_ORB_DEBUG("write command agent, command orb %p", command_orb);
  1704. if (!hpsb_send_packet(command_request_packet->packet)) {
  1705. SBP2_ERR("hpsb_send_packet failed");
  1706. sbp2util_free_request_packet(command_request_packet); 
  1707. return(-EIO);
  1708. }
  1709. SBP2_ORB_DEBUG("write command agent complete");
  1710. }
  1711. scsi_id->last_orb = command_orb;
  1712. } else {
  1713. /*
  1714.  * We have an orb already sent (maybe or maybe not
  1715.  * processed) that we can append this orb to. So do so,
  1716.  * and ring the doorbell. Have to be very careful
  1717.  * modifying these next orb pointers, as they are accessed
  1718.  * both by the sbp2 device and us.
  1719.  */
  1720. scsi_id->last_orb->next_ORB_lo =
  1721. cpu_to_be32(command->command_orb_dma);
  1722. /* Tells hardware that this pointer is valid */
  1723. scsi_id->last_orb->next_ORB_hi = 0x0;
  1724. /*
  1725.  * Only ring the doorbell if we need to (first parts of
  1726.  * linked orbs don't need this).
  1727.  */
  1728. if (!command->linked && hpsb_node_entry_valid(scsi_id->ne)) {
  1729. command_request_packet = sbp2util_allocate_write_request_packet(hi,
  1730. LOCAL_BUS | scsi_id->ne->nodeid,
  1731. scsi_id->sbp2_command_block_agent_addr + SBP2_DOORBELL_OFFSET,
  1732. 0, cpu_to_be32(command->command_orb_dma));
  1733. if (!command_request_packet) {
  1734. SBP2_ERR("sbp2util_allocate_write_request_packet failed");
  1735. return(-EIO);
  1736. }
  1737. SBP2_ORB_DEBUG("ring doorbell, command orb %p", command_orb);
  1738. if (!hpsb_send_packet(command_request_packet->packet)) {
  1739. SBP2_ERR("hpsb_send_packet failed");
  1740. sbp2util_free_request_packet(command_request_packet);
  1741. return(-EIO);
  1742. }
  1743. }
  1744. scsi_id->last_orb = command_orb;
  1745. }
  1746.         return(0);
  1747. }
  1748. /*
  1749.  * This function is called in order to begin a regular SBP-2 command. 
  1750.  */
  1751. static int sbp2_send_command(struct sbp2scsi_host_info *hi, struct scsi_id_instance_data *scsi_id,
  1752.      Scsi_Cmnd *SCpnt, void (*done)(Scsi_Cmnd *))
  1753. {
  1754. unchar *cmd = (unchar *) SCpnt->cmnd;
  1755. u32 device_type = (scsi_id->sbp2_device_type_and_lun & 0x00ff0000) >> 16;
  1756. struct sbp2_command_info *command;
  1757. SBP2_DEBUG("sbp2_send_command");
  1758. SBP2_DEBUG("SCSI command = %02x", *cmd);
  1759. SBP2_DEBUG("SCSI transfer size = %x", SCpnt->request_bufflen);
  1760. SBP2_DEBUG("SCSI s/g elements = %x", (unsigned int)SCpnt->use_sg);
  1761. /*
  1762.  * Check for broken devices that can't handle greater than 128K
  1763.  * transfers, and deal with them in a hacked ugly way.
  1764.  */
  1765. if ((scsi_id->sbp2_firmware_revision == SBP2_128KB_BROKEN_FIRMWARE) && 
  1766.     (SCpnt->request_bufflen > SBP2_BROKEN_FIRMWARE_MAX_TRANSFER) && 
  1767.     (device_type == TYPE_DISK) &&
  1768.     (SCpnt->use_sg) &&
  1769.     (*cmd == 0x28 || *cmd == 0x2a || *cmd == 0x0a || *cmd == 0x08)) {
  1770. /*
  1771.  * Darn, a broken device. We'll need to split up the
  1772.  * transfer ourselves.
  1773.  */
  1774. sbp2_send_split_command(hi, scsi_id, SCpnt, done);
  1775. return(0);
  1776. }
  1777. /*
  1778.  * Allocate a command orb and s/g structure
  1779.  */
  1780. command = sbp2util_allocate_command_orb(scsi_id, SCpnt, done, hi);
  1781. if (!command) {
  1782. return(-EIO);
  1783. }
  1784. /*
  1785.  * Now actually fill in the comamnd orb and sbp2 s/g list
  1786.  */
  1787. sbp2_create_command_orb(hi, scsi_id, command, cmd, SCpnt->use_sg,
  1788. SCpnt->request_bufflen, SCpnt->request_buffer,
  1789. scsi_to_pci_dma_dir(SCpnt->sc_data_direction)); 
  1790. /*
  1791.  * Update our cdb if necessary (to handle sbp2 RBC command set
  1792.  * differences).  This is where the command set hacks go!   =)
  1793.  */
  1794. if ((device_type == TYPE_DISK) ||
  1795.     (device_type == TYPE_SDAD) ||
  1796.     (device_type == TYPE_ROM)) {
  1797. sbp2_check_sbp2_command(command->command_orb.cdb);
  1798. }
  1799. /*
  1800.  * Initialize status fifo
  1801.  */
  1802. memset(&scsi_id->status_block, 0, sizeof(struct sbp2_status_block));
  1803. /*
  1804.  * Link up the orb, and ring the doorbell if needed
  1805.  */
  1806. sbp2_link_orb_command(hi, scsi_id, command);
  1807. return(0);
  1808. }
  1809. /*
  1810.  * This function is called for broken sbp2 device, where we have to break
  1811.  * up large transfers.
  1812.  */
  1813. static int sbp2_send_split_command(struct sbp2scsi_host_info *hi, struct scsi_id_instance_data *scsi_id,
  1814.    Scsi_Cmnd *SCpnt, void (*done)(Scsi_Cmnd *))
  1815. {
  1816. unchar *cmd = (unchar *) SCpnt->cmnd;
  1817. struct scatterlist *sgpnt = (struct scatterlist *) SCpnt->request_buffer;
  1818. struct sbp2_command_info *command;
  1819. unsigned int i, block_count, block_address, block_size;
  1820. unsigned int current_sg = 0;
  1821. unsigned int total_transfer = 0;
  1822. unsigned int total_sg = 0;
  1823. unchar new_cmd[12];
  1824. memset(new_cmd, 0, 12);
  1825. memcpy(new_cmd, cmd, COMMAND_SIZE(*cmd));
  1826. /*
  1827.  * Turns command into 10 byte version
  1828.  */
  1829. sbp2_check_sbp2_command(new_cmd);
  1830.         
  1831. /*
  1832.  * Pull block size, block address, block count from command sent down
  1833.  */
  1834. block_count = (cmd[7] << 8) | cmd[8];
  1835. block_address = (cmd[2] << 24) | (cmd[3] << 16) | (cmd[4] << 8) | cmd[5]; 
  1836. block_size = SCpnt->request_bufflen/block_count;
  1837. /*
  1838.  * Walk the scsi s/g list to determine how much we can transfer in one pop
  1839.  */
  1840. for (i=0; i<SCpnt->use_sg; i++) {
  1841. total_transfer+=sgpnt[i].length;
  1842. total_sg++;
  1843. if (total_transfer > SBP2_BROKEN_FIRMWARE_MAX_TRANSFER) {
  1844. /*
  1845.  * Back everything up one, so that we're less than 128KB
  1846.  */
  1847. total_transfer-=sgpnt[i].length;
  1848. total_sg--;
  1849. i--;
  1850. command = sbp2util_allocate_command_orb(scsi_id, SCpnt, done, hi);
  1851. if (!command) {
  1852. return(-EIO);
  1853. }
  1854. /*
  1855.  * This is not the final piece, so mark it as linked
  1856.  */
  1857. command->linked = 1;
  1858. block_count = total_transfer/block_size;
  1859. new_cmd[2] = (unchar) (block_address >> 24) & 0xff;
  1860. new_cmd[3] = (unchar) (block_address >> 16) & 0xff;
  1861. new_cmd[4] = (unchar) (block_address >> 8) & 0xff;
  1862. new_cmd[5] = (unchar) block_address & 0xff;
  1863. new_cmd[7] = (unchar) (block_count >> 8) & 0xff;
  1864. new_cmd[8] = (unchar) block_count & 0xff;
  1865. block_address+=block_count;
  1866. sbp2_create_command_orb(hi, scsi_id, command, new_cmd, total_sg, 
  1867. total_transfer, &sgpnt[current_sg],
  1868. scsi_to_pci_dma_dir(SCpnt->sc_data_direction));
  1869. /*
  1870.  * Link up the orb, and ring the doorbell if needed
  1871.  */
  1872. memset(&scsi_id->status_block, 0, sizeof(struct sbp2_status_block));
  1873. sbp2_link_orb_command(hi, scsi_id, command);
  1874. current_sg += total_sg;
  1875. total_sg = 0;
  1876. total_transfer = 0;
  1877. }
  1878. }
  1879. /*
  1880.  * Get the last piece...
  1881.  */
  1882. command = sbp2util_allocate_command_orb(scsi_id, SCpnt, done, hi);
  1883. if (!command) {
  1884. return(-EIO);
  1885. }
  1886. block_count = total_transfer/block_size;
  1887. new_cmd[2] = (unchar) (block_address >> 24) & 0xff;
  1888. new_cmd[3] = (unchar) (block_address >> 16) & 0xff;
  1889. new_cmd[4] = (unchar) (block_address >> 8) & 0xff;
  1890. new_cmd[5] = (unchar) block_address & 0xff;
  1891. new_cmd[7] = (unchar) (block_count >> 8) & 0xff;
  1892. new_cmd[8] = (unchar) block_count & 0xff;
  1893. sbp2_create_command_orb(hi, scsi_id, command, new_cmd, total_sg, 
  1894. total_transfer, &sgpnt[current_sg],
  1895. scsi_to_pci_dma_dir(SCpnt->sc_data_direction));
  1896. /*
  1897.  * Link up the orb, and ring the doorbell if needed
  1898.  */
  1899. memset(&scsi_id->status_block, 0, sizeof(struct sbp2_status_block));
  1900. sbp2_link_orb_command(hi, scsi_id, command);
  1901. return(0);
  1902. }
  1903. /*
  1904.  * This function deals with command set differences between Linux scsi
  1905.  * command set and sbp2 RBC command set.
  1906.  */
  1907. static void sbp2_check_sbp2_command(unchar *cmd)
  1908. {
  1909. unchar new_cmd[16];
  1910. SBP2_DEBUG("sbp2_check_sbp2_command");
  1911. switch (*cmd) {
  1912. case READ_6:
  1913. SBP2_DEBUG("Convert READ_6 to READ_10");
  1914. /*
  1915.  * Need to turn read_6 into read_10
  1916.  */
  1917. new_cmd[0] = 0x28;
  1918. new_cmd[1] = (cmd[1] & 0xe0);
  1919. new_cmd[2] = 0x0;
  1920. new_cmd[3] = (cmd[1] & 0x1f);
  1921. new_cmd[4] = cmd[2];
  1922. new_cmd[5] = cmd[3];
  1923. new_cmd[6] = 0x0;
  1924. new_cmd[7] = 0x0;
  1925. new_cmd[8] = cmd[4];
  1926. new_cmd[9] = cmd[5];
  1927. memcpy(cmd, new_cmd, 10);
  1928. break;
  1929. case WRITE_6:
  1930. SBP2_DEBUG("Convert WRITE_6 to WRITE_10");
  1931. /*
  1932.  * Need to turn write_6 into write_10
  1933.  */
  1934. new_cmd[0] = 0x2a;
  1935. new_cmd[1] = (cmd[1] & 0xe0);
  1936. new_cmd[2] = 0x0;
  1937. new_cmd[3] = (cmd[1] & 0x1f);
  1938. new_cmd[4] = cmd[2];
  1939. new_cmd[5] = cmd[3];
  1940. new_cmd[6] = 0x0;
  1941. new_cmd[7] = 0x0;
  1942. new_cmd[8] = cmd[4];
  1943. new_cmd[9] = cmd[5];
  1944. memcpy(cmd, new_cmd, 10);
  1945. break;
  1946. case MODE_SENSE:
  1947. SBP2_DEBUG("Convert MODE_SENSE_6 to MOSE_SENSE_10");
  1948. /*
  1949.  * Need to turn mode_sense_6 into mode_sense_10
  1950.  */
  1951. new_cmd[0] = 0x5a;
  1952. new_cmd[1] = cmd[1];
  1953. new_cmd[2] = cmd[2];
  1954. new_cmd[3] = 0x0;
  1955. new_cmd[4] = 0x0;
  1956. new_cmd[5] = 0x0;
  1957. new_cmd[6] = 0x0;
  1958. new_cmd[7] = 0x0;
  1959. new_cmd[8] = cmd[4];
  1960. new_cmd[9] = cmd[5];
  1961. memcpy(cmd, new_cmd, 10);
  1962. break;
  1963. case MODE_SELECT:
  1964. /*
  1965.  * TODO. Probably need to change mode select to 10 byte version
  1966.  */
  1967. default:
  1968. break;
  1969. }
  1970. return;
  1971. }
  1972. /*
  1973.  * Translates SBP-2 status into SCSI sense data for check conditions
  1974.  */
  1975. static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status, unchar *sense_data)
  1976. {
  1977. SBP2_DEBUG("sbp2_status_to_sense_data");
  1978. /*
  1979.  * Ok, it's pretty ugly...   ;-)
  1980.  */
  1981. sense_data[0] = 0x70;
  1982. sense_data[1] = 0x0;
  1983. sense_data[2] = sbp2_status[9];
  1984. sense_data[3] = sbp2_status[12];
  1985. sense_data[4] = sbp2_status[13];
  1986. sense_data[5] = sbp2_status[14];
  1987. sense_data[6] = sbp2_status[15];
  1988. sense_data[7] = 10;
  1989. sense_data[8] = sbp2_status[16];
  1990. sense_data[9] = sbp2_status[17];
  1991. sense_data[10] = sbp2_status[18];
  1992. sense_data[11] = sbp2_status[19];
  1993. sense_data[12] = sbp2_status[10];
  1994. sense_data[13] = sbp2_status[11];
  1995. sense_data[14] = sbp2_status[20];
  1996. sense_data[15] = sbp2_status[21];
  1997. return(sbp2_status[8] & 0x3f); /* return scsi status */
  1998. }
  1999. /*
  2000.  * This function is called after a command is completed, in order to do any necessary SBP-2
  2001.  * response data translations for the SCSI stack
  2002.  */
  2003. static void sbp2_check_sbp2_response(struct sbp2scsi_host_info *hi,
  2004.      struct scsi_id_instance_data *scsi_id, 
  2005.      Scsi_Cmnd *SCpnt)
  2006. {
  2007. u8 *scsi_buf = SCpnt->request_buffer;
  2008. u32 device_type = (scsi_id->sbp2_device_type_and_lun & 0x00ff0000) >> 16;
  2009.         
  2010. SBP2_DEBUG("sbp2_check_sbp2_response");
  2011. switch (SCpnt->cmnd[0]) {
  2012. case INQUIRY:
  2013. SBP2_DEBUG("Check Inquiry data");
  2014. /*
  2015.  * Check for Simple Direct Access Device and change it to TYPE_DISK
  2016.  */
  2017. if ((scsi_buf[0] & 0x1f) == TYPE_SDAD) {
  2018. SBP2_DEBUG("Changing TYPE_SDAD to TYPE_DISK");
  2019. scsi_buf[0] &= 0xe0;
  2020. }
  2021. /*
  2022.  * Fix ansi revision and response data format
  2023.  */
  2024. scsi_buf[2] |= 2;
  2025. scsi_buf[3] = (scsi_buf[3] & 0xf0) | 2;
  2026. break;
  2027. case MODE_SENSE:
  2028. if ((device_type == TYPE_DISK) ||
  2029.     (device_type == TYPE_SDAD) ||
  2030.     (device_type == TYPE_ROM)) {
  2031. SBP2_DEBUG("Modify mode sense response (10 byte version)");
  2032. scsi_buf[0] = scsi_buf[1]; /* Mode data length */
  2033. scsi_buf[1] = scsi_buf[2]; /* Medium type */
  2034. scsi_buf[2] = scsi_buf[3]; /* Device specific parameter */
  2035. scsi_buf[3] = scsi_buf[7]; /* Block descriptor length */
  2036. memcpy(scsi_buf + 4, scsi_buf + 8, scsi_buf[0]);
  2037. }
  2038. break;
  2039. case MODE_SELECT:
  2040. /*
  2041.  * TODO. Probably need to change mode select to 10 byte version
  2042.  */
  2043. default:
  2044. break;
  2045. }
  2046. return;
  2047. }
  2048. /*
  2049.  * This function deals with status writes from the SBP-2 device
  2050.  */
  2051. static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid, int destid,
  2052.     quadlet_t *data, u64 addr, unsigned int length)
  2053. {
  2054. struct sbp2scsi_host_info *hi = NULL;
  2055. struct scsi_id_instance_data *scsi_id = NULL;
  2056. int i;
  2057. unsigned long flags;
  2058. Scsi_Cmnd *SCpnt = NULL;
  2059. u32 scsi_status = SBP2_SCSI_STATUS_GOOD;
  2060. struct sbp2_command_info *command;
  2061. SBP2_DEBUG("sbp2_handle_status_write");
  2062. if (!host) {
  2063. SBP2_ERR("host is NULL - this is bad!");
  2064. return(RCODE_ADDRESS_ERROR);
  2065. }
  2066. sbp2_spin_lock(&sbp2_host_info_lock, flags);
  2067. hi = sbp2_find_host_info(host);
  2068. sbp2_spin_unlock(&sbp2_host_info_lock, flags);
  2069. if (!hi) {
  2070. SBP2_ERR("host info is NULL - this is bad!");
  2071. return(RCODE_ADDRESS_ERROR);
  2072. }
  2073. sbp2_spin_lock(&hi->sbp2_command_lock, flags);
  2074. /*
  2075.  * Find our scsi_id structure
  2076.  */
  2077. for (i=0; i<SBP2SCSI_MAX_SCSI_IDS; i++) {
  2078. if (hi->scsi_id[i]) {
  2079. if ((hi->scsi_id[i]->ne->nodeid & NODE_MASK) == (nodeid & NODE_MASK)) {
  2080. scsi_id = hi->scsi_id[i];
  2081. SBP2_DEBUG("SBP-2 status write from node %x", scsi_id->ne->nodeid);
  2082. break;
  2083. }
  2084. }
  2085. }
  2086. if (!scsi_id) {
  2087. SBP2_ERR("scsi_id is NULL - device is gone?");
  2088. sbp2_spin_unlock(&hi->sbp2_command_lock, flags);
  2089. return(RCODE_ADDRESS_ERROR);
  2090. }
  2091. /*
  2092.  * Put response into scsi_id status fifo... 
  2093.  */
  2094. memcpy(&scsi_id->status_block, data, length);
  2095. /*
  2096.  * Byte swap first two quadlets (8 bytes) of status for processing
  2097.  */
  2098. sbp2util_be32_to_cpu_buffer(&scsi_id->status_block, 8);
  2099. /*
  2100.  * Handle command ORB status here if necessary. First, need to match status with command.
  2101.  */
  2102. command = sbp2util_find_command_for_orb(scsi_id, scsi_id->status_block.ORB_offset_lo);
  2103. if (command) {
  2104. SBP2_DEBUG("Found status for command ORB");
  2105. SBP2_ORB_DEBUG("matched command orb %p", &command->command_orb);
  2106. outstanding_orb_decr;
  2107. /*
  2108.  * Matched status with command, now grab scsi command pointers and check status
  2109.  */
  2110. SCpnt = command->Current_SCpnt;
  2111. sbp2util_mark_command_completed(scsi_id, command);
  2112. if (SCpnt && !command->linked) {
  2113. /*
  2114.  * Handle check conditions
  2115.  */
  2116. if (STATUS_GET_SBP_STATUS(scsi_id->status_block.ORB_offset_hi_misc)) {
  2117. SBP2_DEBUG("CHECK CONDITION");
  2118. /*
  2119.  * Translate SBP-2 status to SCSI sense data
  2120.  */
  2121. scsi_status = sbp2_status_to_sense_data((unchar *)&scsi_id->status_block, SCpnt->sense_buffer);
  2122. /*
  2123.  * Initiate a fetch agent reset. 
  2124.  */
  2125. sbp2_agent_reset(hi, scsi_id, SBP2_SEND_NO_WAIT);
  2126. }
  2127. SBP2_ORB_DEBUG("completing command orb %p", &command->command_orb);
  2128. /*
  2129.  * Complete the SCSI command
  2130.  */
  2131. SBP2_DEBUG("Completing SCSI command");
  2132. sbp2scsi_complete_command(hi, scsi_id, scsi_status, SCpnt, command->Current_done);
  2133. SBP2_ORB_DEBUG("command orb completed");
  2134. }
  2135. /*
  2136.  * Check here to see if there are no commands in-use. If there are none, we can
  2137.  * null out last orb so that next time around we write directly to the orb pointer... 
  2138.  * Quick start saves one 1394 bus transaction.
  2139.  */
  2140. if (list_empty(&scsi_id->sbp2_command_orb_inuse)) {
  2141. scsi_id->last_orb = NULL;
  2142. }
  2143. }
  2144. sbp2_spin_unlock(&hi->sbp2_command_lock, flags);
  2145. wake_up(&scsi_id->sbp2_login_wait);
  2146. return(RCODE_COMPLETE);
  2147. }
  2148. /**************************************
  2149.  * SCSI interface related section
  2150.  **************************************/
  2151. /*
  2152.  * This routine is the main request entry routine for doing I/O. It is 
  2153.  * called from the scsi stack directly.
  2154.  */
  2155. static int sbp2scsi_queuecommand (Scsi_Cmnd *SCpnt, void (*done)(Scsi_Cmnd *)) 
  2156. {
  2157. struct sbp2scsi_host_info *hi = NULL;
  2158. struct scsi_id_instance_data *scsi_id = NULL;
  2159. unsigned long flags;
  2160. SBP2_DEBUG("sbp2scsi_queuecommand");
  2161. /*
  2162.  * Pull our host info and scsi id instance data from the scsi command
  2163.  */
  2164. hi = (struct sbp2scsi_host_info *) SCpnt->host->hostdata[0];
  2165. if (!hi) {
  2166. SBP2_ERR("sbp2scsi_host_info is NULL - this is bad!");
  2167. SCpnt->result = DID_NO_CONNECT << 16;
  2168. done (SCpnt);
  2169. return(0);
  2170. }
  2171. scsi_id = hi->scsi_id[SCpnt->target];
  2172. /*
  2173.  * If scsi_id is null, it means there is no device in this slot,
  2174.  * so we should return selection timeout.
  2175.  */
  2176. if (!scsi_id) {
  2177. SCpnt->result = DID_NO_CONNECT << 16;
  2178. done (SCpnt);
  2179. return(0);
  2180. }
  2181. /*
  2182.  * Until we handle multiple luns, just return selection time-out
  2183.  * to any IO directed at non-zero LUNs
  2184.  */
  2185. if (SCpnt->lun) {
  2186. SCpnt->result = DID_NO_CONNECT << 16;
  2187. done (SCpnt);
  2188. return(0);
  2189. }
  2190. /*
  2191.  * Check for request sense command, and handle it here
  2192.  * (autorequest sense)
  2193.  */
  2194. if (SCpnt->cmnd[0] == REQUEST_SENSE) {
  2195. SBP2_DEBUG("REQUEST_SENSE");
  2196. memcpy(SCpnt->request_buffer, SCpnt->sense_buffer, SCpnt->request_bufflen);
  2197. memset(SCpnt->sense_buffer, 0, sizeof(SCpnt->sense_buffer));
  2198. sbp2scsi_complete_command(hi, scsi_id, SBP2_SCSI_STATUS_GOOD, SCpnt, done);
  2199. return(0);
  2200. }
  2201. /*
  2202.  * Check to see if there is a command in progress and just return
  2203.  * busy (to be queued later)
  2204.  */
  2205. if (!hpsb_node_entry_valid(scsi_id->ne)) {
  2206. SBP2_ERR("Bus reset in progress - rejecting command");
  2207. SCpnt->result = DID_BUS_BUSY << 16;
  2208. done (SCpnt);
  2209. return(0);
  2210. }
  2211. /*
  2212.  * Try and send our SCSI command
  2213.  */
  2214. sbp2_spin_lock(&hi->sbp2_command_lock, flags);
  2215. if (sbp2_send_command(hi, scsi_id, SCpnt, done)) {
  2216. SBP2_ERR("Error sending SCSI command");
  2217. sbp2scsi_complete_command(hi, scsi_id, SBP2_SCSI_STATUS_SELECTION_TIMEOUT, SCpnt, done);
  2218. }
  2219. sbp2_spin_unlock(&hi->sbp2_command_lock, flags);
  2220. return(0);
  2221. }
  2222. /*
  2223.  * This function is called in order to complete all outstanding SBP-2
  2224.  * commands (in case of resets, etc.).
  2225.  */
  2226. static void sbp2scsi_complete_all_commands(struct sbp2scsi_host_info *hi,
  2227.    struct scsi_id_instance_data *scsi_id, 
  2228.    u32 status)
  2229. {
  2230. struct list_head *lh;
  2231. struct sbp2_command_info *command;
  2232. SBP2_DEBUG("sbp2_complete_all_commands");
  2233. while (!list_empty(&scsi_id->sbp2_command_orb_inuse)) {
  2234. SBP2_DEBUG("Found pending command to complete");
  2235. lh = scsi_id->sbp2_command_orb_inuse.next;
  2236. command = list_entry(lh, struct sbp2_command_info, list);
  2237. sbp2util_mark_command_completed(scsi_id, command);
  2238. if (command->Current_SCpnt && !command->linked) {
  2239. void (*done)(Scsi_Cmnd *) = command->Current_done;
  2240. command->Current_SCpnt->result = status << 16;
  2241. done (command->Current_SCpnt);
  2242. }
  2243. }
  2244. return;
  2245. }
  2246. /*
  2247.  * This function is called in order to complete a regular SBP-2 command.
  2248.  */
  2249. static void sbp2scsi_complete_command(struct sbp2scsi_host_info *hi, struct scsi_id_instance_data *scsi_id, u32 scsi_status,
  2250.       Scsi_Cmnd *SCpnt, void (*done)(Scsi_Cmnd *))
  2251. {
  2252. SBP2_DEBUG("sbp2scsi_complete_command");
  2253. /*
  2254.  * Sanity
  2255.  */
  2256. if (!SCpnt) {
  2257. SBP2_ERR("SCpnt is NULL");
  2258. return;
  2259. }
  2260. /*
  2261.  * If a bus reset is in progress and there was an error, don't
  2262.  * complete the command, just let it get retried at the end of the
  2263.  * bus reset.
  2264.  */
  2265. if (!hpsb_node_entry_valid(scsi_id->ne) && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
  2266. SBP2_ERR("Bus reset in progress - retry command later");
  2267. return;
  2268. }
  2269.         
  2270. /*
  2271.  * Switch on scsi status
  2272.  */
  2273. switch (scsi_status) {
  2274. case SBP2_SCSI_STATUS_GOOD:
  2275. SCpnt->result = DID_OK;
  2276. break;
  2277. case SBP2_SCSI_STATUS_BUSY:
  2278. SBP2_ERR("SBP2_SCSI_STATUS_BUSY");
  2279. SCpnt->result = DID_BUS_BUSY << 16;
  2280. break;
  2281. case SBP2_SCSI_STATUS_CHECK_CONDITION:
  2282. SBP2_DEBUG("SBP2_SCSI_STATUS_CHECK_CONDITION");
  2283. SCpnt->result = CHECK_CONDITION << 1;
  2284. /*
  2285.  * Debug stuff
  2286.  */
  2287. print_sense("bh", SCpnt);
  2288. break;
  2289. case SBP2_SCSI_STATUS_SELECTION_TIMEOUT:
  2290. SBP2_ERR("SBP2_SCSI_STATUS_SELECTION_TIMEOUT");
  2291. SCpnt->result = DID_NO_CONNECT << 16;
  2292. break;
  2293. case SBP2_SCSI_STATUS_CONDITION_MET:
  2294. case SBP2_SCSI_STATUS_RESERVATION_CONFLICT:
  2295. case SBP2_SCSI_STATUS_COMMAND_TERMINATED:
  2296. SBP2_ERR("Bad SCSI status = %x", scsi_status);
  2297. SCpnt->result = DID_ERROR << 16;
  2298. break;
  2299. default:
  2300. SBP2_ERR("Unsupported SCSI status = %x", scsi_status);
  2301. SCpnt->result = DID_ERROR << 16;
  2302. }
  2303. /*
  2304.  * Take care of any sbp2 response data mucking here (RBC stuff, etc.)
  2305.  */
  2306. if (SCpnt->result == DID_OK) {
  2307. sbp2_check_sbp2_response(hi, scsi_id, SCpnt);
  2308. }
  2309. /*
  2310.  * One more quick hack (not enabled by default). Some sbp2 devices
  2311.  * do not support mode sense. Turn-on this hack to allow the
  2312.  * device to pass the sd driver's write-protect test (so that you
  2313.  * can mount the device rw).
  2314.  */
  2315. if (mode_sense_hack && SCpnt->result != DID_OK && SCpnt->cmnd[0] == MODE_SENSE) {
  2316. SBP2_INFO("Returning success to mode sense command");
  2317. SCpnt->result = DID_OK;
  2318. SCpnt->sense_buffer[0] = 0;
  2319. memset (SCpnt->request_buffer, 0, 8);
  2320. }
  2321. /*
  2322.  * If a bus reset is in progress and there was an error, complete
  2323.  * the command as busy so that it will get retried.
  2324.  */
  2325. if (!hpsb_node_entry_valid(scsi_id->ne) && (scsi_status != SBP2_SCSI_STATUS_GOOD)) {
  2326. SBP2_ERR("Completing command with busy (bus reset)");
  2327. SCpnt->result = DID_BUS_BUSY << 16;
  2328. }
  2329. /*
  2330.  * If a unit attention occurs, return busy status so it gets
  2331.  * retried... it could have happened because of a 1394 bus reset
  2332.  * or hot-plug...
  2333.  */
  2334. if ((scsi_status == SBP2_SCSI_STATUS_CHECK_CONDITION) && (SCpnt->sense_buffer[2] == UNIT_ATTENTION)) {
  2335. SBP2_INFO("UNIT ATTENTION - return busy");
  2336. SCpnt->result = DID_BUS_BUSY << 16;
  2337. }
  2338. /*
  2339.  * Tell scsi stack that we're done with this command
  2340.  */
  2341. spin_lock_irq(&io_request_lock);
  2342. done (SCpnt);
  2343. spin_unlock_irq(&io_request_lock);
  2344. return;
  2345. }
  2346. /*
  2347.  * Called by scsi stack when something has really gone wrong.  Usually
  2348.  * called when a command has timed-out for some reason.
  2349.  */
  2350. static int sbp2scsi_abort (Scsi_Cmnd *SCpnt) 
  2351. {
  2352. struct sbp2scsi_host_info *hi = (struct sbp2scsi_host_info *) SCpnt->host->hostdata[0];
  2353. struct scsi_id_instance_data *scsi_id = hi->scsi_id[SCpnt->target];
  2354. struct sbp2_command_info *command;
  2355. unsigned long flags;
  2356. SBP2_ERR("aborting sbp2 command");
  2357. if (scsi_id) {
  2358. /*
  2359.  * Right now, just return any matching command structures
  2360.  * to the free pool (there may be more than one because of
  2361.  * broken up/linked commands).
  2362.  */
  2363. sbp2_spin_lock(&hi->sbp2_command_lock, flags);
  2364. do {
  2365. command = sbp2util_find_command_for_SCpnt(scsi_id, SCpnt);
  2366. if (command) {
  2367. SBP2_DEBUG("Found command to abort");
  2368. sbp2util_mark_command_completed(scsi_id, command);
  2369. if (command->Current_SCpnt && !command->linked) {
  2370. void (*done)(Scsi_Cmnd *) = command->Current_done;
  2371. command->Current_SCpnt->result = DID_ABORT << 16;
  2372. done (command->Current_SCpnt);
  2373. }
  2374. }
  2375. } while (command);
  2376. /*
  2377.  * Initiate a fetch agent reset. 
  2378.  */
  2379. sbp2_agent_reset(hi, scsi_id, SBP2_SEND_NO_WAIT);
  2380. sbp2scsi_complete_all_commands(hi, scsi_id, DID_BUS_BUSY);
  2381. sbp2_spin_unlock(&hi->sbp2_command_lock, flags);
  2382. }
  2383. return(SCSI_ABORT_SUCCESS);
  2384. }
  2385. /*
  2386.  * Called by scsi stack when something has really gone wrong.
  2387.  */
  2388. static int sbp2scsi_reset (Scsi_Cmnd *SCpnt, unsigned int reset_flags) 
  2389. {
  2390. struct sbp2scsi_host_info *hi = (struct sbp2scsi_host_info *) SCpnt->host->hostdata[0];
  2391. SBP2_ERR("reset requested");
  2392. if (hi) {
  2393. SBP2_ERR("Generating IEEE-1394 bus reset");
  2394. hpsb_reset_bus(hi->host, LONG_RESET);
  2395. }
  2396. return(SCSI_RESET_SUCCESS);
  2397. }
  2398. /*
  2399.  * Called by scsi stack to get bios parameters (used by fdisk, and at boot).
  2400.  */
  2401. static int sbp2scsi_biosparam (Scsi_Disk *disk, kdev_t dev, int geom[]) 
  2402. {
  2403. int heads, sectors, cylinders;
  2404. SBP2_DEBUG("Request for bios parameters");
  2405. heads = 64;
  2406. sectors = 32;
  2407. cylinders = disk->capacity / (heads * sectors);
  2408. if (cylinders > 1024) {
  2409. heads = 255;
  2410. sectors = 63;
  2411. cylinders = disk->capacity / (heads * sectors);
  2412. }
  2413. geom[0] = heads;
  2414. geom[1] = sectors;
  2415. geom[2] = cylinders;
  2416. return(0);
  2417. }
  2418. static int sbp2scsi_detect (Scsi_Host_Template *tpnt) 
  2419. {
  2420. SBP2_DEBUG("sbp2scsi_detect");
  2421. /*
  2422.  * Call sbp2_init to register with the ieee1394 stack.  This
  2423.  * results in a callback to sbp2_add_host for each ieee1394
  2424.  * host controller currently registered, and for each of those
  2425.  * we register a scsi host with the scsi stack.
  2426.  */
  2427. sbp2_init();
  2428. /* We return the number of hosts registered. */
  2429. return sbp2_host_count;
  2430. }
  2431. MODULE_AUTHOR("James Goodwin <jamesg@filanet.com>");
  2432. MODULE_DESCRIPTION("IEEE-1394 SBP-2 protocol driver");
  2433. MODULE_SUPPORTED_DEVICE(SBP2_DEVICE_NAME);
  2434. MODULE_LICENSE("GPL");
  2435. /* SCSI host template */
  2436. static Scsi_Host_Template scsi_driver_template = {
  2437. name: "IEEE-1394 SBP-2 protocol driver",
  2438. detect: sbp2scsi_detect,
  2439. queuecommand: sbp2scsi_queuecommand,
  2440. abort: sbp2scsi_abort,
  2441. reset: sbp2scsi_reset,
  2442. bios_param: sbp2scsi_biosparam,
  2443. can_queue: SBP2SCSI_MAX_OUTSTANDING_CMDS,
  2444. this_id: -1,
  2445. sg_tablesize: SBP2_MAX_SG_ELEMENTS,
  2446. cmd_per_lun: SBP2SCSI_MAX_CMDS_PER_LUN,
  2447. use_clustering: SBP2_CLUSTERING,
  2448. emulated: 1,
  2449. module:         THIS_MODULE,
  2450. #if LINUX_VERSION_CODE > KERNEL_VERSION(2,3,26)
  2451. proc_name: SBP2_DEVICE_NAME
  2452. #endif
  2453. };
  2454. static int sbp2_module_init(void)
  2455. {
  2456. SBP2_DEBUG("sbp2_module_init");
  2457. /*
  2458.  * Module load option for force one command at a time
  2459.  */
  2460. if (serialize_io) {
  2461. SBP2_ERR("Driver forced to serialize I/O (serialize_io = 1)");
  2462. scsi_driver_template.can_queue = 1;
  2463. scsi_driver_template.cmd_per_lun = 1;
  2464. }
  2465. /*
  2466.  * Module load option to limit max size of requests from the
  2467.  * scsi drivers
  2468.  */
  2469. if (no_large_packets) {
  2470. SBP2_ERR("Driver forced to limit max transfer size "
  2471.  "(no_large_packets = 1)");
  2472. scsi_driver_template.sg_tablesize = 0x1f;
  2473. scsi_driver_template.use_clustering = DISABLE_CLUSTERING;
  2474. }
  2475. if (mode_sense_hack) {
  2476. SBP2_ERR("Mode sense emulation enabled (mode_sense_hack = 1)");
  2477. }
  2478. /*
  2479.  * Ideally we would register our scsi_driver_template with the
  2480.  * scsi stack and after that register with the ieee1394 stack
  2481.  * and process the add_host callbacks.  However, the detect
  2482.  * function in the scsi host template requires that we find at
  2483.  * least one host, so we "nest" the registrations by calling
  2484.  * sbp2_init from the detect function.
  2485.  */
  2486. if (scsi_register_module(MODULE_SCSI_HA, &scsi_driver_template) ||
  2487.     !scsi_driver_template.present) {
  2488. SBP2_ERR("Please load the lower level IEEE-1394 driver "
  2489.  "(e.g. ohci1394) before sbp2...");
  2490. sbp2_cleanup();
  2491. return -ENODEV;
  2492. }
  2493. return 0;
  2494. }
  2495. static void __exit sbp2_module_exit(void)
  2496. {
  2497. SBP2_DEBUG("sbp2_module_exit");
  2498. /*
  2499.  * On module unload we unregister with the ieee1394 stack
  2500.  * which results in remove_host callbacks for all ieee1394
  2501.  * host controllers.  In the callbacks we unregister the
  2502.  * corresponding scsi hosts.
  2503.  */
  2504. sbp2_cleanup();
  2505. if (scsi_unregister_module(MODULE_SCSI_HA, &scsi_driver_template))
  2506. SBP2_ERR("sbp2_module_exit: couldn't unregister scsi driver");
  2507. }
  2508. module_init(sbp2_module_init);
  2509. module_exit(sbp2_module_exit);