Resync patch with contrib.
[dragonfly.git] / sys / bus / usb / rio500_usb.h
blobb425d17ec28e07f5376f36159e65caf6b05baded
1 /* ----------------------------------------------------------------------
3 Copyright (C) 2000 Cesar Miquel (miquel@df.uba.ar)
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted under any licence of your choise which
7 meets the open source licence definiton
8 http://www.opensource.org/opd.html such as the GNU licence or the
9 BSD licence.
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 GNU
14 General Public License or the BSD license for more details.
16 ----------------------------------------------------------------------
18 Modified for FreeBSD by Iwasa Kazmi <kzmi@ca2.so-net.ne.jp>
20 ---------------------------------------------------------------------- */
23 * $FreeBSD: src/sys/dev/usb/rio500_usb.h,v 1.1 2000/04/08 17:02:13 n_hibma Exp $
24 * $DragonFly: src/sys/bus/usb/rio500_usb.h,v 1.5 2007/06/27 12:27:59 hasso Exp $
27 #include <sys/ioccom.h>
28 #ifndef USB_VENDOR_DIAMOND
29 #define USB_VENDOR_DIAMOND 0x841
30 #endif
31 #ifndef USB_PRODUCT_DIAMOND_RIO500USB
32 #define USB_PRODUCT_DIAMOND_RIO500USB 0x1
33 #endif
35 struct RioCommand
37 u_int16_t length;
38 int request;
39 int requesttype;
40 int value;
41 int index;
42 void *buffer;
43 int timeout;
46 #define RIO_SEND_COMMAND _IOWR('U', 200, struct RioCommand)
47 #define RIO_RECV_COMMAND _IOWR('U', 201, struct RioCommand)
49 #define RIO_DIR_OUT 0x0
50 #define RIO_DIR_IN 0x1