blob: 711e84f6ed82d8d0c0d80d50da5f5b4ec057014f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * EZ-USB specific functions used by some of the USB to Serial drivers.
3 *
4 * Copyright (C) 1999 - 2002 Greg Kroah-Hartman (greg@kroah.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/kernel.h>
12#include <linux/errno.h>
13#include <linux/init.h>
14#include <linux/slab.h>
15#include <linux/tty.h>
16#include <linux/module.h>
17#include <linux/usb.h>
Greg Kroah-Hartmana9698882006-07-11 21:22:58 -070018#include <linux/usb/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20/* EZ-USB Control and Status Register. Bit 0 controls 8051 reset */
21#define CPUCS_REG 0x7F92
22
Alan Cox80359a92008-07-22 11:09:16 +010023int ezusb_writememory(struct usb_serial *serial, int address,
24 unsigned char *data, int length, __u8 request)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025{
26 int result;
27 unsigned char *transfer_buffer;
28
29 /* dbg("ezusb_writememory %x, %d", address, length); */
30 if (!serial->dev) {
Harvey Harrison441b62c2008-03-03 16:08:34 -080031 err("%s - no physical device present, failing.", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 return -ENODEV;
33 }
34
Eric Sesterhenn5d7efe52006-10-26 21:06:24 +020035 transfer_buffer = kmemdup(data, length, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 if (!transfer_buffer) {
Alan Cox80359a92008-07-22 11:09:16 +010037 dev_err(&serial->dev->dev, "%s - kmalloc(%d) failed.\n",
38 __func__, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 return -ENOMEM;
40 }
Alan Cox80359a92008-07-22 11:09:16 +010041 result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
42 request, 0x40, address, 0, transfer_buffer, length, 3000);
43 kfree(transfer_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 return result;
45}
Alan Cox80359a92008-07-22 11:09:16 +010046EXPORT_SYMBOL_GPL(ezusb_writememory);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Alan Cox80359a92008-07-22 11:09:16 +010048int ezusb_set_reset(struct usb_serial *serial, unsigned char reset_bit)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
50 int response;
51
Harvey Harrison441b62c2008-03-03 16:08:34 -080052 /* dbg("%s - %d", __func__, reset_bit); */
Alan Cox80359a92008-07-22 11:09:16 +010053 response = ezusb_writememory(serial, CPUCS_REG, &reset_bit, 1, 0xa0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 if (response < 0)
Alan Cox80359a92008-07-22 11:09:16 +010055 dev_err(&serial->dev->dev, "%s- %d failed\n",
56 __func__, reset_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 return response;
58}
Paul Chavent7bd4b202008-01-12 15:23:17 +010059EXPORT_SYMBOL_GPL(ezusb_set_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060