38c40b3b988343d69b7dac9d01305b9c7b0fdcfc
[ppcskel.git] / usb / drivers / class / hub.c
1 /*
2  * Copyright (c) 2007, Benedikt Sauter <sauter@ixbat.de>
3  * All rights reserved.
4  *
5  * Short descripton of file:
6  *
7  *
8  * Redistribution and use in source and binary forms, with or without 
9  * modification, are permitted provided that the following conditions 
10  * are met:
11  *
12  *   * Redistributions of source code must retain the above copyright 
13  *     notice, this list of conditions and the following disclaimer.
14  *   * Redistributions in binary form must reproduce the above 
15  *     copyright notice, this list of conditions and the following 
16  *     disclaimer in the documentation and/or other materials provided 
17  *     with the distribution.
18  *   * Neither the name of the FH Augsburg nor the names of its 
19  *     contributors may be used to endorse or promote products derived 
20  *     from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
23  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
25  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
26  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
27  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
28  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
29  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
30  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
31  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
32  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 //#include <wait.h>
36 //#include <stdlib.h>
37
38 #include "../../core/core.h"
39 #include "../../core/usb.h"
40 #include "../../usbspec/usb11spec.h"
41
42
43 void usb_hub_probe();
44 void usb_hub_check();
45
46
47 usb_driver hub = {
48         .name     = "hub",
49         .probe  = usb_hub_probe,
50         .check  = usb_hub_check,
51         .data     = NULL
52 };
53
54 void usb_hub_init()
55 {
56         usb_register_driver(&hub);      
57 }
58
59
60 void usb_hub_probe()
61 {
62         // schaue ob aktuell enumeriertes geraet ein hub ist
63         #if DEBUG
64         core.stdout("Probe: Hub\r\n");
65         #endif
66         wait_ms(1000);
67         
68         usb_device * dev;
69         dev = usb_open_class(HUB_CLASSCODE);
70         if(dev != NULL){
71                 hub.data = (void*)dev;          /* save handle */
72                 #if DEBUG
73                 core.stdout("Hub: Found Hub Device\r\n");
74                 #endif 
75          
76                 /* install int in EP */
77
78         }
79
80
81
82 }
83
84
85 void usb_hub_check()
86 {
87         // usb_read_interrupt(handle,1,buf); 
88         // ah neue geraet gefunden
89         // mit request den port geziel reseten, damit device adresse 0 hat
90         // enumeration start
91         // usb_add_device()
92         //
93         //
94         // ah geraet entfernt
95         // usb_remove_device(h1);
96
97 }
98
99
100 u8 usb_hub_get_hub_descriptor(usb_device *dev, char * buf)
101 {
102         return 0;  
103 }
104
105 u8 usb_hub_get_hub_status(usb_device *dev, char *buf)
106 {
107
108
109         return 0;  
110 }
111
112
113 u8 usb_hub_get_port_status(usb_device *dev, char *buf)
114 {
115
116
117         return 0;  
118 }
119
120 u8 usb_hub_clear_port_feature(usb_device *dev)
121 {
122
123         return 0;  
124 }
125
126 u8 usb_hub_set_port_feature(usb_device *dev, u8 value)
127 {
128
129         return 0;  
130 }
131
132 u8 usb_hub_clear_hub_feature(usb_device *dev)
133 {
134
135         return 0;  
136 }
137
138 u8 usb_hub_set_hub_feature(usb_device *dev)
139 {
140
141         return 0;  
142 }
143
144 u8 usb_hub_set_hub_descriptor(usb_device *dev)
145 {
146
147         return 0;  
148 }
149