📄 sym53c8xx_comm.h
字号:
** all SCSI driver developers by just testing against ** the definition of SCSI_DATA_UNKNOWN. Indeed this is ** a hack, but testing against a kernel version would ** have been a shame. ;-)****==========================================================*/#ifdef SCSI_DATA_UNKNOWN#define scsi_data_direction(cmd) (cmd->sc_data_direction)#else#define SCSI_DATA_UNKNOWN 0#define SCSI_DATA_WRITE 1#define SCSI_DATA_READ 2#define SCSI_DATA_NONE 3static __inline__ int scsi_data_direction(Scsi_Cmnd *cmd){ int direction; switch((int) cmd->cmnd[0]) { case 0x08: /* READ(6) 08 */ case 0x28: /* READ(10) 28 */ case 0xA8: /* READ(12) A8 */ direction = SCSI_DATA_READ; break; case 0x0A: /* WRITE(6) 0A */ case 0x2A: /* WRITE(10) 2A */ case 0xAA: /* WRITE(12) AA */ direction = SCSI_DATA_WRITE; break; default: direction = SCSI_DATA_UNKNOWN; break; } return direction;}#endif /* SCSI_DATA_UNKNOWN *//*==========================================================**** Driver setup.**** This structure is initialized from linux config ** options. It can be overridden at boot-up by the boot ** command line.****==========================================================*/static struct ncr_driver_setup driver_setup = SCSI_NCR_DRIVER_SETUP;#ifdef SCSI_NCR_BOOT_COMMAND_LINE_SUPPORTstatic struct ncr_driver_setup driver_safe_setup __initdata = SCSI_NCR_DRIVER_SAFE_SETUP;#endif#define initverbose (driver_setup.verbose)#define bootverbose (np->verbose)/*==========================================================**** Structures used by the detection routine to transmit ** device configuration to the attach function.****==========================================================*/typedef struct { int bus; u_char device_fn; u_long base; u_long base_2; u_long io_port; u_long base_c; u_long base_2_c; int irq;/* port and reg fields to use INB, OUTB macros */ u_long base_io; volatile struct ncr_reg *reg;} ncr_slot;/*==========================================================**** Structure used to store the NVRAM content.****==========================================================*/typedef struct { int type;#define SCSI_NCR_SYMBIOS_NVRAM (1)#define SCSI_NCR_TEKRAM_NVRAM (2)#ifdef SCSI_NCR_NVRAM_SUPPORT union { Symbios_nvram Symbios; Tekram_nvram Tekram; } data;#endif} ncr_nvram;/*==========================================================**** Structure used by detection routine to save data on ** each detected board for attach.****==========================================================*/typedef struct { pcidev_t pdev; ncr_slot slot; ncr_chip chip; ncr_nvram *nvram; u_char host_id;#ifdef SCSI_NCR_PQS_PDS_SUPPORT u_char pqs_pds;#endif int attach_done;} ncr_device;static int ncr_attach (Scsi_Host_Template *tpnt, int unit, ncr_device *device);/*==========================================================**** NVRAM detection and reading.** ** Currently supported:** - 24C16 EEPROM with both Symbios and Tekram layout.** - 93C46 EEPROM with Tekram layout.****==========================================================*/#ifdef SCSI_NCR_NVRAM_SUPPORT/* * 24C16 EEPROM reading. * * GPOI0 - data in/data out * GPIO1 - clock * Symbios NVRAM wiring now also used by Tekram. */#define SET_BIT 0#define CLR_BIT 1#define SET_CLK 2#define CLR_CLK 3/* * Set/clear data/clock bit in GPIO0 */static void __initS24C16_set_bit(ncr_slot *np, u_char write_bit, u_char *gpreg, int bit_mode){ UDELAY (5); switch (bit_mode){ case SET_BIT: *gpreg |= write_bit; break; case CLR_BIT: *gpreg &= 0xfe; break; case SET_CLK: *gpreg |= 0x02; break; case CLR_CLK: *gpreg &= 0xfd; break; } OUTB (nc_gpreg, *gpreg); UDELAY (5);}/* * Send START condition to NVRAM to wake it up. */static void __init S24C16_start(ncr_slot *np, u_char *gpreg){ S24C16_set_bit(np, 1, gpreg, SET_BIT); S24C16_set_bit(np, 0, gpreg, SET_CLK); S24C16_set_bit(np, 0, gpreg, CLR_BIT); S24C16_set_bit(np, 0, gpreg, CLR_CLK);}/* * Send STOP condition to NVRAM - puts NVRAM to sleep... ZZzzzz!! */static void __init S24C16_stop(ncr_slot *np, u_char *gpreg){ S24C16_set_bit(np, 0, gpreg, SET_CLK); S24C16_set_bit(np, 1, gpreg, SET_BIT);}/* * Read or write a bit to the NVRAM, * read if GPIO0 input else write if GPIO0 output */static void __init S24C16_do_bit(ncr_slot *np, u_char *read_bit, u_char write_bit, u_char *gpreg){ S24C16_set_bit(np, write_bit, gpreg, SET_BIT); S24C16_set_bit(np, 0, gpreg, SET_CLK); if (read_bit) *read_bit = INB (nc_gpreg); S24C16_set_bit(np, 0, gpreg, CLR_CLK); S24C16_set_bit(np, 0, gpreg, CLR_BIT);}/* * Output an ACK to the NVRAM after reading, * change GPIO0 to output and when done back to an input */static void __initS24C16_write_ack(ncr_slot *np, u_char write_bit, u_char *gpreg, u_char *gpcntl){ OUTB (nc_gpcntl, *gpcntl & 0xfe); S24C16_do_bit(np, 0, write_bit, gpreg); OUTB (nc_gpcntl, *gpcntl);}/* * Input an ACK from NVRAM after writing, * change GPIO0 to input and when done back to an output */static void __init S24C16_read_ack(ncr_slot *np, u_char *read_bit, u_char *gpreg, u_char *gpcntl){ OUTB (nc_gpcntl, *gpcntl | 0x01); S24C16_do_bit(np, read_bit, 1, gpreg); OUTB (nc_gpcntl, *gpcntl);}/* * WRITE a byte to the NVRAM and then get an ACK to see it was accepted OK, * GPIO0 must already be set as an output */static void __init S24C16_write_byte(ncr_slot *np, u_char *ack_data, u_char write_data, u_char *gpreg, u_char *gpcntl){ int x; for (x = 0; x < 8; x++) S24C16_do_bit(np, 0, (write_data >> (7 - x)) & 0x01, gpreg); S24C16_read_ack(np, ack_data, gpreg, gpcntl);}/* * READ a byte from the NVRAM and then send an ACK to say we have got it, * GPIO0 must already be set as an input */static void __init S24C16_read_byte(ncr_slot *np, u_char *read_data, u_char ack_data, u_char *gpreg, u_char *gpcntl){ int x; u_char read_bit; *read_data = 0; for (x = 0; x < 8; x++) { S24C16_do_bit(np, &read_bit, 1, gpreg); *read_data |= ((read_bit & 0x01) << (7 - x)); } S24C16_write_ack(np, ack_data, gpreg, gpcntl);}/* * Read 'len' bytes starting at 'offset'. */static int __init sym_read_S24C16_nvram (ncr_slot *np, int offset, u_char *data, int len){ u_char gpcntl, gpreg; u_char old_gpcntl, old_gpreg; u_char ack_data; int retv = 1; int x; /* save current state of GPCNTL and GPREG */ old_gpreg = INB (nc_gpreg); old_gpcntl = INB (nc_gpcntl); gpcntl = old_gpcntl & 0x1c; /* set up GPREG & GPCNTL to set GPIO0 and GPIO1 in to known state */ OUTB (nc_gpreg, old_gpreg); OUTB (nc_gpcntl, gpcntl); /* this is to set NVRAM into a known state with GPIO0/1 both low */ gpreg = old_gpreg; S24C16_set_bit(np, 0, &gpreg, CLR_CLK); S24C16_set_bit(np, 0, &gpreg, CLR_BIT); /* now set NVRAM inactive with GPIO0/1 both high */ S24C16_stop(np, &gpreg); /* activate NVRAM */ S24C16_start(np, &gpreg); /* write device code and random address MSB */ S24C16_write_byte(np, &ack_data, 0xa0 | ((offset >> 7) & 0x0e), &gpreg, &gpcntl); if (ack_data & 0x01) goto out; /* write random address LSB */ S24C16_write_byte(np, &ack_data, offset & 0xff, &gpreg, &gpcntl); if (ack_data & 0x01) goto out; /* regenerate START state to set up for reading */ S24C16_start(np, &gpreg); /* rewrite device code and address MSB with read bit set (lsb = 0x01) */ S24C16_write_byte(np, &ack_data, 0xa1 | ((offset >> 7) & 0x0e), &gpreg, &gpcntl); if (ack_data & 0x01) goto out; /* now set up GPIO0 for inputting data */ gpcntl |= 0x01; OUTB (nc_gpcntl, gpcntl); /* input all requested data - only part of total NVRAM */ for (x = 0; x < len; x++) S24C16_read_byte(np, &data[x], (x == (len-1)), &gpreg, &gpcntl); /* finally put NVRAM back in inactive mode */ gpcntl &= 0xfe; OUTB (nc_gpcntl, gpcntl); S24C16_stop(np, &gpreg); retv = 0;out: /* return GPIO0/1 to original states after having accessed NVRAM */ OUTB (nc_gpcntl, old_gpcntl); OUTB (nc_gpreg, old_gpreg); return retv;}#undef SET_BIT#undef CLR_BIT#undef SET_CLK#undef CLR_CLK/* * Try reading Symbios NVRAM. * Return 0 if OK. */static int __init sym_read_Symbios_nvram (ncr_slot *np, Symbios_nvram *nvram){ static u_char Symbios_trailer[6] = {0xfe, 0xfe, 0, 0, 0, 0}; u_char *data = (u_char *) nvram; int len = sizeof(*nvram); u_short csum; int x; /* probe the 24c16 and read the SYMBIOS 24c16 area */ if (sym_read_S24C16_nvram (np, SYMBIOS_NVRAM_ADDRESS, data, len)) return 1; /* check valid NVRAM signature, verify byte count and checksum */ if (nvram->type != 0 || memcmp(nvram->trailer, Symbios_trailer, 6) || nvram->byte_count != len - 12) return 1; /* verify checksum */ for (x = 6, csum = 0; x < len - 6; x++) csum += data[x]; if (csum != nvram->checksum) return 1; return 0;}/* * 93C46 EEPROM reading. * * GPOI0 - data in * GPIO1 - data out * GPIO2 - clock * GPIO4 - chip select * * Used by Tekram. *//* * Pulse clock bit in GPIO0 */static void __init T93C46_Clk(ncr_slot *np, u_char *gpreg){ OUTB (nc_gpreg, *gpreg | 0x04); UDELAY (2); OUTB (nc_gpreg, *gpreg);}/* * Read bit from NVRAM */static void __init T93C46_Read_Bit(ncr_slot *np, u_char *read_bit, u_char *gpreg){ UDELAY (2); T93C46_Clk(np, gpreg); *read_bit = INB (nc_gpreg);}/* * Write bit to GPIO0 */static void __init T93C46_Write_Bit(ncr_slot *np, u_char write_bit, u_char *gpreg){ if (write_bit & 0x01) *gpreg |= 0x02; else *gpreg &= 0xfd; *gpreg |= 0x10; OUTB (nc_gpreg, *gpreg); UDELAY (2); T93C46_Clk(np, gpreg);}/* * Send STOP condition to NVRAM - puts NVRAM to sleep... ZZZzzz!! */static void __init T93C46_Stop(ncr_slot *np, u_char *gpreg){ *gpreg &= 0xef; OUTB (nc_gpreg, *gpreg); UDELAY (2); T93C46_Clk(np, gpreg);}/* * Send read command and address to NVRAM */static void __init T93C46_Send_Command(ncr_slot *np, u_short write_data, u_char *read_bit, u_char *gpreg){ int x; /* send 9 bits, start bit (1), command (2), address (6) */ for (x = 0; x < 9; x++) T93C46_Write_Bit(np, (u_char) (write_data >> (8 - x)), gpreg); *read_bit = INB (nc_gpreg);}/* * READ 2 bytes from the NVRAM */static void __init T93C46_Read_Word(ncr_slot *np, u_short *nvram_data, u_char *gpreg){ int x; u_char read_bit; *nvram_data = 0; for (x = 0; x < 16; x++) { T93C46_Read_Bit(np, &read_bit, gpreg); if (read_bit & 0x01) *nvram_data |= (0x01 << (15 - x)); else *nvram_data &= ~(0x01 << (15 - x)); }}/* * Read Tekram NvRAM data. */static int __init T93C46_Read_Data(ncr_slot *np, u_short *data,int len,u_char *gpreg){ u_char read_bit; int x; for (x = 0; x < len; x++) { /* output read command and address */ T93C46_Send_Command(np, 0x180 | x, &read_bit, gpreg); if (read_bit & 0x01) return 1; /* Bad */ T93C46_Read_Word(np, &data[x], gpreg); T93C46_Stop(np, gpreg); } return 0;}/* * Try reading 93C46 Tekram NVRAM. */static int __init sym_read_T93C46_nvram (ncr_slot *np, Tekram_nvram *nvram){ u_char gpcntl, gpreg; u_char old_gpcntl, old_gpreg; int retv = 1; /* save current state of GPCNTL and GPREG */ old_gpreg = INB (nc_gpreg); old_gpcntl = INB (nc_gpcntl); /* set up GPREG & GPCNTL to set GPIO0/1/2/4 in to known state, 0 in,
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -