Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / io_defs.h
1 /*****************************************************************************\
2   io_defs.h : I/O definitions
3
4   Copyright (c) 1996 - 2001, Hewlett-Packard Co.
5   All rights reserved.
6
7   Redistribution and use in source and binary forms, with or without
8   modification, are permitted provided that the following conditions
9   are met:
10   1. Redistributions of source code must retain the above copyright
11      notice, this list of conditions and the following disclaimer.
12   2. Redistributions in binary form must reproduce the above copyright
13      notice, this list of conditions and the following disclaimer in the
14      documentation and/or other materials provided with the distribution.
15   3. Neither the name of Hewlett-Packard nor the names of its
16      contributors may be used to endorse or promote products derived
17      from this software without specific prior written permission.
18
19   THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
20   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
22   NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
24   TO, PATENT INFRINGEMENT; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
25   OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26   ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28   THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 \*****************************************************************************/
30
31 #ifndef APDK_IO_DEFS_H
32 #define APDK_IO_DEFS_H
33
34 #define NFAULT_BIT  0x08
35 #define SELECT_BIT  0x10
36 #define PERROR_BIT  0x20
37 #define NACK_BIT    0x40
38 #define BUSY_BIT    0x80
39
40 #define STATUS_MASK (NFAULT_BIT | PERROR_BIT)
41 #define BUSY_MASK   (BUSY_BIT | NACK_BIT | NFAULT_BIT)
42
43 #define DEVICE_IS_BUSY(reg) (reg == BUSY_MASK)
44 #define DEVICE_IS_OOP(reg)  ((reg & STATUS_MASK) == OOP)
45 #define DEVICE_JAMMED_OR_TRAPPED(reg) ( ((reg & STATUS_MASK) == JAMMED) || ((reg & STATUS_MASK) == ERROR_TRAP) )
46 #define DEVICE_PAPER_JAMMED(reg)  ((reg & STATUS_MASK) == JAMMED)
47 #define DEVICE_IO_TRAP(reg)       ((reg & STATUS_MASK) == ERROR_TRAP)
48
49 #define OOP             (NFAULT_BIT | PERROR_BIT)
50 #define JAMMED          (PERROR_BIT)
51 #define ERROR_TRAP      (0)
52 #define OFFLINE         (NFAULT_BIT)
53
54 #define MAX_BUSY_TIME    30000     // in msec, ie 30 sec
55 #define C32_STATUS_WAIT  2000      // in msec, ie 2 sec
56
57 #define MAX_SLOW_POLL_TIMES     3
58 #define MIN_XFER_FOR_SLOW_POLL  2
59
60 #endif //APDK_IO_DEFS_H