48 lines
1.6 KiB
C
48 lines
1.6 KiB
C
/*
|
|
*
|
|
* Copyright (c) International Business Machines Corp., 2001
|
|
*
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
*/
|
|
|
|
#define TEST_USB_DRIVER_NAME "Usb test module"
|
|
#define DEVICE_NAME "/dev/tusb"
|
|
#define TUSB_MAJOR 252
|
|
|
|
|
|
#define MAG_NUM 's'
|
|
#define FIND_DEV _IO(MAG_NUM, 1)
|
|
#define TEST_FIND_HCD _IO(MAG_NUM, 2)
|
|
#define TEST_HCD_PROBE _IO(MAG_NUM, 3)
|
|
#define TEST_HCD_REMOVE _IO(MAG_NUM, 4)
|
|
#define TEST_HCD_SUSPEND _IO(MAG_NUM, 5)
|
|
#define TEST_HCD_RESUME _IO(MAG_NUM, 6)
|
|
#ifndef SET_MODULE_OWNER
|
|
#define SET_MODULE_OWNER(dev) ((dev)->owner = THIS_MODULE)
|
|
#endif
|
|
|
|
/*
|
|
* structures for USB test driver
|
|
*/
|
|
struct tusb_interface {
|
|
int in_len; // input data length
|
|
caddr_t in_data; // input data
|
|
int out_rc; // return code from the test
|
|
int out_len; // output data length
|
|
caddr_t out_data; // output data
|
|
};
|
|
typedef struct tusb_interface tusb_interface_t;
|