blob: 3fe652302ea7d2286bad2f5d9f0d696395d8a55c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* ------------------------------------------------------------------------ *
2 * i2c-parport.h I2C bus over parallel port *
3 * ------------------------------------------------------------------------ *
Jean Delvare35859252010-03-02 12:23:44 +01004 Copyright (C) 2003-2010 Jean Delvare <khali@linux-fr.org>
Jean Delvare07da0372011-05-24 20:58:49 +02005
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 * ------------------------------------------------------------------------ */
20
Jean Delvare07da0372011-05-24 20:58:49 +020021#define PORT_DATA 0
22#define PORT_STAT 1
23#define PORT_CTRL 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25struct lineop {
26 u8 val;
27 u8 port;
28 u8 inverted;
29};
30
31struct adapter_parm {
32 struct lineop setsda;
33 struct lineop setscl;
34 struct lineop getsda;
35 struct lineop getscl;
36 struct lineop init;
Jean Delvare35859252010-03-02 12:23:44 +010037 unsigned int smbus_alert:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038};
39
Jean Delvare07da0372011-05-24 20:58:49 +020040static const struct adapter_parm adapter_parm[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 /* type 0: Philips adapter */
42 {
Jean Delvare07da0372011-05-24 20:58:49 +020043 .setsda = { 0x80, PORT_DATA, 1 },
44 .setscl = { 0x08, PORT_CTRL, 0 },
45 .getsda = { 0x80, PORT_STAT, 0 },
46 .getscl = { 0x08, PORT_STAT, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 },
48 /* type 1: home brew teletext adapter */
49 {
Jean Delvare07da0372011-05-24 20:58:49 +020050 .setsda = { 0x02, PORT_DATA, 0 },
51 .setscl = { 0x01, PORT_DATA, 0 },
52 .getsda = { 0x80, PORT_STAT, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 },
54 /* type 2: Velleman K8000 adapter */
55 {
Jean Delvare07da0372011-05-24 20:58:49 +020056 .setsda = { 0x02, PORT_CTRL, 1 },
57 .setscl = { 0x08, PORT_CTRL, 1 },
58 .getsda = { 0x10, PORT_STAT, 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 },
60 /* type 3: ELV adapter */
61 {
Jean Delvare07da0372011-05-24 20:58:49 +020062 .setsda = { 0x02, PORT_DATA, 1 },
63 .setscl = { 0x01, PORT_DATA, 1 },
64 .getsda = { 0x40, PORT_STAT, 1 },
65 .getscl = { 0x08, PORT_STAT, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 },
67 /* type 4: ADM1032 evaluation board */
68 {
Jean Delvare07da0372011-05-24 20:58:49 +020069 .setsda = { 0x02, PORT_DATA, 1 },
70 .setscl = { 0x01, PORT_DATA, 1 },
71 .getsda = { 0x10, PORT_STAT, 1 },
72 .init = { 0xf0, PORT_DATA, 0 },
Jean Delvare35859252010-03-02 12:23:44 +010073 .smbus_alert = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 },
75 /* type 5: ADM1025, ADM1030 and ADM1031 evaluation boards */
76 {
Jean Delvare07da0372011-05-24 20:58:49 +020077 .setsda = { 0x02, PORT_DATA, 1 },
78 .setscl = { 0x01, PORT_DATA, 1 },
79 .getsda = { 0x10, PORT_STAT, 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 },
Peter Korsgaard1d26f452005-11-26 20:18:43 +010081 /* type 6: Barco LPT->DVI (K5800236) adapter */
82 {
Jean Delvare07da0372011-05-24 20:58:49 +020083 .setsda = { 0x02, PORT_DATA, 1 },
84 .setscl = { 0x01, PORT_DATA, 1 },
85 .getsda = { 0x20, PORT_STAT, 0 },
86 .getscl = { 0x40, PORT_STAT, 0 },
87 .init = { 0xfc, PORT_DATA, 0 },
Peter Korsgaard1d26f452005-11-26 20:18:43 +010088 },
Jonathan McDowell55249cf2007-02-13 22:09:02 +010089 /* type 7: One For All JP1 parallel port adapter */
90 {
Jean Delvare07da0372011-05-24 20:58:49 +020091 .setsda = { 0x01, PORT_DATA, 0 },
92 .setscl = { 0x02, PORT_DATA, 0 },
93 .getsda = { 0x80, PORT_STAT, 1 },
94 .init = { 0x04, PORT_DATA, 1 },
Jonathan McDowell55249cf2007-02-13 22:09:02 +010095 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070096};
97
Mark M. Hoffmane97b81d2006-03-23 16:50:25 +010098static int type = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099module_param(type, int, 0);
100MODULE_PARM_DESC(type,
101 "Type of adapter:\n"
102 " 0 = Philips adapter\n"
103 " 1 = home brew teletext adapter\n"
104 " 2 = Velleman K8000 adapter\n"
105 " 3 = ELV adapter\n"
106 " 4 = ADM1032 evaluation board\n"
Peter Korsgaard1d26f452005-11-26 20:18:43 +0100107 " 5 = ADM1025, ADM1030 and ADM1031 evaluation boards\n"
108 " 6 = Barco LPT->DVI (K5800236) adapter\n"
Jonathan McDowell55249cf2007-02-13 22:09:02 +0100109 " 7 = One For All JP1 parallel port adapter\n"
Peter Korsgaard1d26f452005-11-26 20:18:43 +0100110);