]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/usb/at91/v2_0/ChangeLog
Initial revision
[karo-tx-redboot.git] / packages / devs / usb / at91 / v2_0 / ChangeLog
1 2007-11-20  Andrew Lunn  <andrew.lunn@ascom.ch>
2
3         * cdl/usbs_at91.cdl: Fixed typos in
4         CYGNUM_DEVS_USB_AT91_GPIO_PULLUP_INVERTED and
5         CYGNUM_DEVS_USB_AT91_GPIO_READ_POWER_INVERTED. Fixing the typo.
6
7         * src/usbs_at91.c (usbs_at91_set_pullup): Change the logic so that
8         CYGNUM_DEVS_USB_AT91_GPIO_PULLUP_INVERTED does actually cause an
9         invert when set true.
10         
11 2006-09-07  John Eigelaar  <jeigelaar@mweb.co.za>
12
13         * cdl/usbs_at91.c: Read actual EP addresses from the EP configuartion
14         rather than relying on the order in the configuration list.
15
16 2006-06-06  Andrew Lunn  <andrew.lunn@ascom.ch>
17
18         * cdl/usbs_at91.cdl: Allow EP0 to be enabled when there are no
19         slave clients.
20
21 2006-05-25  Andrew Lunn  <andrew.lunn@ascom.ch>
22
23         * src/usbs_at91_data.cxx: Change the initialization priority.  The
24         USB tty driver is initialized at priority CYG_INIT_IO, so the USB
25         device has to be initialized before that.
26
27 2006-05-19  Andrew Lunn  <andrew.lunn@ascom.ch>
28
29         * src/usbs_at91.c: Rework pullup and power dectect to use the AT91
30         GPIO macros.
31
32 2006-05-07  Andrew Lunn  <andrew.lunn@ascom.ch>
33
34         * Included into eCos anonymous CVS.
35
36         Note: There appears to be a hardware bug with OUT transfers.  It
37         appears that after resetting the endpoint, the first OUT transfer
38         does not trigger a receive interrupt. The BK0 bit is not set,
39         however the number of bytes in the receiver FIFO is correct.  The
40         second OUT transfer causes both BK0 and BK1 bits to be set and an
41         interrupt generated. Currently no workaround is used to correct
42         this behavoiour. 
43         
44 2006-04-23  Andrew Lunn  <andrew.lunn@ascom.ch>
45
46         * src/usbs_at91.c: Endpoint 3 can send upto 64 bytes at a time,
47         not 8.
48
49 2006-04-20  Andrew Lunn  <andrew.lunn@ascom.ch>
50
51         * src/usbs_at91.c (usbs_at91_control_data_sent): Send a zero byte
52         packet when the transfer is an exact multiple of the endpoint
53         buffer size.
54         
55 2006-04-16  Andrew Lunn  <andrew.lunn@ascom.ch>
56
57         * src/usbs_at91.c (usbs_testing_endpoints): Added support for the
58         USB testcase framework by exporting what endpoint we have.
59         * src/usbs_at91.c (usbs_at91_control_setup): Make requests other
60         than standard requests work, eg CLASS, VENDOR etc.
61         * src/usbs_at91.c (usbs_at91_handle_reset): Configure the endpoint 
62         hardware using the configuration information.
63         * src/usbs_at91.c (usbs_at91_control_data_sent): Transaction is
64         complete when the buffer is empty _and_ there is no refill
65         function defined.
66         
67 2006-03-10  Oliver Munz  <oli@snr.ch>
68
69         * CDL-Update for PLL-Freuenzy.
70
71 2006-03-06  Oliver Munz  <oli@snr.ch>
72
73         * USB device driver work finished - haha.
74         
75         What's missing:
76         The set_... and get_freature-host-commands are not implemented yet.
77         The dynamical configuration of the data-endpoints is not reflectet in
78         the "usbs.h" API.
79         Isochronus transfer is not implemented.
80         Polling routines are not implemented.
81         USB-Tests are not done.
82         The PowerDetectPin is not used for the state.
83         AT91SAM7X's are not supported at the moment.
84         
85         But it works for me...
86
87 //===========================================================================
88 //####ECOSGPLCOPYRIGHTBEGIN####
89 // -------------------------------------------
90 // This file is part of eCos, the Embedded Configurable Operating System.
91 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
92 //
93 // eCos is free software; you can redistribute it and/or modify it under
94 // the terms of the GNU General Public License as published by the Free
95 // Software Foundation; either version 2 or (at your option) any later version.
96 //
97 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
98 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
99 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
100 // for more details.
101 //
102 // You should have received a copy of the GNU General Public License along
103 // with eCos; if not, write to the Free Software Foundation, Inc.,
104 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
105 //
106 // As a special exception, if other files instantiate templates or use macros
107 // or inline functions from this file, or you compile this file and link it
108 // with other works to produce a work based on this file, this file does not
109 // by itself cause the resulting work to be covered by the GNU General Public
110 // License. However the source code for this file must still be made available
111 // in accordance with section (3) of the GNU General Public License.
112 //
113 // This exception does not invalidate any other reasons why a work based on
114 // this file might be covered by the GNU General Public License.
115 //
116 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
117 // at http://sources.redhat.com/ecos/ecos-license/
118 // -------------------------------------------
119 //####ECOSGPLCOPYRIGHTEND####
120 //===========================================================================