gadget.c 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754
  1. /**
  2. * gadget.c - DesignWare USB3 DRD Controller Gadget Framework Link
  3. *
  4. * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
  5. *
  6. * Authors: Felipe Balbi <balbi@ti.com>,
  7. * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. * 1. Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions, and the following disclaimer,
  14. * without modification.
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in the
  17. * documentation and/or other materials provided with the distribution.
  18. * 3. The names of the above-listed copyright holders may not be used
  19. * to endorse or promote products derived from this software without
  20. * specific prior written permission.
  21. *
  22. * ALTERNATIVELY, this software may be distributed under the terms of the
  23. * GNU General Public License ("GPL") version 2, as published by the Free
  24. * Software Foundation.
  25. *
  26. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
  27. * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  28. * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  29. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  30. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  31. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  32. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  33. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  34. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  35. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  36. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  37. */
  38. #include <linux/kernel.h>
  39. #include <linux/delay.h>
  40. #include <linux/slab.h>
  41. #include <linux/spinlock.h>
  42. #include <linux/platform_device.h>
  43. #include <linux/pm_runtime.h>
  44. #include <linux/interrupt.h>
  45. #include <linux/io.h>
  46. #include <linux/list.h>
  47. #include <linux/dma-mapping.h>
  48. #include <linux/usb/ch9.h>
  49. #include <linux/usb/gadget.h>
  50. #include "core.h"
  51. #include "gadget.h"
  52. #include "io.h"
  53. /**
  54. * dwc3_gadget_set_test_mode - Enables USB2 Test Modes
  55. * @dwc: pointer to our context structure
  56. * @mode: the mode to set (J, K SE0 NAK, Force Enable)
  57. *
  58. * Caller should take care of locking. This function will
  59. * return 0 on success or -EINVAL if wrong Test Selector
  60. * is passed
  61. */
  62. int dwc3_gadget_set_test_mode(struct dwc3 *dwc, int mode)
  63. {
  64. u32 reg;
  65. reg = dwc3_readl(dwc->regs, DWC3_DCTL);
  66. reg &= ~DWC3_DCTL_TSTCTRL_MASK;
  67. switch (mode) {
  68. case TEST_J:
  69. case TEST_K:
  70. case TEST_SE0_NAK:
  71. case TEST_PACKET:
  72. case TEST_FORCE_EN:
  73. reg |= mode << 1;
  74. break;
  75. default:
  76. return -EINVAL;
  77. }
  78. dwc3_writel(dwc->regs, DWC3_DCTL, reg);
  79. return 0;
  80. }
  81. /**
  82. * dwc3_gadget_set_link_state - Sets USB Link to a particular State
  83. * @dwc: pointer to our context structure
  84. * @state: the state to put link into
  85. *
  86. * Caller should take care of locking. This function will
  87. * return 0 on success or -ETIMEDOUT.
  88. */
  89. int dwc3_gadget_set_link_state(struct dwc3 *dwc, enum dwc3_link_state state)
  90. {
  91. int retries = 10000;
  92. u32 reg;
  93. /*
  94. * Wait until device controller is ready. Only applies to 1.94a and
  95. * later RTL.
  96. */
  97. if (dwc->revision >= DWC3_REVISION_194A) {
  98. while (--retries) {
  99. reg = dwc3_readl(dwc->regs, DWC3_DSTS);
  100. if (reg & DWC3_DSTS_DCNRD)
  101. udelay(5);
  102. else
  103. break;
  104. }
  105. if (retries <= 0)
  106. return -ETIMEDOUT;
  107. }
  108. reg = dwc3_readl(dwc->regs, DWC3_DCTL);
  109. reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK;
  110. /* set requested state */
  111. reg |= DWC3_DCTL_ULSTCHNGREQ(state);
  112. dwc3_writel(dwc->regs, DWC3_DCTL, reg);
  113. /*
  114. * The following code is racy when called from dwc3_gadget_wakeup,
  115. * and is not needed, at least on newer versions
  116. */
  117. if (dwc->revision >= DWC3_REVISION_194A)
  118. return 0;
  119. /* wait for a change in DSTS */
  120. retries = 10000;
  121. while (--retries) {
  122. reg = dwc3_readl(dwc->regs, DWC3_DSTS);
  123. if (DWC3_DSTS_USBLNKST(reg) == state)
  124. return 0;
  125. udelay(5);
  126. }
  127. dev_vdbg(dwc->dev, "link state change request timed out\n");
  128. return -ETIMEDOUT;
  129. }
  130. /**
  131. * dwc3_gadget_resize_tx_fifos - reallocate fifo spaces for current use-case
  132. * @dwc: pointer to our context structure
  133. *
  134. * This function will a best effort FIFO allocation in order
  135. * to improve FIFO usage and throughput, while still allowing
  136. * us to enable as many endpoints as possible.
  137. *
  138. * Keep in mind that this operation will be highly dependent
  139. * on the configured size for RAM1 - which contains TxFifo -,
  140. * the amount of endpoints enabled on coreConsultant tool, and
  141. * the width of the Master Bus.
  142. *
  143. * In the ideal world, we would always be able to satisfy the
  144. * following equation:
  145. *
  146. * ((512 + 2 * MDWIDTH-Bytes) + (Number of IN Endpoints - 1) * \
  147. * (3 * (1024 + MDWIDTH-Bytes) + MDWIDTH-Bytes)) / MDWIDTH-Bytes
  148. *
  149. * Unfortunately, due to many variables that's not always the case.
  150. */
  151. int dwc3_gadget_resize_tx_fifos(struct dwc3 *dwc)
  152. {
  153. int last_fifo_depth = 0;
  154. int ram1_depth;
  155. int fifo_size;
  156. int mdwidth;
  157. int num;
  158. if (!dwc->needs_fifo_resize)
  159. return 0;
  160. ram1_depth = DWC3_RAM1_DEPTH(dwc->hwparams.hwparams7);
  161. mdwidth = DWC3_MDWIDTH(dwc->hwparams.hwparams0);
  162. /* MDWIDTH is represented in bits, we need it in bytes */
  163. mdwidth >>= 3;
  164. /*
  165. * FIXME For now we will only allocate 1 wMaxPacketSize space
  166. * for each enabled endpoint, later patches will come to
  167. * improve this algorithm so that we better use the internal
  168. * FIFO space
  169. */
  170. for (num = 0; num < DWC3_ENDPOINTS_NUM; num++) {
  171. struct dwc3_ep *dep = dwc->eps[num];
  172. int fifo_number = dep->number >> 1;
  173. int mult = 1;
  174. int tmp;
  175. if (!(dep->number & 1))
  176. continue;
  177. if (!(dep->flags & DWC3_EP_ENABLED))
  178. continue;
  179. if (usb_endpoint_xfer_bulk(dep->endpoint.desc)
  180. || usb_endpoint_xfer_isoc(dep->endpoint.desc))
  181. mult = 3;
  182. /*
  183. * REVISIT: the following assumes we will always have enough
  184. * space available on the FIFO RAM for all possible use cases.
  185. * Make sure that's true somehow and change FIFO allocation
  186. * accordingly.
  187. *
  188. * If we have Bulk or Isochronous endpoints, we want
  189. * them to be able to be very, very fast. So we're giving
  190. * those endpoints a fifo_size which is enough for 3 full
  191. * packets
  192. */
  193. tmp = mult * (dep->endpoint.maxpacket + mdwidth);
  194. tmp += mdwidth;
  195. fifo_size = DIV_ROUND_UP(tmp, mdwidth);
  196. fifo_size |= (last_fifo_depth << 16);
  197. dev_vdbg(dwc->dev, "%s: Fifo Addr %04x Size %d\n",
  198. dep->name, last_fifo_depth, fifo_size & 0xffff);
  199. dwc3_writel(dwc->regs, DWC3_GTXFIFOSIZ(fifo_number),
  200. fifo_size);
  201. last_fifo_depth += (fifo_size & 0xffff);
  202. }
  203. return 0;
  204. }
  205. void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req,
  206. int status)
  207. {
  208. struct dwc3 *dwc = dep->dwc;
  209. int i;
  210. if (req->queued) {
  211. i = 0;
  212. do {
  213. dep->busy_slot++;
  214. /*
  215. * Skip LINK TRB. We can't use req->trb and check for
  216. * DWC3_TRBCTL_LINK_TRB because it points the TRB we
  217. * just completed (not the LINK TRB).
  218. */
  219. if (((dep->busy_slot & DWC3_TRB_MASK) ==
  220. DWC3_TRB_NUM- 1) &&
  221. usb_endpoint_xfer_isoc(dep->endpoint.desc))
  222. dep->busy_slot++;
  223. } while(++i < req->request.num_mapped_sgs);
  224. req->queued = false;
  225. }
  226. list_del(&req->list);
  227. req->trb = NULL;
  228. if (req->request.status == -EINPROGRESS)
  229. req->request.status = status;
  230. if (dwc->ep0_bounced && dep->number == 0)
  231. dwc->ep0_bounced = false;
  232. else
  233. usb_gadget_unmap_request(&dwc->gadget, &req->request,
  234. req->direction);
  235. dev_dbg(dwc->dev, "request %p from %s completed %d/%d ===> %d\n",
  236. req, dep->name, req->request.actual,
  237. req->request.length, status);
  238. spin_unlock(&dwc->lock);
  239. req->request.complete(&dep->endpoint, &req->request);
  240. spin_lock(&dwc->lock);
  241. }
  242. static const char *dwc3_gadget_ep_cmd_string(u8 cmd)
  243. {
  244. switch (cmd) {
  245. case DWC3_DEPCMD_DEPSTARTCFG:
  246. return "Start New Configuration";
  247. case DWC3_DEPCMD_ENDTRANSFER:
  248. return "End Transfer";
  249. case DWC3_DEPCMD_UPDATETRANSFER:
  250. return "Update Transfer";
  251. case DWC3_DEPCMD_STARTTRANSFER:
  252. return "Start Transfer";
  253. case DWC3_DEPCMD_CLEARSTALL:
  254. return "Clear Stall";
  255. case DWC3_DEPCMD_SETSTALL:
  256. return "Set Stall";
  257. case DWC3_DEPCMD_GETEPSTATE:
  258. return "Get Endpoint State";
  259. case DWC3_DEPCMD_SETTRANSFRESOURCE:
  260. return "Set Endpoint Transfer Resource";
  261. case DWC3_DEPCMD_SETEPCONFIG:
  262. return "Set Endpoint Configuration";
  263. default:
  264. return "UNKNOWN command";
  265. }
  266. }
  267. int dwc3_send_gadget_generic_command(struct dwc3 *dwc, int cmd, u32 param)
  268. {
  269. u32 timeout = 500;
  270. u32 reg;
  271. dwc3_writel(dwc->regs, DWC3_DGCMDPAR, param);
  272. dwc3_writel(dwc->regs, DWC3_DGCMD, cmd | DWC3_DGCMD_CMDACT);
  273. do {
  274. reg = dwc3_readl(dwc->regs, DWC3_DGCMD);
  275. if (!(reg & DWC3_DGCMD_CMDACT)) {
  276. dev_vdbg(dwc->dev, "Command Complete --> %d\n",
  277. DWC3_DGCMD_STATUS(reg));
  278. return 0;
  279. }
  280. /*
  281. * We can't sleep here, because it's also called from
  282. * interrupt context.
  283. */
  284. timeout--;
  285. if (!timeout)
  286. return -ETIMEDOUT;
  287. udelay(1);
  288. } while (1);
  289. }
  290. int dwc3_send_gadget_ep_cmd(struct dwc3 *dwc, unsigned ep,
  291. unsigned cmd, struct dwc3_gadget_ep_cmd_params *params)
  292. {
  293. struct dwc3_ep *dep = dwc->eps[ep];
  294. u32 timeout = 500;
  295. u32 reg;
  296. dev_vdbg(dwc->dev, "%s: cmd '%s' params %08x %08x %08x\n",
  297. dep->name,
  298. dwc3_gadget_ep_cmd_string(cmd), params->param0,
  299. params->param1, params->param2);
  300. dwc3_writel(dwc->regs, DWC3_DEPCMDPAR0(ep), params->param0);
  301. dwc3_writel(dwc->regs, DWC3_DEPCMDPAR1(ep), params->param1);
  302. dwc3_writel(dwc->regs, DWC3_DEPCMDPAR2(ep), params->param2);
  303. dwc3_writel(dwc->regs, DWC3_DEPCMD(ep), cmd | DWC3_DEPCMD_CMDACT);
  304. do {
  305. reg = dwc3_readl(dwc->regs, DWC3_DEPCMD(ep));
  306. if (!(reg & DWC3_DEPCMD_CMDACT)) {
  307. dev_vdbg(dwc->dev, "Command Complete --> %d\n",
  308. DWC3_DEPCMD_STATUS(reg));
  309. return 0;
  310. }
  311. /*
  312. * We can't sleep here, because it is also called from
  313. * interrupt context.
  314. */
  315. timeout--;
  316. if (!timeout)
  317. return -ETIMEDOUT;
  318. udelay(1);
  319. } while (1);
  320. }
  321. static dma_addr_t dwc3_trb_dma_offset(struct dwc3_ep *dep,
  322. struct dwc3_trb *trb)
  323. {
  324. u32 offset = (char *) trb - (char *) dep->trb_pool;
  325. return dep->trb_pool_dma + offset;
  326. }
  327. static int dwc3_alloc_trb_pool(struct dwc3_ep *dep)
  328. {
  329. struct dwc3 *dwc = dep->dwc;
  330. if (dep->trb_pool)
  331. return 0;
  332. if (dep->number == 0 || dep->number == 1)
  333. return 0;
  334. dep->trb_pool = dma_alloc_coherent(dwc->dev,
  335. sizeof(struct dwc3_trb) * DWC3_TRB_NUM,
  336. &dep->trb_pool_dma, GFP_KERNEL);
  337. if (!dep->trb_pool) {
  338. dev_err(dep->dwc->dev, "failed to allocate trb pool for %s\n",
  339. dep->name);
  340. return -ENOMEM;
  341. }
  342. return 0;
  343. }
  344. static void dwc3_free_trb_pool(struct dwc3_ep *dep)
  345. {
  346. struct dwc3 *dwc = dep->dwc;
  347. dma_free_coherent(dwc->dev, sizeof(struct dwc3_trb) * DWC3_TRB_NUM,
  348. dep->trb_pool, dep->trb_pool_dma);
  349. dep->trb_pool = NULL;
  350. dep->trb_pool_dma = 0;
  351. }
  352. static int dwc3_gadget_start_config(struct dwc3 *dwc, struct dwc3_ep *dep)
  353. {
  354. struct dwc3_gadget_ep_cmd_params params;
  355. u32 cmd;
  356. memset(&params, 0x00, sizeof(params));
  357. if (dep->number != 1) {
  358. cmd = DWC3_DEPCMD_DEPSTARTCFG;
  359. /* XferRscIdx == 0 for ep0 and 2 for the remaining */
  360. if (dep->number > 1) {
  361. if (dwc->start_config_issued)
  362. return 0;
  363. dwc->start_config_issued = true;
  364. cmd |= DWC3_DEPCMD_PARAM(2);
  365. }
  366. return dwc3_send_gadget_ep_cmd(dwc, 0, cmd, &params);
  367. }
  368. return 0;
  369. }
  370. static int dwc3_gadget_set_ep_config(struct dwc3 *dwc, struct dwc3_ep *dep,
  371. const struct usb_endpoint_descriptor *desc,
  372. const struct usb_ss_ep_comp_descriptor *comp_desc,
  373. bool ignore)
  374. {
  375. struct dwc3_gadget_ep_cmd_params params;
  376. memset(&params, 0x00, sizeof(params));
  377. params.param0 = DWC3_DEPCFG_EP_TYPE(usb_endpoint_type(desc))
  378. | DWC3_DEPCFG_MAX_PACKET_SIZE(usb_endpoint_maxp(desc));
  379. /* Burst size is only needed in SuperSpeed mode */
  380. if (dwc->gadget.speed == USB_SPEED_SUPER) {
  381. u32 burst = dep->endpoint.maxburst - 1;
  382. params.param0 |= DWC3_DEPCFG_BURST_SIZE(burst);
  383. }
  384. if (ignore)
  385. params.param0 |= DWC3_DEPCFG_IGN_SEQ_NUM;
  386. params.param1 = DWC3_DEPCFG_XFER_COMPLETE_EN
  387. | DWC3_DEPCFG_XFER_NOT_READY_EN;
  388. if (usb_ss_max_streams(comp_desc) && usb_endpoint_xfer_bulk(desc)) {
  389. params.param1 |= DWC3_DEPCFG_STREAM_CAPABLE
  390. | DWC3_DEPCFG_STREAM_EVENT_EN;
  391. dep->stream_capable = true;
  392. }
  393. if (usb_endpoint_xfer_isoc(desc))
  394. params.param1 |= DWC3_DEPCFG_XFER_IN_PROGRESS_EN;
  395. /*
  396. * We are doing 1:1 mapping for endpoints, meaning
  397. * Physical Endpoints 2 maps to Logical Endpoint 2 and
  398. * so on. We consider the direction bit as part of the physical
  399. * endpoint number. So USB endpoint 0x81 is 0x03.
  400. */
  401. params.param1 |= DWC3_DEPCFG_EP_NUMBER(dep->number);
  402. /*
  403. * We must use the lower 16 TX FIFOs even though
  404. * HW might have more
  405. */
  406. if (dep->direction)
  407. params.param0 |= DWC3_DEPCFG_FIFO_NUMBER(dep->number >> 1);
  408. if (desc->bInterval) {
  409. params.param1 |= DWC3_DEPCFG_BINTERVAL_M1(desc->bInterval - 1);
  410. dep->interval = 1 << (desc->bInterval - 1);
  411. }
  412. return dwc3_send_gadget_ep_cmd(dwc, dep->number,
  413. DWC3_DEPCMD_SETEPCONFIG, &params);
  414. }
  415. static int dwc3_gadget_set_xfer_resource(struct dwc3 *dwc, struct dwc3_ep *dep)
  416. {
  417. struct dwc3_gadget_ep_cmd_params params;
  418. memset(&params, 0x00, sizeof(params));
  419. params.param0 = DWC3_DEPXFERCFG_NUM_XFER_RES(1);
  420. return dwc3_send_gadget_ep_cmd(dwc, dep->number,
  421. DWC3_DEPCMD_SETTRANSFRESOURCE, &params);
  422. }
  423. /**
  424. * __dwc3_gadget_ep_enable - Initializes a HW endpoint
  425. * @dep: endpoint to be initialized
  426. * @desc: USB Endpoint Descriptor
  427. *
  428. * Caller should take care of locking
  429. */
  430. static int __dwc3_gadget_ep_enable(struct dwc3_ep *dep,
  431. const struct usb_endpoint_descriptor *desc,
  432. const struct usb_ss_ep_comp_descriptor *comp_desc,
  433. bool ignore)
  434. {
  435. struct dwc3 *dwc = dep->dwc;
  436. u32 reg;
  437. int ret = -ENOMEM;
  438. if (!(dep->flags & DWC3_EP_ENABLED)) {
  439. ret = dwc3_gadget_start_config(dwc, dep);
  440. if (ret)
  441. return ret;
  442. }
  443. ret = dwc3_gadget_set_ep_config(dwc, dep, desc, comp_desc, ignore);
  444. if (ret)
  445. return ret;
  446. if (!(dep->flags & DWC3_EP_ENABLED)) {
  447. struct dwc3_trb *trb_st_hw;
  448. struct dwc3_trb *trb_link;
  449. ret = dwc3_gadget_set_xfer_resource(dwc, dep);
  450. if (ret)
  451. return ret;
  452. dep->endpoint.desc = desc;
  453. dep->comp_desc = comp_desc;
  454. dep->type = usb_endpoint_type(desc);
  455. dep->flags |= DWC3_EP_ENABLED;
  456. reg = dwc3_readl(dwc->regs, DWC3_DALEPENA);
  457. reg |= DWC3_DALEPENA_EP(dep->number);
  458. dwc3_writel(dwc->regs, DWC3_DALEPENA, reg);
  459. if (!usb_endpoint_xfer_isoc(desc))
  460. return 0;
  461. memset(&trb_link, 0, sizeof(trb_link));
  462. /* Link TRB for ISOC. The HWO bit is never reset */
  463. trb_st_hw = &dep->trb_pool[0];
  464. trb_link = &dep->trb_pool[DWC3_TRB_NUM - 1];
  465. trb_link->bpl = lower_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw));
  466. trb_link->bph = upper_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw));
  467. trb_link->ctrl |= DWC3_TRBCTL_LINK_TRB;
  468. trb_link->ctrl |= DWC3_TRB_CTRL_HWO;
  469. }
  470. return 0;
  471. }
  472. static void dwc3_stop_active_transfer(struct dwc3 *dwc, u32 epnum);
  473. static void dwc3_remove_requests(struct dwc3 *dwc, struct dwc3_ep *dep)
  474. {
  475. struct dwc3_request *req;
  476. if (!list_empty(&dep->req_queued)) {
  477. dwc3_stop_active_transfer(dwc, dep->number);
  478. /* - giveback all requests to gadget driver */
  479. while (!list_empty(&dep->req_queued)) {
  480. req = next_request(&dep->req_queued);
  481. dwc3_gadget_giveback(dep, req, -ESHUTDOWN);
  482. }
  483. }
  484. while (!list_empty(&dep->request_list)) {
  485. req = next_request(&dep->request_list);
  486. dwc3_gadget_giveback(dep, req, -ESHUTDOWN);
  487. }
  488. }
  489. /**
  490. * __dwc3_gadget_ep_disable - Disables a HW endpoint
  491. * @dep: the endpoint to disable
  492. *
  493. * This function also removes requests which are currently processed ny the
  494. * hardware and those which are not yet scheduled.
  495. * Caller should take care of locking.
  496. */
  497. static int __dwc3_gadget_ep_disable(struct dwc3_ep *dep)
  498. {
  499. struct dwc3 *dwc = dep->dwc;
  500. u32 reg;
  501. dwc3_remove_requests(dwc, dep);
  502. reg = dwc3_readl(dwc->regs, DWC3_DALEPENA);
  503. reg &= ~DWC3_DALEPENA_EP(dep->number);
  504. dwc3_writel(dwc->regs, DWC3_DALEPENA, reg);
  505. dep->stream_capable = false;
  506. dep->endpoint.desc = NULL;
  507. dep->comp_desc = NULL;
  508. dep->type = 0;
  509. dep->flags = 0;
  510. return 0;
  511. }
  512. /* -------------------------------------------------------------------------- */
  513. static int dwc3_gadget_ep0_enable(struct usb_ep *ep,
  514. const struct usb_endpoint_descriptor *desc)
  515. {
  516. return -EINVAL;
  517. }
  518. static int dwc3_gadget_ep0_disable(struct usb_ep *ep)
  519. {
  520. return -EINVAL;
  521. }
  522. /* -------------------------------------------------------------------------- */
  523. static int dwc3_gadget_ep_enable(struct usb_ep *ep,
  524. const struct usb_endpoint_descriptor *desc)
  525. {
  526. struct dwc3_ep *dep;
  527. struct dwc3 *dwc;
  528. unsigned long flags;
  529. int ret;
  530. if (!ep || !desc || desc->bDescriptorType != USB_DT_ENDPOINT) {
  531. pr_debug("dwc3: invalid parameters\n");
  532. return -EINVAL;
  533. }
  534. if (!desc->wMaxPacketSize) {
  535. pr_debug("dwc3: missing wMaxPacketSize\n");
  536. return -EINVAL;
  537. }
  538. dep = to_dwc3_ep(ep);
  539. dwc = dep->dwc;
  540. if (dep->flags & DWC3_EP_ENABLED) {
  541. dev_WARN_ONCE(dwc->dev, true, "%s is already enabled\n",
  542. dep->name);
  543. return 0;
  544. }
  545. switch (usb_endpoint_type(desc)) {
  546. case USB_ENDPOINT_XFER_CONTROL:
  547. strlcat(dep->name, "-control", sizeof(dep->name));
  548. break;
  549. case USB_ENDPOINT_XFER_ISOC:
  550. strlcat(dep->name, "-isoc", sizeof(dep->name));
  551. break;
  552. case USB_ENDPOINT_XFER_BULK:
  553. strlcat(dep->name, "-bulk", sizeof(dep->name));
  554. break;
  555. case USB_ENDPOINT_XFER_INT:
  556. strlcat(dep->name, "-int", sizeof(dep->name));
  557. break;
  558. default:
  559. dev_err(dwc->dev, "invalid endpoint transfer type\n");
  560. }
  561. dev_vdbg(dwc->dev, "Enabling %s\n", dep->name);
  562. spin_lock_irqsave(&dwc->lock, flags);
  563. ret = __dwc3_gadget_ep_enable(dep, desc, ep->comp_desc, false);
  564. spin_unlock_irqrestore(&dwc->lock, flags);
  565. return ret;
  566. }
  567. static int dwc3_gadget_ep_disable(struct usb_ep *ep)
  568. {
  569. struct dwc3_ep *dep;
  570. struct dwc3 *dwc;
  571. unsigned long flags;
  572. int ret;
  573. if (!ep) {
  574. pr_debug("dwc3: invalid parameters\n");
  575. return -EINVAL;
  576. }
  577. dep = to_dwc3_ep(ep);
  578. dwc = dep->dwc;
  579. if (!(dep->flags & DWC3_EP_ENABLED)) {
  580. dev_WARN_ONCE(dwc->dev, true, "%s is already disabled\n",
  581. dep->name);
  582. return 0;
  583. }
  584. snprintf(dep->name, sizeof(dep->name), "ep%d%s",
  585. dep->number >> 1,
  586. (dep->number & 1) ? "in" : "out");
  587. spin_lock_irqsave(&dwc->lock, flags);
  588. ret = __dwc3_gadget_ep_disable(dep);
  589. spin_unlock_irqrestore(&dwc->lock, flags);
  590. return ret;
  591. }
  592. static struct usb_request *dwc3_gadget_ep_alloc_request(struct usb_ep *ep,
  593. gfp_t gfp_flags)
  594. {
  595. struct dwc3_request *req;
  596. struct dwc3_ep *dep = to_dwc3_ep(ep);
  597. struct dwc3 *dwc = dep->dwc;
  598. req = kzalloc(sizeof(*req), gfp_flags);
  599. if (!req) {
  600. dev_err(dwc->dev, "not enough memory\n");
  601. return NULL;
  602. }
  603. req->epnum = dep->number;
  604. req->dep = dep;
  605. return &req->request;
  606. }
  607. static void dwc3_gadget_ep_free_request(struct usb_ep *ep,
  608. struct usb_request *request)
  609. {
  610. struct dwc3_request *req = to_dwc3_request(request);
  611. kfree(req);
  612. }
  613. /**
  614. * dwc3_prepare_one_trb - setup one TRB from one request
  615. * @dep: endpoint for which this request is prepared
  616. * @req: dwc3_request pointer
  617. */
  618. static void dwc3_prepare_one_trb(struct dwc3_ep *dep,
  619. struct dwc3_request *req, dma_addr_t dma,
  620. unsigned length, unsigned last, unsigned chain, unsigned node)
  621. {
  622. struct dwc3 *dwc = dep->dwc;
  623. struct dwc3_trb *trb;
  624. dev_vdbg(dwc->dev, "%s: req %p dma %08llx length %d%s%s\n",
  625. dep->name, req, (unsigned long long) dma,
  626. length, last ? " last" : "",
  627. chain ? " chain" : "");
  628. /* Skip the LINK-TRB on ISOC */
  629. if (((dep->free_slot & DWC3_TRB_MASK) == DWC3_TRB_NUM - 1) &&
  630. usb_endpoint_xfer_isoc(dep->endpoint.desc))
  631. dep->free_slot++;
  632. trb = &dep->trb_pool[dep->free_slot & DWC3_TRB_MASK];
  633. if (!req->trb) {
  634. dwc3_gadget_move_request_queued(req);
  635. req->trb = trb;
  636. req->trb_dma = dwc3_trb_dma_offset(dep, trb);
  637. req->start_slot = dep->free_slot & DWC3_TRB_MASK;
  638. }
  639. dep->free_slot++;
  640. trb->size = DWC3_TRB_SIZE_LENGTH(length);
  641. trb->bpl = lower_32_bits(dma);
  642. trb->bph = upper_32_bits(dma);
  643. switch (usb_endpoint_type(dep->endpoint.desc)) {
  644. case USB_ENDPOINT_XFER_CONTROL:
  645. trb->ctrl = DWC3_TRBCTL_CONTROL_SETUP;
  646. break;
  647. case USB_ENDPOINT_XFER_ISOC:
  648. if (!node)
  649. trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS_FIRST;
  650. else
  651. trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS;
  652. if (!req->request.no_interrupt && !chain)
  653. trb->ctrl |= DWC3_TRB_CTRL_IOC;
  654. break;
  655. case USB_ENDPOINT_XFER_BULK:
  656. case USB_ENDPOINT_XFER_INT:
  657. trb->ctrl = DWC3_TRBCTL_NORMAL;
  658. break;
  659. default:
  660. /*
  661. * This is only possible with faulty memory because we
  662. * checked it already :)
  663. */
  664. BUG();
  665. }
  666. if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
  667. trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI;
  668. trb->ctrl |= DWC3_TRB_CTRL_CSP;
  669. } else if (last) {
  670. trb->ctrl |= DWC3_TRB_CTRL_LST;
  671. }
  672. if (chain)
  673. trb->ctrl |= DWC3_TRB_CTRL_CHN;
  674. if (usb_endpoint_xfer_bulk(dep->endpoint.desc) && dep->stream_capable)
  675. trb->ctrl |= DWC3_TRB_CTRL_SID_SOFN(req->request.stream_id);
  676. trb->ctrl |= DWC3_TRB_CTRL_HWO;
  677. }
  678. /*
  679. * dwc3_prepare_trbs - setup TRBs from requests
  680. * @dep: endpoint for which requests are being prepared
  681. * @starting: true if the endpoint is idle and no requests are queued.
  682. *
  683. * The function goes through the requests list and sets up TRBs for the
  684. * transfers. The function returns once there are no more TRBs available or
  685. * it runs out of requests.
  686. */
  687. static void dwc3_prepare_trbs(struct dwc3_ep *dep, bool starting)
  688. {
  689. struct dwc3_request *req, *n;
  690. u32 trbs_left;
  691. u32 max;
  692. unsigned int last_one = 0;
  693. BUILD_BUG_ON_NOT_POWER_OF_2(DWC3_TRB_NUM);
  694. /* the first request must not be queued */
  695. trbs_left = (dep->busy_slot - dep->free_slot) & DWC3_TRB_MASK;
  696. /* Can't wrap around on a non-isoc EP since there's no link TRB */
  697. if (!usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
  698. max = DWC3_TRB_NUM - (dep->free_slot & DWC3_TRB_MASK);
  699. if (trbs_left > max)
  700. trbs_left = max;
  701. }
  702. /*
  703. * If busy & slot are equal than it is either full or empty. If we are
  704. * starting to process requests then we are empty. Otherwise we are
  705. * full and don't do anything
  706. */
  707. if (!trbs_left) {
  708. if (!starting)
  709. return;
  710. trbs_left = DWC3_TRB_NUM;
  711. /*
  712. * In case we start from scratch, we queue the ISOC requests
  713. * starting from slot 1. This is done because we use ring
  714. * buffer and have no LST bit to stop us. Instead, we place
  715. * IOC bit every TRB_NUM/4. We try to avoid having an interrupt
  716. * after the first request so we start at slot 1 and have
  717. * 7 requests proceed before we hit the first IOC.
  718. * Other transfer types don't use the ring buffer and are
  719. * processed from the first TRB until the last one. Since we
  720. * don't wrap around we have to start at the beginning.
  721. */
  722. if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
  723. dep->busy_slot = 1;
  724. dep->free_slot = 1;
  725. } else {
  726. dep->busy_slot = 0;
  727. dep->free_slot = 0;
  728. }
  729. }
  730. /* The last TRB is a link TRB, not used for xfer */
  731. if ((trbs_left <= 1) && usb_endpoint_xfer_isoc(dep->endpoint.desc))
  732. return;
  733. list_for_each_entry_safe(req, n, &dep->request_list, list) {
  734. unsigned length;
  735. dma_addr_t dma;
  736. last_one = false;
  737. if (req->request.num_mapped_sgs > 0) {
  738. struct usb_request *request = &req->request;
  739. struct scatterlist *sg = request->sg;
  740. struct scatterlist *s;
  741. int i;
  742. for_each_sg(sg, s, request->num_mapped_sgs, i) {
  743. unsigned chain = true;
  744. length = sg_dma_len(s);
  745. dma = sg_dma_address(s);
  746. if (i == (request->num_mapped_sgs - 1) ||
  747. sg_is_last(s)) {
  748. if (list_is_last(&req->list,
  749. &dep->request_list))
  750. last_one = true;
  751. chain = false;
  752. }
  753. trbs_left--;
  754. if (!trbs_left)
  755. last_one = true;
  756. if (last_one)
  757. chain = false;
  758. dwc3_prepare_one_trb(dep, req, dma, length,
  759. last_one, chain, i);
  760. if (last_one)
  761. break;
  762. }
  763. } else {
  764. dma = req->request.dma;
  765. length = req->request.length;
  766. trbs_left--;
  767. if (!trbs_left)
  768. last_one = 1;
  769. /* Is this the last request? */
  770. if (list_is_last(&req->list, &dep->request_list))
  771. last_one = 1;
  772. dwc3_prepare_one_trb(dep, req, dma, length,
  773. last_one, false, 0);
  774. if (last_one)
  775. break;
  776. }
  777. }
  778. }
  779. static int __dwc3_gadget_kick_transfer(struct dwc3_ep *dep, u16 cmd_param,
  780. int start_new)
  781. {
  782. struct dwc3_gadget_ep_cmd_params params;
  783. struct dwc3_request *req;
  784. struct dwc3 *dwc = dep->dwc;
  785. int ret;
  786. u32 cmd;
  787. if (start_new && (dep->flags & DWC3_EP_BUSY)) {
  788. dev_vdbg(dwc->dev, "%s: endpoint busy\n", dep->name);
  789. return -EBUSY;
  790. }
  791. dep->flags &= ~DWC3_EP_PENDING_REQUEST;
  792. /*
  793. * If we are getting here after a short-out-packet we don't enqueue any
  794. * new requests as we try to set the IOC bit only on the last request.
  795. */
  796. if (start_new) {
  797. if (list_empty(&dep->req_queued))
  798. dwc3_prepare_trbs(dep, start_new);
  799. /* req points to the first request which will be sent */
  800. req = next_request(&dep->req_queued);
  801. } else {
  802. dwc3_prepare_trbs(dep, start_new);
  803. /*
  804. * req points to the first request where HWO changed from 0 to 1
  805. */
  806. req = next_request(&dep->req_queued);
  807. }
  808. if (!req) {
  809. dep->flags |= DWC3_EP_PENDING_REQUEST;
  810. return 0;
  811. }
  812. memset(&params, 0, sizeof(params));
  813. if (start_new) {
  814. params.param0 = upper_32_bits(req->trb_dma);
  815. params.param1 = lower_32_bits(req->trb_dma);
  816. cmd = DWC3_DEPCMD_STARTTRANSFER;
  817. } else {
  818. cmd = DWC3_DEPCMD_UPDATETRANSFER;
  819. }
  820. cmd |= DWC3_DEPCMD_PARAM(cmd_param);
  821. ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, cmd, &params);
  822. if (ret < 0) {
  823. dev_dbg(dwc->dev, "failed to send STARTTRANSFER command\n");
  824. /*
  825. * FIXME we need to iterate over the list of requests
  826. * here and stop, unmap, free and del each of the linked
  827. * requests instead of what we do now.
  828. */
  829. usb_gadget_unmap_request(&dwc->gadget, &req->request,
  830. req->direction);
  831. list_del(&req->list);
  832. return ret;
  833. }
  834. dep->flags |= DWC3_EP_BUSY;
  835. if (start_new) {
  836. dep->resource_index = dwc3_gadget_ep_get_transfer_index(dwc,
  837. dep->number);
  838. WARN_ON_ONCE(!dep->resource_index);
  839. }
  840. return 0;
  841. }
  842. static void __dwc3_gadget_start_isoc(struct dwc3 *dwc,
  843. struct dwc3_ep *dep, u32 cur_uf)
  844. {
  845. u32 uf;
  846. if (list_empty(&dep->request_list)) {
  847. dev_vdbg(dwc->dev, "ISOC ep %s run out for requests.\n",
  848. dep->name);
  849. dep->flags |= DWC3_EP_PENDING_REQUEST;
  850. return;
  851. }
  852. /* 4 micro frames in the future */
  853. uf = cur_uf + dep->interval * 4;
  854. __dwc3_gadget_kick_transfer(dep, uf, 1);
  855. }
  856. static void dwc3_gadget_start_isoc(struct dwc3 *dwc,
  857. struct dwc3_ep *dep, const struct dwc3_event_depevt *event)
  858. {
  859. u32 cur_uf, mask;
  860. mask = ~(dep->interval - 1);
  861. cur_uf = event->parameters & mask;
  862. __dwc3_gadget_start_isoc(dwc, dep, cur_uf);
  863. }
  864. static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req)
  865. {
  866. struct dwc3 *dwc = dep->dwc;
  867. int ret;
  868. req->request.actual = 0;
  869. req->request.status = -EINPROGRESS;
  870. req->direction = dep->direction;
  871. req->epnum = dep->number;
  872. /*
  873. * We only add to our list of requests now and
  874. * start consuming the list once we get XferNotReady
  875. * IRQ.
  876. *
  877. * That way, we avoid doing anything that we don't need
  878. * to do now and defer it until the point we receive a
  879. * particular token from the Host side.
  880. *
  881. * This will also avoid Host cancelling URBs due to too
  882. * many NAKs.
  883. */
  884. ret = usb_gadget_map_request(&dwc->gadget, &req->request,
  885. dep->direction);
  886. if (ret)
  887. return ret;
  888. list_add_tail(&req->list, &dep->request_list);
  889. /*
  890. * There are a few special cases:
  891. *
  892. * 1. XferNotReady with empty list of requests. We need to kick the
  893. * transfer here in that situation, otherwise we will be NAKing
  894. * forever. If we get XferNotReady before gadget driver has a
  895. * chance to queue a request, we will ACK the IRQ but won't be
  896. * able to receive the data until the next request is queued.
  897. * The following code is handling exactly that.
  898. *
  899. */
  900. if (dep->flags & DWC3_EP_PENDING_REQUEST) {
  901. /*
  902. * If xfernotready is already elapsed and it is a case
  903. * of isoc transfer, then issue END TRANSFER, so that
  904. * you can receive xfernotready again and can have
  905. * notion of current microframe.
  906. */
  907. if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
  908. if (list_empty(&dep->req_queued)) {
  909. dwc3_stop_active_transfer(dwc, dep->number);
  910. dep->flags = DWC3_EP_ENABLED;
  911. }
  912. return 0;
  913. }
  914. ret = __dwc3_gadget_kick_transfer(dep, 0, true);
  915. if (ret && ret != -EBUSY)
  916. dev_dbg(dwc->dev, "%s: failed to kick transfers\n",
  917. dep->name);
  918. return ret;
  919. }
  920. /*
  921. * 2. XferInProgress on Isoc EP with an active transfer. We need to
  922. * kick the transfer here after queuing a request, otherwise the
  923. * core may not see the modified TRB(s).
  924. */
  925. if (usb_endpoint_xfer_isoc(dep->endpoint.desc) &&
  926. (dep->flags & DWC3_EP_BUSY) &&
  927. !(dep->flags & DWC3_EP_MISSED_ISOC)) {
  928. WARN_ON_ONCE(!dep->resource_index);
  929. ret = __dwc3_gadget_kick_transfer(dep, dep->resource_index,
  930. false);
  931. if (ret && ret != -EBUSY)
  932. dev_dbg(dwc->dev, "%s: failed to kick transfers\n",
  933. dep->name);
  934. return ret;
  935. }
  936. return 0;
  937. }
  938. static int dwc3_gadget_ep_queue(struct usb_ep *ep, struct usb_request *request,
  939. gfp_t gfp_flags)
  940. {
  941. struct dwc3_request *req = to_dwc3_request(request);
  942. struct dwc3_ep *dep = to_dwc3_ep(ep);
  943. struct dwc3 *dwc = dep->dwc;
  944. unsigned long flags;
  945. int ret;
  946. if (!dep->endpoint.desc) {
  947. dev_dbg(dwc->dev, "trying to queue request %p to disabled %s\n",
  948. request, ep->name);
  949. return -ESHUTDOWN;
  950. }
  951. dev_vdbg(dwc->dev, "queing request %p to %s length %d\n",
  952. request, ep->name, request->length);
  953. spin_lock_irqsave(&dwc->lock, flags);
  954. ret = __dwc3_gadget_ep_queue(dep, req);
  955. spin_unlock_irqrestore(&dwc->lock, flags);
  956. return ret;
  957. }
  958. static int dwc3_gadget_ep_dequeue(struct usb_ep *ep,
  959. struct usb_request *request)
  960. {
  961. struct dwc3_request *req = to_dwc3_request(request);
  962. struct dwc3_request *r = NULL;
  963. struct dwc3_ep *dep = to_dwc3_ep(ep);
  964. struct dwc3 *dwc = dep->dwc;
  965. unsigned long flags;
  966. int ret = 0;
  967. spin_lock_irqsave(&dwc->lock, flags);
  968. list_for_each_entry(r, &dep->request_list, list) {
  969. if (r == req)
  970. break;
  971. }
  972. if (r != req) {
  973. list_for_each_entry(r, &dep->req_queued, list) {
  974. if (r == req)
  975. break;
  976. }
  977. if (r == req) {
  978. /* wait until it is processed */
  979. dwc3_stop_active_transfer(dwc, dep->number);
  980. goto out1;
  981. }
  982. dev_err(dwc->dev, "request %p was not queued to %s\n",
  983. request, ep->name);
  984. ret = -EINVAL;
  985. goto out0;
  986. }
  987. out1:
  988. /* giveback the request */
  989. dwc3_gadget_giveback(dep, req, -ECONNRESET);
  990. out0:
  991. spin_unlock_irqrestore(&dwc->lock, flags);
  992. return ret;
  993. }
  994. int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value)
  995. {
  996. struct dwc3_gadget_ep_cmd_params params;
  997. struct dwc3 *dwc = dep->dwc;
  998. int ret;
  999. memset(&params, 0x00, sizeof(params));
  1000. if (value) {
  1001. ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
  1002. DWC3_DEPCMD_SETSTALL, &params);
  1003. if (ret)
  1004. dev_err(dwc->dev, "failed to %s STALL on %s\n",
  1005. value ? "set" : "clear",
  1006. dep->name);
  1007. else
  1008. dep->flags |= DWC3_EP_STALL;
  1009. } else {
  1010. if (dep->flags & DWC3_EP_WEDGE)
  1011. return 0;
  1012. ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
  1013. DWC3_DEPCMD_CLEARSTALL, &params);
  1014. if (ret)
  1015. dev_err(dwc->dev, "failed to %s STALL on %s\n",
  1016. value ? "set" : "clear",
  1017. dep->name);
  1018. else
  1019. dep->flags &= ~DWC3_EP_STALL;
  1020. }
  1021. return ret;
  1022. }
  1023. static int dwc3_gadget_ep_set_halt(struct usb_ep *ep, int value)
  1024. {
  1025. struct dwc3_ep *dep = to_dwc3_ep(ep);
  1026. struct dwc3 *dwc = dep->dwc;
  1027. unsigned long flags;
  1028. int ret;
  1029. spin_lock_irqsave(&dwc->lock, flags);
  1030. if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
  1031. dev_err(dwc->dev, "%s is of Isochronous type\n", dep->name);
  1032. ret = -EINVAL;
  1033. goto out;
  1034. }
  1035. ret = __dwc3_gadget_ep_set_halt(dep, value);
  1036. out:
  1037. spin_unlock_irqrestore(&dwc->lock, flags);
  1038. return ret;
  1039. }
  1040. static int dwc3_gadget_ep_set_wedge(struct usb_ep *ep)
  1041. {
  1042. struct dwc3_ep *dep = to_dwc3_ep(ep);
  1043. struct dwc3 *dwc = dep->dwc;
  1044. unsigned long flags;
  1045. spin_lock_irqsave(&dwc->lock, flags);
  1046. dep->flags |= DWC3_EP_WEDGE;
  1047. spin_unlock_irqrestore(&dwc->lock, flags);
  1048. if (dep->number == 0 || dep->number == 1)
  1049. return dwc3_gadget_ep0_set_halt(ep, 1);
  1050. else
  1051. return dwc3_gadget_ep_set_halt(ep, 1);
  1052. }
  1053. /* -------------------------------------------------------------------------- */
  1054. static struct usb_endpoint_descriptor dwc3_gadget_ep0_desc = {
  1055. .bLength = USB_DT_ENDPOINT_SIZE,
  1056. .bDescriptorType = USB_DT_ENDPOINT,
  1057. .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
  1058. };
  1059. static const struct usb_ep_ops dwc3_gadget_ep0_ops = {
  1060. .enable = dwc3_gadget_ep0_enable,
  1061. .disable = dwc3_gadget_ep0_disable,
  1062. .alloc_request = dwc3_gadget_ep_alloc_request,
  1063. .free_request = dwc3_gadget_ep_free_request,
  1064. .queue = dwc3_gadget_ep0_queue,
  1065. .dequeue = dwc3_gadget_ep_dequeue,
  1066. .set_halt = dwc3_gadget_ep0_set_halt,
  1067. .set_wedge = dwc3_gadget_ep_set_wedge,
  1068. };
  1069. static const struct usb_ep_ops dwc3_gadget_ep_ops = {
  1070. .enable = dwc3_gadget_ep_enable,
  1071. .disable = dwc3_gadget_ep_disable,
  1072. .alloc_request = dwc3_gadget_ep_alloc_request,
  1073. .free_request = dwc3_gadget_ep_free_request,
  1074. .queue = dwc3_gadget_ep_queue,
  1075. .dequeue = dwc3_gadget_ep_dequeue,
  1076. .set_halt = dwc3_gadget_ep_set_halt,
  1077. .set_wedge = dwc3_gadget_ep_set_wedge,
  1078. };
  1079. /* -------------------------------------------------------------------------- */
  1080. static int dwc3_gadget_get_frame(struct usb_gadget *g)
  1081. {
  1082. struct dwc3 *dwc = gadget_to_dwc(g);
  1083. u32 reg;
  1084. reg = dwc3_readl(dwc->regs, DWC3_DSTS);
  1085. return DWC3_DSTS_SOFFN(reg);
  1086. }
  1087. static int dwc3_gadget_wakeup(struct usb_gadget *g)
  1088. {
  1089. struct dwc3 *dwc = gadget_to_dwc(g);
  1090. unsigned long timeout;
  1091. unsigned long flags;
  1092. u32 reg;
  1093. int ret = 0;
  1094. u8 link_state;
  1095. u8 speed;
  1096. spin_lock_irqsave(&dwc->lock, flags);
  1097. /*
  1098. * According to the Databook Remote wakeup request should
  1099. * be issued only when the device is in early suspend state.
  1100. *
  1101. * We can check that via USB Link State bits in DSTS register.
  1102. */
  1103. reg = dwc3_readl(dwc->regs, DWC3_DSTS);
  1104. speed = reg & DWC3_DSTS_CONNECTSPD;
  1105. if (speed == DWC3_DSTS_SUPERSPEED) {
  1106. dev_dbg(dwc->dev, "no wakeup on SuperSpeed\n");
  1107. ret = -EINVAL;
  1108. goto out;
  1109. }
  1110. link_state = DWC3_DSTS_USBLNKST(reg);
  1111. switch (link_state) {
  1112. case DWC3_LINK_STATE_RX_DET: /* in HS, means Early Suspend */
  1113. case DWC3_LINK_STATE_U3: /* in HS, means SUSPEND */
  1114. break;
  1115. default:
  1116. dev_dbg(dwc->dev, "can't wakeup from link state %d\n",
  1117. link_state);
  1118. ret = -EINVAL;
  1119. goto out;
  1120. }
  1121. ret = dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RECOV);
  1122. if (ret < 0) {
  1123. dev_err(dwc->dev, "failed to put link in Recovery\n");
  1124. goto out;
  1125. }
  1126. /* Recent versions do this automatically */
  1127. if (dwc->revision < DWC3_REVISION_194A) {
  1128. /* write zeroes to Link Change Request */
  1129. reg = dwc3_readl(dwc->regs, DWC3_DCTL);
  1130. reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK;
  1131. dwc3_writel(dwc->regs, DWC3_DCTL, reg);
  1132. }
  1133. /* poll until Link State changes to ON */
  1134. timeout = jiffies + msecs_to_jiffies(100);
  1135. while (!time_after(jiffies, timeout)) {
  1136. reg = dwc3_readl(dwc->regs, DWC3_DSTS);
  1137. /* in HS, means ON */
  1138. if (DWC3_DSTS_USBLNKST(reg) == DWC3_LINK_STATE_U0)
  1139. break;
  1140. }
  1141. if (DWC3_DSTS_USBLNKST(reg) != DWC3_LINK_STATE_U0) {
  1142. dev_err(dwc->dev, "failed to send remote wakeup\n");
  1143. ret = -EINVAL;
  1144. }
  1145. out:
  1146. spin_unlock_irqrestore(&dwc->lock, flags);
  1147. return ret;
  1148. }
  1149. static int dwc3_gadget_set_selfpowered(struct usb_gadget *g,
  1150. int is_selfpowered)
  1151. {
  1152. struct dwc3 *dwc = gadget_to_dwc(g);
  1153. unsigned long flags;
  1154. spin_lock_irqsave(&dwc->lock, flags);
  1155. dwc->is_selfpowered = !!is_selfpowered;
  1156. spin_unlock_irqrestore(&dwc->lock, flags);
  1157. return 0;
  1158. }
  1159. static int dwc3_gadget_run_stop(struct dwc3 *dwc, int is_on)
  1160. {
  1161. u32 reg;
  1162. u32 timeout = 500;
  1163. reg = dwc3_readl(dwc->regs, DWC3_DCTL);
  1164. if (is_on) {
  1165. if (dwc->revision <= DWC3_REVISION_187A) {
  1166. reg &= ~DWC3_DCTL_TRGTULST_MASK;
  1167. reg |= DWC3_DCTL_TRGTULST_RX_DET;
  1168. }
  1169. if (dwc->revision >= DWC3_REVISION_194A)
  1170. reg &= ~DWC3_DCTL_KEEP_CONNECT;
  1171. reg |= DWC3_DCTL_RUN_STOP;
  1172. dwc->pullups_connected = true;
  1173. } else {
  1174. reg &= ~DWC3_DCTL_RUN_STOP;
  1175. dwc->pullups_connected = false;
  1176. }
  1177. dwc3_writel(dwc->regs, DWC3_DCTL, reg);
  1178. do {
  1179. reg = dwc3_readl(dwc->regs, DWC3_DSTS);
  1180. if (is_on) {
  1181. if (!(reg & DWC3_DSTS_DEVCTRLHLT))
  1182. break;
  1183. } else {
  1184. if (reg & DWC3_DSTS_DEVCTRLHLT)
  1185. break;
  1186. }
  1187. timeout--;
  1188. if (!timeout)
  1189. return -ETIMEDOUT;
  1190. udelay(1);
  1191. } while (1);
  1192. dev_vdbg(dwc->dev, "gadget %s data soft-%s\n",
  1193. dwc->gadget_driver
  1194. ? dwc->gadget_driver->function : "no-function",
  1195. is_on ? "connect" : "disconnect");
  1196. return 0;
  1197. }
  1198. static int dwc3_gadget_pullup(struct usb_gadget *g, int is_on)
  1199. {
  1200. struct dwc3 *dwc = gadget_to_dwc(g);
  1201. unsigned long flags;
  1202. int ret;
  1203. is_on = !!is_on;
  1204. spin_lock_irqsave(&dwc->lock, flags);
  1205. ret = dwc3_gadget_run_stop(dwc, is_on);
  1206. spin_unlock_irqrestore(&dwc->lock, flags);
  1207. return ret;
  1208. }
  1209. static void dwc3_gadget_enable_irq(struct dwc3 *dwc)
  1210. {
  1211. u32 reg;
  1212. /* Enable all but Start and End of Frame IRQs */
  1213. reg = (DWC3_DEVTEN_VNDRDEVTSTRCVEDEN |
  1214. DWC3_DEVTEN_EVNTOVERFLOWEN |
  1215. DWC3_DEVTEN_CMDCMPLTEN |
  1216. DWC3_DEVTEN_ERRTICERREN |
  1217. DWC3_DEVTEN_WKUPEVTEN |
  1218. DWC3_DEVTEN_ULSTCNGEN |
  1219. DWC3_DEVTEN_CONNECTDONEEN |
  1220. DWC3_DEVTEN_USBRSTEN |
  1221. DWC3_DEVTEN_DISCONNEVTEN);
  1222. dwc3_writel(dwc->regs, DWC3_DEVTEN, reg);
  1223. }
  1224. static void dwc3_gadget_disable_irq(struct dwc3 *dwc)
  1225. {
  1226. /* mask all interrupts */
  1227. dwc3_writel(dwc->regs, DWC3_DEVTEN, 0x00);
  1228. }
  1229. static irqreturn_t dwc3_interrupt(int irq, void *_dwc);
  1230. static irqreturn_t dwc3_thread_interrupt(int irq, void *_dwc);
  1231. static int dwc3_gadget_start(struct usb_gadget *g,
  1232. struct usb_gadget_driver *driver)
  1233. {
  1234. struct dwc3 *dwc = gadget_to_dwc(g);
  1235. struct dwc3_ep *dep;
  1236. unsigned long flags;
  1237. int ret = 0;
  1238. int irq;
  1239. u32 reg;
  1240. spin_lock_irqsave(&dwc->lock, flags);
  1241. if (dwc->gadget_driver) {
  1242. dev_err(dwc->dev, "%s is already bound to %s\n",
  1243. dwc->gadget.name,
  1244. dwc->gadget_driver->driver.name);
  1245. ret = -EBUSY;
  1246. goto err0;
  1247. }
  1248. dwc->gadget_driver = driver;
  1249. reg = dwc3_readl(dwc->regs, DWC3_DCFG);
  1250. reg &= ~(DWC3_DCFG_SPEED_MASK);
  1251. /**
  1252. * WORKAROUND: DWC3 revision < 2.20a have an issue
  1253. * which would cause metastability state on Run/Stop
  1254. * bit if we try to force the IP to USB2-only mode.
  1255. *
  1256. * Because of that, we cannot configure the IP to any
  1257. * speed other than the SuperSpeed
  1258. *
  1259. * Refers to:
  1260. *
  1261. * STAR#9000525659: Clock Domain Crossing on DCTL in
  1262. * USB 2.0 Mode
  1263. */
  1264. if (dwc->revision < DWC3_REVISION_220A)
  1265. reg |= DWC3_DCFG_SUPERSPEED;
  1266. else
  1267. reg |= dwc->maximum_speed;
  1268. dwc3_writel(dwc->regs, DWC3_DCFG, reg);
  1269. dwc->start_config_issued = false;
  1270. /* Start with SuperSpeed Default */
  1271. dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
  1272. dep = dwc->eps[0];
  1273. ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, false);
  1274. if (ret) {
  1275. dev_err(dwc->dev, "failed to enable %s\n", dep->name);
  1276. goto err0;
  1277. }
  1278. dep = dwc->eps[1];
  1279. ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, false);
  1280. if (ret) {
  1281. dev_err(dwc->dev, "failed to enable %s\n", dep->name);
  1282. goto err1;
  1283. }
  1284. /* begin to receive SETUP packets */
  1285. dwc->ep0state = EP0_SETUP_PHASE;
  1286. dwc3_ep0_out_start(dwc);
  1287. irq = platform_get_irq(to_platform_device(dwc->dev), 0);
  1288. ret = request_threaded_irq(irq, dwc3_interrupt, dwc3_thread_interrupt,
  1289. IRQF_SHARED | IRQF_ONESHOT, "dwc3", dwc);
  1290. if (ret) {
  1291. dev_err(dwc->dev, "failed to request irq #%d --> %d\n",
  1292. irq, ret);
  1293. goto err1;
  1294. }
  1295. dwc3_gadget_enable_irq(dwc);
  1296. spin_unlock_irqrestore(&dwc->lock, flags);
  1297. return 0;
  1298. err1:
  1299. __dwc3_gadget_ep_disable(dwc->eps[0]);
  1300. err0:
  1301. spin_unlock_irqrestore(&dwc->lock, flags);
  1302. return ret;
  1303. }
  1304. static int dwc3_gadget_stop(struct usb_gadget *g,
  1305. struct usb_gadget_driver *driver)
  1306. {
  1307. struct dwc3 *dwc = gadget_to_dwc(g);
  1308. unsigned long flags;
  1309. int irq;
  1310. spin_lock_irqsave(&dwc->lock, flags);
  1311. dwc3_gadget_disable_irq(dwc);
  1312. irq = platform_get_irq(to_platform_device(dwc->dev), 0);
  1313. free_irq(irq, dwc);
  1314. __dwc3_gadget_ep_disable(dwc->eps[0]);
  1315. __dwc3_gadget_ep_disable(dwc->eps[1]);
  1316. dwc->gadget_driver = NULL;
  1317. spin_unlock_irqrestore(&dwc->lock, flags);
  1318. return 0;
  1319. }
  1320. static const struct usb_gadget_ops dwc3_gadget_ops = {
  1321. .get_frame = dwc3_gadget_get_frame,
  1322. .wakeup = dwc3_gadget_wakeup,
  1323. .set_selfpowered = dwc3_gadget_set_selfpowered,
  1324. .pullup = dwc3_gadget_pullup,
  1325. .udc_start = dwc3_gadget_start,
  1326. .udc_stop = dwc3_gadget_stop,
  1327. };
  1328. /* -------------------------------------------------------------------------- */
  1329. static int dwc3_gadget_init_hw_endpoints(struct dwc3 *dwc,
  1330. u8 num, u32 direction)
  1331. {
  1332. struct dwc3_ep *dep;
  1333. u8 i;
  1334. for (i = 0; i < num; i++) {
  1335. u8 epnum = (i << 1) | (!!direction);
  1336. dep = kzalloc(sizeof(*dep), GFP_KERNEL);
  1337. if (!dep) {
  1338. dev_err(dwc->dev, "can't allocate endpoint %d\n",
  1339. epnum);
  1340. return -ENOMEM;
  1341. }
  1342. dep->dwc = dwc;
  1343. dep->number = epnum;
  1344. dwc->eps[epnum] = dep;
  1345. snprintf(dep->name, sizeof(dep->name), "ep%d%s", epnum >> 1,
  1346. (epnum & 1) ? "in" : "out");
  1347. dep->endpoint.name = dep->name;
  1348. dep->direction = (epnum & 1);
  1349. if (epnum == 0 || epnum == 1) {
  1350. dep->endpoint.maxpacket = 512;
  1351. dep->endpoint.maxburst = 1;
  1352. dep->endpoint.ops = &dwc3_gadget_ep0_ops;
  1353. if (!epnum)
  1354. dwc->gadget.ep0 = &dep->endpoint;
  1355. } else {
  1356. int ret;
  1357. dep->endpoint.maxpacket = 1024;
  1358. dep->endpoint.max_streams = 15;
  1359. dep->endpoint.ops = &dwc3_gadget_ep_ops;
  1360. list_add_tail(&dep->endpoint.ep_list,
  1361. &dwc->gadget.ep_list);
  1362. ret = dwc3_alloc_trb_pool(dep);
  1363. if (ret)
  1364. return ret;
  1365. }
  1366. INIT_LIST_HEAD(&dep->request_list);
  1367. INIT_LIST_HEAD(&dep->req_queued);
  1368. }
  1369. return 0;
  1370. }
  1371. static int dwc3_gadget_init_endpoints(struct dwc3 *dwc)
  1372. {
  1373. int ret;
  1374. INIT_LIST_HEAD(&dwc->gadget.ep_list);
  1375. ret = dwc3_gadget_init_hw_endpoints(dwc, dwc->num_out_eps, 0);
  1376. if (ret < 0) {
  1377. dev_vdbg(dwc->dev, "failed to allocate OUT endpoints\n");
  1378. return ret;
  1379. }
  1380. ret = dwc3_gadget_init_hw_endpoints(dwc, dwc->num_in_eps, 1);
  1381. if (ret < 0) {
  1382. dev_vdbg(dwc->dev, "failed to allocate IN endpoints\n");
  1383. return ret;
  1384. }
  1385. return 0;
  1386. }
  1387. static void dwc3_gadget_free_endpoints(struct dwc3 *dwc)
  1388. {
  1389. struct dwc3_ep *dep;
  1390. u8 epnum;
  1391. for (epnum = 0; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
  1392. dep = dwc->eps[epnum];
  1393. if (!dep)
  1394. continue;
  1395. dwc3_free_trb_pool(dep);
  1396. if (epnum != 0 && epnum != 1)
  1397. list_del(&dep->endpoint.ep_list);
  1398. kfree(dep);
  1399. }
  1400. }
  1401. /* -------------------------------------------------------------------------- */
  1402. static int __dwc3_cleanup_done_trbs(struct dwc3 *dwc, struct dwc3_ep *dep,
  1403. struct dwc3_request *req, struct dwc3_trb *trb,
  1404. const struct dwc3_event_depevt *event, int status)
  1405. {
  1406. unsigned int count;
  1407. unsigned int s_pkt = 0;
  1408. unsigned int trb_status;
  1409. if ((trb->ctrl & DWC3_TRB_CTRL_HWO) && status != -ESHUTDOWN)
  1410. /*
  1411. * We continue despite the error. There is not much we
  1412. * can do. If we don't clean it up we loop forever. If
  1413. * we skip the TRB then it gets overwritten after a
  1414. * while since we use them in a ring buffer. A BUG()
  1415. * would help. Lets hope that if this occurs, someone
  1416. * fixes the root cause instead of looking away :)
  1417. */
  1418. dev_err(dwc->dev, "%s's TRB (%p) still owned by HW\n",
  1419. dep->name, trb);
  1420. count = trb->size & DWC3_TRB_SIZE_MASK;
  1421. if (dep->direction) {
  1422. if (count) {
  1423. trb_status = DWC3_TRB_SIZE_TRBSTS(trb->size);
  1424. if (trb_status == DWC3_TRBSTS_MISSED_ISOC) {
  1425. dev_dbg(dwc->dev, "incomplete IN transfer %s\n",
  1426. dep->name);
  1427. /*
  1428. * If missed isoc occurred and there is
  1429. * no request queued then issue END
  1430. * TRANSFER, so that core generates
  1431. * next xfernotready and we will issue
  1432. * a fresh START TRANSFER.
  1433. * If there are still queued request
  1434. * then wait, do not issue either END
  1435. * or UPDATE TRANSFER, just attach next
  1436. * request in request_list during
  1437. * giveback.If any future queued request
  1438. * is successfully transferred then we
  1439. * will issue UPDATE TRANSFER for all
  1440. * request in the request_list.
  1441. */
  1442. dep->flags |= DWC3_EP_MISSED_ISOC;
  1443. } else {
  1444. dev_err(dwc->dev, "incomplete IN transfer %s\n",
  1445. dep->name);
  1446. status = -ECONNRESET;
  1447. }
  1448. } else {
  1449. dep->flags &= ~DWC3_EP_MISSED_ISOC;
  1450. }
  1451. } else {
  1452. if (count && (event->status & DEPEVT_STATUS_SHORT))
  1453. s_pkt = 1;
  1454. }
  1455. /*
  1456. * We assume here we will always receive the entire data block
  1457. * which we should receive. Meaning, if we program RX to
  1458. * receive 4K but we receive only 2K, we assume that's all we
  1459. * should receive and we simply bounce the request back to the
  1460. * gadget driver for further processing.
  1461. */
  1462. req->request.actual += req->request.length - count;
  1463. if (s_pkt)
  1464. return 1;
  1465. if ((event->status & DEPEVT_STATUS_LST) &&
  1466. (trb->ctrl & (DWC3_TRB_CTRL_LST |
  1467. DWC3_TRB_CTRL_HWO)))
  1468. return 1;
  1469. if ((event->status & DEPEVT_STATUS_IOC) &&
  1470. (trb->ctrl & DWC3_TRB_CTRL_IOC))
  1471. return 1;
  1472. return 0;
  1473. }
  1474. static int dwc3_cleanup_done_reqs(struct dwc3 *dwc, struct dwc3_ep *dep,
  1475. const struct dwc3_event_depevt *event, int status)
  1476. {
  1477. struct dwc3_request *req;
  1478. struct dwc3_trb *trb;
  1479. unsigned int slot;
  1480. unsigned int i;
  1481. int ret;
  1482. do {
  1483. req = next_request(&dep->req_queued);
  1484. if (!req) {
  1485. WARN_ON_ONCE(1);
  1486. return 1;
  1487. }
  1488. i = 0;
  1489. do {
  1490. slot = req->start_slot + i;
  1491. if ((slot == DWC3_TRB_NUM - 1) &&
  1492. usb_endpoint_xfer_isoc(dep->endpoint.desc))
  1493. slot++;
  1494. slot %= DWC3_TRB_NUM;
  1495. trb = &dep->trb_pool[slot];
  1496. ret = __dwc3_cleanup_done_trbs(dwc, dep, req, trb,
  1497. event, status);
  1498. if (ret)
  1499. break;
  1500. }while (++i < req->request.num_mapped_sgs);
  1501. dwc3_gadget_giveback(dep, req, status);
  1502. if (ret)
  1503. break;
  1504. } while (1);
  1505. if (usb_endpoint_xfer_isoc(dep->endpoint.desc) &&
  1506. list_empty(&dep->req_queued)) {
  1507. if (list_empty(&dep->request_list)) {
  1508. /*
  1509. * If there is no entry in request list then do
  1510. * not issue END TRANSFER now. Just set PENDING
  1511. * flag, so that END TRANSFER is issued when an
  1512. * entry is added into request list.
  1513. */
  1514. dep->flags = DWC3_EP_PENDING_REQUEST;
  1515. } else {
  1516. dwc3_stop_active_transfer(dwc, dep->number);
  1517. dep->flags = DWC3_EP_ENABLED;
  1518. }
  1519. return 1;
  1520. }
  1521. if ((event->status & DEPEVT_STATUS_IOC) &&
  1522. (trb->ctrl & DWC3_TRB_CTRL_IOC))
  1523. return 0;
  1524. return 1;
  1525. }
  1526. static void dwc3_endpoint_transfer_complete(struct dwc3 *dwc,
  1527. struct dwc3_ep *dep, const struct dwc3_event_depevt *event,
  1528. int start_new)
  1529. {
  1530. unsigned status = 0;
  1531. int clean_busy;
  1532. if (event->status & DEPEVT_STATUS_BUSERR)
  1533. status = -ECONNRESET;
  1534. clean_busy = dwc3_cleanup_done_reqs(dwc, dep, event, status);
  1535. if (clean_busy)
  1536. dep->flags &= ~DWC3_EP_BUSY;
  1537. /*
  1538. * WORKAROUND: This is the 2nd half of U1/U2 -> U0 workaround.
  1539. * See dwc3_gadget_linksts_change_interrupt() for 1st half.
  1540. */
  1541. if (dwc->revision < DWC3_REVISION_183A) {
  1542. u32 reg;
  1543. int i;
  1544. for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) {
  1545. dep = dwc->eps[i];
  1546. if (!(dep->flags & DWC3_EP_ENABLED))
  1547. continue;
  1548. if (!list_empty(&dep->req_queued))
  1549. return;
  1550. }
  1551. reg = dwc3_readl(dwc->regs, DWC3_DCTL);
  1552. reg |= dwc->u1u2;
  1553. dwc3_writel(dwc->regs, DWC3_DCTL, reg);
  1554. dwc->u1u2 = 0;
  1555. }
  1556. }
  1557. static void dwc3_endpoint_interrupt(struct dwc3 *dwc,
  1558. const struct dwc3_event_depevt *event)
  1559. {
  1560. struct dwc3_ep *dep;
  1561. u8 epnum = event->endpoint_number;
  1562. dep = dwc->eps[epnum];
  1563. if (!(dep->flags & DWC3_EP_ENABLED))
  1564. return;
  1565. dev_vdbg(dwc->dev, "%s: %s\n", dep->name,
  1566. dwc3_ep_event_string(event->endpoint_event));
  1567. if (epnum == 0 || epnum == 1) {
  1568. dwc3_ep0_interrupt(dwc, event);
  1569. return;
  1570. }
  1571. switch (event->endpoint_event) {
  1572. case DWC3_DEPEVT_XFERCOMPLETE:
  1573. dep->resource_index = 0;
  1574. if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
  1575. dev_dbg(dwc->dev, "%s is an Isochronous endpoint\n",
  1576. dep->name);
  1577. return;
  1578. }
  1579. dwc3_endpoint_transfer_complete(dwc, dep, event, 1);
  1580. break;
  1581. case DWC3_DEPEVT_XFERINPROGRESS:
  1582. if (!usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
  1583. dev_dbg(dwc->dev, "%s is not an Isochronous endpoint\n",
  1584. dep->name);
  1585. return;
  1586. }
  1587. dwc3_endpoint_transfer_complete(dwc, dep, event, 0);
  1588. break;
  1589. case DWC3_DEPEVT_XFERNOTREADY:
  1590. if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
  1591. dwc3_gadget_start_isoc(dwc, dep, event);
  1592. } else {
  1593. int ret;
  1594. dev_vdbg(dwc->dev, "%s: reason %s\n",
  1595. dep->name, event->status &
  1596. DEPEVT_STATUS_TRANSFER_ACTIVE
  1597. ? "Transfer Active"
  1598. : "Transfer Not Active");
  1599. ret = __dwc3_gadget_kick_transfer(dep, 0, 1);
  1600. if (!ret || ret == -EBUSY)
  1601. return;
  1602. dev_dbg(dwc->dev, "%s: failed to kick transfers\n",
  1603. dep->name);
  1604. }
  1605. break;
  1606. case DWC3_DEPEVT_STREAMEVT:
  1607. if (!usb_endpoint_xfer_bulk(dep->endpoint.desc)) {
  1608. dev_err(dwc->dev, "Stream event for non-Bulk %s\n",
  1609. dep->name);
  1610. return;
  1611. }
  1612. switch (event->status) {
  1613. case DEPEVT_STREAMEVT_FOUND:
  1614. dev_vdbg(dwc->dev, "Stream %d found and started\n",
  1615. event->parameters);
  1616. break;
  1617. case DEPEVT_STREAMEVT_NOTFOUND:
  1618. /* FALLTHROUGH */
  1619. default:
  1620. dev_dbg(dwc->dev, "Couldn't find suitable stream\n");
  1621. }
  1622. break;
  1623. case DWC3_DEPEVT_RXTXFIFOEVT:
  1624. dev_dbg(dwc->dev, "%s FIFO Overrun\n", dep->name);
  1625. break;
  1626. case DWC3_DEPEVT_EPCMDCMPLT:
  1627. dev_vdbg(dwc->dev, "Endpoint Command Complete\n");
  1628. break;
  1629. }
  1630. }
  1631. static void dwc3_disconnect_gadget(struct dwc3 *dwc)
  1632. {
  1633. if (dwc->gadget_driver && dwc->gadget_driver->disconnect) {
  1634. spin_unlock(&dwc->lock);
  1635. dwc->gadget_driver->disconnect(&dwc->gadget);
  1636. spin_lock(&dwc->lock);
  1637. }
  1638. }
  1639. static void dwc3_stop_active_transfer(struct dwc3 *dwc, u32 epnum)
  1640. {
  1641. struct dwc3_ep *dep;
  1642. struct dwc3_gadget_ep_cmd_params params;
  1643. u32 cmd;
  1644. int ret;
  1645. dep = dwc->eps[epnum];
  1646. if (!dep->resource_index)
  1647. return;
  1648. /*
  1649. * NOTICE: We are violating what the Databook says about the
  1650. * EndTransfer command. Ideally we would _always_ wait for the
  1651. * EndTransfer Command Completion IRQ, but that's causing too
  1652. * much trouble synchronizing between us and gadget driver.
  1653. *
  1654. * We have discussed this with the IP Provider and it was
  1655. * suggested to giveback all requests here, but give HW some
  1656. * extra time to synchronize with the interconnect. We're using
  1657. * an arbitraty 100us delay for that.
  1658. *
  1659. * Note also that a similar handling was tested by Synopsys
  1660. * (thanks a lot Paul) and nothing bad has come out of it.
  1661. * In short, what we're doing is:
  1662. *
  1663. * - Issue EndTransfer WITH CMDIOC bit set
  1664. * - Wait 100us
  1665. */
  1666. cmd = DWC3_DEPCMD_ENDTRANSFER;
  1667. cmd |= DWC3_DEPCMD_HIPRI_FORCERM | DWC3_DEPCMD_CMDIOC;
  1668. cmd |= DWC3_DEPCMD_PARAM(dep->resource_index);
  1669. memset(&params, 0, sizeof(params));
  1670. ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, cmd, &params);
  1671. WARN_ON_ONCE(ret);
  1672. dep->resource_index = 0;
  1673. dep->flags &= ~DWC3_EP_BUSY;
  1674. udelay(100);
  1675. }
  1676. static void dwc3_stop_active_transfers(struct dwc3 *dwc)
  1677. {
  1678. u32 epnum;
  1679. for (epnum = 2; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
  1680. struct dwc3_ep *dep;
  1681. dep = dwc->eps[epnum];
  1682. if (!dep)
  1683. continue;
  1684. if (!(dep->flags & DWC3_EP_ENABLED))
  1685. continue;
  1686. dwc3_remove_requests(dwc, dep);
  1687. }
  1688. }
  1689. static void dwc3_clear_stall_all_ep(struct dwc3 *dwc)
  1690. {
  1691. u32 epnum;
  1692. for (epnum = 1; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
  1693. struct dwc3_ep *dep;
  1694. struct dwc3_gadget_ep_cmd_params params;
  1695. int ret;
  1696. dep = dwc->eps[epnum];
  1697. if (!dep)
  1698. continue;
  1699. if (!(dep->flags & DWC3_EP_STALL))
  1700. continue;
  1701. dep->flags &= ~DWC3_EP_STALL;
  1702. memset(&params, 0, sizeof(params));
  1703. ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
  1704. DWC3_DEPCMD_CLEARSTALL, &params);
  1705. WARN_ON_ONCE(ret);
  1706. }
  1707. }
  1708. static void dwc3_gadget_disconnect_interrupt(struct dwc3 *dwc)
  1709. {
  1710. int reg;
  1711. dev_vdbg(dwc->dev, "%s\n", __func__);
  1712. reg = dwc3_readl(dwc->regs, DWC3_DCTL);
  1713. reg &= ~DWC3_DCTL_INITU1ENA;
  1714. dwc3_writel(dwc->regs, DWC3_DCTL, reg);
  1715. reg &= ~DWC3_DCTL_INITU2ENA;
  1716. dwc3_writel(dwc->regs, DWC3_DCTL, reg);
  1717. dwc3_disconnect_gadget(dwc);
  1718. dwc->start_config_issued = false;
  1719. dwc->gadget.speed = USB_SPEED_UNKNOWN;
  1720. dwc->setup_packet_pending = false;
  1721. }
  1722. static void dwc3_gadget_usb3_phy_suspend(struct dwc3 *dwc, int suspend)
  1723. {
  1724. u32 reg;
  1725. reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
  1726. if (suspend)
  1727. reg |= DWC3_GUSB3PIPECTL_SUSPHY;
  1728. else
  1729. reg &= ~DWC3_GUSB3PIPECTL_SUSPHY;
  1730. dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
  1731. }
  1732. static void dwc3_gadget_usb2_phy_suspend(struct dwc3 *dwc, int suspend)
  1733. {
  1734. u32 reg;
  1735. reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
  1736. if (suspend)
  1737. reg |= DWC3_GUSB2PHYCFG_SUSPHY;
  1738. else
  1739. reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
  1740. dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
  1741. }
  1742. static void dwc3_gadget_reset_interrupt(struct dwc3 *dwc)
  1743. {
  1744. u32 reg;
  1745. dev_vdbg(dwc->dev, "%s\n", __func__);
  1746. /*
  1747. * WORKAROUND: DWC3 revisions <1.88a have an issue which
  1748. * would cause a missing Disconnect Event if there's a
  1749. * pending Setup Packet in the FIFO.
  1750. *
  1751. * There's no suggested workaround on the official Bug
  1752. * report, which states that "unless the driver/application
  1753. * is doing any special handling of a disconnect event,
  1754. * there is no functional issue".
  1755. *
  1756. * Unfortunately, it turns out that we _do_ some special
  1757. * handling of a disconnect event, namely complete all
  1758. * pending transfers, notify gadget driver of the
  1759. * disconnection, and so on.
  1760. *
  1761. * Our suggested workaround is to follow the Disconnect
  1762. * Event steps here, instead, based on a setup_packet_pending
  1763. * flag. Such flag gets set whenever we have a XferNotReady
  1764. * event on EP0 and gets cleared on XferComplete for the
  1765. * same endpoint.
  1766. *
  1767. * Refers to:
  1768. *
  1769. * STAR#9000466709: RTL: Device : Disconnect event not
  1770. * generated if setup packet pending in FIFO
  1771. */
  1772. if (dwc->revision < DWC3_REVISION_188A) {
  1773. if (dwc->setup_packet_pending)
  1774. dwc3_gadget_disconnect_interrupt(dwc);
  1775. }
  1776. /* after reset -> Default State */
  1777. usb_gadget_set_state(&dwc->gadget, USB_STATE_DEFAULT);
  1778. /* Recent versions support automatic phy suspend and don't need this */
  1779. if (dwc->revision < DWC3_REVISION_194A) {
  1780. /* Resume PHYs */
  1781. dwc3_gadget_usb2_phy_suspend(dwc, false);
  1782. dwc3_gadget_usb3_phy_suspend(dwc, false);
  1783. }
  1784. if (dwc->gadget.speed != USB_SPEED_UNKNOWN)
  1785. dwc3_disconnect_gadget(dwc);
  1786. reg = dwc3_readl(dwc->regs, DWC3_DCTL);
  1787. reg &= ~DWC3_DCTL_TSTCTRL_MASK;
  1788. dwc3_writel(dwc->regs, DWC3_DCTL, reg);
  1789. dwc->test_mode = false;
  1790. dwc3_stop_active_transfers(dwc);
  1791. dwc3_clear_stall_all_ep(dwc);
  1792. dwc->start_config_issued = false;
  1793. /* Reset device address to zero */
  1794. reg = dwc3_readl(dwc->regs, DWC3_DCFG);
  1795. reg &= ~(DWC3_DCFG_DEVADDR_MASK);
  1796. dwc3_writel(dwc->regs, DWC3_DCFG, reg);
  1797. }
  1798. static void dwc3_update_ram_clk_sel(struct dwc3 *dwc, u32 speed)
  1799. {
  1800. u32 reg;
  1801. u32 usb30_clock = DWC3_GCTL_CLK_BUS;
  1802. /*
  1803. * We change the clock only at SS but I dunno why I would want to do
  1804. * this. Maybe it becomes part of the power saving plan.
  1805. */
  1806. if (speed != DWC3_DSTS_SUPERSPEED)
  1807. return;
  1808. /*
  1809. * RAMClkSel is reset to 0 after USB reset, so it must be reprogrammed
  1810. * each time on Connect Done.
  1811. */
  1812. if (!usb30_clock)
  1813. return;
  1814. reg = dwc3_readl(dwc->regs, DWC3_GCTL);
  1815. reg |= DWC3_GCTL_RAMCLKSEL(usb30_clock);
  1816. dwc3_writel(dwc->regs, DWC3_GCTL, reg);
  1817. }
  1818. static void dwc3_gadget_phy_suspend(struct dwc3 *dwc, u8 speed)
  1819. {
  1820. switch (speed) {
  1821. case USB_SPEED_SUPER:
  1822. dwc3_gadget_usb2_phy_suspend(dwc, true);
  1823. break;
  1824. case USB_SPEED_HIGH:
  1825. case USB_SPEED_FULL:
  1826. case USB_SPEED_LOW:
  1827. dwc3_gadget_usb3_phy_suspend(dwc, true);
  1828. break;
  1829. }
  1830. }
  1831. static void dwc3_gadget_conndone_interrupt(struct dwc3 *dwc)
  1832. {
  1833. struct dwc3_ep *dep;
  1834. int ret;
  1835. u32 reg;
  1836. u8 speed;
  1837. dev_vdbg(dwc->dev, "%s\n", __func__);
  1838. reg = dwc3_readl(dwc->regs, DWC3_DSTS);
  1839. speed = reg & DWC3_DSTS_CONNECTSPD;
  1840. dwc->speed = speed;
  1841. dwc3_update_ram_clk_sel(dwc, speed);
  1842. switch (speed) {
  1843. case DWC3_DCFG_SUPERSPEED:
  1844. /*
  1845. * WORKAROUND: DWC3 revisions <1.90a have an issue which
  1846. * would cause a missing USB3 Reset event.
  1847. *
  1848. * In such situations, we should force a USB3 Reset
  1849. * event by calling our dwc3_gadget_reset_interrupt()
  1850. * routine.
  1851. *
  1852. * Refers to:
  1853. *
  1854. * STAR#9000483510: RTL: SS : USB3 reset event may
  1855. * not be generated always when the link enters poll
  1856. */
  1857. if (dwc->revision < DWC3_REVISION_190A)
  1858. dwc3_gadget_reset_interrupt(dwc);
  1859. dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
  1860. dwc->gadget.ep0->maxpacket = 512;
  1861. dwc->gadget.speed = USB_SPEED_SUPER;
  1862. break;
  1863. case DWC3_DCFG_HIGHSPEED:
  1864. dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64);
  1865. dwc->gadget.ep0->maxpacket = 64;
  1866. dwc->gadget.speed = USB_SPEED_HIGH;
  1867. break;
  1868. case DWC3_DCFG_FULLSPEED2:
  1869. case DWC3_DCFG_FULLSPEED1:
  1870. dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64);
  1871. dwc->gadget.ep0->maxpacket = 64;
  1872. dwc->gadget.speed = USB_SPEED_FULL;
  1873. break;
  1874. case DWC3_DCFG_LOWSPEED:
  1875. dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(8);
  1876. dwc->gadget.ep0->maxpacket = 8;
  1877. dwc->gadget.speed = USB_SPEED_LOW;
  1878. break;
  1879. }
  1880. /* Enable USB2 LPM Capability */
  1881. if ((dwc->revision > DWC3_REVISION_194A)
  1882. && (speed != DWC3_DCFG_SUPERSPEED)) {
  1883. reg = dwc3_readl(dwc->regs, DWC3_DCFG);
  1884. reg |= DWC3_DCFG_LPM_CAP;
  1885. dwc3_writel(dwc->regs, DWC3_DCFG, reg);
  1886. reg = dwc3_readl(dwc->regs, DWC3_DCTL);
  1887. reg &= ~(DWC3_DCTL_HIRD_THRES_MASK | DWC3_DCTL_L1_HIBER_EN);
  1888. /*
  1889. * TODO: This should be configurable. For now using
  1890. * maximum allowed HIRD threshold value of 0b1100
  1891. */
  1892. reg |= DWC3_DCTL_HIRD_THRES(12);
  1893. dwc3_writel(dwc->regs, DWC3_DCTL, reg);
  1894. }
  1895. /* Recent versions support automatic phy suspend and don't need this */
  1896. if (dwc->revision < DWC3_REVISION_194A) {
  1897. /* Suspend unneeded PHY */
  1898. dwc3_gadget_phy_suspend(dwc, dwc->gadget.speed);
  1899. }
  1900. dep = dwc->eps[0];
  1901. ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, true);
  1902. if (ret) {
  1903. dev_err(dwc->dev, "failed to enable %s\n", dep->name);
  1904. return;
  1905. }
  1906. dep = dwc->eps[1];
  1907. ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, true);
  1908. if (ret) {
  1909. dev_err(dwc->dev, "failed to enable %s\n", dep->name);
  1910. return;
  1911. }
  1912. /*
  1913. * Configure PHY via GUSB3PIPECTLn if required.
  1914. *
  1915. * Update GTXFIFOSIZn
  1916. *
  1917. * In both cases reset values should be sufficient.
  1918. */
  1919. }
  1920. static void dwc3_gadget_wakeup_interrupt(struct dwc3 *dwc)
  1921. {
  1922. dev_vdbg(dwc->dev, "%s\n", __func__);
  1923. /*
  1924. * TODO take core out of low power mode when that's
  1925. * implemented.
  1926. */
  1927. dwc->gadget_driver->resume(&dwc->gadget);
  1928. }
  1929. static void dwc3_gadget_linksts_change_interrupt(struct dwc3 *dwc,
  1930. unsigned int evtinfo)
  1931. {
  1932. enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK;
  1933. unsigned int pwropt;
  1934. /*
  1935. * WORKAROUND: DWC3 < 2.50a have an issue when configured without
  1936. * Hibernation mode enabled which would show up when device detects
  1937. * host-initiated U3 exit.
  1938. *
  1939. * In that case, device will generate a Link State Change Interrupt
  1940. * from U3 to RESUME which is only necessary if Hibernation is
  1941. * configured in.
  1942. *
  1943. * There are no functional changes due to such spurious event and we
  1944. * just need to ignore it.
  1945. *
  1946. * Refers to:
  1947. *
  1948. * STAR#9000570034 RTL: SS Resume event generated in non-Hibernation
  1949. * operational mode
  1950. */
  1951. pwropt = DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1);
  1952. if ((dwc->revision < DWC3_REVISION_250A) &&
  1953. (pwropt != DWC3_GHWPARAMS1_EN_PWROPT_HIB)) {
  1954. if ((dwc->link_state == DWC3_LINK_STATE_U3) &&
  1955. (next == DWC3_LINK_STATE_RESUME)) {
  1956. dev_vdbg(dwc->dev, "ignoring transition U3 -> Resume\n");
  1957. return;
  1958. }
  1959. }
  1960. /*
  1961. * WORKAROUND: DWC3 Revisions <1.83a have an issue which, depending
  1962. * on the link partner, the USB session might do multiple entry/exit
  1963. * of low power states before a transfer takes place.
  1964. *
  1965. * Due to this problem, we might experience lower throughput. The
  1966. * suggested workaround is to disable DCTL[12:9] bits if we're
  1967. * transitioning from U1/U2 to U0 and enable those bits again
  1968. * after a transfer completes and there are no pending transfers
  1969. * on any of the enabled endpoints.
  1970. *
  1971. * This is the first half of that workaround.
  1972. *
  1973. * Refers to:
  1974. *
  1975. * STAR#9000446952: RTL: Device SS : if U1/U2 ->U0 takes >128us
  1976. * core send LGO_Ux entering U0
  1977. */
  1978. if (dwc->revision < DWC3_REVISION_183A) {
  1979. if (next == DWC3_LINK_STATE_U0) {
  1980. u32 u1u2;
  1981. u32 reg;
  1982. switch (dwc->link_state) {
  1983. case DWC3_LINK_STATE_U1:
  1984. case DWC3_LINK_STATE_U2:
  1985. reg = dwc3_readl(dwc->regs, DWC3_DCTL);
  1986. u1u2 = reg & (DWC3_DCTL_INITU2ENA
  1987. | DWC3_DCTL_ACCEPTU2ENA
  1988. | DWC3_DCTL_INITU1ENA
  1989. | DWC3_DCTL_ACCEPTU1ENA);
  1990. if (!dwc->u1u2)
  1991. dwc->u1u2 = reg & u1u2;
  1992. reg &= ~u1u2;
  1993. dwc3_writel(dwc->regs, DWC3_DCTL, reg);
  1994. break;
  1995. default:
  1996. /* do nothing */
  1997. break;
  1998. }
  1999. }
  2000. }
  2001. dwc->link_state = next;
  2002. dev_vdbg(dwc->dev, "%s link %d\n", __func__, dwc->link_state);
  2003. }
  2004. static void dwc3_gadget_interrupt(struct dwc3 *dwc,
  2005. const struct dwc3_event_devt *event)
  2006. {
  2007. switch (event->type) {
  2008. case DWC3_DEVICE_EVENT_DISCONNECT:
  2009. dwc3_gadget_disconnect_interrupt(dwc);
  2010. break;
  2011. case DWC3_DEVICE_EVENT_RESET:
  2012. dwc3_gadget_reset_interrupt(dwc);
  2013. break;
  2014. case DWC3_DEVICE_EVENT_CONNECT_DONE:
  2015. dwc3_gadget_conndone_interrupt(dwc);
  2016. break;
  2017. case DWC3_DEVICE_EVENT_WAKEUP:
  2018. dwc3_gadget_wakeup_interrupt(dwc);
  2019. break;
  2020. case DWC3_DEVICE_EVENT_LINK_STATUS_CHANGE:
  2021. dwc3_gadget_linksts_change_interrupt(dwc, event->event_info);
  2022. break;
  2023. case DWC3_DEVICE_EVENT_EOPF:
  2024. dev_vdbg(dwc->dev, "End of Periodic Frame\n");
  2025. break;
  2026. case DWC3_DEVICE_EVENT_SOF:
  2027. dev_vdbg(dwc->dev, "Start of Periodic Frame\n");
  2028. break;
  2029. case DWC3_DEVICE_EVENT_ERRATIC_ERROR:
  2030. dev_vdbg(dwc->dev, "Erratic Error\n");
  2031. break;
  2032. case DWC3_DEVICE_EVENT_CMD_CMPL:
  2033. dev_vdbg(dwc->dev, "Command Complete\n");
  2034. break;
  2035. case DWC3_DEVICE_EVENT_OVERFLOW:
  2036. dev_vdbg(dwc->dev, "Overflow\n");
  2037. break;
  2038. default:
  2039. dev_dbg(dwc->dev, "UNKNOWN IRQ %d\n", event->type);
  2040. }
  2041. }
  2042. static void dwc3_process_event_entry(struct dwc3 *dwc,
  2043. const union dwc3_event *event)
  2044. {
  2045. /* Endpoint IRQ, handle it and return early */
  2046. if (event->type.is_devspec == 0) {
  2047. /* depevt */
  2048. return dwc3_endpoint_interrupt(dwc, &event->depevt);
  2049. }
  2050. switch (event->type.type) {
  2051. case DWC3_EVENT_TYPE_DEV:
  2052. dwc3_gadget_interrupt(dwc, &event->devt);
  2053. break;
  2054. /* REVISIT what to do with Carkit and I2C events ? */
  2055. default:
  2056. dev_err(dwc->dev, "UNKNOWN IRQ type %d\n", event->raw);
  2057. }
  2058. }
  2059. static irqreturn_t dwc3_thread_interrupt(int irq, void *_dwc)
  2060. {
  2061. struct dwc3 *dwc = _dwc;
  2062. unsigned long flags;
  2063. irqreturn_t ret = IRQ_NONE;
  2064. int i;
  2065. spin_lock_irqsave(&dwc->lock, flags);
  2066. for (i = 0; i < dwc->num_event_buffers; i++) {
  2067. struct dwc3_event_buffer *evt;
  2068. int left;
  2069. evt = dwc->ev_buffs[i];
  2070. left = evt->count;
  2071. if (!(evt->flags & DWC3_EVENT_PENDING))
  2072. continue;
  2073. while (left > 0) {
  2074. union dwc3_event event;
  2075. event.raw = *(u32 *) (evt->buf + evt->lpos);
  2076. dwc3_process_event_entry(dwc, &event);
  2077. /*
  2078. * FIXME we wrap around correctly to the next entry as
  2079. * almost all entries are 4 bytes in size. There is one
  2080. * entry which has 12 bytes which is a regular entry
  2081. * followed by 8 bytes data. ATM I don't know how
  2082. * things are organized if we get next to the a
  2083. * boundary so I worry about that once we try to handle
  2084. * that.
  2085. */
  2086. evt->lpos = (evt->lpos + 4) % DWC3_EVENT_BUFFERS_SIZE;
  2087. left -= 4;
  2088. dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(i), 4);
  2089. }
  2090. evt->count = 0;
  2091. evt->flags &= ~DWC3_EVENT_PENDING;
  2092. ret = IRQ_HANDLED;
  2093. }
  2094. spin_unlock_irqrestore(&dwc->lock, flags);
  2095. return ret;
  2096. }
  2097. static irqreturn_t dwc3_process_event_buf(struct dwc3 *dwc, u32 buf)
  2098. {
  2099. struct dwc3_event_buffer *evt;
  2100. u32 count;
  2101. evt = dwc->ev_buffs[buf];
  2102. count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(buf));
  2103. count &= DWC3_GEVNTCOUNT_MASK;
  2104. if (!count)
  2105. return IRQ_NONE;
  2106. evt->count = count;
  2107. evt->flags |= DWC3_EVENT_PENDING;
  2108. return IRQ_WAKE_THREAD;
  2109. }
  2110. static irqreturn_t dwc3_interrupt(int irq, void *_dwc)
  2111. {
  2112. struct dwc3 *dwc = _dwc;
  2113. int i;
  2114. irqreturn_t ret = IRQ_NONE;
  2115. spin_lock(&dwc->lock);
  2116. for (i = 0; i < dwc->num_event_buffers; i++) {
  2117. irqreturn_t status;
  2118. status = dwc3_process_event_buf(dwc, i);
  2119. if (status == IRQ_WAKE_THREAD)
  2120. ret = status;
  2121. }
  2122. spin_unlock(&dwc->lock);
  2123. return ret;
  2124. }
  2125. /**
  2126. * dwc3_gadget_init - Initializes gadget related registers
  2127. * @dwc: pointer to our controller context structure
  2128. *
  2129. * Returns 0 on success otherwise negative errno.
  2130. */
  2131. int dwc3_gadget_init(struct dwc3 *dwc)
  2132. {
  2133. u32 reg;
  2134. int ret;
  2135. dwc->ctrl_req = dma_alloc_coherent(dwc->dev, sizeof(*dwc->ctrl_req),
  2136. &dwc->ctrl_req_addr, GFP_KERNEL);
  2137. if (!dwc->ctrl_req) {
  2138. dev_err(dwc->dev, "failed to allocate ctrl request\n");
  2139. ret = -ENOMEM;
  2140. goto err0;
  2141. }
  2142. dwc->ep0_trb = dma_alloc_coherent(dwc->dev, sizeof(*dwc->ep0_trb),
  2143. &dwc->ep0_trb_addr, GFP_KERNEL);
  2144. if (!dwc->ep0_trb) {
  2145. dev_err(dwc->dev, "failed to allocate ep0 trb\n");
  2146. ret = -ENOMEM;
  2147. goto err1;
  2148. }
  2149. dwc->setup_buf = kzalloc(DWC3_EP0_BOUNCE_SIZE, GFP_KERNEL);
  2150. if (!dwc->setup_buf) {
  2151. dev_err(dwc->dev, "failed to allocate setup buffer\n");
  2152. ret = -ENOMEM;
  2153. goto err2;
  2154. }
  2155. dwc->ep0_bounce = dma_alloc_coherent(dwc->dev,
  2156. DWC3_EP0_BOUNCE_SIZE, &dwc->ep0_bounce_addr,
  2157. GFP_KERNEL);
  2158. if (!dwc->ep0_bounce) {
  2159. dev_err(dwc->dev, "failed to allocate ep0 bounce buffer\n");
  2160. ret = -ENOMEM;
  2161. goto err3;
  2162. }
  2163. dwc->gadget.ops = &dwc3_gadget_ops;
  2164. dwc->gadget.max_speed = USB_SPEED_SUPER;
  2165. dwc->gadget.speed = USB_SPEED_UNKNOWN;
  2166. dwc->gadget.sg_supported = true;
  2167. dwc->gadget.name = "dwc3-gadget";
  2168. /*
  2169. * REVISIT: Here we should clear all pending IRQs to be
  2170. * sure we're starting from a well known location.
  2171. */
  2172. ret = dwc3_gadget_init_endpoints(dwc);
  2173. if (ret)
  2174. goto err4;
  2175. reg = dwc3_readl(dwc->regs, DWC3_DCFG);
  2176. reg |= DWC3_DCFG_LPM_CAP;
  2177. dwc3_writel(dwc->regs, DWC3_DCFG, reg);
  2178. /* Enable USB2 LPM and automatic phy suspend only on recent versions */
  2179. if (dwc->revision >= DWC3_REVISION_194A) {
  2180. dwc3_gadget_usb2_phy_suspend(dwc, false);
  2181. dwc3_gadget_usb3_phy_suspend(dwc, false);
  2182. }
  2183. ret = usb_add_gadget_udc(dwc->dev, &dwc->gadget);
  2184. if (ret) {
  2185. dev_err(dwc->dev, "failed to register udc\n");
  2186. goto err5;
  2187. }
  2188. return 0;
  2189. err5:
  2190. dwc3_gadget_free_endpoints(dwc);
  2191. err4:
  2192. dma_free_coherent(dwc->dev, DWC3_EP0_BOUNCE_SIZE,
  2193. dwc->ep0_bounce, dwc->ep0_bounce_addr);
  2194. err3:
  2195. kfree(dwc->setup_buf);
  2196. err2:
  2197. dma_free_coherent(dwc->dev, sizeof(*dwc->ep0_trb),
  2198. dwc->ep0_trb, dwc->ep0_trb_addr);
  2199. err1:
  2200. dma_free_coherent(dwc->dev, sizeof(*dwc->ctrl_req),
  2201. dwc->ctrl_req, dwc->ctrl_req_addr);
  2202. err0:
  2203. return ret;
  2204. }
  2205. /* -------------------------------------------------------------------------- */
  2206. void dwc3_gadget_exit(struct dwc3 *dwc)
  2207. {
  2208. usb_del_gadget_udc(&dwc->gadget);
  2209. dwc3_gadget_free_endpoints(dwc);
  2210. dma_free_coherent(dwc->dev, DWC3_EP0_BOUNCE_SIZE,
  2211. dwc->ep0_bounce, dwc->ep0_bounce_addr);
  2212. kfree(dwc->setup_buf);
  2213. dma_free_coherent(dwc->dev, sizeof(*dwc->ep0_trb),
  2214. dwc->ep0_trb, dwc->ep0_trb_addr);
  2215. dma_free_coherent(dwc->dev, sizeof(*dwc->ctrl_req),
  2216. dwc->ctrl_req, dwc->ctrl_req_addr);
  2217. }
  2218. int dwc3_gadget_prepare(struct dwc3 *dwc)
  2219. {
  2220. if (dwc->pullups_connected)
  2221. dwc3_gadget_disable_irq(dwc);
  2222. return 0;
  2223. }
  2224. void dwc3_gadget_complete(struct dwc3 *dwc)
  2225. {
  2226. if (dwc->pullups_connected) {
  2227. dwc3_gadget_enable_irq(dwc);
  2228. dwc3_gadget_run_stop(dwc, true);
  2229. }
  2230. }
  2231. int dwc3_gadget_suspend(struct dwc3 *dwc)
  2232. {
  2233. __dwc3_gadget_ep_disable(dwc->eps[0]);
  2234. __dwc3_gadget_ep_disable(dwc->eps[1]);
  2235. dwc->dcfg = dwc3_readl(dwc->regs, DWC3_DCFG);
  2236. return 0;
  2237. }
  2238. int dwc3_gadget_resume(struct dwc3 *dwc)
  2239. {
  2240. struct dwc3_ep *dep;
  2241. int ret;
  2242. /* Start with SuperSpeed Default */
  2243. dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
  2244. dep = dwc->eps[0];
  2245. ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, false);
  2246. if (ret)
  2247. goto err0;
  2248. dep = dwc->eps[1];
  2249. ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, false);
  2250. if (ret)
  2251. goto err1;
  2252. /* begin to receive SETUP packets */
  2253. dwc->ep0state = EP0_SETUP_PHASE;
  2254. dwc3_ep0_out_start(dwc);
  2255. dwc3_writel(dwc->regs, DWC3_DCFG, dwc->dcfg);
  2256. return 0;
  2257. err1:
  2258. __dwc3_gadget_ep_disable(dwc->eps[0]);
  2259. err0:
  2260. return ret;
  2261. }