ehci-mem.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  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. /* this file is part of ehci-hcd.c */
  19. /*-------------------------------------------------------------------------*/
  20. /*
  21.  * There's basically three types of memory:
  22.  * - data used only by the HCD ... kmalloc is fine
  23.  * - async and periodic schedules, shared by HC and HCD ... these
  24.  *   need to use pci_pool or pci_alloc_consistent
  25.  * - driver buffers, read/written by HC ... single shot DMA mapped 
  26.  *
  27.  * There's also PCI "register" data, which is memory mapped.
  28.  * No memory seen by this driver is pagable.
  29.  */
  30. /*-------------------------------------------------------------------------*/
  31. /* 
  32.  * Allocator / cleanup for the per device structure
  33.  * Called by hcd init / removal code
  34.  */
  35. static struct usb_hcd *ehci_hcd_alloc (void)
  36. {
  37. struct ehci_hcd *ehci;
  38. ehci = (struct ehci_hcd *)
  39. kmalloc (sizeof (struct ehci_hcd), GFP_KERNEL);
  40. if (ehci != 0) {
  41. memset (ehci, 0, sizeof (struct ehci_hcd));
  42. return &ehci->hcd;
  43. }
  44. return 0;
  45. }
  46. static void ehci_hcd_free (struct usb_hcd *hcd)
  47. {
  48. kfree (hcd_to_ehci (hcd));
  49. }
  50. /*-------------------------------------------------------------------------*/
  51. /* Allocate the key transfer structures from the previously allocated pool */
  52. static struct ehci_qtd *ehci_qtd_alloc (struct ehci_hcd *ehci, int flags)
  53. {
  54. struct ehci_qtd *qtd;
  55. dma_addr_t dma;
  56. qtd = pci_pool_alloc (ehci->qtd_pool, flags, &dma);
  57. if (qtd != 0) {
  58. memset (qtd, 0, sizeof *qtd);
  59. qtd->qtd_dma = dma;
  60. qtd->hw_next = EHCI_LIST_END;
  61. qtd->hw_alt_next = EHCI_LIST_END;
  62. INIT_LIST_HEAD (&qtd->qtd_list);
  63. }
  64. return qtd;
  65. }
  66. static inline void ehci_qtd_free (struct ehci_hcd *ehci, struct ehci_qtd *qtd)
  67. {
  68. pci_pool_free (ehci->qtd_pool, qtd, qtd->qtd_dma);
  69. }
  70. static struct ehci_qh *ehci_qh_alloc (struct ehci_hcd *ehci, int flags)
  71. {
  72. struct ehci_qh *qh;
  73. dma_addr_t dma;
  74. qh = (struct ehci_qh *)
  75. pci_pool_alloc (ehci->qh_pool, flags, &dma);
  76. if (qh) {
  77. memset (qh, 0, sizeof *qh);
  78. atomic_set (&qh->refcount, 1);
  79. qh->qh_dma = dma;
  80. // INIT_LIST_HEAD (&qh->qh_list);
  81. INIT_LIST_HEAD (&qh->qtd_list);
  82. }
  83. return qh;
  84. }
  85. /* to share a qh (cpu threads, or hc) */
  86. static inline struct ehci_qh *qh_get (/* ehci, */ struct ehci_qh *qh)
  87. {
  88. // dbg ("get %p (%d++)", qh, qh->refcount.counter);
  89. atomic_inc (&qh->refcount);
  90. return qh;
  91. }
  92. static void qh_put (struct ehci_hcd *ehci, struct ehci_qh *qh)
  93. {
  94. // dbg ("put %p (--%d)", qh, qh->refcount.counter);
  95. if (!atomic_dec_and_test (&qh->refcount))
  96. return;
  97. /* clean qtds first, and know this is not linked */
  98. if (!list_empty (&qh->qtd_list) || qh->qh_next.ptr) {
  99. dbg ("unused qh not empty!");
  100. BUG ();
  101. }
  102. pci_pool_free (ehci->qh_pool, qh, qh->qh_dma);
  103. }
  104. /*-------------------------------------------------------------------------*/
  105. /* The queue heads and transfer descriptors are managed from pools tied 
  106.  * to each of the "per device" structures.
  107.  * This is the initialisation and cleanup code.
  108.  */
  109. static void ehci_mem_cleanup (struct ehci_hcd *ehci)
  110. {
  111. /* PCI consistent memory and pools */
  112. if (ehci->qtd_pool)
  113. pci_pool_destroy (ehci->qtd_pool);
  114. ehci->qtd_pool = 0;
  115. if (ehci->qh_pool) {
  116. pci_pool_destroy (ehci->qh_pool);
  117. ehci->qh_pool = 0;
  118. }
  119. if (ehci->itd_pool)
  120. pci_pool_destroy (ehci->itd_pool);
  121. ehci->itd_pool = 0;
  122. if (ehci->sitd_pool)
  123. pci_pool_destroy (ehci->sitd_pool);
  124. ehci->sitd_pool = 0;
  125. if (ehci->periodic)
  126. pci_free_consistent (ehci->hcd.pdev,
  127. ehci->periodic_size * sizeof (u32),
  128. ehci->periodic, ehci->periodic_dma);
  129. ehci->periodic = 0;
  130. /* shadow periodic table */
  131. if (ehci->pshadow)
  132. kfree (ehci->pshadow);
  133. ehci->pshadow = 0;
  134. }
  135. /* remember to add cleanup code (above) if you add anything here */
  136. static int ehci_mem_init (struct ehci_hcd *ehci, int flags)
  137. {
  138. int i;
  139. /* QTDs for control/bulk/intr transfers */
  140. ehci->qtd_pool = pci_pool_create ("ehci_qtd", ehci->hcd.pdev,
  141. sizeof (struct ehci_qtd),
  142. 32 /* byte alignment (for hw parts) */,
  143. 4096 /* can't cross 4K */,
  144. flags);
  145. if (!ehci->qtd_pool) {
  146. dbg ("no qtd pool");
  147. ehci_mem_cleanup (ehci);
  148. return -ENOMEM;
  149. }
  150. /* QH for control/bulk/intr transfers */
  151. ehci->qh_pool = pci_pool_create ("ehci_qh", ehci->hcd.pdev,
  152. sizeof (struct ehci_qh),
  153. 32 /* byte alignment (for hw parts) */,
  154. 4096 /* can't cross 4K */,
  155. flags);
  156. if (!ehci->qh_pool) {
  157. dbg ("no qh pool");
  158. ehci_mem_cleanup (ehci);
  159. return -ENOMEM;
  160. }
  161. /* ITD for high speed ISO transfers */
  162. ehci->itd_pool = pci_pool_create ("ehci_itd", ehci->hcd.pdev,
  163. sizeof (struct ehci_itd),
  164. 32 /* byte alignment (for hw parts) */,
  165. 4096 /* can't cross 4K */,
  166. flags);
  167. if (!ehci->itd_pool) {
  168. dbg ("no itd pool");
  169. ehci_mem_cleanup (ehci);
  170. return -ENOMEM;
  171. }
  172. /* SITD for full/low speed split ISO transfers */
  173. ehci->sitd_pool = pci_pool_create ("ehci_sitd", ehci->hcd.pdev,
  174. sizeof (struct ehci_sitd),
  175. 32 /* byte alignment (for hw parts) */,
  176. 4096 /* can't cross 4K */,
  177. flags);
  178. if (!ehci->sitd_pool) {
  179. dbg ("no sitd pool");
  180. ehci_mem_cleanup (ehci);
  181. return -ENOMEM;
  182. }
  183. /* Hardware periodic table */
  184. ehci->periodic = (u32 *)
  185. pci_alloc_consistent (ehci->hcd.pdev,
  186. ehci->periodic_size * sizeof (u32),
  187. &ehci->periodic_dma);
  188. if (ehci->periodic == 0) {
  189. dbg ("no hw periodic table");
  190. ehci_mem_cleanup (ehci);
  191. return -ENOMEM;
  192. }
  193. for (i = 0; i < ehci->periodic_size; i++)
  194. ehci->periodic [i] = EHCI_LIST_END;
  195. /* software shadow of hardware table */
  196. ehci->pshadow = kmalloc (ehci->periodic_size * sizeof (void *), flags);
  197. if (ehci->pshadow == 0) {
  198. dbg ("no shadow periodic table");
  199. ehci_mem_cleanup (ehci);
  200. return -ENOMEM;
  201. }
  202. memset (ehci->pshadow, 0, ehci->periodic_size * sizeof (void *));
  203. return 0;
  204. }