1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
|
/** @file plustek-pp_wrapper.c
* @brief The interface to the parport driver-code and the kernel module.
*
* Based on sources acquired from Plustek Inc.<br>
* Copyright (C) 2001-2004 Gerhard Jaeger <gerhard@gjaeger.de>
*
* History:
* - 0.40 - initial version
* - 0.41 - added _PTDRV_ADJUST call
* - 0.42 - added setmap function
* - fixed the stopscan problem, that causes a crash in the kernel module
* - 0.43 - added initialized setting
* - cleanup
* .
* <hr>
* This file is part of the SANE package.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston,
* MA 02111-1307, USA.
*
* As a special exception, the authors of SANE give permission for
* additional uses of the libraries contained in this release of SANE.
*
* The exception is that, if you link a SANE library with other files
* to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public
* License. Your use of that executable is in no way restricted on
* account of linking the SANE library code into it.
*
* This exception does not, however, invalidate any other reasons why
* the executable file might be covered by the GNU General Public
* License.
*
* If you submit changes to SANE to the maintainers to be included in
* a subsequent release, you agree by submitting the changes that
* those changes may be distributed with this exception intact.
*
* If you write modifications of your own for SANE, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
* <hr>
*/
/******************* wrapper functions for parport device ********************/
#ifndef _BACKEND_ENABLED
static int PtDrvInit( char *dev_name, unsigned short model_override )
{
_VAR_NOT_USED( dev_name );
_VAR_NOT_USED( model_override );
DBG( _DBG_ERROR, "Backend does not support direct I/O!\n" );
return -1;
}
static int PtDrvShutdown( void )
{
return 0;
}
static int PtDrvOpen( void )
{
DBG( _DBG_ERROR, "Backend does not support direct I/O!\n" );
return -1;
}
static int PtDrvClose( void )
{
DBG( _DBG_ERROR, "Backend does not support direct I/O!\n" );
return 0;
}
static int PtDrvIoctl( unsigned int cmd, void *arg )
{
DBG( _DBG_ERROR, "Backend does not support direct I/O!\n" );
_VAR_NOT_USED( cmd );
if( arg == NULL )
return -2;
return -1;
}
static int PtDrvRead( unsigned char *buffer, int count )
{
DBG( _DBG_ERROR, "Backend does not support direct I/O!\n" );
_VAR_NOT_USED( count );
if( buffer == NULL )
return -2;
return -1;
}
#endif /* _BACKEND_ENABLED */
/**
*/
static int ppDev_open( const char *dev_name, void *misc )
{
int result;
int handle;
CompatAdjDef compatAdj;
PPAdjDef adj;
unsigned short version = _PTDRV_IOCTL_VERSION;
Plustek_Device *dev = (Plustek_Device *)misc;
if( dev->adj.direct_io ) {
result = PtDrvInit( dev_name, dev->adj.mov );
if( 0 != result ) {
DBG( _DBG_ERROR, "open: PtDrvInit failed: %d\n", result );
return -1;
}
}
if( dev->adj.direct_io )
handle = PtDrvOpen();
else
handle = open( dev_name, O_RDONLY );
if ( handle < 0 ) {
DBG( _DBG_ERROR, "open: can't open %s as a device\n", dev_name );
return handle;
}
if( dev->adj.direct_io )
result = PtDrvIoctl( _PTDRV_OPEN_DEVICE, &version );
else
result = ioctl( handle, _PTDRV_OPEN_DEVICE, &version );
if( result < 0 ) {
if( -9019 == result ) {
DBG( _DBG_INFO, "Version 0x%04x not supported, trying "
"compatibility version 0x%04x\n",
_PTDRV_IOCTL_VERSION, _PTDRV_COMPAT_IOCTL_VERSION);
version = _PTDRV_COMPAT_IOCTL_VERSION;
if( dev->adj.direct_io )
result = PtDrvIoctl( _PTDRV_OPEN_DEVICE, &version );
else
result = ioctl( handle, _PTDRV_OPEN_DEVICE, &version );
if( result < 0 ) {
if( dev->adj.direct_io )
PtDrvClose();
else
close( dev->fd );
DBG( _DBG_ERROR,
"ioctl PT_DRV_OPEN_DEVICE failed(%d)\n", result );
if( -9019 == result ) {
DBG( _DBG_ERROR,
"Version problem, please recompile driver!\n" );
}
} else {
DBG( _DBG_INFO, "Using compatibility version\n" );
compatAdj.lampOff = dev->adj.lampOff;
compatAdj.lampOffOnEnd = dev->adj.lampOffOnEnd;
compatAdj.warmup = dev->adj.warmup;
memcpy( &compatAdj.pos, &dev->adj.pos, sizeof(OffsDef));
memcpy( &compatAdj.neg, &dev->adj.neg, sizeof(OffsDef));
memcpy( &compatAdj.tpa, &dev->adj.tpa, sizeof(OffsDef));
if( dev->adj.direct_io )
PtDrvIoctl( _PTDRV_ADJUST, &compatAdj );
else
ioctl( handle, _PTDRV_ADJUST, &compatAdj );
return handle;
}
}
return result;
}
memset( &adj, 0, sizeof(PPAdjDef));
adj.lampOff = dev->adj.lampOff;
adj.lampOffOnEnd = dev->adj.lampOffOnEnd;
adj.warmup = dev->adj.warmup;
memcpy( &adj.pos, &dev->adj.pos, sizeof(OffsDef));
memcpy( &adj.neg, &dev->adj.neg, sizeof(OffsDef));
memcpy( &adj.tpa, &dev->adj.tpa, sizeof(OffsDef));
adj.rgamma = dev->adj.rgamma;
adj.ggamma = dev->adj.ggamma;
adj.bgamma = dev->adj.bgamma;
adj.graygamma = dev->adj.graygamma;
if( dev->adj.direct_io )
PtDrvIoctl( _PTDRV_ADJUST, &adj );
else
ioctl( handle, _PTDRV_ADJUST, &adj );
dev->initialized = SANE_TRUE;
return handle;
}
/**
*/
static int ppDev_close( Plustek_Device *dev )
{
if( dev->adj.direct_io )
return PtDrvClose();
else
return close( dev->fd );
}
/**
*/
static int ppDev_getCaps( Plustek_Device *dev )
{
if( dev->adj.direct_io )
return PtDrvIoctl( _PTDRV_GET_CAPABILITIES, &dev->caps );
else
return ioctl( dev->fd, _PTDRV_GET_CAPABILITIES, &dev->caps );
}
/**
*/
static int ppDev_getLensInfo( Plustek_Device *dev, pLensInfo lens )
{
if( dev->adj.direct_io )
return PtDrvIoctl( _PTDRV_GET_LENSINFO, lens );
else
return ioctl( dev->fd, _PTDRV_GET_LENSINFO, lens );
}
/**
*/
static int ppDev_getCropInfo( Plustek_Device *dev, pCropInfo crop )
{
if( dev->adj.direct_io )
return PtDrvIoctl( _PTDRV_GET_CROPINFO, crop );
else
return ioctl( dev->fd, _PTDRV_GET_CROPINFO, crop );
}
/**
*/
static int ppDev_putImgInfo( Plustek_Device *dev, pImgDef img )
{
if( dev->adj.direct_io )
return PtDrvIoctl( _PTDRV_PUT_IMAGEINFO, img );
else
return ioctl( dev->fd, _PTDRV_PUT_IMAGEINFO, img );
}
/**
*/
static int ppDev_setScanEnv( Plustek_Device *dev, pScanInfo sinfo )
{
if( dev->adj.direct_io )
return PtDrvIoctl( _PTDRV_SET_ENV, sinfo );
else
return ioctl( dev->fd, _PTDRV_SET_ENV, sinfo );
}
/**
*/
static int ppDev_startScan( Plustek_Device *dev, pStartScan start )
{
if( dev->adj.direct_io )
return PtDrvIoctl( _PTDRV_START_SCAN, start );
else
return ioctl( dev->fd, _PTDRV_START_SCAN, start );
}
/** function to send a gamma table to the kernel module. As the default table
* entry is 16-bit, but the maps are 8-bit, we have to copy the values...
*/
static int ppDev_setMap( Plustek_Device *dev, SANE_Word *map,
SANE_Word length, SANE_Word channel )
{
SANE_Byte *buf;
SANE_Word i;
MapDef m;
m.len = length;
m.map_id = channel;
m.map = (void *)map;
DBG(_DBG_INFO,"Setting map[%u] at 0x%08lx\n", channel, (unsigned long)map);
buf = (SANE_Byte*)malloc( m.len );
if( !buf )
return _E_ALLOC;
for( i = 0; i < m.len; i++ ) {
buf[i] = (SANE_Byte)map[i];
if( map[i] > 0xFF )
buf[i] = 0xFF;
}
m.map = buf;
if( dev->adj.direct_io )
PtDrvIoctl( _PTDRV_SETMAP, &m );
else
ioctl( dev->fd, _PTDRV_SETMAP, &m );
/* we ignore the return values */
free( buf );
return 0;
}
/**
*/
static int ppDev_stopScan( Plustek_Device *dev, short *mode )
{
int retval, tmp;
/* save this one... */
tmp = *mode;
if( dev->adj.direct_io )
retval = PtDrvIoctl( _PTDRV_STOP_SCAN, mode );
else
retval = ioctl( dev->fd, _PTDRV_STOP_SCAN, mode );
/* ... and use it here */
if( 0 == tmp ) {
if( dev->adj.direct_io )
PtDrvIoctl( _PTDRV_CLOSE_DEVICE, 0 );
else
ioctl( dev->fd, _PTDRV_CLOSE_DEVICE, 0);
}else
sleep( 1 );
return retval;
}
/**
*/
static int ppDev_readImage( Plustek_Device *dev,
SANE_Byte *buf, unsigned long data_length )
{
if( dev->adj.direct_io )
return PtDrvRead( buf, data_length );
else
return read( dev->fd, buf, data_length );
}
/* END PLUSTEK-PP_WRAPPER.C .................................................*/
|