- Kai Germaschewski: ISDN update (including Makefiles)
[davej-history.git] / drivers / scsi / cpqfcTStrigger.c
blob4220d9d923e82e96a5cb4f5777c3fc0137ee922b
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 <linux/kernel.h>
7 #include <linux/ioport.h>
8 #include <linux/types.h>
9 #include <linux/pci.h>
10 #include <asm/io.h>
13 void TriggerHBA( void* IOBaseUpper, int Print)
15 __u32 long value;
17 // get initial value in hopes of not modifying any other GPIO line
18 IOBaseUpper += 0x188; // TachTL/TS Control reg
20 value = readl( IOBaseUpper);
21 // set HIGH to trigger external analyzer (tested on Dolche Finisar 1Gb GTA)
22 // The Finisar anaylzer triggers on low-to-high TTL transition
23 value |= 0x01; // set bit 0
25 writel( value, IOBaseUpper);
27 if( Print)
28 printk( " -GPIO0 set- ");