[tmp] byte order changes in usb_control_msg() (usb.c). somehow it need
[ppcskel.git] / usb / core / usb.c
1 /*
2  * Copyright (c) 2007, Benedikt Sauter <sauter@ixbat.de>
3  * All rights reserved.
4  *
5  * Short descripton of file:
6  * I take the function names and parameters mainly from
7  * libusb.sf.net.
8  *
9  *
10  * Redistribution and use in source and binary forms, with or without 
11  * modification, are permitted provided that the following conditions 
12  * are met:
13  *
14  *   * Redistributions of source code must retain the above copyright 
15  *     notice, this list of conditions and the following disclaimer.
16  *   * Redistributions in binary form must reproduce the above 
17  *     copyright notice, this list of conditions and the following 
18  *     disclaimer in the documentation and/or other materials provided 
19  *     with the distribution.
20  *   * Neither the name of the FH Augsburg nor the names of its 
21  *     contributors may be used to endorse or promote products derived 
22  *     from this software without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
25  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
26  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
27  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
28  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
29  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
30  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
31  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
32  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
33  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
34  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35  */
36
37 //wtf??!
38 //#ifndef _USB_H_
39 //#define _USB_H_
40
41 //#include <stdlib.h>
42
43 #include "usb.h"
44 #include "core.h"
45 #include "../host/host.h"
46 #include "../usbspec/usb11spec.h"
47 #include "../../malloc.h"
48
49
50 /******************* Device Operations **********************/
51
52 /**
53  * Open a device with verndor- and product-id for a communication.
54  */
55 usb_device * usb_open(u32 vendor_id, u32 product_id)
56 {
57         usb_device* dev;
58         element * iterator = core.devices->head;
59         while(iterator != NULL) {
60                 dev = (usb_device*)iterator->data;
61                 
62                 if(dev->idVendor==vendor_id&&dev->idProduct==product_id)
63                         return dev;
64
65                 iterator=iterator->next;
66         }
67
68         return NULL;
69 }
70
71
72 /**
73  * Open a device with an class code for a communication.
74  */
75 usb_device * usb_open_class(u8 class)
76 {
77         usb_device* dev;
78         element * iterator = core.devices->head;
79         while(iterator != NULL) {
80                 dev = (usb_device*)iterator->data;
81                 
82                 if(dev->bDeviceClass==class)
83                         return dev;
84
85                 iterator=iterator->next;
86         }
87         return NULL;
88 }
89
90 /**
91  * Close device after a communication.
92  */
93 u8 usb_close(usb_device *dev)
94 {
95
96         return 0;
97 }
98
99 u8 usb_get_device_descriptor(usb_device *dev, char *buf,u8 size)
100 {
101
102         return 0;
103 }
104
105 u8 usb_set_address(usb_device *dev, u8 address)
106 {
107
108         return 0;
109 }
110
111 u8 usb_set_configuration(usb_device *dev, u8 configuration)
112 {
113
114         return 0;
115 }
116
117 u8 usb_set_altinterface(usb_device *dev, u8 alternate)
118 {
119
120         return 0;
121 }
122
123 u8 usb_reset(usb_device *dev)
124 {
125
126
127         return 0;
128 }
129
130
131 /******************* Control Transfer **********************/
132
133 /**
134  * Create a control transfer.
135  */
136 u8 usb_control_msg(usb_device *dev, u8 requesttype, u8 request, u16 value, u16 index, u16 length,char *buf, u16 size, u16 timeout)
137 {
138         usb_irp *irp = (usb_irp*)malloc(sizeof(usb_irp));
139         irp->dev = dev;
140         irp->endpoint = 0;
141         
142         irp->epsize = dev->bMaxPacketSize0;
143         irp->type = USB_CTRL;
144
145 #if 1
146         buf[0]=(char)requesttype;
147         buf[1]=(char)request;            
148         buf[2]=(char)(value >> 8);
149         buf[3]=(char)(value);           
150         buf[4]=(char)(index >> 8);
151         buf[5]=(char)(index);   
152         // lenght buf are the only where the order is inverted
153         buf[6]=(char)(length);
154         buf[7]=(char)(length >> 8);
155 #endif
156         //stupid hack?
157 #if 0
158         buf[0]=(char)requesttype;
159         buf[1]=(char)request;
160         buf[2]=(char)(value);
161         buf[3]=(char)(value >> 8);
162         buf[4]=(char)(index);
163         buf[5]=(char)(index >> 8);
164         // lenght buf are the only where the order is inverted
165         buf[6]=(char)(length >> 8);
166         buf[7]=(char)(length);
167 #endif
168
169         irp->buffer = buf;
170         irp->len = length;
171         irp->timeout = timeout;
172
173         usb_submit_irp(irp);
174         free(irp);
175
176         return 0;
177 }
178
179
180 u8 usb_get_string(usb_device *dev, u8 index, u8 langid, char *buf, u8 buflen)
181 {
182
183         return 0;
184 }
185
186
187 u8 usb_get_string_simple(usb_device *dev, u8 index, char *buf, u8 buflen)
188 {
189
190         return 0;
191 }
192
193 u8 usb_get_descriptor(usb_device *dev, unsigned char type, unsigned char index, void *buf, u8 size)
194 {
195
196         return 0;
197 }
198
199
200 /******************* Bulk Transfer **********************/
201
202 /**
203  * Write to an a bulk endpoint.
204  */
205 u8 usb_bulk_write(usb_device *dev, u8 ep, char *buf, u8 size, u8 timeout)
206 {
207         usb_irp * irp = (usb_irp*)malloc(sizeof(usb_irp));
208         irp->dev = dev;
209         //irp->devaddress = dev->address;
210         
211         irp->endpoint = ep;
212         irp->epsize = dev->epSize[ep]; // ermitteln
213         irp->type = USB_BULK;
214
215         irp->buffer = buf;
216         irp->len = size;
217         irp->timeout = timeout;
218
219         usb_submit_irp(irp);
220         free(irp);
221
222         return 0;
223 }
224
225 /**
226  * Read from an bulk endpoint.
227  */
228 u8 usb_bulk_read(usb_device *dev, u8 ep, char *buf, u8 size, u8 timeout)
229 {
230         usb_irp * irp = (usb_irp*)malloc(sizeof(usb_irp));
231         //irp->devaddress = dev->address;
232         irp->dev = dev;
233         
234         irp->endpoint = ep | 0x80;      // from device to host
235         irp->epsize = dev->epSize[ep]; // ermitteln
236         irp->type = USB_BULK;
237
238         irp->buffer = buf;
239         irp->len = size;
240         irp->timeout = timeout;
241
242         usb_submit_irp(irp);
243         free(irp);
244
245         return 0;
246 }
247
248
249 /******************* Interrupt Transfer **********************/
250 /**
251  * Write to an interrupt endpoint.
252  */
253 u8 usb_interrupt_write(usb_device *dev, u8 ep, char *buf, u8 size, u8 timeout)
254 {
255
256         return 0;
257 }
258
259 /**
260  * Read from an interrupt endpoint.
261  */
262 u8 usb_interrupt_read(usb_device *dev, u8 ep, char *buf, u8 size, u8 timeout)
263 {
264
265         return 0;
266 }
267
268
269 /******************* Isochron Transfer **********************/
270
271 /**
272  * Write to an isochron endpoint.
273  */
274 u8 usb_isochron_write(usb_device *dev, u8 ep, char *buf, u8 size, u8 timeout)
275 {
276
277         return 0;
278 }
279
280 /**
281  * Read from an isochron endpoint.
282  */
283 u8 usb_isochron_read(usb_device *dev, u8 ep, char *buf, u8 size, u8 timeout)
284 {
285
286
287         return 0;
288 }
289
290
291 //#endif        //_USB_H_