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

📄 pcd.c

📁 arm平台上的uclinux系统全部源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* 	pcd.c	(c) 1997-8  Grant R. Guenther <grant@torque.net>		            Under the terms of the GNU public license.	Special 2.0.34 version	This is high-level driver for parallel port ATAPI CDrom        drives based on chips supported by the paride module.        By default, the driver will autoprobe for a single parallel        port ATAPI CDrom drive, but if their individual parameters are        specified, the driver can handle up to 4 drives.        The behaviour of the pcd 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-6 integers as follows:            drive2            drive3      <prt>,<pro>,<uni>,<mod>,<slv>,<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.                <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 (46) 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 "pcd")            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 kernel        the following command line parameters, with the same values        as the corresponding module parameters listed above:	    pcd.drive0	    pcd.drive1	    pcd.drive2	    pcd.drive3	    pcd.nice        In addition, you can use the parameter pcd.disable to disable        the driver entirely.*//* Changes:	1.01	GRG 1997.01.24	Added test unit ready support	1.02    GRG 1998.05.06  Changes to pcd_completion, ready_wait,				and loosen interpretation of ATAPI			        standard for clearing error status.				Use spinlocks. Eliminate sti().	1.03    GRG 1998.06.16  Eliminated an Ugh	1.04	GRG 1998.08.15  Added extra debugging, improvements to				pcd_completion, use HZ in loop timing	1.05s   GRG 1998.09.24  Added jumbo support, adjust reset timeout*/#define	PCD_VERSION	"1.05s"#define PCD_MAJOR	46#define PCD_NAME	"pcd"#define PCD_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 = PCD_MAJOR;static char     *name = PCD_NAME;static int      nice = 0;static int      disable = 0;static int drive0[6] = {0,0,0,-1,-1,-1};static int drive1[6] = {0,0,0,-1,-1,-1};static int drive2[6] = {0,0,0,-1,-1,-1};static int drive3[6] = {0,0,0,-1,-1,-1};static int (*drives[4])[6] = {&drive0,&drive1,&drive2,&drive3};static int pcd_drive_count;#define D_PRT   0#define D_PRO   1#define D_UNI   2#define D_MOD   3#define D_SLV   4#define D_DLY   5#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/cdrom.h>#include <asm/segment.h>#include "spinlock.h"#ifndef MODULE#include "setup.h"static STT pcd_stt[6] = {{"drive0",6,drive0},                         {"drive1",6,drive1},                         {"drive2",6,drive2},                         {"drive3",6,drive3},			 {"disable",1,&disable},                         {"nice",1,&nice}};void pcd_setup( char *str, int *ints){       generic_setup(pcd_stt,6,str);}#endif#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 "PCD"#define DEVICE_REQUEST do_pcd_request#define DEVICE_NR(device) (MINOR(device))#define DEVICE_ON(device)#define DEVICE_OFF(device)#include <linux/blk.h>#include "pseudo.h"#define PCD_RETRIES	     5#define PCD_TMO		   800		/* timeout in jiffies */#define PCD_DELAY           50          /* spin delay in uS */#define PCD_READY_TMO	    20		/* in seconds */#define PCD_SPIN	(1000000*PCD_TMO)/(HZ*PCD_DELAY)#define IDE_ERR		0x01#define IDE_DRQ         0x08#define IDE_READY       0x40#define IDE_BUSY        0x80int pcd_init(void);void cleanup_module( void );static int 	pcd_open(struct inode *inode, struct file *file);static void 	do_pcd_request(void);static void 	do_pcd_read(void);static int 	pcd_ioctl(struct inode *inode,struct file *file,                         unsigned int cmd, unsigned long arg);static void pcd_release (struct inode *inode, struct file *file);static int 	pcd_detect(void);static void     pcd_lock(int unit);static void     pcd_unlock(int unit);static void     pcd_eject(int unit);static int      pcd_check_media(int unit);static void     do_pcd_read_drq(void);static int pcd_blocksizes[PCD_UNITS];#define PCD_NAMELEN	8struct pcd_unit {	struct pi_adapter pia;	/* interface to paride layer */	struct pi_adapter *pi;	int drive;		/* master/slave */	int last_sense;		/* result of last request sense */	int access;		/* count of active opens */	int present;		/* does this unit exist ? */	char name[PCD_NAMELEN];	/* pcd0, pcd1, etc */	};struct pcd_unit pcd[PCD_UNITS];/*  'unit' must be defined in all functions - either as a local or a param */#define PCD pcd[unit]#define PI PCD.pistatic char pcd_scratch[64];static char pcd_buffer[2048];           /* raw block buffer */static int pcd_bufblk = -1;             /* block in buffer, in CD units,                                           -1 for nothing there. See also					   pd_unit.					 *//* the variables below are used mainly in the I/O request engine, which   processes only one request at a time.*/static int pcd_unit = -1;		/* unit of current request & bufblk */static int pcd_retries;			/* retries on current request */static int pcd_busy = 0;		/* request being processed ? */static int pcd_sector;			/* address of next requested sector */static int pcd_count;			/* number of blocks still to do */static char * pcd_buf;			/* buffer for request in progress */static int pcd_warned = 0;		/* Have we logged a phase warning ? *//* kernel glue structures */static struct file_operations pcd_fops = {	NULL,			/* lseek - default */	block_read,		/* read - general block-dev read */	block_write,		/* write - general block-dev write */	NULL,			/* readdir - bad */	NULL,			/* select */	pcd_ioctl,		/* ioctl */	NULL,			/* mmap */	pcd_open,		/* open */	pcd_release,		/* release */	block_fsync,		/* fsync */	NULL,			/* fasync */	NULL,                   /* media change ? */	NULL			/* revalidate new media */};static void pcd_init_units( void ){       int     unit, j;        pcd_drive_count = 0;        for (unit=0;unit<PCD_UNITS;unit++) {                PCD.pi = & PCD.pia;                PCD.access = 0;                PCD.present = 0;		PCD.last_sense = 0;                j = 0;                while ((j < PCD_NAMELEN-2) && (PCD.name[j]=name[j])) j++;                PCD.name[j++] = '0' + unit;                PCD.name[j] = 0;                PCD.drive = DU[D_SLV];                if (DU[D_PRT]) pcd_drive_count++;        }}int pcd_init (void)	/* preliminary initialisation */{       int 	i;	if (disable) return -1;	pcd_init_units();	if (pcd_detect()) return -1;	if (register_blkdev(MAJOR_NR,name,&pcd_fops)) {		printk("pcd: unable to get major number %d\n",MAJOR_NR);		return -1;	}	blk_dev[MAJOR_NR].request_fn = DEVICE_REQUEST;	read_ahead[MAJOR_NR] = 8;	/* 8 sector (4kB) read ahead */	for (i=0;i<PCD_UNITS;i++) pcd_blocksizes[i] = 1024;        blksize_size[MAJOR_NR] = pcd_blocksizes;	return 0;}static int pcd_open (struct inode *inode, struct file *file){	int unit = DEVICE_NR(inode->i_rdev);	if  ((unit >= PCD_UNITS) || (!PCD.present)) return -ENODEV;	if (file->f_mode & 2) return -EROFS;  /* wants to write ? */	MOD_INC_USE_COUNT;	if (pcd_check_media(unit)) {		MOD_DEC_USE_COUNT;		return -ENXIO;	}	pcd_lock(unit);	PCD.access++;	return 0;}static void do_pcd_request (void){       int unit;	if (pcd_busy) return;        while (1) {	    if ((!CURRENT) || (CURRENT->rq_status == RQ_INACTIVE)) return;	    INIT_REQUEST;	    if (CURRENT->cmd == READ) {		unit = MINOR(CURRENT->rq_dev);		if (unit != pcd_unit) {			pcd_bufblk = -1;			pcd_unit = unit;		}	        pcd_sector = CURRENT->sector;	        pcd_count = CURRENT->nr_sectors;	        pcd_buf = CURRENT->buffer;		pcd_busy = 1;	        ps_set_intr(do_pcd_read,0,0,nice); 		return;	    } 	    else end_request(0);	}}static int pcd_ioctl(struct inode *inode,struct file *file,		    unsigned int cmd, unsigned long arg)/* we currently support only the EJECT ioctl. */{	int unit = DEVICE_NR(inode->i_rdev);	if  ((unit >= PCD_UNITS) || (!PCD.present)) return -ENODEV;	switch (cmd) {            case CDROMEJECT: if (PCD.access == 1) {				pcd_eject(unit);				return 0;			     }	    default:	        return -EINVAL;	}}static void pcd_release (struct inode *inode, struct file *file){	kdev_t	devp;	int 	unit;	devp = inode->i_rdev;	unit = DEVICE_NR(devp);	if  ((unit >= PCD_UNITS) || (PCD.access <= 0)) 			return;       	PCD.access--;	if (!PCD.access) { 		fsync_dev(devp);                invalidate_inodes(devp);	    	invalidate_buffers(devp);	    	pcd_unlock(unit);	}	MOD_DEC_USE_COUNT;}#ifdef MODULE/* Glue for modules ... */int	init_module(void){	int	err;#ifdef PARIDE_JUMBO       { extern paride_init();         paride_init();       } #endif	err = pcd_init();	return err;}

⌨️ 快捷键说明

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