]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/usb/d12/v2_0/include/usbs_d12.h
Initial revision
[karo-tx-redboot.git] / packages / devs / usb / d12 / v2_0 / include / usbs_d12.h
1 #ifndef CYGONCE_USBS_D12_H
2 #define CYGONCE_USBS_D12_H
3 //==========================================================================
4 //
5 //      include/usbs_d12.h
6 //
7 //      The interface exported by the D12 USB device driver
8 //
9 //==========================================================================
10 //####ECOSGPLCOPYRIGHTBEGIN####
11 // -------------------------------------------
12 // This file is part of eCos, the Embedded Configurable Operating System.
13 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
14 // Copyright (C) 2006 eCosCentric Ltd
15 //
16 // eCos is free software; you can redistribute it and/or modify it under
17 // the terms of the GNU General Public License as published by the Free
18 // Software Foundation; either version 2 or (at your option) any later version.
19 //
20 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
21 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
22 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
23 // for more details.
24 //
25 // You should have received a copy of the GNU General Public License along
26 // with eCos; if not, write to the Free Software Foundation, Inc.,
27 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
28 //
29 // As a special exception, if other files instantiate templates or use macros
30 // or inline functions from this file, or you compile this file and link it
31 // with other works to produce a work based on this file, this file does not
32 // by itself cause the resulting work to be covered by the GNU General Public
33 // License. However the source code for this file must still be made available
34 // in accordance with section (3) of the GNU General Public License.
35 //
36 // This exception does not invalidate any other reasons why a work based on
37 // this file might be covered by the GNU General Public License.
38 // -------------------------------------------
39 //####ECOSGPLCOPYRIGHTEND####
40 //==========================================================================
41 //#####DESCRIPTIONBEGIN####
42 //
43 // Author(s):    Frank Pagliughi (fmp)
44 // Contributors: fmp
45 // Date:         2004-05-24
46 // Purpose:
47 //
48 //####DESCRIPTIONEND####
49 //==========================================================================
50
51 #include <cyg/io/usb/usbs.h>
52
53 #ifdef __cplusplus
54 extern "C" {
55 #endif
56
57 /*
58  * The Philips D12 is a full speed (12Mbps) USB peripheral controller
59  * chip, with a parallel interface allowing it to be connected to nearly
60  * any microcontroller or microprocessor. 
61  */
62 extern usbs_control_endpoint    usbs_d12_ep0;
63
64 extern usbs_rx_endpoint         usbs_d12_rx_ep1;
65 extern usbs_tx_endpoint         usbs_d12_tx_ep1;
66 extern usbs_rx_endpoint         usbs_d12_rx_ep2;
67 extern usbs_tx_endpoint         usbs_d12_tx_ep2;
68     
69 #ifdef __cplusplus
70 } /* extern "C" { */
71 #endif
72
73 #endif /* CYGONCE_USBS_D12_H */