1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (c) 2006-2007 Oliver Bock (bock@tfh-berlin.de)
7 * This driver is based on the Cypress USB Driver by Marcus Maul
8 * (cyport) and the 2.0 version of Greg Kroah-Hartman's
11 * This is a generic driver for the Cypress CY7C63xxx family.
12 * For the time being it enables you to read from and write to
13 * the single I/O ports of the device.
15 * Supported vendors: AK Modul-Bus Computer GmbH
16 * (Firmware "Port-Chip")
18 * Supported devices: CY7C63001A-PC
22 * Supported functions: Read/Write Ports
25 * For up-to-date information please visit:
26 * http://www.obock.de/kernel/cypress
29 #include <linux/module.h>
30 #include <linux/kernel.h>
31 #include <linux/slab.h>
32 #include <linux/usb.h>
34 #define DRIVER_AUTHOR "Oliver Bock (bock@tfh-berlin.de)"
35 #define DRIVER_DESC "Cypress CY7C63xxx USB driver"
37 #define CYPRESS_VENDOR_ID 0xa2c
38 #define CYPRESS_PRODUCT_ID 0x8
40 #define CYPRESS_READ_PORT 0x4
41 #define CYPRESS_WRITE_PORT 0x5
43 #define CYPRESS_READ_RAM 0x2
44 #define CYPRESS_WRITE_RAM 0x3
45 #define CYPRESS_READ_ROM 0x1
47 #define CYPRESS_READ_PORT_ID0 0
48 #define CYPRESS_WRITE_PORT_ID0 0
49 #define CYPRESS_READ_PORT_ID1 0x2
50 #define CYPRESS_WRITE_PORT_ID1 1
52 #define CYPRESS_MAX_REQSIZE 8
55 /* table of devices that work with this driver */
56 static const struct usb_device_id cypress_table
[] = {
57 { USB_DEVICE(CYPRESS_VENDOR_ID
, CYPRESS_PRODUCT_ID
) },
60 MODULE_DEVICE_TABLE(usb
, cypress_table
);
62 /* structure to hold all of our device specific stuff */
64 struct usb_device
* udev
;
65 unsigned char port
[2];
68 /* used to send usb control messages to device */
69 static int vendor_command(struct cypress
*dev
, unsigned char request
,
70 unsigned char address
, unsigned char data
)
76 /* allocate some memory for the i/o buffer*/
77 iobuf
= kzalloc(CYPRESS_MAX_REQSIZE
, GFP_KERNEL
);
83 dev_dbg(&dev
->udev
->dev
, "Sending usb_control_msg (data: %d)\n", data
);
85 /* prepare usb control message and send it upstream */
86 pipe
= usb_rcvctrlpipe(dev
->udev
, 0);
87 retval
= usb_control_msg(dev
->udev
, pipe
, request
,
88 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_OTHER
,
89 address
, data
, iobuf
, CYPRESS_MAX_REQSIZE
,
90 USB_CTRL_GET_TIMEOUT
);
92 /* store returned data (more READs to be added) */
94 case CYPRESS_READ_PORT
:
95 if (address
== CYPRESS_READ_PORT_ID0
) {
96 dev
->port
[0] = iobuf
[1];
97 dev_dbg(&dev
->udev
->dev
,
98 "READ_PORT0 returned: %d\n",
101 else if (address
== CYPRESS_READ_PORT_ID1
) {
102 dev
->port
[1] = iobuf
[1];
103 dev_dbg(&dev
->udev
->dev
,
104 "READ_PORT1 returned: %d\n",
115 /* write port value */
116 static ssize_t
write_port(struct device
*dev
, struct device_attribute
*attr
,
117 const char *buf
, size_t count
,
118 int port_num
, int write_id
)
123 struct usb_interface
*intf
= to_usb_interface(dev
);
124 struct cypress
*cyp
= usb_get_intfdata(intf
);
126 dev_dbg(&cyp
->udev
->dev
, "WRITE_PORT%d called\n", port_num
);
128 /* validate input data */
129 if (sscanf(buf
, "%d", &value
) < 1) {
133 if (value
< 0 || value
> 255) {
138 result
= vendor_command(cyp
, CYPRESS_WRITE_PORT
, write_id
,
139 (unsigned char)value
);
141 dev_dbg(&cyp
->udev
->dev
, "Result of vendor_command: %d\n\n", result
);
143 return result
< 0 ? result
: count
;
146 /* attribute callback handler (write) */
147 static ssize_t
port0_store(struct device
*dev
,
148 struct device_attribute
*attr
,
149 const char *buf
, size_t count
)
151 return write_port(dev
, attr
, buf
, count
, 0, CYPRESS_WRITE_PORT_ID0
);
154 /* attribute callback handler (write) */
155 static ssize_t
port1_store(struct device
*dev
,
156 struct device_attribute
*attr
,
157 const char *buf
, size_t count
)
159 return write_port(dev
, attr
, buf
, count
, 1, CYPRESS_WRITE_PORT_ID1
);
162 /* read port value */
163 static ssize_t
read_port(struct device
*dev
, struct device_attribute
*attr
,
164 char *buf
, int port_num
, int read_id
)
168 struct usb_interface
*intf
= to_usb_interface(dev
);
169 struct cypress
*cyp
= usb_get_intfdata(intf
);
171 dev_dbg(&cyp
->udev
->dev
, "READ_PORT%d called\n", port_num
);
173 result
= vendor_command(cyp
, CYPRESS_READ_PORT
, read_id
, 0);
175 dev_dbg(&cyp
->udev
->dev
, "Result of vendor_command: %d\n\n", result
);
177 return sprintf(buf
, "%d", cyp
->port
[port_num
]);
180 /* attribute callback handler (read) */
181 static ssize_t
port0_show(struct device
*dev
,
182 struct device_attribute
*attr
, char *buf
)
184 return read_port(dev
, attr
, buf
, 0, CYPRESS_READ_PORT_ID0
);
186 static DEVICE_ATTR_RW(port0
);
188 /* attribute callback handler (read) */
189 static ssize_t
port1_show(struct device
*dev
,
190 struct device_attribute
*attr
, char *buf
)
192 return read_port(dev
, attr
, buf
, 1, CYPRESS_READ_PORT_ID1
);
194 static DEVICE_ATTR_RW(port1
);
196 static struct attribute
*cypress_attrs
[] = {
197 &dev_attr_port0
.attr
,
198 &dev_attr_port1
.attr
,
201 ATTRIBUTE_GROUPS(cypress
);
203 static int cypress_probe(struct usb_interface
*interface
,
204 const struct usb_device_id
*id
)
206 struct cypress
*dev
= NULL
;
207 int retval
= -ENOMEM
;
209 /* allocate memory for our device state and initialize it */
210 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
214 dev
->udev
= usb_get_dev(interface_to_usbdev(interface
));
216 /* save our data pointer in this interface device */
217 usb_set_intfdata(interface
, dev
);
219 /* let the user know that the device is now attached */
220 dev_info(&interface
->dev
,
221 "Cypress CY7C63xxx device now attached\n");
228 static void cypress_disconnect(struct usb_interface
*interface
)
232 dev
= usb_get_intfdata(interface
);
234 /* the intfdata can be set to NULL only after the
235 * device files have been removed */
236 usb_set_intfdata(interface
, NULL
);
238 usb_put_dev(dev
->udev
);
240 dev_info(&interface
->dev
,
241 "Cypress CY7C63xxx device now disconnected\n");
246 static struct usb_driver cypress_driver
= {
247 .name
= "cypress_cy7c63",
248 .probe
= cypress_probe
,
249 .disconnect
= cypress_disconnect
,
250 .id_table
= cypress_table
,
251 .dev_groups
= cypress_groups
,
254 module_usb_driver(cypress_driver
);
256 MODULE_AUTHOR(DRIVER_AUTHOR
);
257 MODULE_DESCRIPTION(DRIVER_DESC
);
259 MODULE_LICENSE("GPL");