📄 gdth_proc.c
字号:
/* gdth_proc.c * $Id: gdth_proc.c,v 1.1 1999/04/26 05:54:38 tb Exp $ */#include "gdth_ioctl.h"int gdth_proc_info(char *buffer,char **start,off_t offset,int length, int hostno,int inout){ int hanum,busnum,i; TRACE2(("gdth_proc_info() length %d ha %d offs %d inout %d\n", length,hostno,(int)offset,inout)); for (i=0; i<gdth_ctr_vcount; ++i) { if (gdth_ctr_vtab[i]->host_no == hostno) break; } if (i==gdth_ctr_vcount) return(-EINVAL); hanum = NUMDATA(gdth_ctr_vtab[i])->hanum; busnum= NUMDATA(gdth_ctr_vtab[i])->busnum; if (inout) return(gdth_set_info(buffer,length,i,hanum,busnum)); else return(gdth_get_info(buffer,start,offset,length,i,hanum,busnum));}static int gdth_set_info(char *buffer,int length,int vh,int hanum,int busnum){ int ret_val; Scsi_Cmnd scp; Scsi_Device sdev; gdth_iowr_str *piowr; TRACE2(("gdth_set_info() ha %d bus %d\n",hanum,busnum)); piowr = (gdth_iowr_str *)buffer; memset(&sdev,0,sizeof(Scsi_Device)); memset(&scp, 0,sizeof(Scsi_Cmnd)); sdev.host = gdth_ctr_vtab[vh]; sdev.id = sdev.host->this_id; scp.cmd_len = 12; scp.host = gdth_ctr_vtab[vh]; scp.target = sdev.host->this_id; scp.device = &sdev; scp.use_sg = 0; if (length >= 4) { if (strncmp(buffer,"gdth",4) == 0) { buffer += 5; length -= 5; ret_val = gdth_set_asc_info( buffer, length, hanum, scp ); } else if (piowr->magic == GDTIOCTL_MAGIC) { ret_val = gdth_set_bin_info( buffer, length, hanum, scp ); } else { printk("GDT: Wrong signature: %6s\n",buffer); ret_val = -EINVAL; } } else { ret_val = -EINVAL; } return ret_val;} static int gdth_set_asc_info(char *buffer,int length,int hanum,Scsi_Cmnd scp){ int orig_length, drive, wb_mode; char cmnd[12]; int i, j, found; gdth_ha_str *ha; gdth_cmd_str gdtcmd; gdth_cpar_str *pcpar; TRACE2(("gdth_set_asc_info() ha %d\n",hanum)); ha = HADATA(gdth_ctr_tab[hanum]); memset(cmnd, 0,10); orig_length = length + 5; drive = -1; wb_mode = 0; found = FALSE; if (length >= 5 && strncmp(buffer,"flush",5)==0) { buffer += 6; length -= 6; if (length && *buffer>='0' && *buffer<='9') { drive = (int)(*buffer-'0'); ++buffer; --length; if (length && *buffer>='0' && *buffer<='9') { drive = drive*10 + (int)(*buffer-'0'); ++buffer; --length; } printk("GDT: Flushing host drive %d .. ",drive); } else { printk("GDT: Flushing all host drives .. "); } for (i = 0; i < MAXBUS; ++i) { for (j = 0; j < MAXID; ++j) { if (ha->id[i][j].type == CACHE_DTYP) { if (drive != -1 && ha->id[i][j].hostdrive != (ushort)drive) continue; found = TRUE; gdtcmd.BoardNode = LOCALBOARD; gdtcmd.Service = CACHESERVICE; gdtcmd.OpCode = GDT_FLUSH; gdtcmd.u.cache.DeviceNo = ha->id[i][j].hostdrive; gdtcmd.u.cache.BlockNo = 1; gdtcmd.u.cache.sg_canz = 0; { struct semaphore sem = MUTEX_LOCKED; scp.request.rq_status = RQ_SCSI_BUSY; scp.request.sem = &sem; scp.SCp.this_residual = IOCTL_PRI; scsi_do_cmd(&scp, cmnd, &gdtcmd, sizeof(gdth_cmd_str), gdth_scsi_done, 30*HZ, 1); down(&sem); } } } } if (!found) printk("\nNo host drive found !\n"); else printk("Done.\n"); return(orig_length); } if (length >= 7 && strncmp(buffer,"wbp_off",7)==0) { buffer += 8; length -= 8; printk("GDT: Disabling write back permanently .. "); wb_mode = 1; } else if (length >= 6 && strncmp(buffer,"wbp_on",6)==0) { buffer += 7; length -= 7; printk("GDT: Enabling write back permanently .. "); wb_mode = 2; } else if (length >= 6 && strncmp(buffer,"wb_off",6)==0) { buffer += 7; length -= 7; printk("GDT: Disabling write back commands .. "); if (ha->cache_feat & GDT_WR_THROUGH) { gdth_write_through = TRUE; printk("Done.\n"); } else { printk("Not supported !\n"); } return(orig_length); } else if (length >= 5 && strncmp(buffer,"wb_on",5)==0) { buffer += 6; length -= 6; printk("GDT: Enabling write back commands .. "); gdth_write_through = FALSE; printk("Done.\n"); return(orig_length); } if (wb_mode) { pcpar = (gdth_cpar_str *)kmalloc( sizeof(gdth_cpar_str), GFP_ATOMIC | GFP_DMA ); if (pcpar == NULL) { TRACE2(("gdth_set_info(): Unable to allocate memory.\n")); printk("Unable to allocate memory.\n"); return(-EINVAL); } memcpy( pcpar, &ha->cpar, sizeof(gdth_cpar_str) ); gdtcmd.BoardNode = LOCALBOARD; gdtcmd.Service = CACHESERVICE; gdtcmd.OpCode = GDT_IOCTL; gdtcmd.u.ioctl.p_param = virt_to_bus(pcpar); gdtcmd.u.ioctl.param_size = sizeof(gdth_cpar_str); gdtcmd.u.ioctl.subfunc = CACHE_CONFIG; gdtcmd.u.ioctl.channel = INVALID_CHANNEL; pcpar->write_back = wb_mode==1 ? 0:1; { struct semaphore sem = MUTEX_LOCKED; scp.request.rq_status = RQ_SCSI_BUSY; scp.request.sem = &sem; scp.SCp.this_residual = IOCTL_PRI; scsi_do_cmd(&scp, cmnd, &gdtcmd, sizeof(gdth_cmd_str), gdth_scsi_done, 30*HZ, 1); down(&sem); } kfree( pcpar ); printk("Done.\n"); return(orig_length); } printk("GDT: Unknown command: %s Length: %d\n",buffer,length); return(-EINVAL);}static int gdth_set_bin_info(char *buffer,int length,int hanum,Scsi_Cmnd scp){ char cmnd[12]; int id; unchar i, j, k, found; gdth_ha_str *ha; gdth_iowr_str *piowr; gdth_iord_str *piord; gdth_cmd_str *pcmd; ulong *ppadd; ulong add_size, flags; TRACE2(("gdth_set_bin_info() ha %d\n",hanum)); ha = HADATA(gdth_ctr_tab[hanum]); memset(cmnd, 0,10); piowr = (gdth_iowr_str *)buffer; piord = NULL; pcmd = NULL; if (length < GDTOFFSOF(gdth_iowr_str,iu)) return(-EINVAL); switch (piowr->ioctl) { case GDTIOCTL_GENERAL: if (length < GDTOFFSOF(gdth_iowr_str,iu.general.data[0])) return(-EINVAL); pcmd = (gdth_cmd_str *)piowr->iu.general.command; pcmd->Service = piowr->service; if (pcmd->OpCode == GDT_IOCTL) { ppadd = &pcmd->u.ioctl.p_param; add_size = pcmd->u.ioctl.param_size; } else if (piowr->service == CACHESERVICE) { add_size = pcmd->u.cache.BlockCnt * SECTOR_SIZE; if (ha->cache_feat & SCATTER_GATHER) { ppadd = &pcmd->u.cache.sg_lst[0].sg_ptr; pcmd->u.cache.DestAddr = -1UL; pcmd->u.cache.sg_lst[0].sg_len = add_size; pcmd->u.cache.sg_canz = 1; } else { ppadd = &pcmd->u.cache.DestAddr; pcmd->u.cache.sg_canz = 0; } } else if (piowr->service == SCSIRAWSERVICE) { add_size = pcmd->u.raw.sdlen; if (ha->raw_feat & SCATTER_GATHER) { ppadd = &pcmd->u.raw.sg_lst[0].sg_ptr; pcmd->u.raw.sdata = -1UL; pcmd->u.raw.sg_lst[0].sg_len = add_size; pcmd->u.raw.sg_ranz = 1; } else { ppadd = &pcmd->u.raw.sdata; pcmd->u.raw.sg_ranz = 0; } } else { return(-EINVAL); } id = gdth_ioctl_alloc( hanum, sizeof(gdth_iord_str) + add_size ); if (id == -1) return(-EBUSY); piord = (gdth_iord_str *)gdth_ioctl_tab[id-1][hanum]; piord->size = sizeof(gdth_iord_str) + add_size; if (add_size > 0) { memcpy(piord->iu.general.data, piowr->iu.general.data, add_size); *ppadd = virt_to_bus(piord->iu.general.data); } /* do IOCTL */ { struct semaphore sem = MUTEX_LOCKED; scp.request.rq_status = RQ_SCSI_BUSY; scp.request.sem = &sem; scp.SCp.this_residual = IOCTL_PRI; scsi_do_cmd(&scp, cmnd, pcmd, sizeof(gdth_cmd_str), gdth_scsi_done, piowr->timeout*HZ, 1); down(&sem); piord->status = (ulong)scp.SCp.Message; } break; case GDTIOCTL_DRVERS: id = gdth_ioctl_alloc( hanum, sizeof(gdth_iord_str) ); if (id == -1) return(-EBUSY); piord = (gdth_iord_str *)gdth_ioctl_tab[id-1][hanum]; piord->size = sizeof(gdth_iord_str); piord->status = S_OK; piord->iu.drvers.version = (GDTH_VERSION<<8) | GDTH_SUBVERSION; break; case GDTIOCTL_CTRTYPE: id = gdth_ioctl_alloc( hanum, sizeof(gdth_iord_str) ); if (id == -1) return(-EBUSY); piord = (gdth_iord_str *)gdth_ioctl_tab[id-1][hanum]; piord->size = sizeof(gdth_iord_str); piord->status = S_OK; if (ha->type == GDT_ISA || ha->type == GDT_EISA) { piord->iu.ctrtype.type = (unchar)((ha->stype>>20) - 0x10); } else if (ha->type != GDT_PCIMPR) { piord->iu.ctrtype.type = (unchar)((ha->stype<<8) + 6); } else { piord->iu.ctrtype.type = 0xfe; piord->iu.ctrtype.ext_type = 0x6000 | ha->stype; } piord->iu.ctrtype.info = ha->brd_phys; piord->iu.ctrtype.oem_id = (ushort)GDT3_ID; break; case GDTIOCTL_CTRCNT: id = gdth_ioctl_alloc( hanum, sizeof(gdth_iord_str) ); if (id == -1) return(-EBUSY); piord = (gdth_iord_str *)gdth_ioctl_tab[id-1][hanum]; piord->size = sizeof(gdth_iord_str); piord->status = S_OK; piord->iu.ctrcnt.count = (ushort)gdth_ctr_count; break; case GDTIOCTL_OSVERS: id = gdth_ioctl_alloc( hanum, sizeof(gdth_iord_str) ); if (id == -1) return(-EBUSY); piord = (gdth_iord_str *)gdth_ioctl_tab[id-1][hanum]; piord->size = sizeof(gdth_iord_str); piord->status = S_OK; piord->iu.osvers.version = (unchar)(LINUX_VERSION_CODE >> 16); piord->iu.osvers.subversion = (unchar)(LINUX_VERSION_CODE >> 8); piord->iu.osvers.revision = (ushort)(LINUX_VERSION_CODE & 0xff); break; case GDTIOCTL_LOCKDRV:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -