123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882 |
- //###########################################################################
- //
- // FILE: F2837xD_gpio.h
- //
- // TITLE: GPIO Register Definitions.
- //
- //###########################################################################
- // $TI Release: F2837xD Support Library v3.05.00.00 $
- // $Release Date: Tue Jun 26 03:15:23 CDT 2018 $
- // $Copyright:
- // Copyright (C) 2013-2018 Texas Instruments Incorporated - http://www.ti.com/
- //
- // Redistribution and use in source and binary forms, with or without
- // modification, are permitted provided that the following conditions
- // are met:
- //
- // Redistributions of source code must retain the above copyright
- // notice, this list of conditions and the following disclaimer.
- //
- // Redistributions in binary form must reproduce the above copyright
- // notice, this list of conditions and the following disclaimer in the
- // documentation and/or other materials provided with the
- // distribution.
- //
- // Neither the name of Texas Instruments Incorporated nor the names of
- // its contributors may be used to endorse or promote products derived
- // from this software without specific prior written permission.
- //
- // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- // $
- //###########################################################################
- #ifndef __F2837xD_GPIO_H__
- #define __F2837xD_GPIO_H__
- #ifdef __cplusplus
- extern "C" {
- #endif
- //---------------------------------------------------------------------------
- // GPIO Individual Register Bit Definitions:
- struct GPACTRL_BITS { // bits description
- Uint16 QUALPRD0:8; // 7:0 Qualification sampling period for GPIO0 to GPIO7
- Uint16 QUALPRD1:8; // 15:8 Qualification sampling period for GPIO8 to GPIO15
- Uint16 QUALPRD2:8; // 23:16 Qualification sampling period for GPIO16 to GPIO23
- Uint16 QUALPRD3:8; // 31:24 Qualification sampling period for GPIO24 to GPIO31
- };
- union GPACTRL_REG {
- Uint32 all;
- struct GPACTRL_BITS bit;
- };
- struct GPAQSEL1_BITS { // bits description
- Uint16 GPIO0:2; // 1:0 Select input qualification type for GPIO0
- Uint16 GPIO1:2; // 3:2 Select input qualification type for GPIO1
- Uint16 GPIO2:2; // 5:4 Select input qualification type for GPIO2
- Uint16 GPIO3:2; // 7:6 Select input qualification type for GPIO3
- Uint16 GPIO4:2; // 9:8 Select input qualification type for GPIO4
- Uint16 GPIO5:2; // 11:10 Select input qualification type for GPIO5
- Uint16 GPIO6:2; // 13:12 Select input qualification type for GPIO6
- Uint16 GPIO7:2; // 15:14 Select input qualification type for GPIO7
- Uint16 GPIO8:2; // 17:16 Select input qualification type for GPIO8
- Uint16 GPIO9:2; // 19:18 Select input qualification type for GPIO9
- Uint16 GPIO10:2; // 21:20 Select input qualification type for GPIO10
- Uint16 GPIO11:2; // 23:22 Select input qualification type for GPIO11
- Uint16 GPIO12:2; // 25:24 Select input qualification type for GPIO12
- Uint16 GPIO13:2; // 27:26 Select input qualification type for GPIO13
- Uint16 GPIO14:2; // 29:28 Select input qualification type for GPIO14
- Uint16 GPIO15:2; // 31:30 Select input qualification type for GPIO15
- };
- union GPAQSEL1_REG {
- Uint32 all;
- struct GPAQSEL1_BITS bit;
- };
- struct GPAQSEL2_BITS { // bits description
- Uint16 GPIO16:2; // 1:0 Select input qualification type for GPIO16
- Uint16 GPIO17:2; // 3:2 Select input qualification type for GPIO17
- Uint16 GPIO18:2; // 5:4 Select input qualification type for GPIO18
- Uint16 GPIO19:2; // 7:6 Select input qualification type for GPIO19
- Uint16 GPIO20:2; // 9:8 Select input qualification type for GPIO20
- Uint16 GPIO21:2; // 11:10 Select input qualification type for GPIO21
- Uint16 GPIO22:2; // 13:12 Select input qualification type for GPIO22
- Uint16 GPIO23:2; // 15:14 Select input qualification type for GPIO23
- Uint16 GPIO24:2; // 17:16 Select input qualification type for GPIO24
- Uint16 GPIO25:2; // 19:18 Select input qualification type for GPIO25
- Uint16 GPIO26:2; // 21:20 Select input qualification type for GPIO26
- Uint16 GPIO27:2; // 23:22 Select input qualification type for GPIO27
- Uint16 GPIO28:2; // 25:24 Select input qualification type for GPIO28
- Uint16 GPIO29:2; // 27:26 Select input qualification type for GPIO29
- Uint16 GPIO30:2; // 29:28 Select input qualification type for GPIO30
- Uint16 GPIO31:2; // 31:30 Select input qualification type for GPIO31
- };
- union GPAQSEL2_REG {
- Uint32 all;
- struct GPAQSEL2_BITS bit;
- };
- struct GPAMUX1_BITS { // bits description
- Uint16 GPIO0:2; // 1:0 Defines pin-muxing selection for GPIO0
- Uint16 GPIO1:2; // 3:2 Defines pin-muxing selection for GPIO1
- Uint16 GPIO2:2; // 5:4 Defines pin-muxing selection for GPIO2
- Uint16 GPIO3:2; // 7:6 Defines pin-muxing selection for GPIO3
- Uint16 GPIO4:2; // 9:8 Defines pin-muxing selection for GPIO4
- Uint16 GPIO5:2; // 11:10 Defines pin-muxing selection for GPIO5
- Uint16 GPIO6:2; // 13:12 Defines pin-muxing selection for GPIO6
- Uint16 GPIO7:2; // 15:14 Defines pin-muxing selection for GPIO7
- Uint16 GPIO8:2; // 17:16 Defines pin-muxing selection for GPIO8
- Uint16 GPIO9:2; // 19:18 Defines pin-muxing selection for GPIO9
- Uint16 GPIO10:2; // 21:20 Defines pin-muxing selection for GPIO10
- Uint16 GPIO11:2; // 23:22 Defines pin-muxing selection for GPIO11
- Uint16 GPIO12:2; // 25:24 Defines pin-muxing selection for GPIO12
- Uint16 GPIO13:2; // 27:26 Defines pin-muxing selection for GPIO13
- Uint16 GPIO14:2; // 29:28 Defines pin-muxing selection for GPIO14
- Uint16 GPIO15:2; // 31:30 Defines pin-muxing selection for GPIO15
- };
- union GPAMUX1_REG {
- Uint32 all;
- struct GPAMUX1_BITS bit;
- };
- struct GPAMUX2_BITS { // bits description
- Uint16 GPIO16:2; // 1:0 Defines pin-muxing selection for GPIO16
- Uint16 GPIO17:2; // 3:2 Defines pin-muxing selection for GPIO17
- Uint16 GPIO18:2; // 5:4 Defines pin-muxing selection for GPIO18
- Uint16 GPIO19:2; // 7:6 Defines pin-muxing selection for GPIO19
- Uint16 GPIO20:2; // 9:8 Defines pin-muxing selection for GPIO20
- Uint16 GPIO21:2; // 11:10 Defines pin-muxing selection for GPIO21
- Uint16 GPIO22:2; // 13:12 Defines pin-muxing selection for GPIO22
- Uint16 GPIO23:2; // 15:14 Defines pin-muxing selection for GPIO23
- Uint16 GPIO24:2; // 17:16 Defines pin-muxing selection for GPIO24
- Uint16 GPIO25:2; // 19:18 Defines pin-muxing selection for GPIO25
- Uint16 GPIO26:2; // 21:20 Defines pin-muxing selection for GPIO26
- Uint16 GPIO27:2; // 23:22 Defines pin-muxing selection for GPIO27
- Uint16 GPIO28:2; // 25:24 Defines pin-muxing selection for GPIO28
- Uint16 GPIO29:2; // 27:26 Defines pin-muxing selection for GPIO29
- Uint16 GPIO30:2; // 29:28 Defines pin-muxing selection for GPIO30
- Uint16 GPIO31:2; // 31:30 Defines pin-muxing selection for GPIO31
- };
- union GPAMUX2_REG {
- Uint32 all;
- struct GPAMUX2_BITS bit;
- };
- struct GPADIR_BITS { // bits description
- Uint16 GPIO0:1; // 0 Defines direction for this pin in GPIO mode
- Uint16 GPIO1:1; // 1 Defines direction for this pin in GPIO mode
- Uint16 GPIO2:1; // 2 Defines direction for this pin in GPIO mode
- Uint16 GPIO3:1; // 3 Defines direction for this pin in GPIO mode
- Uint16 GPIO4:1; // 4 Defines direction for this pin in GPIO mode
- Uint16 GPIO5:1; // 5 Defines direction for this pin in GPIO mode
- Uint16 GPIO6:1; // 6 Defines direction for this pin in GPIO mode
- Uint16 GPIO7:1; // 7 Defines direction for this pin in GPIO mode
- Uint16 GPIO8:1; // 8 Defines direction for this pin in GPIO mode
- Uint16 GPIO9:1; // 9 Defines direction for this pin in GPIO mode
- Uint16 GPIO10:1; // 10 Defines direction for this pin in GPIO mode
- Uint16 GPIO11:1; // 11 Defines direction for this pin in GPIO mode
- Uint16 GPIO12:1; // 12 Defines direction for this pin in GPIO mode
- Uint16 GPIO13:1; // 13 Defines direction for this pin in GPIO mode
- Uint16 GPIO14:1; // 14 Defines direction for this pin in GPIO mode
- Uint16 GPIO15:1; // 15 Defines direction for this pin in GPIO mode
- Uint16 GPIO16:1; // 16 Defines direction for this pin in GPIO mode
- Uint16 GPIO17:1; // 17 Defines direction for this pin in GPIO mode
- Uint16 GPIO18:1; // 18 Defines direction for this pin in GPIO mode
- Uint16 GPIO19:1; // 19 Defines direction for this pin in GPIO mode
- Uint16 GPIO20:1; // 20 Defines direction for this pin in GPIO mode
- Uint16 GPIO21:1; // 21 Defines direction for this pin in GPIO mode
- Uint16 GPIO22:1; // 22 Defines direction for this pin in GPIO mode
- Uint16 GPIO23:1; // 23 Defines direction for this pin in GPIO mode
- Uint16 GPIO24:1; // 24 Defines direction for this pin in GPIO mode
- Uint16 GPIO25:1; // 25 Defines direction for this pin in GPIO mode
- Uint16 GPIO26:1; // 26 Defines direction for this pin in GPIO mode
- Uint16 GPIO27:1; // 27 Defines direction for this pin in GPIO mode
- Uint16 GPIO28:1; // 28 Defines direction for this pin in GPIO mode
- Uint16 GPIO29:1; // 29 Defines direction for this pin in GPIO mode
- Uint16 GPIO30:1; // 30 Defines direction for this pin in GPIO mode
- Uint16 GPIO31:1; // 31 Defines direction for this pin in GPIO mode
- };
- union GPADIR_REG {
- Uint32 all;
- struct GPADIR_BITS bit;
- };
- struct GPAPUD_BITS { // bits description
- Uint16 GPIO0:1; // 0 Pull-Up Disable control for this pin
- Uint16 GPIO1:1; // 1 Pull-Up Disable control for this pin
- Uint16 GPIO2:1; // 2 Pull-Up Disable control for this pin
- Uint16 GPIO3:1; // 3 Pull-Up Disable control for this pin
- Uint16 GPIO4:1; // 4 Pull-Up Disable control for this pin
- Uint16 GPIO5:1; // 5 Pull-Up Disable control for this pin
- Uint16 GPIO6:1; // 6 Pull-Up Disable control for this pin
- Uint16 GPIO7:1; // 7 Pull-Up Disable control for this pin
- Uint16 GPIO8:1; // 8 Pull-Up Disable control for this pin
- Uint16 GPIO9:1; // 9 Pull-Up Disable control for this pin
- Uint16 GPIO10:1; // 10 Pull-Up Disable control for this pin
- Uint16 GPIO11:1; // 11 Pull-Up Disable control for this pin
- Uint16 GPIO12:1; // 12 Pull-Up Disable control for this pin
- Uint16 GPIO13:1; // 13 Pull-Up Disable control for this pin
- Uint16 GPIO14:1; // 14 Pull-Up Disable control for this pin
- Uint16 GPIO15:1; // 15 Pull-Up Disable control for this pin
- Uint16 GPIO16:1; // 16 Pull-Up Disable control for this pin
- Uint16 GPIO17:1; // 17 Pull-Up Disable control for this pin
- Uint16 GPIO18:1; // 18 Pull-Up Disable control for this pin
- Uint16 GPIO19:1; // 19 Pull-Up Disable control for this pin
- Uint16 GPIO20:1; // 20 Pull-Up Disable control for this pin
- Uint16 GPIO21:1; // 21 Pull-Up Disable control for this pin
- Uint16 GPIO22:1; // 22 Pull-Up Disable control for this pin
- Uint16 GPIO23:1; // 23 Pull-Up Disable control for this pin
- Uint16 GPIO24:1; // 24 Pull-Up Disable control for this pin
- Uint16 GPIO25:1; // 25 Pull-Up Disable control for this pin
- Uint16 GPIO26:1; // 26 Pull-Up Disable control for this pin
- Uint16 GPIO27:1; // 27 Pull-Up Disable control for this pin
- Uint16 GPIO28:1; // 28 Pull-Up Disable control for this pin
- Uint16 GPIO29:1; // 29 Pull-Up Disable control for this pin
- Uint16 GPIO30:1; // 30 Pull-Up Disable control for this pin
- Uint16 GPIO31:1; // 31 Pull-Up Disable control for this pin
- };
- union GPAPUD_REG {
- Uint32 all;
- struct GPAPUD_BITS bit;
- };
- struct GPAINV_BITS { // bits description
- Uint16 GPIO0:1; // 0 Input inversion control for this pin
- Uint16 GPIO1:1; // 1 Input inversion control for this pin
- Uint16 GPIO2:1; // 2 Input inversion control for this pin
- Uint16 GPIO3:1; // 3 Input inversion control for this pin
- Uint16 GPIO4:1; // 4 Input inversion control for this pin
- Uint16 GPIO5:1; // 5 Input inversion control for this pin
- Uint16 GPIO6:1; // 6 Input inversion control for this pin
- Uint16 GPIO7:1; // 7 Input inversion control for this pin
- Uint16 GPIO8:1; // 8 Input inversion control for this pin
- Uint16 GPIO9:1; // 9 Input inversion control for this pin
- Uint16 GPIO10:1; // 10 Input inversion control for this pin
- Uint16 GPIO11:1; // 11 Input inversion control for this pin
- Uint16 GPIO12:1; // 12 Input inversion control for this pin
- Uint16 GPIO13:1; // 13 Input inversion control for this pin
- Uint16 GPIO14:1; // 14 Input inversion control for this pin
- Uint16 GPIO15:1; // 15 Input inversion control for this pin
- Uint16 GPIO16:1; // 16 Input inversion control for this pin
- Uint16 GPIO17:1; // 17 Input inversion control for this pin
- Uint16 GPIO18:1; // 18 Input inversion control for this pin
- Uint16 GPIO19:1; // 19 Input inversion control for this pin
- Uint16 GPIO20:1; // 20 Input inversion control for this pin
- Uint16 GPIO21:1; // 21 Input inversion control for this pin
- Uint16 GPIO22:1; // 22 Input inversion control for this pin
- Uint16 GPIO23:1; // 23 Input inversion control for this pin
- Uint16 GPIO24:1; // 24 Input inversion control for this pin
- Uint16 GPIO25:1; // 25 Input inversion control for this pin
- Uint16 GPIO26:1; // 26 Input inversion control for this pin
- Uint16 GPIO27:1; // 27 Input inversion control for this pin
- Uint16 GPIO28:1; // 28 Input inversion control for this pin
- Uint16 GPIO29:1; // 29 Input inversion control for this pin
- Uint16 GPIO30:1; // 30 Input inversion control for this pin
- Uint16 GPIO31:1; // 31 Input inversion control for this pin
- };
- union GPAINV_REG {
- Uint32 all;
- struct GPAINV_BITS bit;
- };
- struct GPAODR_BITS { // bits description
- Uint16 GPIO0:1; // 0 Outpout Open-Drain control for this pin
- Uint16 GPIO1:1; // 1 Outpout Open-Drain control for this pin
- Uint16 GPIO2:1; // 2 Outpout Open-Drain control for this pin
- Uint16 GPIO3:1; // 3 Outpout Open-Drain control for this pin
- Uint16 GPIO4:1; // 4 Outpout Open-Drain control for this pin
- Uint16 GPIO5:1; // 5 Outpout Open-Drain control for this pin
- Uint16 GPIO6:1; // 6 Outpout Open-Drain control for this pin
- Uint16 GPIO7:1; // 7 Outpout Open-Drain control for this pin
- Uint16 GPIO8:1; // 8 Outpout Open-Drain control for this pin
- Uint16 GPIO9:1; // 9 Outpout Open-Drain control for this pin
- Uint16 GPIO10:1; // 10 Outpout Open-Drain control for this pin
- Uint16 GPIO11:1; // 11 Outpout Open-Drain control for this pin
- Uint16 GPIO12:1; // 12 Outpout Open-Drain control for this pin
- Uint16 GPIO13:1; // 13 Outpout Open-Drain control for this pin
- Uint16 GPIO14:1; // 14 Outpout Open-Drain control for this pin
- Uint16 GPIO15:1; // 15 Outpout Open-Drain control for this pin
- Uint16 GPIO16:1; // 16 Outpout Open-Drain control for this pin
- Uint16 GPIO17:1; // 17 Outpout Open-Drain control for this pin
- Uint16 GPIO18:1; // 18 Outpout Open-Drain control for this pin
- Uint16 GPIO19:1; // 19 Outpout Open-Drain control for this pin
- Uint16 GPIO20:1; // 20 Outpout Open-Drain control for this pin
- Uint16 GPIO21:1; // 21 Outpout Open-Drain control for this pin
- Uint16 GPIO22:1; // 22 Outpout Open-Drain control for this pin
- Uint16 GPIO23:1; // 23 Outpout Open-Drain control for this pin
- Uint16 GPIO24:1; // 24 Outpout Open-Drain control for this pin
- Uint16 GPIO25:1; // 25 Outpout Open-Drain control for this pin
- Uint16 GPIO26:1; // 26 Outpout Open-Drain control for this pin
- Uint16 GPIO27:1; // 27 Outpout Open-Drain control for this pin
- Uint16 GPIO28:1; // 28 Outpout Open-Drain control for this pin
- Uint16 GPIO29:1; // 29 Outpout Open-Drain control for this pin
- Uint16 GPIO30:1; // 30 Outpout Open-Drain control for this pin
- Uint16 GPIO31:1; // 31 Outpout Open-Drain control for this pin
- };
- union GPAODR_REG {
- Uint32 all;
- struct GPAODR_BITS bit;
- };
- struct GPAGMUX1_BITS { // bits description
- Uint16 GPIO0:2; // 1:0 Defines pin-muxing selection for GPIO0
- Uint16 GPIO1:2; // 3:2 Defines pin-muxing selection for GPIO1
- Uint16 GPIO2:2; // 5:4 Defines pin-muxing selection for GPIO2
- Uint16 GPIO3:2; // 7:6 Defines pin-muxing selection for GPIO3
- Uint16 GPIO4:2; // 9:8 Defines pin-muxing selection for GPIO4
- Uint16 GPIO5:2; // 11:10 Defines pin-muxing selection for GPIO5
- Uint16 GPIO6:2; // 13:12 Defines pin-muxing selection for GPIO6
- Uint16 GPIO7:2; // 15:14 Defines pin-muxing selection for GPIO7
- Uint16 GPIO8:2; // 17:16 Defines pin-muxing selection for GPIO8
- Uint16 GPIO9:2; // 19:18 Defines pin-muxing selection for GPIO9
- Uint16 GPIO10:2; // 21:20 Defines pin-muxing selection for GPIO10
- Uint16 GPIO11:2; // 23:22 Defines pin-muxing selection for GPIO11
- Uint16 GPIO12:2; // 25:24 Defines pin-muxing selection for GPIO12
- Uint16 GPIO13:2; // 27:26 Defines pin-muxing selection for GPIO13
- Uint16 GPIO14:2; // 29:28 Defines pin-muxing selection for GPIO14
- Uint16 GPIO15:2; // 31:30 Defines pin-muxing selection for GPIO15
- };
- union GPAGMUX1_REG {
- Uint32 all;
- struct GPAGMUX1_BITS bit;
- };
- struct GPAGMUX2_BITS { // bits description
- Uint16 GPIO16:2; // 1:0 Defines pin-muxing selection for GPIO16
- Uint16 GPIO17:2; // 3:2 Defines pin-muxing selection for GPIO17
- Uint16 GPIO18:2; // 5:4 Defines pin-muxing selection for GPIO18
- Uint16 GPIO19:2; // 7:6 Defines pin-muxing selection for GPIO19
- Uint16 GPIO20:2; // 9:8 Defines pin-muxing selection for GPIO20
- Uint16 GPIO21:2; // 11:10 Defines pin-muxing selection for GPIO21
- Uint16 GPIO22:2; // 13:12 Defines pin-muxing selection for GPIO22
- Uint16 GPIO23:2; // 15:14 Defines pin-muxing selection for GPIO23
- Uint16 GPIO24:2; // 17:16 Defines pin-muxing selection for GPIO24
- Uint16 GPIO25:2; // 19:18 Defines pin-muxing selection for GPIO25
- Uint16 GPIO26:2; // 21:20 Defines pin-muxing selection for GPIO26
- Uint16 GPIO27:2; // 23:22 Defines pin-muxing selection for GPIO27
- Uint16 GPIO28:2; // 25:24 Defines pin-muxing selection for GPIO28
- Uint16 GPIO29:2; // 27:26 Defines pin-muxing selection for GPIO29
- Uint16 GPIO30:2; // 29:28 Defines pin-muxing selection for GPIO30
- Uint16 GPIO31:2; // 31:30 Defines pin-muxing selection for GPIO31
- };
- union GPAGMUX2_REG {
- Uint32 all;
- struct GPAGMUX2_BITS bit;
- };
- struct GPACSEL1_BITS { // bits description
- Uint16 GPIO0:4; // 3:0 GPIO0 Master CPU Select
- Uint16 GPIO1:4; // 7:4 GPIO1 Master CPU Select
- Uint16 GPIO2:4; // 11:8 GPIO2 Master CPU Select
- Uint16 GPIO3:4; // 15:12 GPIO3 Master CPU Select
- Uint16 GPIO4:4; // 19:16 GPIO4 Master CPU Select
- Uint16 GPIO5:4; // 23:20 GPIO5 Master CPU Select
- Uint16 GPIO6:4; // 27:24 GPIO6 Master CPU Select
- Uint16 GPIO7:4; // 31:28 GPIO7 Master CPU Select
- };
- union GPACSEL1_REG {
- Uint32 all;
- struct GPACSEL1_BITS bit;
- };
- struct GPACSEL2_BITS { // bits description
- Uint16 GPIO8:4; // 3:0 GPIO8 Master CPU Select
- Uint16 GPIO9:4; // 7:4 GPIO9 Master CPU Select
- Uint16 GPIO10:4; // 11:8 GPIO10 Master CPU Select
- Uint16 GPIO11:4; // 15:12 GPIO11 Master CPU Select
- Uint16 GPIO12:4; // 19:16 GPIO12 Master CPU Select
- Uint16 GPIO13:4; // 23:20 GPIO13 Master CPU Select
- Uint16 GPIO14:4; // 27:24 GPIO14 Master CPU Select
- Uint16 GPIO15:4; // 31:28 GPIO15 Master CPU Select
- };
- union GPACSEL2_REG {
- Uint32 all;
- struct GPACSEL2_BITS bit;
- };
- struct GPACSEL3_BITS { // bits description
- Uint16 GPIO16:4; // 3:0 GPIO16 Master CPU Select
- Uint16 GPIO17:4; // 7:4 GPIO17 Master CPU Select
- Uint16 GPIO18:4; // 11:8 GPIO18 Master CPU Select
- Uint16 GPIO19:4; // 15:12 GPIO19 Master CPU Select
- Uint16 GPIO20:4; // 19:16 GPIO20 Master CPU Select
- Uint16 GPIO21:4; // 23:20 GPIO21 Master CPU Select
- Uint16 GPIO22:4; // 27:24 GPIO22 Master CPU Select
- Uint16 GPIO23:4; // 31:28 GPIO23 Master CPU Select
- };
- union GPACSEL3_REG {
- Uint32 all;
- struct GPACSEL3_BITS bit;
- };
- struct GPACSEL4_BITS { // bits description
- Uint16 GPIO24:4; // 3:0 GPIO24 Master CPU Select
- Uint16 GPIO25:4; // 7:4 GPIO25 Master CPU Select
- Uint16 GPIO26:4; // 11:8 GPIO26 Master CPU Select
- Uint16 GPIO27:4; // 15:12 GPIO27 Master CPU Select
- Uint16 GPIO28:4; // 19:16 GPIO28 Master CPU Select
- Uint16 GPIO29:4; // 23:20 GPIO29 Master CPU Select
- Uint16 GPIO30:4; // 27:24 GPIO30 Master CPU Select
- Uint16 GPIO31:4; // 31:28 GPIO31 Master CPU Select
- };
- union GPACSEL4_REG {
- Uint32 all;
- struct GPACSEL4_BITS bit;
- };
- struct GPALOCK_BITS { // bits description
- Uint16 GPIO0:1; // 0 Configuration Lock bit for this pin
- Uint16 GPIO1:1; // 1 Configuration Lock bit for this pin
- Uint16 GPIO2:1; // 2 Configuration Lock bit for this pin
- Uint16 GPIO3:1; // 3 Configuration Lock bit for this pin
- Uint16 GPIO4:1; // 4 Configuration Lock bit for this pin
- Uint16 GPIO5:1; // 5 Configuration Lock bit for this pin
- Uint16 GPIO6:1; // 6 Configuration Lock bit for this pin
- Uint16 GPIO7:1; // 7 Configuration Lock bit for this pin
- Uint16 GPIO8:1; // 8 Configuration Lock bit for this pin
- Uint16 GPIO9:1; // 9 Configuration Lock bit for this pin
- Uint16 GPIO10:1; // 10 Configuration Lock bit for this pin
- Uint16 GPIO11:1; // 11 Configuration Lock bit for this pin
- Uint16 GPIO12:1; // 12 Configuration Lock bit for this pin
- Uint16 GPIO13:1; // 13 Configuration Lock bit for this pin
- Uint16 GPIO14:1; // 14 Configuration Lock bit for this pin
- Uint16 GPIO15:1; // 15 Configuration Lock bit for this pin
- Uint16 GPIO16:1; // 16 Configuration Lock bit for this pin
- Uint16 GPIO17:1; // 17 Configuration Lock bit for this pin
- Uint16 GPIO18:1; // 18 Configuration Lock bit for this pin
- Uint16 GPIO19:1; // 19 Configuration Lock bit for this pin
- Uint16 GPIO20:1; // 20 Configuration Lock bit for this pin
- Uint16 GPIO21:1; // 21 Configuration Lock bit for this pin
- Uint16 GPIO22:1; // 22 Configuration Lock bit for this pin
- Uint16 GPIO23:1; // 23 Configuration Lock bit for this pin
- Uint16 GPIO24:1; // 24 Configuration Lock bit for this pin
- Uint16 GPIO25:1; // 25 Configuration Lock bit for this pin
- Uint16 GPIO26:1; // 26 Configuration Lock bit for this pin
- Uint16 GPIO27:1; // 27 Configuration Lock bit for this pin
- Uint16 GPIO28:1; // 28 Configuration Lock bit for this pin
- Uint16 GPIO29:1; // 29 Configuration Lock bit for this pin
- Uint16 GPIO30:1; // 30 Configuration Lock bit for this pin
- Uint16 GPIO31:1; // 31 Configuration Lock bit for this pin
- };
- union GPALOCK_REG {
- Uint32 all;
- struct GPALOCK_BITS bit;
- };
- struct GPACR_BITS { // bits description
- Uint16 GPIO0:1; // 0 Configuration lock commit bit for this pin
- Uint16 GPIO1:1; // 1 Configuration lock commit bit for this pin
- Uint16 GPIO2:1; // 2 Configuration lock commit bit for this pin
- Uint16 GPIO3:1; // 3 Configuration lock commit bit for this pin
- Uint16 GPIO4:1; // 4 Configuration lock commit bit for this pin
- Uint16 GPIO5:1; // 5 Configuration lock commit bit for this pin
- Uint16 GPIO6:1; // 6 Configuration lock commit bit for this pin
- Uint16 GPIO7:1; // 7 Configuration lock commit bit for this pin
- Uint16 GPIO8:1; // 8 Configuration lock commit bit for this pin
- Uint16 GPIO9:1; // 9 Configuration lock commit bit for this pin
- Uint16 GPIO10:1; // 10 Configuration lock commit bit for this pin
- Uint16 GPIO11:1; // 11 Configuration lock commit bit for this pin
- Uint16 GPIO12:1; // 12 Configuration lock commit bit for this pin
- Uint16 GPIO13:1; // 13 Configuration lock commit bit for this pin
- Uint16 GPIO14:1; // 14 Configuration lock commit bit for this pin
- Uint16 GPIO15:1; // 15 Configuration lock commit bit for this pin
- Uint16 GPIO16:1; // 16 Configuration lock commit bit for this pin
- Uint16 GPIO17:1; // 17 Configuration lock commit bit for this pin
- Uint16 GPIO18:1; // 18 Configuration lock commit bit for this pin
- Uint16 GPIO19:1; // 19 Configuration lock commit bit for this pin
- Uint16 GPIO20:1; // 20 Configuration lock commit bit for this pin
- Uint16 GPIO21:1; // 21 Configuration lock commit bit for this pin
- Uint16 GPIO22:1; // 22 Configuration lock commit bit for this pin
- Uint16 GPIO23:1; // 23 Configuration lock commit bit for this pin
- Uint16 GPIO24:1; // 24 Configuration lock commit bit for this pin
- Uint16 GPIO25:1; // 25 Configuration lock commit bit for this pin
- Uint16 GPIO26:1; // 26 Configuration lock commit bit for this pin
- Uint16 GPIO27:1; // 27 Configuration lock commit bit for this pin
- Uint16 GPIO28:1; // 28 Configuration lock commit bit for this pin
- Uint16 GPIO29:1; // 29 Configuration lock commit bit for this pin
- Uint16 GPIO30:1; // 30 Configuration lock commit bit for this pin
- Uint16 GPIO31:1; // 31 Configuration lock commit bit for this pin
- };
- union GPACR_REG {
- Uint32 all;
- struct GPACR_BITS bit;
- };
- struct GPBCTRL_BITS { // bits description
- Uint16 QUALPRD0:8; // 7:0 Qualification sampling period for GPIO32 to GPIO39
- Uint16 QUALPRD1:8; // 15:8 Qualification sampling period for GPIO40 to GPIO47
- Uint16 QUALPRD2:8; // 23:16 Qualification sampling period for GPIO48 to GPIO55
- Uint16 QUALPRD3:8; // 31:24 Qualification sampling period for GPIO56 to GPIO63
- };
- union GPBCTRL_REG {
- Uint32 all;
- struct GPBCTRL_BITS bit;
- };
- struct GPBQSEL1_BITS { // bits description
- Uint16 GPIO32:2; // 1:0 Select input qualification type for GPIO32
- Uint16 GPIO33:2; // 3:2 Select input qualification type for GPIO33
- Uint16 GPIO34:2; // 5:4 Select input qualification type for GPIO34
- Uint16 GPIO35:2; // 7:6 Select input qualification type for GPIO35
- Uint16 GPIO36:2; // 9:8 Select input qualification type for GPIO36
- Uint16 GPIO37:2; // 11:10 Select input qualification type for GPIO37
- Uint16 GPIO38:2; // 13:12 Select input qualification type for GPIO38
- Uint16 GPIO39:2; // 15:14 Select input qualification type for GPIO39
- Uint16 GPIO40:2; // 17:16 Select input qualification type for GPIO40
- Uint16 GPIO41:2; // 19:18 Select input qualification type for GPIO41
- Uint16 GPIO42:2; // 21:20 Select input qualification type for GPIO42
- Uint16 GPIO43:2; // 23:22 Select input qualification type for GPIO43
- Uint16 GPIO44:2; // 25:24 Select input qualification type for GPIO44
- Uint16 GPIO45:2; // 27:26 Select input qualification type for GPIO45
- Uint16 GPIO46:2; // 29:28 Select input qualification type for GPIO46
- Uint16 GPIO47:2; // 31:30 Select input qualification type for GPIO47
- };
- union GPBQSEL1_REG {
- Uint32 all;
- struct GPBQSEL1_BITS bit;
- };
- struct GPBQSEL2_BITS { // bits description
- Uint16 GPIO48:2; // 1:0 Select input qualification type for GPIO48
- Uint16 GPIO49:2; // 3:2 Select input qualification type for GPIO49
- Uint16 GPIO50:2; // 5:4 Select input qualification type for GPIO50
- Uint16 GPIO51:2; // 7:6 Select input qualification type for GPIO51
- Uint16 GPIO52:2; // 9:8 Select input qualification type for GPIO52
- Uint16 GPIO53:2; // 11:10 Select input qualification type for GPIO53
- Uint16 GPIO54:2; // 13:12 Select input qualification type for GPIO54
- Uint16 GPIO55:2; // 15:14 Select input qualification type for GPIO55
- Uint16 GPIO56:2; // 17:16 Select input qualification type for GPIO56
- Uint16 GPIO57:2; // 19:18 Select input qualification type for GPIO57
- Uint16 GPIO58:2; // 21:20 Select input qualification type for GPIO58
- Uint16 GPIO59:2; // 23:22 Select input qualification type for GPIO59
- Uint16 GPIO60:2; // 25:24 Select input qualification type for GPIO60
- Uint16 GPIO61:2; // 27:26 Select input qualification type for GPIO61
- Uint16 GPIO62:2; // 29:28 Select input qualification type for GPIO62
- Uint16 GPIO63:2; // 31:30 Select input qualification type for GPIO63
- };
- union GPBQSEL2_REG {
- Uint32 all;
- struct GPBQSEL2_BITS bit;
- };
- struct GPBMUX1_BITS { // bits description
- Uint16 GPIO32:2; // 1:0 Defines pin-muxing selection for GPIO32
- Uint16 GPIO33:2; // 3:2 Defines pin-muxing selection for GPIO33
- Uint16 GPIO34:2; // 5:4 Defines pin-muxing selection for GPIO34
- Uint16 GPIO35:2; // 7:6 Defines pin-muxing selection for GPIO35
- Uint16 GPIO36:2; // 9:8 Defines pin-muxing selection for GPIO36
- Uint16 GPIO37:2; // 11:10 Defines pin-muxing selection for GPIO37
- Uint16 GPIO38:2; // 13:12 Defines pin-muxing selection for GPIO38
- Uint16 GPIO39:2; // 15:14 Defines pin-muxing selection for GPIO39
- Uint16 GPIO40:2; // 17:16 Defines pin-muxing selection for GPIO40
- Uint16 GPIO41:2; // 19:18 Defines pin-muxing selection for GPIO41
- Uint16 GPIO42:2; // 21:20 Defines pin-muxing selection for GPIO42
- Uint16 GPIO43:2; // 23:22 Defines pin-muxing selection for GPIO43
- Uint16 GPIO44:2; // 25:24 Defines pin-muxing selection for GPIO44
- Uint16 GPIO45:2; // 27:26 Defines pin-muxing selection for GPIO45
- Uint16 GPIO46:2; // 29:28 Defines pin-muxing selection for GPIO46
- Uint16 GPIO47:2; // 31:30 Defines pin-muxing selection for GPIO47
- };
- union GPBMUX1_REG {
- Uint32 all;
- struct GPBMUX1_BITS bit;
- };
- struct GPBMUX2_BITS { // bits description
- Uint16 GPIO48:2; // 1:0 Defines pin-muxing selection for GPIO48
- Uint16 GPIO49:2; // 3:2 Defines pin-muxing selection for GPIO49
- Uint16 GPIO50:2; // 5:4 Defines pin-muxing selection for GPIO50
- Uint16 GPIO51:2; // 7:6 Defines pin-muxing selection for GPIO51
- Uint16 GPIO52:2; // 9:8 Defines pin-muxing selection for GPIO52
- Uint16 GPIO53:2; // 11:10 Defines pin-muxing selection for GPIO53
- Uint16 GPIO54:2; // 13:12 Defines pin-muxing selection for GPIO54
- Uint16 GPIO55:2; // 15:14 Defines pin-muxing selection for GPIO55
- Uint16 GPIO56:2; // 17:16 Defines pin-muxing selection for GPIO56
- Uint16 GPIO57:2; // 19:18 Defines pin-muxing selection for GPIO57
- Uint16 GPIO58:2; // 21:20 Defines pin-muxing selection for GPIO58
- Uint16 GPIO59:2; // 23:22 Defines pin-muxing selection for GPIO59
- Uint16 GPIO60:2; // 25:24 Defines pin-muxing selection for GPIO60
- Uint16 GPIO61:2; // 27:26 Defines pin-muxing selection for GPIO61
- Uint16 GPIO62:2; // 29:28 Defines pin-muxing selection for GPIO62
- Uint16 GPIO63:2; // 31:30 Defines pin-muxing selection for GPIO63
- };
- union GPBMUX2_REG {
- Uint32 all;
- struct GPBMUX2_BITS bit;
- };
- struct GPBDIR_BITS { // bits description
- Uint16 GPIO32:1; // 0 Defines direction for this pin in GPIO mode
- Uint16 GPIO33:1; // 1 Defines direction for this pin in GPIO mode
- Uint16 GPIO34:1; // 2 Defines direction for this pin in GPIO mode
- Uint16 GPIO35:1; // 3 Defines direction for this pin in GPIO mode
- Uint16 GPIO36:1; // 4 Defines direction for this pin in GPIO mode
- Uint16 GPIO37:1; // 5 Defines direction for this pin in GPIO mode
- Uint16 GPIO38:1; // 6 Defines direction for this pin in GPIO mode
- Uint16 GPIO39:1; // 7 Defines direction for this pin in GPIO mode
- Uint16 GPIO40:1; // 8 Defines direction for this pin in GPIO mode
- Uint16 GPIO41:1; // 9 Defines direction for this pin in GPIO mode
- Uint16 GPIO42:1; // 10 Defines direction for this pin in GPIO mode
- Uint16 GPIO43:1; // 11 Defines direction for this pin in GPIO mode
- Uint16 GPIO44:1; // 12 Defines direction for this pin in GPIO mode
- Uint16 GPIO45:1; // 13 Defines direction for this pin in GPIO mode
- Uint16 GPIO46:1; // 14 Defines direction for this pin in GPIO mode
- Uint16 GPIO47:1; // 15 Defines direction for this pin in GPIO mode
- Uint16 GPIO48:1; // 16 Defines direction for this pin in GPIO mode
- Uint16 GPIO49:1; // 17 Defines direction for this pin in GPIO mode
- Uint16 GPIO50:1; // 18 Defines direction for this pin in GPIO mode
- Uint16 GPIO51:1; // 19 Defines direction for this pin in GPIO mode
- Uint16 GPIO52:1; // 20 Defines direction for this pin in GPIO mode
- Uint16 GPIO53:1; // 21 Defines direction for this pin in GPIO mode
- Uint16 GPIO54:1; // 22 Defines direction for this pin in GPIO mode
- Uint16 GPIO55:1; // 23 Defines direction for this pin in GPIO mode
- Uint16 GPIO56:1; // 24 Defines direction for this pin in GPIO mode
- Uint16 GPIO57:1; // 25 Defines direction for this pin in GPIO mode
- Uint16 GPIO58:1; // 26 Defines direction for this pin in GPIO mode
- Uint16 GPIO59:1; // 27 Defines direction for this pin in GPIO mode
- Uint16 GPIO60:1; // 28 Defines direction for this pin in GPIO mode
- Uint16 GPIO61:1; // 29 Defines direction for this pin in GPIO mode
- Uint16 GPIO62:1; // 30 Defines direction for this pin in GPIO mode
- Uint16 GPIO63:1; // 31 Defines direction for this pin in GPIO mode
- };
- union GPBDIR_REG {
- Uint32 all;
- struct GPBDIR_BITS bit;
- };
- struct GPBPUD_BITS { // bits description
- Uint16 GPIO32:1; // 0 Pull-Up Disable control for this pin
- Uint16 GPIO33:1; // 1 Pull-Up Disable control for this pin
- Uint16 GPIO34:1; // 2 Pull-Up Disable control for this pin
- Uint16 GPIO35:1; // 3 Pull-Up Disable control for this pin
- Uint16 GPIO36:1; // 4 Pull-Up Disable control for this pin
- Uint16 GPIO37:1; // 5 Pull-Up Disable control for this pin
- Uint16 GPIO38:1; // 6 Pull-Up Disable control for this pin
- Uint16 GPIO39:1; // 7 Pull-Up Disable control for this pin
- Uint16 GPIO40:1; // 8 Pull-Up Disable control for this pin
- Uint16 GPIO41:1; // 9 Pull-Up Disable control for this pin
- Uint16 GPIO42:1; // 10 Pull-Up Disable control for this pin
- Uint16 GPIO43:1; // 11 Pull-Up Disable control for this pin
- Uint16 GPIO44:1; // 12 Pull-Up Disable control for this pin
- Uint16 GPIO45:1; // 13 Pull-Up Disable control for this pin
- Uint16 GPIO46:1; // 14 Pull-Up Disable control for this pin
- Uint16 GPIO47:1; // 15 Pull-Up Disable control for this pin
- Uint16 GPIO48:1; // 16 Pull-Up Disable control for this pin
- Uint16 GPIO49:1; // 17 Pull-Up Disable control for this pin
- Uint16 GPIO50:1; // 18 Pull-Up Disable control for this pin
- Uint16 GPIO51:1; // 19 Pull-Up Disable control for this pin
- Uint16 GPIO52:1; // 20 Pull-Up Disable control for this pin
- Uint16 GPIO53:1; // 21 Pull-Up Disable control for this pin
- Uint16 GPIO54:1; // 22 Pull-Up Disable control for this pin
- Uint16 GPIO55:1; // 23 Pull-Up Disable control for this pin
- Uint16 GPIO56:1; // 24 Pull-Up Disable control for this pin
- Uint16 GPIO57:1; // 25 Pull-Up Disable control for this pin
- Uint16 GPIO58:1; // 26 Pull-Up Disable control for this pin
- Uint16 GPIO59:1; // 27 Pull-Up Disable control for this pin
- Uint16 GPIO60:1; // 28 Pull-Up Disable control for this pin
- Uint16 GPIO61:1; // 29 Pull-Up Disable control for this pin
- Uint16 GPIO62:1; // 30 Pull-Up Disable control for this pin
- Uint16 GPIO63:1; // 31 Pull-Up Disable control for this pin
- };
- union GPBPUD_REG {
- Uint32 all;
- struct GPBPUD_BITS bit;
- };
- struct GPBINV_BITS { // bits description
- Uint16 GPIO32:1; // 0 Input inversion control for this pin
- Uint16 GPIO33:1; // 1 Input inversion control for this pin
- Uint16 GPIO34:1; // 2 Input inversion control for this pin
- Uint16 GPIO35:1; // 3 Input inversion control for this pin
- Uint16 GPIO36:1; // 4 Input inversion control for this pin
- Uint16 GPIO37:1; // 5 Input inversion control for this pin
- Uint16 GPIO38:1; // 6 Input inversion control for this pin
- Uint16 GPIO39:1; // 7 Input inversion control for this pin
- Uint16 GPIO40:1; // 8 Input inversion control for this pin
- Uint16 GPIO41:1; // 9 Input inversion control for this pin
- Uint16 GPIO42:1; // 10 Input inversion control for this pin
- Uint16 GPIO43:1; // 11 Input inversion control for this pin
- Uint16 GPIO44:1; // 12 Input inversion control for this pin
- Uint16 GPIO45:1; // 13 Input inversion control for this pin
- Uint16 GPIO46:1; // 14 Input inversion control for this pin
- Uint16 GPIO47:1; // 15 Input inversion control for this pin
- Uint16 GPIO48:1; // 16 Input inversion control for this pin
- Uint16 GPIO49:1; // 17 Input inversion control for this pin
- Uint16 GPIO50:1; // 18 Input inversion control for this pin
- Uint16 GPIO51:1; // 19 Input inversion control for this pin
- Uint16 GPIO52:1; // 20 Input inversion control for this pin
- Uint16 GPIO53:1; // 21 Input inversion control for this pin
- Uint16 GPIO54:1; // 22 Input inversion control for this pin
- Uint16 GPIO55:1; // 23 Input inversion control for this pin
- Uint16 GPIO56:1; // 24 Input inversion control for this pin
- Uint16 GPIO57:1; // 25 Input inversion control for this pin
- Uint16 GPIO58:1; // 26 Input inversion control for this pin
- Uint16 GPIO59:1; // 27 Input inversion control for this pin
- Uint16 GPIO60:1; // 28 Input inversion control for this pin
- Uint16 GPIO61:1; // 29 Input inversion control for this pin
- Uint16 GPIO62:1; // 30 Input inversion control for this pin
- Uint16 GPIO63:1; // 31 Input inversion control for this pin
- };
- union GPBINV_REG {
- Uint32 all;
- struct GPBINV_BITS bit;
- };
- struct GPBODR_BITS { // bits description
- Uint16 GPIO32:1; // 0 Outpout Open-Drain control for this pin
- Uint16 GPIO33:1; // 1 Outpout Open-Drain control for this pin
- Uint16 GPIO34:1; // 2 Outpout Open-Drain control for this pin
- Uint16 GPIO35:1; // 3 Outpout Open-Drain control for this pin
- Uint16 GPIO36:1; // 4 Outpout Open-Drain control for this pin
- Uint16 GPIO37:1; // 5 Outpout Open-Drain control for this pin
- Uint16 GPIO38:1; // 6 Outpout Open-Drain control for this pin
- Uint16 GPIO39:1; // 7 Outpout Open-Drain control for this pin
- Uint16 GPIO40:1; // 8 Outpout Open-Drain control for this pin
- Uint16 GPIO41:1; // 9 Outpout Open-Drain control for this pin
- Uint16 GPIO42:1; // 10 Outpout Open-Drain control for this pin
- Uint16 GPIO43:1; // 11 Outpout Open-Drain control for this pin
- Uint16 GPIO44:1; // 12 Outpout Open-Drain control for this pin
- Uint16 GPIO45:1; // 13 Outpout Open-Drain control for this pin
- Uint16 GPIO46:1; // 14 Outpout Open-Drain control for this pin
- Uint16 GPIO47:1; // 15 Outpout Open-Drain control for this pin
- Uint16 GPIO48:1; // 16 Outpout Open-Drain control for this pin
- Uint16 GPIO49:1; // 17 Outpout Open-Drain control for this pin
- Uint16 GPIO50:1; // 18 Outpout Open-Drain control for this pin
- Uint16 GPIO51:1; // 19 Outpout Open-Drain control for this pin
- Uint16 GPIO52:1; // 20 Outpout Open-Drain control for this pin
- Uint16 GPIO53:1; // 21 Outpout Open-Drain control for this pin
- Uint16 GPIO54:1; // 22 Outpout Open-Drain control for this pin
- Uint16 GPIO55:1; // 23 Outpout Open-Drain control for this pin
- Uint16 GPIO56:1; // 24 Outpout Open-Drain control for this pin
- Uint16 GPIO57:1; // 25 Outpout Open-Drain control for this pin
- Uint16 GPIO58:1; // 26 Outpout Open-Drain control for this pin
- Uint16 GPIO59:1; // 27 Outpout Open-Drain control for this pin
- Uint16 GPIO60:1; // 28 Outpout Open-Drain control for this pin
- Uint16 GPIO61:1; // 29 Outpout Open-Drain control for this pin
- Uint16 GPIO62:1; // 30 Outpout Open-Drain control for this pin
- Uint16 GPIO63:1; // 31 Outpout Open-Drain control for this pin
- };
- union GPBODR_REG {
- Uint32 all;
- struct GPBODR_BITS bit;
- };
- struct GPBAMSEL_BITS { // bits description
- Uint16 rsvd1:1; // 0 Reserved
- Uint16 rsvd2:1; // 1 Reserved
- Uint16 rsvd3:1; // 2 Reserved
- Uint16 rsvd4:1; // 3 Reserved
- Uint16 rsvd5:1; // 4 Reserved
- Uint16 rsvd6:1; // 5 Reserved
- Uint16 rsvd7:1; // 6 Reserved
- Uint16 rsvd8:1; // 7 Reserved
- Uint16 rsvd9:1; // 8 Reserved
- Uint16 rsvd10:1; // 9 Reserved
- Uint16 GPIO42:1; // 10 Analog Mode select for this pin
- Uint16 GPIO43:1; // 11 Analog Mode select for this pin
- Uint16 rsvd11:1; // 12 Reserved
- Uint16 rsvd12:1; // 13 Reserved
- Uint16 rsvd13:1; // 14 Reserved
- Uint16 rsvd14:1; // 15 Reserved
- Uint16 rsvd15:1; // 16 Reserved
- Uint16 rsvd16:1; // 17 Reserved
- Uint16 rsvd17:1; // 18 Reserved
- Uint16 rsvd18:1; // 19 Reserved
- Uint16 rsvd19:1; // 20 Reserved
- Uint16 rsvd20:1; // 21 Reserved
- Uint16 rsvd21:1; // 22 Reserved
- Uint16 rsvd22:1; // 23 Reserved
- Uint16 rsvd23:1; // 24 Reserved
- Uint16 rsvd24:1; // 25 Reserved
- Uint16 rsvd25:1; // 26 Reserved
- Uint16 rsvd26:1; // 27 Reserved
- Uint16 rsvd27:1; // 28 Reserved
- Uint16 rsvd28:1; // 29 Reserved
- Uint16 rsvd29:1; // 30 Reserved
- Uint16 rsvd30:1; // 31 Reserved
- };
- union GPBAMSEL_REG {
- Uint32 all;
- struct GPBAMSEL_BITS bit;
- };
- struct GPBGMUX1_BITS { // bits description
- Uint16 GPIO32:2; // 1:0 Defines pin-muxing selection for GPIO32
- Uint16 GPIO33:2; // 3:2 Defines pin-muxing selection for GPIO33
- Uint16 GPIO34:2; // 5:4 Defines pin-muxing selection for GPIO34
- Uint16 GPIO35:2; // 7:6 Defines pin-muxing selection for GPIO35
- Uint16 GPIO36:2; // 9:8 Defines pin-muxing selection for GPIO36
- Uint16 GPIO37:2; // 11:10 Defines pin-muxing selection for GPIO37
- Uint16 GPIO38:2; // 13:12 Defines pin-muxing selection for GPIO38
- Uint16 GPIO39:2; // 15:14 Defines pin-muxing selection for GPIO39
- Uint16 GPIO40:2; // 17:16 Defines pin-muxing selection for GPIO40
- Uint16 GPIO41:2; // 19:18 Defines pin-muxing selection for GPIO41
- Uint16 GPIO42:2; // 21:20 Defines pin-muxing selection for GPIO42
- Uint16 GPIO43:2; // 23:22 Defines pin-muxing selection for GPIO43
- Uint16 GPIO44:2; // 25:24 Defines pin-muxing selection for GPIO44
- Uint16 GPIO45:2; // 27:26 Defines pin-muxing selection for GPIO45
- Uint16 GPIO46:2; // 29:28 Defines pin-muxing selection for GPIO46
- Uint16 GPIO47:2; // 31:30 Defines pin-muxing selection for GPIO47
- };
- union GPBGMUX1_REG {
- Uint32 all;
- struct GPBGMUX1_BITS bit;
- };
- struct GPBGMUX2_BITS { // bits description
- Uint16 GPIO48:2; // 1:0 Defines pin-muxing selection for GPIO48
- Uint16 GPIO49:2; // 3:2 Defines pin-muxing selection for GPIO49
- Uint16 GPIO50:2; // 5:4 Defines pin-muxing selection for GPIO50
- Uint16 GPIO51:2; // 7:6 Defines pin-muxing selection for GPIO51
- Uint16 GPIO52:2; // 9:8 Defines pin-muxing selection for GPIO52
- Uint16 GPIO53:2; // 11:10 Defines pin-muxing selection for GPIO53
- Uint16 GPIO54:2; // 13:12 Defines pin-muxing selection for GPIO54
- Uint16 GPIO55:2; // 15:14 Defines pin-muxing selection for GPIO55
- Uint16 GPIO56:2; // 17:16 Defines pin-muxing selection for GPIO56
- Uint16 GPIO57:2; // 19:18 Defines pin-muxing selection for GPIO57
- Uint16 GPIO58:2; // 21:20 Defines pin-muxing selection for GPIO58
- Uint16 GPIO59:2; // 23:22 Defines pin-muxing selection for GPIO59
- Uint16 GPIO60:2; // 25:24 Defines pin-muxing selection for GPIO60
- Uint16 GPIO61:2; // 27:26 Defines pin-muxing selection for GPIO61
- Uint16 GPIO62:2; // 29:28 Defines pin-muxing selection for GPIO62
- Uint16 GPIO63:2; // 31:30 Defines pin-muxing selection for GPIO63
- };
- union GPBGMUX2_REG {
- Uint32 all;
- struct GPBGMUX2_BITS bit;
- };
- struct GPBCSEL1_BITS { // bits description
- Uint16 GPIO32:4; // 3:0 GPIO32 Master CPU Select
- Uint16 GPIO33:4; // 7:4 GPIO33 Master CPU Select
- Uint16 GPIO34:4; // 11:8 GPIO34 Master CPU Select
- Uint16 GPIO35:4; // 15:12 GPIO35 Master CPU Select
- Uint16 GPIO36:4; // 19:16 GPIO36 Master CPU Select
- Uint16 GPIO37:4; // 23:20 GPIO37 Master CPU Select
- Uint16 GPIO38:4; // 27:24 GPIO38 Master CPU Select
- Uint16 GPIO39:4; // 31:28 GPIO39 Master CPU Select
- };
- union GPBCSEL1_REG {
- Uint32 all;
- struct GPBCSEL1_BITS bit;
- };
- struct GPBCSEL2_BITS { // bits description
- Uint16 GPIO40:4; // 3:0 GPIO40 Master CPU Select
- Uint16 GPIO41:4; // 7:4 GPIO41 Master CPU Select
- Uint16 GPIO42:4; // 11:8 GPIO42 Master CPU Select
- Uint16 GPIO43:4; // 15:12 GPIO43 Master CPU Select
- Uint16 GPIO44:4; // 19:16 GPIO44 Master CPU Select
- Uint16 GPIO45:4; // 23:20 GPIO45 Master CPU Select
- Uint16 GPIO46:4; // 27:24 GPIO46 Master CPU Select
- Uint16 GPIO47:4; // 31:28 GPIO47 Master CPU Select
- };
- union GPBCSEL2_REG {
- Uint32 all;
- struct GPBCSEL2_BITS bit;
- };
- struct GPBCSEL3_BITS { // bits description
- Uint16 GPIO48:4; // 3:0 GPIO48 Master CPU Select
- Uint16 GPIO49:4; // 7:4 GPIO49 Master CPU Select
- Uint16 GPIO50:4; // 11:8 GPIO50 Master CPU Select
- Uint16 GPIO51:4; // 15:12 GPIO51 Master CPU Select
- Uint16 GPIO52:4; // 19:16 GPIO52 Master CPU Select
- Uint16 GPIO53:4; // 23:20 GPIO53 Master CPU Select
- Uint16 GPIO54:4; // 27:24 GPIO54 Master CPU Select
- Uint16 GPIO55:4; // 31:28 GPIO55 Master CPU Select
- };
- union GPBCSEL3_REG {
- Uint32 all;
- struct GPBCSEL3_BITS bit;
- };
- struct GPBCSEL4_BITS { // bits description
- Uint16 GPIO56:4; // 3:0 GPIO56 Master CPU Select
- Uint16 GPIO57:4; // 7:4 GPIO57 Master CPU Select
- Uint16 GPIO58:4; // 11:8 GPIO58 Master CPU Select
- Uint16 GPIO59:4; // 15:12 GPIO59 Master CPU Select
- Uint16 GPIO60:4; // 19:16 GPIO60 Master CPU Select
- Uint16 GPIO61:4; // 23:20 GPIO61 Master CPU Select
- Uint16 GPIO62:4; // 27:24 GPIO62 Master CPU Select
- Uint16 GPIO63:4; // 31:28 GPIO63 Master CPU Select
- };
- union GPBCSEL4_REG {
- Uint32 all;
- struct GPBCSEL4_BITS bit;
- };
- struct GPBLOCK_BITS { // bits description
- Uint16 GPIO32:1; // 0 Configuration Lock bit for this pin
- Uint16 GPIO33:1; // 1 Configuration Lock bit for this pin
- Uint16 GPIO34:1; // 2 Configuration Lock bit for this pin
- Uint16 GPIO35:1; // 3 Configuration Lock bit for this pin
- Uint16 GPIO36:1; // 4 Configuration Lock bit for this pin
- Uint16 GPIO37:1; // 5 Configuration Lock bit for this pin
- Uint16 GPIO38:1; // 6 Configuration Lock bit for this pin
- Uint16 GPIO39:1; // 7 Configuration Lock bit for this pin
- Uint16 GPIO40:1; // 8 Configuration Lock bit for this pin
- Uint16 GPIO41:1; // 9 Configuration Lock bit for this pin
- Uint16 GPIO42:1; // 10 Configuration Lock bit for this pin
- Uint16 GPIO43:1; // 11 Configuration Lock bit for this pin
- Uint16 GPIO44:1; // 12 Configuration Lock bit for this pin
- Uint16 GPIO45:1; // 13 Configuration Lock bit for this pin
- Uint16 GPIO46:1; // 14 Configuration Lock bit for this pin
- Uint16 GPIO47:1; // 15 Configuration Lock bit for this pin
- Uint16 GPIO48:1; // 16 Configuration Lock bit for this pin
- Uint16 GPIO49:1; // 17 Configuration Lock bit for this pin
- Uint16 GPIO50:1; // 18 Configuration Lock bit for this pin
- Uint16 GPIO51:1; // 19 Configuration Lock bit for this pin
- Uint16 GPIO52:1; // 20 Configuration Lock bit for this pin
- Uint16 GPIO53:1; // 21 Configuration Lock bit for this pin
- Uint16 GPIO54:1; // 22 Configuration Lock bit for this pin
- Uint16 GPIO55:1; // 23 Configuration Lock bit for this pin
- Uint16 GPIO56:1; // 24 Configuration Lock bit for this pin
- Uint16 GPIO57:1; // 25 Configuration Lock bit for this pin
- Uint16 GPIO58:1; // 26 Configuration Lock bit for this pin
- Uint16 GPIO59:1; // 27 Configuration Lock bit for this pin
- Uint16 GPIO60:1; // 28 Configuration Lock bit for this pin
- Uint16 GPIO61:1; // 29 Configuration Lock bit for this pin
- Uint16 GPIO62:1; // 30 Configuration Lock bit for this pin
- Uint16 GPIO63:1; // 31 Configuration Lock bit for this pin
- };
- union GPBLOCK_REG {
- Uint32 all;
- struct GPBLOCK_BITS bit;
- };
- struct GPBCR_BITS { // bits description
- Uint16 GPIO32:1; // 0 Configuration lock commit bit for this pin
- Uint16 GPIO33:1; // 1 Configuration lock commit bit for this pin
- Uint16 GPIO34:1; // 2 Configuration lock commit bit for this pin
- Uint16 GPIO35:1; // 3 Configuration lock commit bit for this pin
- Uint16 GPIO36:1; // 4 Configuration lock commit bit for this pin
- Uint16 GPIO37:1; // 5 Configuration lock commit bit for this pin
- Uint16 GPIO38:1; // 6 Configuration lock commit bit for this pin
- Uint16 GPIO39:1; // 7 Configuration lock commit bit for this pin
- Uint16 GPIO40:1; // 8 Configuration lock commit bit for this pin
- Uint16 GPIO41:1; // 9 Configuration lock commit bit for this pin
- Uint16 GPIO42:1; // 10 Configuration lock commit bit for this pin
- Uint16 GPIO43:1; // 11 Configuration lock commit bit for this pin
- Uint16 GPIO44:1; // 12 Configuration lock commit bit for this pin
- Uint16 GPIO45:1; // 13 Configuration lock commit bit for this pin
- Uint16 GPIO46:1; // 14 Configuration lock commit bit for this pin
- Uint16 GPIO47:1; // 15 Configuration lock commit bit for this pin
- Uint16 GPIO48:1; // 16 Configuration lock commit bit for this pin
- Uint16 GPIO49:1; // 17 Configuration lock commit bit for this pin
- Uint16 GPIO50:1; // 18 Configuration lock commit bit for this pin
- Uint16 GPIO51:1; // 19 Configuration lock commit bit for this pin
- Uint16 GPIO52:1; // 20 Configuration lock commit bit for this pin
- Uint16 GPIO53:1; // 21 Configuration lock commit bit for this pin
- Uint16 GPIO54:1; // 22 Configuration lock commit bit for this pin
- Uint16 GPIO55:1; // 23 Configuration lock commit bit for this pin
- Uint16 GPIO56:1; // 24 Configuration lock commit bit for this pin
- Uint16 GPIO57:1; // 25 Configuration lock commit bit for this pin
- Uint16 GPIO58:1; // 26 Configuration lock commit bit for this pin
- Uint16 GPIO59:1; // 27 Configuration lock commit bit for this pin
- Uint16 GPIO60:1; // 28 Configuration lock commit bit for this pin
- Uint16 GPIO61:1; // 29 Configuration lock commit bit for this pin
- Uint16 GPIO62:1; // 30 Configuration lock commit bit for this pin
- Uint16 GPIO63:1; // 31 Configuration lock commit bit for this pin
- };
- union GPBCR_REG {
- Uint32 all;
- struct GPBCR_BITS bit;
- };
- struct GPCCTRL_BITS { // bits description
- Uint16 QUALPRD0:8; // 7:0 Qualification sampling period for GPIO64 to GPIO71
- Uint16 QUALPRD1:8; // 15:8 Qualification sampling period for GPIO72 to GPIO79
- Uint16 QUALPRD2:8; // 23:16 Qualification sampling period for GPIO80 to GPIO87
- Uint16 QUALPRD3:8; // 31:24 Qualification sampling period for GPIO88 to GPIO95
- };
- union GPCCTRL_REG {
- Uint32 all;
- struct GPCCTRL_BITS bit;
- };
- struct GPCQSEL1_BITS { // bits description
- Uint16 GPIO64:2; // 1:0 Select input qualification type for GPIO64
- Uint16 GPIO65:2; // 3:2 Select input qualification type for GPIO65
- Uint16 GPIO66:2; // 5:4 Select input qualification type for GPIO66
- Uint16 GPIO67:2; // 7:6 Select input qualification type for GPIO67
- Uint16 GPIO68:2; // 9:8 Select input qualification type for GPIO68
- Uint16 GPIO69:2; // 11:10 Select input qualification type for GPIO69
- Uint16 GPIO70:2; // 13:12 Select input qualification type for GPIO70
- Uint16 GPIO71:2; // 15:14 Select input qualification type for GPIO71
- Uint16 GPIO72:2; // 17:16 Select input qualification type for GPIO72
- Uint16 GPIO73:2; // 19:18 Select input qualification type for GPIO73
- Uint16 GPIO74:2; // 21:20 Select input qualification type for GPIO74
- Uint16 GPIO75:2; // 23:22 Select input qualification type for GPIO75
- Uint16 GPIO76:2; // 25:24 Select input qualification type for GPIO76
- Uint16 GPIO77:2; // 27:26 Select input qualification type for GPIO77
- Uint16 GPIO78:2; // 29:28 Select input qualification type for GPIO78
- Uint16 GPIO79:2; // 31:30 Select input qualification type for GPIO79
- };
- union GPCQSEL1_REG {
- Uint32 all;
- struct GPCQSEL1_BITS bit;
- };
- struct GPCQSEL2_BITS { // bits description
- Uint16 GPIO80:2; // 1:0 Select input qualification type for GPIO80
- Uint16 GPIO81:2; // 3:2 Select input qualification type for GPIO81
- Uint16 GPIO82:2; // 5:4 Select input qualification type for GPIO82
- Uint16 GPIO83:2; // 7:6 Select input qualification type for GPIO83
- Uint16 GPIO84:2; // 9:8 Select input qualification type for GPIO84
- Uint16 GPIO85:2; // 11:10 Select input qualification type for GPIO85
- Uint16 GPIO86:2; // 13:12 Select input qualification type for GPIO86
- Uint16 GPIO87:2; // 15:14 Select input qualification type for GPIO87
- Uint16 GPIO88:2; // 17:16 Select input qualification type for GPIO88
- Uint16 GPIO89:2; // 19:18 Select input qualification type for GPIO89
- Uint16 GPIO90:2; // 21:20 Select input qualification type for GPIO90
- Uint16 GPIO91:2; // 23:22 Select input qualification type for GPIO91
- Uint16 GPIO92:2; // 25:24 Select input qualification type for GPIO92
- Uint16 GPIO93:2; // 27:26 Select input qualification type for GPIO93
- Uint16 GPIO94:2; // 29:28 Select input qualification type for GPIO94
- Uint16 GPIO95:2; // 31:30 Select input qualification type for GPIO95
- };
- union GPCQSEL2_REG {
- Uint32 all;
- struct GPCQSEL2_BITS bit;
- };
- struct GPCMUX1_BITS { // bits description
- Uint16 GPIO64:2; // 1:0 Defines pin-muxing selection for GPIO64
- Uint16 GPIO65:2; // 3:2 Defines pin-muxing selection for GPIO65
- Uint16 GPIO66:2; // 5:4 Defines pin-muxing selection for GPIO66
- Uint16 GPIO67:2; // 7:6 Defines pin-muxing selection for GPIO67
- Uint16 GPIO68:2; // 9:8 Defines pin-muxing selection for GPIO68
- Uint16 GPIO69:2; // 11:10 Defines pin-muxing selection for GPIO69
- Uint16 GPIO70:2; // 13:12 Defines pin-muxing selection for GPIO70
- Uint16 GPIO71:2; // 15:14 Defines pin-muxing selection for GPIO71
- Uint16 GPIO72:2; // 17:16 Defines pin-muxing selection for GPIO72
- Uint16 GPIO73:2; // 19:18 Defines pin-muxing selection for GPIO73
- Uint16 GPIO74:2; // 21:20 Defines pin-muxing selection for GPIO74
- Uint16 GPIO75:2; // 23:22 Defines pin-muxing selection for GPIO75
- Uint16 GPIO76:2; // 25:24 Defines pin-muxing selection for GPIO76
- Uint16 GPIO77:2; // 27:26 Defines pin-muxing selection for GPIO77
- Uint16 GPIO78:2; // 29:28 Defines pin-muxing selection for GPIO78
- Uint16 GPIO79:2; // 31:30 Defines pin-muxing selection for GPIO79
- };
- union GPCMUX1_REG {
- Uint32 all;
- struct GPCMUX1_BITS bit;
- };
- struct GPCMUX2_BITS { // bits description
- Uint16 GPIO80:2; // 1:0 Defines pin-muxing selection for GPIO80
- Uint16 GPIO81:2; // 3:2 Defines pin-muxing selection for GPIO81
- Uint16 GPIO82:2; // 5:4 Defines pin-muxing selection for GPIO82
- Uint16 GPIO83:2; // 7:6 Defines pin-muxing selection for GPIO83
- Uint16 GPIO84:2; // 9:8 Defines pin-muxing selection for GPIO84
- Uint16 GPIO85:2; // 11:10 Defines pin-muxing selection for GPIO85
- Uint16 GPIO86:2; // 13:12 Defines pin-muxing selection for GPIO86
- Uint16 GPIO87:2; // 15:14 Defines pin-muxing selection for GPIO87
- Uint16 GPIO88:2; // 17:16 Defines pin-muxing selection for GPIO88
- Uint16 GPIO89:2; // 19:18 Defines pin-muxing selection for GPIO89
- Uint16 GPIO90:2; // 21:20 Defines pin-muxing selection for GPIO90
- Uint16 GPIO91:2; // 23:22 Defines pin-muxing selection for GPIO91
- Uint16 GPIO92:2; // 25:24 Defines pin-muxing selection for GPIO92
- Uint16 GPIO93:2; // 27:26 Defines pin-muxing selection for GPIO93
- Uint16 GPIO94:2; // 29:28 Defines pin-muxing selection for GPIO94
- Uint16 GPIO95:2; // 31:30 Defines pin-muxing selection for GPIO95
- };
- union GPCMUX2_REG {
- Uint32 all;
- struct GPCMUX2_BITS bit;
- };
- struct GPCDIR_BITS { // bits description
- Uint16 GPIO64:1; // 0 Defines direction for this pin in GPIO mode
- Uint16 GPIO65:1; // 1 Defines direction for this pin in GPIO mode
- Uint16 GPIO66:1; // 2 Defines direction for this pin in GPIO mode
- Uint16 GPIO67:1; // 3 Defines direction for this pin in GPIO mode
- Uint16 GPIO68:1; // 4 Defines direction for this pin in GPIO mode
- Uint16 GPIO69:1; // 5 Defines direction for this pin in GPIO mode
- Uint16 GPIO70:1; // 6 Defines direction for this pin in GPIO mode
- Uint16 GPIO71:1; // 7 Defines direction for this pin in GPIO mode
- Uint16 GPIO72:1; // 8 Defines direction for this pin in GPIO mode
- Uint16 GPIO73:1; // 9 Defines direction for this pin in GPIO mode
- Uint16 GPIO74:1; // 10 Defines direction for this pin in GPIO mode
- Uint16 GPIO75:1; // 11 Defines direction for this pin in GPIO mode
- Uint16 GPIO76:1; // 12 Defines direction for this pin in GPIO mode
- Uint16 GPIO77:1; // 13 Defines direction for this pin in GPIO mode
- Uint16 GPIO78:1; // 14 Defines direction for this pin in GPIO mode
- Uint16 GPIO79:1; // 15 Defines direction for this pin in GPIO mode
- Uint16 GPIO80:1; // 16 Defines direction for this pin in GPIO mode
- Uint16 GPIO81:1; // 17 Defines direction for this pin in GPIO mode
- Uint16 GPIO82:1; // 18 Defines direction for this pin in GPIO mode
- Uint16 GPIO83:1; // 19 Defines direction for this pin in GPIO mode
- Uint16 GPIO84:1; // 20 Defines direction for this pin in GPIO mode
- Uint16 GPIO85:1; // 21 Defines direction for this pin in GPIO mode
- Uint16 GPIO86:1; // 22 Defines direction for this pin in GPIO mode
- Uint16 GPIO87:1; // 23 Defines direction for this pin in GPIO mode
- Uint16 GPIO88:1; // 24 Defines direction for this pin in GPIO mode
- Uint16 GPIO89:1; // 25 Defines direction for this pin in GPIO mode
- Uint16 GPIO90:1; // 26 Defines direction for this pin in GPIO mode
- Uint16 GPIO91:1; // 27 Defines direction for this pin in GPIO mode
- Uint16 GPIO92:1; // 28 Defines direction for this pin in GPIO mode
- Uint16 GPIO93:1; // 29 Defines direction for this pin in GPIO mode
- Uint16 GPIO94:1; // 30 Defines direction for this pin in GPIO mode
- Uint16 GPIO95:1; // 31 Defines direction for this pin in GPIO mode
- };
- union GPCDIR_REG {
- Uint32 all;
- struct GPCDIR_BITS bit;
- };
- struct GPCPUD_BITS { // bits description
- Uint16 GPIO64:1; // 0 Pull-Up Disable control for this pin
- Uint16 GPIO65:1; // 1 Pull-Up Disable control for this pin
- Uint16 GPIO66:1; // 2 Pull-Up Disable control for this pin
- Uint16 GPIO67:1; // 3 Pull-Up Disable control for this pin
- Uint16 GPIO68:1; // 4 Pull-Up Disable control for this pin
- Uint16 GPIO69:1; // 5 Pull-Up Disable control for this pin
- Uint16 GPIO70:1; // 6 Pull-Up Disable control for this pin
- Uint16 GPIO71:1; // 7 Pull-Up Disable control for this pin
- Uint16 GPIO72:1; // 8 Pull-Up Disable control for this pin
- Uint16 GPIO73:1; // 9 Pull-Up Disable control for this pin
- Uint16 GPIO74:1; // 10 Pull-Up Disable control for this pin
- Uint16 GPIO75:1; // 11 Pull-Up Disable control for this pin
- Uint16 GPIO76:1; // 12 Pull-Up Disable control for this pin
- Uint16 GPIO77:1; // 13 Pull-Up Disable control for this pin
- Uint16 GPIO78:1; // 14 Pull-Up Disable control for this pin
- Uint16 GPIO79:1; // 15 Pull-Up Disable control for this pin
- Uint16 GPIO80:1; // 16 Pull-Up Disable control for this pin
- Uint16 GPIO81:1; // 17 Pull-Up Disable control for this pin
- Uint16 GPIO82:1; // 18 Pull-Up Disable control for this pin
- Uint16 GPIO83:1; // 19 Pull-Up Disable control for this pin
- Uint16 GPIO84:1; // 20 Pull-Up Disable control for this pin
- Uint16 GPIO85:1; // 21 Pull-Up Disable control for this pin
- Uint16 GPIO86:1; // 22 Pull-Up Disable control for this pin
- Uint16 GPIO87:1; // 23 Pull-Up Disable control for this pin
- Uint16 GPIO88:1; // 24 Pull-Up Disable control for this pin
- Uint16 GPIO89:1; // 25 Pull-Up Disable control for this pin
- Uint16 GPIO90:1; // 26 Pull-Up Disable control for this pin
- Uint16 GPIO91:1; // 27 Pull-Up Disable control for this pin
- Uint16 GPIO92:1; // 28 Pull-Up Disable control for this pin
- Uint16 GPIO93:1; // 29 Pull-Up Disable control for this pin
- Uint16 GPIO94:1; // 30 Pull-Up Disable control for this pin
- Uint16 GPIO95:1; // 31 Pull-Up Disable control for this pin
- };
- union GPCPUD_REG {
- Uint32 all;
- struct GPCPUD_BITS bit;
- };
- struct GPCINV_BITS { // bits description
- Uint16 GPIO64:1; // 0 Input inversion control for this pin
- Uint16 GPIO65:1; // 1 Input inversion control for this pin
- Uint16 GPIO66:1; // 2 Input inversion control for this pin
- Uint16 GPIO67:1; // 3 Input inversion control for this pin
- Uint16 GPIO68:1; // 4 Input inversion control for this pin
- Uint16 GPIO69:1; // 5 Input inversion control for this pin
- Uint16 GPIO70:1; // 6 Input inversion control for this pin
- Uint16 GPIO71:1; // 7 Input inversion control for this pin
- Uint16 GPIO72:1; // 8 Input inversion control for this pin
- Uint16 GPIO73:1; // 9 Input inversion control for this pin
- Uint16 GPIO74:1; // 10 Input inversion control for this pin
- Uint16 GPIO75:1; // 11 Input inversion control for this pin
- Uint16 GPIO76:1; // 12 Input inversion control for this pin
- Uint16 GPIO77:1; // 13 Input inversion control for this pin
- Uint16 GPIO78:1; // 14 Input inversion control for this pin
- Uint16 GPIO79:1; // 15 Input inversion control for this pin
- Uint16 GPIO80:1; // 16 Input inversion control for this pin
- Uint16 GPIO81:1; // 17 Input inversion control for this pin
- Uint16 GPIO82:1; // 18 Input inversion control for this pin
- Uint16 GPIO83:1; // 19 Input inversion control for this pin
- Uint16 GPIO84:1; // 20 Input inversion control for this pin
- Uint16 GPIO85:1; // 21 Input inversion control for this pin
- Uint16 GPIO86:1; // 22 Input inversion control for this pin
- Uint16 GPIO87:1; // 23 Input inversion control for this pin
- Uint16 GPIO88:1; // 24 Input inversion control for this pin
- Uint16 GPIO89:1; // 25 Input inversion control for this pin
- Uint16 GPIO90:1; // 26 Input inversion control for this pin
- Uint16 GPIO91:1; // 27 Input inversion control for this pin
- Uint16 GPIO92:1; // 28 Input inversion control for this pin
- Uint16 GPIO93:1; // 29 Input inversion control for this pin
- Uint16 GPIO94:1; // 30 Input inversion control for this pin
- Uint16 GPIO95:1; // 31 Input inversion control for this pin
- };
- union GPCINV_REG {
- Uint32 all;
- struct GPCINV_BITS bit;
- };
- struct GPCODR_BITS { // bits description
- Uint16 GPIO64:1; // 0 Outpout Open-Drain control for this pin
- Uint16 GPIO65:1; // 1 Outpout Open-Drain control for this pin
- Uint16 GPIO66:1; // 2 Outpout Open-Drain control for this pin
- Uint16 GPIO67:1; // 3 Outpout Open-Drain control for this pin
- Uint16 GPIO68:1; // 4 Outpout Open-Drain control for this pin
- Uint16 GPIO69:1; // 5 Outpout Open-Drain control for this pin
- Uint16 GPIO70:1; // 6 Outpout Open-Drain control for this pin
- Uint16 GPIO71:1; // 7 Outpout Open-Drain control for this pin
- Uint16 GPIO72:1; // 8 Outpout Open-Drain control for this pin
- Uint16 GPIO73:1; // 9 Outpout Open-Drain control for this pin
- Uint16 GPIO74:1; // 10 Outpout Open-Drain control for this pin
- Uint16 GPIO75:1; // 11 Outpout Open-Drain control for this pin
- Uint16 GPIO76:1; // 12 Outpout Open-Drain control for this pin
- Uint16 GPIO77:1; // 13 Outpout Open-Drain control for this pin
- Uint16 GPIO78:1; // 14 Outpout Open-Drain control for this pin
- Uint16 GPIO79:1; // 15 Outpout Open-Drain control for this pin
- Uint16 GPIO80:1; // 16 Outpout Open-Drain control for this pin
- Uint16 GPIO81:1; // 17 Outpout Open-Drain control for this pin
- Uint16 GPIO82:1; // 18 Outpout Open-Drain control for this pin
- Uint16 GPIO83:1; // 19 Outpout Open-Drain control for this pin
- Uint16 GPIO84:1; // 20 Outpout Open-Drain control for this pin
- Uint16 GPIO85:1; // 21 Outpout Open-Drain control for this pin
- Uint16 GPIO86:1; // 22 Outpout Open-Drain control for this pin
- Uint16 GPIO87:1; // 23 Outpout Open-Drain control for this pin
- Uint16 GPIO88:1; // 24 Outpout Open-Drain control for this pin
- Uint16 GPIO89:1; // 25 Outpout Open-Drain control for this pin
- Uint16 GPIO90:1; // 26 Outpout Open-Drain control for this pin
- Uint16 GPIO91:1; // 27 Outpout Open-Drain control for this pin
- Uint16 GPIO92:1; // 28 Outpout Open-Drain control for this pin
- Uint16 GPIO93:1; // 29 Outpout Open-Drain control for this pin
- Uint16 GPIO94:1; // 30 Outpout Open-Drain control for this pin
- Uint16 GPIO95:1; // 31 Outpout Open-Drain control for this pin
- };
- union GPCODR_REG {
- Uint32 all;
- struct GPCODR_BITS bit;
- };
- struct GPCGMUX1_BITS { // bits description
- Uint16 GPIO64:2; // 1:0 Defines pin-muxing selection for GPIO64
- Uint16 GPIO65:2; // 3:2 Defines pin-muxing selection for GPIO65
- Uint16 GPIO66:2; // 5:4 Defines pin-muxing selection for GPIO66
- Uint16 GPIO67:2; // 7:6 Defines pin-muxing selection for GPIO67
- Uint16 GPIO68:2; // 9:8 Defines pin-muxing selection for GPIO68
- Uint16 GPIO69:2; // 11:10 Defines pin-muxing selection for GPIO69
- Uint16 GPIO70:2; // 13:12 Defines pin-muxing selection for GPIO70
- Uint16 GPIO71:2; // 15:14 Defines pin-muxing selection for GPIO71
- Uint16 GPIO72:2; // 17:16 Defines pin-muxing selection for GPIO72
- Uint16 GPIO73:2; // 19:18 Defines pin-muxing selection for GPIO73
- Uint16 GPIO74:2; // 21:20 Defines pin-muxing selection for GPIO74
- Uint16 GPIO75:2; // 23:22 Defines pin-muxing selection for GPIO75
- Uint16 GPIO76:2; // 25:24 Defines pin-muxing selection for GPIO76
- Uint16 GPIO77:2; // 27:26 Defines pin-muxing selection for GPIO77
- Uint16 GPIO78:2; // 29:28 Defines pin-muxing selection for GPIO78
- Uint16 GPIO79:2; // 31:30 Defines pin-muxing selection for GPIO79
- };
- union GPCGMUX1_REG {
- Uint32 all;
- struct GPCGMUX1_BITS bit;
- };
- struct GPCGMUX2_BITS { // bits description
- Uint16 GPIO80:2; // 1:0 Defines pin-muxing selection for GPIO80
- Uint16 GPIO81:2; // 3:2 Defines pin-muxing selection for GPIO81
- Uint16 GPIO82:2; // 5:4 Defines pin-muxing selection for GPIO82
- Uint16 GPIO83:2; // 7:6 Defines pin-muxing selection for GPIO83
- Uint16 GPIO84:2; // 9:8 Defines pin-muxing selection for GPIO84
- Uint16 GPIO85:2; // 11:10 Defines pin-muxing selection for GPIO85
- Uint16 GPIO86:2; // 13:12 Defines pin-muxing selection for GPIO86
- Uint16 GPIO87:2; // 15:14 Defines pin-muxing selection for GPIO87
- Uint16 GPIO88:2; // 17:16 Defines pin-muxing selection for GPIO88
- Uint16 GPIO89:2; // 19:18 Defines pin-muxing selection for GPIO89
- Uint16 GPIO90:2; // 21:20 Defines pin-muxing selection for GPIO90
- Uint16 GPIO91:2; // 23:22 Defines pin-muxing selection for GPIO91
- Uint16 GPIO92:2; // 25:24 Defines pin-muxing selection for GPIO92
- Uint16 GPIO93:2; // 27:26 Defines pin-muxing selection for GPIO93
- Uint16 GPIO94:2; // 29:28 Defines pin-muxing selection for GPIO94
- Uint16 GPIO95:2; // 31:30 Defines pin-muxing selection for GPIO95
- };
- union GPCGMUX2_REG {
- Uint32 all;
- struct GPCGMUX2_BITS bit;
- };
- struct GPCCSEL1_BITS { // bits description
- Uint16 GPIO64:4; // 3:0 GPIO64 Master CPU Select
- Uint16 GPIO65:4; // 7:4 GPIO65 Master CPU Select
- Uint16 GPIO66:4; // 11:8 GPIO66 Master CPU Select
- Uint16 GPIO67:4; // 15:12 GPIO67 Master CPU Select
- Uint16 GPIO68:4; // 19:16 GPIO68 Master CPU Select
- Uint16 GPIO69:4; // 23:20 GPIO69 Master CPU Select
- Uint16 GPIO70:4; // 27:24 GPIO70 Master CPU Select
- Uint16 GPIO71:4; // 31:28 GPIO71 Master CPU Select
- };
- union GPCCSEL1_REG {
- Uint32 all;
- struct GPCCSEL1_BITS bit;
- };
- struct GPCCSEL2_BITS { // bits description
- Uint16 GPIO72:4; // 3:0 GPIO72 Master CPU Select
- Uint16 GPIO73:4; // 7:4 GPIO73 Master CPU Select
- Uint16 GPIO74:4; // 11:8 GPIO74 Master CPU Select
- Uint16 GPIO75:4; // 15:12 GPIO75 Master CPU Select
- Uint16 GPIO76:4; // 19:16 GPIO76 Master CPU Select
- Uint16 GPIO77:4; // 23:20 GPIO77 Master CPU Select
- Uint16 GPIO78:4; // 27:24 GPIO78 Master CPU Select
- Uint16 GPIO79:4; // 31:28 GPIO79 Master CPU Select
- };
- union GPCCSEL2_REG {
- Uint32 all;
- struct GPCCSEL2_BITS bit;
- };
- struct GPCCSEL3_BITS { // bits description
- Uint16 GPIO80:4; // 3:0 GPIO80 Master CPU Select
- Uint16 GPIO81:4; // 7:4 GPIO81 Master CPU Select
- Uint16 GPIO82:4; // 11:8 GPIO82 Master CPU Select
- Uint16 GPIO83:4; // 15:12 GPIO83 Master CPU Select
- Uint16 GPIO84:4; // 19:16 GPIO84 Master CPU Select
- Uint16 GPIO85:4; // 23:20 GPIO85 Master CPU Select
- Uint16 GPIO86:4; // 27:24 GPIO86 Master CPU Select
- Uint16 GPIO87:4; // 31:28 GPIO87 Master CPU Select
- };
- union GPCCSEL3_REG {
- Uint32 all;
- struct GPCCSEL3_BITS bit;
- };
- struct GPCCSEL4_BITS { // bits description
- Uint16 GPIO88:4; // 3:0 GPIO88 Master CPU Select
- Uint16 GPIO89:4; // 7:4 GPIO89 Master CPU Select
- Uint16 GPIO90:4; // 11:8 GPIO90 Master CPU Select
- Uint16 GPIO91:4; // 15:12 GPIO91 Master CPU Select
- Uint16 GPIO92:4; // 19:16 GPIO92 Master CPU Select
- Uint16 GPIO93:4; // 23:20 GPIO93 Master CPU Select
- Uint16 GPIO94:4; // 27:24 GPIO94 Master CPU Select
- Uint16 GPIO95:4; // 31:28 GPIO95 Master CPU Select
- };
- union GPCCSEL4_REG {
- Uint32 all;
- struct GPCCSEL4_BITS bit;
- };
- struct GPCLOCK_BITS { // bits description
- Uint16 GPIO64:1; // 0 Configuration Lock bit for this pin
- Uint16 GPIO65:1; // 1 Configuration Lock bit for this pin
- Uint16 GPIO66:1; // 2 Configuration Lock bit for this pin
- Uint16 GPIO67:1; // 3 Configuration Lock bit for this pin
- Uint16 GPIO68:1; // 4 Configuration Lock bit for this pin
- Uint16 GPIO69:1; // 5 Configuration Lock bit for this pin
- Uint16 GPIO70:1; // 6 Configuration Lock bit for this pin
- Uint16 GPIO71:1; // 7 Configuration Lock bit for this pin
- Uint16 GPIO72:1; // 8 Configuration Lock bit for this pin
- Uint16 GPIO73:1; // 9 Configuration Lock bit for this pin
- Uint16 GPIO74:1; // 10 Configuration Lock bit for this pin
- Uint16 GPIO75:1; // 11 Configuration Lock bit for this pin
- Uint16 GPIO76:1; // 12 Configuration Lock bit for this pin
- Uint16 GPIO77:1; // 13 Configuration Lock bit for this pin
- Uint16 GPIO78:1; // 14 Configuration Lock bit for this pin
- Uint16 GPIO79:1; // 15 Configuration Lock bit for this pin
- Uint16 GPIO80:1; // 16 Configuration Lock bit for this pin
- Uint16 GPIO81:1; // 17 Configuration Lock bit for this pin
- Uint16 GPIO82:1; // 18 Configuration Lock bit for this pin
- Uint16 GPIO83:1; // 19 Configuration Lock bit for this pin
- Uint16 GPIO84:1; // 20 Configuration Lock bit for this pin
- Uint16 GPIO85:1; // 21 Configuration Lock bit for this pin
- Uint16 GPIO86:1; // 22 Configuration Lock bit for this pin
- Uint16 GPIO87:1; // 23 Configuration Lock bit for this pin
- Uint16 GPIO88:1; // 24 Configuration Lock bit for this pin
- Uint16 GPIO89:1; // 25 Configuration Lock bit for this pin
- Uint16 GPIO90:1; // 26 Configuration Lock bit for this pin
- Uint16 GPIO91:1; // 27 Configuration Lock bit for this pin
- Uint16 GPIO92:1; // 28 Configuration Lock bit for this pin
- Uint16 GPIO93:1; // 29 Configuration Lock bit for this pin
- Uint16 GPIO94:1; // 30 Configuration Lock bit for this pin
- Uint16 GPIO95:1; // 31 Configuration Lock bit for this pin
- };
- union GPCLOCK_REG {
- Uint32 all;
- struct GPCLOCK_BITS bit;
- };
- struct GPCCR_BITS { // bits description
- Uint16 GPIO64:1; // 0 Configuration lock commit bit for this pin
- Uint16 GPIO65:1; // 1 Configuration lock commit bit for this pin
- Uint16 GPIO66:1; // 2 Configuration lock commit bit for this pin
- Uint16 GPIO67:1; // 3 Configuration lock commit bit for this pin
- Uint16 GPIO68:1; // 4 Configuration lock commit bit for this pin
- Uint16 GPIO69:1; // 5 Configuration lock commit bit for this pin
- Uint16 GPIO70:1; // 6 Configuration lock commit bit for this pin
- Uint16 GPIO71:1; // 7 Configuration lock commit bit for this pin
- Uint16 GPIO72:1; // 8 Configuration lock commit bit for this pin
- Uint16 GPIO73:1; // 9 Configuration lock commit bit for this pin
- Uint16 GPIO74:1; // 10 Configuration lock commit bit for this pin
- Uint16 GPIO75:1; // 11 Configuration lock commit bit for this pin
- Uint16 GPIO76:1; // 12 Configuration lock commit bit for this pin
- Uint16 GPIO77:1; // 13 Configuration lock commit bit for this pin
- Uint16 GPIO78:1; // 14 Configuration lock commit bit for this pin
- Uint16 GPIO79:1; // 15 Configuration lock commit bit for this pin
- Uint16 GPIO80:1; // 16 Configuration lock commit bit for this pin
- Uint16 GPIO81:1; // 17 Configuration lock commit bit for this pin
- Uint16 GPIO82:1; // 18 Configuration lock commit bit for this pin
- Uint16 GPIO83:1; // 19 Configuration lock commit bit for this pin
- Uint16 GPIO84:1; // 20 Configuration lock commit bit for this pin
- Uint16 GPIO85:1; // 21 Configuration lock commit bit for this pin
- Uint16 GPIO86:1; // 22 Configuration lock commit bit for this pin
- Uint16 GPIO87:1; // 23 Configuration lock commit bit for this pin
- Uint16 GPIO88:1; // 24 Configuration lock commit bit for this pin
- Uint16 GPIO89:1; // 25 Configuration lock commit bit for this pin
- Uint16 GPIO90:1; // 26 Configuration lock commit bit for this pin
- Uint16 GPIO91:1; // 27 Configuration lock commit bit for this pin
- Uint16 GPIO92:1; // 28 Configuration lock commit bit for this pin
- Uint16 GPIO93:1; // 29 Configuration lock commit bit for this pin
- Uint16 GPIO94:1; // 30 Configuration lock commit bit for this pin
- Uint16 GPIO95:1; // 31 Configuration lock commit bit for this pin
- };
- union GPCCR_REG {
- Uint32 all;
- struct GPCCR_BITS bit;
- };
- struct GPDCTRL_BITS { // bits description
- Uint16 QUALPRD0:8; // 7:0 Qualification sampling period for GPIO96 to GPIO103
- Uint16 QUALPRD1:8; // 15:8 Qualification sampling period for GPIO104 to GPIO111
- Uint16 QUALPRD2:8; // 23:16 Qualification sampling period for GPIO112 to GPIO119
- Uint16 QUALPRD3:8; // 31:24 Qualification sampling period for GPIO120 to GPIO127
- };
- union GPDCTRL_REG {
- Uint32 all;
- struct GPDCTRL_BITS bit;
- };
- struct GPDQSEL1_BITS { // bits description
- Uint16 GPIO96:2; // 1:0 Select input qualification type for GPIO96
- Uint16 GPIO97:2; // 3:2 Select input qualification type for GPIO97
- Uint16 GPIO98:2; // 5:4 Select input qualification type for GPIO98
- Uint16 GPIO99:2; // 7:6 Select input qualification type for GPIO99
- Uint16 GPIO100:2; // 9:8 Select input qualification type for GPIO100
- Uint16 GPIO101:2; // 11:10 Select input qualification type for GPIO101
- Uint16 GPIO102:2; // 13:12 Select input qualification type for GPIO102
- Uint16 GPIO103:2; // 15:14 Select input qualification type for GPIO103
- Uint16 GPIO104:2; // 17:16 Select input qualification type for GPIO104
- Uint16 GPIO105:2; // 19:18 Select input qualification type for GPIO105
- Uint16 GPIO106:2; // 21:20 Select input qualification type for GPIO106
- Uint16 GPIO107:2; // 23:22 Select input qualification type for GPIO107
- Uint16 GPIO108:2; // 25:24 Select input qualification type for GPIO108
- Uint16 GPIO109:2; // 27:26 Select input qualification type for GPIO109
- Uint16 GPIO110:2; // 29:28 Select input qualification type for GPIO110
- Uint16 GPIO111:2; // 31:30 Select input qualification type for GPIO111
- };
- union GPDQSEL1_REG {
- Uint32 all;
- struct GPDQSEL1_BITS bit;
- };
- struct GPDQSEL2_BITS { // bits description
- Uint16 GPIO112:2; // 1:0 Select input qualification type for GPIO112
- Uint16 GPIO113:2; // 3:2 Select input qualification type for GPIO113
- Uint16 GPIO114:2; // 5:4 Select input qualification type for GPIO114
- Uint16 GPIO115:2; // 7:6 Select input qualification type for GPIO115
- Uint16 GPIO116:2; // 9:8 Select input qualification type for GPIO116
- Uint16 GPIO117:2; // 11:10 Select input qualification type for GPIO117
- Uint16 GPIO118:2; // 13:12 Select input qualification type for GPIO118
- Uint16 GPIO119:2; // 15:14 Select input qualification type for GPIO119
- Uint16 GPIO120:2; // 17:16 Select input qualification type for GPIO120
- Uint16 GPIO121:2; // 19:18 Select input qualification type for GPIO121
- Uint16 GPIO122:2; // 21:20 Select input qualification type for GPIO122
- Uint16 GPIO123:2; // 23:22 Select input qualification type for GPIO123
- Uint16 GPIO124:2; // 25:24 Select input qualification type for GPIO124
- Uint16 GPIO125:2; // 27:26 Select input qualification type for GPIO125
- Uint16 GPIO126:2; // 29:28 Select input qualification type for GPIO126
- Uint16 GPIO127:2; // 31:30 Select input qualification type for GPIO127
- };
- union GPDQSEL2_REG {
- Uint32 all;
- struct GPDQSEL2_BITS bit;
- };
- struct GPDMUX1_BITS { // bits description
- Uint16 GPIO96:2; // 1:0 Defines pin-muxing selection for GPIO96
- Uint16 GPIO97:2; // 3:2 Defines pin-muxing selection for GPIO97
- Uint16 GPIO98:2; // 5:4 Defines pin-muxing selection for GPIO98
- Uint16 GPIO99:2; // 7:6 Defines pin-muxing selection for GPIO99
- Uint16 GPIO100:2; // 9:8 Defines pin-muxing selection for GPIO100
- Uint16 GPIO101:2; // 11:10 Defines pin-muxing selection for GPIO101
- Uint16 GPIO102:2; // 13:12 Defines pin-muxing selection for GPIO102
- Uint16 GPIO103:2; // 15:14 Defines pin-muxing selection for GPIO103
- Uint16 GPIO104:2; // 17:16 Defines pin-muxing selection for GPIO104
- Uint16 GPIO105:2; // 19:18 Defines pin-muxing selection for GPIO105
- Uint16 GPIO106:2; // 21:20 Defines pin-muxing selection for GPIO106
- Uint16 GPIO107:2; // 23:22 Defines pin-muxing selection for GPIO107
- Uint16 GPIO108:2; // 25:24 Defines pin-muxing selection for GPIO108
- Uint16 GPIO109:2; // 27:26 Defines pin-muxing selection for GPIO109
- Uint16 GPIO110:2; // 29:28 Defines pin-muxing selection for GPIO110
- Uint16 GPIO111:2; // 31:30 Defines pin-muxing selection for GPIO111
- };
- union GPDMUX1_REG {
- Uint32 all;
- struct GPDMUX1_BITS bit;
- };
- struct GPDMUX2_BITS { // bits description
- Uint16 GPIO112:2; // 1:0 Defines pin-muxing selection for GPIO112
- Uint16 GPIO113:2; // 3:2 Defines pin-muxing selection for GPIO113
- Uint16 GPIO114:2; // 5:4 Defines pin-muxing selection for GPIO114
- Uint16 GPIO115:2; // 7:6 Defines pin-muxing selection for GPIO115
- Uint16 GPIO116:2; // 9:8 Defines pin-muxing selection for GPIO116
- Uint16 GPIO117:2; // 11:10 Defines pin-muxing selection for GPIO117
- Uint16 GPIO118:2; // 13:12 Defines pin-muxing selection for GPIO118
- Uint16 GPIO119:2; // 15:14 Defines pin-muxing selection for GPIO119
- Uint16 GPIO120:2; // 17:16 Defines pin-muxing selection for GPIO120
- Uint16 GPIO121:2; // 19:18 Defines pin-muxing selection for GPIO121
- Uint16 GPIO122:2; // 21:20 Defines pin-muxing selection for GPIO122
- Uint16 GPIO123:2; // 23:22 Defines pin-muxing selection for GPIO123
- Uint16 GPIO124:2; // 25:24 Defines pin-muxing selection for GPIO124
- Uint16 GPIO125:2; // 27:26 Defines pin-muxing selection for GPIO125
- Uint16 GPIO126:2; // 29:28 Defines pin-muxing selection for GPIO126
- Uint16 GPIO127:2; // 31:30 Defines pin-muxing selection for GPIO127
- };
- union GPDMUX2_REG {
- Uint32 all;
- struct GPDMUX2_BITS bit;
- };
- struct GPDDIR_BITS { // bits description
- Uint16 GPIO96:1; // 0 Defines direction for this pin in GPIO mode
- Uint16 GPIO97:1; // 1 Defines direction for this pin in GPIO mode
- Uint16 GPIO98:1; // 2 Defines direction for this pin in GPIO mode
- Uint16 GPIO99:1; // 3 Defines direction for this pin in GPIO mode
- Uint16 GPIO100:1; // 4 Defines direction for this pin in GPIO mode
- Uint16 GPIO101:1; // 5 Defines direction for this pin in GPIO mode
- Uint16 GPIO102:1; // 6 Defines direction for this pin in GPIO mode
- Uint16 GPIO103:1; // 7 Defines direction for this pin in GPIO mode
- Uint16 GPIO104:1; // 8 Defines direction for this pin in GPIO mode
- Uint16 GPIO105:1; // 9 Defines direction for this pin in GPIO mode
- Uint16 GPIO106:1; // 10 Defines direction for this pin in GPIO mode
- Uint16 GPIO107:1; // 11 Defines direction for this pin in GPIO mode
- Uint16 GPIO108:1; // 12 Defines direction for this pin in GPIO mode
- Uint16 GPIO109:1; // 13 Defines direction for this pin in GPIO mode
- Uint16 GPIO110:1; // 14 Defines direction for this pin in GPIO mode
- Uint16 GPIO111:1; // 15 Defines direction for this pin in GPIO mode
- Uint16 GPIO112:1; // 16 Defines direction for this pin in GPIO mode
- Uint16 GPIO113:1; // 17 Defines direction for this pin in GPIO mode
- Uint16 GPIO114:1; // 18 Defines direction for this pin in GPIO mode
- Uint16 GPIO115:1; // 19 Defines direction for this pin in GPIO mode
- Uint16 GPIO116:1; // 20 Defines direction for this pin in GPIO mode
- Uint16 GPIO117:1; // 21 Defines direction for this pin in GPIO mode
- Uint16 GPIO118:1; // 22 Defines direction for this pin in GPIO mode
- Uint16 GPIO119:1; // 23 Defines direction for this pin in GPIO mode
- Uint16 GPIO120:1; // 24 Defines direction for this pin in GPIO mode
- Uint16 GPIO121:1; // 25 Defines direction for this pin in GPIO mode
- Uint16 GPIO122:1; // 26 Defines direction for this pin in GPIO mode
- Uint16 GPIO123:1; // 27 Defines direction for this pin in GPIO mode
- Uint16 GPIO124:1; // 28 Defines direction for this pin in GPIO mode
- Uint16 GPIO125:1; // 29 Defines direction for this pin in GPIO mode
- Uint16 GPIO126:1; // 30 Defines direction for this pin in GPIO mode
- Uint16 GPIO127:1; // 31 Defines direction for this pin in GPIO mode
- };
- union GPDDIR_REG {
- Uint32 all;
- struct GPDDIR_BITS bit;
- };
- struct GPDPUD_BITS { // bits description
- Uint16 GPIO96:1; // 0 Pull-Up Disable control for this pin
- Uint16 GPIO97:1; // 1 Pull-Up Disable control for this pin
- Uint16 GPIO98:1; // 2 Pull-Up Disable control for this pin
- Uint16 GPIO99:1; // 3 Pull-Up Disable control for this pin
- Uint16 GPIO100:1; // 4 Pull-Up Disable control for this pin
- Uint16 GPIO101:1; // 5 Pull-Up Disable control for this pin
- Uint16 GPIO102:1; // 6 Pull-Up Disable control for this pin
- Uint16 GPIO103:1; // 7 Pull-Up Disable control for this pin
- Uint16 GPIO104:1; // 8 Pull-Up Disable control for this pin
- Uint16 GPIO105:1; // 9 Pull-Up Disable control for this pin
- Uint16 GPIO106:1; // 10 Pull-Up Disable control for this pin
- Uint16 GPIO107:1; // 11 Pull-Up Disable control for this pin
- Uint16 GPIO108:1; // 12 Pull-Up Disable control for this pin
- Uint16 GPIO109:1; // 13 Pull-Up Disable control for this pin
- Uint16 GPIO110:1; // 14 Pull-Up Disable control for this pin
- Uint16 GPIO111:1; // 15 Pull-Up Disable control for this pin
- Uint16 GPIO112:1; // 16 Pull-Up Disable control for this pin
- Uint16 GPIO113:1; // 17 Pull-Up Disable control for this pin
- Uint16 GPIO114:1; // 18 Pull-Up Disable control for this pin
- Uint16 GPIO115:1; // 19 Pull-Up Disable control for this pin
- Uint16 GPIO116:1; // 20 Pull-Up Disable control for this pin
- Uint16 GPIO117:1; // 21 Pull-Up Disable control for this pin
- Uint16 GPIO118:1; // 22 Pull-Up Disable control for this pin
- Uint16 GPIO119:1; // 23 Pull-Up Disable control for this pin
- Uint16 GPIO120:1; // 24 Pull-Up Disable control for this pin
- Uint16 GPIO121:1; // 25 Pull-Up Disable control for this pin
- Uint16 GPIO122:1; // 26 Pull-Up Disable control for this pin
- Uint16 GPIO123:1; // 27 Pull-Up Disable control for this pin
- Uint16 GPIO124:1; // 28 Pull-Up Disable control for this pin
- Uint16 GPIO125:1; // 29 Pull-Up Disable control for this pin
- Uint16 GPIO126:1; // 30 Pull-Up Disable control for this pin
- Uint16 GPIO127:1; // 31 Pull-Up Disable control for this pin
- };
- union GPDPUD_REG {
- Uint32 all;
- struct GPDPUD_BITS bit;
- };
- struct GPDINV_BITS { // bits description
- Uint16 GPIO96:1; // 0 Input inversion control for this pin
- Uint16 GPIO97:1; // 1 Input inversion control for this pin
- Uint16 GPIO98:1; // 2 Input inversion control for this pin
- Uint16 GPIO99:1; // 3 Input inversion control for this pin
- Uint16 GPIO100:1; // 4 Input inversion control for this pin
- Uint16 GPIO101:1; // 5 Input inversion control for this pin
- Uint16 GPIO102:1; // 6 Input inversion control for this pin
- Uint16 GPIO103:1; // 7 Input inversion control for this pin
- Uint16 GPIO104:1; // 8 Input inversion control for this pin
- Uint16 GPIO105:1; // 9 Input inversion control for this pin
- Uint16 GPIO106:1; // 10 Input inversion control for this pin
- Uint16 GPIO107:1; // 11 Input inversion control for this pin
- Uint16 GPIO108:1; // 12 Input inversion control for this pin
- Uint16 GPIO109:1; // 13 Input inversion control for this pin
- Uint16 GPIO110:1; // 14 Input inversion control for this pin
- Uint16 GPIO111:1; // 15 Input inversion control for this pin
- Uint16 GPIO112:1; // 16 Input inversion control for this pin
- Uint16 GPIO113:1; // 17 Input inversion control for this pin
- Uint16 GPIO114:1; // 18 Input inversion control for this pin
- Uint16 GPIO115:1; // 19 Input inversion control for this pin
- Uint16 GPIO116:1; // 20 Input inversion control for this pin
- Uint16 GPIO117:1; // 21 Input inversion control for this pin
- Uint16 GPIO118:1; // 22 Input inversion control for this pin
- Uint16 GPIO119:1; // 23 Input inversion control for this pin
- Uint16 GPIO120:1; // 24 Input inversion control for this pin
- Uint16 GPIO121:1; // 25 Input inversion control for this pin
- Uint16 GPIO122:1; // 26 Input inversion control for this pin
- Uint16 GPIO123:1; // 27 Input inversion control for this pin
- Uint16 GPIO124:1; // 28 Input inversion control for this pin
- Uint16 GPIO125:1; // 29 Input inversion control for this pin
- Uint16 GPIO126:1; // 30 Input inversion control for this pin
- Uint16 GPIO127:1; // 31 Input inversion control for this pin
- };
- union GPDINV_REG {
- Uint32 all;
- struct GPDINV_BITS bit;
- };
- struct GPDODR_BITS { // bits description
- Uint16 GPIO96:1; // 0 Outpout Open-Drain control for this pin
- Uint16 GPIO97:1; // 1 Outpout Open-Drain control for this pin
- Uint16 GPIO98:1; // 2 Outpout Open-Drain control for this pin
- Uint16 GPIO99:1; // 3 Outpout Open-Drain control for this pin
- Uint16 GPIO100:1; // 4 Outpout Open-Drain control for this pin
- Uint16 GPIO101:1; // 5 Outpout Open-Drain control for this pin
- Uint16 GPIO102:1; // 6 Outpout Open-Drain control for this pin
- Uint16 GPIO103:1; // 7 Outpout Open-Drain control for this pin
- Uint16 GPIO104:1; // 8 Outpout Open-Drain control for this pin
- Uint16 GPIO105:1; // 9 Outpout Open-Drain control for this pin
- Uint16 GPIO106:1; // 10 Outpout Open-Drain control for this pin
- Uint16 GPIO107:1; // 11 Outpout Open-Drain control for this pin
- Uint16 GPIO108:1; // 12 Outpout Open-Drain control for this pin
- Uint16 GPIO109:1; // 13 Outpout Open-Drain control for this pin
- Uint16 GPIO110:1; // 14 Outpout Open-Drain control for this pin
- Uint16 GPIO111:1; // 15 Outpout Open-Drain control for this pin
- Uint16 GPIO112:1; // 16 Outpout Open-Drain control for this pin
- Uint16 GPIO113:1; // 17 Outpout Open-Drain control for this pin
- Uint16 GPIO114:1; // 18 Outpout Open-Drain control for this pin
- Uint16 GPIO115:1; // 19 Outpout Open-Drain control for this pin
- Uint16 GPIO116:1; // 20 Outpout Open-Drain control for this pin
- Uint16 GPIO117:1; // 21 Outpout Open-Drain control for this pin
- Uint16 GPIO118:1; // 22 Outpout Open-Drain control for this pin
- Uint16 GPIO119:1; // 23 Outpout Open-Drain control for this pin
- Uint16 GPIO120:1; // 24 Outpout Open-Drain control for this pin
- Uint16 GPIO121:1; // 25 Outpout Open-Drain control for this pin
- Uint16 GPIO122:1; // 26 Outpout Open-Drain control for this pin
- Uint16 GPIO123:1; // 27 Outpout Open-Drain control for this pin
- Uint16 GPIO124:1; // 28 Outpout Open-Drain control for this pin
- Uint16 GPIO125:1; // 29 Outpout Open-Drain control for this pin
- Uint16 GPIO126:1; // 30 Outpout Open-Drain control for this pin
- Uint16 GPIO127:1; // 31 Outpout Open-Drain control for this pin
- };
- union GPDODR_REG {
- Uint32 all;
- struct GPDODR_BITS bit;
- };
- struct GPDGMUX1_BITS { // bits description
- Uint16 GPIO96:2; // 1:0 Defines pin-muxing selection for GPIO96
- Uint16 GPIO97:2; // 3:2 Defines pin-muxing selection for GPIO97
- Uint16 GPIO98:2; // 5:4 Defines pin-muxing selection for GPIO98
- Uint16 GPIO99:2; // 7:6 Defines pin-muxing selection for GPIO99
- Uint16 GPIO100:2; // 9:8 Defines pin-muxing selection for GPIO100
- Uint16 GPIO101:2; // 11:10 Defines pin-muxing selection for GPIO101
- Uint16 GPIO102:2; // 13:12 Defines pin-muxing selection for GPIO102
- Uint16 GPIO103:2; // 15:14 Defines pin-muxing selection for GPIO103
- Uint16 GPIO104:2; // 17:16 Defines pin-muxing selection for GPIO104
- Uint16 GPIO105:2; // 19:18 Defines pin-muxing selection for GPIO105
- Uint16 GPIO106:2; // 21:20 Defines pin-muxing selection for GPIO106
- Uint16 GPIO107:2; // 23:22 Defines pin-muxing selection for GPIO107
- Uint16 GPIO108:2; // 25:24 Defines pin-muxing selection for GPIO108
- Uint16 GPIO109:2; // 27:26 Defines pin-muxing selection for GPIO109
- Uint16 GPIO110:2; // 29:28 Defines pin-muxing selection for GPIO110
- Uint16 GPIO111:2; // 31:30 Defines pin-muxing selection for GPIO111
- };
- union GPDGMUX1_REG {
- Uint32 all;
- struct GPDGMUX1_BITS bit;
- };
- struct GPDGMUX2_BITS { // bits description
- Uint16 GPIO112:2; // 1:0 Defines pin-muxing selection for GPIO112
- Uint16 GPIO113:2; // 3:2 Defines pin-muxing selection for GPIO113
- Uint16 GPIO114:2; // 5:4 Defines pin-muxing selection for GPIO114
- Uint16 GPIO115:2; // 7:6 Defines pin-muxing selection for GPIO115
- Uint16 GPIO116:2; // 9:8 Defines pin-muxing selection for GPIO116
- Uint16 GPIO117:2; // 11:10 Defines pin-muxing selection for GPIO117
- Uint16 GPIO118:2; // 13:12 Defines pin-muxing selection for GPIO118
- Uint16 GPIO119:2; // 15:14 Defines pin-muxing selection for GPIO119
- Uint16 GPIO120:2; // 17:16 Defines pin-muxing selection for GPIO120
- Uint16 GPIO121:2; // 19:18 Defines pin-muxing selection for GPIO121
- Uint16 GPIO122:2; // 21:20 Defines pin-muxing selection for GPIO122
- Uint16 GPIO123:2; // 23:22 Defines pin-muxing selection for GPIO123
- Uint16 GPIO124:2; // 25:24 Defines pin-muxing selection for GPIO124
- Uint16 GPIO125:2; // 27:26 Defines pin-muxing selection for GPIO125
- Uint16 GPIO126:2; // 29:28 Defines pin-muxing selection for GPIO126
- Uint16 GPIO127:2; // 31:30 Defines pin-muxing selection for GPIO127
- };
- union GPDGMUX2_REG {
- Uint32 all;
- struct GPDGMUX2_BITS bit;
- };
- struct GPDCSEL1_BITS { // bits description
- Uint16 GPIO96:4; // 3:0 GPIO96 Master CPU Select
- Uint16 GPIO97:4; // 7:4 GPIO97 Master CPU Select
- Uint16 GPIO98:4; // 11:8 GPIO98 Master CPU Select
- Uint16 GPIO99:4; // 15:12 GPIO99 Master CPU Select
- Uint16 GPIO100:4; // 19:16 GPIO100 Master CPU Select
- Uint16 GPIO101:4; // 23:20 GPIO101 Master CPU Select
- Uint16 GPIO102:4; // 27:24 GPIO102 Master CPU Select
- Uint16 GPIO103:4; // 31:28 GPIO103 Master CPU Select
- };
- union GPDCSEL1_REG {
- Uint32 all;
- struct GPDCSEL1_BITS bit;
- };
- struct GPDCSEL2_BITS { // bits description
- Uint16 GPIO104:4; // 3:0 GPIO104 Master CPU Select
- Uint16 GPIO105:4; // 7:4 GPIO105 Master CPU Select
- Uint16 GPIO106:4; // 11:8 GPIO106 Master CPU Select
- Uint16 GPIO107:4; // 15:12 GPIO107 Master CPU Select
- Uint16 GPIO108:4; // 19:16 GPIO108 Master CPU Select
- Uint16 GPIO109:4; // 23:20 GPIO109 Master CPU Select
- Uint16 GPIO110:4; // 27:24 GPIO110 Master CPU Select
- Uint16 GPIO111:4; // 31:28 GPIO111 Master CPU Select
- };
- union GPDCSEL2_REG {
- Uint32 all;
- struct GPDCSEL2_BITS bit;
- };
- struct GPDCSEL3_BITS { // bits description
- Uint16 GPIO112:4; // 3:0 GPIO112 Master CPU Select
- Uint16 GPIO113:4; // 7:4 GPIO113 Master CPU Select
- Uint16 GPIO114:4; // 11:8 GPIO114 Master CPU Select
- Uint16 GPIO115:4; // 15:12 GPIO115 Master CPU Select
- Uint16 GPIO116:4; // 19:16 GPIO116 Master CPU Select
- Uint16 GPIO117:4; // 23:20 GPIO117 Master CPU Select
- Uint16 GPIO118:4; // 27:24 GPIO118 Master CPU Select
- Uint16 GPIO119:4; // 31:28 GPIO119 Master CPU Select
- };
- union GPDCSEL3_REG {
- Uint32 all;
- struct GPDCSEL3_BITS bit;
- };
- struct GPDCSEL4_BITS { // bits description
- Uint16 GPIO120:4; // 3:0 GPIO120 Master CPU Select
- Uint16 GPIO121:4; // 7:4 GPIO121 Master CPU Select
- Uint16 GPIO122:4; // 11:8 GPIO122 Master CPU Select
- Uint16 GPIO123:4; // 15:12 GPIO123 Master CPU Select
- Uint16 GPIO124:4; // 19:16 GPIO124 Master CPU Select
- Uint16 GPIO125:4; // 23:20 GPIO125 Master CPU Select
- Uint16 GPIO126:4; // 27:24 GPIO126 Master CPU Select
- Uint16 GPIO127:4; // 31:28 GPIO127 Master CPU Select
- };
- union GPDCSEL4_REG {
- Uint32 all;
- struct GPDCSEL4_BITS bit;
- };
- struct GPDLOCK_BITS { // bits description
- Uint16 GPIO96:1; // 0 Configuration Lock bit for this pin
- Uint16 GPIO97:1; // 1 Configuration Lock bit for this pin
- Uint16 GPIO98:1; // 2 Configuration Lock bit for this pin
- Uint16 GPIO99:1; // 3 Configuration Lock bit for this pin
- Uint16 GPIO100:1; // 4 Configuration Lock bit for this pin
- Uint16 GPIO101:1; // 5 Configuration Lock bit for this pin
- Uint16 GPIO102:1; // 6 Configuration Lock bit for this pin
- Uint16 GPIO103:1; // 7 Configuration Lock bit for this pin
- Uint16 GPIO104:1; // 8 Configuration Lock bit for this pin
- Uint16 GPIO105:1; // 9 Configuration Lock bit for this pin
- Uint16 GPIO106:1; // 10 Configuration Lock bit for this pin
- Uint16 GPIO107:1; // 11 Configuration Lock bit for this pin
- Uint16 GPIO108:1; // 12 Configuration Lock bit for this pin
- Uint16 GPIO109:1; // 13 Configuration Lock bit for this pin
- Uint16 GPIO110:1; // 14 Configuration Lock bit for this pin
- Uint16 GPIO111:1; // 15 Configuration Lock bit for this pin
- Uint16 GPIO112:1; // 16 Configuration Lock bit for this pin
- Uint16 GPIO113:1; // 17 Configuration Lock bit for this pin
- Uint16 GPIO114:1; // 18 Configuration Lock bit for this pin
- Uint16 GPIO115:1; // 19 Configuration Lock bit for this pin
- Uint16 GPIO116:1; // 20 Configuration Lock bit for this pin
- Uint16 GPIO117:1; // 21 Configuration Lock bit for this pin
- Uint16 GPIO118:1; // 22 Configuration Lock bit for this pin
- Uint16 GPIO119:1; // 23 Configuration Lock bit for this pin
- Uint16 GPIO120:1; // 24 Configuration Lock bit for this pin
- Uint16 GPIO121:1; // 25 Configuration Lock bit for this pin
- Uint16 GPIO122:1; // 26 Configuration Lock bit for this pin
- Uint16 GPIO123:1; // 27 Configuration Lock bit for this pin
- Uint16 GPIO124:1; // 28 Configuration Lock bit for this pin
- Uint16 GPIO125:1; // 29 Configuration Lock bit for this pin
- Uint16 GPIO126:1; // 30 Configuration Lock bit for this pin
- Uint16 GPIO127:1; // 31 Configuration Lock bit for this pin
- };
- union GPDLOCK_REG {
- Uint32 all;
- struct GPDLOCK_BITS bit;
- };
- struct GPDCR_BITS { // bits description
- Uint16 GPIO96:1; // 0 Configuration lock commit bit for this pin
- Uint16 GPIO97:1; // 1 Configuration lock commit bit for this pin
- Uint16 GPIO98:1; // 2 Configuration lock commit bit for this pin
- Uint16 GPIO99:1; // 3 Configuration lock commit bit for this pin
- Uint16 GPIO100:1; // 4 Configuration lock commit bit for this pin
- Uint16 GPIO101:1; // 5 Configuration lock commit bit for this pin
- Uint16 GPIO102:1; // 6 Configuration lock commit bit for this pin
- Uint16 GPIO103:1; // 7 Configuration lock commit bit for this pin
- Uint16 GPIO104:1; // 8 Configuration lock commit bit for this pin
- Uint16 GPIO105:1; // 9 Configuration lock commit bit for this pin
- Uint16 GPIO106:1; // 10 Configuration lock commit bit for this pin
- Uint16 GPIO107:1; // 11 Configuration lock commit bit for this pin
- Uint16 GPIO108:1; // 12 Configuration lock commit bit for this pin
- Uint16 GPIO109:1; // 13 Configuration lock commit bit for this pin
- Uint16 GPIO110:1; // 14 Configuration lock commit bit for this pin
- Uint16 GPIO111:1; // 15 Configuration lock commit bit for this pin
- Uint16 GPIO112:1; // 16 Configuration lock commit bit for this pin
- Uint16 GPIO113:1; // 17 Configuration lock commit bit for this pin
- Uint16 GPIO114:1; // 18 Configuration lock commit bit for this pin
- Uint16 GPIO115:1; // 19 Configuration lock commit bit for this pin
- Uint16 GPIO116:1; // 20 Configuration lock commit bit for this pin
- Uint16 GPIO117:1; // 21 Configuration lock commit bit for this pin
- Uint16 GPIO118:1; // 22 Configuration lock commit bit for this pin
- Uint16 GPIO119:1; // 23 Configuration lock commit bit for this pin
- Uint16 GPIO120:1; // 24 Configuration lock commit bit for this pin
- Uint16 GPIO121:1; // 25 Configuration lock commit bit for this pin
- Uint16 GPIO122:1; // 26 Configuration lock commit bit for this pin
- Uint16 GPIO123:1; // 27 Configuration lock commit bit for this pin
- Uint16 GPIO124:1; // 28 Configuration lock commit bit for this pin
- Uint16 GPIO125:1; // 29 Configuration lock commit bit for this pin
- Uint16 GPIO126:1; // 30 Configuration lock commit bit for this pin
- Uint16 GPIO127:1; // 31 Configuration lock commit bit for this pin
- };
- union GPDCR_REG {
- Uint32 all;
- struct GPDCR_BITS bit;
- };
- struct GPECTRL_BITS { // bits description
- Uint16 QUALPRD0:8; // 7:0 Qualification sampling period for GPIO128 to GPIO135
- Uint16 QUALPRD1:8; // 15:8 Qualification sampling period for GPIO136 to GPIO143
- Uint16 QUALPRD2:8; // 23:16 Qualification sampling period for GPIO144 to GPIO151
- Uint16 QUALPRD3:8; // 31:24 Qualification sampling period for GPIO152 to GPIO159
- };
- union GPECTRL_REG {
- Uint32 all;
- struct GPECTRL_BITS bit;
- };
- struct GPEQSEL1_BITS { // bits description
- Uint16 GPIO128:2; // 1:0 Select input qualification type for GPIO128
- Uint16 GPIO129:2; // 3:2 Select input qualification type for GPIO129
- Uint16 GPIO130:2; // 5:4 Select input qualification type for GPIO130
- Uint16 GPIO131:2; // 7:6 Select input qualification type for GPIO131
- Uint16 GPIO132:2; // 9:8 Select input qualification type for GPIO132
- Uint16 GPIO133:2; // 11:10 Select input qualification type for GPIO133
- Uint16 GPIO134:2; // 13:12 Select input qualification type for GPIO134
- Uint16 GPIO135:2; // 15:14 Select input qualification type for GPIO135
- Uint16 GPIO136:2; // 17:16 Select input qualification type for GPIO136
- Uint16 GPIO137:2; // 19:18 Select input qualification type for GPIO137
- Uint16 GPIO138:2; // 21:20 Select input qualification type for GPIO138
- Uint16 GPIO139:2; // 23:22 Select input qualification type for GPIO139
- Uint16 GPIO140:2; // 25:24 Select input qualification type for GPIO140
- Uint16 GPIO141:2; // 27:26 Select input qualification type for GPIO141
- Uint16 GPIO142:2; // 29:28 Select input qualification type for GPIO142
- Uint16 GPIO143:2; // 31:30 Select input qualification type for GPIO143
- };
- union GPEQSEL1_REG {
- Uint32 all;
- struct GPEQSEL1_BITS bit;
- };
- struct GPEQSEL2_BITS { // bits description
- Uint16 GPIO144:2; // 1:0 Select input qualification type for GPIO144
- Uint16 GPIO145:2; // 3:2 Select input qualification type for GPIO145
- Uint16 GPIO146:2; // 5:4 Select input qualification type for GPIO146
- Uint16 GPIO147:2; // 7:6 Select input qualification type for GPIO147
- Uint16 GPIO148:2; // 9:8 Select input qualification type for GPIO148
- Uint16 GPIO149:2; // 11:10 Select input qualification type for GPIO149
- Uint16 GPIO150:2; // 13:12 Select input qualification type for GPIO150
- Uint16 GPIO151:2; // 15:14 Select input qualification type for GPIO151
- Uint16 GPIO152:2; // 17:16 Select input qualification type for GPIO152
- Uint16 GPIO153:2; // 19:18 Select input qualification type for GPIO153
- Uint16 GPIO154:2; // 21:20 Select input qualification type for GPIO154
- Uint16 GPIO155:2; // 23:22 Select input qualification type for GPIO155
- Uint16 GPIO156:2; // 25:24 Select input qualification type for GPIO156
- Uint16 GPIO157:2; // 27:26 Select input qualification type for GPIO157
- Uint16 GPIO158:2; // 29:28 Select input qualification type for GPIO158
- Uint16 GPIO159:2; // 31:30 Select input qualification type for GPIO159
- };
- union GPEQSEL2_REG {
- Uint32 all;
- struct GPEQSEL2_BITS bit;
- };
- struct GPEMUX1_BITS { // bits description
- Uint16 GPIO128:2; // 1:0 Defines pin-muxing selection for GPIO128
- Uint16 GPIO129:2; // 3:2 Defines pin-muxing selection for GPIO129
- Uint16 GPIO130:2; // 5:4 Defines pin-muxing selection for GPIO130
- Uint16 GPIO131:2; // 7:6 Defines pin-muxing selection for GPIO131
- Uint16 GPIO132:2; // 9:8 Defines pin-muxing selection for GPIO132
- Uint16 GPIO133:2; // 11:10 Defines pin-muxing selection for GPIO133
- Uint16 GPIO134:2; // 13:12 Defines pin-muxing selection for GPIO134
- Uint16 GPIO135:2; // 15:14 Defines pin-muxing selection for GPIO135
- Uint16 GPIO136:2; // 17:16 Defines pin-muxing selection for GPIO136
- Uint16 GPIO137:2; // 19:18 Defines pin-muxing selection for GPIO137
- Uint16 GPIO138:2; // 21:20 Defines pin-muxing selection for GPIO138
- Uint16 GPIO139:2; // 23:22 Defines pin-muxing selection for GPIO139
- Uint16 GPIO140:2; // 25:24 Defines pin-muxing selection for GPIO140
- Uint16 GPIO141:2; // 27:26 Defines pin-muxing selection for GPIO141
- Uint16 GPIO142:2; // 29:28 Defines pin-muxing selection for GPIO142
- Uint16 GPIO143:2; // 31:30 Defines pin-muxing selection for GPIO143
- };
- union GPEMUX1_REG {
- Uint32 all;
- struct GPEMUX1_BITS bit;
- };
- struct GPEMUX2_BITS { // bits description
- Uint16 GPIO144:2; // 1:0 Defines pin-muxing selection for GPIO144
- Uint16 GPIO145:2; // 3:2 Defines pin-muxing selection for GPIO145
- Uint16 GPIO146:2; // 5:4 Defines pin-muxing selection for GPIO146
- Uint16 GPIO147:2; // 7:6 Defines pin-muxing selection for GPIO147
- Uint16 GPIO148:2; // 9:8 Defines pin-muxing selection for GPIO148
- Uint16 GPIO149:2; // 11:10 Defines pin-muxing selection for GPIO149
- Uint16 GPIO150:2; // 13:12 Defines pin-muxing selection for GPIO150
- Uint16 GPIO151:2; // 15:14 Defines pin-muxing selection for GPIO151
- Uint16 GPIO152:2; // 17:16 Defines pin-muxing selection for GPIO152
- Uint16 GPIO153:2; // 19:18 Defines pin-muxing selection for GPIO153
- Uint16 GPIO154:2; // 21:20 Defines pin-muxing selection for GPIO154
- Uint16 GPIO155:2; // 23:22 Defines pin-muxing selection for GPIO155
- Uint16 GPIO156:2; // 25:24 Defines pin-muxing selection for GPIO156
- Uint16 GPIO157:2; // 27:26 Defines pin-muxing selection for GPIO157
- Uint16 GPIO158:2; // 29:28 Defines pin-muxing selection for GPIO158
- Uint16 GPIO159:2; // 31:30 Defines pin-muxing selection for GPIO159
- };
- union GPEMUX2_REG {
- Uint32 all;
- struct GPEMUX2_BITS bit;
- };
- struct GPEDIR_BITS { // bits description
- Uint16 GPIO128:1; // 0 Defines direction for this pin in GPIO mode
- Uint16 GPIO129:1; // 1 Defines direction for this pin in GPIO mode
- Uint16 GPIO130:1; // 2 Defines direction for this pin in GPIO mode
- Uint16 GPIO131:1; // 3 Defines direction for this pin in GPIO mode
- Uint16 GPIO132:1; // 4 Defines direction for this pin in GPIO mode
- Uint16 GPIO133:1; // 5 Defines direction for this pin in GPIO mode
- Uint16 GPIO134:1; // 6 Defines direction for this pin in GPIO mode
- Uint16 GPIO135:1; // 7 Defines direction for this pin in GPIO mode
- Uint16 GPIO136:1; // 8 Defines direction for this pin in GPIO mode
- Uint16 GPIO137:1; // 9 Defines direction for this pin in GPIO mode
- Uint16 GPIO138:1; // 10 Defines direction for this pin in GPIO mode
- Uint16 GPIO139:1; // 11 Defines direction for this pin in GPIO mode
- Uint16 GPIO140:1; // 12 Defines direction for this pin in GPIO mode
- Uint16 GPIO141:1; // 13 Defines direction for this pin in GPIO mode
- Uint16 GPIO142:1; // 14 Defines direction for this pin in GPIO mode
- Uint16 GPIO143:1; // 15 Defines direction for this pin in GPIO mode
- Uint16 GPIO144:1; // 16 Defines direction for this pin in GPIO mode
- Uint16 GPIO145:1; // 17 Defines direction for this pin in GPIO mode
- Uint16 GPIO146:1; // 18 Defines direction for this pin in GPIO mode
- Uint16 GPIO147:1; // 19 Defines direction for this pin in GPIO mode
- Uint16 GPIO148:1; // 20 Defines direction for this pin in GPIO mode
- Uint16 GPIO149:1; // 21 Defines direction for this pin in GPIO mode
- Uint16 GPIO150:1; // 22 Defines direction for this pin in GPIO mode
- Uint16 GPIO151:1; // 23 Defines direction for this pin in GPIO mode
- Uint16 GPIO152:1; // 24 Defines direction for this pin in GPIO mode
- Uint16 GPIO153:1; // 25 Defines direction for this pin in GPIO mode
- Uint16 GPIO154:1; // 26 Defines direction for this pin in GPIO mode
- Uint16 GPIO155:1; // 27 Defines direction for this pin in GPIO mode
- Uint16 GPIO156:1; // 28 Defines direction for this pin in GPIO mode
- Uint16 GPIO157:1; // 29 Defines direction for this pin in GPIO mode
- Uint16 GPIO158:1; // 30 Defines direction for this pin in GPIO mode
- Uint16 GPIO159:1; // 31 Defines direction for this pin in GPIO mode
- };
- union GPEDIR_REG {
- Uint32 all;
- struct GPEDIR_BITS bit;
- };
- struct GPEPUD_BITS { // bits description
- Uint16 GPIO128:1; // 0 Pull-Up Disable control for this pin
- Uint16 GPIO129:1; // 1 Pull-Up Disable control for this pin
- Uint16 GPIO130:1; // 2 Pull-Up Disable control for this pin
- Uint16 GPIO131:1; // 3 Pull-Up Disable control for this pin
- Uint16 GPIO132:1; // 4 Pull-Up Disable control for this pin
- Uint16 GPIO133:1; // 5 Pull-Up Disable control for this pin
- Uint16 GPIO134:1; // 6 Pull-Up Disable control for this pin
- Uint16 GPIO135:1; // 7 Pull-Up Disable control for this pin
- Uint16 GPIO136:1; // 8 Pull-Up Disable control for this pin
- Uint16 GPIO137:1; // 9 Pull-Up Disable control for this pin
- Uint16 GPIO138:1; // 10 Pull-Up Disable control for this pin
- Uint16 GPIO139:1; // 11 Pull-Up Disable control for this pin
- Uint16 GPIO140:1; // 12 Pull-Up Disable control for this pin
- Uint16 GPIO141:1; // 13 Pull-Up Disable control for this pin
- Uint16 GPIO142:1; // 14 Pull-Up Disable control for this pin
- Uint16 GPIO143:1; // 15 Pull-Up Disable control for this pin
- Uint16 GPIO144:1; // 16 Pull-Up Disable control for this pin
- Uint16 GPIO145:1; // 17 Pull-Up Disable control for this pin
- Uint16 GPIO146:1; // 18 Pull-Up Disable control for this pin
- Uint16 GPIO147:1; // 19 Pull-Up Disable control for this pin
- Uint16 GPIO148:1; // 20 Pull-Up Disable control for this pin
- Uint16 GPIO149:1; // 21 Pull-Up Disable control for this pin
- Uint16 GPIO150:1; // 22 Pull-Up Disable control for this pin
- Uint16 GPIO151:1; // 23 Pull-Up Disable control for this pin
- Uint16 GPIO152:1; // 24 Pull-Up Disable control for this pin
- Uint16 GPIO153:1; // 25 Pull-Up Disable control for this pin
- Uint16 GPIO154:1; // 26 Pull-Up Disable control for this pin
- Uint16 GPIO155:1; // 27 Pull-Up Disable control for this pin
- Uint16 GPIO156:1; // 28 Pull-Up Disable control for this pin
- Uint16 GPIO157:1; // 29 Pull-Up Disable control for this pin
- Uint16 GPIO158:1; // 30 Pull-Up Disable control for this pin
- Uint16 GPIO159:1; // 31 Pull-Up Disable control for this pin
- };
- union GPEPUD_REG {
- Uint32 all;
- struct GPEPUD_BITS bit;
- };
- struct GPEINV_BITS { // bits description
- Uint16 GPIO128:1; // 0 Input inversion control for this pin
- Uint16 GPIO129:1; // 1 Input inversion control for this pin
- Uint16 GPIO130:1; // 2 Input inversion control for this pin
- Uint16 GPIO131:1; // 3 Input inversion control for this pin
- Uint16 GPIO132:1; // 4 Input inversion control for this pin
- Uint16 GPIO133:1; // 5 Input inversion control for this pin
- Uint16 GPIO134:1; // 6 Input inversion control for this pin
- Uint16 GPIO135:1; // 7 Input inversion control for this pin
- Uint16 GPIO136:1; // 8 Input inversion control for this pin
- Uint16 GPIO137:1; // 9 Input inversion control for this pin
- Uint16 GPIO138:1; // 10 Input inversion control for this pin
- Uint16 GPIO139:1; // 11 Input inversion control for this pin
- Uint16 GPIO140:1; // 12 Input inversion control for this pin
- Uint16 GPIO141:1; // 13 Input inversion control for this pin
- Uint16 GPIO142:1; // 14 Input inversion control for this pin
- Uint16 GPIO143:1; // 15 Input inversion control for this pin
- Uint16 GPIO144:1; // 16 Input inversion control for this pin
- Uint16 GPIO145:1; // 17 Input inversion control for this pin
- Uint16 GPIO146:1; // 18 Input inversion control for this pin
- Uint16 GPIO147:1; // 19 Input inversion control for this pin
- Uint16 GPIO148:1; // 20 Input inversion control for this pin
- Uint16 GPIO149:1; // 21 Input inversion control for this pin
- Uint16 GPIO150:1; // 22 Input inversion control for this pin
- Uint16 GPIO151:1; // 23 Input inversion control for this pin
- Uint16 GPIO152:1; // 24 Input inversion control for this pin
- Uint16 GPIO153:1; // 25 Input inversion control for this pin
- Uint16 GPIO154:1; // 26 Input inversion control for this pin
- Uint16 GPIO155:1; // 27 Input inversion control for this pin
- Uint16 GPIO156:1; // 28 Input inversion control for this pin
- Uint16 GPIO157:1; // 29 Input inversion control for this pin
- Uint16 GPIO158:1; // 30 Input inversion control for this pin
- Uint16 GPIO159:1; // 31 Input inversion control for this pin
- };
- union GPEINV_REG {
- Uint32 all;
- struct GPEINV_BITS bit;
- };
- struct GPEODR_BITS { // bits description
- Uint16 GPIO128:1; // 0 Outpout Open-Drain control for this pin
- Uint16 GPIO129:1; // 1 Outpout Open-Drain control for this pin
- Uint16 GPIO130:1; // 2 Outpout Open-Drain control for this pin
- Uint16 GPIO131:1; // 3 Outpout Open-Drain control for this pin
- Uint16 GPIO132:1; // 4 Outpout Open-Drain control for this pin
- Uint16 GPIO133:1; // 5 Outpout Open-Drain control for this pin
- Uint16 GPIO134:1; // 6 Outpout Open-Drain control for this pin
- Uint16 GPIO135:1; // 7 Outpout Open-Drain control for this pin
- Uint16 GPIO136:1; // 8 Outpout Open-Drain control for this pin
- Uint16 GPIO137:1; // 9 Outpout Open-Drain control for this pin
- Uint16 GPIO138:1; // 10 Outpout Open-Drain control for this pin
- Uint16 GPIO139:1; // 11 Outpout Open-Drain control for this pin
- Uint16 GPIO140:1; // 12 Outpout Open-Drain control for this pin
- Uint16 GPIO141:1; // 13 Outpout Open-Drain control for this pin
- Uint16 GPIO142:1; // 14 Outpout Open-Drain control for this pin
- Uint16 GPIO143:1; // 15 Outpout Open-Drain control for this pin
- Uint16 GPIO144:1; // 16 Outpout Open-Drain control for this pin
- Uint16 GPIO145:1; // 17 Outpout Open-Drain control for this pin
- Uint16 GPIO146:1; // 18 Outpout Open-Drain control for this pin
- Uint16 GPIO147:1; // 19 Outpout Open-Drain control for this pin
- Uint16 GPIO148:1; // 20 Outpout Open-Drain control for this pin
- Uint16 GPIO149:1; // 21 Outpout Open-Drain control for this pin
- Uint16 GPIO150:1; // 22 Outpout Open-Drain control for this pin
- Uint16 GPIO151:1; // 23 Outpout Open-Drain control for this pin
- Uint16 GPIO152:1; // 24 Outpout Open-Drain control for this pin
- Uint16 GPIO153:1; // 25 Outpout Open-Drain control for this pin
- Uint16 GPIO154:1; // 26 Outpout Open-Drain control for this pin
- Uint16 GPIO155:1; // 27 Outpout Open-Drain control for this pin
- Uint16 GPIO156:1; // 28 Outpout Open-Drain control for this pin
- Uint16 GPIO157:1; // 29 Outpout Open-Drain control for this pin
- Uint16 GPIO158:1; // 30 Outpout Open-Drain control for this pin
- Uint16 GPIO159:1; // 31 Outpout Open-Drain control for this pin
- };
- union GPEODR_REG {
- Uint32 all;
- struct GPEODR_BITS bit;
- };
- struct GPEGMUX1_BITS { // bits description
- Uint16 GPIO128:2; // 1:0 Defines pin-muxing selection for GPIO128
- Uint16 GPIO129:2; // 3:2 Defines pin-muxing selection for GPIO129
- Uint16 GPIO130:2; // 5:4 Defines pin-muxing selection for GPIO130
- Uint16 GPIO131:2; // 7:6 Defines pin-muxing selection for GPIO131
- Uint16 GPIO132:2; // 9:8 Defines pin-muxing selection for GPIO132
- Uint16 GPIO133:2; // 11:10 Defines pin-muxing selection for GPIO133
- Uint16 GPIO134:2; // 13:12 Defines pin-muxing selection for GPIO134
- Uint16 GPIO135:2; // 15:14 Defines pin-muxing selection for GPIO135
- Uint16 GPIO136:2; // 17:16 Defines pin-muxing selection for GPIO136
- Uint16 GPIO137:2; // 19:18 Defines pin-muxing selection for GPIO137
- Uint16 GPIO138:2; // 21:20 Defines pin-muxing selection for GPIO138
- Uint16 GPIO139:2; // 23:22 Defines pin-muxing selection for GPIO139
- Uint16 GPIO140:2; // 25:24 Defines pin-muxing selection for GPIO140
- Uint16 GPIO141:2; // 27:26 Defines pin-muxing selection for GPIO141
- Uint16 GPIO142:2; // 29:28 Defines pin-muxing selection for GPIO142
- Uint16 GPIO143:2; // 31:30 Defines pin-muxing selection for GPIO143
- };
- union GPEGMUX1_REG {
- Uint32 all;
- struct GPEGMUX1_BITS bit;
- };
- struct GPEGMUX2_BITS { // bits description
- Uint16 GPIO144:2; // 1:0 Defines pin-muxing selection for GPIO144
- Uint16 GPIO145:2; // 3:2 Defines pin-muxing selection for GPIO145
- Uint16 GPIO146:2; // 5:4 Defines pin-muxing selection for GPIO146
- Uint16 GPIO147:2; // 7:6 Defines pin-muxing selection for GPIO147
- Uint16 GPIO148:2; // 9:8 Defines pin-muxing selection for GPIO148
- Uint16 GPIO149:2; // 11:10 Defines pin-muxing selection for GPIO149
- Uint16 GPIO150:2; // 13:12 Defines pin-muxing selection for GPIO150
- Uint16 GPIO151:2; // 15:14 Defines pin-muxing selection for GPIO151
- Uint16 GPIO152:2; // 17:16 Defines pin-muxing selection for GPIO152
- Uint16 GPIO153:2; // 19:18 Defines pin-muxing selection for GPIO153
- Uint16 GPIO154:2; // 21:20 Defines pin-muxing selection for GPIO154
- Uint16 GPIO155:2; // 23:22 Defines pin-muxing selection for GPIO155
- Uint16 GPIO156:2; // 25:24 Defines pin-muxing selection for GPIO156
- Uint16 GPIO157:2; // 27:26 Defines pin-muxing selection for GPIO157
- Uint16 GPIO158:2; // 29:28 Defines pin-muxing selection for GPIO158
- Uint16 GPIO159:2; // 31:30 Defines pin-muxing selection for GPIO159
- };
- union GPEGMUX2_REG {
- Uint32 all;
- struct GPEGMUX2_BITS bit;
- };
- struct GPECSEL1_BITS { // bits description
- Uint16 GPIO128:4; // 3:0 GPIO128 Master CPU Select
- Uint16 GPIO129:4; // 7:4 GPIO129 Master CPU Select
- Uint16 GPIO130:4; // 11:8 GPIO130 Master CPU Select
- Uint16 GPIO131:4; // 15:12 GPIO131 Master CPU Select
- Uint16 GPIO132:4; // 19:16 GPIO132 Master CPU Select
- Uint16 GPIO133:4; // 23:20 GPIO133 Master CPU Select
- Uint16 GPIO134:4; // 27:24 GPIO134 Master CPU Select
- Uint16 GPIO135:4; // 31:28 GPIO135 Master CPU Select
- };
- union GPECSEL1_REG {
- Uint32 all;
- struct GPECSEL1_BITS bit;
- };
- struct GPECSEL2_BITS { // bits description
- Uint16 GPIO136:4; // 3:0 GPIO136 Master CPU Select
- Uint16 GPIO137:4; // 7:4 GPIO137 Master CPU Select
- Uint16 GPIO138:4; // 11:8 GPIO138 Master CPU Select
- Uint16 GPIO139:4; // 15:12 GPIO139 Master CPU Select
- Uint16 GPIO140:4; // 19:16 GPIO140 Master CPU Select
- Uint16 GPIO141:4; // 23:20 GPIO141 Master CPU Select
- Uint16 GPIO142:4; // 27:24 GPIO142 Master CPU Select
- Uint16 GPIO143:4; // 31:28 GPIO143 Master CPU Select
- };
- union GPECSEL2_REG {
- Uint32 all;
- struct GPECSEL2_BITS bit;
- };
- struct GPECSEL3_BITS { // bits description
- Uint16 GPIO144:4; // 3:0 GPIO144 Master CPU Select
- Uint16 GPIO145:4; // 7:4 GPIO145 Master CPU Select
- Uint16 GPIO146:4; // 11:8 GPIO146 Master CPU Select
- Uint16 GPIO147:4; // 15:12 GPIO147 Master CPU Select
- Uint16 GPIO148:4; // 19:16 GPIO148 Master CPU Select
- Uint16 GPIO149:4; // 23:20 GPIO149 Master CPU Select
- Uint16 GPIO150:4; // 27:24 GPIO150 Master CPU Select
- Uint16 GPIO151:4; // 31:28 GPIO151 Master CPU Select
- };
- union GPECSEL3_REG {
- Uint32 all;
- struct GPECSEL3_BITS bit;
- };
- struct GPECSEL4_BITS { // bits description
- Uint16 GPIO152:4; // 3:0 GPIO152 Master CPU Select
- Uint16 GPIO153:4; // 7:4 GPIO153 Master CPU Select
- Uint16 GPIO154:4; // 11:8 GPIO154 Master CPU Select
- Uint16 GPIO155:4; // 15:12 GPIO155 Master CPU Select
- Uint16 GPIO156:4; // 19:16 GPIO156 Master CPU Select
- Uint16 GPIO157:4; // 23:20 GPIO157 Master CPU Select
- Uint16 GPIO158:4; // 27:24 GPIO158 Master CPU Select
- Uint16 GPIO159:4; // 31:28 GPIO159 Master CPU Select
- };
- union GPECSEL4_REG {
- Uint32 all;
- struct GPECSEL4_BITS bit;
- };
- struct GPELOCK_BITS { // bits description
- Uint16 GPIO128:1; // 0 Configuration Lock bit for this pin
- Uint16 GPIO129:1; // 1 Configuration Lock bit for this pin
- Uint16 GPIO130:1; // 2 Configuration Lock bit for this pin
- Uint16 GPIO131:1; // 3 Configuration Lock bit for this pin
- Uint16 GPIO132:1; // 4 Configuration Lock bit for this pin
- Uint16 GPIO133:1; // 5 Configuration Lock bit for this pin
- Uint16 GPIO134:1; // 6 Configuration Lock bit for this pin
- Uint16 GPIO135:1; // 7 Configuration Lock bit for this pin
- Uint16 GPIO136:1; // 8 Configuration Lock bit for this pin
- Uint16 GPIO137:1; // 9 Configuration Lock bit for this pin
- Uint16 GPIO138:1; // 10 Configuration Lock bit for this pin
- Uint16 GPIO139:1; // 11 Configuration Lock bit for this pin
- Uint16 GPIO140:1; // 12 Configuration Lock bit for this pin
- Uint16 GPIO141:1; // 13 Configuration Lock bit for this pin
- Uint16 GPIO142:1; // 14 Configuration Lock bit for this pin
- Uint16 GPIO143:1; // 15 Configuration Lock bit for this pin
- Uint16 GPIO144:1; // 16 Configuration Lock bit for this pin
- Uint16 GPIO145:1; // 17 Configuration Lock bit for this pin
- Uint16 GPIO146:1; // 18 Configuration Lock bit for this pin
- Uint16 GPIO147:1; // 19 Configuration Lock bit for this pin
- Uint16 GPIO148:1; // 20 Configuration Lock bit for this pin
- Uint16 GPIO149:1; // 21 Configuration Lock bit for this pin
- Uint16 GPIO150:1; // 22 Configuration Lock bit for this pin
- Uint16 GPIO151:1; // 23 Configuration Lock bit for this pin
- Uint16 GPIO152:1; // 24 Configuration Lock bit for this pin
- Uint16 GPIO153:1; // 25 Configuration Lock bit for this pin
- Uint16 GPIO154:1; // 26 Configuration Lock bit for this pin
- Uint16 GPIO155:1; // 27 Configuration Lock bit for this pin
- Uint16 GPIO156:1; // 28 Configuration Lock bit for this pin
- Uint16 GPIO157:1; // 29 Configuration Lock bit for this pin
- Uint16 GPIO158:1; // 30 Configuration Lock bit for this pin
- Uint16 GPIO159:1; // 31 Configuration Lock bit for this pin
- };
- union GPELOCK_REG {
- Uint32 all;
- struct GPELOCK_BITS bit;
- };
- struct GPECR_BITS { // bits description
- Uint16 GPIO128:1; // 0 Configuration lock commit bit for this pin
- Uint16 GPIO129:1; // 1 Configuration lock commit bit for this pin
- Uint16 GPIO130:1; // 2 Configuration lock commit bit for this pin
- Uint16 GPIO131:1; // 3 Configuration lock commit bit for this pin
- Uint16 GPIO132:1; // 4 Configuration lock commit bit for this pin
- Uint16 GPIO133:1; // 5 Configuration lock commit bit for this pin
- Uint16 GPIO134:1; // 6 Configuration lock commit bit for this pin
- Uint16 GPIO135:1; // 7 Configuration lock commit bit for this pin
- Uint16 GPIO136:1; // 8 Configuration lock commit bit for this pin
- Uint16 GPIO137:1; // 9 Configuration lock commit bit for this pin
- Uint16 GPIO138:1; // 10 Configuration lock commit bit for this pin
- Uint16 GPIO139:1; // 11 Configuration lock commit bit for this pin
- Uint16 GPIO140:1; // 12 Configuration lock commit bit for this pin
- Uint16 GPIO141:1; // 13 Configuration lock commit bit for this pin
- Uint16 GPIO142:1; // 14 Configuration lock commit bit for this pin
- Uint16 GPIO143:1; // 15 Configuration lock commit bit for this pin
- Uint16 GPIO144:1; // 16 Configuration lock commit bit for this pin
- Uint16 GPIO145:1; // 17 Configuration lock commit bit for this pin
- Uint16 GPIO146:1; // 18 Configuration lock commit bit for this pin
- Uint16 GPIO147:1; // 19 Configuration lock commit bit for this pin
- Uint16 GPIO148:1; // 20 Configuration lock commit bit for this pin
- Uint16 GPIO149:1; // 21 Configuration lock commit bit for this pin
- Uint16 GPIO150:1; // 22 Configuration lock commit bit for this pin
- Uint16 GPIO151:1; // 23 Configuration lock commit bit for this pin
- Uint16 GPIO152:1; // 24 Configuration lock commit bit for this pin
- Uint16 GPIO153:1; // 25 Configuration lock commit bit for this pin
- Uint16 GPIO154:1; // 26 Configuration lock commit bit for this pin
- Uint16 GPIO155:1; // 27 Configuration lock commit bit for this pin
- Uint16 GPIO156:1; // 28 Configuration lock commit bit for this pin
- Uint16 GPIO157:1; // 29 Configuration lock commit bit for this pin
- Uint16 GPIO158:1; // 30 Configuration lock commit bit for this pin
- Uint16 GPIO159:1; // 31 Configuration lock commit bit for this pin
- };
- union GPECR_REG {
- Uint32 all;
- struct GPECR_BITS bit;
- };
- struct GPFCTRL_BITS { // bits description
- Uint16 QUALPRD0:8; // 7:0 Qualification sampling period for GPIO160 to GPIO167
- Uint16 QUALPRD1:8; // 15:8 Qualification sampling period for GPIO168
- Uint16 rsvd1:8; // 23:16 Reserved
- Uint16 rsvd2:8; // 31:24 Reserved
- };
- union GPFCTRL_REG {
- Uint32 all;
- struct GPFCTRL_BITS bit;
- };
- struct GPFQSEL1_BITS { // bits description
- Uint16 GPIO160:2; // 1:0 Select input qualification type for GPIO160
- Uint16 GPIO161:2; // 3:2 Select input qualification type for GPIO161
- Uint16 GPIO162:2; // 5:4 Select input qualification type for GPIO162
- Uint16 GPIO163:2; // 7:6 Select input qualification type for GPIO163
- Uint16 GPIO164:2; // 9:8 Select input qualification type for GPIO164
- Uint16 GPIO165:2; // 11:10 Select input qualification type for GPIO165
- Uint16 GPIO166:2; // 13:12 Select input qualification type for GPIO166
- Uint16 GPIO167:2; // 15:14 Select input qualification type for GPIO167
- Uint16 GPIO168:2; // 17:16 Select input qualification type for GPIO168
- Uint16 rsvd1:2; // 19:18 Reserved
- Uint16 rsvd2:2; // 21:20 Reserved
- Uint16 rsvd3:2; // 23:22 Reserved
- Uint16 rsvd4:2; // 25:24 Reserved
- Uint16 rsvd5:2; // 27:26 Reserved
- Uint16 rsvd6:2; // 29:28 Reserved
- Uint16 rsvd7:2; // 31:30 Reserved
- };
- union GPFQSEL1_REG {
- Uint32 all;
- struct GPFQSEL1_BITS bit;
- };
- struct GPFMUX1_BITS { // bits description
- Uint16 GPIO160:2; // 1:0 Defines pin-muxing selection for GPIO160
- Uint16 GPIO161:2; // 3:2 Defines pin-muxing selection for GPIO161
- Uint16 GPIO162:2; // 5:4 Defines pin-muxing selection for GPIO162
- Uint16 GPIO163:2; // 7:6 Defines pin-muxing selection for GPIO163
- Uint16 GPIO164:2; // 9:8 Defines pin-muxing selection for GPIO164
- Uint16 GPIO165:2; // 11:10 Defines pin-muxing selection for GPIO165
- Uint16 GPIO166:2; // 13:12 Defines pin-muxing selection for GPIO166
- Uint16 GPIO167:2; // 15:14 Defines pin-muxing selection for GPIO167
- Uint16 GPIO168:2; // 17:16 Defines pin-muxing selection for GPIO168
- Uint16 rsvd1:2; // 19:18 Reserved
- Uint16 rsvd2:2; // 21:20 Reserved
- Uint16 rsvd3:2; // 23:22 Reserved
- Uint16 rsvd4:2; // 25:24 Reserved
- Uint16 rsvd5:2; // 27:26 Reserved
- Uint16 rsvd6:2; // 29:28 Reserved
- Uint16 rsvd7:2; // 31:30 Reserved
- };
- union GPFMUX1_REG {
- Uint32 all;
- struct GPFMUX1_BITS bit;
- };
- struct GPFDIR_BITS { // bits description
- Uint16 GPIO160:1; // 0 Defines direction for this pin in GPIO mode
- Uint16 GPIO161:1; // 1 Defines direction for this pin in GPIO mode
- Uint16 GPIO162:1; // 2 Defines direction for this pin in GPIO mode
- Uint16 GPIO163:1; // 3 Defines direction for this pin in GPIO mode
- Uint16 GPIO164:1; // 4 Defines direction for this pin in GPIO mode
- Uint16 GPIO165:1; // 5 Defines direction for this pin in GPIO mode
- Uint16 GPIO166:1; // 6 Defines direction for this pin in GPIO mode
- Uint16 GPIO167:1; // 7 Defines direction for this pin in GPIO mode
- Uint16 GPIO168:1; // 8 Defines direction for this pin in GPIO mode
- Uint16 rsvd1:1; // 9 Reserved
- Uint16 rsvd2:1; // 10 Reserved
- Uint16 rsvd3:1; // 11 Reserved
- Uint16 rsvd4:1; // 12 Reserved
- Uint16 rsvd5:1; // 13 Reserved
- Uint16 rsvd6:1; // 14 Reserved
- Uint16 rsvd7:1; // 15 Reserved
- Uint16 rsvd8:1; // 16 Reserved
- Uint16 rsvd9:1; // 17 Reserved
- Uint16 rsvd10:1; // 18 Reserved
- Uint16 rsvd11:1; // 19 Reserved
- Uint16 rsvd12:1; // 20 Reserved
- Uint16 rsvd13:1; // 21 Reserved
- Uint16 rsvd14:1; // 22 Reserved
- Uint16 rsvd15:1; // 23 Reserved
- Uint16 rsvd16:1; // 24 Reserved
- Uint16 rsvd17:1; // 25 Reserved
- Uint16 rsvd18:1; // 26 Reserved
- Uint16 rsvd19:1; // 27 Reserved
- Uint16 rsvd20:1; // 28 Reserved
- Uint16 rsvd21:1; // 29 Reserved
- Uint16 rsvd22:1; // 30 Reserved
- Uint16 rsvd23:1; // 31 Reserved
- };
- union GPFDIR_REG {
- Uint32 all;
- struct GPFDIR_BITS bit;
- };
- struct GPFPUD_BITS { // bits description
- Uint16 GPIO160:1; // 0 Pull-Up Disable control for this pin
- Uint16 GPIO161:1; // 1 Pull-Up Disable control for this pin
- Uint16 GPIO162:1; // 2 Pull-Up Disable control for this pin
- Uint16 GPIO163:1; // 3 Pull-Up Disable control for this pin
- Uint16 GPIO164:1; // 4 Pull-Up Disable control for this pin
- Uint16 GPIO165:1; // 5 Pull-Up Disable control for this pin
- Uint16 GPIO166:1; // 6 Pull-Up Disable control for this pin
- Uint16 GPIO167:1; // 7 Pull-Up Disable control for this pin
- Uint16 GPIO168:1; // 8 Pull-Up Disable control for this pin
- Uint16 rsvd1:1; // 9 Reserved
- Uint16 rsvd2:1; // 10 Reserved
- Uint16 rsvd3:1; // 11 Reserved
- Uint16 rsvd4:1; // 12 Reserved
- Uint16 rsvd5:1; // 13 Reserved
- Uint16 rsvd6:1; // 14 Reserved
- Uint16 rsvd7:1; // 15 Reserved
- Uint16 rsvd8:1; // 16 Reserved
- Uint16 rsvd9:1; // 17 Reserved
- Uint16 rsvd10:1; // 18 Reserved
- Uint16 rsvd11:1; // 19 Reserved
- Uint16 rsvd12:1; // 20 Reserved
- Uint16 rsvd13:1; // 21 Reserved
- Uint16 rsvd14:1; // 22 Reserved
- Uint16 rsvd15:1; // 23 Reserved
- Uint16 rsvd16:1; // 24 Reserved
- Uint16 rsvd17:1; // 25 Reserved
- Uint16 rsvd18:1; // 26 Reserved
- Uint16 rsvd19:1; // 27 Reserved
- Uint16 rsvd20:1; // 28 Reserved
- Uint16 rsvd21:1; // 29 Reserved
- Uint16 rsvd22:1; // 30 Reserved
- Uint16 rsvd23:1; // 31 Reserved
- };
- union GPFPUD_REG {
- Uint32 all;
- struct GPFPUD_BITS bit;
- };
- struct GPFINV_BITS { // bits description
- Uint16 GPIO160:1; // 0 Input inversion control for this pin
- Uint16 GPIO161:1; // 1 Input inversion control for this pin
- Uint16 GPIO162:1; // 2 Input inversion control for this pin
- Uint16 GPIO163:1; // 3 Input inversion control for this pin
- Uint16 GPIO164:1; // 4 Input inversion control for this pin
- Uint16 GPIO165:1; // 5 Input inversion control for this pin
- Uint16 GPIO166:1; // 6 Input inversion control for this pin
- Uint16 GPIO167:1; // 7 Input inversion control for this pin
- Uint16 GPIO168:1; // 8 Input inversion control for this pin
- Uint16 rsvd1:1; // 9 Reserved
- Uint16 rsvd2:1; // 10 Reserved
- Uint16 rsvd3:1; // 11 Reserved
- Uint16 rsvd4:1; // 12 Reserved
- Uint16 rsvd5:1; // 13 Reserved
- Uint16 rsvd6:1; // 14 Reserved
- Uint16 rsvd7:1; // 15 Reserved
- Uint16 rsvd8:1; // 16 Reserved
- Uint16 rsvd9:1; // 17 Reserved
- Uint16 rsvd10:1; // 18 Reserved
- Uint16 rsvd11:1; // 19 Reserved
- Uint16 rsvd12:1; // 20 Reserved
- Uint16 rsvd13:1; // 21 Reserved
- Uint16 rsvd14:1; // 22 Reserved
- Uint16 rsvd15:1; // 23 Reserved
- Uint16 rsvd16:1; // 24 Reserved
- Uint16 rsvd17:1; // 25 Reserved
- Uint16 rsvd18:1; // 26 Reserved
- Uint16 rsvd19:1; // 27 Reserved
- Uint16 rsvd20:1; // 28 Reserved
- Uint16 rsvd21:1; // 29 Reserved
- Uint16 rsvd22:1; // 30 Reserved
- Uint16 rsvd23:1; // 31 Reserved
- };
- union GPFINV_REG {
- Uint32 all;
- struct GPFINV_BITS bit;
- };
- struct GPFODR_BITS { // bits description
- Uint16 GPIO160:1; // 0 Outpout Open-Drain control for this pin
- Uint16 GPIO161:1; // 1 Outpout Open-Drain control for this pin
- Uint16 GPIO162:1; // 2 Outpout Open-Drain control for this pin
- Uint16 GPIO163:1; // 3 Outpout Open-Drain control for this pin
- Uint16 GPIO164:1; // 4 Outpout Open-Drain control for this pin
- Uint16 GPIO165:1; // 5 Outpout Open-Drain control for this pin
- Uint16 GPIO166:1; // 6 Outpout Open-Drain control for this pin
- Uint16 GPIO167:1; // 7 Outpout Open-Drain control for this pin
- Uint16 GPIO168:1; // 8 Outpout Open-Drain control for this pin
- Uint16 rsvd1:1; // 9 Reserved
- Uint16 rsvd2:1; // 10 Reserved
- Uint16 rsvd3:1; // 11 Reserved
- Uint16 rsvd4:1; // 12 Reserved
- Uint16 rsvd5:1; // 13 Reserved
- Uint16 rsvd6:1; // 14 Reserved
- Uint16 rsvd7:1; // 15 Reserved
- Uint16 rsvd8:1; // 16 Reserved
- Uint16 rsvd9:1; // 17 Reserved
- Uint16 rsvd10:1; // 18 Reserved
- Uint16 rsvd11:1; // 19 Reserved
- Uint16 rsvd12:1; // 20 Reserved
- Uint16 rsvd13:1; // 21 Reserved
- Uint16 rsvd14:1; // 22 Reserved
- Uint16 rsvd15:1; // 23 Reserved
- Uint16 rsvd16:1; // 24 Reserved
- Uint16 rsvd17:1; // 25 Reserved
- Uint16 rsvd18:1; // 26 Reserved
- Uint16 rsvd19:1; // 27 Reserved
- Uint16 rsvd20:1; // 28 Reserved
- Uint16 rsvd21:1; // 29 Reserved
- Uint16 rsvd22:1; // 30 Reserved
- Uint16 rsvd23:1; // 31 Reserved
- };
- union GPFODR_REG {
- Uint32 all;
- struct GPFODR_BITS bit;
- };
- struct GPFGMUX1_BITS { // bits description
- Uint16 GPIO160:2; // 1:0 Defines pin-muxing selection for GPIO160
- Uint16 GPIO161:2; // 3:2 Defines pin-muxing selection for GPIO161
- Uint16 GPIO162:2; // 5:4 Defines pin-muxing selection for GPIO162
- Uint16 GPIO163:2; // 7:6 Defines pin-muxing selection for GPIO163
- Uint16 GPIO164:2; // 9:8 Defines pin-muxing selection for GPIO164
- Uint16 GPIO165:2; // 11:10 Defines pin-muxing selection for GPIO165
- Uint16 GPIO166:2; // 13:12 Defines pin-muxing selection for GPIO166
- Uint16 GPIO167:2; // 15:14 Defines pin-muxing selection for GPIO167
- Uint16 GPIO168:2; // 17:16 Defines pin-muxing selection for GPIO168
- Uint16 rsvd1:2; // 19:18 Reserved
- Uint16 rsvd2:2; // 21:20 Reserved
- Uint16 rsvd3:2; // 23:22 Reserved
- Uint16 rsvd4:2; // 25:24 Reserved
- Uint16 rsvd5:2; // 27:26 Reserved
- Uint16 rsvd6:2; // 29:28 Reserved
- Uint16 rsvd7:2; // 31:30 Reserved
- };
- union GPFGMUX1_REG {
- Uint32 all;
- struct GPFGMUX1_BITS bit;
- };
- struct GPFCSEL1_BITS { // bits description
- Uint16 GPIO160:4; // 3:0 GPIO160 Master CPU Select
- Uint16 GPIO161:4; // 7:4 GPIO161 Master CPU Select
- Uint16 GPIO162:4; // 11:8 GPIO162 Master CPU Select
- Uint16 GPIO163:4; // 15:12 GPIO163 Master CPU Select
- Uint16 GPIO164:4; // 19:16 GPIO164 Master CPU Select
- Uint16 GPIO165:4; // 23:20 GPIO165 Master CPU Select
- Uint16 GPIO166:4; // 27:24 GPIO166 Master CPU Select
- Uint16 GPIO167:4; // 31:28 GPIO167 Master CPU Select
- };
- union GPFCSEL1_REG {
- Uint32 all;
- struct GPFCSEL1_BITS bit;
- };
- struct GPFCSEL2_BITS { // bits description
- Uint16 GPIO168:4; // 3:0 GPIO168 Master CPU Select
- Uint16 rsvd1:4; // 7:4 Reserved
- Uint16 rsvd2:4; // 11:8 Reserved
- Uint16 rsvd3:4; // 15:12 Reserved
- Uint16 rsvd4:4; // 19:16 Reserved
- Uint16 rsvd5:4; // 23:20 Reserved
- Uint16 rsvd6:4; // 27:24 Reserved
- Uint16 rsvd7:4; // 31:28 Reserved
- };
- union GPFCSEL2_REG {
- Uint32 all;
- struct GPFCSEL2_BITS bit;
- };
- struct GPFLOCK_BITS { // bits description
- Uint16 GPIO160:1; // 0 Configuration Lock bit for this pin
- Uint16 GPIO161:1; // 1 Configuration Lock bit for this pin
- Uint16 GPIO162:1; // 2 Configuration Lock bit for this pin
- Uint16 GPIO163:1; // 3 Configuration Lock bit for this pin
- Uint16 GPIO164:1; // 4 Configuration Lock bit for this pin
- Uint16 GPIO165:1; // 5 Configuration Lock bit for this pin
- Uint16 GPIO166:1; // 6 Configuration Lock bit for this pin
- Uint16 GPIO167:1; // 7 Configuration Lock bit for this pin
- Uint16 GPIO168:1; // 8 Configuration Lock bit for this pin
- Uint16 rsvd1:1; // 9 Reserved
- Uint16 rsvd2:1; // 10 Reserved
- Uint16 rsvd3:1; // 11 Reserved
- Uint16 rsvd4:1; // 12 Reserved
- Uint16 rsvd5:1; // 13 Reserved
- Uint16 rsvd6:1; // 14 Reserved
- Uint16 rsvd7:1; // 15 Reserved
- Uint16 rsvd8:1; // 16 Reserved
- Uint16 rsvd9:1; // 17 Reserved
- Uint16 rsvd10:1; // 18 Reserved
- Uint16 rsvd11:1; // 19 Reserved
- Uint16 rsvd12:1; // 20 Reserved
- Uint16 rsvd13:1; // 21 Reserved
- Uint16 rsvd14:1; // 22 Reserved
- Uint16 rsvd15:1; // 23 Reserved
- Uint16 rsvd16:1; // 24 Reserved
- Uint16 rsvd17:1; // 25 Reserved
- Uint16 rsvd18:1; // 26 Reserved
- Uint16 rsvd19:1; // 27 Reserved
- Uint16 rsvd20:1; // 28 Reserved
- Uint16 rsvd21:1; // 29 Reserved
- Uint16 rsvd22:1; // 30 Reserved
- Uint16 rsvd23:1; // 31 Reserved
- };
- union GPFLOCK_REG {
- Uint32 all;
- struct GPFLOCK_BITS bit;
- };
- struct GPFCR_BITS { // bits description
- Uint16 GPIO160:1; // 0 Configuration lock commit bit for this pin
- Uint16 GPIO161:1; // 1 Configuration lock commit bit for this pin
- Uint16 GPIO162:1; // 2 Configuration lock commit bit for this pin
- Uint16 GPIO163:1; // 3 Configuration lock commit bit for this pin
- Uint16 GPIO164:1; // 4 Configuration lock commit bit for this pin
- Uint16 GPIO165:1; // 5 Configuration lock commit bit for this pin
- Uint16 GPIO166:1; // 6 Configuration lock commit bit for this pin
- Uint16 GPIO167:1; // 7 Configuration lock commit bit for this pin
- Uint16 GPIO168:1; // 8 Configuration lock commit bit for this pin
- Uint16 rsvd1:1; // 9 Reserved
- Uint16 rsvd2:1; // 10 Reserved
- Uint16 rsvd3:1; // 11 Reserved
- Uint16 rsvd4:1; // 12 Reserved
- Uint16 rsvd5:1; // 13 Reserved
- Uint16 rsvd6:1; // 14 Reserved
- Uint16 rsvd7:1; // 15 Reserved
- Uint16 rsvd8:1; // 16 Reserved
- Uint16 rsvd9:1; // 17 Reserved
- Uint16 rsvd10:1; // 18 Reserved
- Uint16 rsvd11:1; // 19 Reserved
- Uint16 rsvd12:1; // 20 Reserved
- Uint16 rsvd13:1; // 21 Reserved
- Uint16 rsvd14:1; // 22 Reserved
- Uint16 rsvd15:1; // 23 Reserved
- Uint16 rsvd16:1; // 24 Reserved
- Uint16 rsvd17:1; // 25 Reserved
- Uint16 rsvd18:1; // 26 Reserved
- Uint16 rsvd19:1; // 27 Reserved
- Uint16 rsvd20:1; // 28 Reserved
- Uint16 rsvd21:1; // 29 Reserved
- Uint16 rsvd22:1; // 30 Reserved
- Uint16 rsvd23:1; // 31 Reserved
- };
- union GPFCR_REG {
- Uint32 all;
- struct GPFCR_BITS bit;
- };
- struct GPIO_CTRL_REGS {
- union GPACTRL_REG GPACTRL; // GPIO A Qualification Sampling Period Control (GPIO0 to 31)
- union GPAQSEL1_REG GPAQSEL1; // GPIO A Qualifier Select 1 Register (GPIO0 to 15)
- union GPAQSEL2_REG GPAQSEL2; // GPIO A Qualifier Select 2 Register (GPIO16 to 31)
- union GPAMUX1_REG GPAMUX1; // GPIO A Mux 1 Register (GPIO0 to 15)
- union GPAMUX2_REG GPAMUX2; // GPIO A Mux 2 Register (GPIO16 to 31)
- union GPADIR_REG GPADIR; // GPIO A Direction Register (GPIO0 to 31)
- union GPAPUD_REG GPAPUD; // GPIO A Pull Up Disable Register (GPIO0 to 31)
- Uint16 rsvd1[2]; // Reserved
- union GPAINV_REG GPAINV; // GPIO A Input Polarity Invert Registers (GPIO0 to 31)
- union GPAODR_REG GPAODR; // GPIO A Open Drain Output Register (GPIO0 to GPIO31)
- Uint16 rsvd2[12]; // Reserved
- union GPAGMUX1_REG GPAGMUX1; // GPIO A Peripheral Group Mux (GPIO0 to 15)
- union GPAGMUX2_REG GPAGMUX2; // GPIO A Peripheral Group Mux (GPIO16 to 31)
- Uint16 rsvd3[4]; // Reserved
- union GPACSEL1_REG GPACSEL1; // GPIO A Core Select Register (GPIO0 to 7)
- union GPACSEL2_REG GPACSEL2; // GPIO A Core Select Register (GPIO8 to 15)
- union GPACSEL3_REG GPACSEL3; // GPIO A Core Select Register (GPIO16 to 23)
- union GPACSEL4_REG GPACSEL4; // GPIO A Core Select Register (GPIO24 to 31)
- Uint16 rsvd4[12]; // Reserved
- union GPALOCK_REG GPALOCK; // GPIO A Lock Configuration Register (GPIO0 to 31)
- union GPACR_REG GPACR; // GPIO A Lock Commit Register (GPIO0 to 31)
- union GPBCTRL_REG GPBCTRL; // GPIO B Qualification Sampling Period Control (GPIO32 to 63)
- union GPBQSEL1_REG GPBQSEL1; // GPIO B Qualifier Select 1 Register (GPIO32 to 47)
- union GPBQSEL2_REG GPBQSEL2; // GPIO B Qualifier Select 2 Register (GPIO48 to 63)
- union GPBMUX1_REG GPBMUX1; // GPIO B Mux 1 Register (GPIO32 to 47)
- union GPBMUX2_REG GPBMUX2; // GPIO B Mux 2 Register (GPIO48 to 63)
- union GPBDIR_REG GPBDIR; // GPIO B Direction Register (GPIO32 to 63)
- union GPBPUD_REG GPBPUD; // GPIO B Pull Up Disable Register (GPIO32 to 63)
- Uint16 rsvd5[2]; // Reserved
- union GPBINV_REG GPBINV; // GPIO B Input Polarity Invert Registers (GPIO32 to 63)
- union GPBODR_REG GPBODR; // GPIO B Open Drain Output Register (GPIO32 to GPIO63)
- union GPBAMSEL_REG GPBAMSEL; // GPIO B Analog Mode Select register (GPIO32 to GPIO63)
- Uint16 rsvd6[10]; // Reserved
- union GPBGMUX1_REG GPBGMUX1; // GPIO B Peripheral Group Mux (GPIO32 to 47)
- union GPBGMUX2_REG GPBGMUX2; // GPIO B Peripheral Group Mux (GPIO48 to 63)
- Uint16 rsvd7[4]; // Reserved
- union GPBCSEL1_REG GPBCSEL1; // GPIO B Core Select Register (GPIO32 to 39)
- union GPBCSEL2_REG GPBCSEL2; // GPIO B Core Select Register (GPIO40 to 47)
- union GPBCSEL3_REG GPBCSEL3; // GPIO B Core Select Register (GPIO48 to 55)
- union GPBCSEL4_REG GPBCSEL4; // GPIO B Core Select Register (GPIO56 to 63)
- Uint16 rsvd8[12]; // Reserved
- union GPBLOCK_REG GPBLOCK; // GPIO B Lock Configuration Register (GPIO32 to 63)
- union GPBCR_REG GPBCR; // GPIO B Lock Commit Register (GPIO32 to 63)
- union GPCCTRL_REG GPCCTRL; // GPIO C Qualification Sampling Period Control (GPIO64 to 95)
- union GPCQSEL1_REG GPCQSEL1; // GPIO C Qualifier Select 1 Register (GPIO64 to 79)
- union GPCQSEL2_REG GPCQSEL2; // GPIO C Qualifier Select 2 Register (GPIO80 to 95)
- union GPCMUX1_REG GPCMUX1; // GPIO C Mux 1 Register (GPIO64 to 79)
- union GPCMUX2_REG GPCMUX2; // GPIO C Mux 2 Register (GPIO80 to 95)
- union GPCDIR_REG GPCDIR; // GPIO C Direction Register (GPIO64 to 95)
- union GPCPUD_REG GPCPUD; // GPIO C Pull Up Disable Register (GPIO64 to 95)
- Uint16 rsvd9[2]; // Reserved
- union GPCINV_REG GPCINV; // GPIO C Input Polarity Invert Registers (GPIO64 to 95)
- union GPCODR_REG GPCODR; // GPIO C Open Drain Output Register (GPIO64 to GPIO95)
- Uint16 rsvd10[12]; // Reserved
- union GPCGMUX1_REG GPCGMUX1; // GPIO C Peripheral Group Mux (GPIO64 to 79)
- union GPCGMUX2_REG GPCGMUX2; // GPIO C Peripheral Group Mux (GPIO80 to 95)
- Uint16 rsvd11[4]; // Reserved
- union GPCCSEL1_REG GPCCSEL1; // GPIO C Core Select Register (GPIO64 to 71)
- union GPCCSEL2_REG GPCCSEL2; // GPIO C Core Select Register (GPIO72 to 79)
- union GPCCSEL3_REG GPCCSEL3; // GPIO C Core Select Register (GPIO80 to 87)
- union GPCCSEL4_REG GPCCSEL4; // GPIO C Core Select Register (GPIO88 to 95)
- Uint16 rsvd12[12]; // Reserved
- union GPCLOCK_REG GPCLOCK; // GPIO C Lock Configuration Register (GPIO64 to 95)
- union GPCCR_REG GPCCR; // GPIO C Lock Commit Register (GPIO64 to 95)
- union GPDCTRL_REG GPDCTRL; // GPIO D Qualification Sampling Period Control (GPIO96 to 127)
- union GPDQSEL1_REG GPDQSEL1; // GPIO D Qualifier Select 1 Register (GPIO96 to 111)
- union GPDQSEL2_REG GPDQSEL2; // GPIO D Qualifier Select 2 Register (GPIO112 to 127)
- union GPDMUX1_REG GPDMUX1; // GPIO D Mux 1 Register (GPIO96 to 111)
- union GPDMUX2_REG GPDMUX2; // GPIO D Mux 2 Register (GPIO112 to 127)
- union GPDDIR_REG GPDDIR; // GPIO D Direction Register (GPIO96 to 127)
- union GPDPUD_REG GPDPUD; // GPIO D Pull Up Disable Register (GPIO96 to 127)
- Uint16 rsvd13[2]; // Reserved
- union GPDINV_REG GPDINV; // GPIO D Input Polarity Invert Registers (GPIO96 to 127)
- union GPDODR_REG GPDODR; // GPIO D Open Drain Output Register (GPIO96 to GPIO127)
- Uint16 rsvd14[12]; // Reserved
- union GPDGMUX1_REG GPDGMUX1; // GPIO D Peripheral Group Mux (GPIO96 to 111)
- union GPDGMUX2_REG GPDGMUX2; // GPIO D Peripheral Group Mux (GPIO112 to 127)
- Uint16 rsvd15[4]; // Reserved
- union GPDCSEL1_REG GPDCSEL1; // GPIO D Core Select Register (GPIO96 to 103)
- union GPDCSEL2_REG GPDCSEL2; // GPIO D Core Select Register (GPIO104 to 111)
- union GPDCSEL3_REG GPDCSEL3; // GPIO D Core Select Register (GPIO112 to 119)
- union GPDCSEL4_REG GPDCSEL4; // GPIO D Core Select Register (GPIO120 to 127)
- Uint16 rsvd16[12]; // Reserved
- union GPDLOCK_REG GPDLOCK; // GPIO D Lock Configuration Register (GPIO96 to 127)
- union GPDCR_REG GPDCR; // GPIO D Lock Commit Register (GPIO96 to 127)
- union GPECTRL_REG GPECTRL; // GPIO E Qualification Sampling Period Control (GPIO128 to 159)
- union GPEQSEL1_REG GPEQSEL1; // GPIO E Qualifier Select 1 Register (GPIO128 to 143)
- union GPEQSEL2_REG GPEQSEL2; // GPIO E Qualifier Select 2 Register (GPIO144 to 159)
- union GPEMUX1_REG GPEMUX1; // GPIO E Mux 1 Register (GPIO128 to 143)
- union GPEMUX2_REG GPEMUX2; // GPIO E Mux 2 Register (GPIO144 to 159)
- union GPEDIR_REG GPEDIR; // GPIO E Direction Register (GPIO128 to 159)
- union GPEPUD_REG GPEPUD; // GPIO E Pull Up Disable Register (GPIO128 to 159)
- Uint16 rsvd17[2]; // Reserved
- union GPEINV_REG GPEINV; // GPIO E Input Polarity Invert Registers (GPIO128 to 159)
- union GPEODR_REG GPEODR; // GPIO E Open Drain Output Register (GPIO128 to GPIO159)
- Uint16 rsvd18[12]; // Reserved
- union GPEGMUX1_REG GPEGMUX1; // GPIO E Peripheral Group Mux (GPIO128 to 143)
- union GPEGMUX2_REG GPEGMUX2; // GPIO E Peripheral Group Mux (GPIO144 to 159)
- Uint16 rsvd19[4]; // Reserved
- union GPECSEL1_REG GPECSEL1; // GPIO E Core Select Register (GPIO128 to 135)
- union GPECSEL2_REG GPECSEL2; // GPIO E Core Select Register (GPIO136 to 143)
- union GPECSEL3_REG GPECSEL3; // GPIO E Core Select Register (GPIO144 to 151)
- union GPECSEL4_REG GPECSEL4; // GPIO E Core Select Register (GPIO152 to 159)
- Uint16 rsvd20[12]; // Reserved
- union GPELOCK_REG GPELOCK; // GPIO E Lock Configuration Register (GPIO128 to 159)
- union GPECR_REG GPECR; // GPIO E Lock Commit Register (GPIO128 to 159)
- union GPFCTRL_REG GPFCTRL; // GPIO F Qualification Sampling Period Control (GPIO160 to 168)
- union GPFQSEL1_REG GPFQSEL1; // GPIO F Qualifier Select 1 Register (GPIO160 to 168)
- Uint16 rsvd21[2]; // Reserved
- union GPFMUX1_REG GPFMUX1; // GPIO F Mux 1 Register (GPIO160 to 168)
- Uint16 rsvd22[2]; // Reserved
- union GPFDIR_REG GPFDIR; // GPIO F Direction Register (GPIO160 to 168)
- union GPFPUD_REG GPFPUD; // GPIO F Pull Up Disable Register (GPIO160 to 168)
- Uint16 rsvd23[2]; // Reserved
- union GPFINV_REG GPFINV; // GPIO F Input Polarity Invert Registers (GPIO160 to 168)
- union GPFODR_REG GPFODR; // GPIO F Open Drain Output Register (GPIO160 to GPIO168)
- Uint16 rsvd24[12]; // Reserved
- union GPFGMUX1_REG GPFGMUX1; // GPIO F Peripheral Group Mux (GPIO160 to 168)
- Uint16 rsvd25[6]; // Reserved
- union GPFCSEL1_REG GPFCSEL1; // GPIO F Core Select Register (GPIO160 to 167)
- union GPFCSEL2_REG GPFCSEL2; // GPIO F Core Select Register (GPIO168)
- Uint16 rsvd26[16]; // Reserved
- union GPFLOCK_REG GPFLOCK; // GPIO F Lock Configuration Register (GPIO160 to 168)
- union GPFCR_REG GPFCR; // GPIO F Lock Commit Register (GPIO160 to 168)
- };
- struct GPADAT_BITS { // bits description
- Uint16 GPIO0:1; // 0 Data Register for this pin
- Uint16 GPIO1:1; // 1 Data Register for this pin
- Uint16 GPIO2:1; // 2 Data Register for this pin
- Uint16 GPIO3:1; // 3 Data Register for this pin
- Uint16 GPIO4:1; // 4 Data Register for this pin
- Uint16 GPIO5:1; // 5 Data Register for this pin
- Uint16 GPIO6:1; // 6 Data Register for this pin
- Uint16 GPIO7:1; // 7 Data Register for this pin
- Uint16 GPIO8:1; // 8 Data Register for this pin
- Uint16 GPIO9:1; // 9 Data Register for this pin
- Uint16 GPIO10:1; // 10 Data Register for this pin
- Uint16 GPIO11:1; // 11 Data Register for this pin
- Uint16 GPIO12:1; // 12 Data Register for this pin
- Uint16 GPIO13:1; // 13 Data Register for this pin
- Uint16 GPIO14:1; // 14 Data Register for this pin
- Uint16 GPIO15:1; // 15 Data Register for this pin
- Uint16 GPIO16:1; // 16 Data Register for this pin
- Uint16 GPIO17:1; // 17 Data Register for this pin
- Uint16 GPIO18:1; // 18 Data Register for this pin
- Uint16 GPIO19:1; // 19 Data Register for this pin
- Uint16 GPIO20:1; // 20 Data Register for this pin
- Uint16 GPIO21:1; // 21 Data Register for this pin
- Uint16 GPIO22:1; // 22 Data Register for this pin
- Uint16 GPIO23:1; // 23 Data Register for this pin
- Uint16 GPIO24:1; // 24 Data Register for this pin
- Uint16 GPIO25:1; // 25 Data Register for this pin
- Uint16 GPIO26:1; // 26 Data Register for this pin
- Uint16 GPIO27:1; // 27 Data Register for this pin
- Uint16 GPIO28:1; // 28 Data Register for this pin
- Uint16 GPIO29:1; // 29 Data Register for this pin
- Uint16 GPIO30:1; // 30 Data Register for this pin
- Uint16 GPIO31:1; // 31 Data Register for this pin
- };
- union GPADAT_REG {
- Uint32 all;
- struct GPADAT_BITS bit;
- };
- struct GPASET_BITS { // bits description
- Uint16 GPIO0:1; // 0 Output Set bit for this pin
- Uint16 GPIO1:1; // 1 Output Set bit for this pin
- Uint16 GPIO2:1; // 2 Output Set bit for this pin
- Uint16 GPIO3:1; // 3 Output Set bit for this pin
- Uint16 GPIO4:1; // 4 Output Set bit for this pin
- Uint16 GPIO5:1; // 5 Output Set bit for this pin
- Uint16 GPIO6:1; // 6 Output Set bit for this pin
- Uint16 GPIO7:1; // 7 Output Set bit for this pin
- Uint16 GPIO8:1; // 8 Output Set bit for this pin
- Uint16 GPIO9:1; // 9 Output Set bit for this pin
- Uint16 GPIO10:1; // 10 Output Set bit for this pin
- Uint16 GPIO11:1; // 11 Output Set bit for this pin
- Uint16 GPIO12:1; // 12 Output Set bit for this pin
- Uint16 GPIO13:1; // 13 Output Set bit for this pin
- Uint16 GPIO14:1; // 14 Output Set bit for this pin
- Uint16 GPIO15:1; // 15 Output Set bit for this pin
- Uint16 GPIO16:1; // 16 Output Set bit for this pin
- Uint16 GPIO17:1; // 17 Output Set bit for this pin
- Uint16 GPIO18:1; // 18 Output Set bit for this pin
- Uint16 GPIO19:1; // 19 Output Set bit for this pin
- Uint16 GPIO20:1; // 20 Output Set bit for this pin
- Uint16 GPIO21:1; // 21 Output Set bit for this pin
- Uint16 GPIO22:1; // 22 Output Set bit for this pin
- Uint16 GPIO23:1; // 23 Output Set bit for this pin
- Uint16 GPIO24:1; // 24 Output Set bit for this pin
- Uint16 GPIO25:1; // 25 Output Set bit for this pin
- Uint16 GPIO26:1; // 26 Output Set bit for this pin
- Uint16 GPIO27:1; // 27 Output Set bit for this pin
- Uint16 GPIO28:1; // 28 Output Set bit for this pin
- Uint16 GPIO29:1; // 29 Output Set bit for this pin
- Uint16 GPIO30:1; // 30 Output Set bit for this pin
- Uint16 GPIO31:1; // 31 Output Set bit for this pin
- };
- union GPASET_REG {
- Uint32 all;
- struct GPASET_BITS bit;
- };
- struct GPACLEAR_BITS { // bits description
- Uint16 GPIO0:1; // 0 Output Clear bit for this pin
- Uint16 GPIO1:1; // 1 Output Clear bit for this pin
- Uint16 GPIO2:1; // 2 Output Clear bit for this pin
- Uint16 GPIO3:1; // 3 Output Clear bit for this pin
- Uint16 GPIO4:1; // 4 Output Clear bit for this pin
- Uint16 GPIO5:1; // 5 Output Clear bit for this pin
- Uint16 GPIO6:1; // 6 Output Clear bit for this pin
- Uint16 GPIO7:1; // 7 Output Clear bit for this pin
- Uint16 GPIO8:1; // 8 Output Clear bit for this pin
- Uint16 GPIO9:1; // 9 Output Clear bit for this pin
- Uint16 GPIO10:1; // 10 Output Clear bit for this pin
- Uint16 GPIO11:1; // 11 Output Clear bit for this pin
- Uint16 GPIO12:1; // 12 Output Clear bit for this pin
- Uint16 GPIO13:1; // 13 Output Clear bit for this pin
- Uint16 GPIO14:1; // 14 Output Clear bit for this pin
- Uint16 GPIO15:1; // 15 Output Clear bit for this pin
- Uint16 GPIO16:1; // 16 Output Clear bit for this pin
- Uint16 GPIO17:1; // 17 Output Clear bit for this pin
- Uint16 GPIO18:1; // 18 Output Clear bit for this pin
- Uint16 GPIO19:1; // 19 Output Clear bit for this pin
- Uint16 GPIO20:1; // 20 Output Clear bit for this pin
- Uint16 GPIO21:1; // 21 Output Clear bit for this pin
- Uint16 GPIO22:1; // 22 Output Clear bit for this pin
- Uint16 GPIO23:1; // 23 Output Clear bit for this pin
- Uint16 GPIO24:1; // 24 Output Clear bit for this pin
- Uint16 GPIO25:1; // 25 Output Clear bit for this pin
- Uint16 GPIO26:1; // 26 Output Clear bit for this pin
- Uint16 GPIO27:1; // 27 Output Clear bit for this pin
- Uint16 GPIO28:1; // 28 Output Clear bit for this pin
- Uint16 GPIO29:1; // 29 Output Clear bit for this pin
- Uint16 GPIO30:1; // 30 Output Clear bit for this pin
- Uint16 GPIO31:1; // 31 Output Clear bit for this pin
- };
- union GPACLEAR_REG {
- Uint32 all;
- struct GPACLEAR_BITS bit;
- };
- struct GPATOGGLE_BITS { // bits description
- Uint16 GPIO0:1; // 0 Output Toggle bit for this pin
- Uint16 GPIO1:1; // 1 Output Toggle bit for this pin
- Uint16 GPIO2:1; // 2 Output Toggle bit for this pin
- Uint16 GPIO3:1; // 3 Output Toggle bit for this pin
- Uint16 GPIO4:1; // 4 Output Toggle bit for this pin
- Uint16 GPIO5:1; // 5 Output Toggle bit for this pin
- Uint16 GPIO6:1; // 6 Output Toggle bit for this pin
- Uint16 GPIO7:1; // 7 Output Toggle bit for this pin
- Uint16 GPIO8:1; // 8 Output Toggle bit for this pin
- Uint16 GPIO9:1; // 9 Output Toggle bit for this pin
- Uint16 GPIO10:1; // 10 Output Toggle bit for this pin
- Uint16 GPIO11:1; // 11 Output Toggle bit for this pin
- Uint16 GPIO12:1; // 12 Output Toggle bit for this pin
- Uint16 GPIO13:1; // 13 Output Toggle bit for this pin
- Uint16 GPIO14:1; // 14 Output Toggle bit for this pin
- Uint16 GPIO15:1; // 15 Output Toggle bit for this pin
- Uint16 GPIO16:1; // 16 Output Toggle bit for this pin
- Uint16 GPIO17:1; // 17 Output Toggle bit for this pin
- Uint16 GPIO18:1; // 18 Output Toggle bit for this pin
- Uint16 GPIO19:1; // 19 Output Toggle bit for this pin
- Uint16 GPIO20:1; // 20 Output Toggle bit for this pin
- Uint16 GPIO21:1; // 21 Output Toggle bit for this pin
- Uint16 GPIO22:1; // 22 Output Toggle bit for this pin
- Uint16 GPIO23:1; // 23 Output Toggle bit for this pin
- Uint16 GPIO24:1; // 24 Output Toggle bit for this pin
- Uint16 GPIO25:1; // 25 Output Toggle bit for this pin
- Uint16 GPIO26:1; // 26 Output Toggle bit for this pin
- Uint16 GPIO27:1; // 27 Output Toggle bit for this pin
- Uint16 GPIO28:1; // 28 Output Toggle bit for this pin
- Uint16 GPIO29:1; // 29 Output Toggle bit for this pin
- Uint16 GPIO30:1; // 30 Output Toggle bit for this pin
- Uint16 GPIO31:1; // 31 Output Toggle bit for this pin
- };
- union GPATOGGLE_REG {
- Uint32 all;
- struct GPATOGGLE_BITS bit;
- };
- struct GPBDAT_BITS { // bits description
- Uint16 GPIO32:1; // 0 Data Register for this pin
- Uint16 GPIO33:1; // 1 Data Register for this pin
- Uint16 GPIO34:1; // 2 Data Register for this pin
- Uint16 GPIO35:1; // 3 Data Register for this pin
- Uint16 GPIO36:1; // 4 Data Register for this pin
- Uint16 GPIO37:1; // 5 Data Register for this pin
- Uint16 GPIO38:1; // 6 Data Register for this pin
- Uint16 GPIO39:1; // 7 Data Register for this pin
- Uint16 GPIO40:1; // 8 Data Register for this pin
- Uint16 GPIO41:1; // 9 Data Register for this pin
- Uint16 GPIO42:1; // 10 Data Register for this pin
- Uint16 GPIO43:1; // 11 Data Register for this pin
- Uint16 GPIO44:1; // 12 Data Register for this pin
- Uint16 GPIO45:1; // 13 Data Register for this pin
- Uint16 GPIO46:1; // 14 Data Register for this pin
- Uint16 GPIO47:1; // 15 Data Register for this pin
- Uint16 GPIO48:1; // 16 Data Register for this pin
- Uint16 GPIO49:1; // 17 Data Register for this pin
- Uint16 GPIO50:1; // 18 Data Register for this pin
- Uint16 GPIO51:1; // 19 Data Register for this pin
- Uint16 GPIO52:1; // 20 Data Register for this pin
- Uint16 GPIO53:1; // 21 Data Register for this pin
- Uint16 GPIO54:1; // 22 Data Register for this pin
- Uint16 GPIO55:1; // 23 Data Register for this pin
- Uint16 GPIO56:1; // 24 Data Register for this pin
- Uint16 GPIO57:1; // 25 Data Register for this pin
- Uint16 GPIO58:1; // 26 Data Register for this pin
- Uint16 GPIO59:1; // 27 Data Register for this pin
- Uint16 GPIO60:1; // 28 Data Register for this pin
- Uint16 GPIO61:1; // 29 Data Register for this pin
- Uint16 GPIO62:1; // 30 Data Register for this pin
- Uint16 GPIO63:1; // 31 Data Register for this pin
- };
- union GPBDAT_REG {
- Uint32 all;
- struct GPBDAT_BITS bit;
- };
- struct GPBSET_BITS { // bits description
- Uint16 GPIO32:1; // 0 Output Set bit for this pin
- Uint16 GPIO33:1; // 1 Output Set bit for this pin
- Uint16 GPIO34:1; // 2 Output Set bit for this pin
- Uint16 GPIO35:1; // 3 Output Set bit for this pin
- Uint16 GPIO36:1; // 4 Output Set bit for this pin
- Uint16 GPIO37:1; // 5 Output Set bit for this pin
- Uint16 GPIO38:1; // 6 Output Set bit for this pin
- Uint16 GPIO39:1; // 7 Output Set bit for this pin
- Uint16 GPIO40:1; // 8 Output Set bit for this pin
- Uint16 GPIO41:1; // 9 Output Set bit for this pin
- Uint16 GPIO42:1; // 10 Output Set bit for this pin
- Uint16 GPIO43:1; // 11 Output Set bit for this pin
- Uint16 GPIO44:1; // 12 Output Set bit for this pin
- Uint16 GPIO45:1; // 13 Output Set bit for this pin
- Uint16 GPIO46:1; // 14 Output Set bit for this pin
- Uint16 GPIO47:1; // 15 Output Set bit for this pin
- Uint16 GPIO48:1; // 16 Output Set bit for this pin
- Uint16 GPIO49:1; // 17 Output Set bit for this pin
- Uint16 GPIO50:1; // 18 Output Set bit for this pin
- Uint16 GPIO51:1; // 19 Output Set bit for this pin
- Uint16 GPIO52:1; // 20 Output Set bit for this pin
- Uint16 GPIO53:1; // 21 Output Set bit for this pin
- Uint16 GPIO54:1; // 22 Output Set bit for this pin
- Uint16 GPIO55:1; // 23 Output Set bit for this pin
- Uint16 GPIO56:1; // 24 Output Set bit for this pin
- Uint16 GPIO57:1; // 25 Output Set bit for this pin
- Uint16 GPIO58:1; // 26 Output Set bit for this pin
- Uint16 GPIO59:1; // 27 Output Set bit for this pin
- Uint16 GPIO60:1; // 28 Output Set bit for this pin
- Uint16 GPIO61:1; // 29 Output Set bit for this pin
- Uint16 GPIO62:1; // 30 Output Set bit for this pin
- Uint16 GPIO63:1; // 31 Output Set bit for this pin
- };
- union GPBSET_REG {
- Uint32 all;
- struct GPBSET_BITS bit;
- };
- struct GPBCLEAR_BITS { // bits description
- Uint16 GPIO32:1; // 0 Output Clear bit for this pin
- Uint16 GPIO33:1; // 1 Output Clear bit for this pin
- Uint16 GPIO34:1; // 2 Output Clear bit for this pin
- Uint16 GPIO35:1; // 3 Output Clear bit for this pin
- Uint16 GPIO36:1; // 4 Output Clear bit for this pin
- Uint16 GPIO37:1; // 5 Output Clear bit for this pin
- Uint16 GPIO38:1; // 6 Output Clear bit for this pin
- Uint16 GPIO39:1; // 7 Output Clear bit for this pin
- Uint16 GPIO40:1; // 8 Output Clear bit for this pin
- Uint16 GPIO41:1; // 9 Output Clear bit for this pin
- Uint16 GPIO42:1; // 10 Output Clear bit for this pin
- Uint16 GPIO43:1; // 11 Output Clear bit for this pin
- Uint16 GPIO44:1; // 12 Output Clear bit for this pin
- Uint16 GPIO45:1; // 13 Output Clear bit for this pin
- Uint16 GPIO46:1; // 14 Output Clear bit for this pin
- Uint16 GPIO47:1; // 15 Output Clear bit for this pin
- Uint16 GPIO48:1; // 16 Output Clear bit for this pin
- Uint16 GPIO49:1; // 17 Output Clear bit for this pin
- Uint16 GPIO50:1; // 18 Output Clear bit for this pin
- Uint16 GPIO51:1; // 19 Output Clear bit for this pin
- Uint16 GPIO52:1; // 20 Output Clear bit for this pin
- Uint16 GPIO53:1; // 21 Output Clear bit for this pin
- Uint16 GPIO54:1; // 22 Output Clear bit for this pin
- Uint16 GPIO55:1; // 23 Output Clear bit for this pin
- Uint16 GPIO56:1; // 24 Output Clear bit for this pin
- Uint16 GPIO57:1; // 25 Output Clear bit for this pin
- Uint16 GPIO58:1; // 26 Output Clear bit for this pin
- Uint16 GPIO59:1; // 27 Output Clear bit for this pin
- Uint16 GPIO60:1; // 28 Output Clear bit for this pin
- Uint16 GPIO61:1; // 29 Output Clear bit for this pin
- Uint16 GPIO62:1; // 30 Output Clear bit for this pin
- Uint16 GPIO63:1; // 31 Output Clear bit for this pin
- };
- union GPBCLEAR_REG {
- Uint32 all;
- struct GPBCLEAR_BITS bit;
- };
- struct GPBTOGGLE_BITS { // bits description
- Uint16 GPIO32:1; // 0 Output Toggle bit for this pin
- Uint16 GPIO33:1; // 1 Output Toggle bit for this pin
- Uint16 GPIO34:1; // 2 Output Toggle bit for this pin
- Uint16 GPIO35:1; // 3 Output Toggle bit for this pin
- Uint16 GPIO36:1; // 4 Output Toggle bit for this pin
- Uint16 GPIO37:1; // 5 Output Toggle bit for this pin
- Uint16 GPIO38:1; // 6 Output Toggle bit for this pin
- Uint16 GPIO39:1; // 7 Output Toggle bit for this pin
- Uint16 GPIO40:1; // 8 Output Toggle bit for this pin
- Uint16 GPIO41:1; // 9 Output Toggle bit for this pin
- Uint16 GPIO42:1; // 10 Output Toggle bit for this pin
- Uint16 GPIO43:1; // 11 Output Toggle bit for this pin
- Uint16 GPIO44:1; // 12 Output Toggle bit for this pin
- Uint16 GPIO45:1; // 13 Output Toggle bit for this pin
- Uint16 GPIO46:1; // 14 Output Toggle bit for this pin
- Uint16 GPIO47:1; // 15 Output Toggle bit for this pin
- Uint16 GPIO48:1; // 16 Output Toggle bit for this pin
- Uint16 GPIO49:1; // 17 Output Toggle bit for this pin
- Uint16 GPIO50:1; // 18 Output Toggle bit for this pin
- Uint16 GPIO51:1; // 19 Output Toggle bit for this pin
- Uint16 GPIO52:1; // 20 Output Toggle bit for this pin
- Uint16 GPIO53:1; // 21 Output Toggle bit for this pin
- Uint16 GPIO54:1; // 22 Output Toggle bit for this pin
- Uint16 GPIO55:1; // 23 Output Toggle bit for this pin
- Uint16 GPIO56:1; // 24 Output Toggle bit for this pin
- Uint16 GPIO57:1; // 25 Output Toggle bit for this pin
- Uint16 GPIO58:1; // 26 Output Toggle bit for this pin
- Uint16 GPIO59:1; // 27 Output Toggle bit for this pin
- Uint16 GPIO60:1; // 28 Output Toggle bit for this pin
- Uint16 GPIO61:1; // 29 Output Toggle bit for this pin
- Uint16 GPIO62:1; // 30 Output Toggle bit for this pin
- Uint16 GPIO63:1; // 31 Output Toggle bit for this pin
- };
- union GPBTOGGLE_REG {
- Uint32 all;
- struct GPBTOGGLE_BITS bit;
- };
- struct GPCDAT_BITS { // bits description
- Uint16 GPIO64:1; // 0 Data Register for this pin
- Uint16 GPIO65:1; // 1 Data Register for this pin
- Uint16 GPIO66:1; // 2 Data Register for this pin
- Uint16 GPIO67:1; // 3 Data Register for this pin
- Uint16 GPIO68:1; // 4 Data Register for this pin
- Uint16 GPIO69:1; // 5 Data Register for this pin
- Uint16 GPIO70:1; // 6 Data Register for this pin
- Uint16 GPIO71:1; // 7 Data Register for this pin
- Uint16 GPIO72:1; // 8 Data Register for this pin
- Uint16 GPIO73:1; // 9 Data Register for this pin
- Uint16 GPIO74:1; // 10 Data Register for this pin
- Uint16 GPIO75:1; // 11 Data Register for this pin
- Uint16 GPIO76:1; // 12 Data Register for this pin
- Uint16 GPIO77:1; // 13 Data Register for this pin
- Uint16 GPIO78:1; // 14 Data Register for this pin
- Uint16 GPIO79:1; // 15 Data Register for this pin
- Uint16 GPIO80:1; // 16 Data Register for this pin
- Uint16 GPIO81:1; // 17 Data Register for this pin
- Uint16 GPIO82:1; // 18 Data Register for this pin
- Uint16 GPIO83:1; // 19 Data Register for this pin
- Uint16 GPIO84:1; // 20 Data Register for this pin
- Uint16 GPIO85:1; // 21 Data Register for this pin
- Uint16 GPIO86:1; // 22 Data Register for this pin
- Uint16 GPIO87:1; // 23 Data Register for this pin
- Uint16 GPIO88:1; // 24 Data Register for this pin
- Uint16 GPIO89:1; // 25 Data Register for this pin
- Uint16 GPIO90:1; // 26 Data Register for this pin
- Uint16 GPIO91:1; // 27 Data Register for this pin
- Uint16 GPIO92:1; // 28 Data Register for this pin
- Uint16 GPIO93:1; // 29 Data Register for this pin
- Uint16 GPIO94:1; // 30 Data Register for this pin
- Uint16 GPIO95:1; // 31 Data Register for this pin
- };
- union GPCDAT_REG {
- Uint32 all;
- struct GPCDAT_BITS bit;
- };
- struct GPCSET_BITS { // bits description
- Uint16 GPIO64:1; // 0 Output Set bit for this pin
- Uint16 GPIO65:1; // 1 Output Set bit for this pin
- Uint16 GPIO66:1; // 2 Output Set bit for this pin
- Uint16 GPIO67:1; // 3 Output Set bit for this pin
- Uint16 GPIO68:1; // 4 Output Set bit for this pin
- Uint16 GPIO69:1; // 5 Output Set bit for this pin
- Uint16 GPIO70:1; // 6 Output Set bit for this pin
- Uint16 GPIO71:1; // 7 Output Set bit for this pin
- Uint16 GPIO72:1; // 8 Output Set bit for this pin
- Uint16 GPIO73:1; // 9 Output Set bit for this pin
- Uint16 GPIO74:1; // 10 Output Set bit for this pin
- Uint16 GPIO75:1; // 11 Output Set bit for this pin
- Uint16 GPIO76:1; // 12 Output Set bit for this pin
- Uint16 GPIO77:1; // 13 Output Set bit for this pin
- Uint16 GPIO78:1; // 14 Output Set bit for this pin
- Uint16 GPIO79:1; // 15 Output Set bit for this pin
- Uint16 GPIO80:1; // 16 Output Set bit for this pin
- Uint16 GPIO81:1; // 17 Output Set bit for this pin
- Uint16 GPIO82:1; // 18 Output Set bit for this pin
- Uint16 GPIO83:1; // 19 Output Set bit for this pin
- Uint16 GPIO84:1; // 20 Output Set bit for this pin
- Uint16 GPIO85:1; // 21 Output Set bit for this pin
- Uint16 GPIO86:1; // 22 Output Set bit for this pin
- Uint16 GPIO87:1; // 23 Output Set bit for this pin
- Uint16 GPIO88:1; // 24 Output Set bit for this pin
- Uint16 GPIO89:1; // 25 Output Set bit for this pin
- Uint16 GPIO90:1; // 26 Output Set bit for this pin
- Uint16 GPIO91:1; // 27 Output Set bit for this pin
- Uint16 GPIO92:1; // 28 Output Set bit for this pin
- Uint16 GPIO93:1; // 29 Output Set bit for this pin
- Uint16 GPIO94:1; // 30 Output Set bit for this pin
- Uint16 GPIO95:1; // 31 Output Set bit for this pin
- };
- union GPCSET_REG {
- Uint32 all;
- struct GPCSET_BITS bit;
- };
- struct GPCCLEAR_BITS { // bits description
- Uint16 GPIO64:1; // 0 Output Clear bit for this pin
- Uint16 GPIO65:1; // 1 Output Clear bit for this pin
- Uint16 GPIO66:1; // 2 Output Clear bit for this pin
- Uint16 GPIO67:1; // 3 Output Clear bit for this pin
- Uint16 GPIO68:1; // 4 Output Clear bit for this pin
- Uint16 GPIO69:1; // 5 Output Clear bit for this pin
- Uint16 GPIO70:1; // 6 Output Clear bit for this pin
- Uint16 GPIO71:1; // 7 Output Clear bit for this pin
- Uint16 GPIO72:1; // 8 Output Clear bit for this pin
- Uint16 GPIO73:1; // 9 Output Clear bit for this pin
- Uint16 GPIO74:1; // 10 Output Clear bit for this pin
- Uint16 GPIO75:1; // 11 Output Clear bit for this pin
- Uint16 GPIO76:1; // 12 Output Clear bit for this pin
- Uint16 GPIO77:1; // 13 Output Clear bit for this pin
- Uint16 GPIO78:1; // 14 Output Clear bit for this pin
- Uint16 GPIO79:1; // 15 Output Clear bit for this pin
- Uint16 GPIO80:1; // 16 Output Clear bit for this pin
- Uint16 GPIO81:1; // 17 Output Clear bit for this pin
- Uint16 GPIO82:1; // 18 Output Clear bit for this pin
- Uint16 GPIO83:1; // 19 Output Clear bit for this pin
- Uint16 GPIO84:1; // 20 Output Clear bit for this pin
- Uint16 GPIO85:1; // 21 Output Clear bit for this pin
- Uint16 GPIO86:1; // 22 Output Clear bit for this pin
- Uint16 GPIO87:1; // 23 Output Clear bit for this pin
- Uint16 GPIO88:1; // 24 Output Clear bit for this pin
- Uint16 GPIO89:1; // 25 Output Clear bit for this pin
- Uint16 GPIO90:1; // 26 Output Clear bit for this pin
- Uint16 GPIO91:1; // 27 Output Clear bit for this pin
- Uint16 GPIO92:1; // 28 Output Clear bit for this pin
- Uint16 GPIO93:1; // 29 Output Clear bit for this pin
- Uint16 GPIO94:1; // 30 Output Clear bit for this pin
- Uint16 GPIO95:1; // 31 Output Clear bit for this pin
- };
- union GPCCLEAR_REG {
- Uint32 all;
- struct GPCCLEAR_BITS bit;
- };
- struct GPCTOGGLE_BITS { // bits description
- Uint16 GPIO64:1; // 0 Output Toggle bit for this pin
- Uint16 GPIO65:1; // 1 Output Toggle bit for this pin
- Uint16 GPIO66:1; // 2 Output Toggle bit for this pin
- Uint16 GPIO67:1; // 3 Output Toggle bit for this pin
- Uint16 GPIO68:1; // 4 Output Toggle bit for this pin
- Uint16 GPIO69:1; // 5 Output Toggle bit for this pin
- Uint16 GPIO70:1; // 6 Output Toggle bit for this pin
- Uint16 GPIO71:1; // 7 Output Toggle bit for this pin
- Uint16 GPIO72:1; // 8 Output Toggle bit for this pin
- Uint16 GPIO73:1; // 9 Output Toggle bit for this pin
- Uint16 GPIO74:1; // 10 Output Toggle bit for this pin
- Uint16 GPIO75:1; // 11 Output Toggle bit for this pin
- Uint16 GPIO76:1; // 12 Output Toggle bit for this pin
- Uint16 GPIO77:1; // 13 Output Toggle bit for this pin
- Uint16 GPIO78:1; // 14 Output Toggle bit for this pin
- Uint16 GPIO79:1; // 15 Output Toggle bit for this pin
- Uint16 GPIO80:1; // 16 Output Toggle bit for this pin
- Uint16 GPIO81:1; // 17 Output Toggle bit for this pin
- Uint16 GPIO82:1; // 18 Output Toggle bit for this pin
- Uint16 GPIO83:1; // 19 Output Toggle bit for this pin
- Uint16 GPIO84:1; // 20 Output Toggle bit for this pin
- Uint16 GPIO85:1; // 21 Output Toggle bit for this pin
- Uint16 GPIO86:1; // 22 Output Toggle bit for this pin
- Uint16 GPIO87:1; // 23 Output Toggle bit for this pin
- Uint16 GPIO88:1; // 24 Output Toggle bit for this pin
- Uint16 GPIO89:1; // 25 Output Toggle bit for this pin
- Uint16 GPIO90:1; // 26 Output Toggle bit for this pin
- Uint16 GPIO91:1; // 27 Output Toggle bit for this pin
- Uint16 GPIO92:1; // 28 Output Toggle bit for this pin
- Uint16 GPIO93:1; // 29 Output Toggle bit for this pin
- Uint16 GPIO94:1; // 30 Output Toggle bit for this pin
- Uint16 GPIO95:1; // 31 Output Toggle bit for this pin
- };
- union GPCTOGGLE_REG {
- Uint32 all;
- struct GPCTOGGLE_BITS bit;
- };
- struct GPDDAT_BITS { // bits description
- Uint16 GPIO96:1; // 0 Data Register for this pin
- Uint16 GPIO97:1; // 1 Data Register for this pin
- Uint16 GPIO98:1; // 2 Data Register for this pin
- Uint16 GPIO99:1; // 3 Data Register for this pin
- Uint16 GPIO100:1; // 4 Data Register for this pin
- Uint16 GPIO101:1; // 5 Data Register for this pin
- Uint16 GPIO102:1; // 6 Data Register for this pin
- Uint16 GPIO103:1; // 7 Data Register for this pin
- Uint16 GPIO104:1; // 8 Data Register for this pin
- Uint16 GPIO105:1; // 9 Data Register for this pin
- Uint16 GPIO106:1; // 10 Data Register for this pin
- Uint16 GPIO107:1; // 11 Data Register for this pin
- Uint16 GPIO108:1; // 12 Data Register for this pin
- Uint16 GPIO109:1; // 13 Data Register for this pin
- Uint16 GPIO110:1; // 14 Data Register for this pin
- Uint16 GPIO111:1; // 15 Data Register for this pin
- Uint16 GPIO112:1; // 16 Data Register for this pin
- Uint16 GPIO113:1; // 17 Data Register for this pin
- Uint16 GPIO114:1; // 18 Data Register for this pin
- Uint16 GPIO115:1; // 19 Data Register for this pin
- Uint16 GPIO116:1; // 20 Data Register for this pin
- Uint16 GPIO117:1; // 21 Data Register for this pin
- Uint16 GPIO118:1; // 22 Data Register for this pin
- Uint16 GPIO119:1; // 23 Data Register for this pin
- Uint16 GPIO120:1; // 24 Data Register for this pin
- Uint16 GPIO121:1; // 25 Data Register for this pin
- Uint16 GPIO122:1; // 26 Data Register for this pin
- Uint16 GPIO123:1; // 27 Data Register for this pin
- Uint16 GPIO124:1; // 28 Data Register for this pin
- Uint16 GPIO125:1; // 29 Data Register for this pin
- Uint16 GPIO126:1; // 30 Data Register for this pin
- Uint16 GPIO127:1; // 31 Data Register for this pin
- };
- union GPDDAT_REG {
- Uint32 all;
- struct GPDDAT_BITS bit;
- };
- struct GPDSET_BITS { // bits description
- Uint16 GPIO96:1; // 0 Output Set bit for this pin
- Uint16 GPIO97:1; // 1 Output Set bit for this pin
- Uint16 GPIO98:1; // 2 Output Set bit for this pin
- Uint16 GPIO99:1; // 3 Output Set bit for this pin
- Uint16 GPIO100:1; // 4 Output Set bit for this pin
- Uint16 GPIO101:1; // 5 Output Set bit for this pin
- Uint16 GPIO102:1; // 6 Output Set bit for this pin
- Uint16 GPIO103:1; // 7 Output Set bit for this pin
- Uint16 GPIO104:1; // 8 Output Set bit for this pin
- Uint16 GPIO105:1; // 9 Output Set bit for this pin
- Uint16 GPIO106:1; // 10 Output Set bit for this pin
- Uint16 GPIO107:1; // 11 Output Set bit for this pin
- Uint16 GPIO108:1; // 12 Output Set bit for this pin
- Uint16 GPIO109:1; // 13 Output Set bit for this pin
- Uint16 GPIO110:1; // 14 Output Set bit for this pin
- Uint16 GPIO111:1; // 15 Output Set bit for this pin
- Uint16 GPIO112:1; // 16 Output Set bit for this pin
- Uint16 GPIO113:1; // 17 Output Set bit for this pin
- Uint16 GPIO114:1; // 18 Output Set bit for this pin
- Uint16 GPIO115:1; // 19 Output Set bit for this pin
- Uint16 GPIO116:1; // 20 Output Set bit for this pin
- Uint16 GPIO117:1; // 21 Output Set bit for this pin
- Uint16 GPIO118:1; // 22 Output Set bit for this pin
- Uint16 GPIO119:1; // 23 Output Set bit for this pin
- Uint16 GPIO120:1; // 24 Output Set bit for this pin
- Uint16 GPIO121:1; // 25 Output Set bit for this pin
- Uint16 GPIO122:1; // 26 Output Set bit for this pin
- Uint16 GPIO123:1; // 27 Output Set bit for this pin
- Uint16 GPIO124:1; // 28 Output Set bit for this pin
- Uint16 GPIO125:1; // 29 Output Set bit for this pin
- Uint16 GPIO126:1; // 30 Output Set bit for this pin
- Uint16 GPIO127:1; // 31 Output Set bit for this pin
- };
- union GPDSET_REG {
- Uint32 all;
- struct GPDSET_BITS bit;
- };
- struct GPDCLEAR_BITS { // bits description
- Uint16 GPIO96:1; // 0 Output Clear bit for this pin
- Uint16 GPIO97:1; // 1 Output Clear bit for this pin
- Uint16 GPIO98:1; // 2 Output Clear bit for this pin
- Uint16 GPIO99:1; // 3 Output Clear bit for this pin
- Uint16 GPIO100:1; // 4 Output Clear bit for this pin
- Uint16 GPIO101:1; // 5 Output Clear bit for this pin
- Uint16 GPIO102:1; // 6 Output Clear bit for this pin
- Uint16 GPIO103:1; // 7 Output Clear bit for this pin
- Uint16 GPIO104:1; // 8 Output Clear bit for this pin
- Uint16 GPIO105:1; // 9 Output Clear bit for this pin
- Uint16 GPIO106:1; // 10 Output Clear bit for this pin
- Uint16 GPIO107:1; // 11 Output Clear bit for this pin
- Uint16 GPIO108:1; // 12 Output Clear bit for this pin
- Uint16 GPIO109:1; // 13 Output Clear bit for this pin
- Uint16 GPIO110:1; // 14 Output Clear bit for this pin
- Uint16 GPIO111:1; // 15 Output Clear bit for this pin
- Uint16 GPIO112:1; // 16 Output Clear bit for this pin
- Uint16 GPIO113:1; // 17 Output Clear bit for this pin
- Uint16 GPIO114:1; // 18 Output Clear bit for this pin
- Uint16 GPIO115:1; // 19 Output Clear bit for this pin
- Uint16 GPIO116:1; // 20 Output Clear bit for this pin
- Uint16 GPIO117:1; // 21 Output Clear bit for this pin
- Uint16 GPIO118:1; // 22 Output Clear bit for this pin
- Uint16 GPIO119:1; // 23 Output Clear bit for this pin
- Uint16 GPIO120:1; // 24 Output Clear bit for this pin
- Uint16 GPIO121:1; // 25 Output Clear bit for this pin
- Uint16 GPIO122:1; // 26 Output Clear bit for this pin
- Uint16 GPIO123:1; // 27 Output Clear bit for this pin
- Uint16 GPIO124:1; // 28 Output Clear bit for this pin
- Uint16 GPIO125:1; // 29 Output Clear bit for this pin
- Uint16 GPIO126:1; // 30 Output Clear bit for this pin
- Uint16 GPIO127:1; // 31 Output Clear bit for this pin
- };
- union GPDCLEAR_REG {
- Uint32 all;
- struct GPDCLEAR_BITS bit;
- };
- struct GPDTOGGLE_BITS { // bits description
- Uint16 GPIO96:1; // 0 Output Toggle bit for this pin
- Uint16 GPIO97:1; // 1 Output Toggle bit for this pin
- Uint16 GPIO98:1; // 2 Output Toggle bit for this pin
- Uint16 GPIO99:1; // 3 Output Toggle bit for this pin
- Uint16 GPIO100:1; // 4 Output Toggle bit for this pin
- Uint16 GPIO101:1; // 5 Output Toggle bit for this pin
- Uint16 GPIO102:1; // 6 Output Toggle bit for this pin
- Uint16 GPIO103:1; // 7 Output Toggle bit for this pin
- Uint16 GPIO104:1; // 8 Output Toggle bit for this pin
- Uint16 GPIO105:1; // 9 Output Toggle bit for this pin
- Uint16 GPIO106:1; // 10 Output Toggle bit for this pin
- Uint16 GPIO107:1; // 11 Output Toggle bit for this pin
- Uint16 GPIO108:1; // 12 Output Toggle bit for this pin
- Uint16 GPIO109:1; // 13 Output Toggle bit for this pin
- Uint16 GPIO110:1; // 14 Output Toggle bit for this pin
- Uint16 GPIO111:1; // 15 Output Toggle bit for this pin
- Uint16 GPIO112:1; // 16 Output Toggle bit for this pin
- Uint16 GPIO113:1; // 17 Output Toggle bit for this pin
- Uint16 GPIO114:1; // 18 Output Toggle bit for this pin
- Uint16 GPIO115:1; // 19 Output Toggle bit for this pin
- Uint16 GPIO116:1; // 20 Output Toggle bit for this pin
- Uint16 GPIO117:1; // 21 Output Toggle bit for this pin
- Uint16 GPIO118:1; // 22 Output Toggle bit for this pin
- Uint16 GPIO119:1; // 23 Output Toggle bit for this pin
- Uint16 GPIO120:1; // 24 Output Toggle bit for this pin
- Uint16 GPIO121:1; // 25 Output Toggle bit for this pin
- Uint16 GPIO122:1; // 26 Output Toggle bit for this pin
- Uint16 GPIO123:1; // 27 Output Toggle bit for this pin
- Uint16 GPIO124:1; // 28 Output Toggle bit for this pin
- Uint16 GPIO125:1; // 29 Output Toggle bit for this pin
- Uint16 GPIO126:1; // 30 Output Toggle bit for this pin
- Uint16 GPIO127:1; // 31 Output Toggle bit for this pin
- };
- union GPDTOGGLE_REG {
- Uint32 all;
- struct GPDTOGGLE_BITS bit;
- };
- struct GPEDAT_BITS { // bits description
- Uint16 GPIO128:1; // 0 Data Register for this pin
- Uint16 GPIO129:1; // 1 Data Register for this pin
- Uint16 GPIO130:1; // 2 Data Register for this pin
- Uint16 GPIO131:1; // 3 Data Register for this pin
- Uint16 GPIO132:1; // 4 Data Register for this pin
- Uint16 GPIO133:1; // 5 Data Register for this pin
- Uint16 GPIO134:1; // 6 Data Register for this pin
- Uint16 GPIO135:1; // 7 Data Register for this pin
- Uint16 GPIO136:1; // 8 Data Register for this pin
- Uint16 GPIO137:1; // 9 Data Register for this pin
- Uint16 GPIO138:1; // 10 Data Register for this pin
- Uint16 GPIO139:1; // 11 Data Register for this pin
- Uint16 GPIO140:1; // 12 Data Register for this pin
- Uint16 GPIO141:1; // 13 Data Register for this pin
- Uint16 GPIO142:1; // 14 Data Register for this pin
- Uint16 GPIO143:1; // 15 Data Register for this pin
- Uint16 GPIO144:1; // 16 Data Register for this pin
- Uint16 GPIO145:1; // 17 Data Register for this pin
- Uint16 GPIO146:1; // 18 Data Register for this pin
- Uint16 GPIO147:1; // 19 Data Register for this pin
- Uint16 GPIO148:1; // 20 Data Register for this pin
- Uint16 GPIO149:1; // 21 Data Register for this pin
- Uint16 GPIO150:1; // 22 Data Register for this pin
- Uint16 GPIO151:1; // 23 Data Register for this pin
- Uint16 GPIO152:1; // 24 Data Register for this pin
- Uint16 GPIO153:1; // 25 Data Register for this pin
- Uint16 GPIO154:1; // 26 Data Register for this pin
- Uint16 GPIO155:1; // 27 Data Register for this pin
- Uint16 GPIO156:1; // 28 Data Register for this pin
- Uint16 GPIO157:1; // 29 Data Register for this pin
- Uint16 GPIO158:1; // 30 Data Register for this pin
- Uint16 GPIO159:1; // 31 Data Register for this pin
- };
- union GPEDAT_REG {
- Uint32 all;
- struct GPEDAT_BITS bit;
- };
- struct GPESET_BITS { // bits description
- Uint16 GPIO128:1; // 0 Output Set bit for this pin
- Uint16 GPIO129:1; // 1 Output Set bit for this pin
- Uint16 GPIO130:1; // 2 Output Set bit for this pin
- Uint16 GPIO131:1; // 3 Output Set bit for this pin
- Uint16 GPIO132:1; // 4 Output Set bit for this pin
- Uint16 GPIO133:1; // 5 Output Set bit for this pin
- Uint16 GPIO134:1; // 6 Output Set bit for this pin
- Uint16 GPIO135:1; // 7 Output Set bit for this pin
- Uint16 GPIO136:1; // 8 Output Set bit for this pin
- Uint16 GPIO137:1; // 9 Output Set bit for this pin
- Uint16 GPIO138:1; // 10 Output Set bit for this pin
- Uint16 GPIO139:1; // 11 Output Set bit for this pin
- Uint16 GPIO140:1; // 12 Output Set bit for this pin
- Uint16 GPIO141:1; // 13 Output Set bit for this pin
- Uint16 GPIO142:1; // 14 Output Set bit for this pin
- Uint16 GPIO143:1; // 15 Output Set bit for this pin
- Uint16 GPIO144:1; // 16 Output Set bit for this pin
- Uint16 GPIO145:1; // 17 Output Set bit for this pin
- Uint16 GPIO146:1; // 18 Output Set bit for this pin
- Uint16 GPIO147:1; // 19 Output Set bit for this pin
- Uint16 GPIO148:1; // 20 Output Set bit for this pin
- Uint16 GPIO149:1; // 21 Output Set bit for this pin
- Uint16 GPIO150:1; // 22 Output Set bit for this pin
- Uint16 GPIO151:1; // 23 Output Set bit for this pin
- Uint16 GPIO152:1; // 24 Output Set bit for this pin
- Uint16 GPIO153:1; // 25 Output Set bit for this pin
- Uint16 GPIO154:1; // 26 Output Set bit for this pin
- Uint16 GPIO155:1; // 27 Output Set bit for this pin
- Uint16 GPIO156:1; // 28 Output Set bit for this pin
- Uint16 GPIO157:1; // 29 Output Set bit for this pin
- Uint16 GPIO158:1; // 30 Output Set bit for this pin
- Uint16 GPIO159:1; // 31 Output Set bit for this pin
- };
- union GPESET_REG {
- Uint32 all;
- struct GPESET_BITS bit;
- };
- struct GPECLEAR_BITS { // bits description
- Uint16 GPIO128:1; // 0 Output Clear bit for this pin
- Uint16 GPIO129:1; // 1 Output Clear bit for this pin
- Uint16 GPIO130:1; // 2 Output Clear bit for this pin
- Uint16 GPIO131:1; // 3 Output Clear bit for this pin
- Uint16 GPIO132:1; // 4 Output Clear bit for this pin
- Uint16 GPIO133:1; // 5 Output Clear bit for this pin
- Uint16 GPIO134:1; // 6 Output Clear bit for this pin
- Uint16 GPIO135:1; // 7 Output Clear bit for this pin
- Uint16 GPIO136:1; // 8 Output Clear bit for this pin
- Uint16 GPIO137:1; // 9 Output Clear bit for this pin
- Uint16 GPIO138:1; // 10 Output Clear bit for this pin
- Uint16 GPIO139:1; // 11 Output Clear bit for this pin
- Uint16 GPIO140:1; // 12 Output Clear bit for this pin
- Uint16 GPIO141:1; // 13 Output Clear bit for this pin
- Uint16 GPIO142:1; // 14 Output Clear bit for this pin
- Uint16 GPIO143:1; // 15 Output Clear bit for this pin
- Uint16 GPIO144:1; // 16 Output Clear bit for this pin
- Uint16 GPIO145:1; // 17 Output Clear bit for this pin
- Uint16 GPIO146:1; // 18 Output Clear bit for this pin
- Uint16 GPIO147:1; // 19 Output Clear bit for this pin
- Uint16 GPIO148:1; // 20 Output Clear bit for this pin
- Uint16 GPIO149:1; // 21 Output Clear bit for this pin
- Uint16 GPIO150:1; // 22 Output Clear bit for this pin
- Uint16 GPIO151:1; // 23 Output Clear bit for this pin
- Uint16 GPIO152:1; // 24 Output Clear bit for this pin
- Uint16 GPIO153:1; // 25 Output Clear bit for this pin
- Uint16 GPIO154:1; // 26 Output Clear bit for this pin
- Uint16 GPIO155:1; // 27 Output Clear bit for this pin
- Uint16 GPIO156:1; // 28 Output Clear bit for this pin
- Uint16 GPIO157:1; // 29 Output Clear bit for this pin
- Uint16 GPIO158:1; // 30 Output Clear bit for this pin
- Uint16 GPIO159:1; // 31 Output Clear bit for this pin
- };
- union GPECLEAR_REG {
- Uint32 all;
- struct GPECLEAR_BITS bit;
- };
- struct GPETOGGLE_BITS { // bits description
- Uint16 GPIO128:1; // 0 Output Toggle bit for this pin
- Uint16 GPIO129:1; // 1 Output Toggle bit for this pin
- Uint16 GPIO130:1; // 2 Output Toggle bit for this pin
- Uint16 GPIO131:1; // 3 Output Toggle bit for this pin
- Uint16 GPIO132:1; // 4 Output Toggle bit for this pin
- Uint16 GPIO133:1; // 5 Output Toggle bit for this pin
- Uint16 GPIO134:1; // 6 Output Toggle bit for this pin
- Uint16 GPIO135:1; // 7 Output Toggle bit for this pin
- Uint16 GPIO136:1; // 8 Output Toggle bit for this pin
- Uint16 GPIO137:1; // 9 Output Toggle bit for this pin
- Uint16 GPIO138:1; // 10 Output Toggle bit for this pin
- Uint16 GPIO139:1; // 11 Output Toggle bit for this pin
- Uint16 GPIO140:1; // 12 Output Toggle bit for this pin
- Uint16 GPIO141:1; // 13 Output Toggle bit for this pin
- Uint16 GPIO142:1; // 14 Output Toggle bit for this pin
- Uint16 GPIO143:1; // 15 Output Toggle bit for this pin
- Uint16 GPIO144:1; // 16 Output Toggle bit for this pin
- Uint16 GPIO145:1; // 17 Output Toggle bit for this pin
- Uint16 GPIO146:1; // 18 Output Toggle bit for this pin
- Uint16 GPIO147:1; // 19 Output Toggle bit for this pin
- Uint16 GPIO148:1; // 20 Output Toggle bit for this pin
- Uint16 GPIO149:1; // 21 Output Toggle bit for this pin
- Uint16 GPIO150:1; // 22 Output Toggle bit for this pin
- Uint16 GPIO151:1; // 23 Output Toggle bit for this pin
- Uint16 GPIO152:1; // 24 Output Toggle bit for this pin
- Uint16 GPIO153:1; // 25 Output Toggle bit for this pin
- Uint16 GPIO154:1; // 26 Output Toggle bit for this pin
- Uint16 GPIO155:1; // 27 Output Toggle bit for this pin
- Uint16 GPIO156:1; // 28 Output Toggle bit for this pin
- Uint16 GPIO157:1; // 29 Output Toggle bit for this pin
- Uint16 GPIO158:1; // 30 Output Toggle bit for this pin
- Uint16 GPIO159:1; // 31 Output Toggle bit for this pin
- };
- union GPETOGGLE_REG {
- Uint32 all;
- struct GPETOGGLE_BITS bit;
- };
- struct GPFDAT_BITS { // bits description
- Uint16 GPIO160:1; // 0 Data Register for this pin
- Uint16 GPIO161:1; // 1 Data Register for this pin
- Uint16 GPIO162:1; // 2 Data Register for this pin
- Uint16 GPIO163:1; // 3 Data Register for this pin
- Uint16 GPIO164:1; // 4 Data Register for this pin
- Uint16 GPIO165:1; // 5 Data Register for this pin
- Uint16 GPIO166:1; // 6 Data Register for this pin
- Uint16 GPIO167:1; // 7 Data Register for this pin
- Uint16 GPIO168:1; // 8 Data Register for this pin
- Uint16 rsvd1:1; // 9 Reserved
- Uint16 rsvd2:1; // 10 Reserved
- Uint16 rsvd3:1; // 11 Reserved
- Uint16 rsvd4:1; // 12 Reserved
- Uint16 rsvd5:1; // 13 Reserved
- Uint16 rsvd6:1; // 14 Reserved
- Uint16 rsvd7:1; // 15 Reserved
- Uint16 rsvd8:1; // 16 Reserved
- Uint16 rsvd9:1; // 17 Reserved
- Uint16 rsvd10:1; // 18 Reserved
- Uint16 rsvd11:1; // 19 Reserved
- Uint16 rsvd12:1; // 20 Reserved
- Uint16 rsvd13:1; // 21 Reserved
- Uint16 rsvd14:1; // 22 Reserved
- Uint16 rsvd15:1; // 23 Reserved
- Uint16 rsvd16:1; // 24 Reserved
- Uint16 rsvd17:1; // 25 Reserved
- Uint16 rsvd18:1; // 26 Reserved
- Uint16 rsvd19:1; // 27 Reserved
- Uint16 rsvd20:1; // 28 Reserved
- Uint16 rsvd21:1; // 29 Reserved
- Uint16 rsvd22:1; // 30 Reserved
- Uint16 rsvd23:1; // 31 Reserved
- };
- union GPFDAT_REG {
- Uint32 all;
- struct GPFDAT_BITS bit;
- };
- struct GPFSET_BITS { // bits description
- Uint16 GPIO160:1; // 0 Output Set bit for this pin
- Uint16 GPIO161:1; // 1 Output Set bit for this pin
- Uint16 GPIO162:1; // 2 Output Set bit for this pin
- Uint16 GPIO163:1; // 3 Output Set bit for this pin
- Uint16 GPIO164:1; // 4 Output Set bit for this pin
- Uint16 GPIO165:1; // 5 Output Set bit for this pin
- Uint16 GPIO166:1; // 6 Output Set bit for this pin
- Uint16 GPIO167:1; // 7 Output Set bit for this pin
- Uint16 GPIO168:1; // 8 Output Set bit for this pin
- Uint16 rsvd1:1; // 9 Reserved
- Uint16 rsvd2:1; // 10 Reserved
- Uint16 rsvd3:1; // 11 Reserved
- Uint16 rsvd4:1; // 12 Reserved
- Uint16 rsvd5:1; // 13 Reserved
- Uint16 rsvd6:1; // 14 Reserved
- Uint16 rsvd7:1; // 15 Reserved
- Uint16 rsvd8:1; // 16 Reserved
- Uint16 rsvd9:1; // 17 Reserved
- Uint16 rsvd10:1; // 18 Reserved
- Uint16 rsvd11:1; // 19 Reserved
- Uint16 rsvd12:1; // 20 Reserved
- Uint16 rsvd13:1; // 21 Reserved
- Uint16 rsvd14:1; // 22 Reserved
- Uint16 rsvd15:1; // 23 Reserved
- Uint16 rsvd16:1; // 24 Reserved
- Uint16 rsvd17:1; // 25 Reserved
- Uint16 rsvd18:1; // 26 Reserved
- Uint16 rsvd19:1; // 27 Reserved
- Uint16 rsvd20:1; // 28 Reserved
- Uint16 rsvd21:1; // 29 Reserved
- Uint16 rsvd22:1; // 30 Reserved
- Uint16 rsvd23:1; // 31 Reserved
- };
- union GPFSET_REG {
- Uint32 all;
- struct GPFSET_BITS bit;
- };
- struct GPFCLEAR_BITS { // bits description
- Uint16 GPIO160:1; // 0 Output Clear bit for this pin
- Uint16 GPIO161:1; // 1 Output Clear bit for this pin
- Uint16 GPIO162:1; // 2 Output Clear bit for this pin
- Uint16 GPIO163:1; // 3 Output Clear bit for this pin
- Uint16 GPIO164:1; // 4 Output Clear bit for this pin
- Uint16 GPIO165:1; // 5 Output Clear bit for this pin
- Uint16 GPIO166:1; // 6 Output Clear bit for this pin
- Uint16 GPIO167:1; // 7 Output Clear bit for this pin
- Uint16 GPIO168:1; // 8 Output Clear bit for this pin
- Uint16 rsvd1:1; // 9 Reserved
- Uint16 rsvd2:1; // 10 Reserved
- Uint16 rsvd3:1; // 11 Reserved
- Uint16 rsvd4:1; // 12 Reserved
- Uint16 rsvd5:1; // 13 Reserved
- Uint16 rsvd6:1; // 14 Reserved
- Uint16 rsvd7:1; // 15 Reserved
- Uint16 rsvd8:1; // 16 Reserved
- Uint16 rsvd9:1; // 17 Reserved
- Uint16 rsvd10:1; // 18 Reserved
- Uint16 rsvd11:1; // 19 Reserved
- Uint16 rsvd12:1; // 20 Reserved
- Uint16 rsvd13:1; // 21 Reserved
- Uint16 rsvd14:1; // 22 Reserved
- Uint16 rsvd15:1; // 23 Reserved
- Uint16 rsvd16:1; // 24 Reserved
- Uint16 rsvd17:1; // 25 Reserved
- Uint16 rsvd18:1; // 26 Reserved
- Uint16 rsvd19:1; // 27 Reserved
- Uint16 rsvd20:1; // 28 Reserved
- Uint16 rsvd21:1; // 29 Reserved
- Uint16 rsvd22:1; // 30 Reserved
- Uint16 rsvd23:1; // 31 Reserved
- };
- union GPFCLEAR_REG {
- Uint32 all;
- struct GPFCLEAR_BITS bit;
- };
- struct GPFTOGGLE_BITS { // bits description
- Uint16 GPIO160:1; // 0 Output Toggle bit for this pin
- Uint16 GPIO161:1; // 1 Output Toggle bit for this pin
- Uint16 GPIO162:1; // 2 Output Toggle bit for this pin
- Uint16 GPIO163:1; // 3 Output Toggle bit for this pin
- Uint16 GPIO164:1; // 4 Output Toggle bit for this pin
- Uint16 GPIO165:1; // 5 Output Toggle bit for this pin
- Uint16 GPIO166:1; // 6 Output Toggle bit for this pin
- Uint16 GPIO167:1; // 7 Output Toggle bit for this pin
- Uint16 GPIO168:1; // 8 Output Toggle bit for this pin
- Uint16 rsvd1:1; // 9 Reserved
- Uint16 rsvd2:1; // 10 Reserved
- Uint16 rsvd3:1; // 11 Reserved
- Uint16 rsvd4:1; // 12 Reserved
- Uint16 rsvd5:1; // 13 Reserved
- Uint16 rsvd6:1; // 14 Reserved
- Uint16 rsvd7:1; // 15 Reserved
- Uint16 rsvd8:1; // 16 Reserved
- Uint16 rsvd9:1; // 17 Reserved
- Uint16 rsvd10:1; // 18 Reserved
- Uint16 rsvd11:1; // 19 Reserved
- Uint16 rsvd12:1; // 20 Reserved
- Uint16 rsvd13:1; // 21 Reserved
- Uint16 rsvd14:1; // 22 Reserved
- Uint16 rsvd15:1; // 23 Reserved
- Uint16 rsvd16:1; // 24 Reserved
- Uint16 rsvd17:1; // 25 Reserved
- Uint16 rsvd18:1; // 26 Reserved
- Uint16 rsvd19:1; // 27 Reserved
- Uint16 rsvd20:1; // 28 Reserved
- Uint16 rsvd21:1; // 29 Reserved
- Uint16 rsvd22:1; // 30 Reserved
- Uint16 rsvd23:1; // 31 Reserved
- };
- union GPFTOGGLE_REG {
- Uint32 all;
- struct GPFTOGGLE_BITS bit;
- };
- struct GPIO_DATA_REGS {
- union GPADAT_REG GPADAT; // GPIO A Data Register (GPIO0 to 31)
- union GPASET_REG GPASET; // GPIO A Data Set Register (GPIO0 to 31)
- union GPACLEAR_REG GPACLEAR; // GPIO A Data Clear Register (GPIO0 to 31)
- union GPATOGGLE_REG GPATOGGLE; // GPIO A Data Toggle Register (GPIO0 to 31)
- union GPBDAT_REG GPBDAT; // GPIO B Data Register (GPIO32 to 63)
- union GPBSET_REG GPBSET; // GPIO B Data Set Register (GPIO32 to 63)
- union GPBCLEAR_REG GPBCLEAR; // GPIO B Data Clear Register (GPIO32 to 63)
- union GPBTOGGLE_REG GPBTOGGLE; // GPIO B Data Toggle Register (GPIO32 to 63)
- union GPCDAT_REG GPCDAT; // GPIO C Data Register (GPIO64 to 95)
- union GPCSET_REG GPCSET; // GPIO C Data Set Register (GPIO64 to 95)
- union GPCCLEAR_REG GPCCLEAR; // GPIO C Data Clear Register (GPIO64 to 95)
- union GPCTOGGLE_REG GPCTOGGLE; // GPIO C Data Toggle Register (GPIO64 to 95)
- union GPDDAT_REG GPDDAT; // GPIO D Data Register (GPIO96 to 127)
- union GPDSET_REG GPDSET; // GPIO D Data Set Register (GPIO96 to 127)
- union GPDCLEAR_REG GPDCLEAR; // GPIO D Data Clear Register (GPIO96 to 127)
- union GPDTOGGLE_REG GPDTOGGLE; // GPIO D Data Toggle Register (GPIO96 to 127)
- union GPEDAT_REG GPEDAT; // GPIO E Data Register (GPIO128 to 159)
- union GPESET_REG GPESET; // GPIO E Data Set Register (GPIO128 to 159)
- union GPECLEAR_REG GPECLEAR; // GPIO E Data Clear Register (GPIO128 to 159)
- union GPETOGGLE_REG GPETOGGLE; // GPIO E Data Toggle Register (GPIO128 to 159)
- union GPFDAT_REG GPFDAT; // GPIO F Data Register (GPIO160 to 168)
- union GPFSET_REG GPFSET; // GPIO F Data Set Register (GPIO160 to 168)
- union GPFCLEAR_REG GPFCLEAR; // GPIO F Data Clear Register (GPIO160 to 168)
- union GPFTOGGLE_REG GPFTOGGLE; // GPIO F Data Toggle Register (GPIO160 to 168)
- };
- //---------------------------------------------------------------------------
- // GPIO External References & Function Declarations:
- //
- #ifdef CPU1
- extern volatile struct GPIO_CTRL_REGS GpioCtrlRegs;
- extern volatile struct GPIO_DATA_REGS GpioDataRegs;
- #endif
- #ifdef CPU2
- extern volatile struct GPIO_DATA_REGS GpioDataRegs;
- #endif
- #ifdef __cplusplus
- }
- #endif /* extern "C" */
- #endif
- //===========================================================================
- // End of file.
- //===========================================================================
|