annotate packages/devs/usb/at91/current/ChangeLog @ 2225:26500399b500

* cdl/usbs_at91.cdl: Allow EP0 to be enabled when there are no slave clients.
author asl
date Tue, 06 Jun 2006 13:30:11 +0000
parents 41234426f916
children dcfe5eba9ea7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2225
26500399b500 * cdl/usbs_at91.cdl: Allow EP0 to be enabled when there are no
asl
parents: 2223
diff changeset
1 2006-06-06 Andrew Lunn <andrew.lunn@ascom.ch>
26500399b500 * cdl/usbs_at91.cdl: Allow EP0 to be enabled when there are no
asl
parents: 2223
diff changeset
2
26500399b500 * cdl/usbs_at91.cdl: Allow EP0 to be enabled when there are no
asl
parents: 2223
diff changeset
3 * cdl/usbs_at91.cdl: Allow EP0 to be enabled when there are no
26500399b500 * cdl/usbs_at91.cdl: Allow EP0 to be enabled when there are no
asl
parents: 2223
diff changeset
4 slave clients.
26500399b500 * cdl/usbs_at91.cdl: Allow EP0 to be enabled when there are no
asl
parents: 2223
diff changeset
5
2223
41234426f916 * src/usbs_at91_data.cxx: Change the initialization priority. The
asl
parents: 2184
diff changeset
6 2006-05-25 Andrew Lunn <andrew.lunn@ascom.ch>
41234426f916 * src/usbs_at91_data.cxx: Change the initialization priority. The
asl
parents: 2184
diff changeset
7
41234426f916 * src/usbs_at91_data.cxx: Change the initialization priority. The
asl
parents: 2184
diff changeset
8 * src/usbs_at91_data.cxx: Change the initialization priority. The
41234426f916 * src/usbs_at91_data.cxx: Change the initialization priority. The
asl
parents: 2184
diff changeset
9 USB tty driver is initialized at priority CYG_INIT_IO, so the USB
41234426f916 * src/usbs_at91_data.cxx: Change the initialization priority. The
asl
parents: 2184
diff changeset
10 device has to be initialized before that.
41234426f916 * src/usbs_at91_data.cxx: Change the initialization priority. The
asl
parents: 2184
diff changeset
11
41234426f916 * src/usbs_at91_data.cxx: Change the initialization priority. The
asl
parents: 2184
diff changeset
12 2006-05-19 Andrew Lunn <andrew.lunn@ascom.ch>
41234426f916 * src/usbs_at91_data.cxx: Change the initialization priority. The
asl
parents: 2184
diff changeset
13
41234426f916 * src/usbs_at91_data.cxx: Change the initialization priority. The
asl
parents: 2184
diff changeset
14 * src/usbs_at91.c: Rework pullup and power dectect to use the AT91
41234426f916 * src/usbs_at91_data.cxx: Change the initialization priority. The
asl
parents: 2184
diff changeset
15 GPIO macros.
41234426f916 * src/usbs_at91_data.cxx: Change the initialization priority. The
asl
parents: 2184
diff changeset
16
2184
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
17 2006-05-07 Andrew Lunn <andrew.lunn@ascom.ch>
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
18
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
19 * Included into eCos anonymous CVS.
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
20
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
21 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
22 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
23 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
24 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
25 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
26 interrupt generated. Currently no workaround is used to correct
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
27 this behavoiour.
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
28
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
29 2006-04-23 Andrew Lunn <andrew.lunn@ascom.ch>
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
30
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
31 * 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
32 not 8.
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
33
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
34 2006-04-20 Andrew Lunn <andrew.lunn@ascom.ch>
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 * 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
37 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
38 buffer size.
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-04-16 Andrew Lunn <andrew.lunn@ascom.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 * 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
43 USB testcase framework by exporting what endpoint we have.
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
44 * 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
45 than standard requests work, eg CLASS, VENDOR etc.
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
46 * 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
47 hardware using the configuration information.
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
48 * 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
49 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
50 function defined.
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
51
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
52 2006-03-10 Oliver Munz <oli@snr.ch>
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 * CDL-Update for PLL-Freuenzy.
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 2006-03-06 Oliver Munz <oli@snr.ch>
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
57
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
58 * USB device driver work finished - haha.
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
59
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
60 What's missing:
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
61 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
62 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
63 the "usbs.h" API.
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
64 Isochronus transfer is not implemented.
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
65 Polling routines are not implemented.
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
66 USB-Tests are not done.
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
67 The PowerDetectPin is not used for the state.
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
68 AT91SAM7X's are not supported at the moment.
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
69
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
70 But it works for me...
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
71
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
72 //===========================================================================
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
73 //####ECOSGPLCOPYRIGHTBEGIN####
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 // 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
76 // 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
77 //
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
78 // 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
79 // 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
80 // 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
81 //
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
82 // 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
83 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
84 // 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
85 // for more details.
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
86 //
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
87 // 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
88 // 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
89 // 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
90 //
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
91 // 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
92 // 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
93 // 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
94 // 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
95 // 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
96 // 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
97 //
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
98 // 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
99 // 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
100 //
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
101 // 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
102 // at http://sources.redhat.com/ecos/ecos-license/
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
103 // -------------------------------------------
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
104 //####ECOSGPLCOPYRIGHTEND####
54308c2d9651 AT91 USB device driver by Oliver Munz and Andrew Lunn.
asl
parents:
diff changeset
105 //===========================================================================