F2837xD_gpio.h 244 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882
  1. //###########################################################################
  2. //
  3. // FILE: F2837xD_gpio.h
  4. //
  5. // TITLE: GPIO Register Definitions.
  6. //
  7. //###########################################################################
  8. // $TI Release: F2837xD Support Library v3.05.00.00 $
  9. // $Release Date: Tue Jun 26 03:15:23 CDT 2018 $
  10. // $Copyright:
  11. // Copyright (C) 2013-2018 Texas Instruments Incorporated - http://www.ti.com/
  12. //
  13. // Redistribution and use in source and binary forms, with or without
  14. // modification, are permitted provided that the following conditions
  15. // are met:
  16. //
  17. // Redistributions of source code must retain the above copyright
  18. // notice, this list of conditions and the following disclaimer.
  19. //
  20. // Redistributions in binary form must reproduce the above copyright
  21. // notice, this list of conditions and the following disclaimer in the
  22. // documentation and/or other materials provided with the
  23. // distribution.
  24. //
  25. // Neither the name of Texas Instruments Incorporated nor the names of
  26. // its contributors may be used to endorse or promote products derived
  27. // from this software without specific prior written permission.
  28. //
  29. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  30. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  31. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  32. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  33. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  34. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  35. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  36. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  37. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  39. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  40. // $
  41. //###########################################################################
  42. #ifndef __F2837xD_GPIO_H__
  43. #define __F2837xD_GPIO_H__
  44. #ifdef __cplusplus
  45. extern "C" {
  46. #endif
  47. //---------------------------------------------------------------------------
  48. // GPIO Individual Register Bit Definitions:
  49. struct GPACTRL_BITS { // bits description
  50. Uint16 QUALPRD0:8; // 7:0 Qualification sampling period for GPIO0 to GPIO7
  51. Uint16 QUALPRD1:8; // 15:8 Qualification sampling period for GPIO8 to GPIO15
  52. Uint16 QUALPRD2:8; // 23:16 Qualification sampling period for GPIO16 to GPIO23
  53. Uint16 QUALPRD3:8; // 31:24 Qualification sampling period for GPIO24 to GPIO31
  54. };
  55. union GPACTRL_REG {
  56. Uint32 all;
  57. struct GPACTRL_BITS bit;
  58. };
  59. struct GPAQSEL1_BITS { // bits description
  60. Uint16 GPIO0:2; // 1:0 Select input qualification type for GPIO0
  61. Uint16 GPIO1:2; // 3:2 Select input qualification type for GPIO1
  62. Uint16 GPIO2:2; // 5:4 Select input qualification type for GPIO2
  63. Uint16 GPIO3:2; // 7:6 Select input qualification type for GPIO3
  64. Uint16 GPIO4:2; // 9:8 Select input qualification type for GPIO4
  65. Uint16 GPIO5:2; // 11:10 Select input qualification type for GPIO5
  66. Uint16 GPIO6:2; // 13:12 Select input qualification type for GPIO6
  67. Uint16 GPIO7:2; // 15:14 Select input qualification type for GPIO7
  68. Uint16 GPIO8:2; // 17:16 Select input qualification type for GPIO8
  69. Uint16 GPIO9:2; // 19:18 Select input qualification type for GPIO9
  70. Uint16 GPIO10:2; // 21:20 Select input qualification type for GPIO10
  71. Uint16 GPIO11:2; // 23:22 Select input qualification type for GPIO11
  72. Uint16 GPIO12:2; // 25:24 Select input qualification type for GPIO12
  73. Uint16 GPIO13:2; // 27:26 Select input qualification type for GPIO13
  74. Uint16 GPIO14:2; // 29:28 Select input qualification type for GPIO14
  75. Uint16 GPIO15:2; // 31:30 Select input qualification type for GPIO15
  76. };
  77. union GPAQSEL1_REG {
  78. Uint32 all;
  79. struct GPAQSEL1_BITS bit;
  80. };
  81. struct GPAQSEL2_BITS { // bits description
  82. Uint16 GPIO16:2; // 1:0 Select input qualification type for GPIO16
  83. Uint16 GPIO17:2; // 3:2 Select input qualification type for GPIO17
  84. Uint16 GPIO18:2; // 5:4 Select input qualification type for GPIO18
  85. Uint16 GPIO19:2; // 7:6 Select input qualification type for GPIO19
  86. Uint16 GPIO20:2; // 9:8 Select input qualification type for GPIO20
  87. Uint16 GPIO21:2; // 11:10 Select input qualification type for GPIO21
  88. Uint16 GPIO22:2; // 13:12 Select input qualification type for GPIO22
  89. Uint16 GPIO23:2; // 15:14 Select input qualification type for GPIO23
  90. Uint16 GPIO24:2; // 17:16 Select input qualification type for GPIO24
  91. Uint16 GPIO25:2; // 19:18 Select input qualification type for GPIO25
  92. Uint16 GPIO26:2; // 21:20 Select input qualification type for GPIO26
  93. Uint16 GPIO27:2; // 23:22 Select input qualification type for GPIO27
  94. Uint16 GPIO28:2; // 25:24 Select input qualification type for GPIO28
  95. Uint16 GPIO29:2; // 27:26 Select input qualification type for GPIO29
  96. Uint16 GPIO30:2; // 29:28 Select input qualification type for GPIO30
  97. Uint16 GPIO31:2; // 31:30 Select input qualification type for GPIO31
  98. };
  99. union GPAQSEL2_REG {
  100. Uint32 all;
  101. struct GPAQSEL2_BITS bit;
  102. };
  103. struct GPAMUX1_BITS { // bits description
  104. Uint16 GPIO0:2; // 1:0 Defines pin-muxing selection for GPIO0
  105. Uint16 GPIO1:2; // 3:2 Defines pin-muxing selection for GPIO1
  106. Uint16 GPIO2:2; // 5:4 Defines pin-muxing selection for GPIO2
  107. Uint16 GPIO3:2; // 7:6 Defines pin-muxing selection for GPIO3
  108. Uint16 GPIO4:2; // 9:8 Defines pin-muxing selection for GPIO4
  109. Uint16 GPIO5:2; // 11:10 Defines pin-muxing selection for GPIO5
  110. Uint16 GPIO6:2; // 13:12 Defines pin-muxing selection for GPIO6
  111. Uint16 GPIO7:2; // 15:14 Defines pin-muxing selection for GPIO7
  112. Uint16 GPIO8:2; // 17:16 Defines pin-muxing selection for GPIO8
  113. Uint16 GPIO9:2; // 19:18 Defines pin-muxing selection for GPIO9
  114. Uint16 GPIO10:2; // 21:20 Defines pin-muxing selection for GPIO10
  115. Uint16 GPIO11:2; // 23:22 Defines pin-muxing selection for GPIO11
  116. Uint16 GPIO12:2; // 25:24 Defines pin-muxing selection for GPIO12
  117. Uint16 GPIO13:2; // 27:26 Defines pin-muxing selection for GPIO13
  118. Uint16 GPIO14:2; // 29:28 Defines pin-muxing selection for GPIO14
  119. Uint16 GPIO15:2; // 31:30 Defines pin-muxing selection for GPIO15
  120. };
  121. union GPAMUX1_REG {
  122. Uint32 all;
  123. struct GPAMUX1_BITS bit;
  124. };
  125. struct GPAMUX2_BITS { // bits description
  126. Uint16 GPIO16:2; // 1:0 Defines pin-muxing selection for GPIO16
  127. Uint16 GPIO17:2; // 3:2 Defines pin-muxing selection for GPIO17
  128. Uint16 GPIO18:2; // 5:4 Defines pin-muxing selection for GPIO18
  129. Uint16 GPIO19:2; // 7:6 Defines pin-muxing selection for GPIO19
  130. Uint16 GPIO20:2; // 9:8 Defines pin-muxing selection for GPIO20
  131. Uint16 GPIO21:2; // 11:10 Defines pin-muxing selection for GPIO21
  132. Uint16 GPIO22:2; // 13:12 Defines pin-muxing selection for GPIO22
  133. Uint16 GPIO23:2; // 15:14 Defines pin-muxing selection for GPIO23
  134. Uint16 GPIO24:2; // 17:16 Defines pin-muxing selection for GPIO24
  135. Uint16 GPIO25:2; // 19:18 Defines pin-muxing selection for GPIO25
  136. Uint16 GPIO26:2; // 21:20 Defines pin-muxing selection for GPIO26
  137. Uint16 GPIO27:2; // 23:22 Defines pin-muxing selection for GPIO27
  138. Uint16 GPIO28:2; // 25:24 Defines pin-muxing selection for GPIO28
  139. Uint16 GPIO29:2; // 27:26 Defines pin-muxing selection for GPIO29
  140. Uint16 GPIO30:2; // 29:28 Defines pin-muxing selection for GPIO30
  141. Uint16 GPIO31:2; // 31:30 Defines pin-muxing selection for GPIO31
  142. };
  143. union GPAMUX2_REG {
  144. Uint32 all;
  145. struct GPAMUX2_BITS bit;
  146. };
  147. struct GPADIR_BITS { // bits description
  148. Uint16 GPIO0:1; // 0 Defines direction for this pin in GPIO mode
  149. Uint16 GPIO1:1; // 1 Defines direction for this pin in GPIO mode
  150. Uint16 GPIO2:1; // 2 Defines direction for this pin in GPIO mode
  151. Uint16 GPIO3:1; // 3 Defines direction for this pin in GPIO mode
  152. Uint16 GPIO4:1; // 4 Defines direction for this pin in GPIO mode
  153. Uint16 GPIO5:1; // 5 Defines direction for this pin in GPIO mode
  154. Uint16 GPIO6:1; // 6 Defines direction for this pin in GPIO mode
  155. Uint16 GPIO7:1; // 7 Defines direction for this pin in GPIO mode
  156. Uint16 GPIO8:1; // 8 Defines direction for this pin in GPIO mode
  157. Uint16 GPIO9:1; // 9 Defines direction for this pin in GPIO mode
  158. Uint16 GPIO10:1; // 10 Defines direction for this pin in GPIO mode
  159. Uint16 GPIO11:1; // 11 Defines direction for this pin in GPIO mode
  160. Uint16 GPIO12:1; // 12 Defines direction for this pin in GPIO mode
  161. Uint16 GPIO13:1; // 13 Defines direction for this pin in GPIO mode
  162. Uint16 GPIO14:1; // 14 Defines direction for this pin in GPIO mode
  163. Uint16 GPIO15:1; // 15 Defines direction for this pin in GPIO mode
  164. Uint16 GPIO16:1; // 16 Defines direction for this pin in GPIO mode
  165. Uint16 GPIO17:1; // 17 Defines direction for this pin in GPIO mode
  166. Uint16 GPIO18:1; // 18 Defines direction for this pin in GPIO mode
  167. Uint16 GPIO19:1; // 19 Defines direction for this pin in GPIO mode
  168. Uint16 GPIO20:1; // 20 Defines direction for this pin in GPIO mode
  169. Uint16 GPIO21:1; // 21 Defines direction for this pin in GPIO mode
  170. Uint16 GPIO22:1; // 22 Defines direction for this pin in GPIO mode
  171. Uint16 GPIO23:1; // 23 Defines direction for this pin in GPIO mode
  172. Uint16 GPIO24:1; // 24 Defines direction for this pin in GPIO mode
  173. Uint16 GPIO25:1; // 25 Defines direction for this pin in GPIO mode
  174. Uint16 GPIO26:1; // 26 Defines direction for this pin in GPIO mode
  175. Uint16 GPIO27:1; // 27 Defines direction for this pin in GPIO mode
  176. Uint16 GPIO28:1; // 28 Defines direction for this pin in GPIO mode
  177. Uint16 GPIO29:1; // 29 Defines direction for this pin in GPIO mode
  178. Uint16 GPIO30:1; // 30 Defines direction for this pin in GPIO mode
  179. Uint16 GPIO31:1; // 31 Defines direction for this pin in GPIO mode
  180. };
  181. union GPADIR_REG {
  182. Uint32 all;
  183. struct GPADIR_BITS bit;
  184. };
  185. struct GPAPUD_BITS { // bits description
  186. Uint16 GPIO0:1; // 0 Pull-Up Disable control for this pin
  187. Uint16 GPIO1:1; // 1 Pull-Up Disable control for this pin
  188. Uint16 GPIO2:1; // 2 Pull-Up Disable control for this pin
  189. Uint16 GPIO3:1; // 3 Pull-Up Disable control for this pin
  190. Uint16 GPIO4:1; // 4 Pull-Up Disable control for this pin
  191. Uint16 GPIO5:1; // 5 Pull-Up Disable control for this pin
  192. Uint16 GPIO6:1; // 6 Pull-Up Disable control for this pin
  193. Uint16 GPIO7:1; // 7 Pull-Up Disable control for this pin
  194. Uint16 GPIO8:1; // 8 Pull-Up Disable control for this pin
  195. Uint16 GPIO9:1; // 9 Pull-Up Disable control for this pin
  196. Uint16 GPIO10:1; // 10 Pull-Up Disable control for this pin
  197. Uint16 GPIO11:1; // 11 Pull-Up Disable control for this pin
  198. Uint16 GPIO12:1; // 12 Pull-Up Disable control for this pin
  199. Uint16 GPIO13:1; // 13 Pull-Up Disable control for this pin
  200. Uint16 GPIO14:1; // 14 Pull-Up Disable control for this pin
  201. Uint16 GPIO15:1; // 15 Pull-Up Disable control for this pin
  202. Uint16 GPIO16:1; // 16 Pull-Up Disable control for this pin
  203. Uint16 GPIO17:1; // 17 Pull-Up Disable control for this pin
  204. Uint16 GPIO18:1; // 18 Pull-Up Disable control for this pin
  205. Uint16 GPIO19:1; // 19 Pull-Up Disable control for this pin
  206. Uint16 GPIO20:1; // 20 Pull-Up Disable control for this pin
  207. Uint16 GPIO21:1; // 21 Pull-Up Disable control for this pin
  208. Uint16 GPIO22:1; // 22 Pull-Up Disable control for this pin
  209. Uint16 GPIO23:1; // 23 Pull-Up Disable control for this pin
  210. Uint16 GPIO24:1; // 24 Pull-Up Disable control for this pin
  211. Uint16 GPIO25:1; // 25 Pull-Up Disable control for this pin
  212. Uint16 GPIO26:1; // 26 Pull-Up Disable control for this pin
  213. Uint16 GPIO27:1; // 27 Pull-Up Disable control for this pin
  214. Uint16 GPIO28:1; // 28 Pull-Up Disable control for this pin
  215. Uint16 GPIO29:1; // 29 Pull-Up Disable control for this pin
  216. Uint16 GPIO30:1; // 30 Pull-Up Disable control for this pin
  217. Uint16 GPIO31:1; // 31 Pull-Up Disable control for this pin
  218. };
  219. union GPAPUD_REG {
  220. Uint32 all;
  221. struct GPAPUD_BITS bit;
  222. };
  223. struct GPAINV_BITS { // bits description
  224. Uint16 GPIO0:1; // 0 Input inversion control for this pin
  225. Uint16 GPIO1:1; // 1 Input inversion control for this pin
  226. Uint16 GPIO2:1; // 2 Input inversion control for this pin
  227. Uint16 GPIO3:1; // 3 Input inversion control for this pin
  228. Uint16 GPIO4:1; // 4 Input inversion control for this pin
  229. Uint16 GPIO5:1; // 5 Input inversion control for this pin
  230. Uint16 GPIO6:1; // 6 Input inversion control for this pin
  231. Uint16 GPIO7:1; // 7 Input inversion control for this pin
  232. Uint16 GPIO8:1; // 8 Input inversion control for this pin
  233. Uint16 GPIO9:1; // 9 Input inversion control for this pin
  234. Uint16 GPIO10:1; // 10 Input inversion control for this pin
  235. Uint16 GPIO11:1; // 11 Input inversion control for this pin
  236. Uint16 GPIO12:1; // 12 Input inversion control for this pin
  237. Uint16 GPIO13:1; // 13 Input inversion control for this pin
  238. Uint16 GPIO14:1; // 14 Input inversion control for this pin
  239. Uint16 GPIO15:1; // 15 Input inversion control for this pin
  240. Uint16 GPIO16:1; // 16 Input inversion control for this pin
  241. Uint16 GPIO17:1; // 17 Input inversion control for this pin
  242. Uint16 GPIO18:1; // 18 Input inversion control for this pin
  243. Uint16 GPIO19:1; // 19 Input inversion control for this pin
  244. Uint16 GPIO20:1; // 20 Input inversion control for this pin
  245. Uint16 GPIO21:1; // 21 Input inversion control for this pin
  246. Uint16 GPIO22:1; // 22 Input inversion control for this pin
  247. Uint16 GPIO23:1; // 23 Input inversion control for this pin
  248. Uint16 GPIO24:1; // 24 Input inversion control for this pin
  249. Uint16 GPIO25:1; // 25 Input inversion control for this pin
  250. Uint16 GPIO26:1; // 26 Input inversion control for this pin
  251. Uint16 GPIO27:1; // 27 Input inversion control for this pin
  252. Uint16 GPIO28:1; // 28 Input inversion control for this pin
  253. Uint16 GPIO29:1; // 29 Input inversion control for this pin
  254. Uint16 GPIO30:1; // 30 Input inversion control for this pin
  255. Uint16 GPIO31:1; // 31 Input inversion control for this pin
  256. };
  257. union GPAINV_REG {
  258. Uint32 all;
  259. struct GPAINV_BITS bit;
  260. };
  261. struct GPAODR_BITS { // bits description
  262. Uint16 GPIO0:1; // 0 Outpout Open-Drain control for this pin
  263. Uint16 GPIO1:1; // 1 Outpout Open-Drain control for this pin
  264. Uint16 GPIO2:1; // 2 Outpout Open-Drain control for this pin
  265. Uint16 GPIO3:1; // 3 Outpout Open-Drain control for this pin
  266. Uint16 GPIO4:1; // 4 Outpout Open-Drain control for this pin
  267. Uint16 GPIO5:1; // 5 Outpout Open-Drain control for this pin
  268. Uint16 GPIO6:1; // 6 Outpout Open-Drain control for this pin
  269. Uint16 GPIO7:1; // 7 Outpout Open-Drain control for this pin
  270. Uint16 GPIO8:1; // 8 Outpout Open-Drain control for this pin
  271. Uint16 GPIO9:1; // 9 Outpout Open-Drain control for this pin
  272. Uint16 GPIO10:1; // 10 Outpout Open-Drain control for this pin
  273. Uint16 GPIO11:1; // 11 Outpout Open-Drain control for this pin
  274. Uint16 GPIO12:1; // 12 Outpout Open-Drain control for this pin
  275. Uint16 GPIO13:1; // 13 Outpout Open-Drain control for this pin
  276. Uint16 GPIO14:1; // 14 Outpout Open-Drain control for this pin
  277. Uint16 GPIO15:1; // 15 Outpout Open-Drain control for this pin
  278. Uint16 GPIO16:1; // 16 Outpout Open-Drain control for this pin
  279. Uint16 GPIO17:1; // 17 Outpout Open-Drain control for this pin
  280. Uint16 GPIO18:1; // 18 Outpout Open-Drain control for this pin
  281. Uint16 GPIO19:1; // 19 Outpout Open-Drain control for this pin
  282. Uint16 GPIO20:1; // 20 Outpout Open-Drain control for this pin
  283. Uint16 GPIO21:1; // 21 Outpout Open-Drain control for this pin
  284. Uint16 GPIO22:1; // 22 Outpout Open-Drain control for this pin
  285. Uint16 GPIO23:1; // 23 Outpout Open-Drain control for this pin
  286. Uint16 GPIO24:1; // 24 Outpout Open-Drain control for this pin
  287. Uint16 GPIO25:1; // 25 Outpout Open-Drain control for this pin
  288. Uint16 GPIO26:1; // 26 Outpout Open-Drain control for this pin
  289. Uint16 GPIO27:1; // 27 Outpout Open-Drain control for this pin
  290. Uint16 GPIO28:1; // 28 Outpout Open-Drain control for this pin
  291. Uint16 GPIO29:1; // 29 Outpout Open-Drain control for this pin
  292. Uint16 GPIO30:1; // 30 Outpout Open-Drain control for this pin
  293. Uint16 GPIO31:1; // 31 Outpout Open-Drain control for this pin
  294. };
  295. union GPAODR_REG {
  296. Uint32 all;
  297. struct GPAODR_BITS bit;
  298. };
  299. struct GPAGMUX1_BITS { // bits description
  300. Uint16 GPIO0:2; // 1:0 Defines pin-muxing selection for GPIO0
  301. Uint16 GPIO1:2; // 3:2 Defines pin-muxing selection for GPIO1
  302. Uint16 GPIO2:2; // 5:4 Defines pin-muxing selection for GPIO2
  303. Uint16 GPIO3:2; // 7:6 Defines pin-muxing selection for GPIO3
  304. Uint16 GPIO4:2; // 9:8 Defines pin-muxing selection for GPIO4
  305. Uint16 GPIO5:2; // 11:10 Defines pin-muxing selection for GPIO5
  306. Uint16 GPIO6:2; // 13:12 Defines pin-muxing selection for GPIO6
  307. Uint16 GPIO7:2; // 15:14 Defines pin-muxing selection for GPIO7
  308. Uint16 GPIO8:2; // 17:16 Defines pin-muxing selection for GPIO8
  309. Uint16 GPIO9:2; // 19:18 Defines pin-muxing selection for GPIO9
  310. Uint16 GPIO10:2; // 21:20 Defines pin-muxing selection for GPIO10
  311. Uint16 GPIO11:2; // 23:22 Defines pin-muxing selection for GPIO11
  312. Uint16 GPIO12:2; // 25:24 Defines pin-muxing selection for GPIO12
  313. Uint16 GPIO13:2; // 27:26 Defines pin-muxing selection for GPIO13
  314. Uint16 GPIO14:2; // 29:28 Defines pin-muxing selection for GPIO14
  315. Uint16 GPIO15:2; // 31:30 Defines pin-muxing selection for GPIO15
  316. };
  317. union GPAGMUX1_REG {
  318. Uint32 all;
  319. struct GPAGMUX1_BITS bit;
  320. };
  321. struct GPAGMUX2_BITS { // bits description
  322. Uint16 GPIO16:2; // 1:0 Defines pin-muxing selection for GPIO16
  323. Uint16 GPIO17:2; // 3:2 Defines pin-muxing selection for GPIO17
  324. Uint16 GPIO18:2; // 5:4 Defines pin-muxing selection for GPIO18
  325. Uint16 GPIO19:2; // 7:6 Defines pin-muxing selection for GPIO19
  326. Uint16 GPIO20:2; // 9:8 Defines pin-muxing selection for GPIO20
  327. Uint16 GPIO21:2; // 11:10 Defines pin-muxing selection for GPIO21
  328. Uint16 GPIO22:2; // 13:12 Defines pin-muxing selection for GPIO22
  329. Uint16 GPIO23:2; // 15:14 Defines pin-muxing selection for GPIO23
  330. Uint16 GPIO24:2; // 17:16 Defines pin-muxing selection for GPIO24
  331. Uint16 GPIO25:2; // 19:18 Defines pin-muxing selection for GPIO25
  332. Uint16 GPIO26:2; // 21:20 Defines pin-muxing selection for GPIO26
  333. Uint16 GPIO27:2; // 23:22 Defines pin-muxing selection for GPIO27
  334. Uint16 GPIO28:2; // 25:24 Defines pin-muxing selection for GPIO28
  335. Uint16 GPIO29:2; // 27:26 Defines pin-muxing selection for GPIO29
  336. Uint16 GPIO30:2; // 29:28 Defines pin-muxing selection for GPIO30
  337. Uint16 GPIO31:2; // 31:30 Defines pin-muxing selection for GPIO31
  338. };
  339. union GPAGMUX2_REG {
  340. Uint32 all;
  341. struct GPAGMUX2_BITS bit;
  342. };
  343. struct GPACSEL1_BITS { // bits description
  344. Uint16 GPIO0:4; // 3:0 GPIO0 Master CPU Select
  345. Uint16 GPIO1:4; // 7:4 GPIO1 Master CPU Select
  346. Uint16 GPIO2:4; // 11:8 GPIO2 Master CPU Select
  347. Uint16 GPIO3:4; // 15:12 GPIO3 Master CPU Select
  348. Uint16 GPIO4:4; // 19:16 GPIO4 Master CPU Select
  349. Uint16 GPIO5:4; // 23:20 GPIO5 Master CPU Select
  350. Uint16 GPIO6:4; // 27:24 GPIO6 Master CPU Select
  351. Uint16 GPIO7:4; // 31:28 GPIO7 Master CPU Select
  352. };
  353. union GPACSEL1_REG {
  354. Uint32 all;
  355. struct GPACSEL1_BITS bit;
  356. };
  357. struct GPACSEL2_BITS { // bits description
  358. Uint16 GPIO8:4; // 3:0 GPIO8 Master CPU Select
  359. Uint16 GPIO9:4; // 7:4 GPIO9 Master CPU Select
  360. Uint16 GPIO10:4; // 11:8 GPIO10 Master CPU Select
  361. Uint16 GPIO11:4; // 15:12 GPIO11 Master CPU Select
  362. Uint16 GPIO12:4; // 19:16 GPIO12 Master CPU Select
  363. Uint16 GPIO13:4; // 23:20 GPIO13 Master CPU Select
  364. Uint16 GPIO14:4; // 27:24 GPIO14 Master CPU Select
  365. Uint16 GPIO15:4; // 31:28 GPIO15 Master CPU Select
  366. };
  367. union GPACSEL2_REG {
  368. Uint32 all;
  369. struct GPACSEL2_BITS bit;
  370. };
  371. struct GPACSEL3_BITS { // bits description
  372. Uint16 GPIO16:4; // 3:0 GPIO16 Master CPU Select
  373. Uint16 GPIO17:4; // 7:4 GPIO17 Master CPU Select
  374. Uint16 GPIO18:4; // 11:8 GPIO18 Master CPU Select
  375. Uint16 GPIO19:4; // 15:12 GPIO19 Master CPU Select
  376. Uint16 GPIO20:4; // 19:16 GPIO20 Master CPU Select
  377. Uint16 GPIO21:4; // 23:20 GPIO21 Master CPU Select
  378. Uint16 GPIO22:4; // 27:24 GPIO22 Master CPU Select
  379. Uint16 GPIO23:4; // 31:28 GPIO23 Master CPU Select
  380. };
  381. union GPACSEL3_REG {
  382. Uint32 all;
  383. struct GPACSEL3_BITS bit;
  384. };
  385. struct GPACSEL4_BITS { // bits description
  386. Uint16 GPIO24:4; // 3:0 GPIO24 Master CPU Select
  387. Uint16 GPIO25:4; // 7:4 GPIO25 Master CPU Select
  388. Uint16 GPIO26:4; // 11:8 GPIO26 Master CPU Select
  389. Uint16 GPIO27:4; // 15:12 GPIO27 Master CPU Select
  390. Uint16 GPIO28:4; // 19:16 GPIO28 Master CPU Select
  391. Uint16 GPIO29:4; // 23:20 GPIO29 Master CPU Select
  392. Uint16 GPIO30:4; // 27:24 GPIO30 Master CPU Select
  393. Uint16 GPIO31:4; // 31:28 GPIO31 Master CPU Select
  394. };
  395. union GPACSEL4_REG {
  396. Uint32 all;
  397. struct GPACSEL4_BITS bit;
  398. };
  399. struct GPALOCK_BITS { // bits description
  400. Uint16 GPIO0:1; // 0 Configuration Lock bit for this pin
  401. Uint16 GPIO1:1; // 1 Configuration Lock bit for this pin
  402. Uint16 GPIO2:1; // 2 Configuration Lock bit for this pin
  403. Uint16 GPIO3:1; // 3 Configuration Lock bit for this pin
  404. Uint16 GPIO4:1; // 4 Configuration Lock bit for this pin
  405. Uint16 GPIO5:1; // 5 Configuration Lock bit for this pin
  406. Uint16 GPIO6:1; // 6 Configuration Lock bit for this pin
  407. Uint16 GPIO7:1; // 7 Configuration Lock bit for this pin
  408. Uint16 GPIO8:1; // 8 Configuration Lock bit for this pin
  409. Uint16 GPIO9:1; // 9 Configuration Lock bit for this pin
  410. Uint16 GPIO10:1; // 10 Configuration Lock bit for this pin
  411. Uint16 GPIO11:1; // 11 Configuration Lock bit for this pin
  412. Uint16 GPIO12:1; // 12 Configuration Lock bit for this pin
  413. Uint16 GPIO13:1; // 13 Configuration Lock bit for this pin
  414. Uint16 GPIO14:1; // 14 Configuration Lock bit for this pin
  415. Uint16 GPIO15:1; // 15 Configuration Lock bit for this pin
  416. Uint16 GPIO16:1; // 16 Configuration Lock bit for this pin
  417. Uint16 GPIO17:1; // 17 Configuration Lock bit for this pin
  418. Uint16 GPIO18:1; // 18 Configuration Lock bit for this pin
  419. Uint16 GPIO19:1; // 19 Configuration Lock bit for this pin
  420. Uint16 GPIO20:1; // 20 Configuration Lock bit for this pin
  421. Uint16 GPIO21:1; // 21 Configuration Lock bit for this pin
  422. Uint16 GPIO22:1; // 22 Configuration Lock bit for this pin
  423. Uint16 GPIO23:1; // 23 Configuration Lock bit for this pin
  424. Uint16 GPIO24:1; // 24 Configuration Lock bit for this pin
  425. Uint16 GPIO25:1; // 25 Configuration Lock bit for this pin
  426. Uint16 GPIO26:1; // 26 Configuration Lock bit for this pin
  427. Uint16 GPIO27:1; // 27 Configuration Lock bit for this pin
  428. Uint16 GPIO28:1; // 28 Configuration Lock bit for this pin
  429. Uint16 GPIO29:1; // 29 Configuration Lock bit for this pin
  430. Uint16 GPIO30:1; // 30 Configuration Lock bit for this pin
  431. Uint16 GPIO31:1; // 31 Configuration Lock bit for this pin
  432. };
  433. union GPALOCK_REG {
  434. Uint32 all;
  435. struct GPALOCK_BITS bit;
  436. };
  437. struct GPACR_BITS { // bits description
  438. Uint16 GPIO0:1; // 0 Configuration lock commit bit for this pin
  439. Uint16 GPIO1:1; // 1 Configuration lock commit bit for this pin
  440. Uint16 GPIO2:1; // 2 Configuration lock commit bit for this pin
  441. Uint16 GPIO3:1; // 3 Configuration lock commit bit for this pin
  442. Uint16 GPIO4:1; // 4 Configuration lock commit bit for this pin
  443. Uint16 GPIO5:1; // 5 Configuration lock commit bit for this pin
  444. Uint16 GPIO6:1; // 6 Configuration lock commit bit for this pin
  445. Uint16 GPIO7:1; // 7 Configuration lock commit bit for this pin
  446. Uint16 GPIO8:1; // 8 Configuration lock commit bit for this pin
  447. Uint16 GPIO9:1; // 9 Configuration lock commit bit for this pin
  448. Uint16 GPIO10:1; // 10 Configuration lock commit bit for this pin
  449. Uint16 GPIO11:1; // 11 Configuration lock commit bit for this pin
  450. Uint16 GPIO12:1; // 12 Configuration lock commit bit for this pin
  451. Uint16 GPIO13:1; // 13 Configuration lock commit bit for this pin
  452. Uint16 GPIO14:1; // 14 Configuration lock commit bit for this pin
  453. Uint16 GPIO15:1; // 15 Configuration lock commit bit for this pin
  454. Uint16 GPIO16:1; // 16 Configuration lock commit bit for this pin
  455. Uint16 GPIO17:1; // 17 Configuration lock commit bit for this pin
  456. Uint16 GPIO18:1; // 18 Configuration lock commit bit for this pin
  457. Uint16 GPIO19:1; // 19 Configuration lock commit bit for this pin
  458. Uint16 GPIO20:1; // 20 Configuration lock commit bit for this pin
  459. Uint16 GPIO21:1; // 21 Configuration lock commit bit for this pin
  460. Uint16 GPIO22:1; // 22 Configuration lock commit bit for this pin
  461. Uint16 GPIO23:1; // 23 Configuration lock commit bit for this pin
  462. Uint16 GPIO24:1; // 24 Configuration lock commit bit for this pin
  463. Uint16 GPIO25:1; // 25 Configuration lock commit bit for this pin
  464. Uint16 GPIO26:1; // 26 Configuration lock commit bit for this pin
  465. Uint16 GPIO27:1; // 27 Configuration lock commit bit for this pin
  466. Uint16 GPIO28:1; // 28 Configuration lock commit bit for this pin
  467. Uint16 GPIO29:1; // 29 Configuration lock commit bit for this pin
  468. Uint16 GPIO30:1; // 30 Configuration lock commit bit for this pin
  469. Uint16 GPIO31:1; // 31 Configuration lock commit bit for this pin
  470. };
  471. union GPACR_REG {
  472. Uint32 all;
  473. struct GPACR_BITS bit;
  474. };
  475. struct GPBCTRL_BITS { // bits description
  476. Uint16 QUALPRD0:8; // 7:0 Qualification sampling period for GPIO32 to GPIO39
  477. Uint16 QUALPRD1:8; // 15:8 Qualification sampling period for GPIO40 to GPIO47
  478. Uint16 QUALPRD2:8; // 23:16 Qualification sampling period for GPIO48 to GPIO55
  479. Uint16 QUALPRD3:8; // 31:24 Qualification sampling period for GPIO56 to GPIO63
  480. };
  481. union GPBCTRL_REG {
  482. Uint32 all;
  483. struct GPBCTRL_BITS bit;
  484. };
  485. struct GPBQSEL1_BITS { // bits description
  486. Uint16 GPIO32:2; // 1:0 Select input qualification type for GPIO32
  487. Uint16 GPIO33:2; // 3:2 Select input qualification type for GPIO33
  488. Uint16 GPIO34:2; // 5:4 Select input qualification type for GPIO34
  489. Uint16 GPIO35:2; // 7:6 Select input qualification type for GPIO35
  490. Uint16 GPIO36:2; // 9:8 Select input qualification type for GPIO36
  491. Uint16 GPIO37:2; // 11:10 Select input qualification type for GPIO37
  492. Uint16 GPIO38:2; // 13:12 Select input qualification type for GPIO38
  493. Uint16 GPIO39:2; // 15:14 Select input qualification type for GPIO39
  494. Uint16 GPIO40:2; // 17:16 Select input qualification type for GPIO40
  495. Uint16 GPIO41:2; // 19:18 Select input qualification type for GPIO41
  496. Uint16 GPIO42:2; // 21:20 Select input qualification type for GPIO42
  497. Uint16 GPIO43:2; // 23:22 Select input qualification type for GPIO43
  498. Uint16 GPIO44:2; // 25:24 Select input qualification type for GPIO44
  499. Uint16 GPIO45:2; // 27:26 Select input qualification type for GPIO45
  500. Uint16 GPIO46:2; // 29:28 Select input qualification type for GPIO46
  501. Uint16 GPIO47:2; // 31:30 Select input qualification type for GPIO47
  502. };
  503. union GPBQSEL1_REG {
  504. Uint32 all;
  505. struct GPBQSEL1_BITS bit;
  506. };
  507. struct GPBQSEL2_BITS { // bits description
  508. Uint16 GPIO48:2; // 1:0 Select input qualification type for GPIO48
  509. Uint16 GPIO49:2; // 3:2 Select input qualification type for GPIO49
  510. Uint16 GPIO50:2; // 5:4 Select input qualification type for GPIO50
  511. Uint16 GPIO51:2; // 7:6 Select input qualification type for GPIO51
  512. Uint16 GPIO52:2; // 9:8 Select input qualification type for GPIO52
  513. Uint16 GPIO53:2; // 11:10 Select input qualification type for GPIO53
  514. Uint16 GPIO54:2; // 13:12 Select input qualification type for GPIO54
  515. Uint16 GPIO55:2; // 15:14 Select input qualification type for GPIO55
  516. Uint16 GPIO56:2; // 17:16 Select input qualification type for GPIO56
  517. Uint16 GPIO57:2; // 19:18 Select input qualification type for GPIO57
  518. Uint16 GPIO58:2; // 21:20 Select input qualification type for GPIO58
  519. Uint16 GPIO59:2; // 23:22 Select input qualification type for GPIO59
  520. Uint16 GPIO60:2; // 25:24 Select input qualification type for GPIO60
  521. Uint16 GPIO61:2; // 27:26 Select input qualification type for GPIO61
  522. Uint16 GPIO62:2; // 29:28 Select input qualification type for GPIO62
  523. Uint16 GPIO63:2; // 31:30 Select input qualification type for GPIO63
  524. };
  525. union GPBQSEL2_REG {
  526. Uint32 all;
  527. struct GPBQSEL2_BITS bit;
  528. };
  529. struct GPBMUX1_BITS { // bits description
  530. Uint16 GPIO32:2; // 1:0 Defines pin-muxing selection for GPIO32
  531. Uint16 GPIO33:2; // 3:2 Defines pin-muxing selection for GPIO33
  532. Uint16 GPIO34:2; // 5:4 Defines pin-muxing selection for GPIO34
  533. Uint16 GPIO35:2; // 7:6 Defines pin-muxing selection for GPIO35
  534. Uint16 GPIO36:2; // 9:8 Defines pin-muxing selection for GPIO36
  535. Uint16 GPIO37:2; // 11:10 Defines pin-muxing selection for GPIO37
  536. Uint16 GPIO38:2; // 13:12 Defines pin-muxing selection for GPIO38
  537. Uint16 GPIO39:2; // 15:14 Defines pin-muxing selection for GPIO39
  538. Uint16 GPIO40:2; // 17:16 Defines pin-muxing selection for GPIO40
  539. Uint16 GPIO41:2; // 19:18 Defines pin-muxing selection for GPIO41
  540. Uint16 GPIO42:2; // 21:20 Defines pin-muxing selection for GPIO42
  541. Uint16 GPIO43:2; // 23:22 Defines pin-muxing selection for GPIO43
  542. Uint16 GPIO44:2; // 25:24 Defines pin-muxing selection for GPIO44
  543. Uint16 GPIO45:2; // 27:26 Defines pin-muxing selection for GPIO45
  544. Uint16 GPIO46:2; // 29:28 Defines pin-muxing selection for GPIO46
  545. Uint16 GPIO47:2; // 31:30 Defines pin-muxing selection for GPIO47
  546. };
  547. union GPBMUX1_REG {
  548. Uint32 all;
  549. struct GPBMUX1_BITS bit;
  550. };
  551. struct GPBMUX2_BITS { // bits description
  552. Uint16 GPIO48:2; // 1:0 Defines pin-muxing selection for GPIO48
  553. Uint16 GPIO49:2; // 3:2 Defines pin-muxing selection for GPIO49
  554. Uint16 GPIO50:2; // 5:4 Defines pin-muxing selection for GPIO50
  555. Uint16 GPIO51:2; // 7:6 Defines pin-muxing selection for GPIO51
  556. Uint16 GPIO52:2; // 9:8 Defines pin-muxing selection for GPIO52
  557. Uint16 GPIO53:2; // 11:10 Defines pin-muxing selection for GPIO53
  558. Uint16 GPIO54:2; // 13:12 Defines pin-muxing selection for GPIO54
  559. Uint16 GPIO55:2; // 15:14 Defines pin-muxing selection for GPIO55
  560. Uint16 GPIO56:2; // 17:16 Defines pin-muxing selection for GPIO56
  561. Uint16 GPIO57:2; // 19:18 Defines pin-muxing selection for GPIO57
  562. Uint16 GPIO58:2; // 21:20 Defines pin-muxing selection for GPIO58
  563. Uint16 GPIO59:2; // 23:22 Defines pin-muxing selection for GPIO59
  564. Uint16 GPIO60:2; // 25:24 Defines pin-muxing selection for GPIO60
  565. Uint16 GPIO61:2; // 27:26 Defines pin-muxing selection for GPIO61
  566. Uint16 GPIO62:2; // 29:28 Defines pin-muxing selection for GPIO62
  567. Uint16 GPIO63:2; // 31:30 Defines pin-muxing selection for GPIO63
  568. };
  569. union GPBMUX2_REG {
  570. Uint32 all;
  571. struct GPBMUX2_BITS bit;
  572. };
  573. struct GPBDIR_BITS { // bits description
  574. Uint16 GPIO32:1; // 0 Defines direction for this pin in GPIO mode
  575. Uint16 GPIO33:1; // 1 Defines direction for this pin in GPIO mode
  576. Uint16 GPIO34:1; // 2 Defines direction for this pin in GPIO mode
  577. Uint16 GPIO35:1; // 3 Defines direction for this pin in GPIO mode
  578. Uint16 GPIO36:1; // 4 Defines direction for this pin in GPIO mode
  579. Uint16 GPIO37:1; // 5 Defines direction for this pin in GPIO mode
  580. Uint16 GPIO38:1; // 6 Defines direction for this pin in GPIO mode
  581. Uint16 GPIO39:1; // 7 Defines direction for this pin in GPIO mode
  582. Uint16 GPIO40:1; // 8 Defines direction for this pin in GPIO mode
  583. Uint16 GPIO41:1; // 9 Defines direction for this pin in GPIO mode
  584. Uint16 GPIO42:1; // 10 Defines direction for this pin in GPIO mode
  585. Uint16 GPIO43:1; // 11 Defines direction for this pin in GPIO mode
  586. Uint16 GPIO44:1; // 12 Defines direction for this pin in GPIO mode
  587. Uint16 GPIO45:1; // 13 Defines direction for this pin in GPIO mode
  588. Uint16 GPIO46:1; // 14 Defines direction for this pin in GPIO mode
  589. Uint16 GPIO47:1; // 15 Defines direction for this pin in GPIO mode
  590. Uint16 GPIO48:1; // 16 Defines direction for this pin in GPIO mode
  591. Uint16 GPIO49:1; // 17 Defines direction for this pin in GPIO mode
  592. Uint16 GPIO50:1; // 18 Defines direction for this pin in GPIO mode
  593. Uint16 GPIO51:1; // 19 Defines direction for this pin in GPIO mode
  594. Uint16 GPIO52:1; // 20 Defines direction for this pin in GPIO mode
  595. Uint16 GPIO53:1; // 21 Defines direction for this pin in GPIO mode
  596. Uint16 GPIO54:1; // 22 Defines direction for this pin in GPIO mode
  597. Uint16 GPIO55:1; // 23 Defines direction for this pin in GPIO mode
  598. Uint16 GPIO56:1; // 24 Defines direction for this pin in GPIO mode
  599. Uint16 GPIO57:1; // 25 Defines direction for this pin in GPIO mode
  600. Uint16 GPIO58:1; // 26 Defines direction for this pin in GPIO mode
  601. Uint16 GPIO59:1; // 27 Defines direction for this pin in GPIO mode
  602. Uint16 GPIO60:1; // 28 Defines direction for this pin in GPIO mode
  603. Uint16 GPIO61:1; // 29 Defines direction for this pin in GPIO mode
  604. Uint16 GPIO62:1; // 30 Defines direction for this pin in GPIO mode
  605. Uint16 GPIO63:1; // 31 Defines direction for this pin in GPIO mode
  606. };
  607. union GPBDIR_REG {
  608. Uint32 all;
  609. struct GPBDIR_BITS bit;
  610. };
  611. struct GPBPUD_BITS { // bits description
  612. Uint16 GPIO32:1; // 0 Pull-Up Disable control for this pin
  613. Uint16 GPIO33:1; // 1 Pull-Up Disable control for this pin
  614. Uint16 GPIO34:1; // 2 Pull-Up Disable control for this pin
  615. Uint16 GPIO35:1; // 3 Pull-Up Disable control for this pin
  616. Uint16 GPIO36:1; // 4 Pull-Up Disable control for this pin
  617. Uint16 GPIO37:1; // 5 Pull-Up Disable control for this pin
  618. Uint16 GPIO38:1; // 6 Pull-Up Disable control for this pin
  619. Uint16 GPIO39:1; // 7 Pull-Up Disable control for this pin
  620. Uint16 GPIO40:1; // 8 Pull-Up Disable control for this pin
  621. Uint16 GPIO41:1; // 9 Pull-Up Disable control for this pin
  622. Uint16 GPIO42:1; // 10 Pull-Up Disable control for this pin
  623. Uint16 GPIO43:1; // 11 Pull-Up Disable control for this pin
  624. Uint16 GPIO44:1; // 12 Pull-Up Disable control for this pin
  625. Uint16 GPIO45:1; // 13 Pull-Up Disable control for this pin
  626. Uint16 GPIO46:1; // 14 Pull-Up Disable control for this pin
  627. Uint16 GPIO47:1; // 15 Pull-Up Disable control for this pin
  628. Uint16 GPIO48:1; // 16 Pull-Up Disable control for this pin
  629. Uint16 GPIO49:1; // 17 Pull-Up Disable control for this pin
  630. Uint16 GPIO50:1; // 18 Pull-Up Disable control for this pin
  631. Uint16 GPIO51:1; // 19 Pull-Up Disable control for this pin
  632. Uint16 GPIO52:1; // 20 Pull-Up Disable control for this pin
  633. Uint16 GPIO53:1; // 21 Pull-Up Disable control for this pin
  634. Uint16 GPIO54:1; // 22 Pull-Up Disable control for this pin
  635. Uint16 GPIO55:1; // 23 Pull-Up Disable control for this pin
  636. Uint16 GPIO56:1; // 24 Pull-Up Disable control for this pin
  637. Uint16 GPIO57:1; // 25 Pull-Up Disable control for this pin
  638. Uint16 GPIO58:1; // 26 Pull-Up Disable control for this pin
  639. Uint16 GPIO59:1; // 27 Pull-Up Disable control for this pin
  640. Uint16 GPIO60:1; // 28 Pull-Up Disable control for this pin
  641. Uint16 GPIO61:1; // 29 Pull-Up Disable control for this pin
  642. Uint16 GPIO62:1; // 30 Pull-Up Disable control for this pin
  643. Uint16 GPIO63:1; // 31 Pull-Up Disable control for this pin
  644. };
  645. union GPBPUD_REG {
  646. Uint32 all;
  647. struct GPBPUD_BITS bit;
  648. };
  649. struct GPBINV_BITS { // bits description
  650. Uint16 GPIO32:1; // 0 Input inversion control for this pin
  651. Uint16 GPIO33:1; // 1 Input inversion control for this pin
  652. Uint16 GPIO34:1; // 2 Input inversion control for this pin
  653. Uint16 GPIO35:1; // 3 Input inversion control for this pin
  654. Uint16 GPIO36:1; // 4 Input inversion control for this pin
  655. Uint16 GPIO37:1; // 5 Input inversion control for this pin
  656. Uint16 GPIO38:1; // 6 Input inversion control for this pin
  657. Uint16 GPIO39:1; // 7 Input inversion control for this pin
  658. Uint16 GPIO40:1; // 8 Input inversion control for this pin
  659. Uint16 GPIO41:1; // 9 Input inversion control for this pin
  660. Uint16 GPIO42:1; // 10 Input inversion control for this pin
  661. Uint16 GPIO43:1; // 11 Input inversion control for this pin
  662. Uint16 GPIO44:1; // 12 Input inversion control for this pin
  663. Uint16 GPIO45:1; // 13 Input inversion control for this pin
  664. Uint16 GPIO46:1; // 14 Input inversion control for this pin
  665. Uint16 GPIO47:1; // 15 Input inversion control for this pin
  666. Uint16 GPIO48:1; // 16 Input inversion control for this pin
  667. Uint16 GPIO49:1; // 17 Input inversion control for this pin
  668. Uint16 GPIO50:1; // 18 Input inversion control for this pin
  669. Uint16 GPIO51:1; // 19 Input inversion control for this pin
  670. Uint16 GPIO52:1; // 20 Input inversion control for this pin
  671. Uint16 GPIO53:1; // 21 Input inversion control for this pin
  672. Uint16 GPIO54:1; // 22 Input inversion control for this pin
  673. Uint16 GPIO55:1; // 23 Input inversion control for this pin
  674. Uint16 GPIO56:1; // 24 Input inversion control for this pin
  675. Uint16 GPIO57:1; // 25 Input inversion control for this pin
  676. Uint16 GPIO58:1; // 26 Input inversion control for this pin
  677. Uint16 GPIO59:1; // 27 Input inversion control for this pin
  678. Uint16 GPIO60:1; // 28 Input inversion control for this pin
  679. Uint16 GPIO61:1; // 29 Input inversion control for this pin
  680. Uint16 GPIO62:1; // 30 Input inversion control for this pin
  681. Uint16 GPIO63:1; // 31 Input inversion control for this pin
  682. };
  683. union GPBINV_REG {
  684. Uint32 all;
  685. struct GPBINV_BITS bit;
  686. };
  687. struct GPBODR_BITS { // bits description
  688. Uint16 GPIO32:1; // 0 Outpout Open-Drain control for this pin
  689. Uint16 GPIO33:1; // 1 Outpout Open-Drain control for this pin
  690. Uint16 GPIO34:1; // 2 Outpout Open-Drain control for this pin
  691. Uint16 GPIO35:1; // 3 Outpout Open-Drain control for this pin
  692. Uint16 GPIO36:1; // 4 Outpout Open-Drain control for this pin
  693. Uint16 GPIO37:1; // 5 Outpout Open-Drain control for this pin
  694. Uint16 GPIO38:1; // 6 Outpout Open-Drain control for this pin
  695. Uint16 GPIO39:1; // 7 Outpout Open-Drain control for this pin
  696. Uint16 GPIO40:1; // 8 Outpout Open-Drain control for this pin
  697. Uint16 GPIO41:1; // 9 Outpout Open-Drain control for this pin
  698. Uint16 GPIO42:1; // 10 Outpout Open-Drain control for this pin
  699. Uint16 GPIO43:1; // 11 Outpout Open-Drain control for this pin
  700. Uint16 GPIO44:1; // 12 Outpout Open-Drain control for this pin
  701. Uint16 GPIO45:1; // 13 Outpout Open-Drain control for this pin
  702. Uint16 GPIO46:1; // 14 Outpout Open-Drain control for this pin
  703. Uint16 GPIO47:1; // 15 Outpout Open-Drain control for this pin
  704. Uint16 GPIO48:1; // 16 Outpout Open-Drain control for this pin
  705. Uint16 GPIO49:1; // 17 Outpout Open-Drain control for this pin
  706. Uint16 GPIO50:1; // 18 Outpout Open-Drain control for this pin
  707. Uint16 GPIO51:1; // 19 Outpout Open-Drain control for this pin
  708. Uint16 GPIO52:1; // 20 Outpout Open-Drain control for this pin
  709. Uint16 GPIO53:1; // 21 Outpout Open-Drain control for this pin
  710. Uint16 GPIO54:1; // 22 Outpout Open-Drain control for this pin
  711. Uint16 GPIO55:1; // 23 Outpout Open-Drain control for this pin
  712. Uint16 GPIO56:1; // 24 Outpout Open-Drain control for this pin
  713. Uint16 GPIO57:1; // 25 Outpout Open-Drain control for this pin
  714. Uint16 GPIO58:1; // 26 Outpout Open-Drain control for this pin
  715. Uint16 GPIO59:1; // 27 Outpout Open-Drain control for this pin
  716. Uint16 GPIO60:1; // 28 Outpout Open-Drain control for this pin
  717. Uint16 GPIO61:1; // 29 Outpout Open-Drain control for this pin
  718. Uint16 GPIO62:1; // 30 Outpout Open-Drain control for this pin
  719. Uint16 GPIO63:1; // 31 Outpout Open-Drain control for this pin
  720. };
  721. union GPBODR_REG {
  722. Uint32 all;
  723. struct GPBODR_BITS bit;
  724. };
  725. struct GPBAMSEL_BITS { // bits description
  726. Uint16 rsvd1:1; // 0 Reserved
  727. Uint16 rsvd2:1; // 1 Reserved
  728. Uint16 rsvd3:1; // 2 Reserved
  729. Uint16 rsvd4:1; // 3 Reserved
  730. Uint16 rsvd5:1; // 4 Reserved
  731. Uint16 rsvd6:1; // 5 Reserved
  732. Uint16 rsvd7:1; // 6 Reserved
  733. Uint16 rsvd8:1; // 7 Reserved
  734. Uint16 rsvd9:1; // 8 Reserved
  735. Uint16 rsvd10:1; // 9 Reserved
  736. Uint16 GPIO42:1; // 10 Analog Mode select for this pin
  737. Uint16 GPIO43:1; // 11 Analog Mode select for this pin
  738. Uint16 rsvd11:1; // 12 Reserved
  739. Uint16 rsvd12:1; // 13 Reserved
  740. Uint16 rsvd13:1; // 14 Reserved
  741. Uint16 rsvd14:1; // 15 Reserved
  742. Uint16 rsvd15:1; // 16 Reserved
  743. Uint16 rsvd16:1; // 17 Reserved
  744. Uint16 rsvd17:1; // 18 Reserved
  745. Uint16 rsvd18:1; // 19 Reserved
  746. Uint16 rsvd19:1; // 20 Reserved
  747. Uint16 rsvd20:1; // 21 Reserved
  748. Uint16 rsvd21:1; // 22 Reserved
  749. Uint16 rsvd22:1; // 23 Reserved
  750. Uint16 rsvd23:1; // 24 Reserved
  751. Uint16 rsvd24:1; // 25 Reserved
  752. Uint16 rsvd25:1; // 26 Reserved
  753. Uint16 rsvd26:1; // 27 Reserved
  754. Uint16 rsvd27:1; // 28 Reserved
  755. Uint16 rsvd28:1; // 29 Reserved
  756. Uint16 rsvd29:1; // 30 Reserved
  757. Uint16 rsvd30:1; // 31 Reserved
  758. };
  759. union GPBAMSEL_REG {
  760. Uint32 all;
  761. struct GPBAMSEL_BITS bit;
  762. };
  763. struct GPBGMUX1_BITS { // bits description
  764. Uint16 GPIO32:2; // 1:0 Defines pin-muxing selection for GPIO32
  765. Uint16 GPIO33:2; // 3:2 Defines pin-muxing selection for GPIO33
  766. Uint16 GPIO34:2; // 5:4 Defines pin-muxing selection for GPIO34
  767. Uint16 GPIO35:2; // 7:6 Defines pin-muxing selection for GPIO35
  768. Uint16 GPIO36:2; // 9:8 Defines pin-muxing selection for GPIO36
  769. Uint16 GPIO37:2; // 11:10 Defines pin-muxing selection for GPIO37
  770. Uint16 GPIO38:2; // 13:12 Defines pin-muxing selection for GPIO38
  771. Uint16 GPIO39:2; // 15:14 Defines pin-muxing selection for GPIO39
  772. Uint16 GPIO40:2; // 17:16 Defines pin-muxing selection for GPIO40
  773. Uint16 GPIO41:2; // 19:18 Defines pin-muxing selection for GPIO41
  774. Uint16 GPIO42:2; // 21:20 Defines pin-muxing selection for GPIO42
  775. Uint16 GPIO43:2; // 23:22 Defines pin-muxing selection for GPIO43
  776. Uint16 GPIO44:2; // 25:24 Defines pin-muxing selection for GPIO44
  777. Uint16 GPIO45:2; // 27:26 Defines pin-muxing selection for GPIO45
  778. Uint16 GPIO46:2; // 29:28 Defines pin-muxing selection for GPIO46
  779. Uint16 GPIO47:2; // 31:30 Defines pin-muxing selection for GPIO47
  780. };
  781. union GPBGMUX1_REG {
  782. Uint32 all;
  783. struct GPBGMUX1_BITS bit;
  784. };
  785. struct GPBGMUX2_BITS { // bits description
  786. Uint16 GPIO48:2; // 1:0 Defines pin-muxing selection for GPIO48
  787. Uint16 GPIO49:2; // 3:2 Defines pin-muxing selection for GPIO49
  788. Uint16 GPIO50:2; // 5:4 Defines pin-muxing selection for GPIO50
  789. Uint16 GPIO51:2; // 7:6 Defines pin-muxing selection for GPIO51
  790. Uint16 GPIO52:2; // 9:8 Defines pin-muxing selection for GPIO52
  791. Uint16 GPIO53:2; // 11:10 Defines pin-muxing selection for GPIO53
  792. Uint16 GPIO54:2; // 13:12 Defines pin-muxing selection for GPIO54
  793. Uint16 GPIO55:2; // 15:14 Defines pin-muxing selection for GPIO55
  794. Uint16 GPIO56:2; // 17:16 Defines pin-muxing selection for GPIO56
  795. Uint16 GPIO57:2; // 19:18 Defines pin-muxing selection for GPIO57
  796. Uint16 GPIO58:2; // 21:20 Defines pin-muxing selection for GPIO58
  797. Uint16 GPIO59:2; // 23:22 Defines pin-muxing selection for GPIO59
  798. Uint16 GPIO60:2; // 25:24 Defines pin-muxing selection for GPIO60
  799. Uint16 GPIO61:2; // 27:26 Defines pin-muxing selection for GPIO61
  800. Uint16 GPIO62:2; // 29:28 Defines pin-muxing selection for GPIO62
  801. Uint16 GPIO63:2; // 31:30 Defines pin-muxing selection for GPIO63
  802. };
  803. union GPBGMUX2_REG {
  804. Uint32 all;
  805. struct GPBGMUX2_BITS bit;
  806. };
  807. struct GPBCSEL1_BITS { // bits description
  808. Uint16 GPIO32:4; // 3:0 GPIO32 Master CPU Select
  809. Uint16 GPIO33:4; // 7:4 GPIO33 Master CPU Select
  810. Uint16 GPIO34:4; // 11:8 GPIO34 Master CPU Select
  811. Uint16 GPIO35:4; // 15:12 GPIO35 Master CPU Select
  812. Uint16 GPIO36:4; // 19:16 GPIO36 Master CPU Select
  813. Uint16 GPIO37:4; // 23:20 GPIO37 Master CPU Select
  814. Uint16 GPIO38:4; // 27:24 GPIO38 Master CPU Select
  815. Uint16 GPIO39:4; // 31:28 GPIO39 Master CPU Select
  816. };
  817. union GPBCSEL1_REG {
  818. Uint32 all;
  819. struct GPBCSEL1_BITS bit;
  820. };
  821. struct GPBCSEL2_BITS { // bits description
  822. Uint16 GPIO40:4; // 3:0 GPIO40 Master CPU Select
  823. Uint16 GPIO41:4; // 7:4 GPIO41 Master CPU Select
  824. Uint16 GPIO42:4; // 11:8 GPIO42 Master CPU Select
  825. Uint16 GPIO43:4; // 15:12 GPIO43 Master CPU Select
  826. Uint16 GPIO44:4; // 19:16 GPIO44 Master CPU Select
  827. Uint16 GPIO45:4; // 23:20 GPIO45 Master CPU Select
  828. Uint16 GPIO46:4; // 27:24 GPIO46 Master CPU Select
  829. Uint16 GPIO47:4; // 31:28 GPIO47 Master CPU Select
  830. };
  831. union GPBCSEL2_REG {
  832. Uint32 all;
  833. struct GPBCSEL2_BITS bit;
  834. };
  835. struct GPBCSEL3_BITS { // bits description
  836. Uint16 GPIO48:4; // 3:0 GPIO48 Master CPU Select
  837. Uint16 GPIO49:4; // 7:4 GPIO49 Master CPU Select
  838. Uint16 GPIO50:4; // 11:8 GPIO50 Master CPU Select
  839. Uint16 GPIO51:4; // 15:12 GPIO51 Master CPU Select
  840. Uint16 GPIO52:4; // 19:16 GPIO52 Master CPU Select
  841. Uint16 GPIO53:4; // 23:20 GPIO53 Master CPU Select
  842. Uint16 GPIO54:4; // 27:24 GPIO54 Master CPU Select
  843. Uint16 GPIO55:4; // 31:28 GPIO55 Master CPU Select
  844. };
  845. union GPBCSEL3_REG {
  846. Uint32 all;
  847. struct GPBCSEL3_BITS bit;
  848. };
  849. struct GPBCSEL4_BITS { // bits description
  850. Uint16 GPIO56:4; // 3:0 GPIO56 Master CPU Select
  851. Uint16 GPIO57:4; // 7:4 GPIO57 Master CPU Select
  852. Uint16 GPIO58:4; // 11:8 GPIO58 Master CPU Select
  853. Uint16 GPIO59:4; // 15:12 GPIO59 Master CPU Select
  854. Uint16 GPIO60:4; // 19:16 GPIO60 Master CPU Select
  855. Uint16 GPIO61:4; // 23:20 GPIO61 Master CPU Select
  856. Uint16 GPIO62:4; // 27:24 GPIO62 Master CPU Select
  857. Uint16 GPIO63:4; // 31:28 GPIO63 Master CPU Select
  858. };
  859. union GPBCSEL4_REG {
  860. Uint32 all;
  861. struct GPBCSEL4_BITS bit;
  862. };
  863. struct GPBLOCK_BITS { // bits description
  864. Uint16 GPIO32:1; // 0 Configuration Lock bit for this pin
  865. Uint16 GPIO33:1; // 1 Configuration Lock bit for this pin
  866. Uint16 GPIO34:1; // 2 Configuration Lock bit for this pin
  867. Uint16 GPIO35:1; // 3 Configuration Lock bit for this pin
  868. Uint16 GPIO36:1; // 4 Configuration Lock bit for this pin
  869. Uint16 GPIO37:1; // 5 Configuration Lock bit for this pin
  870. Uint16 GPIO38:1; // 6 Configuration Lock bit for this pin
  871. Uint16 GPIO39:1; // 7 Configuration Lock bit for this pin
  872. Uint16 GPIO40:1; // 8 Configuration Lock bit for this pin
  873. Uint16 GPIO41:1; // 9 Configuration Lock bit for this pin
  874. Uint16 GPIO42:1; // 10 Configuration Lock bit for this pin
  875. Uint16 GPIO43:1; // 11 Configuration Lock bit for this pin
  876. Uint16 GPIO44:1; // 12 Configuration Lock bit for this pin
  877. Uint16 GPIO45:1; // 13 Configuration Lock bit for this pin
  878. Uint16 GPIO46:1; // 14 Configuration Lock bit for this pin
  879. Uint16 GPIO47:1; // 15 Configuration Lock bit for this pin
  880. Uint16 GPIO48:1; // 16 Configuration Lock bit for this pin
  881. Uint16 GPIO49:1; // 17 Configuration Lock bit for this pin
  882. Uint16 GPIO50:1; // 18 Configuration Lock bit for this pin
  883. Uint16 GPIO51:1; // 19 Configuration Lock bit for this pin
  884. Uint16 GPIO52:1; // 20 Configuration Lock bit for this pin
  885. Uint16 GPIO53:1; // 21 Configuration Lock bit for this pin
  886. Uint16 GPIO54:1; // 22 Configuration Lock bit for this pin
  887. Uint16 GPIO55:1; // 23 Configuration Lock bit for this pin
  888. Uint16 GPIO56:1; // 24 Configuration Lock bit for this pin
  889. Uint16 GPIO57:1; // 25 Configuration Lock bit for this pin
  890. Uint16 GPIO58:1; // 26 Configuration Lock bit for this pin
  891. Uint16 GPIO59:1; // 27 Configuration Lock bit for this pin
  892. Uint16 GPIO60:1; // 28 Configuration Lock bit for this pin
  893. Uint16 GPIO61:1; // 29 Configuration Lock bit for this pin
  894. Uint16 GPIO62:1; // 30 Configuration Lock bit for this pin
  895. Uint16 GPIO63:1; // 31 Configuration Lock bit for this pin
  896. };
  897. union GPBLOCK_REG {
  898. Uint32 all;
  899. struct GPBLOCK_BITS bit;
  900. };
  901. struct GPBCR_BITS { // bits description
  902. Uint16 GPIO32:1; // 0 Configuration lock commit bit for this pin
  903. Uint16 GPIO33:1; // 1 Configuration lock commit bit for this pin
  904. Uint16 GPIO34:1; // 2 Configuration lock commit bit for this pin
  905. Uint16 GPIO35:1; // 3 Configuration lock commit bit for this pin
  906. Uint16 GPIO36:1; // 4 Configuration lock commit bit for this pin
  907. Uint16 GPIO37:1; // 5 Configuration lock commit bit for this pin
  908. Uint16 GPIO38:1; // 6 Configuration lock commit bit for this pin
  909. Uint16 GPIO39:1; // 7 Configuration lock commit bit for this pin
  910. Uint16 GPIO40:1; // 8 Configuration lock commit bit for this pin
  911. Uint16 GPIO41:1; // 9 Configuration lock commit bit for this pin
  912. Uint16 GPIO42:1; // 10 Configuration lock commit bit for this pin
  913. Uint16 GPIO43:1; // 11 Configuration lock commit bit for this pin
  914. Uint16 GPIO44:1; // 12 Configuration lock commit bit for this pin
  915. Uint16 GPIO45:1; // 13 Configuration lock commit bit for this pin
  916. Uint16 GPIO46:1; // 14 Configuration lock commit bit for this pin
  917. Uint16 GPIO47:1; // 15 Configuration lock commit bit for this pin
  918. Uint16 GPIO48:1; // 16 Configuration lock commit bit for this pin
  919. Uint16 GPIO49:1; // 17 Configuration lock commit bit for this pin
  920. Uint16 GPIO50:1; // 18 Configuration lock commit bit for this pin
  921. Uint16 GPIO51:1; // 19 Configuration lock commit bit for this pin
  922. Uint16 GPIO52:1; // 20 Configuration lock commit bit for this pin
  923. Uint16 GPIO53:1; // 21 Configuration lock commit bit for this pin
  924. Uint16 GPIO54:1; // 22 Configuration lock commit bit for this pin
  925. Uint16 GPIO55:1; // 23 Configuration lock commit bit for this pin
  926. Uint16 GPIO56:1; // 24 Configuration lock commit bit for this pin
  927. Uint16 GPIO57:1; // 25 Configuration lock commit bit for this pin
  928. Uint16 GPIO58:1; // 26 Configuration lock commit bit for this pin
  929. Uint16 GPIO59:1; // 27 Configuration lock commit bit for this pin
  930. Uint16 GPIO60:1; // 28 Configuration lock commit bit for this pin
  931. Uint16 GPIO61:1; // 29 Configuration lock commit bit for this pin
  932. Uint16 GPIO62:1; // 30 Configuration lock commit bit for this pin
  933. Uint16 GPIO63:1; // 31 Configuration lock commit bit for this pin
  934. };
  935. union GPBCR_REG {
  936. Uint32 all;
  937. struct GPBCR_BITS bit;
  938. };
  939. struct GPCCTRL_BITS { // bits description
  940. Uint16 QUALPRD0:8; // 7:0 Qualification sampling period for GPIO64 to GPIO71
  941. Uint16 QUALPRD1:8; // 15:8 Qualification sampling period for GPIO72 to GPIO79
  942. Uint16 QUALPRD2:8; // 23:16 Qualification sampling period for GPIO80 to GPIO87
  943. Uint16 QUALPRD3:8; // 31:24 Qualification sampling period for GPIO88 to GPIO95
  944. };
  945. union GPCCTRL_REG {
  946. Uint32 all;
  947. struct GPCCTRL_BITS bit;
  948. };
  949. struct GPCQSEL1_BITS { // bits description
  950. Uint16 GPIO64:2; // 1:0 Select input qualification type for GPIO64
  951. Uint16 GPIO65:2; // 3:2 Select input qualification type for GPIO65
  952. Uint16 GPIO66:2; // 5:4 Select input qualification type for GPIO66
  953. Uint16 GPIO67:2; // 7:6 Select input qualification type for GPIO67
  954. Uint16 GPIO68:2; // 9:8 Select input qualification type for GPIO68
  955. Uint16 GPIO69:2; // 11:10 Select input qualification type for GPIO69
  956. Uint16 GPIO70:2; // 13:12 Select input qualification type for GPIO70
  957. Uint16 GPIO71:2; // 15:14 Select input qualification type for GPIO71
  958. Uint16 GPIO72:2; // 17:16 Select input qualification type for GPIO72
  959. Uint16 GPIO73:2; // 19:18 Select input qualification type for GPIO73
  960. Uint16 GPIO74:2; // 21:20 Select input qualification type for GPIO74
  961. Uint16 GPIO75:2; // 23:22 Select input qualification type for GPIO75
  962. Uint16 GPIO76:2; // 25:24 Select input qualification type for GPIO76
  963. Uint16 GPIO77:2; // 27:26 Select input qualification type for GPIO77
  964. Uint16 GPIO78:2; // 29:28 Select input qualification type for GPIO78
  965. Uint16 GPIO79:2; // 31:30 Select input qualification type for GPIO79
  966. };
  967. union GPCQSEL1_REG {
  968. Uint32 all;
  969. struct GPCQSEL1_BITS bit;
  970. };
  971. struct GPCQSEL2_BITS { // bits description
  972. Uint16 GPIO80:2; // 1:0 Select input qualification type for GPIO80
  973. Uint16 GPIO81:2; // 3:2 Select input qualification type for GPIO81
  974. Uint16 GPIO82:2; // 5:4 Select input qualification type for GPIO82
  975. Uint16 GPIO83:2; // 7:6 Select input qualification type for GPIO83
  976. Uint16 GPIO84:2; // 9:8 Select input qualification type for GPIO84
  977. Uint16 GPIO85:2; // 11:10 Select input qualification type for GPIO85
  978. Uint16 GPIO86:2; // 13:12 Select input qualification type for GPIO86
  979. Uint16 GPIO87:2; // 15:14 Select input qualification type for GPIO87
  980. Uint16 GPIO88:2; // 17:16 Select input qualification type for GPIO88
  981. Uint16 GPIO89:2; // 19:18 Select input qualification type for GPIO89
  982. Uint16 GPIO90:2; // 21:20 Select input qualification type for GPIO90
  983. Uint16 GPIO91:2; // 23:22 Select input qualification type for GPIO91
  984. Uint16 GPIO92:2; // 25:24 Select input qualification type for GPIO92
  985. Uint16 GPIO93:2; // 27:26 Select input qualification type for GPIO93
  986. Uint16 GPIO94:2; // 29:28 Select input qualification type for GPIO94
  987. Uint16 GPIO95:2; // 31:30 Select input qualification type for GPIO95
  988. };
  989. union GPCQSEL2_REG {
  990. Uint32 all;
  991. struct GPCQSEL2_BITS bit;
  992. };
  993. struct GPCMUX1_BITS { // bits description
  994. Uint16 GPIO64:2; // 1:0 Defines pin-muxing selection for GPIO64
  995. Uint16 GPIO65:2; // 3:2 Defines pin-muxing selection for GPIO65
  996. Uint16 GPIO66:2; // 5:4 Defines pin-muxing selection for GPIO66
  997. Uint16 GPIO67:2; // 7:6 Defines pin-muxing selection for GPIO67
  998. Uint16 GPIO68:2; // 9:8 Defines pin-muxing selection for GPIO68
  999. Uint16 GPIO69:2; // 11:10 Defines pin-muxing selection for GPIO69
  1000. Uint16 GPIO70:2; // 13:12 Defines pin-muxing selection for GPIO70
  1001. Uint16 GPIO71:2; // 15:14 Defines pin-muxing selection for GPIO71
  1002. Uint16 GPIO72:2; // 17:16 Defines pin-muxing selection for GPIO72
  1003. Uint16 GPIO73:2; // 19:18 Defines pin-muxing selection for GPIO73
  1004. Uint16 GPIO74:2; // 21:20 Defines pin-muxing selection for GPIO74
  1005. Uint16 GPIO75:2; // 23:22 Defines pin-muxing selection for GPIO75
  1006. Uint16 GPIO76:2; // 25:24 Defines pin-muxing selection for GPIO76
  1007. Uint16 GPIO77:2; // 27:26 Defines pin-muxing selection for GPIO77
  1008. Uint16 GPIO78:2; // 29:28 Defines pin-muxing selection for GPIO78
  1009. Uint16 GPIO79:2; // 31:30 Defines pin-muxing selection for GPIO79
  1010. };
  1011. union GPCMUX1_REG {
  1012. Uint32 all;
  1013. struct GPCMUX1_BITS bit;
  1014. };
  1015. struct GPCMUX2_BITS { // bits description
  1016. Uint16 GPIO80:2; // 1:0 Defines pin-muxing selection for GPIO80
  1017. Uint16 GPIO81:2; // 3:2 Defines pin-muxing selection for GPIO81
  1018. Uint16 GPIO82:2; // 5:4 Defines pin-muxing selection for GPIO82
  1019. Uint16 GPIO83:2; // 7:6 Defines pin-muxing selection for GPIO83
  1020. Uint16 GPIO84:2; // 9:8 Defines pin-muxing selection for GPIO84
  1021. Uint16 GPIO85:2; // 11:10 Defines pin-muxing selection for GPIO85
  1022. Uint16 GPIO86:2; // 13:12 Defines pin-muxing selection for GPIO86
  1023. Uint16 GPIO87:2; // 15:14 Defines pin-muxing selection for GPIO87
  1024. Uint16 GPIO88:2; // 17:16 Defines pin-muxing selection for GPIO88
  1025. Uint16 GPIO89:2; // 19:18 Defines pin-muxing selection for GPIO89
  1026. Uint16 GPIO90:2; // 21:20 Defines pin-muxing selection for GPIO90
  1027. Uint16 GPIO91:2; // 23:22 Defines pin-muxing selection for GPIO91
  1028. Uint16 GPIO92:2; // 25:24 Defines pin-muxing selection for GPIO92
  1029. Uint16 GPIO93:2; // 27:26 Defines pin-muxing selection for GPIO93
  1030. Uint16 GPIO94:2; // 29:28 Defines pin-muxing selection for GPIO94
  1031. Uint16 GPIO95:2; // 31:30 Defines pin-muxing selection for GPIO95
  1032. };
  1033. union GPCMUX2_REG {
  1034. Uint32 all;
  1035. struct GPCMUX2_BITS bit;
  1036. };
  1037. struct GPCDIR_BITS { // bits description
  1038. Uint16 GPIO64:1; // 0 Defines direction for this pin in GPIO mode
  1039. Uint16 GPIO65:1; // 1 Defines direction for this pin in GPIO mode
  1040. Uint16 GPIO66:1; // 2 Defines direction for this pin in GPIO mode
  1041. Uint16 GPIO67:1; // 3 Defines direction for this pin in GPIO mode
  1042. Uint16 GPIO68:1; // 4 Defines direction for this pin in GPIO mode
  1043. Uint16 GPIO69:1; // 5 Defines direction for this pin in GPIO mode
  1044. Uint16 GPIO70:1; // 6 Defines direction for this pin in GPIO mode
  1045. Uint16 GPIO71:1; // 7 Defines direction for this pin in GPIO mode
  1046. Uint16 GPIO72:1; // 8 Defines direction for this pin in GPIO mode
  1047. Uint16 GPIO73:1; // 9 Defines direction for this pin in GPIO mode
  1048. Uint16 GPIO74:1; // 10 Defines direction for this pin in GPIO mode
  1049. Uint16 GPIO75:1; // 11 Defines direction for this pin in GPIO mode
  1050. Uint16 GPIO76:1; // 12 Defines direction for this pin in GPIO mode
  1051. Uint16 GPIO77:1; // 13 Defines direction for this pin in GPIO mode
  1052. Uint16 GPIO78:1; // 14 Defines direction for this pin in GPIO mode
  1053. Uint16 GPIO79:1; // 15 Defines direction for this pin in GPIO mode
  1054. Uint16 GPIO80:1; // 16 Defines direction for this pin in GPIO mode
  1055. Uint16 GPIO81:1; // 17 Defines direction for this pin in GPIO mode
  1056. Uint16 GPIO82:1; // 18 Defines direction for this pin in GPIO mode
  1057. Uint16 GPIO83:1; // 19 Defines direction for this pin in GPIO mode
  1058. Uint16 GPIO84:1; // 20 Defines direction for this pin in GPIO mode
  1059. Uint16 GPIO85:1; // 21 Defines direction for this pin in GPIO mode
  1060. Uint16 GPIO86:1; // 22 Defines direction for this pin in GPIO mode
  1061. Uint16 GPIO87:1; // 23 Defines direction for this pin in GPIO mode
  1062. Uint16 GPIO88:1; // 24 Defines direction for this pin in GPIO mode
  1063. Uint16 GPIO89:1; // 25 Defines direction for this pin in GPIO mode
  1064. Uint16 GPIO90:1; // 26 Defines direction for this pin in GPIO mode
  1065. Uint16 GPIO91:1; // 27 Defines direction for this pin in GPIO mode
  1066. Uint16 GPIO92:1; // 28 Defines direction for this pin in GPIO mode
  1067. Uint16 GPIO93:1; // 29 Defines direction for this pin in GPIO mode
  1068. Uint16 GPIO94:1; // 30 Defines direction for this pin in GPIO mode
  1069. Uint16 GPIO95:1; // 31 Defines direction for this pin in GPIO mode
  1070. };
  1071. union GPCDIR_REG {
  1072. Uint32 all;
  1073. struct GPCDIR_BITS bit;
  1074. };
  1075. struct GPCPUD_BITS { // bits description
  1076. Uint16 GPIO64:1; // 0 Pull-Up Disable control for this pin
  1077. Uint16 GPIO65:1; // 1 Pull-Up Disable control for this pin
  1078. Uint16 GPIO66:1; // 2 Pull-Up Disable control for this pin
  1079. Uint16 GPIO67:1; // 3 Pull-Up Disable control for this pin
  1080. Uint16 GPIO68:1; // 4 Pull-Up Disable control for this pin
  1081. Uint16 GPIO69:1; // 5 Pull-Up Disable control for this pin
  1082. Uint16 GPIO70:1; // 6 Pull-Up Disable control for this pin
  1083. Uint16 GPIO71:1; // 7 Pull-Up Disable control for this pin
  1084. Uint16 GPIO72:1; // 8 Pull-Up Disable control for this pin
  1085. Uint16 GPIO73:1; // 9 Pull-Up Disable control for this pin
  1086. Uint16 GPIO74:1; // 10 Pull-Up Disable control for this pin
  1087. Uint16 GPIO75:1; // 11 Pull-Up Disable control for this pin
  1088. Uint16 GPIO76:1; // 12 Pull-Up Disable control for this pin
  1089. Uint16 GPIO77:1; // 13 Pull-Up Disable control for this pin
  1090. Uint16 GPIO78:1; // 14 Pull-Up Disable control for this pin
  1091. Uint16 GPIO79:1; // 15 Pull-Up Disable control for this pin
  1092. Uint16 GPIO80:1; // 16 Pull-Up Disable control for this pin
  1093. Uint16 GPIO81:1; // 17 Pull-Up Disable control for this pin
  1094. Uint16 GPIO82:1; // 18 Pull-Up Disable control for this pin
  1095. Uint16 GPIO83:1; // 19 Pull-Up Disable control for this pin
  1096. Uint16 GPIO84:1; // 20 Pull-Up Disable control for this pin
  1097. Uint16 GPIO85:1; // 21 Pull-Up Disable control for this pin
  1098. Uint16 GPIO86:1; // 22 Pull-Up Disable control for this pin
  1099. Uint16 GPIO87:1; // 23 Pull-Up Disable control for this pin
  1100. Uint16 GPIO88:1; // 24 Pull-Up Disable control for this pin
  1101. Uint16 GPIO89:1; // 25 Pull-Up Disable control for this pin
  1102. Uint16 GPIO90:1; // 26 Pull-Up Disable control for this pin
  1103. Uint16 GPIO91:1; // 27 Pull-Up Disable control for this pin
  1104. Uint16 GPIO92:1; // 28 Pull-Up Disable control for this pin
  1105. Uint16 GPIO93:1; // 29 Pull-Up Disable control for this pin
  1106. Uint16 GPIO94:1; // 30 Pull-Up Disable control for this pin
  1107. Uint16 GPIO95:1; // 31 Pull-Up Disable control for this pin
  1108. };
  1109. union GPCPUD_REG {
  1110. Uint32 all;
  1111. struct GPCPUD_BITS bit;
  1112. };
  1113. struct GPCINV_BITS { // bits description
  1114. Uint16 GPIO64:1; // 0 Input inversion control for this pin
  1115. Uint16 GPIO65:1; // 1 Input inversion control for this pin
  1116. Uint16 GPIO66:1; // 2 Input inversion control for this pin
  1117. Uint16 GPIO67:1; // 3 Input inversion control for this pin
  1118. Uint16 GPIO68:1; // 4 Input inversion control for this pin
  1119. Uint16 GPIO69:1; // 5 Input inversion control for this pin
  1120. Uint16 GPIO70:1; // 6 Input inversion control for this pin
  1121. Uint16 GPIO71:1; // 7 Input inversion control for this pin
  1122. Uint16 GPIO72:1; // 8 Input inversion control for this pin
  1123. Uint16 GPIO73:1; // 9 Input inversion control for this pin
  1124. Uint16 GPIO74:1; // 10 Input inversion control for this pin
  1125. Uint16 GPIO75:1; // 11 Input inversion control for this pin
  1126. Uint16 GPIO76:1; // 12 Input inversion control for this pin
  1127. Uint16 GPIO77:1; // 13 Input inversion control for this pin
  1128. Uint16 GPIO78:1; // 14 Input inversion control for this pin
  1129. Uint16 GPIO79:1; // 15 Input inversion control for this pin
  1130. Uint16 GPIO80:1; // 16 Input inversion control for this pin
  1131. Uint16 GPIO81:1; // 17 Input inversion control for this pin
  1132. Uint16 GPIO82:1; // 18 Input inversion control for this pin
  1133. Uint16 GPIO83:1; // 19 Input inversion control for this pin
  1134. Uint16 GPIO84:1; // 20 Input inversion control for this pin
  1135. Uint16 GPIO85:1; // 21 Input inversion control for this pin
  1136. Uint16 GPIO86:1; // 22 Input inversion control for this pin
  1137. Uint16 GPIO87:1; // 23 Input inversion control for this pin
  1138. Uint16 GPIO88:1; // 24 Input inversion control for this pin
  1139. Uint16 GPIO89:1; // 25 Input inversion control for this pin
  1140. Uint16 GPIO90:1; // 26 Input inversion control for this pin
  1141. Uint16 GPIO91:1; // 27 Input inversion control for this pin
  1142. Uint16 GPIO92:1; // 28 Input inversion control for this pin
  1143. Uint16 GPIO93:1; // 29 Input inversion control for this pin
  1144. Uint16 GPIO94:1; // 30 Input inversion control for this pin
  1145. Uint16 GPIO95:1; // 31 Input inversion control for this pin
  1146. };
  1147. union GPCINV_REG {
  1148. Uint32 all;
  1149. struct GPCINV_BITS bit;
  1150. };
  1151. struct GPCODR_BITS { // bits description
  1152. Uint16 GPIO64:1; // 0 Outpout Open-Drain control for this pin
  1153. Uint16 GPIO65:1; // 1 Outpout Open-Drain control for this pin
  1154. Uint16 GPIO66:1; // 2 Outpout Open-Drain control for this pin
  1155. Uint16 GPIO67:1; // 3 Outpout Open-Drain control for this pin
  1156. Uint16 GPIO68:1; // 4 Outpout Open-Drain control for this pin
  1157. Uint16 GPIO69:1; // 5 Outpout Open-Drain control for this pin
  1158. Uint16 GPIO70:1; // 6 Outpout Open-Drain control for this pin
  1159. Uint16 GPIO71:1; // 7 Outpout Open-Drain control for this pin
  1160. Uint16 GPIO72:1; // 8 Outpout Open-Drain control for this pin
  1161. Uint16 GPIO73:1; // 9 Outpout Open-Drain control for this pin
  1162. Uint16 GPIO74:1; // 10 Outpout Open-Drain control for this pin
  1163. Uint16 GPIO75:1; // 11 Outpout Open-Drain control for this pin
  1164. Uint16 GPIO76:1; // 12 Outpout Open-Drain control for this pin
  1165. Uint16 GPIO77:1; // 13 Outpout Open-Drain control for this pin
  1166. Uint16 GPIO78:1; // 14 Outpout Open-Drain control for this pin
  1167. Uint16 GPIO79:1; // 15 Outpout Open-Drain control for this pin
  1168. Uint16 GPIO80:1; // 16 Outpout Open-Drain control for this pin
  1169. Uint16 GPIO81:1; // 17 Outpout Open-Drain control for this pin
  1170. Uint16 GPIO82:1; // 18 Outpout Open-Drain control for this pin
  1171. Uint16 GPIO83:1; // 19 Outpout Open-Drain control for this pin
  1172. Uint16 GPIO84:1; // 20 Outpout Open-Drain control for this pin
  1173. Uint16 GPIO85:1; // 21 Outpout Open-Drain control for this pin
  1174. Uint16 GPIO86:1; // 22 Outpout Open-Drain control for this pin
  1175. Uint16 GPIO87:1; // 23 Outpout Open-Drain control for this pin
  1176. Uint16 GPIO88:1; // 24 Outpout Open-Drain control for this pin
  1177. Uint16 GPIO89:1; // 25 Outpout Open-Drain control for this pin
  1178. Uint16 GPIO90:1; // 26 Outpout Open-Drain control for this pin
  1179. Uint16 GPIO91:1; // 27 Outpout Open-Drain control for this pin
  1180. Uint16 GPIO92:1; // 28 Outpout Open-Drain control for this pin
  1181. Uint16 GPIO93:1; // 29 Outpout Open-Drain control for this pin
  1182. Uint16 GPIO94:1; // 30 Outpout Open-Drain control for this pin
  1183. Uint16 GPIO95:1; // 31 Outpout Open-Drain control for this pin
  1184. };
  1185. union GPCODR_REG {
  1186. Uint32 all;
  1187. struct GPCODR_BITS bit;
  1188. };
  1189. struct GPCGMUX1_BITS { // bits description
  1190. Uint16 GPIO64:2; // 1:0 Defines pin-muxing selection for GPIO64
  1191. Uint16 GPIO65:2; // 3:2 Defines pin-muxing selection for GPIO65
  1192. Uint16 GPIO66:2; // 5:4 Defines pin-muxing selection for GPIO66
  1193. Uint16 GPIO67:2; // 7:6 Defines pin-muxing selection for GPIO67
  1194. Uint16 GPIO68:2; // 9:8 Defines pin-muxing selection for GPIO68
  1195. Uint16 GPIO69:2; // 11:10 Defines pin-muxing selection for GPIO69
  1196. Uint16 GPIO70:2; // 13:12 Defines pin-muxing selection for GPIO70
  1197. Uint16 GPIO71:2; // 15:14 Defines pin-muxing selection for GPIO71
  1198. Uint16 GPIO72:2; // 17:16 Defines pin-muxing selection for GPIO72
  1199. Uint16 GPIO73:2; // 19:18 Defines pin-muxing selection for GPIO73
  1200. Uint16 GPIO74:2; // 21:20 Defines pin-muxing selection for GPIO74
  1201. Uint16 GPIO75:2; // 23:22 Defines pin-muxing selection for GPIO75
  1202. Uint16 GPIO76:2; // 25:24 Defines pin-muxing selection for GPIO76
  1203. Uint16 GPIO77:2; // 27:26 Defines pin-muxing selection for GPIO77
  1204. Uint16 GPIO78:2; // 29:28 Defines pin-muxing selection for GPIO78
  1205. Uint16 GPIO79:2; // 31:30 Defines pin-muxing selection for GPIO79
  1206. };
  1207. union GPCGMUX1_REG {
  1208. Uint32 all;
  1209. struct GPCGMUX1_BITS bit;
  1210. };
  1211. struct GPCGMUX2_BITS { // bits description
  1212. Uint16 GPIO80:2; // 1:0 Defines pin-muxing selection for GPIO80
  1213. Uint16 GPIO81:2; // 3:2 Defines pin-muxing selection for GPIO81
  1214. Uint16 GPIO82:2; // 5:4 Defines pin-muxing selection for GPIO82
  1215. Uint16 GPIO83:2; // 7:6 Defines pin-muxing selection for GPIO83
  1216. Uint16 GPIO84:2; // 9:8 Defines pin-muxing selection for GPIO84
  1217. Uint16 GPIO85:2; // 11:10 Defines pin-muxing selection for GPIO85
  1218. Uint16 GPIO86:2; // 13:12 Defines pin-muxing selection for GPIO86
  1219. Uint16 GPIO87:2; // 15:14 Defines pin-muxing selection for GPIO87
  1220. Uint16 GPIO88:2; // 17:16 Defines pin-muxing selection for GPIO88
  1221. Uint16 GPIO89:2; // 19:18 Defines pin-muxing selection for GPIO89
  1222. Uint16 GPIO90:2; // 21:20 Defines pin-muxing selection for GPIO90
  1223. Uint16 GPIO91:2; // 23:22 Defines pin-muxing selection for GPIO91
  1224. Uint16 GPIO92:2; // 25:24 Defines pin-muxing selection for GPIO92
  1225. Uint16 GPIO93:2; // 27:26 Defines pin-muxing selection for GPIO93
  1226. Uint16 GPIO94:2; // 29:28 Defines pin-muxing selection for GPIO94
  1227. Uint16 GPIO95:2; // 31:30 Defines pin-muxing selection for GPIO95
  1228. };
  1229. union GPCGMUX2_REG {
  1230. Uint32 all;
  1231. struct GPCGMUX2_BITS bit;
  1232. };
  1233. struct GPCCSEL1_BITS { // bits description
  1234. Uint16 GPIO64:4; // 3:0 GPIO64 Master CPU Select
  1235. Uint16 GPIO65:4; // 7:4 GPIO65 Master CPU Select
  1236. Uint16 GPIO66:4; // 11:8 GPIO66 Master CPU Select
  1237. Uint16 GPIO67:4; // 15:12 GPIO67 Master CPU Select
  1238. Uint16 GPIO68:4; // 19:16 GPIO68 Master CPU Select
  1239. Uint16 GPIO69:4; // 23:20 GPIO69 Master CPU Select
  1240. Uint16 GPIO70:4; // 27:24 GPIO70 Master CPU Select
  1241. Uint16 GPIO71:4; // 31:28 GPIO71 Master CPU Select
  1242. };
  1243. union GPCCSEL1_REG {
  1244. Uint32 all;
  1245. struct GPCCSEL1_BITS bit;
  1246. };
  1247. struct GPCCSEL2_BITS { // bits description
  1248. Uint16 GPIO72:4; // 3:0 GPIO72 Master CPU Select
  1249. Uint16 GPIO73:4; // 7:4 GPIO73 Master CPU Select
  1250. Uint16 GPIO74:4; // 11:8 GPIO74 Master CPU Select
  1251. Uint16 GPIO75:4; // 15:12 GPIO75 Master CPU Select
  1252. Uint16 GPIO76:4; // 19:16 GPIO76 Master CPU Select
  1253. Uint16 GPIO77:4; // 23:20 GPIO77 Master CPU Select
  1254. Uint16 GPIO78:4; // 27:24 GPIO78 Master CPU Select
  1255. Uint16 GPIO79:4; // 31:28 GPIO79 Master CPU Select
  1256. };
  1257. union GPCCSEL2_REG {
  1258. Uint32 all;
  1259. struct GPCCSEL2_BITS bit;
  1260. };
  1261. struct GPCCSEL3_BITS { // bits description
  1262. Uint16 GPIO80:4; // 3:0 GPIO80 Master CPU Select
  1263. Uint16 GPIO81:4; // 7:4 GPIO81 Master CPU Select
  1264. Uint16 GPIO82:4; // 11:8 GPIO82 Master CPU Select
  1265. Uint16 GPIO83:4; // 15:12 GPIO83 Master CPU Select
  1266. Uint16 GPIO84:4; // 19:16 GPIO84 Master CPU Select
  1267. Uint16 GPIO85:4; // 23:20 GPIO85 Master CPU Select
  1268. Uint16 GPIO86:4; // 27:24 GPIO86 Master CPU Select
  1269. Uint16 GPIO87:4; // 31:28 GPIO87 Master CPU Select
  1270. };
  1271. union GPCCSEL3_REG {
  1272. Uint32 all;
  1273. struct GPCCSEL3_BITS bit;
  1274. };
  1275. struct GPCCSEL4_BITS { // bits description
  1276. Uint16 GPIO88:4; // 3:0 GPIO88 Master CPU Select
  1277. Uint16 GPIO89:4; // 7:4 GPIO89 Master CPU Select
  1278. Uint16 GPIO90:4; // 11:8 GPIO90 Master CPU Select
  1279. Uint16 GPIO91:4; // 15:12 GPIO91 Master CPU Select
  1280. Uint16 GPIO92:4; // 19:16 GPIO92 Master CPU Select
  1281. Uint16 GPIO93:4; // 23:20 GPIO93 Master CPU Select
  1282. Uint16 GPIO94:4; // 27:24 GPIO94 Master CPU Select
  1283. Uint16 GPIO95:4; // 31:28 GPIO95 Master CPU Select
  1284. };
  1285. union GPCCSEL4_REG {
  1286. Uint32 all;
  1287. struct GPCCSEL4_BITS bit;
  1288. };
  1289. struct GPCLOCK_BITS { // bits description
  1290. Uint16 GPIO64:1; // 0 Configuration Lock bit for this pin
  1291. Uint16 GPIO65:1; // 1 Configuration Lock bit for this pin
  1292. Uint16 GPIO66:1; // 2 Configuration Lock bit for this pin
  1293. Uint16 GPIO67:1; // 3 Configuration Lock bit for this pin
  1294. Uint16 GPIO68:1; // 4 Configuration Lock bit for this pin
  1295. Uint16 GPIO69:1; // 5 Configuration Lock bit for this pin
  1296. Uint16 GPIO70:1; // 6 Configuration Lock bit for this pin
  1297. Uint16 GPIO71:1; // 7 Configuration Lock bit for this pin
  1298. Uint16 GPIO72:1; // 8 Configuration Lock bit for this pin
  1299. Uint16 GPIO73:1; // 9 Configuration Lock bit for this pin
  1300. Uint16 GPIO74:1; // 10 Configuration Lock bit for this pin
  1301. Uint16 GPIO75:1; // 11 Configuration Lock bit for this pin
  1302. Uint16 GPIO76:1; // 12 Configuration Lock bit for this pin
  1303. Uint16 GPIO77:1; // 13 Configuration Lock bit for this pin
  1304. Uint16 GPIO78:1; // 14 Configuration Lock bit for this pin
  1305. Uint16 GPIO79:1; // 15 Configuration Lock bit for this pin
  1306. Uint16 GPIO80:1; // 16 Configuration Lock bit for this pin
  1307. Uint16 GPIO81:1; // 17 Configuration Lock bit for this pin
  1308. Uint16 GPIO82:1; // 18 Configuration Lock bit for this pin
  1309. Uint16 GPIO83:1; // 19 Configuration Lock bit for this pin
  1310. Uint16 GPIO84:1; // 20 Configuration Lock bit for this pin
  1311. Uint16 GPIO85:1; // 21 Configuration Lock bit for this pin
  1312. Uint16 GPIO86:1; // 22 Configuration Lock bit for this pin
  1313. Uint16 GPIO87:1; // 23 Configuration Lock bit for this pin
  1314. Uint16 GPIO88:1; // 24 Configuration Lock bit for this pin
  1315. Uint16 GPIO89:1; // 25 Configuration Lock bit for this pin
  1316. Uint16 GPIO90:1; // 26 Configuration Lock bit for this pin
  1317. Uint16 GPIO91:1; // 27 Configuration Lock bit for this pin
  1318. Uint16 GPIO92:1; // 28 Configuration Lock bit for this pin
  1319. Uint16 GPIO93:1; // 29 Configuration Lock bit for this pin
  1320. Uint16 GPIO94:1; // 30 Configuration Lock bit for this pin
  1321. Uint16 GPIO95:1; // 31 Configuration Lock bit for this pin
  1322. };
  1323. union GPCLOCK_REG {
  1324. Uint32 all;
  1325. struct GPCLOCK_BITS bit;
  1326. };
  1327. struct GPCCR_BITS { // bits description
  1328. Uint16 GPIO64:1; // 0 Configuration lock commit bit for this pin
  1329. Uint16 GPIO65:1; // 1 Configuration lock commit bit for this pin
  1330. Uint16 GPIO66:1; // 2 Configuration lock commit bit for this pin
  1331. Uint16 GPIO67:1; // 3 Configuration lock commit bit for this pin
  1332. Uint16 GPIO68:1; // 4 Configuration lock commit bit for this pin
  1333. Uint16 GPIO69:1; // 5 Configuration lock commit bit for this pin
  1334. Uint16 GPIO70:1; // 6 Configuration lock commit bit for this pin
  1335. Uint16 GPIO71:1; // 7 Configuration lock commit bit for this pin
  1336. Uint16 GPIO72:1; // 8 Configuration lock commit bit for this pin
  1337. Uint16 GPIO73:1; // 9 Configuration lock commit bit for this pin
  1338. Uint16 GPIO74:1; // 10 Configuration lock commit bit for this pin
  1339. Uint16 GPIO75:1; // 11 Configuration lock commit bit for this pin
  1340. Uint16 GPIO76:1; // 12 Configuration lock commit bit for this pin
  1341. Uint16 GPIO77:1; // 13 Configuration lock commit bit for this pin
  1342. Uint16 GPIO78:1; // 14 Configuration lock commit bit for this pin
  1343. Uint16 GPIO79:1; // 15 Configuration lock commit bit for this pin
  1344. Uint16 GPIO80:1; // 16 Configuration lock commit bit for this pin
  1345. Uint16 GPIO81:1; // 17 Configuration lock commit bit for this pin
  1346. Uint16 GPIO82:1; // 18 Configuration lock commit bit for this pin
  1347. Uint16 GPIO83:1; // 19 Configuration lock commit bit for this pin
  1348. Uint16 GPIO84:1; // 20 Configuration lock commit bit for this pin
  1349. Uint16 GPIO85:1; // 21 Configuration lock commit bit for this pin
  1350. Uint16 GPIO86:1; // 22 Configuration lock commit bit for this pin
  1351. Uint16 GPIO87:1; // 23 Configuration lock commit bit for this pin
  1352. Uint16 GPIO88:1; // 24 Configuration lock commit bit for this pin
  1353. Uint16 GPIO89:1; // 25 Configuration lock commit bit for this pin
  1354. Uint16 GPIO90:1; // 26 Configuration lock commit bit for this pin
  1355. Uint16 GPIO91:1; // 27 Configuration lock commit bit for this pin
  1356. Uint16 GPIO92:1; // 28 Configuration lock commit bit for this pin
  1357. Uint16 GPIO93:1; // 29 Configuration lock commit bit for this pin
  1358. Uint16 GPIO94:1; // 30 Configuration lock commit bit for this pin
  1359. Uint16 GPIO95:1; // 31 Configuration lock commit bit for this pin
  1360. };
  1361. union GPCCR_REG {
  1362. Uint32 all;
  1363. struct GPCCR_BITS bit;
  1364. };
  1365. struct GPDCTRL_BITS { // bits description
  1366. Uint16 QUALPRD0:8; // 7:0 Qualification sampling period for GPIO96 to GPIO103
  1367. Uint16 QUALPRD1:8; // 15:8 Qualification sampling period for GPIO104 to GPIO111
  1368. Uint16 QUALPRD2:8; // 23:16 Qualification sampling period for GPIO112 to GPIO119
  1369. Uint16 QUALPRD3:8; // 31:24 Qualification sampling period for GPIO120 to GPIO127
  1370. };
  1371. union GPDCTRL_REG {
  1372. Uint32 all;
  1373. struct GPDCTRL_BITS bit;
  1374. };
  1375. struct GPDQSEL1_BITS { // bits description
  1376. Uint16 GPIO96:2; // 1:0 Select input qualification type for GPIO96
  1377. Uint16 GPIO97:2; // 3:2 Select input qualification type for GPIO97
  1378. Uint16 GPIO98:2; // 5:4 Select input qualification type for GPIO98
  1379. Uint16 GPIO99:2; // 7:6 Select input qualification type for GPIO99
  1380. Uint16 GPIO100:2; // 9:8 Select input qualification type for GPIO100
  1381. Uint16 GPIO101:2; // 11:10 Select input qualification type for GPIO101
  1382. Uint16 GPIO102:2; // 13:12 Select input qualification type for GPIO102
  1383. Uint16 GPIO103:2; // 15:14 Select input qualification type for GPIO103
  1384. Uint16 GPIO104:2; // 17:16 Select input qualification type for GPIO104
  1385. Uint16 GPIO105:2; // 19:18 Select input qualification type for GPIO105
  1386. Uint16 GPIO106:2; // 21:20 Select input qualification type for GPIO106
  1387. Uint16 GPIO107:2; // 23:22 Select input qualification type for GPIO107
  1388. Uint16 GPIO108:2; // 25:24 Select input qualification type for GPIO108
  1389. Uint16 GPIO109:2; // 27:26 Select input qualification type for GPIO109
  1390. Uint16 GPIO110:2; // 29:28 Select input qualification type for GPIO110
  1391. Uint16 GPIO111:2; // 31:30 Select input qualification type for GPIO111
  1392. };
  1393. union GPDQSEL1_REG {
  1394. Uint32 all;
  1395. struct GPDQSEL1_BITS bit;
  1396. };
  1397. struct GPDQSEL2_BITS { // bits description
  1398. Uint16 GPIO112:2; // 1:0 Select input qualification type for GPIO112
  1399. Uint16 GPIO113:2; // 3:2 Select input qualification type for GPIO113
  1400. Uint16 GPIO114:2; // 5:4 Select input qualification type for GPIO114
  1401. Uint16 GPIO115:2; // 7:6 Select input qualification type for GPIO115
  1402. Uint16 GPIO116:2; // 9:8 Select input qualification type for GPIO116
  1403. Uint16 GPIO117:2; // 11:10 Select input qualification type for GPIO117
  1404. Uint16 GPIO118:2; // 13:12 Select input qualification type for GPIO118
  1405. Uint16 GPIO119:2; // 15:14 Select input qualification type for GPIO119
  1406. Uint16 GPIO120:2; // 17:16 Select input qualification type for GPIO120
  1407. Uint16 GPIO121:2; // 19:18 Select input qualification type for GPIO121
  1408. Uint16 GPIO122:2; // 21:20 Select input qualification type for GPIO122
  1409. Uint16 GPIO123:2; // 23:22 Select input qualification type for GPIO123
  1410. Uint16 GPIO124:2; // 25:24 Select input qualification type for GPIO124
  1411. Uint16 GPIO125:2; // 27:26 Select input qualification type for GPIO125
  1412. Uint16 GPIO126:2; // 29:28 Select input qualification type for GPIO126
  1413. Uint16 GPIO127:2; // 31:30 Select input qualification type for GPIO127
  1414. };
  1415. union GPDQSEL2_REG {
  1416. Uint32 all;
  1417. struct GPDQSEL2_BITS bit;
  1418. };
  1419. struct GPDMUX1_BITS { // bits description
  1420. Uint16 GPIO96:2; // 1:0 Defines pin-muxing selection for GPIO96
  1421. Uint16 GPIO97:2; // 3:2 Defines pin-muxing selection for GPIO97
  1422. Uint16 GPIO98:2; // 5:4 Defines pin-muxing selection for GPIO98
  1423. Uint16 GPIO99:2; // 7:6 Defines pin-muxing selection for GPIO99
  1424. Uint16 GPIO100:2; // 9:8 Defines pin-muxing selection for GPIO100
  1425. Uint16 GPIO101:2; // 11:10 Defines pin-muxing selection for GPIO101
  1426. Uint16 GPIO102:2; // 13:12 Defines pin-muxing selection for GPIO102
  1427. Uint16 GPIO103:2; // 15:14 Defines pin-muxing selection for GPIO103
  1428. Uint16 GPIO104:2; // 17:16 Defines pin-muxing selection for GPIO104
  1429. Uint16 GPIO105:2; // 19:18 Defines pin-muxing selection for GPIO105
  1430. Uint16 GPIO106:2; // 21:20 Defines pin-muxing selection for GPIO106
  1431. Uint16 GPIO107:2; // 23:22 Defines pin-muxing selection for GPIO107
  1432. Uint16 GPIO108:2; // 25:24 Defines pin-muxing selection for GPIO108
  1433. Uint16 GPIO109:2; // 27:26 Defines pin-muxing selection for GPIO109
  1434. Uint16 GPIO110:2; // 29:28 Defines pin-muxing selection for GPIO110
  1435. Uint16 GPIO111:2; // 31:30 Defines pin-muxing selection for GPIO111
  1436. };
  1437. union GPDMUX1_REG {
  1438. Uint32 all;
  1439. struct GPDMUX1_BITS bit;
  1440. };
  1441. struct GPDMUX2_BITS { // bits description
  1442. Uint16 GPIO112:2; // 1:0 Defines pin-muxing selection for GPIO112
  1443. Uint16 GPIO113:2; // 3:2 Defines pin-muxing selection for GPIO113
  1444. Uint16 GPIO114:2; // 5:4 Defines pin-muxing selection for GPIO114
  1445. Uint16 GPIO115:2; // 7:6 Defines pin-muxing selection for GPIO115
  1446. Uint16 GPIO116:2; // 9:8 Defines pin-muxing selection for GPIO116
  1447. Uint16 GPIO117:2; // 11:10 Defines pin-muxing selection for GPIO117
  1448. Uint16 GPIO118:2; // 13:12 Defines pin-muxing selection for GPIO118
  1449. Uint16 GPIO119:2; // 15:14 Defines pin-muxing selection for GPIO119
  1450. Uint16 GPIO120:2; // 17:16 Defines pin-muxing selection for GPIO120
  1451. Uint16 GPIO121:2; // 19:18 Defines pin-muxing selection for GPIO121
  1452. Uint16 GPIO122:2; // 21:20 Defines pin-muxing selection for GPIO122
  1453. Uint16 GPIO123:2; // 23:22 Defines pin-muxing selection for GPIO123
  1454. Uint16 GPIO124:2; // 25:24 Defines pin-muxing selection for GPIO124
  1455. Uint16 GPIO125:2; // 27:26 Defines pin-muxing selection for GPIO125
  1456. Uint16 GPIO126:2; // 29:28 Defines pin-muxing selection for GPIO126
  1457. Uint16 GPIO127:2; // 31:30 Defines pin-muxing selection for GPIO127
  1458. };
  1459. union GPDMUX2_REG {
  1460. Uint32 all;
  1461. struct GPDMUX2_BITS bit;
  1462. };
  1463. struct GPDDIR_BITS { // bits description
  1464. Uint16 GPIO96:1; // 0 Defines direction for this pin in GPIO mode
  1465. Uint16 GPIO97:1; // 1 Defines direction for this pin in GPIO mode
  1466. Uint16 GPIO98:1; // 2 Defines direction for this pin in GPIO mode
  1467. Uint16 GPIO99:1; // 3 Defines direction for this pin in GPIO mode
  1468. Uint16 GPIO100:1; // 4 Defines direction for this pin in GPIO mode
  1469. Uint16 GPIO101:1; // 5 Defines direction for this pin in GPIO mode
  1470. Uint16 GPIO102:1; // 6 Defines direction for this pin in GPIO mode
  1471. Uint16 GPIO103:1; // 7 Defines direction for this pin in GPIO mode
  1472. Uint16 GPIO104:1; // 8 Defines direction for this pin in GPIO mode
  1473. Uint16 GPIO105:1; // 9 Defines direction for this pin in GPIO mode
  1474. Uint16 GPIO106:1; // 10 Defines direction for this pin in GPIO mode
  1475. Uint16 GPIO107:1; // 11 Defines direction for this pin in GPIO mode
  1476. Uint16 GPIO108:1; // 12 Defines direction for this pin in GPIO mode
  1477. Uint16 GPIO109:1; // 13 Defines direction for this pin in GPIO mode
  1478. Uint16 GPIO110:1; // 14 Defines direction for this pin in GPIO mode
  1479. Uint16 GPIO111:1; // 15 Defines direction for this pin in GPIO mode
  1480. Uint16 GPIO112:1; // 16 Defines direction for this pin in GPIO mode
  1481. Uint16 GPIO113:1; // 17 Defines direction for this pin in GPIO mode
  1482. Uint16 GPIO114:1; // 18 Defines direction for this pin in GPIO mode
  1483. Uint16 GPIO115:1; // 19 Defines direction for this pin in GPIO mode
  1484. Uint16 GPIO116:1; // 20 Defines direction for this pin in GPIO mode
  1485. Uint16 GPIO117:1; // 21 Defines direction for this pin in GPIO mode
  1486. Uint16 GPIO118:1; // 22 Defines direction for this pin in GPIO mode
  1487. Uint16 GPIO119:1; // 23 Defines direction for this pin in GPIO mode
  1488. Uint16 GPIO120:1; // 24 Defines direction for this pin in GPIO mode
  1489. Uint16 GPIO121:1; // 25 Defines direction for this pin in GPIO mode
  1490. Uint16 GPIO122:1; // 26 Defines direction for this pin in GPIO mode
  1491. Uint16 GPIO123:1; // 27 Defines direction for this pin in GPIO mode
  1492. Uint16 GPIO124:1; // 28 Defines direction for this pin in GPIO mode
  1493. Uint16 GPIO125:1; // 29 Defines direction for this pin in GPIO mode
  1494. Uint16 GPIO126:1; // 30 Defines direction for this pin in GPIO mode
  1495. Uint16 GPIO127:1; // 31 Defines direction for this pin in GPIO mode
  1496. };
  1497. union GPDDIR_REG {
  1498. Uint32 all;
  1499. struct GPDDIR_BITS bit;
  1500. };
  1501. struct GPDPUD_BITS { // bits description
  1502. Uint16 GPIO96:1; // 0 Pull-Up Disable control for this pin
  1503. Uint16 GPIO97:1; // 1 Pull-Up Disable control for this pin
  1504. Uint16 GPIO98:1; // 2 Pull-Up Disable control for this pin
  1505. Uint16 GPIO99:1; // 3 Pull-Up Disable control for this pin
  1506. Uint16 GPIO100:1; // 4 Pull-Up Disable control for this pin
  1507. Uint16 GPIO101:1; // 5 Pull-Up Disable control for this pin
  1508. Uint16 GPIO102:1; // 6 Pull-Up Disable control for this pin
  1509. Uint16 GPIO103:1; // 7 Pull-Up Disable control for this pin
  1510. Uint16 GPIO104:1; // 8 Pull-Up Disable control for this pin
  1511. Uint16 GPIO105:1; // 9 Pull-Up Disable control for this pin
  1512. Uint16 GPIO106:1; // 10 Pull-Up Disable control for this pin
  1513. Uint16 GPIO107:1; // 11 Pull-Up Disable control for this pin
  1514. Uint16 GPIO108:1; // 12 Pull-Up Disable control for this pin
  1515. Uint16 GPIO109:1; // 13 Pull-Up Disable control for this pin
  1516. Uint16 GPIO110:1; // 14 Pull-Up Disable control for this pin
  1517. Uint16 GPIO111:1; // 15 Pull-Up Disable control for this pin
  1518. Uint16 GPIO112:1; // 16 Pull-Up Disable control for this pin
  1519. Uint16 GPIO113:1; // 17 Pull-Up Disable control for this pin
  1520. Uint16 GPIO114:1; // 18 Pull-Up Disable control for this pin
  1521. Uint16 GPIO115:1; // 19 Pull-Up Disable control for this pin
  1522. Uint16 GPIO116:1; // 20 Pull-Up Disable control for this pin
  1523. Uint16 GPIO117:1; // 21 Pull-Up Disable control for this pin
  1524. Uint16 GPIO118:1; // 22 Pull-Up Disable control for this pin
  1525. Uint16 GPIO119:1; // 23 Pull-Up Disable control for this pin
  1526. Uint16 GPIO120:1; // 24 Pull-Up Disable control for this pin
  1527. Uint16 GPIO121:1; // 25 Pull-Up Disable control for this pin
  1528. Uint16 GPIO122:1; // 26 Pull-Up Disable control for this pin
  1529. Uint16 GPIO123:1; // 27 Pull-Up Disable control for this pin
  1530. Uint16 GPIO124:1; // 28 Pull-Up Disable control for this pin
  1531. Uint16 GPIO125:1; // 29 Pull-Up Disable control for this pin
  1532. Uint16 GPIO126:1; // 30 Pull-Up Disable control for this pin
  1533. Uint16 GPIO127:1; // 31 Pull-Up Disable control for this pin
  1534. };
  1535. union GPDPUD_REG {
  1536. Uint32 all;
  1537. struct GPDPUD_BITS bit;
  1538. };
  1539. struct GPDINV_BITS { // bits description
  1540. Uint16 GPIO96:1; // 0 Input inversion control for this pin
  1541. Uint16 GPIO97:1; // 1 Input inversion control for this pin
  1542. Uint16 GPIO98:1; // 2 Input inversion control for this pin
  1543. Uint16 GPIO99:1; // 3 Input inversion control for this pin
  1544. Uint16 GPIO100:1; // 4 Input inversion control for this pin
  1545. Uint16 GPIO101:1; // 5 Input inversion control for this pin
  1546. Uint16 GPIO102:1; // 6 Input inversion control for this pin
  1547. Uint16 GPIO103:1; // 7 Input inversion control for this pin
  1548. Uint16 GPIO104:1; // 8 Input inversion control for this pin
  1549. Uint16 GPIO105:1; // 9 Input inversion control for this pin
  1550. Uint16 GPIO106:1; // 10 Input inversion control for this pin
  1551. Uint16 GPIO107:1; // 11 Input inversion control for this pin
  1552. Uint16 GPIO108:1; // 12 Input inversion control for this pin
  1553. Uint16 GPIO109:1; // 13 Input inversion control for this pin
  1554. Uint16 GPIO110:1; // 14 Input inversion control for this pin
  1555. Uint16 GPIO111:1; // 15 Input inversion control for this pin
  1556. Uint16 GPIO112:1; // 16 Input inversion control for this pin
  1557. Uint16 GPIO113:1; // 17 Input inversion control for this pin
  1558. Uint16 GPIO114:1; // 18 Input inversion control for this pin
  1559. Uint16 GPIO115:1; // 19 Input inversion control for this pin
  1560. Uint16 GPIO116:1; // 20 Input inversion control for this pin
  1561. Uint16 GPIO117:1; // 21 Input inversion control for this pin
  1562. Uint16 GPIO118:1; // 22 Input inversion control for this pin
  1563. Uint16 GPIO119:1; // 23 Input inversion control for this pin
  1564. Uint16 GPIO120:1; // 24 Input inversion control for this pin
  1565. Uint16 GPIO121:1; // 25 Input inversion control for this pin
  1566. Uint16 GPIO122:1; // 26 Input inversion control for this pin
  1567. Uint16 GPIO123:1; // 27 Input inversion control for this pin
  1568. Uint16 GPIO124:1; // 28 Input inversion control for this pin
  1569. Uint16 GPIO125:1; // 29 Input inversion control for this pin
  1570. Uint16 GPIO126:1; // 30 Input inversion control for this pin
  1571. Uint16 GPIO127:1; // 31 Input inversion control for this pin
  1572. };
  1573. union GPDINV_REG {
  1574. Uint32 all;
  1575. struct GPDINV_BITS bit;
  1576. };
  1577. struct GPDODR_BITS { // bits description
  1578. Uint16 GPIO96:1; // 0 Outpout Open-Drain control for this pin
  1579. Uint16 GPIO97:1; // 1 Outpout Open-Drain control for this pin
  1580. Uint16 GPIO98:1; // 2 Outpout Open-Drain control for this pin
  1581. Uint16 GPIO99:1; // 3 Outpout Open-Drain control for this pin
  1582. Uint16 GPIO100:1; // 4 Outpout Open-Drain control for this pin
  1583. Uint16 GPIO101:1; // 5 Outpout Open-Drain control for this pin
  1584. Uint16 GPIO102:1; // 6 Outpout Open-Drain control for this pin
  1585. Uint16 GPIO103:1; // 7 Outpout Open-Drain control for this pin
  1586. Uint16 GPIO104:1; // 8 Outpout Open-Drain control for this pin
  1587. Uint16 GPIO105:1; // 9 Outpout Open-Drain control for this pin
  1588. Uint16 GPIO106:1; // 10 Outpout Open-Drain control for this pin
  1589. Uint16 GPIO107:1; // 11 Outpout Open-Drain control for this pin
  1590. Uint16 GPIO108:1; // 12 Outpout Open-Drain control for this pin
  1591. Uint16 GPIO109:1; // 13 Outpout Open-Drain control for this pin
  1592. Uint16 GPIO110:1; // 14 Outpout Open-Drain control for this pin
  1593. Uint16 GPIO111:1; // 15 Outpout Open-Drain control for this pin
  1594. Uint16 GPIO112:1; // 16 Outpout Open-Drain control for this pin
  1595. Uint16 GPIO113:1; // 17 Outpout Open-Drain control for this pin
  1596. Uint16 GPIO114:1; // 18 Outpout Open-Drain control for this pin
  1597. Uint16 GPIO115:1; // 19 Outpout Open-Drain control for this pin
  1598. Uint16 GPIO116:1; // 20 Outpout Open-Drain control for this pin
  1599. Uint16 GPIO117:1; // 21 Outpout Open-Drain control for this pin
  1600. Uint16 GPIO118:1; // 22 Outpout Open-Drain control for this pin
  1601. Uint16 GPIO119:1; // 23 Outpout Open-Drain control for this pin
  1602. Uint16 GPIO120:1; // 24 Outpout Open-Drain control for this pin
  1603. Uint16 GPIO121:1; // 25 Outpout Open-Drain control for this pin
  1604. Uint16 GPIO122:1; // 26 Outpout Open-Drain control for this pin
  1605. Uint16 GPIO123:1; // 27 Outpout Open-Drain control for this pin
  1606. Uint16 GPIO124:1; // 28 Outpout Open-Drain control for this pin
  1607. Uint16 GPIO125:1; // 29 Outpout Open-Drain control for this pin
  1608. Uint16 GPIO126:1; // 30 Outpout Open-Drain control for this pin
  1609. Uint16 GPIO127:1; // 31 Outpout Open-Drain control for this pin
  1610. };
  1611. union GPDODR_REG {
  1612. Uint32 all;
  1613. struct GPDODR_BITS bit;
  1614. };
  1615. struct GPDGMUX1_BITS { // bits description
  1616. Uint16 GPIO96:2; // 1:0 Defines pin-muxing selection for GPIO96
  1617. Uint16 GPIO97:2; // 3:2 Defines pin-muxing selection for GPIO97
  1618. Uint16 GPIO98:2; // 5:4 Defines pin-muxing selection for GPIO98
  1619. Uint16 GPIO99:2; // 7:6 Defines pin-muxing selection for GPIO99
  1620. Uint16 GPIO100:2; // 9:8 Defines pin-muxing selection for GPIO100
  1621. Uint16 GPIO101:2; // 11:10 Defines pin-muxing selection for GPIO101
  1622. Uint16 GPIO102:2; // 13:12 Defines pin-muxing selection for GPIO102
  1623. Uint16 GPIO103:2; // 15:14 Defines pin-muxing selection for GPIO103
  1624. Uint16 GPIO104:2; // 17:16 Defines pin-muxing selection for GPIO104
  1625. Uint16 GPIO105:2; // 19:18 Defines pin-muxing selection for GPIO105
  1626. Uint16 GPIO106:2; // 21:20 Defines pin-muxing selection for GPIO106
  1627. Uint16 GPIO107:2; // 23:22 Defines pin-muxing selection for GPIO107
  1628. Uint16 GPIO108:2; // 25:24 Defines pin-muxing selection for GPIO108
  1629. Uint16 GPIO109:2; // 27:26 Defines pin-muxing selection for GPIO109
  1630. Uint16 GPIO110:2; // 29:28 Defines pin-muxing selection for GPIO110
  1631. Uint16 GPIO111:2; // 31:30 Defines pin-muxing selection for GPIO111
  1632. };
  1633. union GPDGMUX1_REG {
  1634. Uint32 all;
  1635. struct GPDGMUX1_BITS bit;
  1636. };
  1637. struct GPDGMUX2_BITS { // bits description
  1638. Uint16 GPIO112:2; // 1:0 Defines pin-muxing selection for GPIO112
  1639. Uint16 GPIO113:2; // 3:2 Defines pin-muxing selection for GPIO113
  1640. Uint16 GPIO114:2; // 5:4 Defines pin-muxing selection for GPIO114
  1641. Uint16 GPIO115:2; // 7:6 Defines pin-muxing selection for GPIO115
  1642. Uint16 GPIO116:2; // 9:8 Defines pin-muxing selection for GPIO116
  1643. Uint16 GPIO117:2; // 11:10 Defines pin-muxing selection for GPIO117
  1644. Uint16 GPIO118:2; // 13:12 Defines pin-muxing selection for GPIO118
  1645. Uint16 GPIO119:2; // 15:14 Defines pin-muxing selection for GPIO119
  1646. Uint16 GPIO120:2; // 17:16 Defines pin-muxing selection for GPIO120
  1647. Uint16 GPIO121:2; // 19:18 Defines pin-muxing selection for GPIO121
  1648. Uint16 GPIO122:2; // 21:20 Defines pin-muxing selection for GPIO122
  1649. Uint16 GPIO123:2; // 23:22 Defines pin-muxing selection for GPIO123
  1650. Uint16 GPIO124:2; // 25:24 Defines pin-muxing selection for GPIO124
  1651. Uint16 GPIO125:2; // 27:26 Defines pin-muxing selection for GPIO125
  1652. Uint16 GPIO126:2; // 29:28 Defines pin-muxing selection for GPIO126
  1653. Uint16 GPIO127:2; // 31:30 Defines pin-muxing selection for GPIO127
  1654. };
  1655. union GPDGMUX2_REG {
  1656. Uint32 all;
  1657. struct GPDGMUX2_BITS bit;
  1658. };
  1659. struct GPDCSEL1_BITS { // bits description
  1660. Uint16 GPIO96:4; // 3:0 GPIO96 Master CPU Select
  1661. Uint16 GPIO97:4; // 7:4 GPIO97 Master CPU Select
  1662. Uint16 GPIO98:4; // 11:8 GPIO98 Master CPU Select
  1663. Uint16 GPIO99:4; // 15:12 GPIO99 Master CPU Select
  1664. Uint16 GPIO100:4; // 19:16 GPIO100 Master CPU Select
  1665. Uint16 GPIO101:4; // 23:20 GPIO101 Master CPU Select
  1666. Uint16 GPIO102:4; // 27:24 GPIO102 Master CPU Select
  1667. Uint16 GPIO103:4; // 31:28 GPIO103 Master CPU Select
  1668. };
  1669. union GPDCSEL1_REG {
  1670. Uint32 all;
  1671. struct GPDCSEL1_BITS bit;
  1672. };
  1673. struct GPDCSEL2_BITS { // bits description
  1674. Uint16 GPIO104:4; // 3:0 GPIO104 Master CPU Select
  1675. Uint16 GPIO105:4; // 7:4 GPIO105 Master CPU Select
  1676. Uint16 GPIO106:4; // 11:8 GPIO106 Master CPU Select
  1677. Uint16 GPIO107:4; // 15:12 GPIO107 Master CPU Select
  1678. Uint16 GPIO108:4; // 19:16 GPIO108 Master CPU Select
  1679. Uint16 GPIO109:4; // 23:20 GPIO109 Master CPU Select
  1680. Uint16 GPIO110:4; // 27:24 GPIO110 Master CPU Select
  1681. Uint16 GPIO111:4; // 31:28 GPIO111 Master CPU Select
  1682. };
  1683. union GPDCSEL2_REG {
  1684. Uint32 all;
  1685. struct GPDCSEL2_BITS bit;
  1686. };
  1687. struct GPDCSEL3_BITS { // bits description
  1688. Uint16 GPIO112:4; // 3:0 GPIO112 Master CPU Select
  1689. Uint16 GPIO113:4; // 7:4 GPIO113 Master CPU Select
  1690. Uint16 GPIO114:4; // 11:8 GPIO114 Master CPU Select
  1691. Uint16 GPIO115:4; // 15:12 GPIO115 Master CPU Select
  1692. Uint16 GPIO116:4; // 19:16 GPIO116 Master CPU Select
  1693. Uint16 GPIO117:4; // 23:20 GPIO117 Master CPU Select
  1694. Uint16 GPIO118:4; // 27:24 GPIO118 Master CPU Select
  1695. Uint16 GPIO119:4; // 31:28 GPIO119 Master CPU Select
  1696. };
  1697. union GPDCSEL3_REG {
  1698. Uint32 all;
  1699. struct GPDCSEL3_BITS bit;
  1700. };
  1701. struct GPDCSEL4_BITS { // bits description
  1702. Uint16 GPIO120:4; // 3:0 GPIO120 Master CPU Select
  1703. Uint16 GPIO121:4; // 7:4 GPIO121 Master CPU Select
  1704. Uint16 GPIO122:4; // 11:8 GPIO122 Master CPU Select
  1705. Uint16 GPIO123:4; // 15:12 GPIO123 Master CPU Select
  1706. Uint16 GPIO124:4; // 19:16 GPIO124 Master CPU Select
  1707. Uint16 GPIO125:4; // 23:20 GPIO125 Master CPU Select
  1708. Uint16 GPIO126:4; // 27:24 GPIO126 Master CPU Select
  1709. Uint16 GPIO127:4; // 31:28 GPIO127 Master CPU Select
  1710. };
  1711. union GPDCSEL4_REG {
  1712. Uint32 all;
  1713. struct GPDCSEL4_BITS bit;
  1714. };
  1715. struct GPDLOCK_BITS { // bits description
  1716. Uint16 GPIO96:1; // 0 Configuration Lock bit for this pin
  1717. Uint16 GPIO97:1; // 1 Configuration Lock bit for this pin
  1718. Uint16 GPIO98:1; // 2 Configuration Lock bit for this pin
  1719. Uint16 GPIO99:1; // 3 Configuration Lock bit for this pin
  1720. Uint16 GPIO100:1; // 4 Configuration Lock bit for this pin
  1721. Uint16 GPIO101:1; // 5 Configuration Lock bit for this pin
  1722. Uint16 GPIO102:1; // 6 Configuration Lock bit for this pin
  1723. Uint16 GPIO103:1; // 7 Configuration Lock bit for this pin
  1724. Uint16 GPIO104:1; // 8 Configuration Lock bit for this pin
  1725. Uint16 GPIO105:1; // 9 Configuration Lock bit for this pin
  1726. Uint16 GPIO106:1; // 10 Configuration Lock bit for this pin
  1727. Uint16 GPIO107:1; // 11 Configuration Lock bit for this pin
  1728. Uint16 GPIO108:1; // 12 Configuration Lock bit for this pin
  1729. Uint16 GPIO109:1; // 13 Configuration Lock bit for this pin
  1730. Uint16 GPIO110:1; // 14 Configuration Lock bit for this pin
  1731. Uint16 GPIO111:1; // 15 Configuration Lock bit for this pin
  1732. Uint16 GPIO112:1; // 16 Configuration Lock bit for this pin
  1733. Uint16 GPIO113:1; // 17 Configuration Lock bit for this pin
  1734. Uint16 GPIO114:1; // 18 Configuration Lock bit for this pin
  1735. Uint16 GPIO115:1; // 19 Configuration Lock bit for this pin
  1736. Uint16 GPIO116:1; // 20 Configuration Lock bit for this pin
  1737. Uint16 GPIO117:1; // 21 Configuration Lock bit for this pin
  1738. Uint16 GPIO118:1; // 22 Configuration Lock bit for this pin
  1739. Uint16 GPIO119:1; // 23 Configuration Lock bit for this pin
  1740. Uint16 GPIO120:1; // 24 Configuration Lock bit for this pin
  1741. Uint16 GPIO121:1; // 25 Configuration Lock bit for this pin
  1742. Uint16 GPIO122:1; // 26 Configuration Lock bit for this pin
  1743. Uint16 GPIO123:1; // 27 Configuration Lock bit for this pin
  1744. Uint16 GPIO124:1; // 28 Configuration Lock bit for this pin
  1745. Uint16 GPIO125:1; // 29 Configuration Lock bit for this pin
  1746. Uint16 GPIO126:1; // 30 Configuration Lock bit for this pin
  1747. Uint16 GPIO127:1; // 31 Configuration Lock bit for this pin
  1748. };
  1749. union GPDLOCK_REG {
  1750. Uint32 all;
  1751. struct GPDLOCK_BITS bit;
  1752. };
  1753. struct GPDCR_BITS { // bits description
  1754. Uint16 GPIO96:1; // 0 Configuration lock commit bit for this pin
  1755. Uint16 GPIO97:1; // 1 Configuration lock commit bit for this pin
  1756. Uint16 GPIO98:1; // 2 Configuration lock commit bit for this pin
  1757. Uint16 GPIO99:1; // 3 Configuration lock commit bit for this pin
  1758. Uint16 GPIO100:1; // 4 Configuration lock commit bit for this pin
  1759. Uint16 GPIO101:1; // 5 Configuration lock commit bit for this pin
  1760. Uint16 GPIO102:1; // 6 Configuration lock commit bit for this pin
  1761. Uint16 GPIO103:1; // 7 Configuration lock commit bit for this pin
  1762. Uint16 GPIO104:1; // 8 Configuration lock commit bit for this pin
  1763. Uint16 GPIO105:1; // 9 Configuration lock commit bit for this pin
  1764. Uint16 GPIO106:1; // 10 Configuration lock commit bit for this pin
  1765. Uint16 GPIO107:1; // 11 Configuration lock commit bit for this pin
  1766. Uint16 GPIO108:1; // 12 Configuration lock commit bit for this pin
  1767. Uint16 GPIO109:1; // 13 Configuration lock commit bit for this pin
  1768. Uint16 GPIO110:1; // 14 Configuration lock commit bit for this pin
  1769. Uint16 GPIO111:1; // 15 Configuration lock commit bit for this pin
  1770. Uint16 GPIO112:1; // 16 Configuration lock commit bit for this pin
  1771. Uint16 GPIO113:1; // 17 Configuration lock commit bit for this pin
  1772. Uint16 GPIO114:1; // 18 Configuration lock commit bit for this pin
  1773. Uint16 GPIO115:1; // 19 Configuration lock commit bit for this pin
  1774. Uint16 GPIO116:1; // 20 Configuration lock commit bit for this pin
  1775. Uint16 GPIO117:1; // 21 Configuration lock commit bit for this pin
  1776. Uint16 GPIO118:1; // 22 Configuration lock commit bit for this pin
  1777. Uint16 GPIO119:1; // 23 Configuration lock commit bit for this pin
  1778. Uint16 GPIO120:1; // 24 Configuration lock commit bit for this pin
  1779. Uint16 GPIO121:1; // 25 Configuration lock commit bit for this pin
  1780. Uint16 GPIO122:1; // 26 Configuration lock commit bit for this pin
  1781. Uint16 GPIO123:1; // 27 Configuration lock commit bit for this pin
  1782. Uint16 GPIO124:1; // 28 Configuration lock commit bit for this pin
  1783. Uint16 GPIO125:1; // 29 Configuration lock commit bit for this pin
  1784. Uint16 GPIO126:1; // 30 Configuration lock commit bit for this pin
  1785. Uint16 GPIO127:1; // 31 Configuration lock commit bit for this pin
  1786. };
  1787. union GPDCR_REG {
  1788. Uint32 all;
  1789. struct GPDCR_BITS bit;
  1790. };
  1791. struct GPECTRL_BITS { // bits description
  1792. Uint16 QUALPRD0:8; // 7:0 Qualification sampling period for GPIO128 to GPIO135
  1793. Uint16 QUALPRD1:8; // 15:8 Qualification sampling period for GPIO136 to GPIO143
  1794. Uint16 QUALPRD2:8; // 23:16 Qualification sampling period for GPIO144 to GPIO151
  1795. Uint16 QUALPRD3:8; // 31:24 Qualification sampling period for GPIO152 to GPIO159
  1796. };
  1797. union GPECTRL_REG {
  1798. Uint32 all;
  1799. struct GPECTRL_BITS bit;
  1800. };
  1801. struct GPEQSEL1_BITS { // bits description
  1802. Uint16 GPIO128:2; // 1:0 Select input qualification type for GPIO128
  1803. Uint16 GPIO129:2; // 3:2 Select input qualification type for GPIO129
  1804. Uint16 GPIO130:2; // 5:4 Select input qualification type for GPIO130
  1805. Uint16 GPIO131:2; // 7:6 Select input qualification type for GPIO131
  1806. Uint16 GPIO132:2; // 9:8 Select input qualification type for GPIO132
  1807. Uint16 GPIO133:2; // 11:10 Select input qualification type for GPIO133
  1808. Uint16 GPIO134:2; // 13:12 Select input qualification type for GPIO134
  1809. Uint16 GPIO135:2; // 15:14 Select input qualification type for GPIO135
  1810. Uint16 GPIO136:2; // 17:16 Select input qualification type for GPIO136
  1811. Uint16 GPIO137:2; // 19:18 Select input qualification type for GPIO137
  1812. Uint16 GPIO138:2; // 21:20 Select input qualification type for GPIO138
  1813. Uint16 GPIO139:2; // 23:22 Select input qualification type for GPIO139
  1814. Uint16 GPIO140:2; // 25:24 Select input qualification type for GPIO140
  1815. Uint16 GPIO141:2; // 27:26 Select input qualification type for GPIO141
  1816. Uint16 GPIO142:2; // 29:28 Select input qualification type for GPIO142
  1817. Uint16 GPIO143:2; // 31:30 Select input qualification type for GPIO143
  1818. };
  1819. union GPEQSEL1_REG {
  1820. Uint32 all;
  1821. struct GPEQSEL1_BITS bit;
  1822. };
  1823. struct GPEQSEL2_BITS { // bits description
  1824. Uint16 GPIO144:2; // 1:0 Select input qualification type for GPIO144
  1825. Uint16 GPIO145:2; // 3:2 Select input qualification type for GPIO145
  1826. Uint16 GPIO146:2; // 5:4 Select input qualification type for GPIO146
  1827. Uint16 GPIO147:2; // 7:6 Select input qualification type for GPIO147
  1828. Uint16 GPIO148:2; // 9:8 Select input qualification type for GPIO148
  1829. Uint16 GPIO149:2; // 11:10 Select input qualification type for GPIO149
  1830. Uint16 GPIO150:2; // 13:12 Select input qualification type for GPIO150
  1831. Uint16 GPIO151:2; // 15:14 Select input qualification type for GPIO151
  1832. Uint16 GPIO152:2; // 17:16 Select input qualification type for GPIO152
  1833. Uint16 GPIO153:2; // 19:18 Select input qualification type for GPIO153
  1834. Uint16 GPIO154:2; // 21:20 Select input qualification type for GPIO154
  1835. Uint16 GPIO155:2; // 23:22 Select input qualification type for GPIO155
  1836. Uint16 GPIO156:2; // 25:24 Select input qualification type for GPIO156
  1837. Uint16 GPIO157:2; // 27:26 Select input qualification type for GPIO157
  1838. Uint16 GPIO158:2; // 29:28 Select input qualification type for GPIO158
  1839. Uint16 GPIO159:2; // 31:30 Select input qualification type for GPIO159
  1840. };
  1841. union GPEQSEL2_REG {
  1842. Uint32 all;
  1843. struct GPEQSEL2_BITS bit;
  1844. };
  1845. struct GPEMUX1_BITS { // bits description
  1846. Uint16 GPIO128:2; // 1:0 Defines pin-muxing selection for GPIO128
  1847. Uint16 GPIO129:2; // 3:2 Defines pin-muxing selection for GPIO129
  1848. Uint16 GPIO130:2; // 5:4 Defines pin-muxing selection for GPIO130
  1849. Uint16 GPIO131:2; // 7:6 Defines pin-muxing selection for GPIO131
  1850. Uint16 GPIO132:2; // 9:8 Defines pin-muxing selection for GPIO132
  1851. Uint16 GPIO133:2; // 11:10 Defines pin-muxing selection for GPIO133
  1852. Uint16 GPIO134:2; // 13:12 Defines pin-muxing selection for GPIO134
  1853. Uint16 GPIO135:2; // 15:14 Defines pin-muxing selection for GPIO135
  1854. Uint16 GPIO136:2; // 17:16 Defines pin-muxing selection for GPIO136
  1855. Uint16 GPIO137:2; // 19:18 Defines pin-muxing selection for GPIO137
  1856. Uint16 GPIO138:2; // 21:20 Defines pin-muxing selection for GPIO138
  1857. Uint16 GPIO139:2; // 23:22 Defines pin-muxing selection for GPIO139
  1858. Uint16 GPIO140:2; // 25:24 Defines pin-muxing selection for GPIO140
  1859. Uint16 GPIO141:2; // 27:26 Defines pin-muxing selection for GPIO141
  1860. Uint16 GPIO142:2; // 29:28 Defines pin-muxing selection for GPIO142
  1861. Uint16 GPIO143:2; // 31:30 Defines pin-muxing selection for GPIO143
  1862. };
  1863. union GPEMUX1_REG {
  1864. Uint32 all;
  1865. struct GPEMUX1_BITS bit;
  1866. };
  1867. struct GPEMUX2_BITS { // bits description
  1868. Uint16 GPIO144:2; // 1:0 Defines pin-muxing selection for GPIO144
  1869. Uint16 GPIO145:2; // 3:2 Defines pin-muxing selection for GPIO145
  1870. Uint16 GPIO146:2; // 5:4 Defines pin-muxing selection for GPIO146
  1871. Uint16 GPIO147:2; // 7:6 Defines pin-muxing selection for GPIO147
  1872. Uint16 GPIO148:2; // 9:8 Defines pin-muxing selection for GPIO148
  1873. Uint16 GPIO149:2; // 11:10 Defines pin-muxing selection for GPIO149
  1874. Uint16 GPIO150:2; // 13:12 Defines pin-muxing selection for GPIO150
  1875. Uint16 GPIO151:2; // 15:14 Defines pin-muxing selection for GPIO151
  1876. Uint16 GPIO152:2; // 17:16 Defines pin-muxing selection for GPIO152
  1877. Uint16 GPIO153:2; // 19:18 Defines pin-muxing selection for GPIO153
  1878. Uint16 GPIO154:2; // 21:20 Defines pin-muxing selection for GPIO154
  1879. Uint16 GPIO155:2; // 23:22 Defines pin-muxing selection for GPIO155
  1880. Uint16 GPIO156:2; // 25:24 Defines pin-muxing selection for GPIO156
  1881. Uint16 GPIO157:2; // 27:26 Defines pin-muxing selection for GPIO157
  1882. Uint16 GPIO158:2; // 29:28 Defines pin-muxing selection for GPIO158
  1883. Uint16 GPIO159:2; // 31:30 Defines pin-muxing selection for GPIO159
  1884. };
  1885. union GPEMUX2_REG {
  1886. Uint32 all;
  1887. struct GPEMUX2_BITS bit;
  1888. };
  1889. struct GPEDIR_BITS { // bits description
  1890. Uint16 GPIO128:1; // 0 Defines direction for this pin in GPIO mode
  1891. Uint16 GPIO129:1; // 1 Defines direction for this pin in GPIO mode
  1892. Uint16 GPIO130:1; // 2 Defines direction for this pin in GPIO mode
  1893. Uint16 GPIO131:1; // 3 Defines direction for this pin in GPIO mode
  1894. Uint16 GPIO132:1; // 4 Defines direction for this pin in GPIO mode
  1895. Uint16 GPIO133:1; // 5 Defines direction for this pin in GPIO mode
  1896. Uint16 GPIO134:1; // 6 Defines direction for this pin in GPIO mode
  1897. Uint16 GPIO135:1; // 7 Defines direction for this pin in GPIO mode
  1898. Uint16 GPIO136:1; // 8 Defines direction for this pin in GPIO mode
  1899. Uint16 GPIO137:1; // 9 Defines direction for this pin in GPIO mode
  1900. Uint16 GPIO138:1; // 10 Defines direction for this pin in GPIO mode
  1901. Uint16 GPIO139:1; // 11 Defines direction for this pin in GPIO mode
  1902. Uint16 GPIO140:1; // 12 Defines direction for this pin in GPIO mode
  1903. Uint16 GPIO141:1; // 13 Defines direction for this pin in GPIO mode
  1904. Uint16 GPIO142:1; // 14 Defines direction for this pin in GPIO mode
  1905. Uint16 GPIO143:1; // 15 Defines direction for this pin in GPIO mode
  1906. Uint16 GPIO144:1; // 16 Defines direction for this pin in GPIO mode
  1907. Uint16 GPIO145:1; // 17 Defines direction for this pin in GPIO mode
  1908. Uint16 GPIO146:1; // 18 Defines direction for this pin in GPIO mode
  1909. Uint16 GPIO147:1; // 19 Defines direction for this pin in GPIO mode
  1910. Uint16 GPIO148:1; // 20 Defines direction for this pin in GPIO mode
  1911. Uint16 GPIO149:1; // 21 Defines direction for this pin in GPIO mode
  1912. Uint16 GPIO150:1; // 22 Defines direction for this pin in GPIO mode
  1913. Uint16 GPIO151:1; // 23 Defines direction for this pin in GPIO mode
  1914. Uint16 GPIO152:1; // 24 Defines direction for this pin in GPIO mode
  1915. Uint16 GPIO153:1; // 25 Defines direction for this pin in GPIO mode
  1916. Uint16 GPIO154:1; // 26 Defines direction for this pin in GPIO mode
  1917. Uint16 GPIO155:1; // 27 Defines direction for this pin in GPIO mode
  1918. Uint16 GPIO156:1; // 28 Defines direction for this pin in GPIO mode
  1919. Uint16 GPIO157:1; // 29 Defines direction for this pin in GPIO mode
  1920. Uint16 GPIO158:1; // 30 Defines direction for this pin in GPIO mode
  1921. Uint16 GPIO159:1; // 31 Defines direction for this pin in GPIO mode
  1922. };
  1923. union GPEDIR_REG {
  1924. Uint32 all;
  1925. struct GPEDIR_BITS bit;
  1926. };
  1927. struct GPEPUD_BITS { // bits description
  1928. Uint16 GPIO128:1; // 0 Pull-Up Disable control for this pin
  1929. Uint16 GPIO129:1; // 1 Pull-Up Disable control for this pin
  1930. Uint16 GPIO130:1; // 2 Pull-Up Disable control for this pin
  1931. Uint16 GPIO131:1; // 3 Pull-Up Disable control for this pin
  1932. Uint16 GPIO132:1; // 4 Pull-Up Disable control for this pin
  1933. Uint16 GPIO133:1; // 5 Pull-Up Disable control for this pin
  1934. Uint16 GPIO134:1; // 6 Pull-Up Disable control for this pin
  1935. Uint16 GPIO135:1; // 7 Pull-Up Disable control for this pin
  1936. Uint16 GPIO136:1; // 8 Pull-Up Disable control for this pin
  1937. Uint16 GPIO137:1; // 9 Pull-Up Disable control for this pin
  1938. Uint16 GPIO138:1; // 10 Pull-Up Disable control for this pin
  1939. Uint16 GPIO139:1; // 11 Pull-Up Disable control for this pin
  1940. Uint16 GPIO140:1; // 12 Pull-Up Disable control for this pin
  1941. Uint16 GPIO141:1; // 13 Pull-Up Disable control for this pin
  1942. Uint16 GPIO142:1; // 14 Pull-Up Disable control for this pin
  1943. Uint16 GPIO143:1; // 15 Pull-Up Disable control for this pin
  1944. Uint16 GPIO144:1; // 16 Pull-Up Disable control for this pin
  1945. Uint16 GPIO145:1; // 17 Pull-Up Disable control for this pin
  1946. Uint16 GPIO146:1; // 18 Pull-Up Disable control for this pin
  1947. Uint16 GPIO147:1; // 19 Pull-Up Disable control for this pin
  1948. Uint16 GPIO148:1; // 20 Pull-Up Disable control for this pin
  1949. Uint16 GPIO149:1; // 21 Pull-Up Disable control for this pin
  1950. Uint16 GPIO150:1; // 22 Pull-Up Disable control for this pin
  1951. Uint16 GPIO151:1; // 23 Pull-Up Disable control for this pin
  1952. Uint16 GPIO152:1; // 24 Pull-Up Disable control for this pin
  1953. Uint16 GPIO153:1; // 25 Pull-Up Disable control for this pin
  1954. Uint16 GPIO154:1; // 26 Pull-Up Disable control for this pin
  1955. Uint16 GPIO155:1; // 27 Pull-Up Disable control for this pin
  1956. Uint16 GPIO156:1; // 28 Pull-Up Disable control for this pin
  1957. Uint16 GPIO157:1; // 29 Pull-Up Disable control for this pin
  1958. Uint16 GPIO158:1; // 30 Pull-Up Disable control for this pin
  1959. Uint16 GPIO159:1; // 31 Pull-Up Disable control for this pin
  1960. };
  1961. union GPEPUD_REG {
  1962. Uint32 all;
  1963. struct GPEPUD_BITS bit;
  1964. };
  1965. struct GPEINV_BITS { // bits description
  1966. Uint16 GPIO128:1; // 0 Input inversion control for this pin
  1967. Uint16 GPIO129:1; // 1 Input inversion control for this pin
  1968. Uint16 GPIO130:1; // 2 Input inversion control for this pin
  1969. Uint16 GPIO131:1; // 3 Input inversion control for this pin
  1970. Uint16 GPIO132:1; // 4 Input inversion control for this pin
  1971. Uint16 GPIO133:1; // 5 Input inversion control for this pin
  1972. Uint16 GPIO134:1; // 6 Input inversion control for this pin
  1973. Uint16 GPIO135:1; // 7 Input inversion control for this pin
  1974. Uint16 GPIO136:1; // 8 Input inversion control for this pin
  1975. Uint16 GPIO137:1; // 9 Input inversion control for this pin
  1976. Uint16 GPIO138:1; // 10 Input inversion control for this pin
  1977. Uint16 GPIO139:1; // 11 Input inversion control for this pin
  1978. Uint16 GPIO140:1; // 12 Input inversion control for this pin
  1979. Uint16 GPIO141:1; // 13 Input inversion control for this pin
  1980. Uint16 GPIO142:1; // 14 Input inversion control for this pin
  1981. Uint16 GPIO143:1; // 15 Input inversion control for this pin
  1982. Uint16 GPIO144:1; // 16 Input inversion control for this pin
  1983. Uint16 GPIO145:1; // 17 Input inversion control for this pin
  1984. Uint16 GPIO146:1; // 18 Input inversion control for this pin
  1985. Uint16 GPIO147:1; // 19 Input inversion control for this pin
  1986. Uint16 GPIO148:1; // 20 Input inversion control for this pin
  1987. Uint16 GPIO149:1; // 21 Input inversion control for this pin
  1988. Uint16 GPIO150:1; // 22 Input inversion control for this pin
  1989. Uint16 GPIO151:1; // 23 Input inversion control for this pin
  1990. Uint16 GPIO152:1; // 24 Input inversion control for this pin
  1991. Uint16 GPIO153:1; // 25 Input inversion control for this pin
  1992. Uint16 GPIO154:1; // 26 Input inversion control for this pin
  1993. Uint16 GPIO155:1; // 27 Input inversion control for this pin
  1994. Uint16 GPIO156:1; // 28 Input inversion control for this pin
  1995. Uint16 GPIO157:1; // 29 Input inversion control for this pin
  1996. Uint16 GPIO158:1; // 30 Input inversion control for this pin
  1997. Uint16 GPIO159:1; // 31 Input inversion control for this pin
  1998. };
  1999. union GPEINV_REG {
  2000. Uint32 all;
  2001. struct GPEINV_BITS bit;
  2002. };
  2003. struct GPEODR_BITS { // bits description
  2004. Uint16 GPIO128:1; // 0 Outpout Open-Drain control for this pin
  2005. Uint16 GPIO129:1; // 1 Outpout Open-Drain control for this pin
  2006. Uint16 GPIO130:1; // 2 Outpout Open-Drain control for this pin
  2007. Uint16 GPIO131:1; // 3 Outpout Open-Drain control for this pin
  2008. Uint16 GPIO132:1; // 4 Outpout Open-Drain control for this pin
  2009. Uint16 GPIO133:1; // 5 Outpout Open-Drain control for this pin
  2010. Uint16 GPIO134:1; // 6 Outpout Open-Drain control for this pin
  2011. Uint16 GPIO135:1; // 7 Outpout Open-Drain control for this pin
  2012. Uint16 GPIO136:1; // 8 Outpout Open-Drain control for this pin
  2013. Uint16 GPIO137:1; // 9 Outpout Open-Drain control for this pin
  2014. Uint16 GPIO138:1; // 10 Outpout Open-Drain control for this pin
  2015. Uint16 GPIO139:1; // 11 Outpout Open-Drain control for this pin
  2016. Uint16 GPIO140:1; // 12 Outpout Open-Drain control for this pin
  2017. Uint16 GPIO141:1; // 13 Outpout Open-Drain control for this pin
  2018. Uint16 GPIO142:1; // 14 Outpout Open-Drain control for this pin
  2019. Uint16 GPIO143:1; // 15 Outpout Open-Drain control for this pin
  2020. Uint16 GPIO144:1; // 16 Outpout Open-Drain control for this pin
  2021. Uint16 GPIO145:1; // 17 Outpout Open-Drain control for this pin
  2022. Uint16 GPIO146:1; // 18 Outpout Open-Drain control for this pin
  2023. Uint16 GPIO147:1; // 19 Outpout Open-Drain control for this pin
  2024. Uint16 GPIO148:1; // 20 Outpout Open-Drain control for this pin
  2025. Uint16 GPIO149:1; // 21 Outpout Open-Drain control for this pin
  2026. Uint16 GPIO150:1; // 22 Outpout Open-Drain control for this pin
  2027. Uint16 GPIO151:1; // 23 Outpout Open-Drain control for this pin
  2028. Uint16 GPIO152:1; // 24 Outpout Open-Drain control for this pin
  2029. Uint16 GPIO153:1; // 25 Outpout Open-Drain control for this pin
  2030. Uint16 GPIO154:1; // 26 Outpout Open-Drain control for this pin
  2031. Uint16 GPIO155:1; // 27 Outpout Open-Drain control for this pin
  2032. Uint16 GPIO156:1; // 28 Outpout Open-Drain control for this pin
  2033. Uint16 GPIO157:1; // 29 Outpout Open-Drain control for this pin
  2034. Uint16 GPIO158:1; // 30 Outpout Open-Drain control for this pin
  2035. Uint16 GPIO159:1; // 31 Outpout Open-Drain control for this pin
  2036. };
  2037. union GPEODR_REG {
  2038. Uint32 all;
  2039. struct GPEODR_BITS bit;
  2040. };
  2041. struct GPEGMUX1_BITS { // bits description
  2042. Uint16 GPIO128:2; // 1:0 Defines pin-muxing selection for GPIO128
  2043. Uint16 GPIO129:2; // 3:2 Defines pin-muxing selection for GPIO129
  2044. Uint16 GPIO130:2; // 5:4 Defines pin-muxing selection for GPIO130
  2045. Uint16 GPIO131:2; // 7:6 Defines pin-muxing selection for GPIO131
  2046. Uint16 GPIO132:2; // 9:8 Defines pin-muxing selection for GPIO132
  2047. Uint16 GPIO133:2; // 11:10 Defines pin-muxing selection for GPIO133
  2048. Uint16 GPIO134:2; // 13:12 Defines pin-muxing selection for GPIO134
  2049. Uint16 GPIO135:2; // 15:14 Defines pin-muxing selection for GPIO135
  2050. Uint16 GPIO136:2; // 17:16 Defines pin-muxing selection for GPIO136
  2051. Uint16 GPIO137:2; // 19:18 Defines pin-muxing selection for GPIO137
  2052. Uint16 GPIO138:2; // 21:20 Defines pin-muxing selection for GPIO138
  2053. Uint16 GPIO139:2; // 23:22 Defines pin-muxing selection for GPIO139
  2054. Uint16 GPIO140:2; // 25:24 Defines pin-muxing selection for GPIO140
  2055. Uint16 GPIO141:2; // 27:26 Defines pin-muxing selection for GPIO141
  2056. Uint16 GPIO142:2; // 29:28 Defines pin-muxing selection for GPIO142
  2057. Uint16 GPIO143:2; // 31:30 Defines pin-muxing selection for GPIO143
  2058. };
  2059. union GPEGMUX1_REG {
  2060. Uint32 all;
  2061. struct GPEGMUX1_BITS bit;
  2062. };
  2063. struct GPEGMUX2_BITS { // bits description
  2064. Uint16 GPIO144:2; // 1:0 Defines pin-muxing selection for GPIO144
  2065. Uint16 GPIO145:2; // 3:2 Defines pin-muxing selection for GPIO145
  2066. Uint16 GPIO146:2; // 5:4 Defines pin-muxing selection for GPIO146
  2067. Uint16 GPIO147:2; // 7:6 Defines pin-muxing selection for GPIO147
  2068. Uint16 GPIO148:2; // 9:8 Defines pin-muxing selection for GPIO148
  2069. Uint16 GPIO149:2; // 11:10 Defines pin-muxing selection for GPIO149
  2070. Uint16 GPIO150:2; // 13:12 Defines pin-muxing selection for GPIO150
  2071. Uint16 GPIO151:2; // 15:14 Defines pin-muxing selection for GPIO151
  2072. Uint16 GPIO152:2; // 17:16 Defines pin-muxing selection for GPIO152
  2073. Uint16 GPIO153:2; // 19:18 Defines pin-muxing selection for GPIO153
  2074. Uint16 GPIO154:2; // 21:20 Defines pin-muxing selection for GPIO154
  2075. Uint16 GPIO155:2; // 23:22 Defines pin-muxing selection for GPIO155
  2076. Uint16 GPIO156:2; // 25:24 Defines pin-muxing selection for GPIO156
  2077. Uint16 GPIO157:2; // 27:26 Defines pin-muxing selection for GPIO157
  2078. Uint16 GPIO158:2; // 29:28 Defines pin-muxing selection for GPIO158
  2079. Uint16 GPIO159:2; // 31:30 Defines pin-muxing selection for GPIO159
  2080. };
  2081. union GPEGMUX2_REG {
  2082. Uint32 all;
  2083. struct GPEGMUX2_BITS bit;
  2084. };
  2085. struct GPECSEL1_BITS { // bits description
  2086. Uint16 GPIO128:4; // 3:0 GPIO128 Master CPU Select
  2087. Uint16 GPIO129:4; // 7:4 GPIO129 Master CPU Select
  2088. Uint16 GPIO130:4; // 11:8 GPIO130 Master CPU Select
  2089. Uint16 GPIO131:4; // 15:12 GPIO131 Master CPU Select
  2090. Uint16 GPIO132:4; // 19:16 GPIO132 Master CPU Select
  2091. Uint16 GPIO133:4; // 23:20 GPIO133 Master CPU Select
  2092. Uint16 GPIO134:4; // 27:24 GPIO134 Master CPU Select
  2093. Uint16 GPIO135:4; // 31:28 GPIO135 Master CPU Select
  2094. };
  2095. union GPECSEL1_REG {
  2096. Uint32 all;
  2097. struct GPECSEL1_BITS bit;
  2098. };
  2099. struct GPECSEL2_BITS { // bits description
  2100. Uint16 GPIO136:4; // 3:0 GPIO136 Master CPU Select
  2101. Uint16 GPIO137:4; // 7:4 GPIO137 Master CPU Select
  2102. Uint16 GPIO138:4; // 11:8 GPIO138 Master CPU Select
  2103. Uint16 GPIO139:4; // 15:12 GPIO139 Master CPU Select
  2104. Uint16 GPIO140:4; // 19:16 GPIO140 Master CPU Select
  2105. Uint16 GPIO141:4; // 23:20 GPIO141 Master CPU Select
  2106. Uint16 GPIO142:4; // 27:24 GPIO142 Master CPU Select
  2107. Uint16 GPIO143:4; // 31:28 GPIO143 Master CPU Select
  2108. };
  2109. union GPECSEL2_REG {
  2110. Uint32 all;
  2111. struct GPECSEL2_BITS bit;
  2112. };
  2113. struct GPECSEL3_BITS { // bits description
  2114. Uint16 GPIO144:4; // 3:0 GPIO144 Master CPU Select
  2115. Uint16 GPIO145:4; // 7:4 GPIO145 Master CPU Select
  2116. Uint16 GPIO146:4; // 11:8 GPIO146 Master CPU Select
  2117. Uint16 GPIO147:4; // 15:12 GPIO147 Master CPU Select
  2118. Uint16 GPIO148:4; // 19:16 GPIO148 Master CPU Select
  2119. Uint16 GPIO149:4; // 23:20 GPIO149 Master CPU Select
  2120. Uint16 GPIO150:4; // 27:24 GPIO150 Master CPU Select
  2121. Uint16 GPIO151:4; // 31:28 GPIO151 Master CPU Select
  2122. };
  2123. union GPECSEL3_REG {
  2124. Uint32 all;
  2125. struct GPECSEL3_BITS bit;
  2126. };
  2127. struct GPECSEL4_BITS { // bits description
  2128. Uint16 GPIO152:4; // 3:0 GPIO152 Master CPU Select
  2129. Uint16 GPIO153:4; // 7:4 GPIO153 Master CPU Select
  2130. Uint16 GPIO154:4; // 11:8 GPIO154 Master CPU Select
  2131. Uint16 GPIO155:4; // 15:12 GPIO155 Master CPU Select
  2132. Uint16 GPIO156:4; // 19:16 GPIO156 Master CPU Select
  2133. Uint16 GPIO157:4; // 23:20 GPIO157 Master CPU Select
  2134. Uint16 GPIO158:4; // 27:24 GPIO158 Master CPU Select
  2135. Uint16 GPIO159:4; // 31:28 GPIO159 Master CPU Select
  2136. };
  2137. union GPECSEL4_REG {
  2138. Uint32 all;
  2139. struct GPECSEL4_BITS bit;
  2140. };
  2141. struct GPELOCK_BITS { // bits description
  2142. Uint16 GPIO128:1; // 0 Configuration Lock bit for this pin
  2143. Uint16 GPIO129:1; // 1 Configuration Lock bit for this pin
  2144. Uint16 GPIO130:1; // 2 Configuration Lock bit for this pin
  2145. Uint16 GPIO131:1; // 3 Configuration Lock bit for this pin
  2146. Uint16 GPIO132:1; // 4 Configuration Lock bit for this pin
  2147. Uint16 GPIO133:1; // 5 Configuration Lock bit for this pin
  2148. Uint16 GPIO134:1; // 6 Configuration Lock bit for this pin
  2149. Uint16 GPIO135:1; // 7 Configuration Lock bit for this pin
  2150. Uint16 GPIO136:1; // 8 Configuration Lock bit for this pin
  2151. Uint16 GPIO137:1; // 9 Configuration Lock bit for this pin
  2152. Uint16 GPIO138:1; // 10 Configuration Lock bit for this pin
  2153. Uint16 GPIO139:1; // 11 Configuration Lock bit for this pin
  2154. Uint16 GPIO140:1; // 12 Configuration Lock bit for this pin
  2155. Uint16 GPIO141:1; // 13 Configuration Lock bit for this pin
  2156. Uint16 GPIO142:1; // 14 Configuration Lock bit for this pin
  2157. Uint16 GPIO143:1; // 15 Configuration Lock bit for this pin
  2158. Uint16 GPIO144:1; // 16 Configuration Lock bit for this pin
  2159. Uint16 GPIO145:1; // 17 Configuration Lock bit for this pin
  2160. Uint16 GPIO146:1; // 18 Configuration Lock bit for this pin
  2161. Uint16 GPIO147:1; // 19 Configuration Lock bit for this pin
  2162. Uint16 GPIO148:1; // 20 Configuration Lock bit for this pin
  2163. Uint16 GPIO149:1; // 21 Configuration Lock bit for this pin
  2164. Uint16 GPIO150:1; // 22 Configuration Lock bit for this pin
  2165. Uint16 GPIO151:1; // 23 Configuration Lock bit for this pin
  2166. Uint16 GPIO152:1; // 24 Configuration Lock bit for this pin
  2167. Uint16 GPIO153:1; // 25 Configuration Lock bit for this pin
  2168. Uint16 GPIO154:1; // 26 Configuration Lock bit for this pin
  2169. Uint16 GPIO155:1; // 27 Configuration Lock bit for this pin
  2170. Uint16 GPIO156:1; // 28 Configuration Lock bit for this pin
  2171. Uint16 GPIO157:1; // 29 Configuration Lock bit for this pin
  2172. Uint16 GPIO158:1; // 30 Configuration Lock bit for this pin
  2173. Uint16 GPIO159:1; // 31 Configuration Lock bit for this pin
  2174. };
  2175. union GPELOCK_REG {
  2176. Uint32 all;
  2177. struct GPELOCK_BITS bit;
  2178. };
  2179. struct GPECR_BITS { // bits description
  2180. Uint16 GPIO128:1; // 0 Configuration lock commit bit for this pin
  2181. Uint16 GPIO129:1; // 1 Configuration lock commit bit for this pin
  2182. Uint16 GPIO130:1; // 2 Configuration lock commit bit for this pin
  2183. Uint16 GPIO131:1; // 3 Configuration lock commit bit for this pin
  2184. Uint16 GPIO132:1; // 4 Configuration lock commit bit for this pin
  2185. Uint16 GPIO133:1; // 5 Configuration lock commit bit for this pin
  2186. Uint16 GPIO134:1; // 6 Configuration lock commit bit for this pin
  2187. Uint16 GPIO135:1; // 7 Configuration lock commit bit for this pin
  2188. Uint16 GPIO136:1; // 8 Configuration lock commit bit for this pin
  2189. Uint16 GPIO137:1; // 9 Configuration lock commit bit for this pin
  2190. Uint16 GPIO138:1; // 10 Configuration lock commit bit for this pin
  2191. Uint16 GPIO139:1; // 11 Configuration lock commit bit for this pin
  2192. Uint16 GPIO140:1; // 12 Configuration lock commit bit for this pin
  2193. Uint16 GPIO141:1; // 13 Configuration lock commit bit for this pin
  2194. Uint16 GPIO142:1; // 14 Configuration lock commit bit for this pin
  2195. Uint16 GPIO143:1; // 15 Configuration lock commit bit for this pin
  2196. Uint16 GPIO144:1; // 16 Configuration lock commit bit for this pin
  2197. Uint16 GPIO145:1; // 17 Configuration lock commit bit for this pin
  2198. Uint16 GPIO146:1; // 18 Configuration lock commit bit for this pin
  2199. Uint16 GPIO147:1; // 19 Configuration lock commit bit for this pin
  2200. Uint16 GPIO148:1; // 20 Configuration lock commit bit for this pin
  2201. Uint16 GPIO149:1; // 21 Configuration lock commit bit for this pin
  2202. Uint16 GPIO150:1; // 22 Configuration lock commit bit for this pin
  2203. Uint16 GPIO151:1; // 23 Configuration lock commit bit for this pin
  2204. Uint16 GPIO152:1; // 24 Configuration lock commit bit for this pin
  2205. Uint16 GPIO153:1; // 25 Configuration lock commit bit for this pin
  2206. Uint16 GPIO154:1; // 26 Configuration lock commit bit for this pin
  2207. Uint16 GPIO155:1; // 27 Configuration lock commit bit for this pin
  2208. Uint16 GPIO156:1; // 28 Configuration lock commit bit for this pin
  2209. Uint16 GPIO157:1; // 29 Configuration lock commit bit for this pin
  2210. Uint16 GPIO158:1; // 30 Configuration lock commit bit for this pin
  2211. Uint16 GPIO159:1; // 31 Configuration lock commit bit for this pin
  2212. };
  2213. union GPECR_REG {
  2214. Uint32 all;
  2215. struct GPECR_BITS bit;
  2216. };
  2217. struct GPFCTRL_BITS { // bits description
  2218. Uint16 QUALPRD0:8; // 7:0 Qualification sampling period for GPIO160 to GPIO167
  2219. Uint16 QUALPRD1:8; // 15:8 Qualification sampling period for GPIO168
  2220. Uint16 rsvd1:8; // 23:16 Reserved
  2221. Uint16 rsvd2:8; // 31:24 Reserved
  2222. };
  2223. union GPFCTRL_REG {
  2224. Uint32 all;
  2225. struct GPFCTRL_BITS bit;
  2226. };
  2227. struct GPFQSEL1_BITS { // bits description
  2228. Uint16 GPIO160:2; // 1:0 Select input qualification type for GPIO160
  2229. Uint16 GPIO161:2; // 3:2 Select input qualification type for GPIO161
  2230. Uint16 GPIO162:2; // 5:4 Select input qualification type for GPIO162
  2231. Uint16 GPIO163:2; // 7:6 Select input qualification type for GPIO163
  2232. Uint16 GPIO164:2; // 9:8 Select input qualification type for GPIO164
  2233. Uint16 GPIO165:2; // 11:10 Select input qualification type for GPIO165
  2234. Uint16 GPIO166:2; // 13:12 Select input qualification type for GPIO166
  2235. Uint16 GPIO167:2; // 15:14 Select input qualification type for GPIO167
  2236. Uint16 GPIO168:2; // 17:16 Select input qualification type for GPIO168
  2237. Uint16 rsvd1:2; // 19:18 Reserved
  2238. Uint16 rsvd2:2; // 21:20 Reserved
  2239. Uint16 rsvd3:2; // 23:22 Reserved
  2240. Uint16 rsvd4:2; // 25:24 Reserved
  2241. Uint16 rsvd5:2; // 27:26 Reserved
  2242. Uint16 rsvd6:2; // 29:28 Reserved
  2243. Uint16 rsvd7:2; // 31:30 Reserved
  2244. };
  2245. union GPFQSEL1_REG {
  2246. Uint32 all;
  2247. struct GPFQSEL1_BITS bit;
  2248. };
  2249. struct GPFMUX1_BITS { // bits description
  2250. Uint16 GPIO160:2; // 1:0 Defines pin-muxing selection for GPIO160
  2251. Uint16 GPIO161:2; // 3:2 Defines pin-muxing selection for GPIO161
  2252. Uint16 GPIO162:2; // 5:4 Defines pin-muxing selection for GPIO162
  2253. Uint16 GPIO163:2; // 7:6 Defines pin-muxing selection for GPIO163
  2254. Uint16 GPIO164:2; // 9:8 Defines pin-muxing selection for GPIO164
  2255. Uint16 GPIO165:2; // 11:10 Defines pin-muxing selection for GPIO165
  2256. Uint16 GPIO166:2; // 13:12 Defines pin-muxing selection for GPIO166
  2257. Uint16 GPIO167:2; // 15:14 Defines pin-muxing selection for GPIO167
  2258. Uint16 GPIO168:2; // 17:16 Defines pin-muxing selection for GPIO168
  2259. Uint16 rsvd1:2; // 19:18 Reserved
  2260. Uint16 rsvd2:2; // 21:20 Reserved
  2261. Uint16 rsvd3:2; // 23:22 Reserved
  2262. Uint16 rsvd4:2; // 25:24 Reserved
  2263. Uint16 rsvd5:2; // 27:26 Reserved
  2264. Uint16 rsvd6:2; // 29:28 Reserved
  2265. Uint16 rsvd7:2; // 31:30 Reserved
  2266. };
  2267. union GPFMUX1_REG {
  2268. Uint32 all;
  2269. struct GPFMUX1_BITS bit;
  2270. };
  2271. struct GPFDIR_BITS { // bits description
  2272. Uint16 GPIO160:1; // 0 Defines direction for this pin in GPIO mode
  2273. Uint16 GPIO161:1; // 1 Defines direction for this pin in GPIO mode
  2274. Uint16 GPIO162:1; // 2 Defines direction for this pin in GPIO mode
  2275. Uint16 GPIO163:1; // 3 Defines direction for this pin in GPIO mode
  2276. Uint16 GPIO164:1; // 4 Defines direction for this pin in GPIO mode
  2277. Uint16 GPIO165:1; // 5 Defines direction for this pin in GPIO mode
  2278. Uint16 GPIO166:1; // 6 Defines direction for this pin in GPIO mode
  2279. Uint16 GPIO167:1; // 7 Defines direction for this pin in GPIO mode
  2280. Uint16 GPIO168:1; // 8 Defines direction for this pin in GPIO mode
  2281. Uint16 rsvd1:1; // 9 Reserved
  2282. Uint16 rsvd2:1; // 10 Reserved
  2283. Uint16 rsvd3:1; // 11 Reserved
  2284. Uint16 rsvd4:1; // 12 Reserved
  2285. Uint16 rsvd5:1; // 13 Reserved
  2286. Uint16 rsvd6:1; // 14 Reserved
  2287. Uint16 rsvd7:1; // 15 Reserved
  2288. Uint16 rsvd8:1; // 16 Reserved
  2289. Uint16 rsvd9:1; // 17 Reserved
  2290. Uint16 rsvd10:1; // 18 Reserved
  2291. Uint16 rsvd11:1; // 19 Reserved
  2292. Uint16 rsvd12:1; // 20 Reserved
  2293. Uint16 rsvd13:1; // 21 Reserved
  2294. Uint16 rsvd14:1; // 22 Reserved
  2295. Uint16 rsvd15:1; // 23 Reserved
  2296. Uint16 rsvd16:1; // 24 Reserved
  2297. Uint16 rsvd17:1; // 25 Reserved
  2298. Uint16 rsvd18:1; // 26 Reserved
  2299. Uint16 rsvd19:1; // 27 Reserved
  2300. Uint16 rsvd20:1; // 28 Reserved
  2301. Uint16 rsvd21:1; // 29 Reserved
  2302. Uint16 rsvd22:1; // 30 Reserved
  2303. Uint16 rsvd23:1; // 31 Reserved
  2304. };
  2305. union GPFDIR_REG {
  2306. Uint32 all;
  2307. struct GPFDIR_BITS bit;
  2308. };
  2309. struct GPFPUD_BITS { // bits description
  2310. Uint16 GPIO160:1; // 0 Pull-Up Disable control for this pin
  2311. Uint16 GPIO161:1; // 1 Pull-Up Disable control for this pin
  2312. Uint16 GPIO162:1; // 2 Pull-Up Disable control for this pin
  2313. Uint16 GPIO163:1; // 3 Pull-Up Disable control for this pin
  2314. Uint16 GPIO164:1; // 4 Pull-Up Disable control for this pin
  2315. Uint16 GPIO165:1; // 5 Pull-Up Disable control for this pin
  2316. Uint16 GPIO166:1; // 6 Pull-Up Disable control for this pin
  2317. Uint16 GPIO167:1; // 7 Pull-Up Disable control for this pin
  2318. Uint16 GPIO168:1; // 8 Pull-Up Disable control for this pin
  2319. Uint16 rsvd1:1; // 9 Reserved
  2320. Uint16 rsvd2:1; // 10 Reserved
  2321. Uint16 rsvd3:1; // 11 Reserved
  2322. Uint16 rsvd4:1; // 12 Reserved
  2323. Uint16 rsvd5:1; // 13 Reserved
  2324. Uint16 rsvd6:1; // 14 Reserved
  2325. Uint16 rsvd7:1; // 15 Reserved
  2326. Uint16 rsvd8:1; // 16 Reserved
  2327. Uint16 rsvd9:1; // 17 Reserved
  2328. Uint16 rsvd10:1; // 18 Reserved
  2329. Uint16 rsvd11:1; // 19 Reserved
  2330. Uint16 rsvd12:1; // 20 Reserved
  2331. Uint16 rsvd13:1; // 21 Reserved
  2332. Uint16 rsvd14:1; // 22 Reserved
  2333. Uint16 rsvd15:1; // 23 Reserved
  2334. Uint16 rsvd16:1; // 24 Reserved
  2335. Uint16 rsvd17:1; // 25 Reserved
  2336. Uint16 rsvd18:1; // 26 Reserved
  2337. Uint16 rsvd19:1; // 27 Reserved
  2338. Uint16 rsvd20:1; // 28 Reserved
  2339. Uint16 rsvd21:1; // 29 Reserved
  2340. Uint16 rsvd22:1; // 30 Reserved
  2341. Uint16 rsvd23:1; // 31 Reserved
  2342. };
  2343. union GPFPUD_REG {
  2344. Uint32 all;
  2345. struct GPFPUD_BITS bit;
  2346. };
  2347. struct GPFINV_BITS { // bits description
  2348. Uint16 GPIO160:1; // 0 Input inversion control for this pin
  2349. Uint16 GPIO161:1; // 1 Input inversion control for this pin
  2350. Uint16 GPIO162:1; // 2 Input inversion control for this pin
  2351. Uint16 GPIO163:1; // 3 Input inversion control for this pin
  2352. Uint16 GPIO164:1; // 4 Input inversion control for this pin
  2353. Uint16 GPIO165:1; // 5 Input inversion control for this pin
  2354. Uint16 GPIO166:1; // 6 Input inversion control for this pin
  2355. Uint16 GPIO167:1; // 7 Input inversion control for this pin
  2356. Uint16 GPIO168:1; // 8 Input inversion control for this pin
  2357. Uint16 rsvd1:1; // 9 Reserved
  2358. Uint16 rsvd2:1; // 10 Reserved
  2359. Uint16 rsvd3:1; // 11 Reserved
  2360. Uint16 rsvd4:1; // 12 Reserved
  2361. Uint16 rsvd5:1; // 13 Reserved
  2362. Uint16 rsvd6:1; // 14 Reserved
  2363. Uint16 rsvd7:1; // 15 Reserved
  2364. Uint16 rsvd8:1; // 16 Reserved
  2365. Uint16 rsvd9:1; // 17 Reserved
  2366. Uint16 rsvd10:1; // 18 Reserved
  2367. Uint16 rsvd11:1; // 19 Reserved
  2368. Uint16 rsvd12:1; // 20 Reserved
  2369. Uint16 rsvd13:1; // 21 Reserved
  2370. Uint16 rsvd14:1; // 22 Reserved
  2371. Uint16 rsvd15:1; // 23 Reserved
  2372. Uint16 rsvd16:1; // 24 Reserved
  2373. Uint16 rsvd17:1; // 25 Reserved
  2374. Uint16 rsvd18:1; // 26 Reserved
  2375. Uint16 rsvd19:1; // 27 Reserved
  2376. Uint16 rsvd20:1; // 28 Reserved
  2377. Uint16 rsvd21:1; // 29 Reserved
  2378. Uint16 rsvd22:1; // 30 Reserved
  2379. Uint16 rsvd23:1; // 31 Reserved
  2380. };
  2381. union GPFINV_REG {
  2382. Uint32 all;
  2383. struct GPFINV_BITS bit;
  2384. };
  2385. struct GPFODR_BITS { // bits description
  2386. Uint16 GPIO160:1; // 0 Outpout Open-Drain control for this pin
  2387. Uint16 GPIO161:1; // 1 Outpout Open-Drain control for this pin
  2388. Uint16 GPIO162:1; // 2 Outpout Open-Drain control for this pin
  2389. Uint16 GPIO163:1; // 3 Outpout Open-Drain control for this pin
  2390. Uint16 GPIO164:1; // 4 Outpout Open-Drain control for this pin
  2391. Uint16 GPIO165:1; // 5 Outpout Open-Drain control for this pin
  2392. Uint16 GPIO166:1; // 6 Outpout Open-Drain control for this pin
  2393. Uint16 GPIO167:1; // 7 Outpout Open-Drain control for this pin
  2394. Uint16 GPIO168:1; // 8 Outpout Open-Drain control for this pin
  2395. Uint16 rsvd1:1; // 9 Reserved
  2396. Uint16 rsvd2:1; // 10 Reserved
  2397. Uint16 rsvd3:1; // 11 Reserved
  2398. Uint16 rsvd4:1; // 12 Reserved
  2399. Uint16 rsvd5:1; // 13 Reserved
  2400. Uint16 rsvd6:1; // 14 Reserved
  2401. Uint16 rsvd7:1; // 15 Reserved
  2402. Uint16 rsvd8:1; // 16 Reserved
  2403. Uint16 rsvd9:1; // 17 Reserved
  2404. Uint16 rsvd10:1; // 18 Reserved
  2405. Uint16 rsvd11:1; // 19 Reserved
  2406. Uint16 rsvd12:1; // 20 Reserved
  2407. Uint16 rsvd13:1; // 21 Reserved
  2408. Uint16 rsvd14:1; // 22 Reserved
  2409. Uint16 rsvd15:1; // 23 Reserved
  2410. Uint16 rsvd16:1; // 24 Reserved
  2411. Uint16 rsvd17:1; // 25 Reserved
  2412. Uint16 rsvd18:1; // 26 Reserved
  2413. Uint16 rsvd19:1; // 27 Reserved
  2414. Uint16 rsvd20:1; // 28 Reserved
  2415. Uint16 rsvd21:1; // 29 Reserved
  2416. Uint16 rsvd22:1; // 30 Reserved
  2417. Uint16 rsvd23:1; // 31 Reserved
  2418. };
  2419. union GPFODR_REG {
  2420. Uint32 all;
  2421. struct GPFODR_BITS bit;
  2422. };
  2423. struct GPFGMUX1_BITS { // bits description
  2424. Uint16 GPIO160:2; // 1:0 Defines pin-muxing selection for GPIO160
  2425. Uint16 GPIO161:2; // 3:2 Defines pin-muxing selection for GPIO161
  2426. Uint16 GPIO162:2; // 5:4 Defines pin-muxing selection for GPIO162
  2427. Uint16 GPIO163:2; // 7:6 Defines pin-muxing selection for GPIO163
  2428. Uint16 GPIO164:2; // 9:8 Defines pin-muxing selection for GPIO164
  2429. Uint16 GPIO165:2; // 11:10 Defines pin-muxing selection for GPIO165
  2430. Uint16 GPIO166:2; // 13:12 Defines pin-muxing selection for GPIO166
  2431. Uint16 GPIO167:2; // 15:14 Defines pin-muxing selection for GPIO167
  2432. Uint16 GPIO168:2; // 17:16 Defines pin-muxing selection for GPIO168
  2433. Uint16 rsvd1:2; // 19:18 Reserved
  2434. Uint16 rsvd2:2; // 21:20 Reserved
  2435. Uint16 rsvd3:2; // 23:22 Reserved
  2436. Uint16 rsvd4:2; // 25:24 Reserved
  2437. Uint16 rsvd5:2; // 27:26 Reserved
  2438. Uint16 rsvd6:2; // 29:28 Reserved
  2439. Uint16 rsvd7:2; // 31:30 Reserved
  2440. };
  2441. union GPFGMUX1_REG {
  2442. Uint32 all;
  2443. struct GPFGMUX1_BITS bit;
  2444. };
  2445. struct GPFCSEL1_BITS { // bits description
  2446. Uint16 GPIO160:4; // 3:0 GPIO160 Master CPU Select
  2447. Uint16 GPIO161:4; // 7:4 GPIO161 Master CPU Select
  2448. Uint16 GPIO162:4; // 11:8 GPIO162 Master CPU Select
  2449. Uint16 GPIO163:4; // 15:12 GPIO163 Master CPU Select
  2450. Uint16 GPIO164:4; // 19:16 GPIO164 Master CPU Select
  2451. Uint16 GPIO165:4; // 23:20 GPIO165 Master CPU Select
  2452. Uint16 GPIO166:4; // 27:24 GPIO166 Master CPU Select
  2453. Uint16 GPIO167:4; // 31:28 GPIO167 Master CPU Select
  2454. };
  2455. union GPFCSEL1_REG {
  2456. Uint32 all;
  2457. struct GPFCSEL1_BITS bit;
  2458. };
  2459. struct GPFCSEL2_BITS { // bits description
  2460. Uint16 GPIO168:4; // 3:0 GPIO168 Master CPU Select
  2461. Uint16 rsvd1:4; // 7:4 Reserved
  2462. Uint16 rsvd2:4; // 11:8 Reserved
  2463. Uint16 rsvd3:4; // 15:12 Reserved
  2464. Uint16 rsvd4:4; // 19:16 Reserved
  2465. Uint16 rsvd5:4; // 23:20 Reserved
  2466. Uint16 rsvd6:4; // 27:24 Reserved
  2467. Uint16 rsvd7:4; // 31:28 Reserved
  2468. };
  2469. union GPFCSEL2_REG {
  2470. Uint32 all;
  2471. struct GPFCSEL2_BITS bit;
  2472. };
  2473. struct GPFLOCK_BITS { // bits description
  2474. Uint16 GPIO160:1; // 0 Configuration Lock bit for this pin
  2475. Uint16 GPIO161:1; // 1 Configuration Lock bit for this pin
  2476. Uint16 GPIO162:1; // 2 Configuration Lock bit for this pin
  2477. Uint16 GPIO163:1; // 3 Configuration Lock bit for this pin
  2478. Uint16 GPIO164:1; // 4 Configuration Lock bit for this pin
  2479. Uint16 GPIO165:1; // 5 Configuration Lock bit for this pin
  2480. Uint16 GPIO166:1; // 6 Configuration Lock bit for this pin
  2481. Uint16 GPIO167:1; // 7 Configuration Lock bit for this pin
  2482. Uint16 GPIO168:1; // 8 Configuration Lock bit for this pin
  2483. Uint16 rsvd1:1; // 9 Reserved
  2484. Uint16 rsvd2:1; // 10 Reserved
  2485. Uint16 rsvd3:1; // 11 Reserved
  2486. Uint16 rsvd4:1; // 12 Reserved
  2487. Uint16 rsvd5:1; // 13 Reserved
  2488. Uint16 rsvd6:1; // 14 Reserved
  2489. Uint16 rsvd7:1; // 15 Reserved
  2490. Uint16 rsvd8:1; // 16 Reserved
  2491. Uint16 rsvd9:1; // 17 Reserved
  2492. Uint16 rsvd10:1; // 18 Reserved
  2493. Uint16 rsvd11:1; // 19 Reserved
  2494. Uint16 rsvd12:1; // 20 Reserved
  2495. Uint16 rsvd13:1; // 21 Reserved
  2496. Uint16 rsvd14:1; // 22 Reserved
  2497. Uint16 rsvd15:1; // 23 Reserved
  2498. Uint16 rsvd16:1; // 24 Reserved
  2499. Uint16 rsvd17:1; // 25 Reserved
  2500. Uint16 rsvd18:1; // 26 Reserved
  2501. Uint16 rsvd19:1; // 27 Reserved
  2502. Uint16 rsvd20:1; // 28 Reserved
  2503. Uint16 rsvd21:1; // 29 Reserved
  2504. Uint16 rsvd22:1; // 30 Reserved
  2505. Uint16 rsvd23:1; // 31 Reserved
  2506. };
  2507. union GPFLOCK_REG {
  2508. Uint32 all;
  2509. struct GPFLOCK_BITS bit;
  2510. };
  2511. struct GPFCR_BITS { // bits description
  2512. Uint16 GPIO160:1; // 0 Configuration lock commit bit for this pin
  2513. Uint16 GPIO161:1; // 1 Configuration lock commit bit for this pin
  2514. Uint16 GPIO162:1; // 2 Configuration lock commit bit for this pin
  2515. Uint16 GPIO163:1; // 3 Configuration lock commit bit for this pin
  2516. Uint16 GPIO164:1; // 4 Configuration lock commit bit for this pin
  2517. Uint16 GPIO165:1; // 5 Configuration lock commit bit for this pin
  2518. Uint16 GPIO166:1; // 6 Configuration lock commit bit for this pin
  2519. Uint16 GPIO167:1; // 7 Configuration lock commit bit for this pin
  2520. Uint16 GPIO168:1; // 8 Configuration lock commit bit for this pin
  2521. Uint16 rsvd1:1; // 9 Reserved
  2522. Uint16 rsvd2:1; // 10 Reserved
  2523. Uint16 rsvd3:1; // 11 Reserved
  2524. Uint16 rsvd4:1; // 12 Reserved
  2525. Uint16 rsvd5:1; // 13 Reserved
  2526. Uint16 rsvd6:1; // 14 Reserved
  2527. Uint16 rsvd7:1; // 15 Reserved
  2528. Uint16 rsvd8:1; // 16 Reserved
  2529. Uint16 rsvd9:1; // 17 Reserved
  2530. Uint16 rsvd10:1; // 18 Reserved
  2531. Uint16 rsvd11:1; // 19 Reserved
  2532. Uint16 rsvd12:1; // 20 Reserved
  2533. Uint16 rsvd13:1; // 21 Reserved
  2534. Uint16 rsvd14:1; // 22 Reserved
  2535. Uint16 rsvd15:1; // 23 Reserved
  2536. Uint16 rsvd16:1; // 24 Reserved
  2537. Uint16 rsvd17:1; // 25 Reserved
  2538. Uint16 rsvd18:1; // 26 Reserved
  2539. Uint16 rsvd19:1; // 27 Reserved
  2540. Uint16 rsvd20:1; // 28 Reserved
  2541. Uint16 rsvd21:1; // 29 Reserved
  2542. Uint16 rsvd22:1; // 30 Reserved
  2543. Uint16 rsvd23:1; // 31 Reserved
  2544. };
  2545. union GPFCR_REG {
  2546. Uint32 all;
  2547. struct GPFCR_BITS bit;
  2548. };
  2549. struct GPIO_CTRL_REGS {
  2550. union GPACTRL_REG GPACTRL; // GPIO A Qualification Sampling Period Control (GPIO0 to 31)
  2551. union GPAQSEL1_REG GPAQSEL1; // GPIO A Qualifier Select 1 Register (GPIO0 to 15)
  2552. union GPAQSEL2_REG GPAQSEL2; // GPIO A Qualifier Select 2 Register (GPIO16 to 31)
  2553. union GPAMUX1_REG GPAMUX1; // GPIO A Mux 1 Register (GPIO0 to 15)
  2554. union GPAMUX2_REG GPAMUX2; // GPIO A Mux 2 Register (GPIO16 to 31)
  2555. union GPADIR_REG GPADIR; // GPIO A Direction Register (GPIO0 to 31)
  2556. union GPAPUD_REG GPAPUD; // GPIO A Pull Up Disable Register (GPIO0 to 31)
  2557. Uint16 rsvd1[2]; // Reserved
  2558. union GPAINV_REG GPAINV; // GPIO A Input Polarity Invert Registers (GPIO0 to 31)
  2559. union GPAODR_REG GPAODR; // GPIO A Open Drain Output Register (GPIO0 to GPIO31)
  2560. Uint16 rsvd2[12]; // Reserved
  2561. union GPAGMUX1_REG GPAGMUX1; // GPIO A Peripheral Group Mux (GPIO0 to 15)
  2562. union GPAGMUX2_REG GPAGMUX2; // GPIO A Peripheral Group Mux (GPIO16 to 31)
  2563. Uint16 rsvd3[4]; // Reserved
  2564. union GPACSEL1_REG GPACSEL1; // GPIO A Core Select Register (GPIO0 to 7)
  2565. union GPACSEL2_REG GPACSEL2; // GPIO A Core Select Register (GPIO8 to 15)
  2566. union GPACSEL3_REG GPACSEL3; // GPIO A Core Select Register (GPIO16 to 23)
  2567. union GPACSEL4_REG GPACSEL4; // GPIO A Core Select Register (GPIO24 to 31)
  2568. Uint16 rsvd4[12]; // Reserved
  2569. union GPALOCK_REG GPALOCK; // GPIO A Lock Configuration Register (GPIO0 to 31)
  2570. union GPACR_REG GPACR; // GPIO A Lock Commit Register (GPIO0 to 31)
  2571. union GPBCTRL_REG GPBCTRL; // GPIO B Qualification Sampling Period Control (GPIO32 to 63)
  2572. union GPBQSEL1_REG GPBQSEL1; // GPIO B Qualifier Select 1 Register (GPIO32 to 47)
  2573. union GPBQSEL2_REG GPBQSEL2; // GPIO B Qualifier Select 2 Register (GPIO48 to 63)
  2574. union GPBMUX1_REG GPBMUX1; // GPIO B Mux 1 Register (GPIO32 to 47)
  2575. union GPBMUX2_REG GPBMUX2; // GPIO B Mux 2 Register (GPIO48 to 63)
  2576. union GPBDIR_REG GPBDIR; // GPIO B Direction Register (GPIO32 to 63)
  2577. union GPBPUD_REG GPBPUD; // GPIO B Pull Up Disable Register (GPIO32 to 63)
  2578. Uint16 rsvd5[2]; // Reserved
  2579. union GPBINV_REG GPBINV; // GPIO B Input Polarity Invert Registers (GPIO32 to 63)
  2580. union GPBODR_REG GPBODR; // GPIO B Open Drain Output Register (GPIO32 to GPIO63)
  2581. union GPBAMSEL_REG GPBAMSEL; // GPIO B Analog Mode Select register (GPIO32 to GPIO63)
  2582. Uint16 rsvd6[10]; // Reserved
  2583. union GPBGMUX1_REG GPBGMUX1; // GPIO B Peripheral Group Mux (GPIO32 to 47)
  2584. union GPBGMUX2_REG GPBGMUX2; // GPIO B Peripheral Group Mux (GPIO48 to 63)
  2585. Uint16 rsvd7[4]; // Reserved
  2586. union GPBCSEL1_REG GPBCSEL1; // GPIO B Core Select Register (GPIO32 to 39)
  2587. union GPBCSEL2_REG GPBCSEL2; // GPIO B Core Select Register (GPIO40 to 47)
  2588. union GPBCSEL3_REG GPBCSEL3; // GPIO B Core Select Register (GPIO48 to 55)
  2589. union GPBCSEL4_REG GPBCSEL4; // GPIO B Core Select Register (GPIO56 to 63)
  2590. Uint16 rsvd8[12]; // Reserved
  2591. union GPBLOCK_REG GPBLOCK; // GPIO B Lock Configuration Register (GPIO32 to 63)
  2592. union GPBCR_REG GPBCR; // GPIO B Lock Commit Register (GPIO32 to 63)
  2593. union GPCCTRL_REG GPCCTRL; // GPIO C Qualification Sampling Period Control (GPIO64 to 95)
  2594. union GPCQSEL1_REG GPCQSEL1; // GPIO C Qualifier Select 1 Register (GPIO64 to 79)
  2595. union GPCQSEL2_REG GPCQSEL2; // GPIO C Qualifier Select 2 Register (GPIO80 to 95)
  2596. union GPCMUX1_REG GPCMUX1; // GPIO C Mux 1 Register (GPIO64 to 79)
  2597. union GPCMUX2_REG GPCMUX2; // GPIO C Mux 2 Register (GPIO80 to 95)
  2598. union GPCDIR_REG GPCDIR; // GPIO C Direction Register (GPIO64 to 95)
  2599. union GPCPUD_REG GPCPUD; // GPIO C Pull Up Disable Register (GPIO64 to 95)
  2600. Uint16 rsvd9[2]; // Reserved
  2601. union GPCINV_REG GPCINV; // GPIO C Input Polarity Invert Registers (GPIO64 to 95)
  2602. union GPCODR_REG GPCODR; // GPIO C Open Drain Output Register (GPIO64 to GPIO95)
  2603. Uint16 rsvd10[12]; // Reserved
  2604. union GPCGMUX1_REG GPCGMUX1; // GPIO C Peripheral Group Mux (GPIO64 to 79)
  2605. union GPCGMUX2_REG GPCGMUX2; // GPIO C Peripheral Group Mux (GPIO80 to 95)
  2606. Uint16 rsvd11[4]; // Reserved
  2607. union GPCCSEL1_REG GPCCSEL1; // GPIO C Core Select Register (GPIO64 to 71)
  2608. union GPCCSEL2_REG GPCCSEL2; // GPIO C Core Select Register (GPIO72 to 79)
  2609. union GPCCSEL3_REG GPCCSEL3; // GPIO C Core Select Register (GPIO80 to 87)
  2610. union GPCCSEL4_REG GPCCSEL4; // GPIO C Core Select Register (GPIO88 to 95)
  2611. Uint16 rsvd12[12]; // Reserved
  2612. union GPCLOCK_REG GPCLOCK; // GPIO C Lock Configuration Register (GPIO64 to 95)
  2613. union GPCCR_REG GPCCR; // GPIO C Lock Commit Register (GPIO64 to 95)
  2614. union GPDCTRL_REG GPDCTRL; // GPIO D Qualification Sampling Period Control (GPIO96 to 127)
  2615. union GPDQSEL1_REG GPDQSEL1; // GPIO D Qualifier Select 1 Register (GPIO96 to 111)
  2616. union GPDQSEL2_REG GPDQSEL2; // GPIO D Qualifier Select 2 Register (GPIO112 to 127)
  2617. union GPDMUX1_REG GPDMUX1; // GPIO D Mux 1 Register (GPIO96 to 111)
  2618. union GPDMUX2_REG GPDMUX2; // GPIO D Mux 2 Register (GPIO112 to 127)
  2619. union GPDDIR_REG GPDDIR; // GPIO D Direction Register (GPIO96 to 127)
  2620. union GPDPUD_REG GPDPUD; // GPIO D Pull Up Disable Register (GPIO96 to 127)
  2621. Uint16 rsvd13[2]; // Reserved
  2622. union GPDINV_REG GPDINV; // GPIO D Input Polarity Invert Registers (GPIO96 to 127)
  2623. union GPDODR_REG GPDODR; // GPIO D Open Drain Output Register (GPIO96 to GPIO127)
  2624. Uint16 rsvd14[12]; // Reserved
  2625. union GPDGMUX1_REG GPDGMUX1; // GPIO D Peripheral Group Mux (GPIO96 to 111)
  2626. union GPDGMUX2_REG GPDGMUX2; // GPIO D Peripheral Group Mux (GPIO112 to 127)
  2627. Uint16 rsvd15[4]; // Reserved
  2628. union GPDCSEL1_REG GPDCSEL1; // GPIO D Core Select Register (GPIO96 to 103)
  2629. union GPDCSEL2_REG GPDCSEL2; // GPIO D Core Select Register (GPIO104 to 111)
  2630. union GPDCSEL3_REG GPDCSEL3; // GPIO D Core Select Register (GPIO112 to 119)
  2631. union GPDCSEL4_REG GPDCSEL4; // GPIO D Core Select Register (GPIO120 to 127)
  2632. Uint16 rsvd16[12]; // Reserved
  2633. union GPDLOCK_REG GPDLOCK; // GPIO D Lock Configuration Register (GPIO96 to 127)
  2634. union GPDCR_REG GPDCR; // GPIO D Lock Commit Register (GPIO96 to 127)
  2635. union GPECTRL_REG GPECTRL; // GPIO E Qualification Sampling Period Control (GPIO128 to 159)
  2636. union GPEQSEL1_REG GPEQSEL1; // GPIO E Qualifier Select 1 Register (GPIO128 to 143)
  2637. union GPEQSEL2_REG GPEQSEL2; // GPIO E Qualifier Select 2 Register (GPIO144 to 159)
  2638. union GPEMUX1_REG GPEMUX1; // GPIO E Mux 1 Register (GPIO128 to 143)
  2639. union GPEMUX2_REG GPEMUX2; // GPIO E Mux 2 Register (GPIO144 to 159)
  2640. union GPEDIR_REG GPEDIR; // GPIO E Direction Register (GPIO128 to 159)
  2641. union GPEPUD_REG GPEPUD; // GPIO E Pull Up Disable Register (GPIO128 to 159)
  2642. Uint16 rsvd17[2]; // Reserved
  2643. union GPEINV_REG GPEINV; // GPIO E Input Polarity Invert Registers (GPIO128 to 159)
  2644. union GPEODR_REG GPEODR; // GPIO E Open Drain Output Register (GPIO128 to GPIO159)
  2645. Uint16 rsvd18[12]; // Reserved
  2646. union GPEGMUX1_REG GPEGMUX1; // GPIO E Peripheral Group Mux (GPIO128 to 143)
  2647. union GPEGMUX2_REG GPEGMUX2; // GPIO E Peripheral Group Mux (GPIO144 to 159)
  2648. Uint16 rsvd19[4]; // Reserved
  2649. union GPECSEL1_REG GPECSEL1; // GPIO E Core Select Register (GPIO128 to 135)
  2650. union GPECSEL2_REG GPECSEL2; // GPIO E Core Select Register (GPIO136 to 143)
  2651. union GPECSEL3_REG GPECSEL3; // GPIO E Core Select Register (GPIO144 to 151)
  2652. union GPECSEL4_REG GPECSEL4; // GPIO E Core Select Register (GPIO152 to 159)
  2653. Uint16 rsvd20[12]; // Reserved
  2654. union GPELOCK_REG GPELOCK; // GPIO E Lock Configuration Register (GPIO128 to 159)
  2655. union GPECR_REG GPECR; // GPIO E Lock Commit Register (GPIO128 to 159)
  2656. union GPFCTRL_REG GPFCTRL; // GPIO F Qualification Sampling Period Control (GPIO160 to 168)
  2657. union GPFQSEL1_REG GPFQSEL1; // GPIO F Qualifier Select 1 Register (GPIO160 to 168)
  2658. Uint16 rsvd21[2]; // Reserved
  2659. union GPFMUX1_REG GPFMUX1; // GPIO F Mux 1 Register (GPIO160 to 168)
  2660. Uint16 rsvd22[2]; // Reserved
  2661. union GPFDIR_REG GPFDIR; // GPIO F Direction Register (GPIO160 to 168)
  2662. union GPFPUD_REG GPFPUD; // GPIO F Pull Up Disable Register (GPIO160 to 168)
  2663. Uint16 rsvd23[2]; // Reserved
  2664. union GPFINV_REG GPFINV; // GPIO F Input Polarity Invert Registers (GPIO160 to 168)
  2665. union GPFODR_REG GPFODR; // GPIO F Open Drain Output Register (GPIO160 to GPIO168)
  2666. Uint16 rsvd24[12]; // Reserved
  2667. union GPFGMUX1_REG GPFGMUX1; // GPIO F Peripheral Group Mux (GPIO160 to 168)
  2668. Uint16 rsvd25[6]; // Reserved
  2669. union GPFCSEL1_REG GPFCSEL1; // GPIO F Core Select Register (GPIO160 to 167)
  2670. union GPFCSEL2_REG GPFCSEL2; // GPIO F Core Select Register (GPIO168)
  2671. Uint16 rsvd26[16]; // Reserved
  2672. union GPFLOCK_REG GPFLOCK; // GPIO F Lock Configuration Register (GPIO160 to 168)
  2673. union GPFCR_REG GPFCR; // GPIO F Lock Commit Register (GPIO160 to 168)
  2674. };
  2675. struct GPADAT_BITS { // bits description
  2676. Uint16 GPIO0:1; // 0 Data Register for this pin
  2677. Uint16 GPIO1:1; // 1 Data Register for this pin
  2678. Uint16 GPIO2:1; // 2 Data Register for this pin
  2679. Uint16 GPIO3:1; // 3 Data Register for this pin
  2680. Uint16 GPIO4:1; // 4 Data Register for this pin
  2681. Uint16 GPIO5:1; // 5 Data Register for this pin
  2682. Uint16 GPIO6:1; // 6 Data Register for this pin
  2683. Uint16 GPIO7:1; // 7 Data Register for this pin
  2684. Uint16 GPIO8:1; // 8 Data Register for this pin
  2685. Uint16 GPIO9:1; // 9 Data Register for this pin
  2686. Uint16 GPIO10:1; // 10 Data Register for this pin
  2687. Uint16 GPIO11:1; // 11 Data Register for this pin
  2688. Uint16 GPIO12:1; // 12 Data Register for this pin
  2689. Uint16 GPIO13:1; // 13 Data Register for this pin
  2690. Uint16 GPIO14:1; // 14 Data Register for this pin
  2691. Uint16 GPIO15:1; // 15 Data Register for this pin
  2692. Uint16 GPIO16:1; // 16 Data Register for this pin
  2693. Uint16 GPIO17:1; // 17 Data Register for this pin
  2694. Uint16 GPIO18:1; // 18 Data Register for this pin
  2695. Uint16 GPIO19:1; // 19 Data Register for this pin
  2696. Uint16 GPIO20:1; // 20 Data Register for this pin
  2697. Uint16 GPIO21:1; // 21 Data Register for this pin
  2698. Uint16 GPIO22:1; // 22 Data Register for this pin
  2699. Uint16 GPIO23:1; // 23 Data Register for this pin
  2700. Uint16 GPIO24:1; // 24 Data Register for this pin
  2701. Uint16 GPIO25:1; // 25 Data Register for this pin
  2702. Uint16 GPIO26:1; // 26 Data Register for this pin
  2703. Uint16 GPIO27:1; // 27 Data Register for this pin
  2704. Uint16 GPIO28:1; // 28 Data Register for this pin
  2705. Uint16 GPIO29:1; // 29 Data Register for this pin
  2706. Uint16 GPIO30:1; // 30 Data Register for this pin
  2707. Uint16 GPIO31:1; // 31 Data Register for this pin
  2708. };
  2709. union GPADAT_REG {
  2710. Uint32 all;
  2711. struct GPADAT_BITS bit;
  2712. };
  2713. struct GPASET_BITS { // bits description
  2714. Uint16 GPIO0:1; // 0 Output Set bit for this pin
  2715. Uint16 GPIO1:1; // 1 Output Set bit for this pin
  2716. Uint16 GPIO2:1; // 2 Output Set bit for this pin
  2717. Uint16 GPIO3:1; // 3 Output Set bit for this pin
  2718. Uint16 GPIO4:1; // 4 Output Set bit for this pin
  2719. Uint16 GPIO5:1; // 5 Output Set bit for this pin
  2720. Uint16 GPIO6:1; // 6 Output Set bit for this pin
  2721. Uint16 GPIO7:1; // 7 Output Set bit for this pin
  2722. Uint16 GPIO8:1; // 8 Output Set bit for this pin
  2723. Uint16 GPIO9:1; // 9 Output Set bit for this pin
  2724. Uint16 GPIO10:1; // 10 Output Set bit for this pin
  2725. Uint16 GPIO11:1; // 11 Output Set bit for this pin
  2726. Uint16 GPIO12:1; // 12 Output Set bit for this pin
  2727. Uint16 GPIO13:1; // 13 Output Set bit for this pin
  2728. Uint16 GPIO14:1; // 14 Output Set bit for this pin
  2729. Uint16 GPIO15:1; // 15 Output Set bit for this pin
  2730. Uint16 GPIO16:1; // 16 Output Set bit for this pin
  2731. Uint16 GPIO17:1; // 17 Output Set bit for this pin
  2732. Uint16 GPIO18:1; // 18 Output Set bit for this pin
  2733. Uint16 GPIO19:1; // 19 Output Set bit for this pin
  2734. Uint16 GPIO20:1; // 20 Output Set bit for this pin
  2735. Uint16 GPIO21:1; // 21 Output Set bit for this pin
  2736. Uint16 GPIO22:1; // 22 Output Set bit for this pin
  2737. Uint16 GPIO23:1; // 23 Output Set bit for this pin
  2738. Uint16 GPIO24:1; // 24 Output Set bit for this pin
  2739. Uint16 GPIO25:1; // 25 Output Set bit for this pin
  2740. Uint16 GPIO26:1; // 26 Output Set bit for this pin
  2741. Uint16 GPIO27:1; // 27 Output Set bit for this pin
  2742. Uint16 GPIO28:1; // 28 Output Set bit for this pin
  2743. Uint16 GPIO29:1; // 29 Output Set bit for this pin
  2744. Uint16 GPIO30:1; // 30 Output Set bit for this pin
  2745. Uint16 GPIO31:1; // 31 Output Set bit for this pin
  2746. };
  2747. union GPASET_REG {
  2748. Uint32 all;
  2749. struct GPASET_BITS bit;
  2750. };
  2751. struct GPACLEAR_BITS { // bits description
  2752. Uint16 GPIO0:1; // 0 Output Clear bit for this pin
  2753. Uint16 GPIO1:1; // 1 Output Clear bit for this pin
  2754. Uint16 GPIO2:1; // 2 Output Clear bit for this pin
  2755. Uint16 GPIO3:1; // 3 Output Clear bit for this pin
  2756. Uint16 GPIO4:1; // 4 Output Clear bit for this pin
  2757. Uint16 GPIO5:1; // 5 Output Clear bit for this pin
  2758. Uint16 GPIO6:1; // 6 Output Clear bit for this pin
  2759. Uint16 GPIO7:1; // 7 Output Clear bit for this pin
  2760. Uint16 GPIO8:1; // 8 Output Clear bit for this pin
  2761. Uint16 GPIO9:1; // 9 Output Clear bit for this pin
  2762. Uint16 GPIO10:1; // 10 Output Clear bit for this pin
  2763. Uint16 GPIO11:1; // 11 Output Clear bit for this pin
  2764. Uint16 GPIO12:1; // 12 Output Clear bit for this pin
  2765. Uint16 GPIO13:1; // 13 Output Clear bit for this pin
  2766. Uint16 GPIO14:1; // 14 Output Clear bit for this pin
  2767. Uint16 GPIO15:1; // 15 Output Clear bit for this pin
  2768. Uint16 GPIO16:1; // 16 Output Clear bit for this pin
  2769. Uint16 GPIO17:1; // 17 Output Clear bit for this pin
  2770. Uint16 GPIO18:1; // 18 Output Clear bit for this pin
  2771. Uint16 GPIO19:1; // 19 Output Clear bit for this pin
  2772. Uint16 GPIO20:1; // 20 Output Clear bit for this pin
  2773. Uint16 GPIO21:1; // 21 Output Clear bit for this pin
  2774. Uint16 GPIO22:1; // 22 Output Clear bit for this pin
  2775. Uint16 GPIO23:1; // 23 Output Clear bit for this pin
  2776. Uint16 GPIO24:1; // 24 Output Clear bit for this pin
  2777. Uint16 GPIO25:1; // 25 Output Clear bit for this pin
  2778. Uint16 GPIO26:1; // 26 Output Clear bit for this pin
  2779. Uint16 GPIO27:1; // 27 Output Clear bit for this pin
  2780. Uint16 GPIO28:1; // 28 Output Clear bit for this pin
  2781. Uint16 GPIO29:1; // 29 Output Clear bit for this pin
  2782. Uint16 GPIO30:1; // 30 Output Clear bit for this pin
  2783. Uint16 GPIO31:1; // 31 Output Clear bit for this pin
  2784. };
  2785. union GPACLEAR_REG {
  2786. Uint32 all;
  2787. struct GPACLEAR_BITS bit;
  2788. };
  2789. struct GPATOGGLE_BITS { // bits description
  2790. Uint16 GPIO0:1; // 0 Output Toggle bit for this pin
  2791. Uint16 GPIO1:1; // 1 Output Toggle bit for this pin
  2792. Uint16 GPIO2:1; // 2 Output Toggle bit for this pin
  2793. Uint16 GPIO3:1; // 3 Output Toggle bit for this pin
  2794. Uint16 GPIO4:1; // 4 Output Toggle bit for this pin
  2795. Uint16 GPIO5:1; // 5 Output Toggle bit for this pin
  2796. Uint16 GPIO6:1; // 6 Output Toggle bit for this pin
  2797. Uint16 GPIO7:1; // 7 Output Toggle bit for this pin
  2798. Uint16 GPIO8:1; // 8 Output Toggle bit for this pin
  2799. Uint16 GPIO9:1; // 9 Output Toggle bit for this pin
  2800. Uint16 GPIO10:1; // 10 Output Toggle bit for this pin
  2801. Uint16 GPIO11:1; // 11 Output Toggle bit for this pin
  2802. Uint16 GPIO12:1; // 12 Output Toggle bit for this pin
  2803. Uint16 GPIO13:1; // 13 Output Toggle bit for this pin
  2804. Uint16 GPIO14:1; // 14 Output Toggle bit for this pin
  2805. Uint16 GPIO15:1; // 15 Output Toggle bit for this pin
  2806. Uint16 GPIO16:1; // 16 Output Toggle bit for this pin
  2807. Uint16 GPIO17:1; // 17 Output Toggle bit for this pin
  2808. Uint16 GPIO18:1; // 18 Output Toggle bit for this pin
  2809. Uint16 GPIO19:1; // 19 Output Toggle bit for this pin
  2810. Uint16 GPIO20:1; // 20 Output Toggle bit for this pin
  2811. Uint16 GPIO21:1; // 21 Output Toggle bit for this pin
  2812. Uint16 GPIO22:1; // 22 Output Toggle bit for this pin
  2813. Uint16 GPIO23:1; // 23 Output Toggle bit for this pin
  2814. Uint16 GPIO24:1; // 24 Output Toggle bit for this pin
  2815. Uint16 GPIO25:1; // 25 Output Toggle bit for this pin
  2816. Uint16 GPIO26:1; // 26 Output Toggle bit for this pin
  2817. Uint16 GPIO27:1; // 27 Output Toggle bit for this pin
  2818. Uint16 GPIO28:1; // 28 Output Toggle bit for this pin
  2819. Uint16 GPIO29:1; // 29 Output Toggle bit for this pin
  2820. Uint16 GPIO30:1; // 30 Output Toggle bit for this pin
  2821. Uint16 GPIO31:1; // 31 Output Toggle bit for this pin
  2822. };
  2823. union GPATOGGLE_REG {
  2824. Uint32 all;
  2825. struct GPATOGGLE_BITS bit;
  2826. };
  2827. struct GPBDAT_BITS { // bits description
  2828. Uint16 GPIO32:1; // 0 Data Register for this pin
  2829. Uint16 GPIO33:1; // 1 Data Register for this pin
  2830. Uint16 GPIO34:1; // 2 Data Register for this pin
  2831. Uint16 GPIO35:1; // 3 Data Register for this pin
  2832. Uint16 GPIO36:1; // 4 Data Register for this pin
  2833. Uint16 GPIO37:1; // 5 Data Register for this pin
  2834. Uint16 GPIO38:1; // 6 Data Register for this pin
  2835. Uint16 GPIO39:1; // 7 Data Register for this pin
  2836. Uint16 GPIO40:1; // 8 Data Register for this pin
  2837. Uint16 GPIO41:1; // 9 Data Register for this pin
  2838. Uint16 GPIO42:1; // 10 Data Register for this pin
  2839. Uint16 GPIO43:1; // 11 Data Register for this pin
  2840. Uint16 GPIO44:1; // 12 Data Register for this pin
  2841. Uint16 GPIO45:1; // 13 Data Register for this pin
  2842. Uint16 GPIO46:1; // 14 Data Register for this pin
  2843. Uint16 GPIO47:1; // 15 Data Register for this pin
  2844. Uint16 GPIO48:1; // 16 Data Register for this pin
  2845. Uint16 GPIO49:1; // 17 Data Register for this pin
  2846. Uint16 GPIO50:1; // 18 Data Register for this pin
  2847. Uint16 GPIO51:1; // 19 Data Register for this pin
  2848. Uint16 GPIO52:1; // 20 Data Register for this pin
  2849. Uint16 GPIO53:1; // 21 Data Register for this pin
  2850. Uint16 GPIO54:1; // 22 Data Register for this pin
  2851. Uint16 GPIO55:1; // 23 Data Register for this pin
  2852. Uint16 GPIO56:1; // 24 Data Register for this pin
  2853. Uint16 GPIO57:1; // 25 Data Register for this pin
  2854. Uint16 GPIO58:1; // 26 Data Register for this pin
  2855. Uint16 GPIO59:1; // 27 Data Register for this pin
  2856. Uint16 GPIO60:1; // 28 Data Register for this pin
  2857. Uint16 GPIO61:1; // 29 Data Register for this pin
  2858. Uint16 GPIO62:1; // 30 Data Register for this pin
  2859. Uint16 GPIO63:1; // 31 Data Register for this pin
  2860. };
  2861. union GPBDAT_REG {
  2862. Uint32 all;
  2863. struct GPBDAT_BITS bit;
  2864. };
  2865. struct GPBSET_BITS { // bits description
  2866. Uint16 GPIO32:1; // 0 Output Set bit for this pin
  2867. Uint16 GPIO33:1; // 1 Output Set bit for this pin
  2868. Uint16 GPIO34:1; // 2 Output Set bit for this pin
  2869. Uint16 GPIO35:1; // 3 Output Set bit for this pin
  2870. Uint16 GPIO36:1; // 4 Output Set bit for this pin
  2871. Uint16 GPIO37:1; // 5 Output Set bit for this pin
  2872. Uint16 GPIO38:1; // 6 Output Set bit for this pin
  2873. Uint16 GPIO39:1; // 7 Output Set bit for this pin
  2874. Uint16 GPIO40:1; // 8 Output Set bit for this pin
  2875. Uint16 GPIO41:1; // 9 Output Set bit for this pin
  2876. Uint16 GPIO42:1; // 10 Output Set bit for this pin
  2877. Uint16 GPIO43:1; // 11 Output Set bit for this pin
  2878. Uint16 GPIO44:1; // 12 Output Set bit for this pin
  2879. Uint16 GPIO45:1; // 13 Output Set bit for this pin
  2880. Uint16 GPIO46:1; // 14 Output Set bit for this pin
  2881. Uint16 GPIO47:1; // 15 Output Set bit for this pin
  2882. Uint16 GPIO48:1; // 16 Output Set bit for this pin
  2883. Uint16 GPIO49:1; // 17 Output Set bit for this pin
  2884. Uint16 GPIO50:1; // 18 Output Set bit for this pin
  2885. Uint16 GPIO51:1; // 19 Output Set bit for this pin
  2886. Uint16 GPIO52:1; // 20 Output Set bit for this pin
  2887. Uint16 GPIO53:1; // 21 Output Set bit for this pin
  2888. Uint16 GPIO54:1; // 22 Output Set bit for this pin
  2889. Uint16 GPIO55:1; // 23 Output Set bit for this pin
  2890. Uint16 GPIO56:1; // 24 Output Set bit for this pin
  2891. Uint16 GPIO57:1; // 25 Output Set bit for this pin
  2892. Uint16 GPIO58:1; // 26 Output Set bit for this pin
  2893. Uint16 GPIO59:1; // 27 Output Set bit for this pin
  2894. Uint16 GPIO60:1; // 28 Output Set bit for this pin
  2895. Uint16 GPIO61:1; // 29 Output Set bit for this pin
  2896. Uint16 GPIO62:1; // 30 Output Set bit for this pin
  2897. Uint16 GPIO63:1; // 31 Output Set bit for this pin
  2898. };
  2899. union GPBSET_REG {
  2900. Uint32 all;
  2901. struct GPBSET_BITS bit;
  2902. };
  2903. struct GPBCLEAR_BITS { // bits description
  2904. Uint16 GPIO32:1; // 0 Output Clear bit for this pin
  2905. Uint16 GPIO33:1; // 1 Output Clear bit for this pin
  2906. Uint16 GPIO34:1; // 2 Output Clear bit for this pin
  2907. Uint16 GPIO35:1; // 3 Output Clear bit for this pin
  2908. Uint16 GPIO36:1; // 4 Output Clear bit for this pin
  2909. Uint16 GPIO37:1; // 5 Output Clear bit for this pin
  2910. Uint16 GPIO38:1; // 6 Output Clear bit for this pin
  2911. Uint16 GPIO39:1; // 7 Output Clear bit for this pin
  2912. Uint16 GPIO40:1; // 8 Output Clear bit for this pin
  2913. Uint16 GPIO41:1; // 9 Output Clear bit for this pin
  2914. Uint16 GPIO42:1; // 10 Output Clear bit for this pin
  2915. Uint16 GPIO43:1; // 11 Output Clear bit for this pin
  2916. Uint16 GPIO44:1; // 12 Output Clear bit for this pin
  2917. Uint16 GPIO45:1; // 13 Output Clear bit for this pin
  2918. Uint16 GPIO46:1; // 14 Output Clear bit for this pin
  2919. Uint16 GPIO47:1; // 15 Output Clear bit for this pin
  2920. Uint16 GPIO48:1; // 16 Output Clear bit for this pin
  2921. Uint16 GPIO49:1; // 17 Output Clear bit for this pin
  2922. Uint16 GPIO50:1; // 18 Output Clear bit for this pin
  2923. Uint16 GPIO51:1; // 19 Output Clear bit for this pin
  2924. Uint16 GPIO52:1; // 20 Output Clear bit for this pin
  2925. Uint16 GPIO53:1; // 21 Output Clear bit for this pin
  2926. Uint16 GPIO54:1; // 22 Output Clear bit for this pin
  2927. Uint16 GPIO55:1; // 23 Output Clear bit for this pin
  2928. Uint16 GPIO56:1; // 24 Output Clear bit for this pin
  2929. Uint16 GPIO57:1; // 25 Output Clear bit for this pin
  2930. Uint16 GPIO58:1; // 26 Output Clear bit for this pin
  2931. Uint16 GPIO59:1; // 27 Output Clear bit for this pin
  2932. Uint16 GPIO60:1; // 28 Output Clear bit for this pin
  2933. Uint16 GPIO61:1; // 29 Output Clear bit for this pin
  2934. Uint16 GPIO62:1; // 30 Output Clear bit for this pin
  2935. Uint16 GPIO63:1; // 31 Output Clear bit for this pin
  2936. };
  2937. union GPBCLEAR_REG {
  2938. Uint32 all;
  2939. struct GPBCLEAR_BITS bit;
  2940. };
  2941. struct GPBTOGGLE_BITS { // bits description
  2942. Uint16 GPIO32:1; // 0 Output Toggle bit for this pin
  2943. Uint16 GPIO33:1; // 1 Output Toggle bit for this pin
  2944. Uint16 GPIO34:1; // 2 Output Toggle bit for this pin
  2945. Uint16 GPIO35:1; // 3 Output Toggle bit for this pin
  2946. Uint16 GPIO36:1; // 4 Output Toggle bit for this pin
  2947. Uint16 GPIO37:1; // 5 Output Toggle bit for this pin
  2948. Uint16 GPIO38:1; // 6 Output Toggle bit for this pin
  2949. Uint16 GPIO39:1; // 7 Output Toggle bit for this pin
  2950. Uint16 GPIO40:1; // 8 Output Toggle bit for this pin
  2951. Uint16 GPIO41:1; // 9 Output Toggle bit for this pin
  2952. Uint16 GPIO42:1; // 10 Output Toggle bit for this pin
  2953. Uint16 GPIO43:1; // 11 Output Toggle bit for this pin
  2954. Uint16 GPIO44:1; // 12 Output Toggle bit for this pin
  2955. Uint16 GPIO45:1; // 13 Output Toggle bit for this pin
  2956. Uint16 GPIO46:1; // 14 Output Toggle bit for this pin
  2957. Uint16 GPIO47:1; // 15 Output Toggle bit for this pin
  2958. Uint16 GPIO48:1; // 16 Output Toggle bit for this pin
  2959. Uint16 GPIO49:1; // 17 Output Toggle bit for this pin
  2960. Uint16 GPIO50:1; // 18 Output Toggle bit for this pin
  2961. Uint16 GPIO51:1; // 19 Output Toggle bit for this pin
  2962. Uint16 GPIO52:1; // 20 Output Toggle bit for this pin
  2963. Uint16 GPIO53:1; // 21 Output Toggle bit for this pin
  2964. Uint16 GPIO54:1; // 22 Output Toggle bit for this pin
  2965. Uint16 GPIO55:1; // 23 Output Toggle bit for this pin
  2966. Uint16 GPIO56:1; // 24 Output Toggle bit for this pin
  2967. Uint16 GPIO57:1; // 25 Output Toggle bit for this pin
  2968. Uint16 GPIO58:1; // 26 Output Toggle bit for this pin
  2969. Uint16 GPIO59:1; // 27 Output Toggle bit for this pin
  2970. Uint16 GPIO60:1; // 28 Output Toggle bit for this pin
  2971. Uint16 GPIO61:1; // 29 Output Toggle bit for this pin
  2972. Uint16 GPIO62:1; // 30 Output Toggle bit for this pin
  2973. Uint16 GPIO63:1; // 31 Output Toggle bit for this pin
  2974. };
  2975. union GPBTOGGLE_REG {
  2976. Uint32 all;
  2977. struct GPBTOGGLE_BITS bit;
  2978. };
  2979. struct GPCDAT_BITS { // bits description
  2980. Uint16 GPIO64:1; // 0 Data Register for this pin
  2981. Uint16 GPIO65:1; // 1 Data Register for this pin
  2982. Uint16 GPIO66:1; // 2 Data Register for this pin
  2983. Uint16 GPIO67:1; // 3 Data Register for this pin
  2984. Uint16 GPIO68:1; // 4 Data Register for this pin
  2985. Uint16 GPIO69:1; // 5 Data Register for this pin
  2986. Uint16 GPIO70:1; // 6 Data Register for this pin
  2987. Uint16 GPIO71:1; // 7 Data Register for this pin
  2988. Uint16 GPIO72:1; // 8 Data Register for this pin
  2989. Uint16 GPIO73:1; // 9 Data Register for this pin
  2990. Uint16 GPIO74:1; // 10 Data Register for this pin
  2991. Uint16 GPIO75:1; // 11 Data Register for this pin
  2992. Uint16 GPIO76:1; // 12 Data Register for this pin
  2993. Uint16 GPIO77:1; // 13 Data Register for this pin
  2994. Uint16 GPIO78:1; // 14 Data Register for this pin
  2995. Uint16 GPIO79:1; // 15 Data Register for this pin
  2996. Uint16 GPIO80:1; // 16 Data Register for this pin
  2997. Uint16 GPIO81:1; // 17 Data Register for this pin
  2998. Uint16 GPIO82:1; // 18 Data Register for this pin
  2999. Uint16 GPIO83:1; // 19 Data Register for this pin
  3000. Uint16 GPIO84:1; // 20 Data Register for this pin
  3001. Uint16 GPIO85:1; // 21 Data Register for this pin
  3002. Uint16 GPIO86:1; // 22 Data Register for this pin
  3003. Uint16 GPIO87:1; // 23 Data Register for this pin
  3004. Uint16 GPIO88:1; // 24 Data Register for this pin
  3005. Uint16 GPIO89:1; // 25 Data Register for this pin
  3006. Uint16 GPIO90:1; // 26 Data Register for this pin
  3007. Uint16 GPIO91:1; // 27 Data Register for this pin
  3008. Uint16 GPIO92:1; // 28 Data Register for this pin
  3009. Uint16 GPIO93:1; // 29 Data Register for this pin
  3010. Uint16 GPIO94:1; // 30 Data Register for this pin
  3011. Uint16 GPIO95:1; // 31 Data Register for this pin
  3012. };
  3013. union GPCDAT_REG {
  3014. Uint32 all;
  3015. struct GPCDAT_BITS bit;
  3016. };
  3017. struct GPCSET_BITS { // bits description
  3018. Uint16 GPIO64:1; // 0 Output Set bit for this pin
  3019. Uint16 GPIO65:1; // 1 Output Set bit for this pin
  3020. Uint16 GPIO66:1; // 2 Output Set bit for this pin
  3021. Uint16 GPIO67:1; // 3 Output Set bit for this pin
  3022. Uint16 GPIO68:1; // 4 Output Set bit for this pin
  3023. Uint16 GPIO69:1; // 5 Output Set bit for this pin
  3024. Uint16 GPIO70:1; // 6 Output Set bit for this pin
  3025. Uint16 GPIO71:1; // 7 Output Set bit for this pin
  3026. Uint16 GPIO72:1; // 8 Output Set bit for this pin
  3027. Uint16 GPIO73:1; // 9 Output Set bit for this pin
  3028. Uint16 GPIO74:1; // 10 Output Set bit for this pin
  3029. Uint16 GPIO75:1; // 11 Output Set bit for this pin
  3030. Uint16 GPIO76:1; // 12 Output Set bit for this pin
  3031. Uint16 GPIO77:1; // 13 Output Set bit for this pin
  3032. Uint16 GPIO78:1; // 14 Output Set bit for this pin
  3033. Uint16 GPIO79:1; // 15 Output Set bit for this pin
  3034. Uint16 GPIO80:1; // 16 Output Set bit for this pin
  3035. Uint16 GPIO81:1; // 17 Output Set bit for this pin
  3036. Uint16 GPIO82:1; // 18 Output Set bit for this pin
  3037. Uint16 GPIO83:1; // 19 Output Set bit for this pin
  3038. Uint16 GPIO84:1; // 20 Output Set bit for this pin
  3039. Uint16 GPIO85:1; // 21 Output Set bit for this pin
  3040. Uint16 GPIO86:1; // 22 Output Set bit for this pin
  3041. Uint16 GPIO87:1; // 23 Output Set bit for this pin
  3042. Uint16 GPIO88:1; // 24 Output Set bit for this pin
  3043. Uint16 GPIO89:1; // 25 Output Set bit for this pin
  3044. Uint16 GPIO90:1; // 26 Output Set bit for this pin
  3045. Uint16 GPIO91:1; // 27 Output Set bit for this pin
  3046. Uint16 GPIO92:1; // 28 Output Set bit for this pin
  3047. Uint16 GPIO93:1; // 29 Output Set bit for this pin
  3048. Uint16 GPIO94:1; // 30 Output Set bit for this pin
  3049. Uint16 GPIO95:1; // 31 Output Set bit for this pin
  3050. };
  3051. union GPCSET_REG {
  3052. Uint32 all;
  3053. struct GPCSET_BITS bit;
  3054. };
  3055. struct GPCCLEAR_BITS { // bits description
  3056. Uint16 GPIO64:1; // 0 Output Clear bit for this pin
  3057. Uint16 GPIO65:1; // 1 Output Clear bit for this pin
  3058. Uint16 GPIO66:1; // 2 Output Clear bit for this pin
  3059. Uint16 GPIO67:1; // 3 Output Clear bit for this pin
  3060. Uint16 GPIO68:1; // 4 Output Clear bit for this pin
  3061. Uint16 GPIO69:1; // 5 Output Clear bit for this pin
  3062. Uint16 GPIO70:1; // 6 Output Clear bit for this pin
  3063. Uint16 GPIO71:1; // 7 Output Clear bit for this pin
  3064. Uint16 GPIO72:1; // 8 Output Clear bit for this pin
  3065. Uint16 GPIO73:1; // 9 Output Clear bit for this pin
  3066. Uint16 GPIO74:1; // 10 Output Clear bit for this pin
  3067. Uint16 GPIO75:1; // 11 Output Clear bit for this pin
  3068. Uint16 GPIO76:1; // 12 Output Clear bit for this pin
  3069. Uint16 GPIO77:1; // 13 Output Clear bit for this pin
  3070. Uint16 GPIO78:1; // 14 Output Clear bit for this pin
  3071. Uint16 GPIO79:1; // 15 Output Clear bit for this pin
  3072. Uint16 GPIO80:1; // 16 Output Clear bit for this pin
  3073. Uint16 GPIO81:1; // 17 Output Clear bit for this pin
  3074. Uint16 GPIO82:1; // 18 Output Clear bit for this pin
  3075. Uint16 GPIO83:1; // 19 Output Clear bit for this pin
  3076. Uint16 GPIO84:1; // 20 Output Clear bit for this pin
  3077. Uint16 GPIO85:1; // 21 Output Clear bit for this pin
  3078. Uint16 GPIO86:1; // 22 Output Clear bit for this pin
  3079. Uint16 GPIO87:1; // 23 Output Clear bit for this pin
  3080. Uint16 GPIO88:1; // 24 Output Clear bit for this pin
  3081. Uint16 GPIO89:1; // 25 Output Clear bit for this pin
  3082. Uint16 GPIO90:1; // 26 Output Clear bit for this pin
  3083. Uint16 GPIO91:1; // 27 Output Clear bit for this pin
  3084. Uint16 GPIO92:1; // 28 Output Clear bit for this pin
  3085. Uint16 GPIO93:1; // 29 Output Clear bit for this pin
  3086. Uint16 GPIO94:1; // 30 Output Clear bit for this pin
  3087. Uint16 GPIO95:1; // 31 Output Clear bit for this pin
  3088. };
  3089. union GPCCLEAR_REG {
  3090. Uint32 all;
  3091. struct GPCCLEAR_BITS bit;
  3092. };
  3093. struct GPCTOGGLE_BITS { // bits description
  3094. Uint16 GPIO64:1; // 0 Output Toggle bit for this pin
  3095. Uint16 GPIO65:1; // 1 Output Toggle bit for this pin
  3096. Uint16 GPIO66:1; // 2 Output Toggle bit for this pin
  3097. Uint16 GPIO67:1; // 3 Output Toggle bit for this pin
  3098. Uint16 GPIO68:1; // 4 Output Toggle bit for this pin
  3099. Uint16 GPIO69:1; // 5 Output Toggle bit for this pin
  3100. Uint16 GPIO70:1; // 6 Output Toggle bit for this pin
  3101. Uint16 GPIO71:1; // 7 Output Toggle bit for this pin
  3102. Uint16 GPIO72:1; // 8 Output Toggle bit for this pin
  3103. Uint16 GPIO73:1; // 9 Output Toggle bit for this pin
  3104. Uint16 GPIO74:1; // 10 Output Toggle bit for this pin
  3105. Uint16 GPIO75:1; // 11 Output Toggle bit for this pin
  3106. Uint16 GPIO76:1; // 12 Output Toggle bit for this pin
  3107. Uint16 GPIO77:1; // 13 Output Toggle bit for this pin
  3108. Uint16 GPIO78:1; // 14 Output Toggle bit for this pin
  3109. Uint16 GPIO79:1; // 15 Output Toggle bit for this pin
  3110. Uint16 GPIO80:1; // 16 Output Toggle bit for this pin
  3111. Uint16 GPIO81:1; // 17 Output Toggle bit for this pin
  3112. Uint16 GPIO82:1; // 18 Output Toggle bit for this pin
  3113. Uint16 GPIO83:1; // 19 Output Toggle bit for this pin
  3114. Uint16 GPIO84:1; // 20 Output Toggle bit for this pin
  3115. Uint16 GPIO85:1; // 21 Output Toggle bit for this pin
  3116. Uint16 GPIO86:1; // 22 Output Toggle bit for this pin
  3117. Uint16 GPIO87:1; // 23 Output Toggle bit for this pin
  3118. Uint16 GPIO88:1; // 24 Output Toggle bit for this pin
  3119. Uint16 GPIO89:1; // 25 Output Toggle bit for this pin
  3120. Uint16 GPIO90:1; // 26 Output Toggle bit for this pin
  3121. Uint16 GPIO91:1; // 27 Output Toggle bit for this pin
  3122. Uint16 GPIO92:1; // 28 Output Toggle bit for this pin
  3123. Uint16 GPIO93:1; // 29 Output Toggle bit for this pin
  3124. Uint16 GPIO94:1; // 30 Output Toggle bit for this pin
  3125. Uint16 GPIO95:1; // 31 Output Toggle bit for this pin
  3126. };
  3127. union GPCTOGGLE_REG {
  3128. Uint32 all;
  3129. struct GPCTOGGLE_BITS bit;
  3130. };
  3131. struct GPDDAT_BITS { // bits description
  3132. Uint16 GPIO96:1; // 0 Data Register for this pin
  3133. Uint16 GPIO97:1; // 1 Data Register for this pin
  3134. Uint16 GPIO98:1; // 2 Data Register for this pin
  3135. Uint16 GPIO99:1; // 3 Data Register for this pin
  3136. Uint16 GPIO100:1; // 4 Data Register for this pin
  3137. Uint16 GPIO101:1; // 5 Data Register for this pin
  3138. Uint16 GPIO102:1; // 6 Data Register for this pin
  3139. Uint16 GPIO103:1; // 7 Data Register for this pin
  3140. Uint16 GPIO104:1; // 8 Data Register for this pin
  3141. Uint16 GPIO105:1; // 9 Data Register for this pin
  3142. Uint16 GPIO106:1; // 10 Data Register for this pin
  3143. Uint16 GPIO107:1; // 11 Data Register for this pin
  3144. Uint16 GPIO108:1; // 12 Data Register for this pin
  3145. Uint16 GPIO109:1; // 13 Data Register for this pin
  3146. Uint16 GPIO110:1; // 14 Data Register for this pin
  3147. Uint16 GPIO111:1; // 15 Data Register for this pin
  3148. Uint16 GPIO112:1; // 16 Data Register for this pin
  3149. Uint16 GPIO113:1; // 17 Data Register for this pin
  3150. Uint16 GPIO114:1; // 18 Data Register for this pin
  3151. Uint16 GPIO115:1; // 19 Data Register for this pin
  3152. Uint16 GPIO116:1; // 20 Data Register for this pin
  3153. Uint16 GPIO117:1; // 21 Data Register for this pin
  3154. Uint16 GPIO118:1; // 22 Data Register for this pin
  3155. Uint16 GPIO119:1; // 23 Data Register for this pin
  3156. Uint16 GPIO120:1; // 24 Data Register for this pin
  3157. Uint16 GPIO121:1; // 25 Data Register for this pin
  3158. Uint16 GPIO122:1; // 26 Data Register for this pin
  3159. Uint16 GPIO123:1; // 27 Data Register for this pin
  3160. Uint16 GPIO124:1; // 28 Data Register for this pin
  3161. Uint16 GPIO125:1; // 29 Data Register for this pin
  3162. Uint16 GPIO126:1; // 30 Data Register for this pin
  3163. Uint16 GPIO127:1; // 31 Data Register for this pin
  3164. };
  3165. union GPDDAT_REG {
  3166. Uint32 all;
  3167. struct GPDDAT_BITS bit;
  3168. };
  3169. struct GPDSET_BITS { // bits description
  3170. Uint16 GPIO96:1; // 0 Output Set bit for this pin
  3171. Uint16 GPIO97:1; // 1 Output Set bit for this pin
  3172. Uint16 GPIO98:1; // 2 Output Set bit for this pin
  3173. Uint16 GPIO99:1; // 3 Output Set bit for this pin
  3174. Uint16 GPIO100:1; // 4 Output Set bit for this pin
  3175. Uint16 GPIO101:1; // 5 Output Set bit for this pin
  3176. Uint16 GPIO102:1; // 6 Output Set bit for this pin
  3177. Uint16 GPIO103:1; // 7 Output Set bit for this pin
  3178. Uint16 GPIO104:1; // 8 Output Set bit for this pin
  3179. Uint16 GPIO105:1; // 9 Output Set bit for this pin
  3180. Uint16 GPIO106:1; // 10 Output Set bit for this pin
  3181. Uint16 GPIO107:1; // 11 Output Set bit for this pin
  3182. Uint16 GPIO108:1; // 12 Output Set bit for this pin
  3183. Uint16 GPIO109:1; // 13 Output Set bit for this pin
  3184. Uint16 GPIO110:1; // 14 Output Set bit for this pin
  3185. Uint16 GPIO111:1; // 15 Output Set bit for this pin
  3186. Uint16 GPIO112:1; // 16 Output Set bit for this pin
  3187. Uint16 GPIO113:1; // 17 Output Set bit for this pin
  3188. Uint16 GPIO114:1; // 18 Output Set bit for this pin
  3189. Uint16 GPIO115:1; // 19 Output Set bit for this pin
  3190. Uint16 GPIO116:1; // 20 Output Set bit for this pin
  3191. Uint16 GPIO117:1; // 21 Output Set bit for this pin
  3192. Uint16 GPIO118:1; // 22 Output Set bit for this pin
  3193. Uint16 GPIO119:1; // 23 Output Set bit for this pin
  3194. Uint16 GPIO120:1; // 24 Output Set bit for this pin
  3195. Uint16 GPIO121:1; // 25 Output Set bit for this pin
  3196. Uint16 GPIO122:1; // 26 Output Set bit for this pin
  3197. Uint16 GPIO123:1; // 27 Output Set bit for this pin
  3198. Uint16 GPIO124:1; // 28 Output Set bit for this pin
  3199. Uint16 GPIO125:1; // 29 Output Set bit for this pin
  3200. Uint16 GPIO126:1; // 30 Output Set bit for this pin
  3201. Uint16 GPIO127:1; // 31 Output Set bit for this pin
  3202. };
  3203. union GPDSET_REG {
  3204. Uint32 all;
  3205. struct GPDSET_BITS bit;
  3206. };
  3207. struct GPDCLEAR_BITS { // bits description
  3208. Uint16 GPIO96:1; // 0 Output Clear bit for this pin
  3209. Uint16 GPIO97:1; // 1 Output Clear bit for this pin
  3210. Uint16 GPIO98:1; // 2 Output Clear bit for this pin
  3211. Uint16 GPIO99:1; // 3 Output Clear bit for this pin
  3212. Uint16 GPIO100:1; // 4 Output Clear bit for this pin
  3213. Uint16 GPIO101:1; // 5 Output Clear bit for this pin
  3214. Uint16 GPIO102:1; // 6 Output Clear bit for this pin
  3215. Uint16 GPIO103:1; // 7 Output Clear bit for this pin
  3216. Uint16 GPIO104:1; // 8 Output Clear bit for this pin
  3217. Uint16 GPIO105:1; // 9 Output Clear bit for this pin
  3218. Uint16 GPIO106:1; // 10 Output Clear bit for this pin
  3219. Uint16 GPIO107:1; // 11 Output Clear bit for this pin
  3220. Uint16 GPIO108:1; // 12 Output Clear bit for this pin
  3221. Uint16 GPIO109:1; // 13 Output Clear bit for this pin
  3222. Uint16 GPIO110:1; // 14 Output Clear bit for this pin
  3223. Uint16 GPIO111:1; // 15 Output Clear bit for this pin
  3224. Uint16 GPIO112:1; // 16 Output Clear bit for this pin
  3225. Uint16 GPIO113:1; // 17 Output Clear bit for this pin
  3226. Uint16 GPIO114:1; // 18 Output Clear bit for this pin
  3227. Uint16 GPIO115:1; // 19 Output Clear bit for this pin
  3228. Uint16 GPIO116:1; // 20 Output Clear bit for this pin
  3229. Uint16 GPIO117:1; // 21 Output Clear bit for this pin
  3230. Uint16 GPIO118:1; // 22 Output Clear bit for this pin
  3231. Uint16 GPIO119:1; // 23 Output Clear bit for this pin
  3232. Uint16 GPIO120:1; // 24 Output Clear bit for this pin
  3233. Uint16 GPIO121:1; // 25 Output Clear bit for this pin
  3234. Uint16 GPIO122:1; // 26 Output Clear bit for this pin
  3235. Uint16 GPIO123:1; // 27 Output Clear bit for this pin
  3236. Uint16 GPIO124:1; // 28 Output Clear bit for this pin
  3237. Uint16 GPIO125:1; // 29 Output Clear bit for this pin
  3238. Uint16 GPIO126:1; // 30 Output Clear bit for this pin
  3239. Uint16 GPIO127:1; // 31 Output Clear bit for this pin
  3240. };
  3241. union GPDCLEAR_REG {
  3242. Uint32 all;
  3243. struct GPDCLEAR_BITS bit;
  3244. };
  3245. struct GPDTOGGLE_BITS { // bits description
  3246. Uint16 GPIO96:1; // 0 Output Toggle bit for this pin
  3247. Uint16 GPIO97:1; // 1 Output Toggle bit for this pin
  3248. Uint16 GPIO98:1; // 2 Output Toggle bit for this pin
  3249. Uint16 GPIO99:1; // 3 Output Toggle bit for this pin
  3250. Uint16 GPIO100:1; // 4 Output Toggle bit for this pin
  3251. Uint16 GPIO101:1; // 5 Output Toggle bit for this pin
  3252. Uint16 GPIO102:1; // 6 Output Toggle bit for this pin
  3253. Uint16 GPIO103:1; // 7 Output Toggle bit for this pin
  3254. Uint16 GPIO104:1; // 8 Output Toggle bit for this pin
  3255. Uint16 GPIO105:1; // 9 Output Toggle bit for this pin
  3256. Uint16 GPIO106:1; // 10 Output Toggle bit for this pin
  3257. Uint16 GPIO107:1; // 11 Output Toggle bit for this pin
  3258. Uint16 GPIO108:1; // 12 Output Toggle bit for this pin
  3259. Uint16 GPIO109:1; // 13 Output Toggle bit for this pin
  3260. Uint16 GPIO110:1; // 14 Output Toggle bit for this pin
  3261. Uint16 GPIO111:1; // 15 Output Toggle bit for this pin
  3262. Uint16 GPIO112:1; // 16 Output Toggle bit for this pin
  3263. Uint16 GPIO113:1; // 17 Output Toggle bit for this pin
  3264. Uint16 GPIO114:1; // 18 Output Toggle bit for this pin
  3265. Uint16 GPIO115:1; // 19 Output Toggle bit for this pin
  3266. Uint16 GPIO116:1; // 20 Output Toggle bit for this pin
  3267. Uint16 GPIO117:1; // 21 Output Toggle bit for this pin
  3268. Uint16 GPIO118:1; // 22 Output Toggle bit for this pin
  3269. Uint16 GPIO119:1; // 23 Output Toggle bit for this pin
  3270. Uint16 GPIO120:1; // 24 Output Toggle bit for this pin
  3271. Uint16 GPIO121:1; // 25 Output Toggle bit for this pin
  3272. Uint16 GPIO122:1; // 26 Output Toggle bit for this pin
  3273. Uint16 GPIO123:1; // 27 Output Toggle bit for this pin
  3274. Uint16 GPIO124:1; // 28 Output Toggle bit for this pin
  3275. Uint16 GPIO125:1; // 29 Output Toggle bit for this pin
  3276. Uint16 GPIO126:1; // 30 Output Toggle bit for this pin
  3277. Uint16 GPIO127:1; // 31 Output Toggle bit for this pin
  3278. };
  3279. union GPDTOGGLE_REG {
  3280. Uint32 all;
  3281. struct GPDTOGGLE_BITS bit;
  3282. };
  3283. struct GPEDAT_BITS { // bits description
  3284. Uint16 GPIO128:1; // 0 Data Register for this pin
  3285. Uint16 GPIO129:1; // 1 Data Register for this pin
  3286. Uint16 GPIO130:1; // 2 Data Register for this pin
  3287. Uint16 GPIO131:1; // 3 Data Register for this pin
  3288. Uint16 GPIO132:1; // 4 Data Register for this pin
  3289. Uint16 GPIO133:1; // 5 Data Register for this pin
  3290. Uint16 GPIO134:1; // 6 Data Register for this pin
  3291. Uint16 GPIO135:1; // 7 Data Register for this pin
  3292. Uint16 GPIO136:1; // 8 Data Register for this pin
  3293. Uint16 GPIO137:1; // 9 Data Register for this pin
  3294. Uint16 GPIO138:1; // 10 Data Register for this pin
  3295. Uint16 GPIO139:1; // 11 Data Register for this pin
  3296. Uint16 GPIO140:1; // 12 Data Register for this pin
  3297. Uint16 GPIO141:1; // 13 Data Register for this pin
  3298. Uint16 GPIO142:1; // 14 Data Register for this pin
  3299. Uint16 GPIO143:1; // 15 Data Register for this pin
  3300. Uint16 GPIO144:1; // 16 Data Register for this pin
  3301. Uint16 GPIO145:1; // 17 Data Register for this pin
  3302. Uint16 GPIO146:1; // 18 Data Register for this pin
  3303. Uint16 GPIO147:1; // 19 Data Register for this pin
  3304. Uint16 GPIO148:1; // 20 Data Register for this pin
  3305. Uint16 GPIO149:1; // 21 Data Register for this pin
  3306. Uint16 GPIO150:1; // 22 Data Register for this pin
  3307. Uint16 GPIO151:1; // 23 Data Register for this pin
  3308. Uint16 GPIO152:1; // 24 Data Register for this pin
  3309. Uint16 GPIO153:1; // 25 Data Register for this pin
  3310. Uint16 GPIO154:1; // 26 Data Register for this pin
  3311. Uint16 GPIO155:1; // 27 Data Register for this pin
  3312. Uint16 GPIO156:1; // 28 Data Register for this pin
  3313. Uint16 GPIO157:1; // 29 Data Register for this pin
  3314. Uint16 GPIO158:1; // 30 Data Register for this pin
  3315. Uint16 GPIO159:1; // 31 Data Register for this pin
  3316. };
  3317. union GPEDAT_REG {
  3318. Uint32 all;
  3319. struct GPEDAT_BITS bit;
  3320. };
  3321. struct GPESET_BITS { // bits description
  3322. Uint16 GPIO128:1; // 0 Output Set bit for this pin
  3323. Uint16 GPIO129:1; // 1 Output Set bit for this pin
  3324. Uint16 GPIO130:1; // 2 Output Set bit for this pin
  3325. Uint16 GPIO131:1; // 3 Output Set bit for this pin
  3326. Uint16 GPIO132:1; // 4 Output Set bit for this pin
  3327. Uint16 GPIO133:1; // 5 Output Set bit for this pin
  3328. Uint16 GPIO134:1; // 6 Output Set bit for this pin
  3329. Uint16 GPIO135:1; // 7 Output Set bit for this pin
  3330. Uint16 GPIO136:1; // 8 Output Set bit for this pin
  3331. Uint16 GPIO137:1; // 9 Output Set bit for this pin
  3332. Uint16 GPIO138:1; // 10 Output Set bit for this pin
  3333. Uint16 GPIO139:1; // 11 Output Set bit for this pin
  3334. Uint16 GPIO140:1; // 12 Output Set bit for this pin
  3335. Uint16 GPIO141:1; // 13 Output Set bit for this pin
  3336. Uint16 GPIO142:1; // 14 Output Set bit for this pin
  3337. Uint16 GPIO143:1; // 15 Output Set bit for this pin
  3338. Uint16 GPIO144:1; // 16 Output Set bit for this pin
  3339. Uint16 GPIO145:1; // 17 Output Set bit for this pin
  3340. Uint16 GPIO146:1; // 18 Output Set bit for this pin
  3341. Uint16 GPIO147:1; // 19 Output Set bit for this pin
  3342. Uint16 GPIO148:1; // 20 Output Set bit for this pin
  3343. Uint16 GPIO149:1; // 21 Output Set bit for this pin
  3344. Uint16 GPIO150:1; // 22 Output Set bit for this pin
  3345. Uint16 GPIO151:1; // 23 Output Set bit for this pin
  3346. Uint16 GPIO152:1; // 24 Output Set bit for this pin
  3347. Uint16 GPIO153:1; // 25 Output Set bit for this pin
  3348. Uint16 GPIO154:1; // 26 Output Set bit for this pin
  3349. Uint16 GPIO155:1; // 27 Output Set bit for this pin
  3350. Uint16 GPIO156:1; // 28 Output Set bit for this pin
  3351. Uint16 GPIO157:1; // 29 Output Set bit for this pin
  3352. Uint16 GPIO158:1; // 30 Output Set bit for this pin
  3353. Uint16 GPIO159:1; // 31 Output Set bit for this pin
  3354. };
  3355. union GPESET_REG {
  3356. Uint32 all;
  3357. struct GPESET_BITS bit;
  3358. };
  3359. struct GPECLEAR_BITS { // bits description
  3360. Uint16 GPIO128:1; // 0 Output Clear bit for this pin
  3361. Uint16 GPIO129:1; // 1 Output Clear bit for this pin
  3362. Uint16 GPIO130:1; // 2 Output Clear bit for this pin
  3363. Uint16 GPIO131:1; // 3 Output Clear bit for this pin
  3364. Uint16 GPIO132:1; // 4 Output Clear bit for this pin
  3365. Uint16 GPIO133:1; // 5 Output Clear bit for this pin
  3366. Uint16 GPIO134:1; // 6 Output Clear bit for this pin
  3367. Uint16 GPIO135:1; // 7 Output Clear bit for this pin
  3368. Uint16 GPIO136:1; // 8 Output Clear bit for this pin
  3369. Uint16 GPIO137:1; // 9 Output Clear bit for this pin
  3370. Uint16 GPIO138:1; // 10 Output Clear bit for this pin
  3371. Uint16 GPIO139:1; // 11 Output Clear bit for this pin
  3372. Uint16 GPIO140:1; // 12 Output Clear bit for this pin
  3373. Uint16 GPIO141:1; // 13 Output Clear bit for this pin
  3374. Uint16 GPIO142:1; // 14 Output Clear bit for this pin
  3375. Uint16 GPIO143:1; // 15 Output Clear bit for this pin
  3376. Uint16 GPIO144:1; // 16 Output Clear bit for this pin
  3377. Uint16 GPIO145:1; // 17 Output Clear bit for this pin
  3378. Uint16 GPIO146:1; // 18 Output Clear bit for this pin
  3379. Uint16 GPIO147:1; // 19 Output Clear bit for this pin
  3380. Uint16 GPIO148:1; // 20 Output Clear bit for this pin
  3381. Uint16 GPIO149:1; // 21 Output Clear bit for this pin
  3382. Uint16 GPIO150:1; // 22 Output Clear bit for this pin
  3383. Uint16 GPIO151:1; // 23 Output Clear bit for this pin
  3384. Uint16 GPIO152:1; // 24 Output Clear bit for this pin
  3385. Uint16 GPIO153:1; // 25 Output Clear bit for this pin
  3386. Uint16 GPIO154:1; // 26 Output Clear bit for this pin
  3387. Uint16 GPIO155:1; // 27 Output Clear bit for this pin
  3388. Uint16 GPIO156:1; // 28 Output Clear bit for this pin
  3389. Uint16 GPIO157:1; // 29 Output Clear bit for this pin
  3390. Uint16 GPIO158:1; // 30 Output Clear bit for this pin
  3391. Uint16 GPIO159:1; // 31 Output Clear bit for this pin
  3392. };
  3393. union GPECLEAR_REG {
  3394. Uint32 all;
  3395. struct GPECLEAR_BITS bit;
  3396. };
  3397. struct GPETOGGLE_BITS { // bits description
  3398. Uint16 GPIO128:1; // 0 Output Toggle bit for this pin
  3399. Uint16 GPIO129:1; // 1 Output Toggle bit for this pin
  3400. Uint16 GPIO130:1; // 2 Output Toggle bit for this pin
  3401. Uint16 GPIO131:1; // 3 Output Toggle bit for this pin
  3402. Uint16 GPIO132:1; // 4 Output Toggle bit for this pin
  3403. Uint16 GPIO133:1; // 5 Output Toggle bit for this pin
  3404. Uint16 GPIO134:1; // 6 Output Toggle bit for this pin
  3405. Uint16 GPIO135:1; // 7 Output Toggle bit for this pin
  3406. Uint16 GPIO136:1; // 8 Output Toggle bit for this pin
  3407. Uint16 GPIO137:1; // 9 Output Toggle bit for this pin
  3408. Uint16 GPIO138:1; // 10 Output Toggle bit for this pin
  3409. Uint16 GPIO139:1; // 11 Output Toggle bit for this pin
  3410. Uint16 GPIO140:1; // 12 Output Toggle bit for this pin
  3411. Uint16 GPIO141:1; // 13 Output Toggle bit for this pin
  3412. Uint16 GPIO142:1; // 14 Output Toggle bit for this pin
  3413. Uint16 GPIO143:1; // 15 Output Toggle bit for this pin
  3414. Uint16 GPIO144:1; // 16 Output Toggle bit for this pin
  3415. Uint16 GPIO145:1; // 17 Output Toggle bit for this pin
  3416. Uint16 GPIO146:1; // 18 Output Toggle bit for this pin
  3417. Uint16 GPIO147:1; // 19 Output Toggle bit for this pin
  3418. Uint16 GPIO148:1; // 20 Output Toggle bit for this pin
  3419. Uint16 GPIO149:1; // 21 Output Toggle bit for this pin
  3420. Uint16 GPIO150:1; // 22 Output Toggle bit for this pin
  3421. Uint16 GPIO151:1; // 23 Output Toggle bit for this pin
  3422. Uint16 GPIO152:1; // 24 Output Toggle bit for this pin
  3423. Uint16 GPIO153:1; // 25 Output Toggle bit for this pin
  3424. Uint16 GPIO154:1; // 26 Output Toggle bit for this pin
  3425. Uint16 GPIO155:1; // 27 Output Toggle bit for this pin
  3426. Uint16 GPIO156:1; // 28 Output Toggle bit for this pin
  3427. Uint16 GPIO157:1; // 29 Output Toggle bit for this pin
  3428. Uint16 GPIO158:1; // 30 Output Toggle bit for this pin
  3429. Uint16 GPIO159:1; // 31 Output Toggle bit for this pin
  3430. };
  3431. union GPETOGGLE_REG {
  3432. Uint32 all;
  3433. struct GPETOGGLE_BITS bit;
  3434. };
  3435. struct GPFDAT_BITS { // bits description
  3436. Uint16 GPIO160:1; // 0 Data Register for this pin
  3437. Uint16 GPIO161:1; // 1 Data Register for this pin
  3438. Uint16 GPIO162:1; // 2 Data Register for this pin
  3439. Uint16 GPIO163:1; // 3 Data Register for this pin
  3440. Uint16 GPIO164:1; // 4 Data Register for this pin
  3441. Uint16 GPIO165:1; // 5 Data Register for this pin
  3442. Uint16 GPIO166:1; // 6 Data Register for this pin
  3443. Uint16 GPIO167:1; // 7 Data Register for this pin
  3444. Uint16 GPIO168:1; // 8 Data Register for this pin
  3445. Uint16 rsvd1:1; // 9 Reserved
  3446. Uint16 rsvd2:1; // 10 Reserved
  3447. Uint16 rsvd3:1; // 11 Reserved
  3448. Uint16 rsvd4:1; // 12 Reserved
  3449. Uint16 rsvd5:1; // 13 Reserved
  3450. Uint16 rsvd6:1; // 14 Reserved
  3451. Uint16 rsvd7:1; // 15 Reserved
  3452. Uint16 rsvd8:1; // 16 Reserved
  3453. Uint16 rsvd9:1; // 17 Reserved
  3454. Uint16 rsvd10:1; // 18 Reserved
  3455. Uint16 rsvd11:1; // 19 Reserved
  3456. Uint16 rsvd12:1; // 20 Reserved
  3457. Uint16 rsvd13:1; // 21 Reserved
  3458. Uint16 rsvd14:1; // 22 Reserved
  3459. Uint16 rsvd15:1; // 23 Reserved
  3460. Uint16 rsvd16:1; // 24 Reserved
  3461. Uint16 rsvd17:1; // 25 Reserved
  3462. Uint16 rsvd18:1; // 26 Reserved
  3463. Uint16 rsvd19:1; // 27 Reserved
  3464. Uint16 rsvd20:1; // 28 Reserved
  3465. Uint16 rsvd21:1; // 29 Reserved
  3466. Uint16 rsvd22:1; // 30 Reserved
  3467. Uint16 rsvd23:1; // 31 Reserved
  3468. };
  3469. union GPFDAT_REG {
  3470. Uint32 all;
  3471. struct GPFDAT_BITS bit;
  3472. };
  3473. struct GPFSET_BITS { // bits description
  3474. Uint16 GPIO160:1; // 0 Output Set bit for this pin
  3475. Uint16 GPIO161:1; // 1 Output Set bit for this pin
  3476. Uint16 GPIO162:1; // 2 Output Set bit for this pin
  3477. Uint16 GPIO163:1; // 3 Output Set bit for this pin
  3478. Uint16 GPIO164:1; // 4 Output Set bit for this pin
  3479. Uint16 GPIO165:1; // 5 Output Set bit for this pin
  3480. Uint16 GPIO166:1; // 6 Output Set bit for this pin
  3481. Uint16 GPIO167:1; // 7 Output Set bit for this pin
  3482. Uint16 GPIO168:1; // 8 Output Set bit for this pin
  3483. Uint16 rsvd1:1; // 9 Reserved
  3484. Uint16 rsvd2:1; // 10 Reserved
  3485. Uint16 rsvd3:1; // 11 Reserved
  3486. Uint16 rsvd4:1; // 12 Reserved
  3487. Uint16 rsvd5:1; // 13 Reserved
  3488. Uint16 rsvd6:1; // 14 Reserved
  3489. Uint16 rsvd7:1; // 15 Reserved
  3490. Uint16 rsvd8:1; // 16 Reserved
  3491. Uint16 rsvd9:1; // 17 Reserved
  3492. Uint16 rsvd10:1; // 18 Reserved
  3493. Uint16 rsvd11:1; // 19 Reserved
  3494. Uint16 rsvd12:1; // 20 Reserved
  3495. Uint16 rsvd13:1; // 21 Reserved
  3496. Uint16 rsvd14:1; // 22 Reserved
  3497. Uint16 rsvd15:1; // 23 Reserved
  3498. Uint16 rsvd16:1; // 24 Reserved
  3499. Uint16 rsvd17:1; // 25 Reserved
  3500. Uint16 rsvd18:1; // 26 Reserved
  3501. Uint16 rsvd19:1; // 27 Reserved
  3502. Uint16 rsvd20:1; // 28 Reserved
  3503. Uint16 rsvd21:1; // 29 Reserved
  3504. Uint16 rsvd22:1; // 30 Reserved
  3505. Uint16 rsvd23:1; // 31 Reserved
  3506. };
  3507. union GPFSET_REG {
  3508. Uint32 all;
  3509. struct GPFSET_BITS bit;
  3510. };
  3511. struct GPFCLEAR_BITS { // bits description
  3512. Uint16 GPIO160:1; // 0 Output Clear bit for this pin
  3513. Uint16 GPIO161:1; // 1 Output Clear bit for this pin
  3514. Uint16 GPIO162:1; // 2 Output Clear bit for this pin
  3515. Uint16 GPIO163:1; // 3 Output Clear bit for this pin
  3516. Uint16 GPIO164:1; // 4 Output Clear bit for this pin
  3517. Uint16 GPIO165:1; // 5 Output Clear bit for this pin
  3518. Uint16 GPIO166:1; // 6 Output Clear bit for this pin
  3519. Uint16 GPIO167:1; // 7 Output Clear bit for this pin
  3520. Uint16 GPIO168:1; // 8 Output Clear bit for this pin
  3521. Uint16 rsvd1:1; // 9 Reserved
  3522. Uint16 rsvd2:1; // 10 Reserved
  3523. Uint16 rsvd3:1; // 11 Reserved
  3524. Uint16 rsvd4:1; // 12 Reserved
  3525. Uint16 rsvd5:1; // 13 Reserved
  3526. Uint16 rsvd6:1; // 14 Reserved
  3527. Uint16 rsvd7:1; // 15 Reserved
  3528. Uint16 rsvd8:1; // 16 Reserved
  3529. Uint16 rsvd9:1; // 17 Reserved
  3530. Uint16 rsvd10:1; // 18 Reserved
  3531. Uint16 rsvd11:1; // 19 Reserved
  3532. Uint16 rsvd12:1; // 20 Reserved
  3533. Uint16 rsvd13:1; // 21 Reserved
  3534. Uint16 rsvd14:1; // 22 Reserved
  3535. Uint16 rsvd15:1; // 23 Reserved
  3536. Uint16 rsvd16:1; // 24 Reserved
  3537. Uint16 rsvd17:1; // 25 Reserved
  3538. Uint16 rsvd18:1; // 26 Reserved
  3539. Uint16 rsvd19:1; // 27 Reserved
  3540. Uint16 rsvd20:1; // 28 Reserved
  3541. Uint16 rsvd21:1; // 29 Reserved
  3542. Uint16 rsvd22:1; // 30 Reserved
  3543. Uint16 rsvd23:1; // 31 Reserved
  3544. };
  3545. union GPFCLEAR_REG {
  3546. Uint32 all;
  3547. struct GPFCLEAR_BITS bit;
  3548. };
  3549. struct GPFTOGGLE_BITS { // bits description
  3550. Uint16 GPIO160:1; // 0 Output Toggle bit for this pin
  3551. Uint16 GPIO161:1; // 1 Output Toggle bit for this pin
  3552. Uint16 GPIO162:1; // 2 Output Toggle bit for this pin
  3553. Uint16 GPIO163:1; // 3 Output Toggle bit for this pin
  3554. Uint16 GPIO164:1; // 4 Output Toggle bit for this pin
  3555. Uint16 GPIO165:1; // 5 Output Toggle bit for this pin
  3556. Uint16 GPIO166:1; // 6 Output Toggle bit for this pin
  3557. Uint16 GPIO167:1; // 7 Output Toggle bit for this pin
  3558. Uint16 GPIO168:1; // 8 Output Toggle bit for this pin
  3559. Uint16 rsvd1:1; // 9 Reserved
  3560. Uint16 rsvd2:1; // 10 Reserved
  3561. Uint16 rsvd3:1; // 11 Reserved
  3562. Uint16 rsvd4:1; // 12 Reserved
  3563. Uint16 rsvd5:1; // 13 Reserved
  3564. Uint16 rsvd6:1; // 14 Reserved
  3565. Uint16 rsvd7:1; // 15 Reserved
  3566. Uint16 rsvd8:1; // 16 Reserved
  3567. Uint16 rsvd9:1; // 17 Reserved
  3568. Uint16 rsvd10:1; // 18 Reserved
  3569. Uint16 rsvd11:1; // 19 Reserved
  3570. Uint16 rsvd12:1; // 20 Reserved
  3571. Uint16 rsvd13:1; // 21 Reserved
  3572. Uint16 rsvd14:1; // 22 Reserved
  3573. Uint16 rsvd15:1; // 23 Reserved
  3574. Uint16 rsvd16:1; // 24 Reserved
  3575. Uint16 rsvd17:1; // 25 Reserved
  3576. Uint16 rsvd18:1; // 26 Reserved
  3577. Uint16 rsvd19:1; // 27 Reserved
  3578. Uint16 rsvd20:1; // 28 Reserved
  3579. Uint16 rsvd21:1; // 29 Reserved
  3580. Uint16 rsvd22:1; // 30 Reserved
  3581. Uint16 rsvd23:1; // 31 Reserved
  3582. };
  3583. union GPFTOGGLE_REG {
  3584. Uint32 all;
  3585. struct GPFTOGGLE_BITS bit;
  3586. };
  3587. struct GPIO_DATA_REGS {
  3588. union GPADAT_REG GPADAT; // GPIO A Data Register (GPIO0 to 31)
  3589. union GPASET_REG GPASET; // GPIO A Data Set Register (GPIO0 to 31)
  3590. union GPACLEAR_REG GPACLEAR; // GPIO A Data Clear Register (GPIO0 to 31)
  3591. union GPATOGGLE_REG GPATOGGLE; // GPIO A Data Toggle Register (GPIO0 to 31)
  3592. union GPBDAT_REG GPBDAT; // GPIO B Data Register (GPIO32 to 63)
  3593. union GPBSET_REG GPBSET; // GPIO B Data Set Register (GPIO32 to 63)
  3594. union GPBCLEAR_REG GPBCLEAR; // GPIO B Data Clear Register (GPIO32 to 63)
  3595. union GPBTOGGLE_REG GPBTOGGLE; // GPIO B Data Toggle Register (GPIO32 to 63)
  3596. union GPCDAT_REG GPCDAT; // GPIO C Data Register (GPIO64 to 95)
  3597. union GPCSET_REG GPCSET; // GPIO C Data Set Register (GPIO64 to 95)
  3598. union GPCCLEAR_REG GPCCLEAR; // GPIO C Data Clear Register (GPIO64 to 95)
  3599. union GPCTOGGLE_REG GPCTOGGLE; // GPIO C Data Toggle Register (GPIO64 to 95)
  3600. union GPDDAT_REG GPDDAT; // GPIO D Data Register (GPIO96 to 127)
  3601. union GPDSET_REG GPDSET; // GPIO D Data Set Register (GPIO96 to 127)
  3602. union GPDCLEAR_REG GPDCLEAR; // GPIO D Data Clear Register (GPIO96 to 127)
  3603. union GPDTOGGLE_REG GPDTOGGLE; // GPIO D Data Toggle Register (GPIO96 to 127)
  3604. union GPEDAT_REG GPEDAT; // GPIO E Data Register (GPIO128 to 159)
  3605. union GPESET_REG GPESET; // GPIO E Data Set Register (GPIO128 to 159)
  3606. union GPECLEAR_REG GPECLEAR; // GPIO E Data Clear Register (GPIO128 to 159)
  3607. union GPETOGGLE_REG GPETOGGLE; // GPIO E Data Toggle Register (GPIO128 to 159)
  3608. union GPFDAT_REG GPFDAT; // GPIO F Data Register (GPIO160 to 168)
  3609. union GPFSET_REG GPFSET; // GPIO F Data Set Register (GPIO160 to 168)
  3610. union GPFCLEAR_REG GPFCLEAR; // GPIO F Data Clear Register (GPIO160 to 168)
  3611. union GPFTOGGLE_REG GPFTOGGLE; // GPIO F Data Toggle Register (GPIO160 to 168)
  3612. };
  3613. //---------------------------------------------------------------------------
  3614. // GPIO External References & Function Declarations:
  3615. //
  3616. #ifdef CPU1
  3617. extern volatile struct GPIO_CTRL_REGS GpioCtrlRegs;
  3618. extern volatile struct GPIO_DATA_REGS GpioDataRegs;
  3619. #endif
  3620. #ifdef CPU2
  3621. extern volatile struct GPIO_DATA_REGS GpioDataRegs;
  3622. #endif
  3623. #ifdef __cplusplus
  3624. }
  3625. #endif /* extern "C" */
  3626. #endif
  3627. //===========================================================================
  3628. // End of file.
  3629. //===========================================================================