URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [Documentation/] [parport-lowlevel.txt] - Rev 1765
Compare with Previous | Blame | View Log
PARPORT interface documentation-------------------------------Time-stamp: <2000-02-24 13:30:20 twaugh>Described here are the following functions:Global functions:parport_register_driverparport_unregister_driverparport_enumerateparport_register_deviceparport_unregister_deviceparport_claimparport_claim_or_blockparport_releaseparport_yieldparport_yield_blockingparport_wait_peripheralparport_poll_peripheralparport_wait_eventparport_negotiateparport_readparport_writeparport_openparport_closeparport_device_idparport_device_numparport_device_coordsparport_find_classparport_find_deviceparport_set_timeoutPort functions (can be overridden by low-level drivers):SPP:port->ops->read_dataport->ops->write_dataport->ops->read_statusport->ops->read_controlport->ops->write_controlport->ops->frob_controlport->ops->enable_irqport->ops->disable_irqport->ops->data_forwardport->ops->data_reverseEPP:port->ops->epp_write_dataport->ops->epp_read_dataport->ops->epp_write_addrport->ops->epp_read_addrECP:port->ops->ecp_write_dataport->ops->ecp_read_dataport->ops->ecp_write_addrOther:port->ops->nibble_read_dataport->ops->byte_read_dataport->ops->compat_write_dataThe parport subsystem comprises 'parport' (the core port-sharingcode), and a variety of low-level drivers that actually do the portaccesses. Each low-level driver handles a particular style of port(PC, Amiga, and so on).The parport interface to the device driver author can be broken downinto global functions and port functions.The global functions are mostly for communicating between the devicedriver and the parport subsystem: acquiring a list of available ports,claiming a port for exclusive use, and so on. They also include'generic' functions for doing standard things that will work on anyIEEE 1284-capable architecture.The port functions are provided by the low-level drivers, although thecore parport module provides generic 'defaults' for some routines.The port functions can be split into three groups: SPP, EPP, and ECP.SPP (Standard Parallel Port) functions modify so-called 'SPP'registers: data, status, and control. The hardware may not actuallyhave registers exactly like that, but the PC does and this interface ismodelled after common PC implementations. Other low-level drivers maybe able to emulate most of the functionality.EPP (Enhanced Parallel Port) functions are provided for reading andwriting in IEEE 1284 EPP mode, and ECP (Extended Capabilities Port)functions are used for IEEE 1284 ECP mode. (What about BECP? Doesanyone care?)Hardware assistance for EPP and/or ECP transfers may or may not beavailable, and if it is available it may or may not be used. Ifhardware is not used, the transfer will be software-driven. In orderto cope with peripherals that only tenuously support IEEE 1284, alow-level driver specific function is provided, for altering 'fudgefactors'.GLOBAL FUNCTIONS----------------parport_register_driver - register a device driver with parport-----------------------SYNOPSIS#include <linux/parport.h>struct parport_driver {const char *name;void (*attach) (struct parport *);void (*detach) (struct parport *);struct parport_driver *next;};int parport_register_driver (struct parport_driver *driver);DESCRIPTIONIn order to be notified about parallel ports when they are detected,parport_register_driver should be called. Your driver willimmediately be notified of all ports that have already been detected,and of each new port as low-level drivers are loaded.A 'struct parport_driver' contains the textual name of your driver,a pointer to a function to handle new ports, and a pointer to afunction to handle ports going away due to a low-level driverunloading. Ports will only be detached if they are not being used(i.e. there are no devices registered on them).The visible parts of the 'struct parport *' argument given toattach/detach are:struct parport{struct parport *next; /* next parport in list */const char *name; /* port's name */unsigned int modes; /* bitfield of hardware modes */struct parport_device_info probe_info;/* IEEE1284 info */int number; /* parport index */struct parport_operations *ops;...};There are other members of the structure, but they should not betouched.The 'modes' member summarises the capabilities of the underlyinghardware. It consists of flags which may be bitwise-ored together:PARPORT_MODE_PCSPP IBM PC registers are available,i.e. functions that act on data,control and status registers areprobably writing directly to thehardware.PARPORT_MODE_TRISTATE The data drivers may be turned off.This allows the data lines to be usedfor reverse (peripheral to host)transfers.PARPORT_MODE_COMPAT The hardware can assist withcompatibility-mode (printer)transfers, i.e. compat_write_block.PARPORT_MODE_EPP The hardware can assist with EPPtransfers.PARPORT_MODE_ECP The hardware can assist with ECPtransfers.PARPORT_MODE_DMA The hardware can use DMA, so you mightwant to pass ISA DMA-able memory(i.e. memory allocated using theGFP_DMA flag with kmalloc) to thelow-level driver in order to takeadvantage of it.There may be other flags in 'modes' as well.The contents of 'modes' is advisory only. For example, if thehardware is capable of DMA, and PARPORT_MODE_DMA is in 'modes', itdoesn't necessarily mean that DMA will always be used when possible.Similarly, hardware that is capable of assisting ECP transfers won'tnecessarily be used.RETURN VALUEZero on success, otherwise an error code.ERRORSNone. (Can it fail? Why return int?)EXAMPLEstatic void lp_attach (struct parport *port){...private = kmalloc (...);dev[count++] = parport_register_device (...);...}static void lp_detach (struct parport *port){...}static struct parport_driver lp_driver = {"lp",lp_attach,lp_detach,NULL /* always put NULL here */};int lp_init (void){...if (parport_register_driver (&lp_driver)) {/* Failed; nothing we can do. */return -EIO;}...}SEE ALSOparport_unregister_driver, parport_register_device, parport_enumerateparport_unregister_driver - tell parport to forget about this driver-------------------------SYNOPSIS#include <linux/parport.h>struct parport_driver {const char *name;void (*attach) (struct parport *);void (*detach) (struct parport *);struct parport_driver *next;};void parport_unregister_driver (struct parport_driver *driver);DESCRIPTIONThis tells parport not to notify the device driver of new ports or ofports going away. Registered devices belonging to that driver are NOTunregistered: parport_unregister_device must be used for each one.EXAMPLEvoid cleanup_module (void){.../* Stop notifications. */parport_unregister_driver (&lp_driver);/* Unregister devices. */for (i = 0; i < NUM_DEVS; i++)parport_unregister_device (dev[i]);...}SEE ALSOparport_register_driver, parport_enumerateparport_enumerate - retrieve a list of parallel ports (DEPRECATED)-----------------SYNOPSIS#include <linux/parport.h>struct parport *parport_enumerate (void);DESCRIPTIONRetrieve the first of a list of valid parallel ports for this machine.Successive parallel ports can be found using the 'struct parport*next' element of the 'struct parport *' that is returned. If 'next'is NULL, there are no more parallel ports in the list. The number ofports in the list will not exceed PARPORT_MAX.RETURN VALUEA 'struct parport *' describing a valid parallel port for the machine,or NULL if there are none.ERRORSThis function can return NULL to indicate that there are no parallelports to use.EXAMPLEint detect_device (void){struct parport *port;for (port = parport_enumerate ();port != NULL;port = port->next) {/* Try to detect a device on the port... */...}}...}NOTESparport_enumerate is deprecated; parport_register_driver should beused instead.SEE ALSOparport_register_driver, parport_unregister_driverparport_register_device - register to use a port-----------------------SYNOPSIS#include <linux/parport.h>typedef int (*preempt_func) (void *handle);typedef void (*wakeup_func) (void *handle);typedef int (*irq_func) (int irq, void *handle, struct pt_regs *);struct pardevice *parport_register_device(struct parport *port,const char *name,preempt_func preempt,wakeup_func wakeup,irq_func irq,int flags,void *handle);DESCRIPTIONUse this function to register your device driver on a parallel port('port'). Once you have done that, you will be able to useparport_claim and parport_release in order to use the port.This function will register three callbacks into your driver:'preempt', 'wakeup' and 'irq'. Each of these may be NULL in order toindicate that you do not want a callback.When the 'preempt' function is called, it is because another driverwishes to use the parallel port. The 'preempt' function should returnnon-zero if the parallel port cannot be released yet -- if zero isreturned, the port is lost to another driver and the port must bere-claimed before use.The 'wakeup' function is called once another driver has released theport and no other driver has yet claimed it. You can claim theparallel port from within the 'wakeup' function (in which case theclaim is guaranteed to succeed), or choose not to if you don't need itnow.If an interrupt occurs on the parallel port your driver has claimed,the 'irq' function will be called. (Write something about sharedinterrupts here.)The 'handle' is a pointer to driver-specific data, and is passed tothe callback functions.'flags' may be a bitwise combination of the following flags:Flag MeaningPARPORT_DEV_EXCL The device cannot share the parallel port at all.Use this only when absolutely necessary.The typedefs are not actually defined -- they are only shown in orderto make the function prototype more readable.The visible parts of the returned 'struct pardevice' are:struct pardevice {struct parport *port; /* Associated port */void *private; /* Device driver's 'handle' */...};RETURN VALUEA 'struct pardevice *': a handle to the registered parallel portdevice that can be used for parport_claim, parport_release, etc.ERRORSA return value of NULL indicates that there was a problem registeringa device on that port.EXAMPLEstatic int preempt (void *handle){if (busy_right_now)return 1;must_reclaim_port = 1;return 0;}static void wakeup (void *handle){struct toaster *private = handle;struct pardevice *dev = private->dev;if (!dev) return; /* avoid races */if (want_port)parport_claim (dev);}static int toaster_detect (struct toaster *private, struct parport *port){private->dev = parport_register_device (port, "toaster", preempt,wakeup, NULL, 0,private);if (!private->dev)/* Couldn't register with parport. */return -EIO;must_reclaim_port = 0;busy_right_now = 1;parport_claim_or_block (private->dev);.../* Don't need the port while the toaster warms up. */busy_right_now = 0;...busy_right_now = 1;if (must_reclaim_port) {parport_claim_or_block (private->dev);must_reclaim_port = 0;}...}SEE ALSOparport_unregister_device, parport_claimparport_unregister_device - finish using a port-------------------------SYNPOPSIS#include <linux/parport.h>void parport_unregister_device (struct pardevice *dev);DESCRIPTIONThis function is the opposite of parport_register_device. After usingparport_unregister_device, 'dev' is no longer a valid device handle.You should not unregister a device that is currently claimed, althoughif you do it will be released automatically.EXAMPLE...kfree (dev->private); /* before we lose the pointer */parport_unregister_device (dev);...SEE ALSOparport_unregister_driverparport_claim, parport_claim_or_block - claim the parallel port for a device-------------------------------------SYNOPSIS#include <linux/parport.h>int parport_claim (struct pardevice *dev);int parport_claim_or_block (struct pardevice *dev);DESCRIPTIONThese functions attempt to gain control of the parallel port on which'dev' is registered. 'parport_claim' does not block, but'parport_claim_or_block' may do. (Put something here about blockinginterruptibly or non-interruptibly.)You should not try to claim a port that you have already claimed.RETURN VALUEA return value of zero indicates that the port was successfullyclaimed, and the caller now has possession of the parallel port.If 'parport_claim_or_block' blocks before returning successfully, thereturn value is positive.ERRORS-EAGAIN The port is unavailable at the moment, but another attemptto claim it may succeed.SEE ALSOparport_releaseparport_release - release the parallel port---------------SYNOPSIS#include <linux/parport.h>void parport_release (struct pardevice *dev);DESCRIPTIONOnce a parallel port device has been claimed, it can be released using'parport_release'. It cannot fail, but you should not release adevice that you do not have possession of.EXAMPLEstatic size_t write (struct pardevice *dev, const void *buf,size_t len){...written = dev->port->ops->write_ecp_data (dev->port, buf,len);parport_release (dev);...}SEE ALSOchange_mode, parport_claim, parport_claim_or_block, parport_yieldparport_yield, parport_yield_blocking - temporarily release a parallel port-------------------------------------SYNOPSIS#include <linux/parport.h>int parport_yield (struct pardevice *dev)int parport_yield_blocking (struct pardevice *dev);DESCRIPTIONWhen a driver has control of a parallel port, it may allow anotherdriver to temporarily 'borrow' it. 'parport_yield' does not block;'parport_yield_blocking' may do.RETURN VALUEA return value of zero indicates that the caller still owns the portand the call did not block.A positive return value from 'parport_yield_blocking' indicates thatthe caller still owns the port and the call blocked.A return value of -EAGAIN indicates that the caller no longer owns theport, and it must be re-claimed before use.ERRORS-EAGAIN Ownership of the parallel port was given away.SEE ALSOparport_releaseparport_wait_peripheral - wait for status lines, up to 35ms-----------------------SYNOPSIS#include <linux/parport.h>int parport_wait_peripheral (struct parport *port,unsigned char mask,unsigned char val);DESCRIPTIONWait for the status lines in mask to match the values in val.RETURN VALUE-EINTR a signal is pending0 the status lines in mask have values in val1 timed out while waiting (35ms elapsed)SEE ALSOparport_poll_peripheralparport_poll_peripheral - wait for status lines, in usec-----------------------SYNOPSIS#include <linux/parport.h>int parport_poll_peripheral (struct parport *port,unsigned char mask,unsigned char val,int usec);DESCRIPTIONWait for the status lines in mask to match the values in val.RETURN VALUE-EINTR a signal is pending0 the status lines in mask have values in val1 timed out while waiting (usec microseconds have elapsed)SEE ALSOparport_wait_peripheralparport_wait_event - wait for an event on a port------------------SYNOPSIS#include <linux/parport.h>int parport_wait_event (struct parport *port, signed long timeout)DESCRIPTIONWait for an event (e.g. interrupt) on a port. The timeout is injiffies.RETURN VALUE0 success<0 error (exit as soon as possible)>0 timed outparport_negotiate - perform IEEE 1284 negotiation-----------------SYNOPSIS#include <linux/parport.h>int parport_negotiate (struct parport *, int mode);DESCRIPTIONPerform IEEE 1284 negotiation.RETURN VALUE0 handshake OK; IEEE 1284 peripheral and mode available-1 handshake failed; peripheral not compliant (or none present)1 handshake OK; IEEE 1284 peripheral present but mode notavailableSEE ALSOparport_read, parport_writeparport_read - read data from device------------SYNOPSIS#include <linux/parport.h>ssize_t parport_read (struct parport *, void *buf, size_t len);DESCRIPTIONRead data from device in current IEEE 1284 transfer mode. This onlyworks for modes that support reverse data transfer.RETURN VALUEIf negative, an error code; otherwise the number of bytes transferred.SEE ALSOparport_write, parport_negotiateparport_write - write data to device-------------SYNOPSIS#include <linux/parport.h>ssize_t parport_write (struct parport *, const void *buf, size_t len);DESCRIPTIONWrite data to device in current IEEE 1284 transfer mode. This onlyworks for modes that support forward data transfer.RETURN VALUEIf negative, an error code; otherwise the number of bytes transferred.SEE ALSOparport_read, parport_negotiateparport_open - register device for particular device number------------SYNOPSIS#include <linux/parport.h>struct pardevice *parport_open (int devnum, const char *name,int (*pf) (void *),void (*kf) (void *),void (*irqf) (int, void *,struct pt_regs *),int flags, void *handle);DESCRIPTIONThis is like parport_register_device but takes a device number insteadof a pointer to a struct parport.RETURN VALUESee parport_register_device. If no device is associated with devnum,NULL is returned.SEE ALSOparport_register_device, parport_device_numparport_close - unregister device for particular device number-------------SYNOPSIS#include <linux/parport.h>void parport_close (struct pardevice *dev);DESCRIPTIONThis is the equivalent of parport_unregister_device for parport_open.SEE ALSOparport_unregister_device, parport_openparport_device_id - obtain IEEE 1284 Device ID-----------------SYNOPSIS#include <linux/parport.h>ssize_t parport_device_id (int devnum, char *buffer, size_t len);DESCRIPTIONObtains the IEEE 1284 Device ID associated with a given device.RETURN VALUEIf negative, an error code; otherwise, the number of bytes of bufferthat contain the device ID. The format of the device ID is asfollows:[length][ID]The first two bytes indicate the inclusive length of the entire DeviceID, and are in big-endian order. The ID is a sequence of pairs of theform:key:value;NOTESMany devices have ill-formed IEEE 1284 Device IDs.SEE ALSOparport_find_class, parport_find_device, parport_device_numparport_device_num - convert device coordinates to device number------------------SYNOPSIS#include <linux/parport.h>int parport_device_num (int parport, int mux, int daisy);DESCRIPTIONConvert between device coordinates (port, multiplexor, daisy chainaddress) and device number (zero-based).RETURN VALUEDevice number, or -1 if no device at given coordinates.SEE ALSOparport_device_coords, parport_open, parport_device_idparport_device_coords - convert device number to device coordinates------------------SYNOPSIS#include <linux/parport.h>int parport_device_coords (int devnum, int *parport, int *mux,int *daisy);DESCRIPTIONConvert between device number (zero-based) and device coordinates(port, multiplexor, daisy chain address).RETURN VALUEZero on success, in which case the coordinates are (*parport, *mux,*daisy).SEE ALSOparport_device_num, parport_open, parport_device_idparport_find_class - find a device by its class------------------SYNOPSIS#include <linux/parport.h>typedef enum {PARPORT_CLASS_LEGACY = 0, /* Non-IEEE1284 device */PARPORT_CLASS_PRINTER,PARPORT_CLASS_MODEM,PARPORT_CLASS_NET,PARPORT_CLASS_HDC, /* Hard disk controller */PARPORT_CLASS_PCMCIA,PARPORT_CLASS_MEDIA, /* Multimedia device */PARPORT_CLASS_FDC, /* Floppy disk controller */PARPORT_CLASS_PORTS,PARPORT_CLASS_SCANNER,PARPORT_CLASS_DIGCAM,PARPORT_CLASS_OTHER, /* Anything else */PARPORT_CLASS_UNSPEC, /* No CLS field in ID */PARPORT_CLASS_SCSIADAPTER} parport_device_class;int parport_find_class (parport_device_class cls, int from);DESCRIPTIONFind a device by class. The search starts from device number from+1.RETURN VALUEThe device number of the next device in that class, or -1 if no suchdevice exists.NOTESExample usage:int devnum = -1;while ((devnum = parport_find_class (PARPORT_CLASS_DIGCAM, devnum)) != -1) {struct pardevice *dev = parport_open (devnum, ...);...}SEE ALSOparport_find_device, parport_open, parport_device_idparport_find_device - find a device by its class------------------SYNOPSIS#include <linux/parport.h>int parport_find_device (const char *mfg, const char *mdl, int from);DESCRIPTIONFind a device by vendor and model. The search starts from devicenumber from+1.RETURN VALUEThe device number of the next device matching the specifications, or-1 if no such device exists.NOTESExample usage:int devnum = -1;while ((devnum = parport_find_device ("IOMEGA", "ZIP+", devnum)) != -1) {struct pardevice *dev = parport_open (devnum, ...);...}SEE ALSOparport_find_class, parport_open, parport_device_idparport_set_timeout - set the inactivity timeout-------------------SYNOPSIS#include <linux/parport.h>long parport_set_timeout (struct pardevice *dev, long inactivity);DESCRIPTIONSet the inactivity timeout, in jiffies, for a registered device. Theprevious timeout is returned.RETURN VALUEThe previous timeout, in jiffies.NOTESSome of the port->ops functions for a parport may take time, owing todelays at the peripheral. After the peripheral has not responded for'inactivity' jiffies, a timeout will occur and the blocking functionwill return.A timeout of 0 jiffies is a special case: the function must do as muchas it can without blocking or leaving the hardware in an unknownstate. If port operations are performed from within an interrupthandler, for instance, a timeout of 0 jiffies should be used.Once set for a registered device, the timeout will remain at the setvalue until set again.SEE ALSOport->ops->xxx_read/write_yyyPORT FUNCTIONS--------------The functions in the port->ops structure (struct parport_operations)are provided by the low-level driver responsible for that port.port->ops->read_data - read the data register--------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...unsigned char (*read_data) (struct parport *port);...};DESCRIPTIONIf port->modes contains the PARPORT_MODE_TRISTATE flag and thePARPORT_CONTROL_DIRECTION bit in the control register is set, thisreturns the value on the data pins. If port->modes contains thePARPORT_MODE_TRISTATE flag and the PARPORT_CONTROL_DIRECTION bit isnot set, the return value _may_ be the last value written to the dataregister. Otherwise the return value is undefined.SEE ALSOwrite_data, read_status, write_controlport->ops->write_data - write the data register---------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...void (*write_data) (struct parport *port, unsigned char d);...};DESCRIPTIONWrites to the data register. May have side-effects (a STROBE pulse,for instance).SEE ALSOread_data, read_status, write_controlport->ops->read_status - read the status register----------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...unsigned char (*read_status) (struct parport *port);...};DESCRIPTIONReads from the status register. This is a bitmask:- PARPORT_STATUS_ERROR (printer fault, "nFault")- PARPORT_STATUS_SELECT (on-line, "Select")- PARPORT_STATUS_PAPEROUT (no paper, "PError")- PARPORT_STATUS_ACK (handshake, "nAck")- PARPORT_STATUS_BUSY (busy, "Busy")There may be other bits set.SEE ALSOread_data, write_data, write_controlport->ops->read_control - read the control register-----------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...unsigned char (*read_control) (struct parport *port);...};DESCRIPTIONReturns the last value written to the control register (either fromwrite_control or frob_control). No port access is performed.SEE ALSOread_data, write_data, read_status, write_controlport->ops->write_control - write the control register------------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...void (*write_status) (struct parport *port, unsigned char s);...};DESCRIPTIONWrites to the control register. This is a bitmask:_______- PARPORT_CONTROL_STROBE (nStrobe)_______- PARPORT_CONTROL_AUTOFD (nAutoFd)_____- PARPORT_CONTROL_INIT (nInit)_________- PARPORT_CONTROL_SELECT (nSelectIn)SEE ALSOread_data, write_data, read_status, frob_controlport->ops->frob_control - write control register bits-----------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...void (*frob_control) (struct parport *port,unsigned char mask,unsigned char val);...};DESCRIPTIONThis is equivalent to reading from the control register, masking outthe bits in mask, exclusive-or'ing with the bits in val, and writingthe result to the control register.As some ports don't allow reads from the control port, a software copyof its contents is maintained, so frob_control is in fact only oneport access.SEE ALSOread_data, write_data, read_status, write_controlport->ops->enable_irq - enable interrupt generation---------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...void (*enable_irq) (struct parport *port);...};DESCRIPTIONThe parallel port hardware is instructed to generate interrupts atappropriate moments, although those moments arearchitecture-specific. For the PC architecture, interrupts arecommonly generated on the rising edge of nAck.SEE ALSOdisable_irqport->ops->disable_irq - disable interrupt generation----------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...void (*disable_irq) (struct parport *port);...};DESCRIPTIONThe parallel port hardware is instructed not to generate interrupts.The interrupt itself is not masked.SEE ALSOenable_irqport->ops->data_forward - enable data drivers-----------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...void (*data_forward) (struct parport *port);...};DESCRIPTIONEnables the data line drivers, for 8-bit host-to-peripheralcommunications.SEE ALSOdata_reverseport->ops->data_reverse - tristate the buffer-----------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...void (*data_reverse) (struct parport *port);...};DESCRIPTIONPlaces the data bus in a high impedance state, if port->modes has thePARPORT_MODE_TRISTATE bit set.SEE ALSOdata_forwardport->ops->epp_write_data - write EPP data-------------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...size_t (*epp_write_data) (struct parport *port, const void *buf,size_t len, int flags);...};DESCRIPTIONWrites data in EPP mode, and returns the number of bytes written.The 'flags' parameter may be one or more of the following,bitwise-or'ed together:PARPORT_EPP_FAST Use fast transfers. Some chips provide 16-bit and32-bit registers. However, if a transfertimes out, the return value may be unreliable.SEE ALSOepp_read_data, epp_write_addr, epp_read_addrport->ops->epp_read_data - read EPP data------------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...size_t (*epp_read_data) (struct parport *port, void *buf,size_t len, int flags);...};DESCRIPTIONReads data in EPP mode, and returns the number of bytes read.The 'flags' parameter may be one or more of the following,bitwise-or'ed together:PARPORT_EPP_FAST Use fast transfers. Some chips provide 16-bit and32-bit registers. However, if a transfertimes out, the return value may be unreliable.SEE ALSOepp_write_data, epp_write_addr, epp_read_addrport->ops->epp_write_addr - write EPP address-------------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...size_t (*epp_write_addr) (struct parport *port,const void *buf, size_t len, int flags);...};DESCRIPTIONWrites EPP addresses (8 bits each), and returns the number written.The 'flags' parameter may be one or more of the following,bitwise-or'ed together:PARPORT_EPP_FAST Use fast transfers. Some chips provide 16-bit and32-bit registers. However, if a transfertimes out, the return value may be unreliable.(Does PARPORT_EPP_FAST make sense for this function?)SEE ALSOepp_write_data, epp_read_data, epp_read_addrport->ops->epp_read_addr - read EPP address------------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...size_t (*epp_read_addr) (struct parport *port, void *buf,size_t len, int flags);...};DESCRIPTIONReads EPP addresses (8 bits each), and returns the number read.The 'flags' parameter may be one or more of the following,bitwise-or'ed together:PARPORT_EPP_FAST Use fast transfers. Some chips provide 16-bit and32-bit registers. However, if a transfertimes out, the return value may be unreliable.(Does PARPORT_EPP_FAST make sense for this function?)SEE ALSOepp_write_data, epp_read_data, epp_write_addrport->ops->ecp_write_data - write a block of ECP data-------------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...size_t (*ecp_write_data) (struct parport *port,const void *buf, size_t len, int flags);...};DESCRIPTIONWrites a block of ECP data. The 'flags' parameter is ignored.RETURN VALUEThe number of bytes written.SEE ALSOecp_read_data, ecp_write_addrport->ops->ecp_read_data - read a block of ECP data------------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...size_t (*ecp_read_data) (struct parport *port,void *buf, size_t len, int flags);...};DESCRIPTIONReads a block of ECP data. The 'flags' parameter is ignored.RETURN VALUEThe number of bytes read. NB. There may be more unread data in aFIFO. Is there a way of stunning the FIFO to prevent this?SEE ALSOecp_write_block, ecp_write_addrport->ops->ecp_write_addr - write a block of ECP addresses-------------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...size_t (*ecp_write_addr) (struct parport *port,const void *buf, size_t len, int flags);...};DESCRIPTIONWrites a block of ECP addresses. The 'flags' parameter is ignored.RETURN VALUEThe number of bytes written.NOTESThis may use a FIFO, and if so shall not return until the FIFO is empty.SEE ALSOecp_read_data, ecp_write_dataport->ops->nibble_read_data - read a block of data in nibble mode---------------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...size_t (*nibble_read_data) (struct parport *port,void *buf, size_t len, int flags);...};DESCRIPTIONReads a block of data in nibble mode. The 'flags' parameter is ignored.RETURN VALUEThe number of whole bytes read.SEE ALSObyte_read_data, compat_write_dataport->ops->byte_read_data - read a block of data in byte mode-------------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...size_t (*byte_read_data) (struct parport *port,void *buf, size_t len, int flags);...};DESCRIPTIONReads a block of data in byte mode. The 'flags' parameter is ignored.RETURN VALUEThe number of bytes read.SEE ALSOnibble_read_data, compat_write_dataport->ops->compat_write_data - write a block of data in compatibility mode----------------------------SYNOPSIS#include <linux/parport.h>struct parport_operations {...size_t (*compat_write_data) (struct parport *port,const void *buf, size_t len, int flags);...};DESCRIPTIONWrites a block of data in compatibility mode. The 'flags' parameteris ignored.RETURN VALUEThe number of bytes written.SEE ALSOnibble_read_data, byte_read_data
