annotate packages/devs/usb/at91/current/ChangeLog @ 2184:54308c2d9651

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