Modules/USB - Callback support and Driver selection
[tpg/acess2.git] / Modules / USB / UHCI / uhci.h
1 /*
2  * AcessOS Version 1
3  * USB Stack
4  * - Universal Host Controller Interface
5  */
6 #ifndef _UHCI_H_
7 #define _UHCI_H_
8
9 // === TYPES ===
10 typedef struct sUHCI_Controller tUHCI_Controller;
11 typedef struct sUHCI_TD tUHCI_TD;
12 typedef struct sUHCI_QH tUHCI_QH;
13
14 // === STRUCTURES ===
15 struct sUHCI_Controller
16 {
17         /**
18          * \brief PCI Device ID
19          */
20         Uint16  PciId;
21         
22         /**
23          * \brief IO Base Address
24          */
25         Uint16  IOBase;
26         
27         /**
28          * \brief IRQ Number assigned to the device
29          */
30          int    IRQNum;
31         
32         /**
33          * \brief Frame list
34          * 
35          * 31:4 - Frame Pointer
36          * 3:2 - Reserved
37          * 1 - QH/TD Selector
38          * 0 - Terminate (Empty Pointer)
39          */
40         Uint32  *FrameList;
41         
42         /**
43          * \brief Physical Address of the Frame List
44          */
45         tPAddr  PhysFrameList;
46
47         tUSBHub *RootHub;
48 };
49
50 struct sUHCI_TD
51 {
52         /**
53          * \brief Next Entry in list
54          * 
55          * 31:4 - Address
56          * 3 - Reserved
57          * 2 - Depth/Breadth Select
58          * 1 - QH/TD Select
59          * 0 - Terminate (Last in List)
60          */
61         Uint32  Link;
62         
63         /**
64          * \brief Control and Status Field
65          * 
66          * 31:30 - Reserved
67          * 29 - Short Packet Detect (Input Only)
68          * 28:27 - Number of Errors Allowed
69          * 26 - Low Speed Device (Communicating with a low speed device)
70          * 25 - Isynchonious Select
71          * 24 - Interrupt on Completion (IOC)
72          * 23:16 - Status
73          *     23 - Active
74          *     22 - Stalled
75          *     21 - Data Buffer Error
76          *     20 - Babble Detected
77          *     19 - NAK Detected
78          *     18 - CRC/Timout Error
79          *     17 - Bitstuff Error
80          *     16 - Reserved
81          * 15:11 - Reserved
82          * 10:0 - Actual Length (Number of bytes transfered)
83          */
84         Uint32  Control;
85         
86         /**
87          * \brief Packet Header
88          * 
89          * 31:21 - Maximum Length (0=1, Max 0x4FF, 0x7FF=0)
90          * 20 - Reserved
91          * 19 - Data Toggle
92          * 18:15 - Endpoint
93          * 14:8 - Device Address
94          * 7:0 - PID (Packet Identifcation) - Only 96, E1, 2D allowed
95          *
96          * 0x96 = Data IN
97          * 0xE1 = Data Out
98          * 0x2D = Setup
99          */
100         Uint32  Token;
101         
102         /**
103          * \brief Pointer to the data to send
104          */
105         Uint32  BufferPointer;
106
107         struct
108         {
109                 tUSBHostCb      Callback;
110                 void    *CallbackPtr;
111                 void    *DataPtr;
112                  int    bCopyData;
113         } _info;
114 } __attribute__((aligned(16)));
115
116 struct sUHCI_QH
117 {
118         /**
119          * \brief Next Entry in list
120          * 
121          * 31:4 - Address
122          * 3:2 - Reserved
123          * 1 - QH/TD Select
124          * 0 - Terminate (Last in List)
125          */
126         Uint32  Next;
127
128         
129         /**
130          * \brief Next Entry in list
131          * 
132          * 31:4 - Address
133          * 3:2 - Reserved
134          * 1 - QH/TD Select
135          * 0 - Terminate (Last in List)
136          */
137         Uint32  Child;
138 };
139
140 // === ENUMERATIONS ===
141 enum eUHCI_IOPorts {
142         /**
143          * \brief USB Command Register
144          * 
145          * 15:8 - Reserved
146          * 7 - Maximum Packet Size selector (1: 64 bytes, 0: 32 bytes)
147          * 6 - Configure Flag (No Hardware Effect)
148          * 5 - Software Debug (Don't think it will be needed)
149          * 4 - Force Global Resume
150          * 3 - Enter Global Suspend Mode
151          * 2 - Global Reset (Resets all devices on the bus)
152          * 1 - Host Controller Reset (Reset just the controller)
153          * 0 - Run/Stop
154          */
155         USBCMD  = 0x00,
156         /**
157          * \brief USB Status Register
158          * 
159          * 15:6 - Reserved
160          * 5 - HC Halted, set to 1 when USBCMD:RS is set to 0
161          * 4 - Host Controller Process Error (Errors related to the bus)
162          * 3 - Host System Error (Errors related to the OS/PCI Bus)
163          * 2 - Resume Detect (Set if a RESUME command is sent to the Controller)
164          * 1 - USB Error Interrupt
165          * 0 - USB Interrupts (Set if a transaction with the IOC bit set is completed)
166          */
167         USBSTS  = 0x02,
168         /**
169          * \brief USB Interrupt Enable Register
170          * 
171          * 15:4 - Reserved
172          * 3 - Short Packet Interrupt Enable
173          * 2 - Interrupt on Complete (IOC) Enable
174          * 1 - Resume Interrupt Enable
175          * 0 - Timout / CRC Error Interrupt Enable
176          */
177         USBINTR = 0x04,
178         /**
179          * \brief Frame Number (Index into the Frame List)
180          * 
181          * 15:11 - Reserved
182          * 10:0 - Index (Incremented each approx 1ms)
183          */
184         FRNUM   = 0x06,
185         /**
186          * \brief Frame List Base Address
187          * 
188          * 31:12 - Pysical Address >> 12
189          * 11:0 - Reserved (Set to Zero)
190          */
191         FLBASEADD = 0x08,       // 32-bit
192         /**
193          * \brief Start-of-frame Modify Register
194          * \note 8-bits only
195          * 
196          * Sets the size of a frame
197          * Frequency = (11936+n)/12000 kHz
198          * 
199          * 7 - Reserved
200          * 6:0 -
201          */
202         SOFMOD = 0x0C,  // 8bit
203         /**
204          * \brief Port Status and Controll Register (Port 1)
205          * 
206          * 15:13 - Reserved
207          * 12 - Suspend
208          * 11:10 - Reserved
209          * 9 - Port Reset
210          * 8 - Low Speed Device Attached
211          * 5:4 - Line Status
212          * 3 - Port Enable/Disable Change - Used for detecting device removal
213          * 2 - Port Enable/Disable
214          * 1 - Connect Status Change
215          * 0 - Current Connect Status
216          */
217         PORTSC1 = 0x10,
218         /**
219          * \brief Port Status and Controll Register (Port 2)
220          * 
221          * See ::PORTSC1
222          */
223         PORTSC2 = 0x12
224 };
225
226 #endif

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