⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pf.c

📁 上传linux-jx2410的源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/*         pf.c    (c) 1997-8  Grant R. Guenther <grant@torque.net>                            Under the terms of the GNU General Public License.        This is the high-level driver for parallel port ATAPI disk        drives based on chips supported by the paride module.        By default, the driver will autoprobe for a single parallel        port ATAPI disk drive, but if their individual parameters are        specified, the driver can handle up to 4 drives.        The behaviour of the pf driver can be altered by setting        some parameters from the insmod command line.  The following        parameters are adjustable:            drive0      These four arguments can be arrays of                   drive1      1-7 integers as follows:            drive2            drive3      <prt>,<pro>,<uni>,<mod>,<slv>,<lun>,<dly>                        Where,                <prt>   is the base of the parallel port address for                        the corresponding drive.  (required)                <pro>   is the protocol number for the adapter that                        supports this drive.  These numbers are                        logged by 'paride' when the protocol modules                        are initialised.  (0 if not given)                <uni>   for those adapters that support chained                        devices, this is the unit selector for the                        chain of devices on the given port.  It should                        be zero for devices that don't support chaining.                        (0 if not given)                <mod>   this can be -1 to choose the best mode, or one                        of the mode numbers supported by the adapter.                        (-1 if not given)                <slv>   ATAPI CDroms can be jumpered to master or slave.                        Set this to 0 to choose the master drive, 1 to                        choose the slave, -1 (the default) to choose the                        first drive found.		<lun>   Some ATAPI devices support multiple LUNs.                        One example is the ATAPI PD/CD drive from                        Matshita/Panasonic.  This device has a                         CD drive on LUN 0 and a PD drive on LUN 1.                        By default, the driver will search for the                        first LUN with a supported device.  Set                         this parameter to force it to use a specific                        LUN.  (default -1)                <dly>   some parallel ports require the driver to                         go more slowly.  -1 sets a default value that                        should work with the chosen protocol.  Otherwise,                        set this to a small integer, the larger it is                        the slower the port i/o.  In some cases, setting                        this to zero will speed up the device. (default -1)	    major	You may use this parameter to overide the			default major number (47) that this driver			will use.  Be sure to change the device			name as well.	    name	This parameter is a character string that			contains the name the kernel will use for this			device (in /proc output, for instance).			(default "pf").            cluster     The driver will attempt to aggregate requests                        for adjacent blocks into larger multi-block                        clusters.  The maximum cluster size (in 512                        byte sectors) is set with this parameter.                        (default 64)            verbose     This parameter controls the amount of logging                        that the driver will do.  Set it to 0 for                        normal operation, 1 to see autoprobe progress                        messages, or 2 to see additional debugging                        output.  (default 0) 	    nice        This parameter controls the driver's use of			idle CPU time, at the expense of some speed.        If this driver is built into the kernel, you can use the        following command line parameters, with the same values        as the corresponding module parameters listed above:            pf.drive0            pf.drive1            pf.drive2            pf.drive3	    pf.cluster            pf.nice        In addition, you can use the parameter pf.disable to disable        the driver entirely.*//* Changes:	1.01	GRG 1998.05.03  Changes for SMP.  Eliminate sti().				Fix for drives that don't clear STAT_ERR			        until after next CDB delivered.				Small change in pf_completion to round				up transfer size.	1.02    GRG 1998.06.16  Eliminated an Ugh	1.03    GRG 1998.08.16  Use HZ in loop timings, extra debugging	1.04    GRG 1998.09.24  Added jumbo support*/#define PF_VERSION      "1.04"#define PF_MAJOR	47#define PF_NAME		"pf"#define PF_UNITS	4/* Here are things one can override from the insmod command.   Most are autoprobed by paride unless set here.  Verbose is off   by default.*/static int	verbose = 0;static int	major = PF_MAJOR;static char	*name = PF_NAME;static int      cluster = 64;static int      nice = 0;static int      disable = 0;static int drive0[7] = {0,0,0,-1,-1,-1,-1};static int drive1[7] = {0,0,0,-1,-1,-1,-1};static int drive2[7] = {0,0,0,-1,-1,-1,-1};static int drive3[7] = {0,0,0,-1,-1,-1,-1};static int (*drives[4])[7] = {&drive0,&drive1,&drive2,&drive3};static int pf_drive_count;#define D_PRT   0#define D_PRO   1#define D_UNI   2#define D_MOD   3#define D_SLV   4#define D_LUN   5#define D_DLY   6#define DU              (*drives[unit])/* end of parameters */#include <linux/module.h>#include <linux/errno.h>#include <linux/fs.h>#include <linux/kernel.h>#include <linux/delay.h>#include <linux/genhd.h>#include <linux/hdreg.h>#include <linux/cdrom.h>#include <linux/spinlock.h>#include <asm/uaccess.h>#ifndef MODULE#include "setup.h"static STT pf_stt[7] = {{"drive0",7,drive0},                        {"drive1",7,drive1},                        {"drive2",7,drive2},                        {"drive3",7,drive3},			{"disable",1,&disable},                        {"cluster",1,&cluster},                        {"nice",1,&nice}};void pf_setup( char *str, int *ints){       generic_setup(pf_stt,7,str);}#endifMODULE_PARM(verbose,"i");MODULE_PARM(major,"i");MODULE_PARM(name,"s");MODULE_PARM(cluster,"i");MODULE_PARM(nice,"i");MODULE_PARM(drive0,"1-7i");MODULE_PARM(drive1,"1-7i");MODULE_PARM(drive2,"1-7i");MODULE_PARM(drive3,"1-7i");#include "paride.h"/* set up defines for blk.h,  why don't all drivers do it this way ? */#define MAJOR_NR   major#define DEVICE_NAME "PF"#define DEVICE_REQUEST do_pf_request#define DEVICE_NR(device) MINOR(device)#define DEVICE_ON(device)#define DEVICE_OFF(device)#include <linux/blk.h>#include <linux/blkpg.h>#include "pseudo.h"/* constants for faking geometry numbers */#define PF_FD_MAX	8192		/* use FD geometry under this size */#define PF_FD_HDS	2#define PF_FD_SPT	18#define PF_HD_HDS	64#define PF_HD_SPT	32#define PF_MAX_RETRIES  5#define PF_TMO          800             /* interrupt timeout in jiffies */#define PF_SPIN_DEL     50              /* spin delay in micro-seconds  */#define PF_SPIN         (1000000*PF_TMO)/(HZ*PF_SPIN_DEL)#define STAT_ERR        0x00001#define STAT_INDEX      0x00002#define STAT_ECC        0x00004#define STAT_DRQ        0x00008#define STAT_SEEK       0x00010#define STAT_WRERR      0x00020#define STAT_READY      0x00040#define STAT_BUSY       0x00080#define ATAPI_REQ_SENSE		0x03#define ATAPI_LOCK		0x1e#define ATAPI_DOOR		0x1b#define ATAPI_MODE_SENSE	0x5a#define ATAPI_CAPACITY		0x25#define ATAPI_IDENTIFY		0x12#define ATAPI_READ_10		0x28#define ATAPI_WRITE_10		0x2aint pf_init(void);#ifdef MODULEvoid cleanup_module( void );#endifstatic int pf_open(struct inode *inode, struct file *file);static void do_pf_request(request_queue_t * q);static int pf_ioctl(struct inode *inode,struct file *file,                    unsigned int cmd, unsigned long arg);static int pf_release (struct inode *inode, struct file *file);static int pf_detect(void);static void do_pf_read(void);static void do_pf_read_start(void);static void do_pf_write(void);static void do_pf_write_start(void);static void do_pf_read_drq( void );static void do_pf_write_done( void );static int pf_identify (int unit);static void pf_lock(int unit, int func);static void pf_eject(int unit);static int pf_check_media(kdev_t dev);static int pf_blocksizes[PF_UNITS];#define PF_NM           0#define PF_RO           1#define PF_RW           2#define PF_NAMELEN      8struct pf_unit {	struct pi_adapter pia;    /* interface to paride layer */	struct pi_adapter *pi;	int removable;		  /* removable media device  ?  */	int media_status;	  /* media present ?  WP ? */	int drive;		  /* drive */	int lun;	int access;               /* count of active opens ... */	int capacity;             /* Size of this volume in sectors */	int present;		  /* device present ? */	char name[PF_NAMELEN];	  /* pf0, pf1, ... */	};struct pf_unit pf[PF_UNITS];/*  'unit' must be defined in all functions - either as a local or a param */#define PF pf[unit]#define PI PF.pistatic char pf_scratch[512];            /* scratch block buffer *//* the variables below are used mainly in the I/O request engine, which   processes only one request at a time.*/static int pf_retries = 0;              /* i/o error retry count */static int pf_busy = 0;                 /* request being processed ? */static int pf_block;                    /* address of next requested block */static int pf_count;                    /* number of blocks still to do */static int pf_run;			/* sectors in current cluster */static int pf_cmd;			/* current command READ/WRITE */static int pf_unit;			/* unit of current request */static int pf_mask;			/* stopper for pseudo-int */static char * pf_buf;                   /* buffer for request in progress *//* kernel glue structures */static struct block_device_operations pf_fops = {	owner:			THIS_MODULE,	open:			pf_open,	release:		pf_release,	ioctl:			pf_ioctl,	check_media_change:	pf_check_media,};void pf_init_units( void ){       int     unit, j;        pf_drive_count = 0;        for (unit=0;unit<PF_UNITS;unit++) {                PF.pi = & PF.pia;                PF.access = 0;                PF.media_status = PF_NM;                PF.capacity = 0;                PF.present = 0;		PF.drive = DU[D_SLV];		PF.lun = DU[D_LUN];                j = 0;                while ((j < PF_NAMELEN-2) && (PF.name[j]=name[j])) j++;                PF.name[j++] = '0' + unit;                PF.name[j] = 0;                if (DU[D_PRT]) pf_drive_count++;        }} static inline int pf_new_segment(request_queue_t *q, struct request *req, int max_segments){	if (max_segments > cluster)		max_segments = cluster;	if (req->nr_segments < max_segments) {		req->nr_segments++;		return 1;	}	return 0;}static int pf_back_merge_fn(request_queue_t *q, struct request *req, 			    struct buffer_head *bh, int max_segments){	if (req->bhtail->b_data + req->bhtail->b_size == bh->b_data)		return 1;	return pf_new_segment(q, req, max_segments);}static int pf_front_merge_fn(request_queue_t *q, struct request *req, 			     struct buffer_head *bh, int max_segments){	if (bh->b_data + bh->b_size == req->bh->b_data)		return 1;	return pf_new_segment(q, req, max_segments);}static int pf_merge_requests_fn(request_queue_t *q, struct request *req,				struct request *next, int max_segments){	int total_segments = req->nr_segments + next->nr_segments;	int same_segment;	if (max_segments > cluster)		max_segments = cluster;	same_segment = 0;	if (req->bhtail->b_data + req->bhtail->b_size == next->bh->b_data) {		total_segments--;		same_segment = 1;	}    	if (total_segments > max_segments)		return 0;	req->nr_segments = total_segments;	return 1;}int pf_init (void)      /* preliminary initialisation */{       int i;	request_queue_t * q; 	if (disable) return -1;	pf_init_units();	if (pf_detect()) return -1;	pf_busy = 0;        if (register_blkdev(MAJOR_NR,name,&pf_fops)) {                printk("pf_init: unable to get major number %d\n",                        major);                return -1;        }	q = BLK_DEFAULT_QUEUE(MAJOR_NR);	blk_init_queue(q, DEVICE_REQUEST);	q->back_merge_fn = pf_back_merge_fn;	q->front_merge_fn = pf_front_merge_fn;	q->merge_requests_fn = pf_merge_requests_fn;        read_ahead[MAJOR_NR] = 8;       /* 8 sector (4kB) read ahead */        	for (i=0;i<PF_UNITS;i++) pf_blocksizes[i] = 1024;	blksize_size[MAJOR_NR] = pf_blocksizes;	for (i=0;i<PF_UNITS;i++)		register_disk(NULL, MKDEV(MAJOR_NR, i), 1, &pf_fops, 0);        return 0;}static int pf_open (struct inode *inode, struct file *file){       int	unit = DEVICE_NR(inode->i_rdev);        if ((unit >= PF_UNITS) || (!PF.present)) return -ENODEV;	pf_identify(unit);	if (PF.media_status == PF_NM)		return -ENODEV;	if ((PF.media_status == PF_RO) && (file ->f_mode & 2))		return -EROFS;        PF.access++;        if (PF.removable) pf_lock(unit,1);        return 0;}static int pf_ioctl(struct inode *inode,struct file *file,                    unsigned int cmd, unsigned long arg){       int err, unit;	struct hd_geometry *geo = (struct hd_geometry *) arg;        if ((!inode) || (!inode->i_rdev)) return -EINVAL;        unit = DEVICE_NR(inode->i_rdev);        if (unit >= PF_UNITS) return -EINVAL;        if (!PF.present) return -ENODEV;        switch (cmd) {	    case CDROMEJECT: 		if (PF.access == 1) {			pf_eject(unit);			return 0;			}	    case HDIO_GETGEO:                if (!geo) return -EINVAL;                err = verify_area(VERIFY_WRITE,geo,sizeof(*geo));                if (err) return err;                if (PF.capacity < PF_FD_MAX) {                    put_user(PF.capacity/(PF_FD_HDS*PF_FD_SPT),                                (short *) &geo->cylinders);                    put_user(PF_FD_HDS, (char *) &geo->heads);                    put_user(PF_FD_SPT, (char *) &geo->sectors);                } else {                    put_user(PF.capacity/(PF_HD_HDS*PF_HD_SPT), 				(short *) &geo->cylinders);                    put_user(PF_HD_HDS, (char *) &geo->heads);                    put_user(PF_HD_SPT, (char *) &geo->sectors);                }                put_user(0,(long *)&geo->start);                return 0;            case BLKGETSIZE:                return put_user(PF.capacity,(long *) arg);            case BLKGETSIZE64:                return put_user((u64)PF.capacity << 9,(u64 *)arg);	    case BLKROSET:	    case BLKROGET:	    case BLKRASET:	    case BLKRAGET:	    case BLKFLSBUF:		return blk_ioctl(inode->i_rdev, cmd, arg);            default:                return -EINVAL;        }}static int pf_release (struct inode *inode, struct file *file){       kdev_t devp;	int	unit;        devp = inode->i_rdev;        unit = DEVICE_NR(devp);        if ((unit >= PF_UNITS) || (PF.access <= 0))                 return -EINVAL;	PF.access--;	if (!PF.access && PF.removable)		pf_lock(unit,0);	return 0;}static int pf_check_media( kdev_t dev){       return 1;}#ifdef MODULE/* Glue for modules ... */void    cleanup_module(void);int     init_module(void){       int     err;#ifdef PARIDE_JUMBO       { extern paride_init();         paride_init();       } #endif        err = pf_init();        return err;}void    cleanup_module(void){       int unit;        unregister_blkdev(MAJOR_NR,name);	for (unit=0;unit<PF_UNITS;unit++)	  if (PF.present) pi_release(PI);}#endif#define	WR(c,r,v)	pi_write_regr(PI,c,r,v)#define	RR(c,r)		(pi_read_regr(PI,c,r))

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -