patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / drivers / usb / host / ehci-mem.c
1 /*
2  * Copyright (c) 2001 by David Brownell
3  * 
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License as published by the
6  * Free Software Foundation; either version 2 of the License, or (at your
7  * option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software Foundation,
16  * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18
19 /* this file is part of ehci-hcd.c */
20
21 /*-------------------------------------------------------------------------*/
22
23 /*
24  * There's basically three types of memory:
25  *      - data used only by the HCD ... kmalloc is fine
26  *      - async and periodic schedules, shared by HC and HCD ... these
27  *        need to use dma_pool or dma_alloc_coherent
28  *      - driver buffers, read/written by HC ... single shot DMA mapped 
29  *
30  * There's also PCI "register" data, which is memory mapped.
31  * No memory seen by this driver is pageable.
32  */
33
34 /*-------------------------------------------------------------------------*/
35 /* 
36  * Allocator / cleanup for the per device structure
37  * Called by hcd init / removal code
38  */
39 static struct usb_hcd *ehci_hcd_alloc (void)
40 {
41         struct ehci_hcd *ehci;
42
43         ehci = (struct ehci_hcd *)
44                 kmalloc (sizeof (struct ehci_hcd), GFP_KERNEL);
45         if (ehci != 0) {
46                 memset (ehci, 0, sizeof (struct ehci_hcd));
47                 ehci->hcd.product_desc = "EHCI Host Controller";
48                 return &ehci->hcd;
49         }
50         return 0;
51 }
52
53 static void ehci_hcd_free (struct usb_hcd *hcd)
54 {
55         kfree (hcd_to_ehci (hcd));
56 }
57
58 /*-------------------------------------------------------------------------*/
59
60 /* Allocate the key transfer structures from the previously allocated pool */
61
62 static inline void ehci_qtd_init (struct ehci_qtd *qtd, dma_addr_t dma)
63 {
64         memset (qtd, 0, sizeof *qtd);
65         qtd->qtd_dma = dma;
66         qtd->hw_token = cpu_to_le32 (QTD_STS_HALT);
67         qtd->hw_next = EHCI_LIST_END;
68         qtd->hw_alt_next = EHCI_LIST_END;
69         INIT_LIST_HEAD (&qtd->qtd_list);
70 }
71
72 static struct ehci_qtd *ehci_qtd_alloc (struct ehci_hcd *ehci, int flags)
73 {
74         struct ehci_qtd         *qtd;
75         dma_addr_t              dma;
76
77         qtd = dma_pool_alloc (ehci->qtd_pool, flags, &dma);
78         if (qtd != 0) {
79                 ehci_qtd_init (qtd, dma);
80         }
81         return qtd;
82 }
83
84 static inline void ehci_qtd_free (struct ehci_hcd *ehci, struct ehci_qtd *qtd)
85 {
86         dma_pool_free (ehci->qtd_pool, qtd, qtd->qtd_dma);
87 }
88
89
90 static void qh_destroy (struct kref *kref)
91 {
92         struct ehci_qh *qh = container_of(kref, struct ehci_qh, kref);
93         struct ehci_hcd *ehci = qh->ehci;
94
95         /* clean qtds first, and know this is not linked */
96         if (!list_empty (&qh->qtd_list) || qh->qh_next.ptr) {
97                 ehci_dbg (ehci, "unused qh not empty!\n");
98                 BUG ();
99         }
100         if (qh->dummy)
101                 ehci_qtd_free (ehci, qh->dummy);
102         usb_put_dev (qh->dev);
103         dma_pool_free (ehci->qh_pool, qh, qh->qh_dma);
104 }
105
106 static struct ehci_qh *ehci_qh_alloc (struct ehci_hcd *ehci, int flags)
107 {
108         struct ehci_qh          *qh;
109         dma_addr_t              dma;
110
111         qh = (struct ehci_qh *)
112                 dma_pool_alloc (ehci->qh_pool, flags, &dma);
113         if (!qh)
114                 return qh;
115
116         memset (qh, 0, sizeof *qh);
117         kref_init(&qh->kref, qh_destroy);
118         qh->ehci = ehci;
119         qh->qh_dma = dma;
120         // INIT_LIST_HEAD (&qh->qh_list);
121         INIT_LIST_HEAD (&qh->qtd_list);
122
123         /* dummy td enables safe urb queuing */
124         qh->dummy = ehci_qtd_alloc (ehci, flags);
125         if (qh->dummy == 0) {
126                 ehci_dbg (ehci, "no dummy td\n");
127                 dma_pool_free (ehci->qh_pool, qh, qh->qh_dma);
128                 qh = 0;
129         }
130         return qh;
131 }
132
133 /* to share a qh (cpu threads, or hc) */
134 static inline struct ehci_qh *qh_get (struct ehci_qh *qh)
135 {
136         kref_get(&qh->kref);
137         return qh;
138 }
139
140 static inline void qh_put (struct ehci_qh *qh)
141 {
142         kref_put(&qh->kref);
143 }
144
145 /*-------------------------------------------------------------------------*/
146
147 /* The queue heads and transfer descriptors are managed from pools tied 
148  * to each of the "per device" structures.
149  * This is the initialisation and cleanup code.
150  */
151
152 static void ehci_mem_cleanup (struct ehci_hcd *ehci)
153 {
154         if (ehci->async)
155                 qh_put (ehci->async);
156         ehci->async = 0;
157
158         /* DMA consistent memory and pools */
159         if (ehci->qtd_pool)
160                 dma_pool_destroy (ehci->qtd_pool);
161         ehci->qtd_pool = 0;
162
163         if (ehci->qh_pool) {
164                 dma_pool_destroy (ehci->qh_pool);
165                 ehci->qh_pool = 0;
166         }
167
168         if (ehci->itd_pool)
169                 dma_pool_destroy (ehci->itd_pool);
170         ehci->itd_pool = 0;
171
172         if (ehci->sitd_pool)
173                 dma_pool_destroy (ehci->sitd_pool);
174         ehci->sitd_pool = 0;
175
176         if (ehci->periodic)
177                 dma_free_coherent (ehci->hcd.self.controller,
178                         ehci->periodic_size * sizeof (u32),
179                         ehci->periodic, ehci->periodic_dma);
180         ehci->periodic = 0;
181
182         /* shadow periodic table */
183         if (ehci->pshadow)
184                 kfree (ehci->pshadow);
185         ehci->pshadow = 0;
186 }
187
188 /* remember to add cleanup code (above) if you add anything here */
189 static int ehci_mem_init (struct ehci_hcd *ehci, int flags)
190 {
191         int i;
192
193         /* QTDs for control/bulk/intr transfers */
194         ehci->qtd_pool = dma_pool_create ("ehci_qtd", 
195                         ehci->hcd.self.controller,
196                         sizeof (struct ehci_qtd),
197                         32 /* byte alignment (for hw parts) */,
198                         4096 /* can't cross 4K */);
199         if (!ehci->qtd_pool) {
200                 goto fail;
201         }
202
203         /* QHs for control/bulk/intr transfers */
204         ehci->qh_pool = dma_pool_create ("ehci_qh", 
205                         ehci->hcd.self.controller,
206                         sizeof (struct ehci_qh),
207                         32 /* byte alignment (for hw parts) */,
208                         4096 /* can't cross 4K */);
209         if (!ehci->qh_pool) {
210                 goto fail;
211         }
212         ehci->async = ehci_qh_alloc (ehci, flags);
213         if (!ehci->async) {
214                 goto fail;
215         }
216
217         /* ITD for high speed ISO transfers */
218         ehci->itd_pool = dma_pool_create ("ehci_itd", 
219                         ehci->hcd.self.controller,
220                         sizeof (struct ehci_itd),
221                         32 /* byte alignment (for hw parts) */,
222                         4096 /* can't cross 4K */);
223         if (!ehci->itd_pool) {
224                 goto fail;
225         }
226
227         /* SITD for full/low speed split ISO transfers */
228         ehci->sitd_pool = dma_pool_create ("ehci_sitd", 
229                         ehci->hcd.self.controller,
230                         sizeof (struct ehci_sitd),
231                         32 /* byte alignment (for hw parts) */,
232                         4096 /* can't cross 4K */);
233         if (!ehci->sitd_pool) {
234                 goto fail;
235         }
236
237         /* Hardware periodic table */
238         ehci->periodic = (u32 *)
239                 dma_alloc_coherent (ehci->hcd.self.controller,
240                         ehci->periodic_size * sizeof (u32),
241                         &ehci->periodic_dma, 0);
242         if (ehci->periodic == 0) {
243                 goto fail;
244         }
245         for (i = 0; i < ehci->periodic_size; i++)
246                 ehci->periodic [i] = EHCI_LIST_END;
247
248         /* software shadow of hardware table */
249         ehci->pshadow = kmalloc (ehci->periodic_size * sizeof (void *), flags);
250         if (ehci->pshadow == 0) {
251                 goto fail;
252         }
253         memset (ehci->pshadow, 0, ehci->periodic_size * sizeof (void *));
254
255         return 0;
256
257 fail:
258         ehci_dbg (ehci, "couldn't init memory\n");
259         ehci_mem_cleanup (ehci);
260         return -ENOMEM;
261 }