Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / scsi / cpqfcTStrigger.c
blobdbb7e65159a04dee4e69c27a5269100293f26117
1 // Routine to trigger Finisar GTA analyzer. Runs of GPIO2
2 // NOTE: DEBUG ONLY! Could interfere with FCMNGR/Miniport operation
3 // since it writes directly to the Tachyon board. This function
4 // developed for Compaq HBA Tachyon TS v1.2 (Rev X5 PCB)
6 #include "cpqfcTStrigger.h"
7 #if TRIGGERABLE_HBA
9 #include <linux/kernel.h>
10 #include <linux/ioport.h>
11 #include <linux/types.h>
12 #include <linux/pci.h>
13 #include <asm/io.h>
15 void TriggerHBA( void* IOBaseUpper, int Print)
17 __u32 long value;
19 // get initial value in hopes of not modifying any other GPIO line
20 IOBaseUpper += 0x188; // TachTL/TS Control reg
22 value = readl( IOBaseUpper);
23 // set HIGH to trigger external analyzer (tested on Dolche Finisar 1Gb GTA)
24 // The Finisar anaylzer triggers on low-to-high TTL transition
25 value |= 0x01; // set bit 0
27 writel( value, IOBaseUpper);
29 if( Print)
30 printk( " -GPIO0 set- ");
33 #endif