|
2184
|
1 2006-05-07 Andrew Lunn <andrew.lunn@ascom.ch> |
|
|
2 |
|
|
3 * Included into eCos anonymous CVS. |
|
|
4 |
|
|
5 Note: There appears to be a hardware bug with OUT transfers. It |
|
|
6 appears that after resetting the endpoint, the first OUT transfer |
|
|
7 does not trigger a receive interrupt. The BK0 bit is not set, |
|
|
8 however the number of bytes in the receiver FIFO is correct. The |
|
|
9 second OUT transfer causes both BK0 and BK1 bits to be set and an |
|
|
10 interrupt generated. Currently no workaround is used to correct |
|
|
11 this behavoiour. |
|
|
12 |
|
|
13 2006-04-23 Andrew Lunn <andrew.lunn@ascom.ch> |
|
|
14 |
|
|
15 * src/usbs_at91.c: Endpoint 3 can send upto 64 bytes at a time, |
|
|
16 not 8. |
|
|
17 |
|
|
18 2006-04-20 Andrew Lunn <andrew.lunn@ascom.ch> |
|
|
19 |
|
|
20 * src/usbs_at91.c (usbs_at91_control_data_sent): Send a zero byte |
|
|
21 packet when the transfer is an exact multiple of the endpoint |
|
|
22 buffer size. |
|
|
23 |
|
|
24 2006-04-16 Andrew Lunn <andrew.lunn@ascom.ch> |
|
|
25 |
|
|
26 * src/usbs_at91.c (usbs_testing_endpoints): Added support for the |
|
|
27 USB testcase framework by exporting what endpoint we have. |
|
|
28 * src/usbs_at91.c (usbs_at91_control_setup): Make requests other |
|
|
29 than standard requests work, eg CLASS, VENDOR etc. |
|
|
30 * src/usbs_at91.c (usbs_at91_handle_reset): Configure the endpoint |
|
|
31 hardware using the configuration information. |
|
|
32 * src/usbs_at91.c (usbs_at91_control_data_sent): Transaction is |
|
|
33 complete when the buffer is empty _and_ there is no refill |
|
|
34 function defined. |
|
|
35 |
|
|
36 2006-03-10 Oliver Munz <oli@snr.ch> |
|
|
37 |
|
|
38 * CDL-Update for PLL-Freuenzy. |
|
|
39 |
|
|
40 2006-03-06 Oliver Munz <oli@snr.ch> |
|
|
41 |
|
|
42 * USB device driver work finished - haha. |
|
|
43 |
|
|
44 What's missing: |
|
|
45 The set_... and get_freature-host-commands are not implemented yet. |
|
|
46 The dynamical configuration of the data-endpoints is not reflectet in |
|
|
47 the "usbs.h" API. |
|
|
48 Isochronus transfer is not implemented. |
|
|
49 Polling routines are not implemented. |
|
|
50 USB-Tests are not done. |
|
|
51 The PowerDetectPin is not used for the state. |
|
|
52 AT91SAM7X's are not supported at the moment. |
|
|
53 |
|
|
54 But it works for me... |
|
|
55 |
|
|
56 //=========================================================================== |
|
|
57 //####ECOSGPLCOPYRIGHTBEGIN#### |
|
|
58 // ------------------------------------------- |
|
|
59 // This file is part of eCos, the Embedded Configurable Operating System. |
|
|
60 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc. |
|
|
61 // |
|
|
62 // eCos is free software; you can redistribute it and/or modify it under |
|
|
63 // the terms of the GNU General Public License as published by the Free |
|
|
64 // Software Foundation; either version 2 or (at your option) any later version. |
|
|
65 // |
|
|
66 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY |
|
|
67 // WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
|
68 // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
|
69 // for more details. |
|
|
70 // |
|
|
71 // You should have received a copy of the GNU General Public License along |
|
|
72 // with eCos; if not, write to the Free Software Foundation, Inc., |
|
|
73 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. |
|
|
74 // |
|
|
75 // As a special exception, if other files instantiate templates or use macros |
|
|
76 // or inline functions from this file, or you compile this file and link it |
|
|
77 // with other works to produce a work based on this file, this file does not |
|
|
78 // by itself cause the resulting work to be covered by the GNU General Public |
|
|
79 // License. However the source code for this file must still be made available |
|
|
80 // in accordance with section (3) of the GNU General Public License. |
|
|
81 // |
|
|
82 // This exception does not invalidate any other reasons why a work based on |
|
|
83 // this file might be covered by the GNU General Public License. |
|
|
84 // |
|
|
85 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc. |
|
|
86 // at http://sources.redhat.com/ecos/ecos-license/ |
|
|
87 // ------------------------------------------- |
|
|
88 //####ECOSGPLCOPYRIGHTEND#### |
|
|
89 //=========================================================================== |