usbc.h 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543
  1. /* Copyright (C) 2018 RDA Technologies Limited and/or its affiliates("RDA").
  2. * All rights reserved.
  3. *
  4. * This software is supplied "AS IS" without any warranties.
  5. * RDA assumes no responsibility or liability for the use of the software,
  6. * conveys no license or title under any patent, copyright, or mask work
  7. * right to the product. RDA reserves the right to make changes in the
  8. * software without notification. RDA also make no representation or
  9. * warranty that such application will be suitable for the specified use
  10. * without further testing or modification.
  11. */
  12. #ifndef _USBC_H_
  13. #define _USBC_H_
  14. // Auto generated by dtools(see dtools.txt for its version).
  15. // Don't edit it manually!
  16. #define REG_USBC_BASE (0x02100000)
  17. typedef volatile struct
  18. {
  19. uint32_t otg_pai; // 0x00000000
  20. uint32_t otg_intrx_inttxen; // 0x00000004
  21. uint32_t otg_intrxen_usb; // 0x00000008
  22. uint32_t otg_fit; // 0x0000000c
  23. uint32_t otg_csr0; // 0x00000010
  24. uint32_t __20[1]; // 0x00000014
  25. uint32_t otg_rxcnt_txtype0; // 0x00000018
  26. uint32_t otg_cfg; // 0x0000001c
  27. uint32_t __32[16]; // 0x00000020
  28. uint32_t otg_devctl; // 0x00000060
  29. uint32_t otg_fa; // 0x00000064
  30. uint32_t __104[1]; // 0x00000068
  31. uint32_t otg_hwver; // 0x0000006c
  32. uint32_t __112[2]; // 0x00000070
  33. uint32_t otg_info; // 0x00000078
  34. uint32_t otg_eof; // 0x0000007c
  35. uint32_t otg_ep0_txfad_had_hp; // 0x00000080
  36. uint32_t otg_ep0_rxfad_had_hp; // 0x00000084
  37. uint32_t otg_ep1_txfad_had_hp; // 0x00000088
  38. uint32_t otg_ep1_rxfad_had_hp; // 0x0000008c
  39. uint32_t otg_ep2_txfad_had_hp; // 0x00000090
  40. uint32_t otg_ep2_rxfad_had_hp; // 0x00000094
  41. uint32_t otg_ep3_txfad_had_hp; // 0x00000098
  42. uint32_t otg_ep3_rxfad_had_hp; // 0x0000009c
  43. uint32_t otg_ep4_txfad_had_hp; // 0x000000a0
  44. uint32_t otg_ep4_rxfad_had_hp; // 0x000000a4
  45. uint32_t otg_ep5_txfad_had_hp; // 0x000000a8
  46. uint32_t otg_ep5_rxfad_had_hp; // 0x000000ac
  47. uint32_t otg_ep6_txfad_had_hp; // 0x000000b0
  48. uint32_t otg_ep6_rxfad_had_hp; // 0x000000b4
  49. uint32_t otg_ep7_txfad_had_hp; // 0x000000b8
  50. uint32_t otg_ep7_rxfad_had_hp; // 0x000000bc
  51. uint32_t otg_ep8_txfad_had_hp; // 0x000000c0
  52. uint32_t otg_ep8_rxfad_had_hp; // 0x000000c4
  53. uint32_t otg_ep9_txfad_had_hp; // 0x000000c8
  54. uint32_t otg_ep9_rxfad_had_hp; // 0x000000cc
  55. uint32_t otg_ep10_txfad_had_hp; // 0x000000d0
  56. uint32_t otg_ep10_rxfad_had_hp; // 0x000000d4
  57. uint32_t otg_ep11_txfad_had_hp; // 0x000000d8
  58. uint32_t otg_ep11_rxfad_had_hp; // 0x000000dc
  59. uint32_t otg_ep12_txfad_had_hp; // 0x000000e0
  60. uint32_t otg_ep12_rxfad_had_hp; // 0x000000e4
  61. uint32_t otg_ep13_txfad_had_hp; // 0x000000e8
  62. uint32_t otg_ep13_rxfad_had_hp; // 0x000000ec
  63. uint32_t otg_ep14_txfad_had_hp; // 0x000000f0
  64. uint32_t otg_ep14_rxfad_had_hp; // 0x000000f4
  65. uint32_t otg_ep15_txfad_had_hp; // 0x000000f8
  66. uint32_t otg_ep15_rxfad_had_hp; // 0x000000fc
  67. uint32_t __256[4]; // 0x00000100
  68. uint32_t reg_ep1_txmaxp_csr; // 0x00000110
  69. uint32_t reg_ep1_rxmaxp_csr; // 0x00000114
  70. uint32_t reg_ep1_rxcnt_txtype; // 0x00000118
  71. uint32_t reg_ep1_rxtype_intv; // 0x0000011c
  72. uint32_t reg_ep2_txmaxp_csr; // 0x00000120
  73. uint32_t reg_ep2_rxmaxp_csr; // 0x00000124
  74. uint32_t reg_ep2_rxcnt_txtype; // 0x00000128
  75. uint32_t reg_ep2_rxtype_intv; // 0x0000012c
  76. uint32_t reg_ep3_txmaxp_csr; // 0x00000130
  77. uint32_t reg_ep3_rxmaxp_csr; // 0x00000134
  78. uint32_t reg_ep3_rxcnt_txtype; // 0x00000138
  79. uint32_t reg_ep3_rxtype_intv; // 0x0000013c
  80. uint32_t reg_ep4_txmaxp_csr; // 0x00000140
  81. uint32_t reg_ep4_rxmaxp_csr; // 0x00000144
  82. uint32_t reg_ep4_rxcnt_txtype; // 0x00000148
  83. uint32_t reg_ep4_rxtype_intv; // 0x0000014c
  84. uint32_t reg_ep5_txmaxp_csr; // 0x00000150
  85. uint32_t reg_ep5_rxmaxp_csr; // 0x00000154
  86. uint32_t reg_ep5_rxcnt_txtype; // 0x00000158
  87. uint32_t reg_ep5_rxtype_intv; // 0x0000015c
  88. uint32_t reg_ep6_txmaxp_csr; // 0x00000160
  89. uint32_t reg_ep6_rxmaxp_csr; // 0x00000164
  90. uint32_t reg_ep6_rxcnt_txtype; // 0x00000168
  91. uint32_t reg_ep6_rxtype_intv; // 0x0000016c
  92. uint32_t reg_ep7_txmaxp_csr; // 0x00000170
  93. uint32_t reg_ep7_rxmaxp_csr; // 0x00000174
  94. uint32_t reg_ep7_rxcnt_txtype; // 0x00000178
  95. uint32_t reg_ep7_rxtype_intv; // 0x0000017c
  96. uint32_t reg_ep8_txmaxp_csr; // 0x00000180
  97. uint32_t reg_ep8_rxmaxp_csr; // 0x00000184
  98. uint32_t reg_ep8_rxcnt_txtype; // 0x00000188
  99. uint32_t reg_ep8_rxtype_intv; // 0x0000018c
  100. uint32_t reg_ep9_txmaxp_csr; // 0x00000190
  101. uint32_t reg_ep9_rxmaxp_csr; // 0x00000194
  102. uint32_t reg_ep9_rxcnt_txtype; // 0x00000198
  103. uint32_t reg_ep9_rxtype_intv; // 0x0000019c
  104. uint32_t reg_ep10_txmaxp_csr; // 0x000001a0
  105. uint32_t reg_ep10_rxmaxp_csr; // 0x000001a4
  106. uint32_t reg_ep10_rxcnt_txtype; // 0x000001a8
  107. uint32_t reg_ep10_rxtype_intv; // 0x000001ac
  108. uint32_t reg_ep11_txmaxp_csr; // 0x000001b0
  109. uint32_t reg_ep11_rxmaxp_csr; // 0x000001b4
  110. uint32_t reg_ep11_rxcnt_txtype; // 0x000001b8
  111. uint32_t reg_ep11_rxtype_intv; // 0x000001bc
  112. uint32_t reg_ep12_txmaxp_csr; // 0x000001c0
  113. uint32_t reg_ep12_rxmaxp_csr; // 0x000001c4
  114. uint32_t reg_ep12_rxcnt_txtype; // 0x000001c8
  115. uint32_t reg_ep12_rxtype_intv; // 0x000001cc
  116. uint32_t reg_ep13_txmaxp_csr; // 0x000001d0
  117. uint32_t reg_ep13_rxmaxp_csr; // 0x000001d4
  118. uint32_t reg_ep13_rxcnt_txtype; // 0x000001d8
  119. uint32_t reg_ep13_rxtype_intv; // 0x000001dc
  120. uint32_t reg_ep14_txmaxp_csr; // 0x000001e0
  121. uint32_t reg_ep14_rxmaxp_csr; // 0x000001e4
  122. uint32_t reg_ep14_rxcnt_txtype; // 0x000001e8
  123. uint32_t reg_ep14_rxtype_intv; // 0x000001ec
  124. uint32_t reg_ep15_txmaxp_csr; // 0x000001f0
  125. uint32_t reg_ep15_rxmaxp_csr; // 0x000001f4
  126. uint32_t reg_ep15_rxcnt_txtype; // 0x000001f8
  127. uint32_t reg_ep15_rxtype_intv; // 0x000001fc
  128. uint32_t __512[64]; // 0x00000200
  129. uint32_t otg_ep0_rxpktcnt; // 0x00000300
  130. uint32_t otg_ep1_rxpktcnt; // 0x00000304
  131. uint32_t otg_ep2_rxpktcnt; // 0x00000308
  132. uint32_t otg_ep3_rxpktcnt; // 0x0000030c
  133. uint32_t otg_ep4_rxpktcnt; // 0x00000310
  134. uint32_t otg_ep5_rxpktcnt; // 0x00000314
  135. uint32_t otg_ep6_rxpktcnt; // 0x00000318
  136. uint32_t otg_ep7_rxpktcnt; // 0x0000031c
  137. uint32_t otg_ep8_rxpktcnt; // 0x00000320
  138. uint32_t otg_ep9_rxpktcnt; // 0x00000324
  139. uint32_t otg_ep10_rxpktcnt; // 0x00000328
  140. uint32_t otg_ep11_rxpktcnt; // 0x0000032c
  141. uint32_t otg_ep12_rxpktcnt; // 0x00000330
  142. uint32_t otg_ep13_rxpktcnt; // 0x00000334
  143. uint32_t otg_ep14_rxpktcnt; // 0x00000338
  144. uint32_t otg_ep15_rxpktcnt; // 0x0000033c
  145. uint32_t otg_rxdbdis_txdbdis; // 0x00000340
  146. uint32_t otg_uch_hsrtn; // 0x00000344
  147. uint32_t otg_hsbt_fifo; // 0x00000348
  148. uint32_t otg_listend_int_sts; // 0x0000034c
  149. uint32_t otg_listend_int_clr; // 0x00000350
  150. uint32_t otg_endpoint_en; // 0x00000354
  151. } HWP_USBC_T;
  152. #define hwp_usbc ((HWP_USBC_T *)REG_ACCESS_ADDRESS(REG_USBC_BASE))
  153. // otg_pai
  154. typedef union {
  155. uint32_t v;
  156. struct
  157. {
  158. uint32_t func_addr : 7; // [6:0]
  159. uint32_t __7_7 : 1; // [7]
  160. uint32_t suspm : 1; // [8]
  161. uint32_t susp : 1; // [9], read only
  162. uint32_t rsm : 1; // [10]
  163. uint32_t rst : 1; // [11], read only
  164. uint32_t hsmd : 1; // [12], read only
  165. uint32_t hsen : 1; // [13]
  166. uint32_t sfcn : 1; // [14]
  167. uint32_t __15_15 : 1; // [15]
  168. uint32_t ep : 16; // [31:16], read only
  169. } b;
  170. } REG_USBC_OTG_PAI_T;
  171. // otg_intrx_inttxen
  172. typedef union {
  173. uint32_t v;
  174. struct
  175. {
  176. uint32_t __0_0 : 1; // [0]
  177. uint32_t rx_ep : 15; // [15:1], read only
  178. uint32_t tx_ep : 16; // [31:16], read only
  179. } b;
  180. } REG_USBC_OTG_INTRX_INTTXEN_T;
  181. // otg_intrxen_usb
  182. typedef union {
  183. uint32_t v;
  184. struct
  185. {
  186. uint32_t __0_0 : 1; // [0]
  187. uint32_t rx_ep : 15; // [15:1], read only
  188. uint32_t susp : 1; // [16], read only
  189. uint32_t res : 1; // [17], read only
  190. uint32_t rst : 1; // [18], read only
  191. uint32_t sof : 1; // [19], read only
  192. uint32_t conn : 1; // [20], read only
  193. uint32_t discon : 1; // [21], read only
  194. uint32_t sreq : 1; // [22], read only
  195. uint32_t vbe : 1; // [23], read only
  196. uint32_t sspen : 1; // [24]
  197. uint32_t resen : 1; // [25]
  198. uint32_t rsten : 1; // [26]
  199. uint32_t sofen : 1; // [27]
  200. uint32_t conen : 1; // [28]
  201. uint32_t dscen : 1; // [29]
  202. uint32_t sreqen : 1; // [30]
  203. uint32_t vben : 1; // [31]
  204. } b;
  205. } REG_USBC_OTG_INTRXEN_USB_T;
  206. // otg_fit
  207. typedef union {
  208. uint32_t v;
  209. struct
  210. {
  211. uint32_t fmno : 11; // [10:0], read only
  212. uint32_t __15_11 : 5; // [15:11]
  213. uint32_t epno : 4; // [19:16]
  214. uint32_t __23_20 : 4; // [23:20]
  215. uint32_t tstnak : 1; // [24]
  216. uint32_t tstj : 1; // [25]
  217. uint32_t tstk : 1; // [26]
  218. uint32_t tstpkt : 1; // [27]
  219. uint32_t fhs : 1; // [28]
  220. uint32_t ffs : 1; // [29]
  221. uint32_t fifoa : 1; // [30]
  222. uint32_t frh : 1; // [31]
  223. } b;
  224. } REG_USBC_OTG_FIT_T;
  225. // otg_csr0
  226. typedef union {
  227. uint32_t v;
  228. struct
  229. {
  230. uint32_t maxp : 11; // [10:0]
  231. uint32_t mult : 5; // [15:11]
  232. uint32_t rrdy : 1; // [16]
  233. uint32_t trdy : 1; // [17]
  234. uint32_t rsta : 1; // [18]
  235. uint32_t sp : 1; // [19]
  236. uint32_t err : 1; // [20]
  237. uint32_t rep : 1; // [21]
  238. uint32_t stp : 1; // [22]
  239. uint32_t nakto : 1; // [23]
  240. uint32_t ff : 1; // [24]
  241. uint32_t dt : 1; // [25]
  242. uint32_t dtwe : 1; // [26]
  243. uint32_t disp : 1; // [27]
  244. uint32_t __31_28 : 4; // [31:28]
  245. } b;
  246. } REG_USBC_OTG_CSR0_T;
  247. // otg_rxcnt_txtype0
  248. typedef union {
  249. uint32_t v;
  250. struct
  251. {
  252. uint32_t rxcnt0 : 7; // [6:0], read only
  253. uint32_t __21_7 : 15; // [21:7]
  254. uint32_t speed : 2; // [23:22], read only
  255. uint32_t naklimit : 4; // [27:24]
  256. uint32_t __31_28 : 4; // [31:28]
  257. } b;
  258. } REG_USBC_OTG_RXCNT_TXTYPE0_T;
  259. // otg_cfg
  260. typedef union {
  261. uint32_t v;
  262. struct
  263. {
  264. uint32_t __23_0 : 24; // [23:0]
  265. uint32_t udi : 1; // [24], read only
  266. uint32_t sc : 1; // [25], read only
  267. uint32_t dynf : 1; // [26], read only
  268. uint32_t hbtxe : 1; // [27], read only
  269. uint32_t hbrxe : 1; // [28], read only
  270. uint32_t be : 1; // [29], read only
  271. uint32_t mptxe : 1; // [30], read only
  272. uint32_t mprxe : 1; // [31], read only
  273. } b;
  274. } REG_USBC_OTG_CFG_T;
  275. // otg_devctl
  276. typedef union {
  277. uint32_t v;
  278. struct
  279. {
  280. uint32_t sess : 1; // [0]
  281. uint32_t hreq : 1; // [1]
  282. uint32_t host : 1; // [2], read only
  283. uint32_t vbus : 2; // [4:3], read only
  284. uint32_t lsdev : 1; // [5], read only
  285. uint32_t fsdev : 1; // [6], read only
  286. uint32_t bdev : 1; // [7], read only
  287. uint32_t dmainter : 1; // [8], read only
  288. uint32_t ctrlinter : 1; // [9], read only
  289. uint32_t __15_10 : 6; // [15:10]
  290. uint32_t txsize : 4; // [19:16]
  291. uint32_t txdpb : 1; // [20]
  292. uint32_t __23_21 : 3; // [23:21]
  293. uint32_t rxsize : 4; // [27:24]
  294. uint32_t rxdpb : 1; // [28]
  295. uint32_t __31_29 : 3; // [31:29]
  296. } b;
  297. } REG_USBC_OTG_DEVCTL_T;
  298. // otg_fa
  299. typedef union {
  300. uint32_t v;
  301. struct
  302. {
  303. uint32_t txad : 13; // [12:0]
  304. uint32_t __15_13 : 3; // [15:13]
  305. uint32_t rxad : 13; // [28:16]
  306. uint32_t __31_29 : 3; // [31:29]
  307. } b;
  308. } REG_USBC_OTG_FA_T;
  309. // otg_hwver
  310. typedef union {
  311. uint32_t v;
  312. struct
  313. {
  314. uint32_t vmin : 10; // [9:0], read only
  315. uint32_t vmaj : 5; // [14:10], read only
  316. uint32_t __31_15 : 17; // [31:15]
  317. } b;
  318. } REG_USBC_OTG_HWVER_T;
  319. // otg_info
  320. typedef union {
  321. uint32_t v;
  322. struct
  323. {
  324. uint32_t tx_ep : 4; // [3:0], read only
  325. uint32_t rx_ep : 4; // [7:4], read only
  326. uint32_t ram_bits : 4; // [11:8], read only
  327. uint32_t dma_ch : 4; // [15:12], read only
  328. uint32_t wtid : 4; // [19:16]
  329. uint32_t wtcon : 4; // [23:20]
  330. uint32_t vplen : 8; // [31:24]
  331. } b;
  332. } REG_USBC_OTG_INFO_T;
  333. // otg_eof
  334. typedef union {
  335. uint32_t v;
  336. struct
  337. {
  338. uint32_t hs_eof1 : 8; // [7:0]
  339. uint32_t fs_eof1 : 8; // [15:8]
  340. uint32_t ls_eof1 : 8; // [23:16]
  341. uint32_t rst : 1; // [24]
  342. uint32_t rstx : 1; // [25]
  343. uint32_t __31_26 : 6; // [31:26]
  344. } b;
  345. } REG_USBC_OTG_EOF_T;
  346. // otg_ep0_txfad_had_hp
  347. typedef union {
  348. uint32_t v;
  349. struct
  350. {
  351. uint32_t txfad : 7; // [6:0]
  352. uint32_t __15_7 : 9; // [15:7]
  353. uint32_t txhad : 7; // [22:16]
  354. uint32_t multiple : 1; // [23]
  355. uint32_t txhp : 7; // [30:24]
  356. uint32_t __31_31 : 1; // [31]
  357. } b;
  358. } REG_USBC_OTG_EP0_TXFAD_HAD_HP_T;
  359. // otg_ep0_rxfad_had_hp
  360. typedef union {
  361. uint32_t v;
  362. struct
  363. {
  364. uint32_t rxfad : 7; // [6:0]
  365. uint32_t __15_7 : 9; // [15:7]
  366. uint32_t rxhad : 7; // [22:16]
  367. uint32_t multiple : 1; // [23]
  368. uint32_t rxhp : 7; // [30:24]
  369. uint32_t __31_31 : 1; // [31]
  370. } b;
  371. } REG_USBC_OTG_EP0_RXFAD_HAD_HP_T;
  372. // otg_ep1_txfad_had_hp
  373. typedef union {
  374. uint32_t v;
  375. struct
  376. {
  377. uint32_t txfad : 7; // [6:0]
  378. uint32_t __15_7 : 9; // [15:7]
  379. uint32_t txhad : 7; // [22:16]
  380. uint32_t multiple : 1; // [23]
  381. uint32_t txhp : 7; // [30:24]
  382. uint32_t __31_31 : 1; // [31]
  383. } b;
  384. } REG_USBC_OTG_EP1_TXFAD_HAD_HP_T;
  385. // otg_ep1_rxfad_had_hp
  386. typedef union {
  387. uint32_t v;
  388. struct
  389. {
  390. uint32_t rxfad : 7; // [6:0]
  391. uint32_t __15_7 : 9; // [15:7]
  392. uint32_t rxhad : 7; // [22:16]
  393. uint32_t multiple : 1; // [23]
  394. uint32_t rxhp : 7; // [30:24]
  395. uint32_t __31_31 : 1; // [31]
  396. } b;
  397. } REG_USBC_OTG_EP1_RXFAD_HAD_HP_T;
  398. // otg_ep2_txfad_had_hp
  399. typedef union {
  400. uint32_t v;
  401. struct
  402. {
  403. uint32_t txfad : 7; // [6:0]
  404. uint32_t __15_7 : 9; // [15:7]
  405. uint32_t txhad : 7; // [22:16]
  406. uint32_t multiple : 1; // [23]
  407. uint32_t txhp : 7; // [30:24]
  408. uint32_t __31_31 : 1; // [31]
  409. } b;
  410. } REG_USBC_OTG_EP2_TXFAD_HAD_HP_T;
  411. // otg_ep2_rxfad_had_hp
  412. typedef union {
  413. uint32_t v;
  414. struct
  415. {
  416. uint32_t rxfad : 7; // [6:0]
  417. uint32_t __15_7 : 9; // [15:7]
  418. uint32_t rxhad : 7; // [22:16]
  419. uint32_t multiple : 1; // [23]
  420. uint32_t rxhp : 7; // [30:24]
  421. uint32_t __31_31 : 1; // [31]
  422. } b;
  423. } REG_USBC_OTG_EP2_RXFAD_HAD_HP_T;
  424. // otg_ep3_txfad_had_hp
  425. typedef union {
  426. uint32_t v;
  427. struct
  428. {
  429. uint32_t txfad : 7; // [6:0]
  430. uint32_t __15_7 : 9; // [15:7]
  431. uint32_t txhad : 7; // [22:16]
  432. uint32_t multiple : 1; // [23]
  433. uint32_t txhp : 7; // [30:24]
  434. uint32_t __31_31 : 1; // [31]
  435. } b;
  436. } REG_USBC_OTG_EP3_TXFAD_HAD_HP_T;
  437. // otg_ep3_rxfad_had_hp
  438. typedef union {
  439. uint32_t v;
  440. struct
  441. {
  442. uint32_t rxfad : 7; // [6:0]
  443. uint32_t __15_7 : 9; // [15:7]
  444. uint32_t rxhad : 7; // [22:16]
  445. uint32_t multiple : 1; // [23]
  446. uint32_t rxhp : 7; // [30:24]
  447. uint32_t __31_31 : 1; // [31]
  448. } b;
  449. } REG_USBC_OTG_EP3_RXFAD_HAD_HP_T;
  450. // otg_ep4_txfad_had_hp
  451. typedef union {
  452. uint32_t v;
  453. struct
  454. {
  455. uint32_t txfad : 7; // [6:0]
  456. uint32_t __15_7 : 9; // [15:7]
  457. uint32_t txhad : 7; // [22:16]
  458. uint32_t multiple : 1; // [23]
  459. uint32_t txhp : 7; // [30:24]
  460. uint32_t __31_31 : 1; // [31]
  461. } b;
  462. } REG_USBC_OTG_EP4_TXFAD_HAD_HP_T;
  463. // otg_ep4_rxfad_had_hp
  464. typedef union {
  465. uint32_t v;
  466. struct
  467. {
  468. uint32_t rxfad : 7; // [6:0]
  469. uint32_t __15_7 : 9; // [15:7]
  470. uint32_t rxhad : 7; // [22:16]
  471. uint32_t multiple : 1; // [23]
  472. uint32_t rxhp : 7; // [30:24]
  473. uint32_t __31_31 : 1; // [31]
  474. } b;
  475. } REG_USBC_OTG_EP4_RXFAD_HAD_HP_T;
  476. // otg_ep5_txfad_had_hp
  477. typedef union {
  478. uint32_t v;
  479. struct
  480. {
  481. uint32_t txfad : 7; // [6:0]
  482. uint32_t __15_7 : 9; // [15:7]
  483. uint32_t txhad : 7; // [22:16]
  484. uint32_t multiple : 1; // [23]
  485. uint32_t txhp : 7; // [30:24]
  486. uint32_t __31_31 : 1; // [31]
  487. } b;
  488. } REG_USBC_OTG_EP5_TXFAD_HAD_HP_T;
  489. // otg_ep5_rxfad_had_hp
  490. typedef union {
  491. uint32_t v;
  492. struct
  493. {
  494. uint32_t rxfad : 7; // [6:0]
  495. uint32_t __15_7 : 9; // [15:7]
  496. uint32_t rxhad : 7; // [22:16]
  497. uint32_t multiple : 1; // [23]
  498. uint32_t rxhp : 7; // [30:24]
  499. uint32_t __31_31 : 1; // [31]
  500. } b;
  501. } REG_USBC_OTG_EP5_RXFAD_HAD_HP_T;
  502. // otg_ep6_txfad_had_hp
  503. typedef union {
  504. uint32_t v;
  505. struct
  506. {
  507. uint32_t txfad : 7; // [6:0]
  508. uint32_t __15_7 : 9; // [15:7]
  509. uint32_t txhad : 7; // [22:16]
  510. uint32_t multiple : 1; // [23]
  511. uint32_t txhp : 7; // [30:24]
  512. uint32_t __31_31 : 1; // [31]
  513. } b;
  514. } REG_USBC_OTG_EP6_TXFAD_HAD_HP_T;
  515. // otg_ep6_rxfad_had_hp
  516. typedef union {
  517. uint32_t v;
  518. struct
  519. {
  520. uint32_t rxfad : 7; // [6:0]
  521. uint32_t __15_7 : 9; // [15:7]
  522. uint32_t rxhad : 7; // [22:16]
  523. uint32_t multiple : 1; // [23]
  524. uint32_t rxhp : 7; // [30:24]
  525. uint32_t __31_31 : 1; // [31]
  526. } b;
  527. } REG_USBC_OTG_EP6_RXFAD_HAD_HP_T;
  528. // otg_ep7_txfad_had_hp
  529. typedef union {
  530. uint32_t v;
  531. struct
  532. {
  533. uint32_t txfad : 7; // [6:0]
  534. uint32_t __15_7 : 9; // [15:7]
  535. uint32_t txhad : 7; // [22:16]
  536. uint32_t multiple : 1; // [23]
  537. uint32_t txhp : 7; // [30:24]
  538. uint32_t __31_31 : 1; // [31]
  539. } b;
  540. } REG_USBC_OTG_EP7_TXFAD_HAD_HP_T;
  541. // otg_ep7_rxfad_had_hp
  542. typedef union {
  543. uint32_t v;
  544. struct
  545. {
  546. uint32_t rxfad : 7; // [6:0]
  547. uint32_t __15_7 : 9; // [15:7]
  548. uint32_t rxhad : 7; // [22:16]
  549. uint32_t multiple : 1; // [23]
  550. uint32_t rxhp : 7; // [30:24]
  551. uint32_t __31_31 : 1; // [31]
  552. } b;
  553. } REG_USBC_OTG_EP7_RXFAD_HAD_HP_T;
  554. // otg_ep8_txfad_had_hp
  555. typedef union {
  556. uint32_t v;
  557. struct
  558. {
  559. uint32_t txfad : 7; // [6:0]
  560. uint32_t __15_7 : 9; // [15:7]
  561. uint32_t txhad : 7; // [22:16]
  562. uint32_t multiple : 1; // [23]
  563. uint32_t txhp : 7; // [30:24]
  564. uint32_t __31_31 : 1; // [31]
  565. } b;
  566. } REG_USBC_OTG_EP8_TXFAD_HAD_HP_T;
  567. // otg_ep8_rxfad_had_hp
  568. typedef union {
  569. uint32_t v;
  570. struct
  571. {
  572. uint32_t rxfad : 7; // [6:0]
  573. uint32_t __15_7 : 9; // [15:7]
  574. uint32_t rxhad : 7; // [22:16]
  575. uint32_t multiple : 1; // [23]
  576. uint32_t rxhp : 7; // [30:24]
  577. uint32_t __31_31 : 1; // [31]
  578. } b;
  579. } REG_USBC_OTG_EP8_RXFAD_HAD_HP_T;
  580. // otg_ep9_txfad_had_hp
  581. typedef union {
  582. uint32_t v;
  583. struct
  584. {
  585. uint32_t txfad : 7; // [6:0]
  586. uint32_t __15_7 : 9; // [15:7]
  587. uint32_t txhad : 7; // [22:16]
  588. uint32_t multiple : 1; // [23]
  589. uint32_t txhp : 7; // [30:24]
  590. uint32_t __31_31 : 1; // [31]
  591. } b;
  592. } REG_USBC_OTG_EP9_TXFAD_HAD_HP_T;
  593. // otg_ep9_rxfad_had_hp
  594. typedef union {
  595. uint32_t v;
  596. struct
  597. {
  598. uint32_t rxfad : 7; // [6:0]
  599. uint32_t __15_7 : 9; // [15:7]
  600. uint32_t rxhad : 7; // [22:16]
  601. uint32_t multiple : 1; // [23]
  602. uint32_t rxhp : 7; // [30:24]
  603. uint32_t __31_31 : 1; // [31]
  604. } b;
  605. } REG_USBC_OTG_EP9_RXFAD_HAD_HP_T;
  606. // otg_ep10_txfad_had_hp
  607. typedef union {
  608. uint32_t v;
  609. struct
  610. {
  611. uint32_t txfad : 7; // [6:0]
  612. uint32_t __15_7 : 9; // [15:7]
  613. uint32_t txhad : 7; // [22:16]
  614. uint32_t multiple : 1; // [23]
  615. uint32_t txhp : 7; // [30:24]
  616. uint32_t __31_31 : 1; // [31]
  617. } b;
  618. } REG_USBC_OTG_EP10_TXFAD_HAD_HP_T;
  619. // otg_ep10_rxfad_had_hp
  620. typedef union {
  621. uint32_t v;
  622. struct
  623. {
  624. uint32_t rxfad : 7; // [6:0]
  625. uint32_t __15_7 : 9; // [15:7]
  626. uint32_t rxhad : 7; // [22:16]
  627. uint32_t multiple : 1; // [23]
  628. uint32_t rxhp : 7; // [30:24]
  629. uint32_t __31_31 : 1; // [31]
  630. } b;
  631. } REG_USBC_OTG_EP10_RXFAD_HAD_HP_T;
  632. // otg_ep11_txfad_had_hp
  633. typedef union {
  634. uint32_t v;
  635. struct
  636. {
  637. uint32_t txfad : 7; // [6:0]
  638. uint32_t __15_7 : 9; // [15:7]
  639. uint32_t txhad : 7; // [22:16]
  640. uint32_t multiple : 1; // [23]
  641. uint32_t txhp : 7; // [30:24]
  642. uint32_t __31_31 : 1; // [31]
  643. } b;
  644. } REG_USBC_OTG_EP11_TXFAD_HAD_HP_T;
  645. // otg_ep11_rxfad_had_hp
  646. typedef union {
  647. uint32_t v;
  648. struct
  649. {
  650. uint32_t rxfad : 7; // [6:0]
  651. uint32_t __15_7 : 9; // [15:7]
  652. uint32_t rxhad : 7; // [22:16]
  653. uint32_t multiple : 1; // [23]
  654. uint32_t rxhp : 7; // [30:24]
  655. uint32_t __31_31 : 1; // [31]
  656. } b;
  657. } REG_USBC_OTG_EP11_RXFAD_HAD_HP_T;
  658. // otg_ep12_txfad_had_hp
  659. typedef union {
  660. uint32_t v;
  661. struct
  662. {
  663. uint32_t txfad : 7; // [6:0]
  664. uint32_t __15_7 : 9; // [15:7]
  665. uint32_t txhad : 7; // [22:16]
  666. uint32_t multiple : 1; // [23]
  667. uint32_t txhp : 7; // [30:24]
  668. uint32_t __31_31 : 1; // [31]
  669. } b;
  670. } REG_USBC_OTG_EP12_TXFAD_HAD_HP_T;
  671. // otg_ep12_rxfad_had_hp
  672. typedef union {
  673. uint32_t v;
  674. struct
  675. {
  676. uint32_t rxfad : 7; // [6:0]
  677. uint32_t __15_7 : 9; // [15:7]
  678. uint32_t rxhad : 7; // [22:16]
  679. uint32_t multiple : 1; // [23]
  680. uint32_t rxhp : 7; // [30:24]
  681. uint32_t __31_31 : 1; // [31]
  682. } b;
  683. } REG_USBC_OTG_EP12_RXFAD_HAD_HP_T;
  684. // otg_ep13_txfad_had_hp
  685. typedef union {
  686. uint32_t v;
  687. struct
  688. {
  689. uint32_t txfad : 7; // [6:0]
  690. uint32_t __15_7 : 9; // [15:7]
  691. uint32_t txhad : 7; // [22:16]
  692. uint32_t multiple : 1; // [23]
  693. uint32_t txhp : 7; // [30:24]
  694. uint32_t __31_31 : 1; // [31]
  695. } b;
  696. } REG_USBC_OTG_EP13_TXFAD_HAD_HP_T;
  697. // otg_ep13_rxfad_had_hp
  698. typedef union {
  699. uint32_t v;
  700. struct
  701. {
  702. uint32_t rxfad : 7; // [6:0]
  703. uint32_t __15_7 : 9; // [15:7]
  704. uint32_t rxhad : 7; // [22:16]
  705. uint32_t multiple : 1; // [23]
  706. uint32_t rxhp : 7; // [30:24]
  707. uint32_t __31_31 : 1; // [31]
  708. } b;
  709. } REG_USBC_OTG_EP13_RXFAD_HAD_HP_T;
  710. // otg_ep14_txfad_had_hp
  711. typedef union {
  712. uint32_t v;
  713. struct
  714. {
  715. uint32_t txfad : 7; // [6:0]
  716. uint32_t __15_7 : 9; // [15:7]
  717. uint32_t txhad : 7; // [22:16]
  718. uint32_t multiple : 1; // [23]
  719. uint32_t txhp : 7; // [30:24]
  720. uint32_t __31_31 : 1; // [31]
  721. } b;
  722. } REG_USBC_OTG_EP14_TXFAD_HAD_HP_T;
  723. // otg_ep14_rxfad_had_hp
  724. typedef union {
  725. uint32_t v;
  726. struct
  727. {
  728. uint32_t rxfad : 7; // [6:0]
  729. uint32_t __15_7 : 9; // [15:7]
  730. uint32_t rxhad : 7; // [22:16]
  731. uint32_t multiple : 1; // [23]
  732. uint32_t rxhp : 7; // [30:24]
  733. uint32_t __31_31 : 1; // [31]
  734. } b;
  735. } REG_USBC_OTG_EP14_RXFAD_HAD_HP_T;
  736. // otg_ep15_txfad_had_hp
  737. typedef union {
  738. uint32_t v;
  739. struct
  740. {
  741. uint32_t txfad : 7; // [6:0]
  742. uint32_t __15_7 : 9; // [15:7]
  743. uint32_t txhad : 7; // [22:16]
  744. uint32_t multiple : 1; // [23]
  745. uint32_t txhp : 7; // [30:24]
  746. uint32_t __31_31 : 1; // [31]
  747. } b;
  748. } REG_USBC_OTG_EP15_TXFAD_HAD_HP_T;
  749. // otg_ep15_rxfad_had_hp
  750. typedef union {
  751. uint32_t v;
  752. struct
  753. {
  754. uint32_t rxfad : 7; // [6:0]
  755. uint32_t __15_7 : 9; // [15:7]
  756. uint32_t rxhad : 7; // [22:16]
  757. uint32_t multiple : 1; // [23]
  758. uint32_t rxhp : 7; // [30:24]
  759. uint32_t __31_31 : 1; // [31]
  760. } b;
  761. } REG_USBC_OTG_EP15_RXFAD_HAD_HP_T;
  762. // reg_ep1_txmaxp_csr
  763. typedef union {
  764. uint32_t v;
  765. struct
  766. {
  767. uint32_t maxp : 11; // [10:0]
  768. uint32_t mult : 5; // [15:11]
  769. uint32_t trdy : 1; // [16]
  770. uint32_t fne : 1; // [17]
  771. uint32_t err : 1; // [18]
  772. uint32_t ff : 1; // [19]
  773. uint32_t stp : 1; // [20]
  774. uint32_t rxs : 1; // [21]
  775. uint32_t clr : 1; // [22]
  776. uint32_t nak : 1; // [23]
  777. uint32_t dt : 1; // [24]
  778. uint32_t dwe : 1; // [25]
  779. uint32_t drm : 1; // [26]
  780. uint32_t fdt : 1; // [27]
  781. uint32_t dmr : 1; // [28]
  782. uint32_t md : 1; // [29]
  783. uint32_t iso : 1; // [30]
  784. uint32_t aset : 1; // [31]
  785. } b;
  786. } REG_USBC_REG_EP1_TXMAXP_CSR_T;
  787. // reg_ep1_rxmaxp_csr
  788. typedef union {
  789. uint32_t v;
  790. struct
  791. {
  792. uint32_t maxp : 11; // [10:0]
  793. uint32_t mult : 5; // [15:11]
  794. uint32_t rrdy : 1; // [16]
  795. uint32_t fful : 1; // [17]
  796. uint32_t er : 1; // [18]
  797. uint32_t der : 1; // [19]
  798. uint32_t ff : 1; // [20]
  799. uint32_t rpk : 1; // [21]
  800. uint32_t rs : 1; // [22]
  801. uint32_t clr : 1; // [23]
  802. uint32_t irx : 1; // [24]
  803. uint32_t dt : 1; // [25]
  804. uint32_t dwe : 1; // [26]
  805. uint32_t dmd : 1; // [27]
  806. uint32_t dny : 1; // [28]
  807. uint32_t dmr : 1; // [29]
  808. uint32_t arq : 1; // [30]
  809. uint32_t aclr : 1; // [31]
  810. } b;
  811. } REG_USBC_REG_EP1_RXMAXP_CSR_T;
  812. // reg_ep1_rxcnt_txtype
  813. typedef union {
  814. uint32_t v;
  815. struct
  816. {
  817. uint32_t rxcnt : 13; // [12:0], read only
  818. uint32_t __15_13 : 3; // [15:13]
  819. uint32_t ep : 4; // [19:16]
  820. uint32_t prot : 2; // [21:20]
  821. uint32_t speed : 2; // [23:22]
  822. uint32_t txpi : 8; // [31:24]
  823. } b;
  824. } REG_USBC_REG_EP1_RXCNT_TXTYPE_T;
  825. // reg_ep1_rxtype_intv
  826. typedef union {
  827. uint32_t v;
  828. struct
  829. {
  830. uint32_t ep : 4; // [3:0]
  831. uint32_t prot : 2; // [5:4]
  832. uint32_t speed : 2; // [7:6]
  833. uint32_t rxpi : 8; // [15:8]
  834. uint32_t __31_16 : 16; // [31:16]
  835. } b;
  836. } REG_USBC_REG_EP1_RXTYPE_INTV_T;
  837. // reg_ep2_txmaxp_csr
  838. typedef union {
  839. uint32_t v;
  840. struct
  841. {
  842. uint32_t maxp : 11; // [10:0]
  843. uint32_t mult : 5; // [15:11]
  844. uint32_t trdy : 1; // [16]
  845. uint32_t fne : 1; // [17]
  846. uint32_t err : 1; // [18]
  847. uint32_t ff : 1; // [19]
  848. uint32_t stp : 1; // [20]
  849. uint32_t rxs : 1; // [21]
  850. uint32_t clr : 1; // [22]
  851. uint32_t nak : 1; // [23]
  852. uint32_t dt : 1; // [24]
  853. uint32_t dwe : 1; // [25]
  854. uint32_t drm : 1; // [26]
  855. uint32_t fdt : 1; // [27]
  856. uint32_t dmr : 1; // [28]
  857. uint32_t md : 1; // [29]
  858. uint32_t iso : 1; // [30]
  859. uint32_t aset : 1; // [31]
  860. } b;
  861. } REG_USBC_REG_EP2_TXMAXP_CSR_T;
  862. // reg_ep2_rxmaxp_csr
  863. typedef union {
  864. uint32_t v;
  865. struct
  866. {
  867. uint32_t maxp : 11; // [10:0]
  868. uint32_t mult : 5; // [15:11]
  869. uint32_t rrdy : 1; // [16]
  870. uint32_t fful : 1; // [17]
  871. uint32_t er : 1; // [18]
  872. uint32_t der : 1; // [19]
  873. uint32_t ff : 1; // [20]
  874. uint32_t rpk : 1; // [21]
  875. uint32_t rs : 1; // [22]
  876. uint32_t clr : 1; // [23]
  877. uint32_t irx : 1; // [24]
  878. uint32_t dt : 1; // [25]
  879. uint32_t dwe : 1; // [26]
  880. uint32_t dmd : 1; // [27]
  881. uint32_t dny : 1; // [28]
  882. uint32_t dmr : 1; // [29]
  883. uint32_t arq : 1; // [30]
  884. uint32_t aclr : 1; // [31]
  885. } b;
  886. } REG_USBC_REG_EP2_RXMAXP_CSR_T;
  887. // reg_ep2_rxcnt_txtype
  888. typedef union {
  889. uint32_t v;
  890. struct
  891. {
  892. uint32_t rxcnt : 13; // [12:0], read only
  893. uint32_t __15_13 : 3; // [15:13]
  894. uint32_t ep : 4; // [19:16]
  895. uint32_t prot : 2; // [21:20]
  896. uint32_t speed : 2; // [23:22]
  897. uint32_t txpi : 8; // [31:24]
  898. } b;
  899. } REG_USBC_REG_EP2_RXCNT_TXTYPE_T;
  900. // reg_ep2_rxtype_intv
  901. typedef union {
  902. uint32_t v;
  903. struct
  904. {
  905. uint32_t ep : 4; // [3:0]
  906. uint32_t prot : 2; // [5:4]
  907. uint32_t speed : 2; // [7:6]
  908. uint32_t rxpi : 8; // [15:8]
  909. uint32_t __31_16 : 16; // [31:16]
  910. } b;
  911. } REG_USBC_REG_EP2_RXTYPE_INTV_T;
  912. // reg_ep3_txmaxp_csr
  913. typedef union {
  914. uint32_t v;
  915. struct
  916. {
  917. uint32_t maxp : 11; // [10:0]
  918. uint32_t mult : 5; // [15:11]
  919. uint32_t trdy : 1; // [16]
  920. uint32_t fne : 1; // [17]
  921. uint32_t err : 1; // [18]
  922. uint32_t ff : 1; // [19]
  923. uint32_t stp : 1; // [20]
  924. uint32_t rxs : 1; // [21]
  925. uint32_t clr : 1; // [22]
  926. uint32_t nak : 1; // [23]
  927. uint32_t dt : 1; // [24]
  928. uint32_t dwe : 1; // [25]
  929. uint32_t drm : 1; // [26]
  930. uint32_t fdt : 1; // [27]
  931. uint32_t dmr : 1; // [28]
  932. uint32_t md : 1; // [29]
  933. uint32_t iso : 1; // [30]
  934. uint32_t aset : 1; // [31]
  935. } b;
  936. } REG_USBC_REG_EP3_TXMAXP_CSR_T;
  937. // reg_ep3_rxmaxp_csr
  938. typedef union {
  939. uint32_t v;
  940. struct
  941. {
  942. uint32_t maxp : 11; // [10:0]
  943. uint32_t mult : 5; // [15:11]
  944. uint32_t rrdy : 1; // [16]
  945. uint32_t fful : 1; // [17]
  946. uint32_t er : 1; // [18]
  947. uint32_t der : 1; // [19]
  948. uint32_t ff : 1; // [20]
  949. uint32_t rpk : 1; // [21]
  950. uint32_t rs : 1; // [22]
  951. uint32_t clr : 1; // [23]
  952. uint32_t irx : 1; // [24]
  953. uint32_t dt : 1; // [25]
  954. uint32_t dwe : 1; // [26]
  955. uint32_t dmd : 1; // [27]
  956. uint32_t dny : 1; // [28]
  957. uint32_t dmr : 1; // [29]
  958. uint32_t arq : 1; // [30]
  959. uint32_t aclr : 1; // [31]
  960. } b;
  961. } REG_USBC_REG_EP3_RXMAXP_CSR_T;
  962. // reg_ep3_rxcnt_txtype
  963. typedef union {
  964. uint32_t v;
  965. struct
  966. {
  967. uint32_t rxcnt : 13; // [12:0], read only
  968. uint32_t __15_13 : 3; // [15:13]
  969. uint32_t ep : 4; // [19:16]
  970. uint32_t prot : 2; // [21:20]
  971. uint32_t speed : 2; // [23:22]
  972. uint32_t txpi : 8; // [31:24]
  973. } b;
  974. } REG_USBC_REG_EP3_RXCNT_TXTYPE_T;
  975. // reg_ep3_rxtype_intv
  976. typedef union {
  977. uint32_t v;
  978. struct
  979. {
  980. uint32_t ep : 4; // [3:0]
  981. uint32_t prot : 2; // [5:4]
  982. uint32_t speed : 2; // [7:6]
  983. uint32_t rxpi : 8; // [15:8]
  984. uint32_t __31_16 : 16; // [31:16]
  985. } b;
  986. } REG_USBC_REG_EP3_RXTYPE_INTV_T;
  987. // reg_ep4_txmaxp_csr
  988. typedef union {
  989. uint32_t v;
  990. struct
  991. {
  992. uint32_t maxp : 11; // [10:0]
  993. uint32_t mult : 5; // [15:11]
  994. uint32_t trdy : 1; // [16]
  995. uint32_t fne : 1; // [17]
  996. uint32_t err : 1; // [18]
  997. uint32_t ff : 1; // [19]
  998. uint32_t stp : 1; // [20]
  999. uint32_t rxs : 1; // [21]
  1000. uint32_t clr : 1; // [22]
  1001. uint32_t nak : 1; // [23]
  1002. uint32_t dt : 1; // [24]
  1003. uint32_t dwe : 1; // [25]
  1004. uint32_t drm : 1; // [26]
  1005. uint32_t fdt : 1; // [27]
  1006. uint32_t dmr : 1; // [28]
  1007. uint32_t md : 1; // [29]
  1008. uint32_t iso : 1; // [30]
  1009. uint32_t aset : 1; // [31]
  1010. } b;
  1011. } REG_USBC_REG_EP4_TXMAXP_CSR_T;
  1012. // reg_ep4_rxmaxp_csr
  1013. typedef union {
  1014. uint32_t v;
  1015. struct
  1016. {
  1017. uint32_t maxp : 11; // [10:0]
  1018. uint32_t mult : 5; // [15:11]
  1019. uint32_t rrdy : 1; // [16]
  1020. uint32_t fful : 1; // [17]
  1021. uint32_t er : 1; // [18]
  1022. uint32_t der : 1; // [19]
  1023. uint32_t ff : 1; // [20]
  1024. uint32_t rpk : 1; // [21]
  1025. uint32_t rs : 1; // [22]
  1026. uint32_t clr : 1; // [23]
  1027. uint32_t irx : 1; // [24]
  1028. uint32_t dt : 1; // [25]
  1029. uint32_t dwe : 1; // [26]
  1030. uint32_t dmd : 1; // [27]
  1031. uint32_t dny : 1; // [28]
  1032. uint32_t dmr : 1; // [29]
  1033. uint32_t arq : 1; // [30]
  1034. uint32_t aclr : 1; // [31]
  1035. } b;
  1036. } REG_USBC_REG_EP4_RXMAXP_CSR_T;
  1037. // reg_ep4_rxcnt_txtype
  1038. typedef union {
  1039. uint32_t v;
  1040. struct
  1041. {
  1042. uint32_t rxcnt : 13; // [12:0], read only
  1043. uint32_t __15_13 : 3; // [15:13]
  1044. uint32_t ep : 4; // [19:16]
  1045. uint32_t prot : 2; // [21:20]
  1046. uint32_t speed : 2; // [23:22]
  1047. uint32_t txpi : 8; // [31:24]
  1048. } b;
  1049. } REG_USBC_REG_EP4_RXCNT_TXTYPE_T;
  1050. // reg_ep4_rxtype_intv
  1051. typedef union {
  1052. uint32_t v;
  1053. struct
  1054. {
  1055. uint32_t ep : 4; // [3:0]
  1056. uint32_t prot : 2; // [5:4]
  1057. uint32_t speed : 2; // [7:6]
  1058. uint32_t rxpi : 8; // [15:8]
  1059. uint32_t __31_16 : 16; // [31:16]
  1060. } b;
  1061. } REG_USBC_REG_EP4_RXTYPE_INTV_T;
  1062. // reg_ep5_txmaxp_csr
  1063. typedef union {
  1064. uint32_t v;
  1065. struct
  1066. {
  1067. uint32_t maxp : 11; // [10:0]
  1068. uint32_t mult : 5; // [15:11]
  1069. uint32_t trdy : 1; // [16]
  1070. uint32_t fne : 1; // [17]
  1071. uint32_t err : 1; // [18]
  1072. uint32_t ff : 1; // [19]
  1073. uint32_t stp : 1; // [20]
  1074. uint32_t rxs : 1; // [21]
  1075. uint32_t clr : 1; // [22]
  1076. uint32_t nak : 1; // [23]
  1077. uint32_t dt : 1; // [24]
  1078. uint32_t dwe : 1; // [25]
  1079. uint32_t drm : 1; // [26]
  1080. uint32_t fdt : 1; // [27]
  1081. uint32_t dmr : 1; // [28]
  1082. uint32_t md : 1; // [29]
  1083. uint32_t iso : 1; // [30]
  1084. uint32_t aset : 1; // [31]
  1085. } b;
  1086. } REG_USBC_REG_EP5_TXMAXP_CSR_T;
  1087. // reg_ep5_rxmaxp_csr
  1088. typedef union {
  1089. uint32_t v;
  1090. struct
  1091. {
  1092. uint32_t maxp : 11; // [10:0]
  1093. uint32_t mult : 5; // [15:11]
  1094. uint32_t rrdy : 1; // [16]
  1095. uint32_t fful : 1; // [17]
  1096. uint32_t er : 1; // [18]
  1097. uint32_t der : 1; // [19]
  1098. uint32_t ff : 1; // [20]
  1099. uint32_t rpk : 1; // [21]
  1100. uint32_t rs : 1; // [22]
  1101. uint32_t clr : 1; // [23]
  1102. uint32_t irx : 1; // [24]
  1103. uint32_t dt : 1; // [25]
  1104. uint32_t dwe : 1; // [26]
  1105. uint32_t dmd : 1; // [27]
  1106. uint32_t dny : 1; // [28]
  1107. uint32_t dmr : 1; // [29]
  1108. uint32_t arq : 1; // [30]
  1109. uint32_t aclr : 1; // [31]
  1110. } b;
  1111. } REG_USBC_REG_EP5_RXMAXP_CSR_T;
  1112. // reg_ep5_rxcnt_txtype
  1113. typedef union {
  1114. uint32_t v;
  1115. struct
  1116. {
  1117. uint32_t rxcnt : 13; // [12:0], read only
  1118. uint32_t __15_13 : 3; // [15:13]
  1119. uint32_t ep : 4; // [19:16]
  1120. uint32_t prot : 2; // [21:20]
  1121. uint32_t speed : 2; // [23:22]
  1122. uint32_t txpi : 8; // [31:24]
  1123. } b;
  1124. } REG_USBC_REG_EP5_RXCNT_TXTYPE_T;
  1125. // reg_ep5_rxtype_intv
  1126. typedef union {
  1127. uint32_t v;
  1128. struct
  1129. {
  1130. uint32_t ep : 4; // [3:0]
  1131. uint32_t prot : 2; // [5:4]
  1132. uint32_t speed : 2; // [7:6]
  1133. uint32_t rxpi : 8; // [15:8]
  1134. uint32_t __31_16 : 16; // [31:16]
  1135. } b;
  1136. } REG_USBC_REG_EP5_RXTYPE_INTV_T;
  1137. // reg_ep6_txmaxp_csr
  1138. typedef union {
  1139. uint32_t v;
  1140. struct
  1141. {
  1142. uint32_t maxp : 11; // [10:0]
  1143. uint32_t mult : 5; // [15:11]
  1144. uint32_t trdy : 1; // [16]
  1145. uint32_t fne : 1; // [17]
  1146. uint32_t err : 1; // [18]
  1147. uint32_t ff : 1; // [19]
  1148. uint32_t stp : 1; // [20]
  1149. uint32_t rxs : 1; // [21]
  1150. uint32_t clr : 1; // [22]
  1151. uint32_t nak : 1; // [23]
  1152. uint32_t dt : 1; // [24]
  1153. uint32_t dwe : 1; // [25]
  1154. uint32_t drm : 1; // [26]
  1155. uint32_t fdt : 1; // [27]
  1156. uint32_t dmr : 1; // [28]
  1157. uint32_t md : 1; // [29]
  1158. uint32_t iso : 1; // [30]
  1159. uint32_t aset : 1; // [31]
  1160. } b;
  1161. } REG_USBC_REG_EP6_TXMAXP_CSR_T;
  1162. // reg_ep6_rxmaxp_csr
  1163. typedef union {
  1164. uint32_t v;
  1165. struct
  1166. {
  1167. uint32_t maxp : 11; // [10:0]
  1168. uint32_t mult : 5; // [15:11]
  1169. uint32_t rrdy : 1; // [16]
  1170. uint32_t fful : 1; // [17]
  1171. uint32_t er : 1; // [18]
  1172. uint32_t der : 1; // [19]
  1173. uint32_t ff : 1; // [20]
  1174. uint32_t rpk : 1; // [21]
  1175. uint32_t rs : 1; // [22]
  1176. uint32_t clr : 1; // [23]
  1177. uint32_t irx : 1; // [24]
  1178. uint32_t dt : 1; // [25]
  1179. uint32_t dwe : 1; // [26]
  1180. uint32_t dmd : 1; // [27]
  1181. uint32_t dny : 1; // [28]
  1182. uint32_t dmr : 1; // [29]
  1183. uint32_t arq : 1; // [30]
  1184. uint32_t aclr : 1; // [31]
  1185. } b;
  1186. } REG_USBC_REG_EP6_RXMAXP_CSR_T;
  1187. // reg_ep6_rxcnt_txtype
  1188. typedef union {
  1189. uint32_t v;
  1190. struct
  1191. {
  1192. uint32_t rxcnt : 13; // [12:0], read only
  1193. uint32_t __15_13 : 3; // [15:13]
  1194. uint32_t ep : 4; // [19:16]
  1195. uint32_t prot : 2; // [21:20]
  1196. uint32_t speed : 2; // [23:22]
  1197. uint32_t txpi : 8; // [31:24]
  1198. } b;
  1199. } REG_USBC_REG_EP6_RXCNT_TXTYPE_T;
  1200. // reg_ep6_rxtype_intv
  1201. typedef union {
  1202. uint32_t v;
  1203. struct
  1204. {
  1205. uint32_t ep : 4; // [3:0]
  1206. uint32_t prot : 2; // [5:4]
  1207. uint32_t speed : 2; // [7:6]
  1208. uint32_t rxpi : 8; // [15:8]
  1209. uint32_t __31_16 : 16; // [31:16]
  1210. } b;
  1211. } REG_USBC_REG_EP6_RXTYPE_INTV_T;
  1212. // reg_ep7_txmaxp_csr
  1213. typedef union {
  1214. uint32_t v;
  1215. struct
  1216. {
  1217. uint32_t maxp : 11; // [10:0]
  1218. uint32_t mult : 5; // [15:11]
  1219. uint32_t trdy : 1; // [16]
  1220. uint32_t fne : 1; // [17]
  1221. uint32_t err : 1; // [18]
  1222. uint32_t ff : 1; // [19]
  1223. uint32_t stp : 1; // [20]
  1224. uint32_t rxs : 1; // [21]
  1225. uint32_t clr : 1; // [22]
  1226. uint32_t nak : 1; // [23]
  1227. uint32_t dt : 1; // [24]
  1228. uint32_t dwe : 1; // [25]
  1229. uint32_t drm : 1; // [26]
  1230. uint32_t fdt : 1; // [27]
  1231. uint32_t dmr : 1; // [28]
  1232. uint32_t md : 1; // [29]
  1233. uint32_t iso : 1; // [30]
  1234. uint32_t aset : 1; // [31]
  1235. } b;
  1236. } REG_USBC_REG_EP7_TXMAXP_CSR_T;
  1237. // reg_ep7_rxmaxp_csr
  1238. typedef union {
  1239. uint32_t v;
  1240. struct
  1241. {
  1242. uint32_t maxp : 11; // [10:0]
  1243. uint32_t mult : 5; // [15:11]
  1244. uint32_t rrdy : 1; // [16]
  1245. uint32_t fful : 1; // [17]
  1246. uint32_t er : 1; // [18]
  1247. uint32_t der : 1; // [19]
  1248. uint32_t ff : 1; // [20]
  1249. uint32_t rpk : 1; // [21]
  1250. uint32_t rs : 1; // [22]
  1251. uint32_t clr : 1; // [23]
  1252. uint32_t irx : 1; // [24]
  1253. uint32_t dt : 1; // [25]
  1254. uint32_t dwe : 1; // [26]
  1255. uint32_t dmd : 1; // [27]
  1256. uint32_t dny : 1; // [28]
  1257. uint32_t dmr : 1; // [29]
  1258. uint32_t arq : 1; // [30]
  1259. uint32_t aclr : 1; // [31]
  1260. } b;
  1261. } REG_USBC_REG_EP7_RXMAXP_CSR_T;
  1262. // reg_ep7_rxcnt_txtype
  1263. typedef union {
  1264. uint32_t v;
  1265. struct
  1266. {
  1267. uint32_t rxcnt : 13; // [12:0], read only
  1268. uint32_t __15_13 : 3; // [15:13]
  1269. uint32_t ep : 4; // [19:16]
  1270. uint32_t prot : 2; // [21:20]
  1271. uint32_t speed : 2; // [23:22]
  1272. uint32_t txpi : 8; // [31:24]
  1273. } b;
  1274. } REG_USBC_REG_EP7_RXCNT_TXTYPE_T;
  1275. // reg_ep7_rxtype_intv
  1276. typedef union {
  1277. uint32_t v;
  1278. struct
  1279. {
  1280. uint32_t ep : 4; // [3:0]
  1281. uint32_t prot : 2; // [5:4]
  1282. uint32_t speed : 2; // [7:6]
  1283. uint32_t rxpi : 8; // [15:8]
  1284. uint32_t __31_16 : 16; // [31:16]
  1285. } b;
  1286. } REG_USBC_REG_EP7_RXTYPE_INTV_T;
  1287. // reg_ep8_txmaxp_csr
  1288. typedef union {
  1289. uint32_t v;
  1290. struct
  1291. {
  1292. uint32_t maxp : 11; // [10:0]
  1293. uint32_t mult : 5; // [15:11]
  1294. uint32_t trdy : 1; // [16]
  1295. uint32_t fne : 1; // [17]
  1296. uint32_t err : 1; // [18]
  1297. uint32_t ff : 1; // [19]
  1298. uint32_t stp : 1; // [20]
  1299. uint32_t rxs : 1; // [21]
  1300. uint32_t clr : 1; // [22]
  1301. uint32_t nak : 1; // [23]
  1302. uint32_t dt : 1; // [24]
  1303. uint32_t dwe : 1; // [25]
  1304. uint32_t drm : 1; // [26]
  1305. uint32_t fdt : 1; // [27]
  1306. uint32_t dmr : 1; // [28]
  1307. uint32_t md : 1; // [29]
  1308. uint32_t iso : 1; // [30]
  1309. uint32_t aset : 1; // [31]
  1310. } b;
  1311. } REG_USBC_REG_EP8_TXMAXP_CSR_T;
  1312. // reg_ep8_rxmaxp_csr
  1313. typedef union {
  1314. uint32_t v;
  1315. struct
  1316. {
  1317. uint32_t maxp : 11; // [10:0]
  1318. uint32_t mult : 5; // [15:11]
  1319. uint32_t rrdy : 1; // [16]
  1320. uint32_t fful : 1; // [17]
  1321. uint32_t er : 1; // [18]
  1322. uint32_t der : 1; // [19]
  1323. uint32_t ff : 1; // [20]
  1324. uint32_t rpk : 1; // [21]
  1325. uint32_t rs : 1; // [22]
  1326. uint32_t clr : 1; // [23]
  1327. uint32_t irx : 1; // [24]
  1328. uint32_t dt : 1; // [25]
  1329. uint32_t dwe : 1; // [26]
  1330. uint32_t dmd : 1; // [27]
  1331. uint32_t dny : 1; // [28]
  1332. uint32_t dmr : 1; // [29]
  1333. uint32_t arq : 1; // [30]
  1334. uint32_t aclr : 1; // [31]
  1335. } b;
  1336. } REG_USBC_REG_EP8_RXMAXP_CSR_T;
  1337. // reg_ep8_rxcnt_txtype
  1338. typedef union {
  1339. uint32_t v;
  1340. struct
  1341. {
  1342. uint32_t rxcnt : 13; // [12:0], read only
  1343. uint32_t __15_13 : 3; // [15:13]
  1344. uint32_t ep : 4; // [19:16]
  1345. uint32_t prot : 2; // [21:20]
  1346. uint32_t speed : 2; // [23:22]
  1347. uint32_t txpi : 8; // [31:24]
  1348. } b;
  1349. } REG_USBC_REG_EP8_RXCNT_TXTYPE_T;
  1350. // reg_ep8_rxtype_intv
  1351. typedef union {
  1352. uint32_t v;
  1353. struct
  1354. {
  1355. uint32_t ep : 4; // [3:0]
  1356. uint32_t prot : 2; // [5:4]
  1357. uint32_t speed : 2; // [7:6]
  1358. uint32_t rxpi : 8; // [15:8]
  1359. uint32_t __31_16 : 16; // [31:16]
  1360. } b;
  1361. } REG_USBC_REG_EP8_RXTYPE_INTV_T;
  1362. // reg_ep9_txmaxp_csr
  1363. typedef union {
  1364. uint32_t v;
  1365. struct
  1366. {
  1367. uint32_t maxp : 11; // [10:0]
  1368. uint32_t mult : 5; // [15:11]
  1369. uint32_t trdy : 1; // [16]
  1370. uint32_t fne : 1; // [17]
  1371. uint32_t err : 1; // [18]
  1372. uint32_t ff : 1; // [19]
  1373. uint32_t stp : 1; // [20]
  1374. uint32_t rxs : 1; // [21]
  1375. uint32_t clr : 1; // [22]
  1376. uint32_t nak : 1; // [23]
  1377. uint32_t dt : 1; // [24]
  1378. uint32_t dwe : 1; // [25]
  1379. uint32_t drm : 1; // [26]
  1380. uint32_t fdt : 1; // [27]
  1381. uint32_t dmr : 1; // [28]
  1382. uint32_t md : 1; // [29]
  1383. uint32_t iso : 1; // [30]
  1384. uint32_t aset : 1; // [31]
  1385. } b;
  1386. } REG_USBC_REG_EP9_TXMAXP_CSR_T;
  1387. // reg_ep9_rxmaxp_csr
  1388. typedef union {
  1389. uint32_t v;
  1390. struct
  1391. {
  1392. uint32_t maxp : 11; // [10:0]
  1393. uint32_t mult : 5; // [15:11]
  1394. uint32_t rrdy : 1; // [16]
  1395. uint32_t fful : 1; // [17]
  1396. uint32_t er : 1; // [18]
  1397. uint32_t der : 1; // [19]
  1398. uint32_t ff : 1; // [20]
  1399. uint32_t rpk : 1; // [21]
  1400. uint32_t rs : 1; // [22]
  1401. uint32_t clr : 1; // [23]
  1402. uint32_t irx : 1; // [24]
  1403. uint32_t dt : 1; // [25]
  1404. uint32_t dwe : 1; // [26]
  1405. uint32_t dmd : 1; // [27]
  1406. uint32_t dny : 1; // [28]
  1407. uint32_t dmr : 1; // [29]
  1408. uint32_t arq : 1; // [30]
  1409. uint32_t aclr : 1; // [31]
  1410. } b;
  1411. } REG_USBC_REG_EP9_RXMAXP_CSR_T;
  1412. // reg_ep9_rxcnt_txtype
  1413. typedef union {
  1414. uint32_t v;
  1415. struct
  1416. {
  1417. uint32_t rxcnt : 13; // [12:0], read only
  1418. uint32_t __15_13 : 3; // [15:13]
  1419. uint32_t ep : 4; // [19:16]
  1420. uint32_t prot : 2; // [21:20]
  1421. uint32_t speed : 2; // [23:22]
  1422. uint32_t txpi : 8; // [31:24]
  1423. } b;
  1424. } REG_USBC_REG_EP9_RXCNT_TXTYPE_T;
  1425. // reg_ep9_rxtype_intv
  1426. typedef union {
  1427. uint32_t v;
  1428. struct
  1429. {
  1430. uint32_t ep : 4; // [3:0]
  1431. uint32_t prot : 2; // [5:4]
  1432. uint32_t speed : 2; // [7:6]
  1433. uint32_t rxpi : 8; // [15:8]
  1434. uint32_t __31_16 : 16; // [31:16]
  1435. } b;
  1436. } REG_USBC_REG_EP9_RXTYPE_INTV_T;
  1437. // reg_ep10_txmaxp_csr
  1438. typedef union {
  1439. uint32_t v;
  1440. struct
  1441. {
  1442. uint32_t maxp : 11; // [10:0]
  1443. uint32_t mult : 5; // [15:11]
  1444. uint32_t trdy : 1; // [16]
  1445. uint32_t fne : 1; // [17]
  1446. uint32_t err : 1; // [18]
  1447. uint32_t ff : 1; // [19]
  1448. uint32_t stp : 1; // [20]
  1449. uint32_t rxs : 1; // [21]
  1450. uint32_t clr : 1; // [22]
  1451. uint32_t nak : 1; // [23]
  1452. uint32_t dt : 1; // [24]
  1453. uint32_t dwe : 1; // [25]
  1454. uint32_t drm : 1; // [26]
  1455. uint32_t fdt : 1; // [27]
  1456. uint32_t dmr : 1; // [28]
  1457. uint32_t md : 1; // [29]
  1458. uint32_t iso : 1; // [30]
  1459. uint32_t aset : 1; // [31]
  1460. } b;
  1461. } REG_USBC_REG_EP10_TXMAXP_CSR_T;
  1462. // reg_ep10_rxmaxp_csr
  1463. typedef union {
  1464. uint32_t v;
  1465. struct
  1466. {
  1467. uint32_t maxp : 11; // [10:0]
  1468. uint32_t mult : 5; // [15:11]
  1469. uint32_t rrdy : 1; // [16]
  1470. uint32_t fful : 1; // [17]
  1471. uint32_t er : 1; // [18]
  1472. uint32_t der : 1; // [19]
  1473. uint32_t ff : 1; // [20]
  1474. uint32_t rpk : 1; // [21]
  1475. uint32_t rs : 1; // [22]
  1476. uint32_t clr : 1; // [23]
  1477. uint32_t irx : 1; // [24]
  1478. uint32_t dt : 1; // [25]
  1479. uint32_t dwe : 1; // [26]
  1480. uint32_t dmd : 1; // [27]
  1481. uint32_t dny : 1; // [28]
  1482. uint32_t dmr : 1; // [29]
  1483. uint32_t arq : 1; // [30]
  1484. uint32_t aclr : 1; // [31]
  1485. } b;
  1486. } REG_USBC_REG_EP10_RXMAXP_CSR_T;
  1487. // reg_ep10_rxcnt_txtype
  1488. typedef union {
  1489. uint32_t v;
  1490. struct
  1491. {
  1492. uint32_t rxcnt : 13; // [12:0], read only
  1493. uint32_t __15_13 : 3; // [15:13]
  1494. uint32_t ep : 4; // [19:16]
  1495. uint32_t prot : 2; // [21:20]
  1496. uint32_t speed : 2; // [23:22]
  1497. uint32_t txpi : 8; // [31:24]
  1498. } b;
  1499. } REG_USBC_REG_EP10_RXCNT_TXTYPE_T;
  1500. // reg_ep10_rxtype_intv
  1501. typedef union {
  1502. uint32_t v;
  1503. struct
  1504. {
  1505. uint32_t ep : 4; // [3:0]
  1506. uint32_t prot : 2; // [5:4]
  1507. uint32_t speed : 2; // [7:6]
  1508. uint32_t rxpi : 8; // [15:8]
  1509. uint32_t __31_16 : 16; // [31:16]
  1510. } b;
  1511. } REG_USBC_REG_EP10_RXTYPE_INTV_T;
  1512. // reg_ep11_txmaxp_csr
  1513. typedef union {
  1514. uint32_t v;
  1515. struct
  1516. {
  1517. uint32_t maxp : 11; // [10:0]
  1518. uint32_t mult : 5; // [15:11]
  1519. uint32_t trdy : 1; // [16]
  1520. uint32_t fne : 1; // [17]
  1521. uint32_t err : 1; // [18]
  1522. uint32_t ff : 1; // [19]
  1523. uint32_t stp : 1; // [20]
  1524. uint32_t rxs : 1; // [21]
  1525. uint32_t clr : 1; // [22]
  1526. uint32_t nak : 1; // [23]
  1527. uint32_t dt : 1; // [24]
  1528. uint32_t dwe : 1; // [25]
  1529. uint32_t drm : 1; // [26]
  1530. uint32_t fdt : 1; // [27]
  1531. uint32_t dmr : 1; // [28]
  1532. uint32_t md : 1; // [29]
  1533. uint32_t iso : 1; // [30]
  1534. uint32_t aset : 1; // [31]
  1535. } b;
  1536. } REG_USBC_REG_EP11_TXMAXP_CSR_T;
  1537. // reg_ep11_rxmaxp_csr
  1538. typedef union {
  1539. uint32_t v;
  1540. struct
  1541. {
  1542. uint32_t maxp : 11; // [10:0]
  1543. uint32_t mult : 5; // [15:11]
  1544. uint32_t rrdy : 1; // [16]
  1545. uint32_t fful : 1; // [17]
  1546. uint32_t er : 1; // [18]
  1547. uint32_t der : 1; // [19]
  1548. uint32_t ff : 1; // [20]
  1549. uint32_t rpk : 1; // [21]
  1550. uint32_t rs : 1; // [22]
  1551. uint32_t clr : 1; // [23]
  1552. uint32_t irx : 1; // [24]
  1553. uint32_t dt : 1; // [25]
  1554. uint32_t dwe : 1; // [26]
  1555. uint32_t dmd : 1; // [27]
  1556. uint32_t dny : 1; // [28]
  1557. uint32_t dmr : 1; // [29]
  1558. uint32_t arq : 1; // [30]
  1559. uint32_t aclr : 1; // [31]
  1560. } b;
  1561. } REG_USBC_REG_EP11_RXMAXP_CSR_T;
  1562. // reg_ep11_rxcnt_txtype
  1563. typedef union {
  1564. uint32_t v;
  1565. struct
  1566. {
  1567. uint32_t rxcnt : 13; // [12:0], read only
  1568. uint32_t __15_13 : 3; // [15:13]
  1569. uint32_t ep : 4; // [19:16]
  1570. uint32_t prot : 2; // [21:20]
  1571. uint32_t speed : 2; // [23:22]
  1572. uint32_t txpi : 8; // [31:24]
  1573. } b;
  1574. } REG_USBC_REG_EP11_RXCNT_TXTYPE_T;
  1575. // reg_ep11_rxtype_intv
  1576. typedef union {
  1577. uint32_t v;
  1578. struct
  1579. {
  1580. uint32_t ep : 4; // [3:0]
  1581. uint32_t prot : 2; // [5:4]
  1582. uint32_t speed : 2; // [7:6]
  1583. uint32_t rxpi : 8; // [15:8]
  1584. uint32_t __31_16 : 16; // [31:16]
  1585. } b;
  1586. } REG_USBC_REG_EP11_RXTYPE_INTV_T;
  1587. // reg_ep12_txmaxp_csr
  1588. typedef union {
  1589. uint32_t v;
  1590. struct
  1591. {
  1592. uint32_t maxp : 11; // [10:0]
  1593. uint32_t mult : 5; // [15:11]
  1594. uint32_t trdy : 1; // [16]
  1595. uint32_t fne : 1; // [17]
  1596. uint32_t err : 1; // [18]
  1597. uint32_t ff : 1; // [19]
  1598. uint32_t stp : 1; // [20]
  1599. uint32_t rxs : 1; // [21]
  1600. uint32_t clr : 1; // [22]
  1601. uint32_t nak : 1; // [23]
  1602. uint32_t dt : 1; // [24]
  1603. uint32_t dwe : 1; // [25]
  1604. uint32_t drm : 1; // [26]
  1605. uint32_t fdt : 1; // [27]
  1606. uint32_t dmr : 1; // [28]
  1607. uint32_t md : 1; // [29]
  1608. uint32_t iso : 1; // [30]
  1609. uint32_t aset : 1; // [31]
  1610. } b;
  1611. } REG_USBC_REG_EP12_TXMAXP_CSR_T;
  1612. // reg_ep12_rxmaxp_csr
  1613. typedef union {
  1614. uint32_t v;
  1615. struct
  1616. {
  1617. uint32_t maxp : 11; // [10:0]
  1618. uint32_t mult : 5; // [15:11]
  1619. uint32_t rrdy : 1; // [16]
  1620. uint32_t fful : 1; // [17]
  1621. uint32_t er : 1; // [18]
  1622. uint32_t der : 1; // [19]
  1623. uint32_t ff : 1; // [20]
  1624. uint32_t rpk : 1; // [21]
  1625. uint32_t rs : 1; // [22]
  1626. uint32_t clr : 1; // [23]
  1627. uint32_t irx : 1; // [24]
  1628. uint32_t dt : 1; // [25]
  1629. uint32_t dwe : 1; // [26]
  1630. uint32_t dmd : 1; // [27]
  1631. uint32_t dny : 1; // [28]
  1632. uint32_t dmr : 1; // [29]
  1633. uint32_t arq : 1; // [30]
  1634. uint32_t aclr : 1; // [31]
  1635. } b;
  1636. } REG_USBC_REG_EP12_RXMAXP_CSR_T;
  1637. // reg_ep12_rxcnt_txtype
  1638. typedef union {
  1639. uint32_t v;
  1640. struct
  1641. {
  1642. uint32_t rxcnt : 13; // [12:0], read only
  1643. uint32_t __15_13 : 3; // [15:13]
  1644. uint32_t ep : 4; // [19:16]
  1645. uint32_t prot : 2; // [21:20]
  1646. uint32_t speed : 2; // [23:22]
  1647. uint32_t txpi : 8; // [31:24]
  1648. } b;
  1649. } REG_USBC_REG_EP12_RXCNT_TXTYPE_T;
  1650. // reg_ep12_rxtype_intv
  1651. typedef union {
  1652. uint32_t v;
  1653. struct
  1654. {
  1655. uint32_t ep : 4; // [3:0]
  1656. uint32_t prot : 2; // [5:4]
  1657. uint32_t speed : 2; // [7:6]
  1658. uint32_t rxpi : 8; // [15:8]
  1659. uint32_t __31_16 : 16; // [31:16]
  1660. } b;
  1661. } REG_USBC_REG_EP12_RXTYPE_INTV_T;
  1662. // reg_ep13_txmaxp_csr
  1663. typedef union {
  1664. uint32_t v;
  1665. struct
  1666. {
  1667. uint32_t maxp : 11; // [10:0]
  1668. uint32_t mult : 5; // [15:11]
  1669. uint32_t trdy : 1; // [16]
  1670. uint32_t fne : 1; // [17]
  1671. uint32_t err : 1; // [18]
  1672. uint32_t ff : 1; // [19]
  1673. uint32_t stp : 1; // [20]
  1674. uint32_t rxs : 1; // [21]
  1675. uint32_t clr : 1; // [22]
  1676. uint32_t nak : 1; // [23]
  1677. uint32_t dt : 1; // [24]
  1678. uint32_t dwe : 1; // [25]
  1679. uint32_t drm : 1; // [26]
  1680. uint32_t fdt : 1; // [27]
  1681. uint32_t dmr : 1; // [28]
  1682. uint32_t md : 1; // [29]
  1683. uint32_t iso : 1; // [30]
  1684. uint32_t aset : 1; // [31]
  1685. } b;
  1686. } REG_USBC_REG_EP13_TXMAXP_CSR_T;
  1687. // reg_ep13_rxmaxp_csr
  1688. typedef union {
  1689. uint32_t v;
  1690. struct
  1691. {
  1692. uint32_t maxp : 11; // [10:0]
  1693. uint32_t mult : 5; // [15:11]
  1694. uint32_t rrdy : 1; // [16]
  1695. uint32_t fful : 1; // [17]
  1696. uint32_t er : 1; // [18]
  1697. uint32_t der : 1; // [19]
  1698. uint32_t ff : 1; // [20]
  1699. uint32_t rpk : 1; // [21]
  1700. uint32_t rs : 1; // [22]
  1701. uint32_t clr : 1; // [23]
  1702. uint32_t irx : 1; // [24]
  1703. uint32_t dt : 1; // [25]
  1704. uint32_t dwe : 1; // [26]
  1705. uint32_t dmd : 1; // [27]
  1706. uint32_t dny : 1; // [28]
  1707. uint32_t dmr : 1; // [29]
  1708. uint32_t arq : 1; // [30]
  1709. uint32_t aclr : 1; // [31]
  1710. } b;
  1711. } REG_USBC_REG_EP13_RXMAXP_CSR_T;
  1712. // reg_ep13_rxcnt_txtype
  1713. typedef union {
  1714. uint32_t v;
  1715. struct
  1716. {
  1717. uint32_t rxcnt : 13; // [12:0], read only
  1718. uint32_t __15_13 : 3; // [15:13]
  1719. uint32_t ep : 4; // [19:16]
  1720. uint32_t prot : 2; // [21:20]
  1721. uint32_t speed : 2; // [23:22]
  1722. uint32_t txpi : 8; // [31:24]
  1723. } b;
  1724. } REG_USBC_REG_EP13_RXCNT_TXTYPE_T;
  1725. // reg_ep13_rxtype_intv
  1726. typedef union {
  1727. uint32_t v;
  1728. struct
  1729. {
  1730. uint32_t ep : 4; // [3:0]
  1731. uint32_t prot : 2; // [5:4]
  1732. uint32_t speed : 2; // [7:6]
  1733. uint32_t rxpi : 8; // [15:8]
  1734. uint32_t __31_16 : 16; // [31:16]
  1735. } b;
  1736. } REG_USBC_REG_EP13_RXTYPE_INTV_T;
  1737. // reg_ep14_txmaxp_csr
  1738. typedef union {
  1739. uint32_t v;
  1740. struct
  1741. {
  1742. uint32_t maxp : 11; // [10:0]
  1743. uint32_t mult : 5; // [15:11]
  1744. uint32_t trdy : 1; // [16]
  1745. uint32_t fne : 1; // [17]
  1746. uint32_t err : 1; // [18]
  1747. uint32_t ff : 1; // [19]
  1748. uint32_t stp : 1; // [20]
  1749. uint32_t rxs : 1; // [21]
  1750. uint32_t clr : 1; // [22]
  1751. uint32_t nak : 1; // [23]
  1752. uint32_t dt : 1; // [24]
  1753. uint32_t dwe : 1; // [25]
  1754. uint32_t drm : 1; // [26]
  1755. uint32_t fdt : 1; // [27]
  1756. uint32_t dmr : 1; // [28]
  1757. uint32_t md : 1; // [29]
  1758. uint32_t iso : 1; // [30]
  1759. uint32_t aset : 1; // [31]
  1760. } b;
  1761. } REG_USBC_REG_EP14_TXMAXP_CSR_T;
  1762. // reg_ep14_rxmaxp_csr
  1763. typedef union {
  1764. uint32_t v;
  1765. struct
  1766. {
  1767. uint32_t maxp : 11; // [10:0]
  1768. uint32_t mult : 5; // [15:11]
  1769. uint32_t rrdy : 1; // [16]
  1770. uint32_t fful : 1; // [17]
  1771. uint32_t er : 1; // [18]
  1772. uint32_t der : 1; // [19]
  1773. uint32_t ff : 1; // [20]
  1774. uint32_t rpk : 1; // [21]
  1775. uint32_t rs : 1; // [22]
  1776. uint32_t clr : 1; // [23]
  1777. uint32_t irx : 1; // [24]
  1778. uint32_t dt : 1; // [25]
  1779. uint32_t dwe : 1; // [26]
  1780. uint32_t dmd : 1; // [27]
  1781. uint32_t dny : 1; // [28]
  1782. uint32_t dmr : 1; // [29]
  1783. uint32_t arq : 1; // [30]
  1784. uint32_t aclr : 1; // [31]
  1785. } b;
  1786. } REG_USBC_REG_EP14_RXMAXP_CSR_T;
  1787. // reg_ep14_rxcnt_txtype
  1788. typedef union {
  1789. uint32_t v;
  1790. struct
  1791. {
  1792. uint32_t rxcnt : 13; // [12:0], read only
  1793. uint32_t __15_13 : 3; // [15:13]
  1794. uint32_t ep : 4; // [19:16]
  1795. uint32_t prot : 2; // [21:20]
  1796. uint32_t speed : 2; // [23:22]
  1797. uint32_t txpi : 8; // [31:24]
  1798. } b;
  1799. } REG_USBC_REG_EP14_RXCNT_TXTYPE_T;
  1800. // reg_ep14_rxtype_intv
  1801. typedef union {
  1802. uint32_t v;
  1803. struct
  1804. {
  1805. uint32_t ep : 4; // [3:0]
  1806. uint32_t prot : 2; // [5:4]
  1807. uint32_t speed : 2; // [7:6]
  1808. uint32_t rxpi : 8; // [15:8]
  1809. uint32_t __31_16 : 16; // [31:16]
  1810. } b;
  1811. } REG_USBC_REG_EP14_RXTYPE_INTV_T;
  1812. // reg_ep15_txmaxp_csr
  1813. typedef union {
  1814. uint32_t v;
  1815. struct
  1816. {
  1817. uint32_t maxp : 11; // [10:0]
  1818. uint32_t mult : 5; // [15:11]
  1819. uint32_t trdy : 1; // [16]
  1820. uint32_t fne : 1; // [17]
  1821. uint32_t err : 1; // [18]
  1822. uint32_t ff : 1; // [19]
  1823. uint32_t stp : 1; // [20]
  1824. uint32_t rxs : 1; // [21]
  1825. uint32_t clr : 1; // [22]
  1826. uint32_t nak : 1; // [23]
  1827. uint32_t dt : 1; // [24]
  1828. uint32_t dwe : 1; // [25]
  1829. uint32_t drm : 1; // [26]
  1830. uint32_t fdt : 1; // [27]
  1831. uint32_t dmr : 1; // [28]
  1832. uint32_t md : 1; // [29]
  1833. uint32_t iso : 1; // [30]
  1834. uint32_t aset : 1; // [31]
  1835. } b;
  1836. } REG_USBC_REG_EP15_TXMAXP_CSR_T;
  1837. // reg_ep15_rxmaxp_csr
  1838. typedef union {
  1839. uint32_t v;
  1840. struct
  1841. {
  1842. uint32_t maxp : 11; // [10:0]
  1843. uint32_t mult : 5; // [15:11]
  1844. uint32_t rrdy : 1; // [16]
  1845. uint32_t fful : 1; // [17]
  1846. uint32_t er : 1; // [18]
  1847. uint32_t der : 1; // [19]
  1848. uint32_t ff : 1; // [20]
  1849. uint32_t rpk : 1; // [21]
  1850. uint32_t rs : 1; // [22]
  1851. uint32_t clr : 1; // [23]
  1852. uint32_t irx : 1; // [24]
  1853. uint32_t dt : 1; // [25]
  1854. uint32_t dwe : 1; // [26]
  1855. uint32_t dmd : 1; // [27]
  1856. uint32_t dny : 1; // [28]
  1857. uint32_t dmr : 1; // [29]
  1858. uint32_t arq : 1; // [30]
  1859. uint32_t aclr : 1; // [31]
  1860. } b;
  1861. } REG_USBC_REG_EP15_RXMAXP_CSR_T;
  1862. // reg_ep15_rxcnt_txtype
  1863. typedef union {
  1864. uint32_t v;
  1865. struct
  1866. {
  1867. uint32_t rxcnt : 13; // [12:0], read only
  1868. uint32_t __15_13 : 3; // [15:13]
  1869. uint32_t ep : 4; // [19:16]
  1870. uint32_t prot : 2; // [21:20]
  1871. uint32_t speed : 2; // [23:22]
  1872. uint32_t txpi : 8; // [31:24]
  1873. } b;
  1874. } REG_USBC_REG_EP15_RXCNT_TXTYPE_T;
  1875. // reg_ep15_rxtype_intv
  1876. typedef union {
  1877. uint32_t v;
  1878. struct
  1879. {
  1880. uint32_t ep : 4; // [3:0]
  1881. uint32_t prot : 2; // [5:4]
  1882. uint32_t speed : 2; // [7:6]
  1883. uint32_t rxpi : 8; // [15:8]
  1884. uint32_t __31_16 : 16; // [31:16]
  1885. } b;
  1886. } REG_USBC_REG_EP15_RXTYPE_INTV_T;
  1887. // otg_ep0_rxpktcnt
  1888. typedef union {
  1889. uint32_t v;
  1890. struct
  1891. {
  1892. uint32_t rxpktcnt : 31; // [30:0]
  1893. uint32_t rxpkt_mode_en : 1; // [31]
  1894. } b;
  1895. } REG_USBC_OTG_EP0_RXPKTCNT_T;
  1896. // otg_ep1_rxpktcnt
  1897. typedef union {
  1898. uint32_t v;
  1899. struct
  1900. {
  1901. uint32_t rxpktcnt : 31; // [30:0]
  1902. uint32_t rxpkt_mode_en : 1; // [31]
  1903. } b;
  1904. } REG_USBC_OTG_EP1_RXPKTCNT_T;
  1905. // otg_ep2_rxpktcnt
  1906. typedef union {
  1907. uint32_t v;
  1908. struct
  1909. {
  1910. uint32_t rxpktcnt : 31; // [30:0]
  1911. uint32_t rxpkt_mode_en : 1; // [31]
  1912. } b;
  1913. } REG_USBC_OTG_EP2_RXPKTCNT_T;
  1914. // otg_ep3_rxpktcnt
  1915. typedef union {
  1916. uint32_t v;
  1917. struct
  1918. {
  1919. uint32_t rxpktcnt : 31; // [30:0]
  1920. uint32_t rxpkt_mode_en : 1; // [31]
  1921. } b;
  1922. } REG_USBC_OTG_EP3_RXPKTCNT_T;
  1923. // otg_ep4_rxpktcnt
  1924. typedef union {
  1925. uint32_t v;
  1926. struct
  1927. {
  1928. uint32_t rxpktcnt : 31; // [30:0]
  1929. uint32_t rxpkt_mode_en : 1; // [31]
  1930. } b;
  1931. } REG_USBC_OTG_EP4_RXPKTCNT_T;
  1932. // otg_ep5_rxpktcnt
  1933. typedef union {
  1934. uint32_t v;
  1935. struct
  1936. {
  1937. uint32_t rxpktcnt : 31; // [30:0]
  1938. uint32_t rxpkt_mode_en : 1; // [31]
  1939. } b;
  1940. } REG_USBC_OTG_EP5_RXPKTCNT_T;
  1941. // otg_ep6_rxpktcnt
  1942. typedef union {
  1943. uint32_t v;
  1944. struct
  1945. {
  1946. uint32_t rxpktcnt : 31; // [30:0]
  1947. uint32_t rxpkt_mode_en : 1; // [31]
  1948. } b;
  1949. } REG_USBC_OTG_EP6_RXPKTCNT_T;
  1950. // otg_ep7_rxpktcnt
  1951. typedef union {
  1952. uint32_t v;
  1953. struct
  1954. {
  1955. uint32_t rxpktcnt : 31; // [30:0]
  1956. uint32_t rxpkt_mode_en : 1; // [31]
  1957. } b;
  1958. } REG_USBC_OTG_EP7_RXPKTCNT_T;
  1959. // otg_ep8_rxpktcnt
  1960. typedef union {
  1961. uint32_t v;
  1962. struct
  1963. {
  1964. uint32_t rxpktcnt : 31; // [30:0]
  1965. uint32_t rxpkt_mode_en : 1; // [31]
  1966. } b;
  1967. } REG_USBC_OTG_EP8_RXPKTCNT_T;
  1968. // otg_ep9_rxpktcnt
  1969. typedef union {
  1970. uint32_t v;
  1971. struct
  1972. {
  1973. uint32_t rxpktcnt : 31; // [30:0]
  1974. uint32_t rxpkt_mode_en : 1; // [31]
  1975. } b;
  1976. } REG_USBC_OTG_EP9_RXPKTCNT_T;
  1977. // otg_ep10_rxpktcnt
  1978. typedef union {
  1979. uint32_t v;
  1980. struct
  1981. {
  1982. uint32_t rxpktcnt : 31; // [30:0]
  1983. uint32_t rxpkt_mode_en : 1; // [31]
  1984. } b;
  1985. } REG_USBC_OTG_EP10_RXPKTCNT_T;
  1986. // otg_ep11_rxpktcnt
  1987. typedef union {
  1988. uint32_t v;
  1989. struct
  1990. {
  1991. uint32_t rxpktcnt : 31; // [30:0]
  1992. uint32_t rxpkt_mode_en : 1; // [31]
  1993. } b;
  1994. } REG_USBC_OTG_EP11_RXPKTCNT_T;
  1995. // otg_ep12_rxpktcnt
  1996. typedef union {
  1997. uint32_t v;
  1998. struct
  1999. {
  2000. uint32_t rxpktcnt : 31; // [30:0]
  2001. uint32_t rxpkt_mode_en : 1; // [31]
  2002. } b;
  2003. } REG_USBC_OTG_EP12_RXPKTCNT_T;
  2004. // otg_ep13_rxpktcnt
  2005. typedef union {
  2006. uint32_t v;
  2007. struct
  2008. {
  2009. uint32_t rxpktcnt : 31; // [30:0]
  2010. uint32_t rxpkt_mode_en : 1; // [31]
  2011. } b;
  2012. } REG_USBC_OTG_EP13_RXPKTCNT_T;
  2013. // otg_ep14_rxpktcnt
  2014. typedef union {
  2015. uint32_t v;
  2016. struct
  2017. {
  2018. uint32_t rxpktcnt : 31; // [30:0]
  2019. uint32_t rxpkt_mode_en : 1; // [31]
  2020. } b;
  2021. } REG_USBC_OTG_EP14_RXPKTCNT_T;
  2022. // otg_ep15_rxpktcnt
  2023. typedef union {
  2024. uint32_t v;
  2025. struct
  2026. {
  2027. uint32_t rxpktcnt : 31; // [30:0]
  2028. uint32_t rxpkt_mode_en : 1; // [31]
  2029. } b;
  2030. } REG_USBC_OTG_EP15_RXPKTCNT_T;
  2031. // otg_rxdbdis_txdbdis
  2032. typedef union {
  2033. uint32_t v;
  2034. struct
  2035. {
  2036. uint32_t __0_0 : 1; // [0]
  2037. uint32_t rxdb : 15; // [15:1], read only
  2038. uint32_t __16_16 : 1; // [16]
  2039. uint32_t txdb : 15; // [31:17], read only
  2040. } b;
  2041. } REG_USBC_OTG_RXDBDIS_TXDBDIS_T;
  2042. // otg_uch_hsrtn
  2043. typedef union {
  2044. uint32_t v;
  2045. struct
  2046. {
  2047. uint32_t c_t_uch : 16; // [15:0]
  2048. uint32_t c_t_hsrtn : 16; // [31:16]
  2049. } b;
  2050. } REG_USBC_OTG_UCH_HSRTN_T;
  2051. // otg_hsbt_fifo
  2052. typedef union {
  2053. uint32_t v;
  2054. struct
  2055. {
  2056. uint32_t hsbt : 4; // [3:0]
  2057. uint32_t __7_4 : 4; // [7:4]
  2058. uint32_t fifocheckmode_en : 1; // [8]
  2059. uint32_t fifocheckreg : 7; // [15:9]
  2060. uint32_t fifotimeout : 8; // [23:16]
  2061. uint32_t host_force_en : 1; // [24]
  2062. uint32_t host_mode_force : 1; // [25]
  2063. uint32_t srp_en : 1; // [26]
  2064. uint32_t __27_27 : 1; // [27]
  2065. uint32_t clear_txbuff_en : 1; // [28]
  2066. uint32_t clear_rxbuff_en : 1; // [29]
  2067. uint32_t tx_compl_mode : 1; // [30]
  2068. uint32_t __31_31 : 1; // [31]
  2069. } b;
  2070. } REG_USBC_OTG_HSBT_FIFO_T;
  2071. // otg_listend_int_sts
  2072. typedef union {
  2073. uint32_t v;
  2074. struct
  2075. {
  2076. uint32_t __0_0 : 1; // [0]
  2077. uint32_t tx_listend_int1 : 1; // [1], read only
  2078. uint32_t tx_listend_int2 : 1; // [2], read only
  2079. uint32_t tx_listend_int3 : 1; // [3], read only
  2080. uint32_t tx_listend_int4 : 1; // [4], read only
  2081. uint32_t tx_listend_int5 : 1; // [5], read only
  2082. uint32_t tx_listend_int6 : 1; // [6], read only
  2083. uint32_t tx_listend_int7 : 1; // [7], read only
  2084. uint32_t tx_listend_int8 : 1; // [8], read only
  2085. uint32_t tx_listend_int9 : 1; // [9], read only
  2086. uint32_t tx_listend_int10 : 1; // [10], read only
  2087. uint32_t tx_listend_int11 : 1; // [11], read only
  2088. uint32_t tx_listend_int12 : 1; // [12], read only
  2089. uint32_t tx_listend_int13 : 1; // [13], read only
  2090. uint32_t tx_listend_int14 : 1; // [14], read only
  2091. uint32_t tx_listend_int15 : 1; // [15], read only
  2092. uint32_t __16_16 : 1; // [16]
  2093. uint32_t tx_listend_enable1 : 1; // [17], read only
  2094. uint32_t tx_listend_enable2 : 1; // [18], read only
  2095. uint32_t tx_listend_enable3 : 1; // [19], read only
  2096. uint32_t tx_listend_enable4 : 1; // [20], read only
  2097. uint32_t tx_listend_enable5 : 1; // [21], read only
  2098. uint32_t tx_listend_enable6 : 1; // [22], read only
  2099. uint32_t tx_listend_enable7 : 1; // [23], read only
  2100. uint32_t tx_listend_enable8 : 1; // [24], read only
  2101. uint32_t tx_listend_enable9 : 1; // [25], read only
  2102. uint32_t tx_listend_enable10 : 1; // [26], read only
  2103. uint32_t tx_listend_enable11 : 1; // [27], read only
  2104. uint32_t tx_listend_enable12 : 1; // [28], read only
  2105. uint32_t tx_listend_enable13 : 1; // [29], read only
  2106. uint32_t tx_listend_enable14 : 1; // [30], read only
  2107. uint32_t tx_listend_enable15 : 1; // [31], read only
  2108. } b;
  2109. } REG_USBC_OTG_LISTEND_INT_STS_T;
  2110. // otg_listend_int_clr
  2111. typedef union {
  2112. uint32_t v;
  2113. struct
  2114. {
  2115. uint32_t __0_0 : 1; // [0]
  2116. uint32_t tx_listend_clear1 : 1; // [1]
  2117. uint32_t tx_listend_clear2 : 1; // [2]
  2118. uint32_t tx_listend_clear3 : 1; // [3]
  2119. uint32_t tx_listend_clear4 : 1; // [4]
  2120. uint32_t tx_listend_clear5 : 1; // [5]
  2121. uint32_t tx_listend_clear6 : 1; // [6]
  2122. uint32_t tx_listend_clear7 : 1; // [7]
  2123. uint32_t tx_listend_clear8 : 1; // [8]
  2124. uint32_t tx_listend_clear9 : 1; // [9]
  2125. uint32_t tx_listend_clear10 : 1; // [10]
  2126. uint32_t tx_listend_clear11 : 1; // [11]
  2127. uint32_t tx_listend_clear12 : 1; // [12]
  2128. uint32_t tx_listend_clear13 : 1; // [13]
  2129. uint32_t tx_listend_clear14 : 1; // [14]
  2130. uint32_t tx_listend_clear15 : 1; // [15]
  2131. uint32_t __31_16 : 16; // [31:16]
  2132. } b;
  2133. } REG_USBC_OTG_LISTEND_INT_CLR_T;
  2134. // otg_endpoint_en
  2135. typedef union {
  2136. uint32_t v;
  2137. struct
  2138. {
  2139. uint32_t __0_0 : 1; // [0]
  2140. uint32_t endpoint_enable1 : 1; // [1], read only
  2141. uint32_t endpoint_enable2 : 1; // [2], read only
  2142. uint32_t endpoint_enable3 : 1; // [3], read only
  2143. uint32_t endpoint_enable4 : 1; // [4], read only
  2144. uint32_t endpoint_enable5 : 1; // [5], read only
  2145. uint32_t endpoint_enable6 : 1; // [6], read only
  2146. uint32_t endpoint_enable7 : 1; // [7], read only
  2147. uint32_t endpoint_enable8 : 1; // [8], read only
  2148. uint32_t endpoint_enable9 : 1; // [9], read only
  2149. uint32_t endpoint_enable10 : 1; // [10], read only
  2150. uint32_t endpoint_enable11 : 1; // [11], read only
  2151. uint32_t endpoint_enable12 : 1; // [12], read only
  2152. uint32_t endpoint_enable13 : 1; // [13], read only
  2153. uint32_t endpoint_enable14 : 1; // [14], read only
  2154. uint32_t endpoint_enable15 : 1; // [15], read only
  2155. uint32_t __31_16 : 16; // [31:16]
  2156. } b;
  2157. } REG_USBC_OTG_ENDPOINT_EN_T;
  2158. // otg_pai
  2159. #define USBC_FUNC_ADDR(n) (((n)&0x7f) << 0)
  2160. #define USBC_SUSPM (1 << 8)
  2161. #define USBC_OTG_PAI_SUSP (1 << 9)
  2162. #define USBC_RSM (1 << 10)
  2163. #define USBC_OTG_PAI_RST (1 << 11)
  2164. #define USBC_HSMD (1 << 12)
  2165. #define USBC_HSEN (1 << 13)
  2166. #define USBC_SFCN (1 << 14)
  2167. #define USBC_OTG_PAI_EP(n) (((n)&0xffff) << 16)
  2168. // otg_intrx_inttxen
  2169. #define USBC_OTG_INTRX_INTTXEN_RX_EP(n) (((n)&0x7fff) << 1)
  2170. #define USBC_OTG_INTRX_INTTXEN_TX_EP(n) (((n)&0xffff) << 16)
  2171. // otg_intrxen_usb
  2172. #define USBC_OTG_INTRXEN_USB_RX_EP(n) (((n)&0x7fff) << 1)
  2173. #define USBC_OTG_INTRXEN_USB_SUSP (1 << 16)
  2174. #define USBC_RES (1 << 17)
  2175. #define USBC_OTG_INTRXEN_USB_RST (1 << 18)
  2176. #define USBC_SOF (1 << 19)
  2177. #define USBC_CONN (1 << 20)
  2178. #define USBC_DISCON (1 << 21)
  2179. #define USBC_SREQ (1 << 22)
  2180. #define USBC_VBE (1 << 23)
  2181. #define USBC_SSPEN (1 << 24)
  2182. #define USBC_RESEN (1 << 25)
  2183. #define USBC_RSTEN (1 << 26)
  2184. #define USBC_SOFEN (1 << 27)
  2185. #define USBC_CONEN (1 << 28)
  2186. #define USBC_DSCEN (1 << 29)
  2187. #define USBC_SREQEN (1 << 30)
  2188. #define USBC_VBEN (1 << 31)
  2189. // otg_fit
  2190. #define USBC_FMNO(n) (((n)&0x7ff) << 0)
  2191. #define USBC_EPNO(n) (((n)&0xf) << 16)
  2192. #define USBC_TSTNAK (1 << 24)
  2193. #define USBC_TSTJ (1 << 25)
  2194. #define USBC_TSTK (1 << 26)
  2195. #define USBC_TSTPKT (1 << 27)
  2196. #define USBC_FHS (1 << 28)
  2197. #define USBC_FFS (1 << 29)
  2198. #define USBC_FIFOA (1 << 30)
  2199. #define USBC_FRH (1 << 31)
  2200. // otg_csr0
  2201. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2202. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2203. #define USBC_RRDY (1 << 16)
  2204. #define USBC_OTG_CSR0_TRDY (1 << 17)
  2205. #define USBC_RSTA (1 << 18)
  2206. #define USBC_SP (1 << 19)
  2207. #define USBC_OTG_CSR0_ERR (1 << 20)
  2208. #define USBC_REP (1 << 21)
  2209. #define USBC_OTG_CSR0_STP (1 << 22)
  2210. #define USBC_NAKTO (1 << 23)
  2211. #define USBC_OTG_CSR0_FF (1 << 24)
  2212. #define USBC_OTG_CSR0_DT (1 << 25)
  2213. #define USBC_DTWE (1 << 26)
  2214. #define USBC_DISP (1 << 27)
  2215. // otg_rxcnt_txtype0
  2216. #define USBC_RXCNT0(n) (((n)&0x7f) << 0)
  2217. #define USBC_OTG_RXCNT_TXTYPE0_SPEED(n) (((n)&0x3) << 22)
  2218. #define USBC_NAKLIMIT(n) (((n)&0xf) << 24)
  2219. // otg_cfg
  2220. #define USBC_UDI (1 << 24)
  2221. #define USBC_SC (1 << 25)
  2222. #define USBC_DYNF (1 << 26)
  2223. #define USBC_HBTXE (1 << 27)
  2224. #define USBC_HBRXE (1 << 28)
  2225. #define USBC_BE (1 << 29)
  2226. #define USBC_MPTXE (1 << 30)
  2227. #define USBC_MPRXE (1 << 31)
  2228. // otg_devctl
  2229. #define USBC_SESS (1 << 0)
  2230. #define USBC_HREQ (1 << 1)
  2231. #define USBC_HOST (1 << 2)
  2232. #define USBC_VBUS(n) (((n)&0x3) << 3)
  2233. #define USBC_LSDEV (1 << 5)
  2234. #define USBC_FSDEV (1 << 6)
  2235. #define USBC_BDEV (1 << 7)
  2236. #define USBC_DMAINTER (1 << 8)
  2237. #define USBC_CTRLINTER (1 << 9)
  2238. #define USBC_TXSIZE(n) (((n)&0xf) << 16)
  2239. #define USBC_TXDPB (1 << 20)
  2240. #define USBC_RXSIZE(n) (((n)&0xf) << 24)
  2241. #define USBC_RXDPB (1 << 28)
  2242. // otg_fa
  2243. #define USBC_TXAD(n) (((n)&0x1fff) << 0)
  2244. #define USBC_RXAD(n) (((n)&0x1fff) << 16)
  2245. // otg_hwver
  2246. #define USBC_VMIN(n) (((n)&0x3ff) << 0)
  2247. #define USBC_VMAJ(n) (((n)&0x1f) << 10)
  2248. // otg_info
  2249. #define USBC_OTG_INFO_TX_EP(n) (((n)&0xf) << 0)
  2250. #define USBC_OTG_INFO_RX_EP(n) (((n)&0xf) << 4)
  2251. #define USBC_RAM_BITS(n) (((n)&0xf) << 8)
  2252. #define USBC_DMA_CH(n) (((n)&0xf) << 12)
  2253. #define USBC_WTID(n) (((n)&0xf) << 16)
  2254. #define USBC_WTCON(n) (((n)&0xf) << 20)
  2255. #define USBC_VPLEN(n) (((n)&0xff) << 24)
  2256. // otg_eof
  2257. #define USBC_HS_EOF1(n) (((n)&0xff) << 0)
  2258. #define USBC_FS_EOF1(n) (((n)&0xff) << 8)
  2259. #define USBC_LS_EOF1(n) (((n)&0xff) << 16)
  2260. #define USBC_OTG_EOF_RST (1 << 24)
  2261. #define USBC_RSTX (1 << 25)
  2262. // otg_ep0_txfad_had_hp
  2263. #define USBC_TXFAD(n) (((n)&0x7f) << 0)
  2264. #define USBC_TXHAD(n) (((n)&0x7f) << 16)
  2265. #define USBC_MULTIPLE (1 << 23)
  2266. #define USBC_TXHP(n) (((n)&0x7f) << 24)
  2267. // otg_ep0_rxfad_had_hp
  2268. #define USBC_RXFAD(n) (((n)&0x7f) << 0)
  2269. #define USBC_RXHAD(n) (((n)&0x7f) << 16)
  2270. #define USBC_MULTIPLE (1 << 23)
  2271. #define USBC_RXHP(n) (((n)&0x7f) << 24)
  2272. // otg_ep1_txfad_had_hp
  2273. #define USBC_TXFAD(n) (((n)&0x7f) << 0)
  2274. #define USBC_TXHAD(n) (((n)&0x7f) << 16)
  2275. #define USBC_MULTIPLE (1 << 23)
  2276. #define USBC_TXHP(n) (((n)&0x7f) << 24)
  2277. // otg_ep1_rxfad_had_hp
  2278. #define USBC_RXFAD(n) (((n)&0x7f) << 0)
  2279. #define USBC_RXHAD(n) (((n)&0x7f) << 16)
  2280. #define USBC_MULTIPLE (1 << 23)
  2281. #define USBC_RXHP(n) (((n)&0x7f) << 24)
  2282. // otg_ep2_txfad_had_hp
  2283. #define USBC_TXFAD(n) (((n)&0x7f) << 0)
  2284. #define USBC_TXHAD(n) (((n)&0x7f) << 16)
  2285. #define USBC_MULTIPLE (1 << 23)
  2286. #define USBC_TXHP(n) (((n)&0x7f) << 24)
  2287. // otg_ep2_rxfad_had_hp
  2288. #define USBC_RXFAD(n) (((n)&0x7f) << 0)
  2289. #define USBC_RXHAD(n) (((n)&0x7f) << 16)
  2290. #define USBC_MULTIPLE (1 << 23)
  2291. #define USBC_RXHP(n) (((n)&0x7f) << 24)
  2292. // otg_ep3_txfad_had_hp
  2293. #define USBC_TXFAD(n) (((n)&0x7f) << 0)
  2294. #define USBC_TXHAD(n) (((n)&0x7f) << 16)
  2295. #define USBC_MULTIPLE (1 << 23)
  2296. #define USBC_TXHP(n) (((n)&0x7f) << 24)
  2297. // otg_ep3_rxfad_had_hp
  2298. #define USBC_RXFAD(n) (((n)&0x7f) << 0)
  2299. #define USBC_RXHAD(n) (((n)&0x7f) << 16)
  2300. #define USBC_MULTIPLE (1 << 23)
  2301. #define USBC_RXHP(n) (((n)&0x7f) << 24)
  2302. // otg_ep4_txfad_had_hp
  2303. #define USBC_TXFAD(n) (((n)&0x7f) << 0)
  2304. #define USBC_TXHAD(n) (((n)&0x7f) << 16)
  2305. #define USBC_MULTIPLE (1 << 23)
  2306. #define USBC_TXHP(n) (((n)&0x7f) << 24)
  2307. // otg_ep4_rxfad_had_hp
  2308. #define USBC_RXFAD(n) (((n)&0x7f) << 0)
  2309. #define USBC_RXHAD(n) (((n)&0x7f) << 16)
  2310. #define USBC_MULTIPLE (1 << 23)
  2311. #define USBC_RXHP(n) (((n)&0x7f) << 24)
  2312. // otg_ep5_txfad_had_hp
  2313. #define USBC_TXFAD(n) (((n)&0x7f) << 0)
  2314. #define USBC_TXHAD(n) (((n)&0x7f) << 16)
  2315. #define USBC_MULTIPLE (1 << 23)
  2316. #define USBC_TXHP(n) (((n)&0x7f) << 24)
  2317. // otg_ep5_rxfad_had_hp
  2318. #define USBC_RXFAD(n) (((n)&0x7f) << 0)
  2319. #define USBC_RXHAD(n) (((n)&0x7f) << 16)
  2320. #define USBC_MULTIPLE (1 << 23)
  2321. #define USBC_RXHP(n) (((n)&0x7f) << 24)
  2322. // otg_ep6_txfad_had_hp
  2323. #define USBC_TXFAD(n) (((n)&0x7f) << 0)
  2324. #define USBC_TXHAD(n) (((n)&0x7f) << 16)
  2325. #define USBC_MULTIPLE (1 << 23)
  2326. #define USBC_TXHP(n) (((n)&0x7f) << 24)
  2327. // otg_ep6_rxfad_had_hp
  2328. #define USBC_RXFAD(n) (((n)&0x7f) << 0)
  2329. #define USBC_RXHAD(n) (((n)&0x7f) << 16)
  2330. #define USBC_MULTIPLE (1 << 23)
  2331. #define USBC_RXHP(n) (((n)&0x7f) << 24)
  2332. // otg_ep7_txfad_had_hp
  2333. #define USBC_TXFAD(n) (((n)&0x7f) << 0)
  2334. #define USBC_TXHAD(n) (((n)&0x7f) << 16)
  2335. #define USBC_MULTIPLE (1 << 23)
  2336. #define USBC_TXHP(n) (((n)&0x7f) << 24)
  2337. // otg_ep7_rxfad_had_hp
  2338. #define USBC_RXFAD(n) (((n)&0x7f) << 0)
  2339. #define USBC_RXHAD(n) (((n)&0x7f) << 16)
  2340. #define USBC_MULTIPLE (1 << 23)
  2341. #define USBC_RXHP(n) (((n)&0x7f) << 24)
  2342. // otg_ep8_txfad_had_hp
  2343. #define USBC_TXFAD(n) (((n)&0x7f) << 0)
  2344. #define USBC_TXHAD(n) (((n)&0x7f) << 16)
  2345. #define USBC_MULTIPLE (1 << 23)
  2346. #define USBC_TXHP(n) (((n)&0x7f) << 24)
  2347. // otg_ep8_rxfad_had_hp
  2348. #define USBC_RXFAD(n) (((n)&0x7f) << 0)
  2349. #define USBC_RXHAD(n) (((n)&0x7f) << 16)
  2350. #define USBC_MULTIPLE (1 << 23)
  2351. #define USBC_RXHP(n) (((n)&0x7f) << 24)
  2352. // otg_ep9_txfad_had_hp
  2353. #define USBC_TXFAD(n) (((n)&0x7f) << 0)
  2354. #define USBC_TXHAD(n) (((n)&0x7f) << 16)
  2355. #define USBC_MULTIPLE (1 << 23)
  2356. #define USBC_TXHP(n) (((n)&0x7f) << 24)
  2357. // otg_ep9_rxfad_had_hp
  2358. #define USBC_RXFAD(n) (((n)&0x7f) << 0)
  2359. #define USBC_RXHAD(n) (((n)&0x7f) << 16)
  2360. #define USBC_MULTIPLE (1 << 23)
  2361. #define USBC_RXHP(n) (((n)&0x7f) << 24)
  2362. // otg_ep10_txfad_had_hp
  2363. #define USBC_TXFAD(n) (((n)&0x7f) << 0)
  2364. #define USBC_TXHAD(n) (((n)&0x7f) << 16)
  2365. #define USBC_MULTIPLE (1 << 23)
  2366. #define USBC_TXHP(n) (((n)&0x7f) << 24)
  2367. // otg_ep10_rxfad_had_hp
  2368. #define USBC_RXFAD(n) (((n)&0x7f) << 0)
  2369. #define USBC_RXHAD(n) (((n)&0x7f) << 16)
  2370. #define USBC_MULTIPLE (1 << 23)
  2371. #define USBC_RXHP(n) (((n)&0x7f) << 24)
  2372. // otg_ep11_txfad_had_hp
  2373. #define USBC_TXFAD(n) (((n)&0x7f) << 0)
  2374. #define USBC_TXHAD(n) (((n)&0x7f) << 16)
  2375. #define USBC_MULTIPLE (1 << 23)
  2376. #define USBC_TXHP(n) (((n)&0x7f) << 24)
  2377. // otg_ep11_rxfad_had_hp
  2378. #define USBC_RXFAD(n) (((n)&0x7f) << 0)
  2379. #define USBC_RXHAD(n) (((n)&0x7f) << 16)
  2380. #define USBC_MULTIPLE (1 << 23)
  2381. #define USBC_RXHP(n) (((n)&0x7f) << 24)
  2382. // otg_ep12_txfad_had_hp
  2383. #define USBC_TXFAD(n) (((n)&0x7f) << 0)
  2384. #define USBC_TXHAD(n) (((n)&0x7f) << 16)
  2385. #define USBC_MULTIPLE (1 << 23)
  2386. #define USBC_TXHP(n) (((n)&0x7f) << 24)
  2387. // otg_ep12_rxfad_had_hp
  2388. #define USBC_RXFAD(n) (((n)&0x7f) << 0)
  2389. #define USBC_RXHAD(n) (((n)&0x7f) << 16)
  2390. #define USBC_MULTIPLE (1 << 23)
  2391. #define USBC_RXHP(n) (((n)&0x7f) << 24)
  2392. // otg_ep13_txfad_had_hp
  2393. #define USBC_TXFAD(n) (((n)&0x7f) << 0)
  2394. #define USBC_TXHAD(n) (((n)&0x7f) << 16)
  2395. #define USBC_MULTIPLE (1 << 23)
  2396. #define USBC_TXHP(n) (((n)&0x7f) << 24)
  2397. // otg_ep13_rxfad_had_hp
  2398. #define USBC_RXFAD(n) (((n)&0x7f) << 0)
  2399. #define USBC_RXHAD(n) (((n)&0x7f) << 16)
  2400. #define USBC_MULTIPLE (1 << 23)
  2401. #define USBC_RXHP(n) (((n)&0x7f) << 24)
  2402. // otg_ep14_txfad_had_hp
  2403. #define USBC_TXFAD(n) (((n)&0x7f) << 0)
  2404. #define USBC_TXHAD(n) (((n)&0x7f) << 16)
  2405. #define USBC_MULTIPLE (1 << 23)
  2406. #define USBC_TXHP(n) (((n)&0x7f) << 24)
  2407. // otg_ep14_rxfad_had_hp
  2408. #define USBC_RXFAD(n) (((n)&0x7f) << 0)
  2409. #define USBC_RXHAD(n) (((n)&0x7f) << 16)
  2410. #define USBC_MULTIPLE (1 << 23)
  2411. #define USBC_RXHP(n) (((n)&0x7f) << 24)
  2412. // otg_ep15_txfad_had_hp
  2413. #define USBC_TXFAD(n) (((n)&0x7f) << 0)
  2414. #define USBC_TXHAD(n) (((n)&0x7f) << 16)
  2415. #define USBC_MULTIPLE (1 << 23)
  2416. #define USBC_TXHP(n) (((n)&0x7f) << 24)
  2417. // otg_ep15_rxfad_had_hp
  2418. #define USBC_RXFAD(n) (((n)&0x7f) << 0)
  2419. #define USBC_RXHAD(n) (((n)&0x7f) << 16)
  2420. #define USBC_MULTIPLE (1 << 23)
  2421. #define USBC_RXHP(n) (((n)&0x7f) << 24)
  2422. // reg_ep1_txmaxp_csr
  2423. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2424. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2425. #define USBC_REG_EP1_TXMAXP_CSR_TRDY (1 << 16)
  2426. #define USBC_FNE (1 << 17)
  2427. #define USBC_REG_EP1_TXMAXP_CSR_ERR (1 << 18)
  2428. #define USBC_REG_EP1_TXMAXP_CSR_FF (1 << 19)
  2429. #define USBC_REG_EP1_TXMAXP_CSR_STP (1 << 20)
  2430. #define USBC_RXS (1 << 21)
  2431. #define USBC_REG_EP1_TXMAXP_CSR_CLR (1 << 22)
  2432. #define USBC_NAK (1 << 23)
  2433. #define USBC_REG_EP1_TXMAXP_CSR_DT (1 << 24)
  2434. #define USBC_REG_EP1_TXMAXP_CSR_DWE (1 << 25)
  2435. #define USBC_DRM (1 << 26)
  2436. #define USBC_FDT (1 << 27)
  2437. #define USBC_REG_EP1_TXMAXP_CSR_DMR (1 << 28)
  2438. #define USBC_MD (1 << 29)
  2439. #define USBC_ISO (1 << 30)
  2440. #define USBC_ASET (1 << 31)
  2441. // reg_ep1_rxmaxp_csr
  2442. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2443. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2444. #define USBC_RRDY (1 << 16)
  2445. #define USBC_FFUL (1 << 17)
  2446. #define USBC_ER (1 << 18)
  2447. #define USBC_DER (1 << 19)
  2448. #define USBC_REG_EP1_RXMAXP_CSR_FF (1 << 20)
  2449. #define USBC_RPK (1 << 21)
  2450. #define USBC_RS (1 << 22)
  2451. #define USBC_REG_EP1_RXMAXP_CSR_CLR (1 << 23)
  2452. #define USBC_IRX (1 << 24)
  2453. #define USBC_REG_EP1_RXMAXP_CSR_DT (1 << 25)
  2454. #define USBC_REG_EP1_RXMAXP_CSR_DWE (1 << 26)
  2455. #define USBC_DMD (1 << 27)
  2456. #define USBC_DNY (1 << 28)
  2457. #define USBC_REG_EP1_RXMAXP_CSR_DMR (1 << 29)
  2458. #define USBC_ARQ (1 << 30)
  2459. #define USBC_ACLR (1 << 31)
  2460. // reg_ep1_rxcnt_txtype
  2461. #define USBC_RXCNT(n) (((n)&0x1fff) << 0)
  2462. #define USBC_REG_EP1_RXCNT_TXTYPE_EP(n) (((n)&0xf) << 16)
  2463. #define USBC_REG_EP1_RXCNT_TXTYPE_PROT(n) (((n)&0x3) << 20)
  2464. #define USBC_REG_EP1_RXCNT_TXTYPE_SPEED(n) (((n)&0x3) << 22)
  2465. #define USBC_TXPI(n) (((n)&0xff) << 24)
  2466. // reg_ep1_rxtype_intv
  2467. #define USBC_REG_EP1_RXTYPE_INTV_EP(n) (((n)&0xf) << 0)
  2468. #define USBC_REG_EP1_RXTYPE_INTV_PROT(n) (((n)&0x3) << 4)
  2469. #define USBC_REG_EP1_RXTYPE_INTV_SPEED(n) (((n)&0x3) << 6)
  2470. #define USBC_RXPI(n) (((n)&0xff) << 8)
  2471. // reg_ep2_txmaxp_csr
  2472. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2473. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2474. #define USBC_REG_EP2_TXMAXP_CSR_TRDY (1 << 16)
  2475. #define USBC_FNE (1 << 17)
  2476. #define USBC_REG_EP2_TXMAXP_CSR_ERR (1 << 18)
  2477. #define USBC_REG_EP2_TXMAXP_CSR_FF (1 << 19)
  2478. #define USBC_REG_EP2_TXMAXP_CSR_STP (1 << 20)
  2479. #define USBC_RXS (1 << 21)
  2480. #define USBC_REG_EP2_TXMAXP_CSR_CLR (1 << 22)
  2481. #define USBC_NAK (1 << 23)
  2482. #define USBC_REG_EP2_TXMAXP_CSR_DT (1 << 24)
  2483. #define USBC_REG_EP2_TXMAXP_CSR_DWE (1 << 25)
  2484. #define USBC_DRM (1 << 26)
  2485. #define USBC_FDT (1 << 27)
  2486. #define USBC_REG_EP2_TXMAXP_CSR_DMR (1 << 28)
  2487. #define USBC_MD (1 << 29)
  2488. #define USBC_ISO (1 << 30)
  2489. #define USBC_ASET (1 << 31)
  2490. // reg_ep2_rxmaxp_csr
  2491. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2492. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2493. #define USBC_RRDY (1 << 16)
  2494. #define USBC_FFUL (1 << 17)
  2495. #define USBC_ER (1 << 18)
  2496. #define USBC_DER (1 << 19)
  2497. #define USBC_REG_EP2_RXMAXP_CSR_FF (1 << 20)
  2498. #define USBC_RPK (1 << 21)
  2499. #define USBC_RS (1 << 22)
  2500. #define USBC_REG_EP2_RXMAXP_CSR_CLR (1 << 23)
  2501. #define USBC_IRX (1 << 24)
  2502. #define USBC_REG_EP2_RXMAXP_CSR_DT (1 << 25)
  2503. #define USBC_REG_EP2_RXMAXP_CSR_DWE (1 << 26)
  2504. #define USBC_DMD (1 << 27)
  2505. #define USBC_DNY (1 << 28)
  2506. #define USBC_REG_EP2_RXMAXP_CSR_DMR (1 << 29)
  2507. #define USBC_ARQ (1 << 30)
  2508. #define USBC_ACLR (1 << 31)
  2509. // reg_ep2_rxcnt_txtype
  2510. #define USBC_RXCNT(n) (((n)&0x1fff) << 0)
  2511. #define USBC_REG_EP2_RXCNT_TXTYPE_EP(n) (((n)&0xf) << 16)
  2512. #define USBC_REG_EP2_RXCNT_TXTYPE_PROT(n) (((n)&0x3) << 20)
  2513. #define USBC_REG_EP2_RXCNT_TXTYPE_SPEED(n) (((n)&0x3) << 22)
  2514. #define USBC_TXPI(n) (((n)&0xff) << 24)
  2515. // reg_ep2_rxtype_intv
  2516. #define USBC_REG_EP2_RXTYPE_INTV_EP(n) (((n)&0xf) << 0)
  2517. #define USBC_REG_EP2_RXTYPE_INTV_PROT(n) (((n)&0x3) << 4)
  2518. #define USBC_REG_EP2_RXTYPE_INTV_SPEED(n) (((n)&0x3) << 6)
  2519. #define USBC_RXPI(n) (((n)&0xff) << 8)
  2520. // reg_ep3_txmaxp_csr
  2521. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2522. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2523. #define USBC_REG_EP3_TXMAXP_CSR_TRDY (1 << 16)
  2524. #define USBC_FNE (1 << 17)
  2525. #define USBC_REG_EP3_TXMAXP_CSR_ERR (1 << 18)
  2526. #define USBC_REG_EP3_TXMAXP_CSR_FF (1 << 19)
  2527. #define USBC_REG_EP3_TXMAXP_CSR_STP (1 << 20)
  2528. #define USBC_RXS (1 << 21)
  2529. #define USBC_REG_EP3_TXMAXP_CSR_CLR (1 << 22)
  2530. #define USBC_NAK (1 << 23)
  2531. #define USBC_REG_EP3_TXMAXP_CSR_DT (1 << 24)
  2532. #define USBC_REG_EP3_TXMAXP_CSR_DWE (1 << 25)
  2533. #define USBC_DRM (1 << 26)
  2534. #define USBC_FDT (1 << 27)
  2535. #define USBC_REG_EP3_TXMAXP_CSR_DMR (1 << 28)
  2536. #define USBC_MD (1 << 29)
  2537. #define USBC_ISO (1 << 30)
  2538. #define USBC_ASET (1 << 31)
  2539. // reg_ep3_rxmaxp_csr
  2540. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2541. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2542. #define USBC_RRDY (1 << 16)
  2543. #define USBC_FFUL (1 << 17)
  2544. #define USBC_ER (1 << 18)
  2545. #define USBC_DER (1 << 19)
  2546. #define USBC_REG_EP3_RXMAXP_CSR_FF (1 << 20)
  2547. #define USBC_RPK (1 << 21)
  2548. #define USBC_RS (1 << 22)
  2549. #define USBC_REG_EP3_RXMAXP_CSR_CLR (1 << 23)
  2550. #define USBC_IRX (1 << 24)
  2551. #define USBC_REG_EP3_RXMAXP_CSR_DT (1 << 25)
  2552. #define USBC_REG_EP3_RXMAXP_CSR_DWE (1 << 26)
  2553. #define USBC_DMD (1 << 27)
  2554. #define USBC_DNY (1 << 28)
  2555. #define USBC_REG_EP3_RXMAXP_CSR_DMR (1 << 29)
  2556. #define USBC_ARQ (1 << 30)
  2557. #define USBC_ACLR (1 << 31)
  2558. // reg_ep3_rxcnt_txtype
  2559. #define USBC_RXCNT(n) (((n)&0x1fff) << 0)
  2560. #define USBC_REG_EP3_RXCNT_TXTYPE_EP(n) (((n)&0xf) << 16)
  2561. #define USBC_REG_EP3_RXCNT_TXTYPE_PROT(n) (((n)&0x3) << 20)
  2562. #define USBC_REG_EP3_RXCNT_TXTYPE_SPEED(n) (((n)&0x3) << 22)
  2563. #define USBC_TXPI(n) (((n)&0xff) << 24)
  2564. // reg_ep3_rxtype_intv
  2565. #define USBC_REG_EP3_RXTYPE_INTV_EP(n) (((n)&0xf) << 0)
  2566. #define USBC_REG_EP3_RXTYPE_INTV_PROT(n) (((n)&0x3) << 4)
  2567. #define USBC_REG_EP3_RXTYPE_INTV_SPEED(n) (((n)&0x3) << 6)
  2568. #define USBC_RXPI(n) (((n)&0xff) << 8)
  2569. // reg_ep4_txmaxp_csr
  2570. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2571. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2572. #define USBC_REG_EP4_TXMAXP_CSR_TRDY (1 << 16)
  2573. #define USBC_FNE (1 << 17)
  2574. #define USBC_REG_EP4_TXMAXP_CSR_ERR (1 << 18)
  2575. #define USBC_REG_EP4_TXMAXP_CSR_FF (1 << 19)
  2576. #define USBC_REG_EP4_TXMAXP_CSR_STP (1 << 20)
  2577. #define USBC_RXS (1 << 21)
  2578. #define USBC_REG_EP4_TXMAXP_CSR_CLR (1 << 22)
  2579. #define USBC_NAK (1 << 23)
  2580. #define USBC_REG_EP4_TXMAXP_CSR_DT (1 << 24)
  2581. #define USBC_REG_EP4_TXMAXP_CSR_DWE (1 << 25)
  2582. #define USBC_DRM (1 << 26)
  2583. #define USBC_FDT (1 << 27)
  2584. #define USBC_REG_EP4_TXMAXP_CSR_DMR (1 << 28)
  2585. #define USBC_MD (1 << 29)
  2586. #define USBC_ISO (1 << 30)
  2587. #define USBC_ASET (1 << 31)
  2588. // reg_ep4_rxmaxp_csr
  2589. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2590. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2591. #define USBC_RRDY (1 << 16)
  2592. #define USBC_FFUL (1 << 17)
  2593. #define USBC_ER (1 << 18)
  2594. #define USBC_DER (1 << 19)
  2595. #define USBC_REG_EP4_RXMAXP_CSR_FF (1 << 20)
  2596. #define USBC_RPK (1 << 21)
  2597. #define USBC_RS (1 << 22)
  2598. #define USBC_REG_EP4_RXMAXP_CSR_CLR (1 << 23)
  2599. #define USBC_IRX (1 << 24)
  2600. #define USBC_REG_EP4_RXMAXP_CSR_DT (1 << 25)
  2601. #define USBC_REG_EP4_RXMAXP_CSR_DWE (1 << 26)
  2602. #define USBC_DMD (1 << 27)
  2603. #define USBC_DNY (1 << 28)
  2604. #define USBC_REG_EP4_RXMAXP_CSR_DMR (1 << 29)
  2605. #define USBC_ARQ (1 << 30)
  2606. #define USBC_ACLR (1 << 31)
  2607. // reg_ep4_rxcnt_txtype
  2608. #define USBC_RXCNT(n) (((n)&0x1fff) << 0)
  2609. #define USBC_REG_EP4_RXCNT_TXTYPE_EP(n) (((n)&0xf) << 16)
  2610. #define USBC_REG_EP4_RXCNT_TXTYPE_PROT(n) (((n)&0x3) << 20)
  2611. #define USBC_REG_EP4_RXCNT_TXTYPE_SPEED(n) (((n)&0x3) << 22)
  2612. #define USBC_TXPI(n) (((n)&0xff) << 24)
  2613. // reg_ep4_rxtype_intv
  2614. #define USBC_REG_EP4_RXTYPE_INTV_EP(n) (((n)&0xf) << 0)
  2615. #define USBC_REG_EP4_RXTYPE_INTV_PROT(n) (((n)&0x3) << 4)
  2616. #define USBC_REG_EP4_RXTYPE_INTV_SPEED(n) (((n)&0x3) << 6)
  2617. #define USBC_RXPI(n) (((n)&0xff) << 8)
  2618. // reg_ep5_txmaxp_csr
  2619. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2620. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2621. #define USBC_REG_EP5_TXMAXP_CSR_TRDY (1 << 16)
  2622. #define USBC_FNE (1 << 17)
  2623. #define USBC_REG_EP5_TXMAXP_CSR_ERR (1 << 18)
  2624. #define USBC_REG_EP5_TXMAXP_CSR_FF (1 << 19)
  2625. #define USBC_REG_EP5_TXMAXP_CSR_STP (1 << 20)
  2626. #define USBC_RXS (1 << 21)
  2627. #define USBC_REG_EP5_TXMAXP_CSR_CLR (1 << 22)
  2628. #define USBC_NAK (1 << 23)
  2629. #define USBC_REG_EP5_TXMAXP_CSR_DT (1 << 24)
  2630. #define USBC_REG_EP5_TXMAXP_CSR_DWE (1 << 25)
  2631. #define USBC_DRM (1 << 26)
  2632. #define USBC_FDT (1 << 27)
  2633. #define USBC_REG_EP5_TXMAXP_CSR_DMR (1 << 28)
  2634. #define USBC_MD (1 << 29)
  2635. #define USBC_ISO (1 << 30)
  2636. #define USBC_ASET (1 << 31)
  2637. // reg_ep5_rxmaxp_csr
  2638. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2639. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2640. #define USBC_RRDY (1 << 16)
  2641. #define USBC_FFUL (1 << 17)
  2642. #define USBC_ER (1 << 18)
  2643. #define USBC_DER (1 << 19)
  2644. #define USBC_REG_EP5_RXMAXP_CSR_FF (1 << 20)
  2645. #define USBC_RPK (1 << 21)
  2646. #define USBC_RS (1 << 22)
  2647. #define USBC_REG_EP5_RXMAXP_CSR_CLR (1 << 23)
  2648. #define USBC_IRX (1 << 24)
  2649. #define USBC_REG_EP5_RXMAXP_CSR_DT (1 << 25)
  2650. #define USBC_REG_EP5_RXMAXP_CSR_DWE (1 << 26)
  2651. #define USBC_DMD (1 << 27)
  2652. #define USBC_DNY (1 << 28)
  2653. #define USBC_REG_EP5_RXMAXP_CSR_DMR (1 << 29)
  2654. #define USBC_ARQ (1 << 30)
  2655. #define USBC_ACLR (1 << 31)
  2656. // reg_ep5_rxcnt_txtype
  2657. #define USBC_RXCNT(n) (((n)&0x1fff) << 0)
  2658. #define USBC_REG_EP5_RXCNT_TXTYPE_EP(n) (((n)&0xf) << 16)
  2659. #define USBC_REG_EP5_RXCNT_TXTYPE_PROT(n) (((n)&0x3) << 20)
  2660. #define USBC_REG_EP5_RXCNT_TXTYPE_SPEED(n) (((n)&0x3) << 22)
  2661. #define USBC_TXPI(n) (((n)&0xff) << 24)
  2662. // reg_ep5_rxtype_intv
  2663. #define USBC_REG_EP5_RXTYPE_INTV_EP(n) (((n)&0xf) << 0)
  2664. #define USBC_REG_EP5_RXTYPE_INTV_PROT(n) (((n)&0x3) << 4)
  2665. #define USBC_REG_EP5_RXTYPE_INTV_SPEED(n) (((n)&0x3) << 6)
  2666. #define USBC_RXPI(n) (((n)&0xff) << 8)
  2667. // reg_ep6_txmaxp_csr
  2668. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2669. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2670. #define USBC_REG_EP6_TXMAXP_CSR_TRDY (1 << 16)
  2671. #define USBC_FNE (1 << 17)
  2672. #define USBC_REG_EP6_TXMAXP_CSR_ERR (1 << 18)
  2673. #define USBC_REG_EP6_TXMAXP_CSR_FF (1 << 19)
  2674. #define USBC_REG_EP6_TXMAXP_CSR_STP (1 << 20)
  2675. #define USBC_RXS (1 << 21)
  2676. #define USBC_REG_EP6_TXMAXP_CSR_CLR (1 << 22)
  2677. #define USBC_NAK (1 << 23)
  2678. #define USBC_REG_EP6_TXMAXP_CSR_DT (1 << 24)
  2679. #define USBC_REG_EP6_TXMAXP_CSR_DWE (1 << 25)
  2680. #define USBC_DRM (1 << 26)
  2681. #define USBC_FDT (1 << 27)
  2682. #define USBC_REG_EP6_TXMAXP_CSR_DMR (1 << 28)
  2683. #define USBC_MD (1 << 29)
  2684. #define USBC_ISO (1 << 30)
  2685. #define USBC_ASET (1 << 31)
  2686. // reg_ep6_rxmaxp_csr
  2687. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2688. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2689. #define USBC_RRDY (1 << 16)
  2690. #define USBC_FFUL (1 << 17)
  2691. #define USBC_ER (1 << 18)
  2692. #define USBC_DER (1 << 19)
  2693. #define USBC_REG_EP6_RXMAXP_CSR_FF (1 << 20)
  2694. #define USBC_RPK (1 << 21)
  2695. #define USBC_RS (1 << 22)
  2696. #define USBC_REG_EP6_RXMAXP_CSR_CLR (1 << 23)
  2697. #define USBC_IRX (1 << 24)
  2698. #define USBC_REG_EP6_RXMAXP_CSR_DT (1 << 25)
  2699. #define USBC_REG_EP6_RXMAXP_CSR_DWE (1 << 26)
  2700. #define USBC_DMD (1 << 27)
  2701. #define USBC_DNY (1 << 28)
  2702. #define USBC_REG_EP6_RXMAXP_CSR_DMR (1 << 29)
  2703. #define USBC_ARQ (1 << 30)
  2704. #define USBC_ACLR (1 << 31)
  2705. // reg_ep6_rxcnt_txtype
  2706. #define USBC_RXCNT(n) (((n)&0x1fff) << 0)
  2707. #define USBC_REG_EP6_RXCNT_TXTYPE_EP(n) (((n)&0xf) << 16)
  2708. #define USBC_REG_EP6_RXCNT_TXTYPE_PROT(n) (((n)&0x3) << 20)
  2709. #define USBC_REG_EP6_RXCNT_TXTYPE_SPEED(n) (((n)&0x3) << 22)
  2710. #define USBC_TXPI(n) (((n)&0xff) << 24)
  2711. // reg_ep6_rxtype_intv
  2712. #define USBC_REG_EP6_RXTYPE_INTV_EP(n) (((n)&0xf) << 0)
  2713. #define USBC_REG_EP6_RXTYPE_INTV_PROT(n) (((n)&0x3) << 4)
  2714. #define USBC_REG_EP6_RXTYPE_INTV_SPEED(n) (((n)&0x3) << 6)
  2715. #define USBC_RXPI(n) (((n)&0xff) << 8)
  2716. // reg_ep7_txmaxp_csr
  2717. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2718. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2719. #define USBC_REG_EP7_TXMAXP_CSR_TRDY (1 << 16)
  2720. #define USBC_FNE (1 << 17)
  2721. #define USBC_REG_EP7_TXMAXP_CSR_ERR (1 << 18)
  2722. #define USBC_REG_EP7_TXMAXP_CSR_FF (1 << 19)
  2723. #define USBC_REG_EP7_TXMAXP_CSR_STP (1 << 20)
  2724. #define USBC_RXS (1 << 21)
  2725. #define USBC_REG_EP7_TXMAXP_CSR_CLR (1 << 22)
  2726. #define USBC_NAK (1 << 23)
  2727. #define USBC_REG_EP7_TXMAXP_CSR_DT (1 << 24)
  2728. #define USBC_REG_EP7_TXMAXP_CSR_DWE (1 << 25)
  2729. #define USBC_DRM (1 << 26)
  2730. #define USBC_FDT (1 << 27)
  2731. #define USBC_REG_EP7_TXMAXP_CSR_DMR (1 << 28)
  2732. #define USBC_MD (1 << 29)
  2733. #define USBC_ISO (1 << 30)
  2734. #define USBC_ASET (1 << 31)
  2735. // reg_ep7_rxmaxp_csr
  2736. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2737. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2738. #define USBC_RRDY (1 << 16)
  2739. #define USBC_FFUL (1 << 17)
  2740. #define USBC_ER (1 << 18)
  2741. #define USBC_DER (1 << 19)
  2742. #define USBC_REG_EP7_RXMAXP_CSR_FF (1 << 20)
  2743. #define USBC_RPK (1 << 21)
  2744. #define USBC_RS (1 << 22)
  2745. #define USBC_REG_EP7_RXMAXP_CSR_CLR (1 << 23)
  2746. #define USBC_IRX (1 << 24)
  2747. #define USBC_REG_EP7_RXMAXP_CSR_DT (1 << 25)
  2748. #define USBC_REG_EP7_RXMAXP_CSR_DWE (1 << 26)
  2749. #define USBC_DMD (1 << 27)
  2750. #define USBC_DNY (1 << 28)
  2751. #define USBC_REG_EP7_RXMAXP_CSR_DMR (1 << 29)
  2752. #define USBC_ARQ (1 << 30)
  2753. #define USBC_ACLR (1 << 31)
  2754. // reg_ep7_rxcnt_txtype
  2755. #define USBC_RXCNT(n) (((n)&0x1fff) << 0)
  2756. #define USBC_REG_EP7_RXCNT_TXTYPE_EP(n) (((n)&0xf) << 16)
  2757. #define USBC_REG_EP7_RXCNT_TXTYPE_PROT(n) (((n)&0x3) << 20)
  2758. #define USBC_REG_EP7_RXCNT_TXTYPE_SPEED(n) (((n)&0x3) << 22)
  2759. #define USBC_TXPI(n) (((n)&0xff) << 24)
  2760. // reg_ep7_rxtype_intv
  2761. #define USBC_REG_EP7_RXTYPE_INTV_EP(n) (((n)&0xf) << 0)
  2762. #define USBC_REG_EP7_RXTYPE_INTV_PROT(n) (((n)&0x3) << 4)
  2763. #define USBC_REG_EP7_RXTYPE_INTV_SPEED(n) (((n)&0x3) << 6)
  2764. #define USBC_RXPI(n) (((n)&0xff) << 8)
  2765. // reg_ep8_txmaxp_csr
  2766. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2767. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2768. #define USBC_REG_EP8_TXMAXP_CSR_TRDY (1 << 16)
  2769. #define USBC_FNE (1 << 17)
  2770. #define USBC_REG_EP8_TXMAXP_CSR_ERR (1 << 18)
  2771. #define USBC_REG_EP8_TXMAXP_CSR_FF (1 << 19)
  2772. #define USBC_REG_EP8_TXMAXP_CSR_STP (1 << 20)
  2773. #define USBC_RXS (1 << 21)
  2774. #define USBC_REG_EP8_TXMAXP_CSR_CLR (1 << 22)
  2775. #define USBC_NAK (1 << 23)
  2776. #define USBC_REG_EP8_TXMAXP_CSR_DT (1 << 24)
  2777. #define USBC_REG_EP8_TXMAXP_CSR_DWE (1 << 25)
  2778. #define USBC_DRM (1 << 26)
  2779. #define USBC_FDT (1 << 27)
  2780. #define USBC_REG_EP8_TXMAXP_CSR_DMR (1 << 28)
  2781. #define USBC_MD (1 << 29)
  2782. #define USBC_ISO (1 << 30)
  2783. #define USBC_ASET (1 << 31)
  2784. // reg_ep8_rxmaxp_csr
  2785. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2786. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2787. #define USBC_RRDY (1 << 16)
  2788. #define USBC_FFUL (1 << 17)
  2789. #define USBC_ER (1 << 18)
  2790. #define USBC_DER (1 << 19)
  2791. #define USBC_REG_EP8_RXMAXP_CSR_FF (1 << 20)
  2792. #define USBC_RPK (1 << 21)
  2793. #define USBC_RS (1 << 22)
  2794. #define USBC_REG_EP8_RXMAXP_CSR_CLR (1 << 23)
  2795. #define USBC_IRX (1 << 24)
  2796. #define USBC_REG_EP8_RXMAXP_CSR_DT (1 << 25)
  2797. #define USBC_REG_EP8_RXMAXP_CSR_DWE (1 << 26)
  2798. #define USBC_DMD (1 << 27)
  2799. #define USBC_DNY (1 << 28)
  2800. #define USBC_REG_EP8_RXMAXP_CSR_DMR (1 << 29)
  2801. #define USBC_ARQ (1 << 30)
  2802. #define USBC_ACLR (1 << 31)
  2803. // reg_ep8_rxcnt_txtype
  2804. #define USBC_RXCNT(n) (((n)&0x1fff) << 0)
  2805. #define USBC_REG_EP8_RXCNT_TXTYPE_EP(n) (((n)&0xf) << 16)
  2806. #define USBC_REG_EP8_RXCNT_TXTYPE_PROT(n) (((n)&0x3) << 20)
  2807. #define USBC_REG_EP8_RXCNT_TXTYPE_SPEED(n) (((n)&0x3) << 22)
  2808. #define USBC_TXPI(n) (((n)&0xff) << 24)
  2809. // reg_ep8_rxtype_intv
  2810. #define USBC_REG_EP8_RXTYPE_INTV_EP(n) (((n)&0xf) << 0)
  2811. #define USBC_REG_EP8_RXTYPE_INTV_PROT(n) (((n)&0x3) << 4)
  2812. #define USBC_REG_EP8_RXTYPE_INTV_SPEED(n) (((n)&0x3) << 6)
  2813. #define USBC_RXPI(n) (((n)&0xff) << 8)
  2814. // reg_ep9_txmaxp_csr
  2815. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2816. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2817. #define USBC_REG_EP9_TXMAXP_CSR_TRDY (1 << 16)
  2818. #define USBC_FNE (1 << 17)
  2819. #define USBC_REG_EP9_TXMAXP_CSR_ERR (1 << 18)
  2820. #define USBC_REG_EP9_TXMAXP_CSR_FF (1 << 19)
  2821. #define USBC_REG_EP9_TXMAXP_CSR_STP (1 << 20)
  2822. #define USBC_RXS (1 << 21)
  2823. #define USBC_REG_EP9_TXMAXP_CSR_CLR (1 << 22)
  2824. #define USBC_NAK (1 << 23)
  2825. #define USBC_REG_EP9_TXMAXP_CSR_DT (1 << 24)
  2826. #define USBC_REG_EP9_TXMAXP_CSR_DWE (1 << 25)
  2827. #define USBC_DRM (1 << 26)
  2828. #define USBC_FDT (1 << 27)
  2829. #define USBC_REG_EP9_TXMAXP_CSR_DMR (1 << 28)
  2830. #define USBC_MD (1 << 29)
  2831. #define USBC_ISO (1 << 30)
  2832. #define USBC_ASET (1 << 31)
  2833. // reg_ep9_rxmaxp_csr
  2834. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2835. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2836. #define USBC_RRDY (1 << 16)
  2837. #define USBC_FFUL (1 << 17)
  2838. #define USBC_ER (1 << 18)
  2839. #define USBC_DER (1 << 19)
  2840. #define USBC_REG_EP9_RXMAXP_CSR_FF (1 << 20)
  2841. #define USBC_RPK (1 << 21)
  2842. #define USBC_RS (1 << 22)
  2843. #define USBC_REG_EP9_RXMAXP_CSR_CLR (1 << 23)
  2844. #define USBC_IRX (1 << 24)
  2845. #define USBC_REG_EP9_RXMAXP_CSR_DT (1 << 25)
  2846. #define USBC_REG_EP9_RXMAXP_CSR_DWE (1 << 26)
  2847. #define USBC_DMD (1 << 27)
  2848. #define USBC_DNY (1 << 28)
  2849. #define USBC_REG_EP9_RXMAXP_CSR_DMR (1 << 29)
  2850. #define USBC_ARQ (1 << 30)
  2851. #define USBC_ACLR (1 << 31)
  2852. // reg_ep9_rxcnt_txtype
  2853. #define USBC_RXCNT(n) (((n)&0x1fff) << 0)
  2854. #define USBC_REG_EP9_RXCNT_TXTYPE_EP(n) (((n)&0xf) << 16)
  2855. #define USBC_REG_EP9_RXCNT_TXTYPE_PROT(n) (((n)&0x3) << 20)
  2856. #define USBC_REG_EP9_RXCNT_TXTYPE_SPEED(n) (((n)&0x3) << 22)
  2857. #define USBC_TXPI(n) (((n)&0xff) << 24)
  2858. // reg_ep9_rxtype_intv
  2859. #define USBC_REG_EP9_RXTYPE_INTV_EP(n) (((n)&0xf) << 0)
  2860. #define USBC_REG_EP9_RXTYPE_INTV_PROT(n) (((n)&0x3) << 4)
  2861. #define USBC_REG_EP9_RXTYPE_INTV_SPEED(n) (((n)&0x3) << 6)
  2862. #define USBC_RXPI(n) (((n)&0xff) << 8)
  2863. // reg_ep10_txmaxp_csr
  2864. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2865. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2866. #define USBC_REG_EP10_TXMAXP_CSR_TRDY (1 << 16)
  2867. #define USBC_FNE (1 << 17)
  2868. #define USBC_REG_EP10_TXMAXP_CSR_ERR (1 << 18)
  2869. #define USBC_REG_EP10_TXMAXP_CSR_FF (1 << 19)
  2870. #define USBC_REG_EP10_TXMAXP_CSR_STP (1 << 20)
  2871. #define USBC_RXS (1 << 21)
  2872. #define USBC_REG_EP10_TXMAXP_CSR_CLR (1 << 22)
  2873. #define USBC_NAK (1 << 23)
  2874. #define USBC_REG_EP10_TXMAXP_CSR_DT (1 << 24)
  2875. #define USBC_REG_EP10_TXMAXP_CSR_DWE (1 << 25)
  2876. #define USBC_DRM (1 << 26)
  2877. #define USBC_FDT (1 << 27)
  2878. #define USBC_REG_EP10_TXMAXP_CSR_DMR (1 << 28)
  2879. #define USBC_MD (1 << 29)
  2880. #define USBC_ISO (1 << 30)
  2881. #define USBC_ASET (1 << 31)
  2882. // reg_ep10_rxmaxp_csr
  2883. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2884. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2885. #define USBC_RRDY (1 << 16)
  2886. #define USBC_FFUL (1 << 17)
  2887. #define USBC_ER (1 << 18)
  2888. #define USBC_DER (1 << 19)
  2889. #define USBC_REG_EP10_RXMAXP_CSR_FF (1 << 20)
  2890. #define USBC_RPK (1 << 21)
  2891. #define USBC_RS (1 << 22)
  2892. #define USBC_REG_EP10_RXMAXP_CSR_CLR (1 << 23)
  2893. #define USBC_IRX (1 << 24)
  2894. #define USBC_REG_EP10_RXMAXP_CSR_DT (1 << 25)
  2895. #define USBC_REG_EP10_RXMAXP_CSR_DWE (1 << 26)
  2896. #define USBC_DMD (1 << 27)
  2897. #define USBC_DNY (1 << 28)
  2898. #define USBC_REG_EP10_RXMAXP_CSR_DMR (1 << 29)
  2899. #define USBC_ARQ (1 << 30)
  2900. #define USBC_ACLR (1 << 31)
  2901. // reg_ep10_rxcnt_txtype
  2902. #define USBC_RXCNT(n) (((n)&0x1fff) << 0)
  2903. #define USBC_REG_EP10_RXCNT_TXTYPE_EP(n) (((n)&0xf) << 16)
  2904. #define USBC_REG_EP10_RXCNT_TXTYPE_PROT(n) (((n)&0x3) << 20)
  2905. #define USBC_REG_EP10_RXCNT_TXTYPE_SPEED(n) (((n)&0x3) << 22)
  2906. #define USBC_TXPI(n) (((n)&0xff) << 24)
  2907. // reg_ep10_rxtype_intv
  2908. #define USBC_REG_EP10_RXTYPE_INTV_EP(n) (((n)&0xf) << 0)
  2909. #define USBC_REG_EP10_RXTYPE_INTV_PROT(n) (((n)&0x3) << 4)
  2910. #define USBC_REG_EP10_RXTYPE_INTV_SPEED(n) (((n)&0x3) << 6)
  2911. #define USBC_RXPI(n) (((n)&0xff) << 8)
  2912. // reg_ep11_txmaxp_csr
  2913. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2914. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2915. #define USBC_REG_EP11_TXMAXP_CSR_TRDY (1 << 16)
  2916. #define USBC_FNE (1 << 17)
  2917. #define USBC_REG_EP11_TXMAXP_CSR_ERR (1 << 18)
  2918. #define USBC_REG_EP11_TXMAXP_CSR_FF (1 << 19)
  2919. #define USBC_REG_EP11_TXMAXP_CSR_STP (1 << 20)
  2920. #define USBC_RXS (1 << 21)
  2921. #define USBC_REG_EP11_TXMAXP_CSR_CLR (1 << 22)
  2922. #define USBC_NAK (1 << 23)
  2923. #define USBC_REG_EP11_TXMAXP_CSR_DT (1 << 24)
  2924. #define USBC_REG_EP11_TXMAXP_CSR_DWE (1 << 25)
  2925. #define USBC_DRM (1 << 26)
  2926. #define USBC_FDT (1 << 27)
  2927. #define USBC_REG_EP11_TXMAXP_CSR_DMR (1 << 28)
  2928. #define USBC_MD (1 << 29)
  2929. #define USBC_ISO (1 << 30)
  2930. #define USBC_ASET (1 << 31)
  2931. // reg_ep11_rxmaxp_csr
  2932. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2933. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2934. #define USBC_RRDY (1 << 16)
  2935. #define USBC_FFUL (1 << 17)
  2936. #define USBC_ER (1 << 18)
  2937. #define USBC_DER (1 << 19)
  2938. #define USBC_REG_EP11_RXMAXP_CSR_FF (1 << 20)
  2939. #define USBC_RPK (1 << 21)
  2940. #define USBC_RS (1 << 22)
  2941. #define USBC_REG_EP11_RXMAXP_CSR_CLR (1 << 23)
  2942. #define USBC_IRX (1 << 24)
  2943. #define USBC_REG_EP11_RXMAXP_CSR_DT (1 << 25)
  2944. #define USBC_REG_EP11_RXMAXP_CSR_DWE (1 << 26)
  2945. #define USBC_DMD (1 << 27)
  2946. #define USBC_DNY (1 << 28)
  2947. #define USBC_REG_EP11_RXMAXP_CSR_DMR (1 << 29)
  2948. #define USBC_ARQ (1 << 30)
  2949. #define USBC_ACLR (1 << 31)
  2950. // reg_ep11_rxcnt_txtype
  2951. #define USBC_RXCNT(n) (((n)&0x1fff) << 0)
  2952. #define USBC_REG_EP11_RXCNT_TXTYPE_EP(n) (((n)&0xf) << 16)
  2953. #define USBC_REG_EP11_RXCNT_TXTYPE_PROT(n) (((n)&0x3) << 20)
  2954. #define USBC_REG_EP11_RXCNT_TXTYPE_SPEED(n) (((n)&0x3) << 22)
  2955. #define USBC_TXPI(n) (((n)&0xff) << 24)
  2956. // reg_ep11_rxtype_intv
  2957. #define USBC_REG_EP11_RXTYPE_INTV_EP(n) (((n)&0xf) << 0)
  2958. #define USBC_REG_EP11_RXTYPE_INTV_PROT(n) (((n)&0x3) << 4)
  2959. #define USBC_REG_EP11_RXTYPE_INTV_SPEED(n) (((n)&0x3) << 6)
  2960. #define USBC_RXPI(n) (((n)&0xff) << 8)
  2961. // reg_ep12_txmaxp_csr
  2962. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2963. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2964. #define USBC_REG_EP12_TXMAXP_CSR_TRDY (1 << 16)
  2965. #define USBC_FNE (1 << 17)
  2966. #define USBC_REG_EP12_TXMAXP_CSR_ERR (1 << 18)
  2967. #define USBC_REG_EP12_TXMAXP_CSR_FF (1 << 19)
  2968. #define USBC_REG_EP12_TXMAXP_CSR_STP (1 << 20)
  2969. #define USBC_RXS (1 << 21)
  2970. #define USBC_REG_EP12_TXMAXP_CSR_CLR (1 << 22)
  2971. #define USBC_NAK (1 << 23)
  2972. #define USBC_REG_EP12_TXMAXP_CSR_DT (1 << 24)
  2973. #define USBC_REG_EP12_TXMAXP_CSR_DWE (1 << 25)
  2974. #define USBC_DRM (1 << 26)
  2975. #define USBC_FDT (1 << 27)
  2976. #define USBC_REG_EP12_TXMAXP_CSR_DMR (1 << 28)
  2977. #define USBC_MD (1 << 29)
  2978. #define USBC_ISO (1 << 30)
  2979. #define USBC_ASET (1 << 31)
  2980. // reg_ep12_rxmaxp_csr
  2981. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  2982. #define USBC_MULT(n) (((n)&0x1f) << 11)
  2983. #define USBC_RRDY (1 << 16)
  2984. #define USBC_FFUL (1 << 17)
  2985. #define USBC_ER (1 << 18)
  2986. #define USBC_DER (1 << 19)
  2987. #define USBC_REG_EP12_RXMAXP_CSR_FF (1 << 20)
  2988. #define USBC_RPK (1 << 21)
  2989. #define USBC_RS (1 << 22)
  2990. #define USBC_REG_EP12_RXMAXP_CSR_CLR (1 << 23)
  2991. #define USBC_IRX (1 << 24)
  2992. #define USBC_REG_EP12_RXMAXP_CSR_DT (1 << 25)
  2993. #define USBC_REG_EP12_RXMAXP_CSR_DWE (1 << 26)
  2994. #define USBC_DMD (1 << 27)
  2995. #define USBC_DNY (1 << 28)
  2996. #define USBC_REG_EP12_RXMAXP_CSR_DMR (1 << 29)
  2997. #define USBC_ARQ (1 << 30)
  2998. #define USBC_ACLR (1 << 31)
  2999. // reg_ep12_rxcnt_txtype
  3000. #define USBC_RXCNT(n) (((n)&0x1fff) << 0)
  3001. #define USBC_REG_EP12_RXCNT_TXTYPE_EP(n) (((n)&0xf) << 16)
  3002. #define USBC_REG_EP12_RXCNT_TXTYPE_PROT(n) (((n)&0x3) << 20)
  3003. #define USBC_REG_EP12_RXCNT_TXTYPE_SPEED(n) (((n)&0x3) << 22)
  3004. #define USBC_TXPI(n) (((n)&0xff) << 24)
  3005. // reg_ep12_rxtype_intv
  3006. #define USBC_REG_EP12_RXTYPE_INTV_EP(n) (((n)&0xf) << 0)
  3007. #define USBC_REG_EP12_RXTYPE_INTV_PROT(n) (((n)&0x3) << 4)
  3008. #define USBC_REG_EP12_RXTYPE_INTV_SPEED(n) (((n)&0x3) << 6)
  3009. #define USBC_RXPI(n) (((n)&0xff) << 8)
  3010. // reg_ep13_txmaxp_csr
  3011. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  3012. #define USBC_MULT(n) (((n)&0x1f) << 11)
  3013. #define USBC_REG_EP13_TXMAXP_CSR_TRDY (1 << 16)
  3014. #define USBC_FNE (1 << 17)
  3015. #define USBC_REG_EP13_TXMAXP_CSR_ERR (1 << 18)
  3016. #define USBC_REG_EP13_TXMAXP_CSR_FF (1 << 19)
  3017. #define USBC_REG_EP13_TXMAXP_CSR_STP (1 << 20)
  3018. #define USBC_RXS (1 << 21)
  3019. #define USBC_REG_EP13_TXMAXP_CSR_CLR (1 << 22)
  3020. #define USBC_NAK (1 << 23)
  3021. #define USBC_REG_EP13_TXMAXP_CSR_DT (1 << 24)
  3022. #define USBC_REG_EP13_TXMAXP_CSR_DWE (1 << 25)
  3023. #define USBC_DRM (1 << 26)
  3024. #define USBC_FDT (1 << 27)
  3025. #define USBC_REG_EP13_TXMAXP_CSR_DMR (1 << 28)
  3026. #define USBC_MD (1 << 29)
  3027. #define USBC_ISO (1 << 30)
  3028. #define USBC_ASET (1 << 31)
  3029. // reg_ep13_rxmaxp_csr
  3030. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  3031. #define USBC_MULT(n) (((n)&0x1f) << 11)
  3032. #define USBC_RRDY (1 << 16)
  3033. #define USBC_FFUL (1 << 17)
  3034. #define USBC_ER (1 << 18)
  3035. #define USBC_DER (1 << 19)
  3036. #define USBC_REG_EP13_RXMAXP_CSR_FF (1 << 20)
  3037. #define USBC_RPK (1 << 21)
  3038. #define USBC_RS (1 << 22)
  3039. #define USBC_REG_EP13_RXMAXP_CSR_CLR (1 << 23)
  3040. #define USBC_IRX (1 << 24)
  3041. #define USBC_REG_EP13_RXMAXP_CSR_DT (1 << 25)
  3042. #define USBC_REG_EP13_RXMAXP_CSR_DWE (1 << 26)
  3043. #define USBC_DMD (1 << 27)
  3044. #define USBC_DNY (1 << 28)
  3045. #define USBC_REG_EP13_RXMAXP_CSR_DMR (1 << 29)
  3046. #define USBC_ARQ (1 << 30)
  3047. #define USBC_ACLR (1 << 31)
  3048. // reg_ep13_rxcnt_txtype
  3049. #define USBC_RXCNT(n) (((n)&0x1fff) << 0)
  3050. #define USBC_REG_EP13_RXCNT_TXTYPE_EP(n) (((n)&0xf) << 16)
  3051. #define USBC_REG_EP13_RXCNT_TXTYPE_PROT(n) (((n)&0x3) << 20)
  3052. #define USBC_REG_EP13_RXCNT_TXTYPE_SPEED(n) (((n)&0x3) << 22)
  3053. #define USBC_TXPI(n) (((n)&0xff) << 24)
  3054. // reg_ep13_rxtype_intv
  3055. #define USBC_REG_EP13_RXTYPE_INTV_EP(n) (((n)&0xf) << 0)
  3056. #define USBC_REG_EP13_RXTYPE_INTV_PROT(n) (((n)&0x3) << 4)
  3057. #define USBC_REG_EP13_RXTYPE_INTV_SPEED(n) (((n)&0x3) << 6)
  3058. #define USBC_RXPI(n) (((n)&0xff) << 8)
  3059. // reg_ep14_txmaxp_csr
  3060. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  3061. #define USBC_MULT(n) (((n)&0x1f) << 11)
  3062. #define USBC_REG_EP14_TXMAXP_CSR_TRDY (1 << 16)
  3063. #define USBC_FNE (1 << 17)
  3064. #define USBC_REG_EP14_TXMAXP_CSR_ERR (1 << 18)
  3065. #define USBC_REG_EP14_TXMAXP_CSR_FF (1 << 19)
  3066. #define USBC_REG_EP14_TXMAXP_CSR_STP (1 << 20)
  3067. #define USBC_RXS (1 << 21)
  3068. #define USBC_REG_EP14_TXMAXP_CSR_CLR (1 << 22)
  3069. #define USBC_NAK (1 << 23)
  3070. #define USBC_REG_EP14_TXMAXP_CSR_DT (1 << 24)
  3071. #define USBC_REG_EP14_TXMAXP_CSR_DWE (1 << 25)
  3072. #define USBC_DRM (1 << 26)
  3073. #define USBC_FDT (1 << 27)
  3074. #define USBC_REG_EP14_TXMAXP_CSR_DMR (1 << 28)
  3075. #define USBC_MD (1 << 29)
  3076. #define USBC_ISO (1 << 30)
  3077. #define USBC_ASET (1 << 31)
  3078. // reg_ep14_rxmaxp_csr
  3079. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  3080. #define USBC_MULT(n) (((n)&0x1f) << 11)
  3081. #define USBC_RRDY (1 << 16)
  3082. #define USBC_FFUL (1 << 17)
  3083. #define USBC_ER (1 << 18)
  3084. #define USBC_DER (1 << 19)
  3085. #define USBC_REG_EP14_RXMAXP_CSR_FF (1 << 20)
  3086. #define USBC_RPK (1 << 21)
  3087. #define USBC_RS (1 << 22)
  3088. #define USBC_REG_EP14_RXMAXP_CSR_CLR (1 << 23)
  3089. #define USBC_IRX (1 << 24)
  3090. #define USBC_REG_EP14_RXMAXP_CSR_DT (1 << 25)
  3091. #define USBC_REG_EP14_RXMAXP_CSR_DWE (1 << 26)
  3092. #define USBC_DMD (1 << 27)
  3093. #define USBC_DNY (1 << 28)
  3094. #define USBC_REG_EP14_RXMAXP_CSR_DMR (1 << 29)
  3095. #define USBC_ARQ (1 << 30)
  3096. #define USBC_ACLR (1 << 31)
  3097. // reg_ep14_rxcnt_txtype
  3098. #define USBC_RXCNT(n) (((n)&0x1fff) << 0)
  3099. #define USBC_REG_EP14_RXCNT_TXTYPE_EP(n) (((n)&0xf) << 16)
  3100. #define USBC_REG_EP14_RXCNT_TXTYPE_PROT(n) (((n)&0x3) << 20)
  3101. #define USBC_REG_EP14_RXCNT_TXTYPE_SPEED(n) (((n)&0x3) << 22)
  3102. #define USBC_TXPI(n) (((n)&0xff) << 24)
  3103. // reg_ep14_rxtype_intv
  3104. #define USBC_REG_EP14_RXTYPE_INTV_EP(n) (((n)&0xf) << 0)
  3105. #define USBC_REG_EP14_RXTYPE_INTV_PROT(n) (((n)&0x3) << 4)
  3106. #define USBC_REG_EP14_RXTYPE_INTV_SPEED(n) (((n)&0x3) << 6)
  3107. #define USBC_RXPI(n) (((n)&0xff) << 8)
  3108. // reg_ep15_txmaxp_csr
  3109. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  3110. #define USBC_MULT(n) (((n)&0x1f) << 11)
  3111. #define USBC_REG_EP15_TXMAXP_CSR_TRDY (1 << 16)
  3112. #define USBC_FNE (1 << 17)
  3113. #define USBC_REG_EP15_TXMAXP_CSR_ERR (1 << 18)
  3114. #define USBC_REG_EP15_TXMAXP_CSR_FF (1 << 19)
  3115. #define USBC_REG_EP15_TXMAXP_CSR_STP (1 << 20)
  3116. #define USBC_RXS (1 << 21)
  3117. #define USBC_REG_EP15_TXMAXP_CSR_CLR (1 << 22)
  3118. #define USBC_NAK (1 << 23)
  3119. #define USBC_REG_EP15_TXMAXP_CSR_DT (1 << 24)
  3120. #define USBC_REG_EP15_TXMAXP_CSR_DWE (1 << 25)
  3121. #define USBC_DRM (1 << 26)
  3122. #define USBC_FDT (1 << 27)
  3123. #define USBC_REG_EP15_TXMAXP_CSR_DMR (1 << 28)
  3124. #define USBC_MD (1 << 29)
  3125. #define USBC_ISO (1 << 30)
  3126. #define USBC_ASET (1 << 31)
  3127. // reg_ep15_rxmaxp_csr
  3128. #define USBC_MAXP(n) (((n)&0x7ff) << 0)
  3129. #define USBC_MULT(n) (((n)&0x1f) << 11)
  3130. #define USBC_RRDY (1 << 16)
  3131. #define USBC_FFUL (1 << 17)
  3132. #define USBC_ER (1 << 18)
  3133. #define USBC_DER (1 << 19)
  3134. #define USBC_REG_EP15_RXMAXP_CSR_FF (1 << 20)
  3135. #define USBC_RPK (1 << 21)
  3136. #define USBC_RS (1 << 22)
  3137. #define USBC_REG_EP15_RXMAXP_CSR_CLR (1 << 23)
  3138. #define USBC_IRX (1 << 24)
  3139. #define USBC_REG_EP15_RXMAXP_CSR_DT (1 << 25)
  3140. #define USBC_REG_EP15_RXMAXP_CSR_DWE (1 << 26)
  3141. #define USBC_DMD (1 << 27)
  3142. #define USBC_DNY (1 << 28)
  3143. #define USBC_REG_EP15_RXMAXP_CSR_DMR (1 << 29)
  3144. #define USBC_ARQ (1 << 30)
  3145. #define USBC_ACLR (1 << 31)
  3146. // reg_ep15_rxcnt_txtype
  3147. #define USBC_RXCNT(n) (((n)&0x1fff) << 0)
  3148. #define USBC_REG_EP15_RXCNT_TXTYPE_EP(n) (((n)&0xf) << 16)
  3149. #define USBC_REG_EP15_RXCNT_TXTYPE_PROT(n) (((n)&0x3) << 20)
  3150. #define USBC_REG_EP15_RXCNT_TXTYPE_SPEED(n) (((n)&0x3) << 22)
  3151. #define USBC_TXPI(n) (((n)&0xff) << 24)
  3152. // reg_ep15_rxtype_intv
  3153. #define USBC_REG_EP15_RXTYPE_INTV_EP(n) (((n)&0xf) << 0)
  3154. #define USBC_REG_EP15_RXTYPE_INTV_PROT(n) (((n)&0x3) << 4)
  3155. #define USBC_REG_EP15_RXTYPE_INTV_SPEED(n) (((n)&0x3) << 6)
  3156. #define USBC_RXPI(n) (((n)&0xff) << 8)
  3157. // otg_ep0_rxpktcnt
  3158. #define USBC_RXPKTCNT(n) (((n)&0x7fffffff) << 0)
  3159. #define USBC_RXPKT_MODE_EN (1 << 31)
  3160. // otg_ep1_rxpktcnt
  3161. #define USBC_RXPKTCNT(n) (((n)&0x7fffffff) << 0)
  3162. #define USBC_RXPKT_MODE_EN (1 << 31)
  3163. // otg_ep2_rxpktcnt
  3164. #define USBC_RXPKTCNT(n) (((n)&0x7fffffff) << 0)
  3165. #define USBC_RXPKT_MODE_EN (1 << 31)
  3166. // otg_ep3_rxpktcnt
  3167. #define USBC_RXPKTCNT(n) (((n)&0x7fffffff) << 0)
  3168. #define USBC_RXPKT_MODE_EN (1 << 31)
  3169. // otg_ep4_rxpktcnt
  3170. #define USBC_RXPKTCNT(n) (((n)&0x7fffffff) << 0)
  3171. #define USBC_RXPKT_MODE_EN (1 << 31)
  3172. // otg_ep5_rxpktcnt
  3173. #define USBC_RXPKTCNT(n) (((n)&0x7fffffff) << 0)
  3174. #define USBC_RXPKT_MODE_EN (1 << 31)
  3175. // otg_ep6_rxpktcnt
  3176. #define USBC_RXPKTCNT(n) (((n)&0x7fffffff) << 0)
  3177. #define USBC_RXPKT_MODE_EN (1 << 31)
  3178. // otg_ep7_rxpktcnt
  3179. #define USBC_RXPKTCNT(n) (((n)&0x7fffffff) << 0)
  3180. #define USBC_RXPKT_MODE_EN (1 << 31)
  3181. // otg_ep8_rxpktcnt
  3182. #define USBC_RXPKTCNT(n) (((n)&0x7fffffff) << 0)
  3183. #define USBC_RXPKT_MODE_EN (1 << 31)
  3184. // otg_ep9_rxpktcnt
  3185. #define USBC_RXPKTCNT(n) (((n)&0x7fffffff) << 0)
  3186. #define USBC_RXPKT_MODE_EN (1 << 31)
  3187. // otg_ep10_rxpktcnt
  3188. #define USBC_RXPKTCNT(n) (((n)&0x7fffffff) << 0)
  3189. #define USBC_RXPKT_MODE_EN (1 << 31)
  3190. // otg_ep11_rxpktcnt
  3191. #define USBC_RXPKTCNT(n) (((n)&0x7fffffff) << 0)
  3192. #define USBC_RXPKT_MODE_EN (1 << 31)
  3193. // otg_ep12_rxpktcnt
  3194. #define USBC_RXPKTCNT(n) (((n)&0x7fffffff) << 0)
  3195. #define USBC_RXPKT_MODE_EN (1 << 31)
  3196. // otg_ep13_rxpktcnt
  3197. #define USBC_RXPKTCNT(n) (((n)&0x7fffffff) << 0)
  3198. #define USBC_RXPKT_MODE_EN (1 << 31)
  3199. // otg_ep14_rxpktcnt
  3200. #define USBC_RXPKTCNT(n) (((n)&0x7fffffff) << 0)
  3201. #define USBC_RXPKT_MODE_EN (1 << 31)
  3202. // otg_ep15_rxpktcnt
  3203. #define USBC_RXPKTCNT(n) (((n)&0x7fffffff) << 0)
  3204. #define USBC_RXPKT_MODE_EN (1 << 31)
  3205. // otg_rxdbdis_txdbdis
  3206. #define USBC_RXDB(n) (((n)&0x7fff) << 1)
  3207. #define USBC_TXDB(n) (((n)&0x7fff) << 17)
  3208. // otg_uch_hsrtn
  3209. #define USBC_C_T_UCH(n) (((n)&0xffff) << 0)
  3210. #define USBC_C_T_HSRTN(n) (((n)&0xffff) << 16)
  3211. // otg_hsbt_fifo
  3212. #define USBC_HSBT(n) (((n)&0xf) << 0)
  3213. #define USBC_FIFOCHECKMODE_EN (1 << 8)
  3214. #define USBC_FIFOCHECKREG(n) (((n)&0x7f) << 9)
  3215. #define USBC_FIFOTIMEOUT(n) (((n)&0xff) << 16)
  3216. #define USBC_HOST_FORCE_EN (1 << 24)
  3217. #define USBC_HOST_MODE_FORCE (1 << 25)
  3218. #define USBC_SRP_EN (1 << 26)
  3219. #define USBC_CLEAR_TXBUFF_EN (1 << 28)
  3220. #define USBC_CLEAR_RXBUFF_EN (1 << 29)
  3221. #define USBC_TX_COMPL_MODE (1 << 30)
  3222. // otg_listend_int_sts
  3223. #define USBC_TX_LISTEND_INT1 (1 << 1)
  3224. #define USBC_TX_LISTEND_INT2 (1 << 2)
  3225. #define USBC_TX_LISTEND_INT3 (1 << 3)
  3226. #define USBC_TX_LISTEND_INT4 (1 << 4)
  3227. #define USBC_TX_LISTEND_INT5 (1 << 5)
  3228. #define USBC_TX_LISTEND_INT6 (1 << 6)
  3229. #define USBC_TX_LISTEND_INT7 (1 << 7)
  3230. #define USBC_TX_LISTEND_INT8 (1 << 8)
  3231. #define USBC_TX_LISTEND_INT9 (1 << 9)
  3232. #define USBC_TX_LISTEND_INT10 (1 << 10)
  3233. #define USBC_TX_LISTEND_INT11 (1 << 11)
  3234. #define USBC_TX_LISTEND_INT12 (1 << 12)
  3235. #define USBC_TX_LISTEND_INT13 (1 << 13)
  3236. #define USBC_TX_LISTEND_INT14 (1 << 14)
  3237. #define USBC_TX_LISTEND_INT15 (1 << 15)
  3238. #define USBC_TX_LISTEND_ENABLE1 (1 << 17)
  3239. #define USBC_TX_LISTEND_ENABLE2 (1 << 18)
  3240. #define USBC_TX_LISTEND_ENABLE3 (1 << 19)
  3241. #define USBC_TX_LISTEND_ENABLE4 (1 << 20)
  3242. #define USBC_TX_LISTEND_ENABLE5 (1 << 21)
  3243. #define USBC_TX_LISTEND_ENABLE6 (1 << 22)
  3244. #define USBC_TX_LISTEND_ENABLE7 (1 << 23)
  3245. #define USBC_TX_LISTEND_ENABLE8 (1 << 24)
  3246. #define USBC_TX_LISTEND_ENABLE9 (1 << 25)
  3247. #define USBC_TX_LISTEND_ENABLE10 (1 << 26)
  3248. #define USBC_TX_LISTEND_ENABLE11 (1 << 27)
  3249. #define USBC_TX_LISTEND_ENABLE12 (1 << 28)
  3250. #define USBC_TX_LISTEND_ENABLE13 (1 << 29)
  3251. #define USBC_TX_LISTEND_ENABLE14 (1 << 30)
  3252. #define USBC_TX_LISTEND_ENABLE15 (1 << 31)
  3253. // otg_listend_int_clr
  3254. #define USBC_TX_LISTEND_CLEAR1 (1 << 1)
  3255. #define USBC_TX_LISTEND_CLEAR2 (1 << 2)
  3256. #define USBC_TX_LISTEND_CLEAR3 (1 << 3)
  3257. #define USBC_TX_LISTEND_CLEAR4 (1 << 4)
  3258. #define USBC_TX_LISTEND_CLEAR5 (1 << 5)
  3259. #define USBC_TX_LISTEND_CLEAR6 (1 << 6)
  3260. #define USBC_TX_LISTEND_CLEAR7 (1 << 7)
  3261. #define USBC_TX_LISTEND_CLEAR8 (1 << 8)
  3262. #define USBC_TX_LISTEND_CLEAR9 (1 << 9)
  3263. #define USBC_TX_LISTEND_CLEAR10 (1 << 10)
  3264. #define USBC_TX_LISTEND_CLEAR11 (1 << 11)
  3265. #define USBC_TX_LISTEND_CLEAR12 (1 << 12)
  3266. #define USBC_TX_LISTEND_CLEAR13 (1 << 13)
  3267. #define USBC_TX_LISTEND_CLEAR14 (1 << 14)
  3268. #define USBC_TX_LISTEND_CLEAR15 (1 << 15)
  3269. // otg_endpoint_en
  3270. #define USBC_ENDPOINT_ENABLE1 (1 << 1)
  3271. #define USBC_ENDPOINT_ENABLE2 (1 << 2)
  3272. #define USBC_ENDPOINT_ENABLE3 (1 << 3)
  3273. #define USBC_ENDPOINT_ENABLE4 (1 << 4)
  3274. #define USBC_ENDPOINT_ENABLE5 (1 << 5)
  3275. #define USBC_ENDPOINT_ENABLE6 (1 << 6)
  3276. #define USBC_ENDPOINT_ENABLE7 (1 << 7)
  3277. #define USBC_ENDPOINT_ENABLE8 (1 << 8)
  3278. #define USBC_ENDPOINT_ENABLE9 (1 << 9)
  3279. #define USBC_ENDPOINT_ENABLE10 (1 << 10)
  3280. #define USBC_ENDPOINT_ENABLE11 (1 << 11)
  3281. #define USBC_ENDPOINT_ENABLE12 (1 << 12)
  3282. #define USBC_ENDPOINT_ENABLE13 (1 << 13)
  3283. #define USBC_ENDPOINT_ENABLE14 (1 << 14)
  3284. #define USBC_ENDPOINT_ENABLE15 (1 << 15)
  3285. #endif // _USBC_H_