Modules/USB - Callback support and Driver selection
[tpg/acess2.git] / Modules / USB / UHCI / uhci.c
1 /*
2  * Acess 2 USB Stack
3  * - By John Hodge (thePowersGang)
4  *
5  * Universal Host Controller Interface
6  */
7 #define DEBUG   0
8 #define VERSION VER2(0,5)
9 #include <acess.h>
10 #include <vfs.h>
11 #include <drv_pci.h>
12 #include <modules.h>
13 #include <usb_host.h>
14 #include "uhci.h"
15
16 // === CONSTANTS ===
17 #define MAX_CONTROLLERS 4
18 #define NUM_TDs 1024
19
20 // === PROTOTYPES ===
21  int    UHCI_Initialise();
22 void    UHCI_Cleanup();
23 tUHCI_TD        *UHCI_int_AllocateTD(tUHCI_Controller *Cont);
24 void    UHCI_int_AppendTD(tUHCI_Controller *Cont, tUHCI_TD *TD);
25 void    *UHCI_int_SendTransaction(tUHCI_Controller *Cont, int Addr, Uint8 Type, int bTgl, tUSBHostCb Cb, void *CbData, void *Buf, size_t Length);
26 void    *UHCI_DataIN(void *Ptr, int Fcn, int Endpt, int DataTgl, tUSBHostCb Cb, void *CbData, void *Buf, size_t Length);
27 void    *UHCI_DataOUT(void *Ptr, int Fcn, int Endpt, int DataTgl, tUSBHostCb Cb, void *CbData,  void *Buf, size_t Length);
28 void    *UHCI_SendSetup(void *Ptr, int Fcn, int Endpt, int DataTgl, tUSBHostCb Cb, void *CbData, void *Buf, size_t Length);
29  int    UHCI_IsTransferComplete(void *Ptr, void *Handle);
30  int    UHCI_Int_InitHost(tUHCI_Controller *Host);
31 void    UHCI_CheckPortUpdate(void *Ptr);
32 void    UHCI_InterruptHandler(int IRQ, void *Ptr);
33
34 // === GLOBALS ===
35 MODULE_DEFINE(0, VERSION, USB_UHCI, UHCI_Initialise, NULL, "USB_Core", NULL);
36 tUHCI_TD        gaUHCI_TDPool[NUM_TDs];
37 tUHCI_Controller        gUHCI_Controllers[MAX_CONTROLLERS];
38 tUSBHostDef     gUHCI_HostDef = {
39         .SendIN = UHCI_DataIN,
40         .SendOUT = UHCI_DataOUT,
41         .SendSETUP = UHCI_SendSetup,
42         .CheckPorts = UHCI_CheckPortUpdate,
43         .IsOpComplete = UHCI_IsTransferComplete
44         };
45
46 // === CODE ===
47 /**
48  * \fn int UHCI_Initialise()
49  * \brief Called to initialise the UHCI Driver
50  */
51 int UHCI_Initialise(const char **Arguments)
52 {
53          int    i=0, id=-1;
54          int    ret;
55         
56         ENTER("");
57         
58         // Enumerate PCI Bus, getting a maximum of `MAX_CONTROLLERS` devices
59         while( (id = PCI_GetDeviceByClass(0x0C03, 0xFFFF, id)) >= 0 && i < MAX_CONTROLLERS )
60         {
61                 tUHCI_Controller        *cinfo = &gUHCI_Controllers[i];
62                 // NOTE: Check "protocol" from PCI?
63                 
64                 cinfo->PciId = id;
65                 cinfo->IOBase = PCI_GetBAR(id, 4);
66                 if( !(cinfo->IOBase & 1) ) {
67                         Log_Warning("UHCI", "MMIO is not supported");
68                         continue ;
69                 }
70                 cinfo->IOBase &= ~1;
71                 cinfo->IRQNum = PCI_GetIRQ(id);
72                 
73                 Log_Debug("UHCI", "Controller PCI #%i: IO Base = 0x%x, IRQ %i",
74                         id, cinfo->IOBase, cinfo->IRQNum);
75                 
76                 IRQ_AddHandler(cinfo->IRQNum, UHCI_InterruptHandler, cinfo);
77         
78                 // Initialise Host
79                 ret = UHCI_Int_InitHost(&gUHCI_Controllers[i]);
80                 // Detect an error
81                 if(ret != 0) {
82                         LEAVE('i', ret);
83                         return ret;
84                 }
85                 
86                 cinfo->RootHub = USB_RegisterHost(&gUHCI_HostDef, cinfo, 2);
87                 LOG("cinfo->RootHub = %p", cinfo->RootHub);
88
89                 UHCI_CheckPortUpdate(cinfo);
90
91                 i ++;
92         }
93         if(i == MAX_CONTROLLERS) {
94                 Log_Warning("UHCI", "Over "EXPAND_STR(MAX_CONTROLLERS)" UHCI controllers detected, ignoring rest");
95         }
96         LEAVE('i', MODULE_ERR_OK);
97         return MODULE_ERR_OK;
98 }
99
100 /**
101  * \fn void UHCI_Cleanup()
102  * \brief Called just before module is unloaded
103  */
104 void UHCI_Cleanup()
105 {
106 }
107
108 tUHCI_TD *UHCI_int_AllocateTD(tUHCI_Controller *Cont)
109 {
110          int    i;
111         for(i = 0; i < NUM_TDs; i ++)
112         {
113                 if(gaUHCI_TDPool[i].Link == 0) {
114                         gaUHCI_TDPool[i].Link = 1;
115                         gaUHCI_TDPool[i].Control = 1 << 23;
116                         return &gaUHCI_TDPool[i];
117                 }
118                 // Still in use? Skip
119                 if( gaUHCI_TDPool[i].Control & (1 << 23) )
120                         continue ;
121                 // Is there a callback on it? Skip
122                 if( gaUHCI_TDPool[i]._info.Callback )
123                         continue ;
124                 // TODO: Garbage collect, but that means removing from the list too
125                 #if 0
126                 // Ok, this is actually unused
127                 gaUHCI_TDPool[i].Link = 1;
128                 gaUHCI_TDPool[i].Control = 1 << 23;
129                 return &gaUHCI_TDPool[i];
130                 #endif
131         }
132         return NULL;
133 }
134
135 tUHCI_TD *UHCI_int_GetTDFromPhys(tPAddr PAddr)
136 {
137         // TODO: Fix this to work with a non-contiguous pool
138         static tPAddr   td_pool_base;
139         if(!td_pool_base)       td_pool_base = MM_GetPhysAddr( (tVAddr)gaUHCI_TDPool );
140         return gaUHCI_TDPool + (PAddr - td_pool_base) / sizeof(gaUHCI_TDPool[0]);
141 }
142
143 void UHCI_int_AppendTD(tUHCI_Controller *Cont, tUHCI_TD *TD)
144 {
145          int    next_frame = (inw(Cont->IOBase + FRNUM) + 2) & (1024-1);
146         tUHCI_TD        *prev_td;
147         Uint32  link;
148
149         // TODO: How to handle FRNUM incrementing while we are in this function?
150
151         // Empty list
152         if( Cont->FrameList[next_frame] & 1 )
153         {
154                 // TODO: Ensure 32-bit paddr
155                 Cont->FrameList[next_frame] = MM_GetPhysAddr( (tVAddr)TD );
156                 LOG("next_frame = %i", next_frame);     
157                 return;
158         }
159
160         // Find the end of the list
161         link = Cont->FrameList[next_frame];
162         do {
163                 prev_td = UHCI_int_GetTDFromPhys(link);
164                 link = prev_td->Link;
165         } while( !(link & 1) );
166         
167         // Append
168         prev_td->Link = MM_GetPhysAddr( (tVAddr)TD );
169
170         LOG("next_frame = %i, prev_td = %p", next_frame, prev_td);
171 }
172
173 /**
174  * \brief Send a transaction to the USB bus
175  * \param Cont  Controller pointer
176  * \param Addr  Function Address * 16 + Endpoint
177  * \param bTgl  Data toggle value
178  */
179 void *UHCI_int_SendTransaction(
180         tUHCI_Controller *Cont, int Addr, Uint8 Type, int bTgl,
181         tUSBHostCb Cb, void *CbData, void *Data, size_t Length)
182 {
183         tUHCI_TD        *td;
184
185         if( Length > 0x400 )    return NULL;    // Controller allows up to 0x500, but USB doesn't
186
187         td = UHCI_int_AllocateTD(Cont);
188
189         if( !td ) {
190                 // TODO: Wait for one to free?
191                 Log_Error("UHCI", "No avaliable TDs, transaction dropped");
192                 return NULL;
193         }
194
195         td->Link = 1;
196         td->Control = (Length - 1) & 0x7FF;
197         td->Control |= (1 << 23);
198         td->Token  = ((Length - 1) & 0x7FF) << 21;
199         td->Token |= (bTgl & 1) << 19;
200         td->Token |= (Addr & 0xF) << 15;
201         td->Token |= ((Addr/16) & 0xFF) << 8;
202         td->Token |= Type;
203
204         // TODO: Ensure 32-bit paddr
205         if( ((tVAddr)Data & (PAGE_SIZE-1)) + Length > PAGE_SIZE ) {
206                 Log_Warning("UHCI", "TODO: Support non single page transfers (%x + %x > %x)",
207                         (tVAddr)Data & (PAGE_SIZE-1), Length, PAGE_SIZE
208                         );
209                 // TODO: Need to enable IOC to copy the data back
210 //              td->BufferPointer = 
211                 td->_info.bCopyData = 1;
212                 return NULL;
213         }
214         else {
215                 td->BufferPointer = MM_GetPhysAddr( (tVAddr)Data );
216                 td->_info.bCopyData = 0;
217         }
218
219         // Interrupt on completion
220         if( Cb ) {
221                 td->Control |= (1 << 24);
222                 td->_info.Callback = Cb;        // NOTE: if ERRPTR then the TD is kept allocated until checked
223                 td->_info.CallbackPtr = CbData;
224         }
225         
226         td->_info.DataPtr = Data;
227
228         UHCI_int_AppendTD(Cont, td);
229
230         return td;
231 }
232
233 void *UHCI_DataIN(void *Ptr, int Fcn, int Endpt, int DataTgl, tUSBHostCb Cb, void *CbData, void *Buf, size_t Length)
234 {
235         return UHCI_int_SendTransaction(Ptr, Fcn*16+Endpt, 0x69, DataTgl, Cb, CbData, Buf, Length);
236 }
237
238 void *UHCI_DataOUT(void *Ptr, int Fcn, int Endpt, int DataTgl, tUSBHostCb Cb, void *CbData, void *Buf, size_t Length)
239 {
240         return UHCI_int_SendTransaction(Ptr, Fcn*16+Endpt, 0xE1, DataTgl, Cb, CbData, Buf, Length);
241 }
242
243 void *UHCI_SendSetup(void *Ptr, int Fcn, int Endpt, int DataTgl, tUSBHostCb Cb, void *CbData, void *Buf, size_t Length)
244 {
245         return UHCI_int_SendTransaction(Ptr, Fcn*16+Endpt, 0x2D, DataTgl, Cb, CbData, Buf, Length);
246 }
247
248 int UHCI_IsTransferComplete(void *Ptr, void *Handle)
249 {
250         tUHCI_TD        *td = Handle;
251          int    ret;
252         ret = !(td->Control & (1 << 23));
253         if(ret) {
254                 td->_info.Callback = NULL;
255                 td->Link = 1;
256         }
257         return ret;
258 }
259
260 // === INTERNAL FUNCTIONS ===
261 /**
262  * \fn int UHCI_Int_InitHost(tUCHI_Controller *Host)
263  * \brief Initialises a UHCI host controller
264  * \param Host  Pointer - Host to initialise
265  */
266 int UHCI_Int_InitHost(tUHCI_Controller *Host)
267 {
268         ENTER("pHost", Host);
269
270         outw( Host->IOBase + USBCMD, 4 );       // GRESET
271         Time_Delay(10);
272         // TODO: Wait for at least 10ms
273         outw( Host->IOBase + USBCMD, 0 );       // GRESET
274         
275         // Allocate Frame List
276         // - 1 Page, 32-bit address
277         // - 1 page = 1024  4 byte entries
278         Host->FrameList = (void *) MM_AllocDMA(1, 32, &Host->PhysFrameList);
279         if( !Host->FrameList ) {
280                 Log_Warning("UHCI", "Unable to allocate frame list, aborting");
281                 LEAVE('i', -1);
282                 return -1;
283         }
284         LOG("Allocated frame list 0x%x (0x%x)", Host->FrameList, Host->PhysFrameList);
285         memsetd( Host->FrameList, 1, 1024 );    // Clear List (Disabling all entries)
286         
287         //! \todo Properly fill frame list
288         
289         // Set frame length to 1 ms
290         outb( Host->IOBase + SOFMOD, 64 );
291         
292         // Set Frame List
293         outd( Host->IOBase + FLBASEADD, Host->PhysFrameList );
294         outw( Host->IOBase + FRNUM, 0 );
295         
296         // Enable Interrupts
297         outw( Host->IOBase + USBINTR, 0x000F );
298         PCI_ConfigWrite( Host->PciId, 0xC0, 2, 0x2000 );
299
300         // Enable processing
301         outw( Host->IOBase + USBCMD, 0x0001 );
302
303         LEAVE('i', 0);
304         return 0;
305 }
306
307 void UHCI_CheckPortUpdate(void *Ptr)
308 {
309         tUHCI_Controller        *Host = Ptr;
310         // Enable ports
311         for( int i = 0; i < 2; i ++ )
312         {
313                  int    port = Host->IOBase + PORTSC1 + i*2;
314                 // Check for port change
315                 if( !(inw(port) & 0x0002) )     continue;
316                 outw(port, 0x0002);
317                 
318                 // Check if the port is connected
319                 if( !(inw(port) & 1) )
320                 {
321                         // Tell the USB code it's gone.
322                         USB_DeviceDisconnected(Host->RootHub, i);
323                         continue;
324                 }
325                 else
326                 {
327                         LOG("Port %i has something", i);
328                         // Reset port (set bit 9)
329                         LOG("Reset");
330                         outw( port, 0x0200 );
331                         Time_Delay(50); // 50ms delay
332                         outw( port, inw(port) & ~0x0200 );
333                         // Enable port
334                         LOG("Enable");
335                         Time_Delay(50); // 50ms delay
336                         outw( port, inw(port) | 0x0004 );
337                         // Tell USB there's a new device
338                         USB_DeviceConnected(Host->RootHub, i);
339                 }
340         }
341 }
342
343 void UHCI_InterruptHandler(int IRQ, void *Ptr)
344 {
345         tUHCI_Controller *Host = Ptr;
346         Uint16  status = inw(Host->IOBase + USBSTS);
347         Log_Debug("UHCI", "UHIC Interrupt, status = 0x%x", status);
348         
349         // Interrupt-on-completion
350         if( status & 1 )
351         {
352                 tPAddr  link;
353                  int    frame = inw(Host->IOBase + FRNUM) - 1;
354                 if(frame < 0)   frame += 1024;
355                 
356                 link = Host->FrameList[frame];
357                 Host->FrameList[frame] = 1;
358                 while( !(link & 1) )
359                 {
360                         tUHCI_TD *td = UHCI_int_GetTDFromPhys(link);
361                          int    byte_count = (td->Control&0x7FF)+1;
362                         // Handle non-page aligned destination
363                         // TODO: This will break if the destination is not in global memory
364                         if(td->_info.bCopyData)
365                         {
366                                 void *ptr = (void*)MM_MapTemp(td->BufferPointer);
367                                 memcpy(td->_info.DataPtr, ptr, byte_count);
368                                 MM_FreeTemp((tVAddr)ptr);
369                         }
370                         // Callback
371                         if(td->_info.Callback && td->_info.Callback != INVLPTR)
372                         {
373                                 td->_info.Callback(td->_info.CallbackPtr, td->_info.DataPtr, byte_count);
374                                 td->_info.Callback = NULL;
375                         }
376                         link = td->Link;
377                         if( td->_info.Callback != INVLPTR )
378                                 td->Link = 1;
379                 }
380                 
381 //              Host->LastCleanedFrame = frame;
382         }
383
384         outw(Host->IOBase + USBSTS, status);
385 }

UCC git Repository :: git.ucc.asn.au