sam3u.h 511 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919
  1. // ----------------------------------------------------------------------------
  2. // ATMEL Microcontroller Software Support - ROUSSET -
  3. // ----------------------------------------------------------------------------
  4. // Copyright (c) 2008, Atmel Corporation
  5. //
  6. // All rights reserved.
  7. //
  8. // Redistribution and use in source and binary forms, with or without
  9. // modification, are permitted provided that the following conditions are met:
  10. //
  11. // - Redistributions of source code must retain the above copyright notice,
  12. // this list of conditions and the disclaimer below.
  13. //
  14. // Atmel's name may not be used to endorse or promote products derived from
  15. // this software without specific prior written permission.
  16. //
  17. // DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR
  18. // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  19. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
  20. // DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,
  21. // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  22. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
  23. // OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  24. // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  25. // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
  26. // EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27. // ----------------------------------------------------------------------------
  28. // File Name : AT91SAM3U4.h
  29. // Object : AT91SAM3U4 definitions
  30. // Generated : AT91 SW Application Group 05/27/2009 (14:19:03)
  31. //
  32. // ----------------------------------------------------------------------------
  33. #ifndef __SAM3U4_H__
  34. #define __SAM3U4_H__
  35. #ifndef __ASSEMBLY__
  36. typedef volatile unsigned int AT91_REG;// Hardware register definition
  37. #define AT91_CAST(a) (a)
  38. #else
  39. #define AT91_CAST(a)
  40. #endif
  41. // *****************************************************************************
  42. // SOFTWARE API DEFINITION FOR System Peripherals
  43. // *****************************************************************************
  44. #ifndef __ASSEMBLY__
  45. #else
  46. #define GPBR (AT91_CAST(AT91_REG *) 0x00001290) // (GPBR) General Purpose Register
  47. #endif
  48. // -------- GPBR : (SYS Offset: 0x1290) GPBR General Purpose Register --------
  49. #define AT91C_GPBR_GPRV (0x0 << 0) // (SYS) General Purpose Register Value
  50. // *****************************************************************************
  51. // SOFTWARE API DEFINITION FOR HSMC4 Chip Select interface
  52. // *****************************************************************************
  53. #ifndef __ASSEMBLY__
  54. #else
  55. #define HSMC4_SETUP (AT91_CAST(AT91_REG *) 0x00000000) // (HSMC4_SETUP) Setup Register
  56. #define HSMC4_PULSE (AT91_CAST(AT91_REG *) 0x00000004) // (HSMC4_PULSE) Pulse Register
  57. #define HSMC4_CYCLE (AT91_CAST(AT91_REG *) 0x00000008) // (HSMC4_CYCLE) Cycle Register
  58. #define HSMC4_TIMINGS (AT91_CAST(AT91_REG *) 0x0000000C) // (HSMC4_TIMINGS) Timmings Register
  59. #define HSMC4_MODE (AT91_CAST(AT91_REG *) 0x00000010) // (HSMC4_MODE) Mode Register
  60. #endif
  61. // -------- HSMC4_SETUP : (HSMC4_CS Offset: 0x0) HSMC4 SETUP --------
  62. #define AT91C_HSMC4_NWE_SETUP (0x3F << 0) // (HSMC4_CS) NWE Setup length
  63. #define AT91C_HSMC4_NCS_WR_SETUP (0x3F << 8) // (HSMC4_CS) NCS Setup length in Write access
  64. #define AT91C_HSMC4_NRD_SETUP (0x3F << 16) // (HSMC4_CS) NRD Setup length
  65. #define AT91C_HSMC4_NCS_RD_SETUP (0x3F << 24) // (HSMC4_CS) NCS Setup legnth in Read access
  66. // -------- HSMC4_PULSE : (HSMC4_CS Offset: 0x4) HSMC4 PULSE --------
  67. #define AT91C_HSMC4_NWE_PULSE (0x3F << 0) // (HSMC4_CS) NWE Pulse Length
  68. #define AT91C_HSMC4_NCS_WR_PULSE (0x3F << 8) // (HSMC4_CS) NCS Pulse length in WRITE access
  69. #define AT91C_HSMC4_NRD_PULSE (0x3F << 16) // (HSMC4_CS) NRD Pulse length
  70. #define AT91C_HSMC4_NCS_RD_PULSE (0x3F << 24) // (HSMC4_CS) NCS Pulse length in READ access
  71. // -------- HSMC4_CYCLE : (HSMC4_CS Offset: 0x8) HSMC4 CYCLE --------
  72. #define AT91C_HSMC4_NWE_CYCLE (0x1FF << 0) // (HSMC4_CS) Total Write Cycle Length
  73. #define AT91C_HSMC4_NRD_CYCLE (0x1FF << 16) // (HSMC4_CS) Total Read Cycle Length
  74. // -------- HSMC4_TIMINGS : (HSMC4_CS Offset: 0xc) HSMC4 TIMINGS --------
  75. #define AT91C_HSMC4_TCLR (0xF << 0) // (HSMC4_CS) CLE to REN low delay
  76. #define AT91C_HSMC4_TADL (0xF << 4) // (HSMC4_CS) ALE to data start
  77. #define AT91C_HSMC4_TAR (0xF << 8) // (HSMC4_CS) ALE to REN low delay
  78. #define AT91C_HSMC4_OCMSEN (0x1 << 12) // (HSMC4_CS) Off Chip Memory Scrambling Enable
  79. #define AT91C_HSMC4_TRR (0xF << 16) // (HSMC4_CS) Ready to REN low delay
  80. #define AT91C_HSMC4_TWB (0xF << 24) // (HSMC4_CS) WEN high to REN to busy
  81. #define AT91C_HSMC4_RBNSEL (0x7 << 28) // (HSMC4_CS) Ready/Busy Line Selection
  82. #define AT91C_HSMC4_NFSEL (0x1 << 31) // (HSMC4_CS) Nand Flash Selection
  83. // -------- HSMC4_MODE : (HSMC4_CS Offset: 0x10) HSMC4 MODE --------
  84. #define AT91C_HSMC4_READ_MODE (0x1 << 0) // (HSMC4_CS) Read Mode
  85. #define AT91C_HSMC4_WRITE_MODE (0x1 << 1) // (HSMC4_CS) Write Mode
  86. #define AT91C_HSMC4_EXNW_MODE (0x3 << 4) // (HSMC4_CS) NWAIT Mode
  87. #define AT91C_HSMC4_EXNW_MODE_NWAIT_DISABLE (0x0 << 4) // (HSMC4_CS) External NWAIT disabled.
  88. #define AT91C_HSMC4_EXNW_MODE_NWAIT_ENABLE_FROZEN (0x2 << 4) // (HSMC4_CS) External NWAIT enabled in frozen mode.
  89. #define AT91C_HSMC4_EXNW_MODE_NWAIT_ENABLE_READY (0x3 << 4) // (HSMC4_CS) External NWAIT enabled in ready mode.
  90. #define AT91C_HSMC4_BAT (0x1 << 8) // (HSMC4_CS) Byte Access Type
  91. #define AT91C_HSMC4_BAT_BYTE_SELECT (0x0 << 8) // (HSMC4_CS) Write controled by ncs, nbs0, nbs1, nbs2, nbs3. Read controled by ncs, nrd, nbs0, nbs1, nbs2, nbs3.
  92. #define AT91C_HSMC4_BAT_BYTE_WRITE (0x1 << 8) // (HSMC4_CS) Write controled by ncs, nwe0, nwe1, nwe2, nwe3. Read controled by ncs and nrd.
  93. #define AT91C_HSMC4_DBW (0x3 << 12) // (HSMC4_CS) Data Bus Width
  94. #define AT91C_HSMC4_DBW_WIDTH_EIGTH_BITS (0x0 << 12) // (HSMC4_CS) 8 bits.
  95. #define AT91C_HSMC4_DBW_WIDTH_SIXTEEN_BITS (0x1 << 12) // (HSMC4_CS) 16 bits.
  96. #define AT91C_HSMC4_DBW_WIDTH_THIRTY_TWO_BITS (0x2 << 12) // (HSMC4_CS) 32 bits.
  97. #define AT91C_HSMC4_TDF_CYCLES (0xF << 16) // (HSMC4_CS) Data Float Time.
  98. #define AT91C_HSMC4_TDF_MODE (0x1 << 20) // (HSMC4_CS) TDF Enabled.
  99. #define AT91C_HSMC4_PMEN (0x1 << 24) // (HSMC4_CS) Page Mode Enabled.
  100. #define AT91C_HSMC4_PS (0x3 << 28) // (HSMC4_CS) Page Size
  101. #define AT91C_HSMC4_PS_SIZE_FOUR_BYTES (0x0 << 28) // (HSMC4_CS) 4 bytes.
  102. #define AT91C_HSMC4_PS_SIZE_EIGHT_BYTES (0x1 << 28) // (HSMC4_CS) 8 bytes.
  103. #define AT91C_HSMC4_PS_SIZE_SIXTEEN_BYTES (0x2 << 28) // (HSMC4_CS) 16 bytes.
  104. #define AT91C_HSMC4_PS_SIZE_THIRTY_TWO_BYTES (0x3 << 28) // (HSMC4_CS) 32 bytes.
  105. // *****************************************************************************
  106. // SOFTWARE API DEFINITION FOR AHB Static Memory Controller 4 Interface
  107. // *****************************************************************************
  108. #ifndef __ASSEMBLY__
  109. #else
  110. #define HSMC4_CFG (AT91_CAST(AT91_REG *) 0x00000000) // (HSMC4_CFG) Configuration Register
  111. #define HSMC4_CTRL (AT91_CAST(AT91_REG *) 0x00000004) // (HSMC4_CTRL) Control Register
  112. #define HSMC4_SR (AT91_CAST(AT91_REG *) 0x00000008) // (HSMC4_SR) Status Register
  113. #define HSMC4_IER (AT91_CAST(AT91_REG *) 0x0000000C) // (HSMC4_IER) Interrupt Enable Register
  114. #define HSMC4_IDR (AT91_CAST(AT91_REG *) 0x00000010) // (HSMC4_IDR) Interrupt Disable Register
  115. #define HSMC4_IMR (AT91_CAST(AT91_REG *) 0x00000014) // (HSMC4_IMR) Interrupt Mask Register
  116. #define HSMC4_ADDR (AT91_CAST(AT91_REG *) 0x00000018) // (HSMC4_ADDR) Address Cycle Zero Register
  117. #define HSMC4_BANK (AT91_CAST(AT91_REG *) 0x0000001C) // (HSMC4_BANK) Bank Register
  118. #define HSMC4_ECCCR (AT91_CAST(AT91_REG *) 0x00000020) // (HSMC4_ECCCR) ECC reset register
  119. #define HSMC4_ECCCMD (AT91_CAST(AT91_REG *) 0x00000024) // (HSMC4_ECCCMD) ECC Page size register
  120. #define HSMC4_ECCSR1 (AT91_CAST(AT91_REG *) 0x00000028) // (HSMC4_ECCSR1) ECC Status register 1
  121. #define HSMC4_ECCPR0 (AT91_CAST(AT91_REG *) 0x0000002C) // (HSMC4_ECCPR0) ECC Parity register 0
  122. #define HSMC4_ECCPR1 (AT91_CAST(AT91_REG *) 0x00000030) // (HSMC4_ECCPR1) ECC Parity register 1
  123. #define HSMC4_ECCSR2 (AT91_CAST(AT91_REG *) 0x00000034) // (HSMC4_ECCSR2) ECC Status register 2
  124. #define HSMC4_ECCPR2 (AT91_CAST(AT91_REG *) 0x00000038) // (HSMC4_ECCPR2) ECC Parity register 2
  125. #define HSMC4_ECCPR3 (AT91_CAST(AT91_REG *) 0x0000003C) // (HSMC4_ECCPR3) ECC Parity register 3
  126. #define HSMC4_ECCPR4 (AT91_CAST(AT91_REG *) 0x00000040) // (HSMC4_ECCPR4) ECC Parity register 4
  127. #define HSMC4_ECCPR5 (AT91_CAST(AT91_REG *) 0x00000044) // (HSMC4_ECCPR5) ECC Parity register 5
  128. #define HSMC4_ECCPR6 (AT91_CAST(AT91_REG *) 0x00000048) // (HSMC4_ECCPR6) ECC Parity register 6
  129. #define HSMC4_ECCPR7 (AT91_CAST(AT91_REG *) 0x0000004C) // (HSMC4_ECCPR7) ECC Parity register 7
  130. #define HSMC4_ECCPR8 (AT91_CAST(AT91_REG *) 0x00000050) // (HSMC4_ECCPR8) ECC Parity register 8
  131. #define HSMC4_ECCPR9 (AT91_CAST(AT91_REG *) 0x00000054) // (HSMC4_ECCPR9) ECC Parity register 9
  132. #define HSMC4_ECCPR10 (AT91_CAST(AT91_REG *) 0x00000058) // (HSMC4_ECCPR10) ECC Parity register 10
  133. #define HSMC4_ECCPR11 (AT91_CAST(AT91_REG *) 0x0000005C) // (HSMC4_ECCPR11) ECC Parity register 11
  134. #define HSMC4_ECCPR12 (AT91_CAST(AT91_REG *) 0x00000060) // (HSMC4_ECCPR12) ECC Parity register 12
  135. #define HSMC4_ECCPR13 (AT91_CAST(AT91_REG *) 0x00000064) // (HSMC4_ECCPR13) ECC Parity register 13
  136. #define HSMC4_ECCPR14 (AT91_CAST(AT91_REG *) 0x00000068) // (HSMC4_ECCPR14) ECC Parity register 14
  137. #define Hsmc4_Eccpr15 (AT91_CAST(AT91_REG *) 0x0000006C) // (Hsmc4_Eccpr15) ECC Parity register 15
  138. #define HSMC4_OCMS (AT91_CAST(AT91_REG *) 0x00000110) // (HSMC4_OCMS) OCMS MODE register
  139. #define HSMC4_KEY1 (AT91_CAST(AT91_REG *) 0x00000114) // (HSMC4_KEY1) KEY1 Register
  140. #define HSMC4_KEY2 (AT91_CAST(AT91_REG *) 0x00000118) // (HSMC4_KEY2) KEY2 Register
  141. #define HSMC4_WPCR (AT91_CAST(AT91_REG *) 0x000001E4) // (HSMC4_WPCR) Write Protection Control register
  142. #define HSMC4_WPSR (AT91_CAST(AT91_REG *) 0x000001E8) // (HSMC4_WPSR) Write Protection Status Register
  143. #define HSMC4_ADDRSIZE (AT91_CAST(AT91_REG *) 0x000001EC) // (HSMC4_ADDRSIZE) Write Protection Status Register
  144. #define HSMC4_IPNAME1 (AT91_CAST(AT91_REG *) 0x000001F0) // (HSMC4_IPNAME1) Write Protection Status Register
  145. #define HSMC4_IPNAME2 (AT91_CAST(AT91_REG *) 0x000001F4) // (HSMC4_IPNAME2) Write Protection Status Register
  146. #define HSMC4_FEATURES (AT91_CAST(AT91_REG *) 0x000001F8) // (HSMC4_FEATURES) Write Protection Status Register
  147. #define HSMC4_VER (AT91_CAST(AT91_REG *) 0x000001FC) // (HSMC4_VER) HSMC4 Version Register
  148. #define HSMC4_DUMMY (AT91_CAST(AT91_REG *) 0x00000200) // (HSMC4_DUMMY) This rtegister was created only ti have AHB constants
  149. #endif
  150. // -------- HSMC4_CFG : (HSMC4 Offset: 0x0) Configuration Register --------
  151. #define AT91C_HSMC4_PAGESIZE (0x3 << 0) // (HSMC4) PAGESIZE field description
  152. #define AT91C_HSMC4_PAGESIZE_528_Bytes (0x0) // (HSMC4) 512 bytes plus 16 bytes page size
  153. #define AT91C_HSMC4_PAGESIZE_1056_Bytes (0x1) // (HSMC4) 1024 bytes plus 32 bytes page size
  154. #define AT91C_HSMC4_PAGESIZE_2112_Bytes (0x2) // (HSMC4) 2048 bytes plus 64 bytes page size
  155. #define AT91C_HSMC4_PAGESIZE_4224_Bytes (0x3) // (HSMC4) 4096 bytes plus 128 bytes page size
  156. #define AT91C_HSMC4_WSPARE (0x1 << 8) // (HSMC4) Spare area access in Write Mode
  157. #define AT91C_HSMC4_RSPARE (0x1 << 9) // (HSMC4) Spare area access in Read Mode
  158. #define AT91C_HSMC4_EDGECTRL (0x1 << 12) // (HSMC4) Rising/Falling Edge Detection Control
  159. #define AT91C_HSMC4_RBEDGE (0x1 << 13) // (HSMC4) Ready/Busy Signal edge Detection
  160. #define AT91C_HSMC4_DTOCYC (0xF << 16) // (HSMC4) Data Timeout Cycle Number
  161. #define AT91C_HSMC4_DTOMUL (0x7 << 20) // (HSMC4) Data Timeout Multiplier
  162. #define AT91C_HSMC4_DTOMUL_1 (0x0 << 20) // (HSMC4) DTOCYC x 1
  163. #define AT91C_HSMC4_DTOMUL_16 (0x1 << 20) // (HSMC4) DTOCYC x 16
  164. #define AT91C_HSMC4_DTOMUL_128 (0x2 << 20) // (HSMC4) DTOCYC x 128
  165. #define AT91C_HSMC4_DTOMUL_256 (0x3 << 20) // (HSMC4) DTOCYC x 256
  166. #define AT91C_HSMC4_DTOMUL_1024 (0x4 << 20) // (HSMC4) DTOCYC x 1024
  167. #define AT91C_HSMC4_DTOMUL_4096 (0x5 << 20) // (HSMC4) DTOCYC x 4096
  168. #define AT91C_HSMC4_DTOMUL_65536 (0x6 << 20) // (HSMC4) DTOCYC x 65536
  169. #define AT91C_HSMC4_DTOMUL_1048576 (0x7 << 20) // (HSMC4) DTOCYC x 1048576
  170. // -------- HSMC4_CTRL : (HSMC4 Offset: 0x4) Control Register --------
  171. #define AT91C_HSMC4_NFCEN (0x1 << 0) // (HSMC4) Nand Flash Controller Host Enable
  172. #define AT91C_HSMC4_NFCDIS (0x1 << 1) // (HSMC4) Nand Flash Controller Host Disable
  173. #define AT91C_HSMC4_HOSTEN (0x1 << 8) // (HSMC4) If set to one, the Host controller is activated and perform a data transfer phase.
  174. #define AT91C_HSMC4_HOSTWR (0x1 << 11) // (HSMC4) If this field is set to one, the host transfers data from the internal SRAM to the Memory Device.
  175. #define AT91C_HSMC4_HOSTCSID (0x7 << 12) // (HSMC4) Host Controller Chip select Id
  176. #define AT91C_HSMC4_HOSTCSID_0 (0x0 << 12) // (HSMC4) CS0
  177. #define AT91C_HSMC4_HOSTCSID_1 (0x1 << 12) // (HSMC4) CS1
  178. #define AT91C_HSMC4_HOSTCSID_2 (0x2 << 12) // (HSMC4) CS2
  179. #define AT91C_HSMC4_HOSTCSID_3 (0x3 << 12) // (HSMC4) CS3
  180. #define AT91C_HSMC4_HOSTCSID_4 (0x4 << 12) // (HSMC4) CS4
  181. #define AT91C_HSMC4_HOSTCSID_5 (0x5 << 12) // (HSMC4) CS5
  182. #define AT91C_HSMC4_HOSTCSID_6 (0x6 << 12) // (HSMC4) CS6
  183. #define AT91C_HSMC4_HOSTCSID_7 (0x7 << 12) // (HSMC4) CS7
  184. #define AT91C_HSMC4_VALID (0x1 << 15) // (HSMC4) When set to 1, a write operation modifies both HOSTCSID and HOSTWR fields.
  185. // -------- HSMC4_SR : (HSMC4 Offset: 0x8) HSMC4 Status Register --------
  186. #define AT91C_HSMC4_NFCSTS (0x1 << 0) // (HSMC4) Nand Flash Controller status
  187. #define AT91C_HSMC4_RBRISE (0x1 << 4) // (HSMC4) Selected Ready Busy Rising Edge Detected flag
  188. #define AT91C_HSMC4_RBFALL (0x1 << 5) // (HSMC4) Selected Ready Busy Falling Edge Detected flag
  189. #define AT91C_HSMC4_HOSTBUSY (0x1 << 8) // (HSMC4) Host Busy
  190. #define AT91C_HSMC4_HOSTW (0x1 << 11) // (HSMC4) Host Write/Read Operation
  191. #define AT91C_HSMC4_HOSTCS (0x7 << 12) // (HSMC4) Host Controller Chip select Id
  192. #define AT91C_HSMC4_HOSTCS_0 (0x0 << 12) // (HSMC4) CS0
  193. #define AT91C_HSMC4_HOSTCS_1 (0x1 << 12) // (HSMC4) CS1
  194. #define AT91C_HSMC4_HOSTCS_2 (0x2 << 12) // (HSMC4) CS2
  195. #define AT91C_HSMC4_HOSTCS_3 (0x3 << 12) // (HSMC4) CS3
  196. #define AT91C_HSMC4_HOSTCS_4 (0x4 << 12) // (HSMC4) CS4
  197. #define AT91C_HSMC4_HOSTCS_5 (0x5 << 12) // (HSMC4) CS5
  198. #define AT91C_HSMC4_HOSTCS_6 (0x6 << 12) // (HSMC4) CS6
  199. #define AT91C_HSMC4_HOSTCS_7 (0x7 << 12) // (HSMC4) CS7
  200. #define AT91C_HSMC4_XFRDONE (0x1 << 16) // (HSMC4) Host Data Transfer Terminated
  201. #define AT91C_HSMC4_CMDDONE (0x1 << 17) // (HSMC4) Command Done
  202. #define AT91C_HSMC4_ECCRDY (0x1 << 18) // (HSMC4) ECC ready
  203. #define AT91C_HSMC4_DTOE (0x1 << 20) // (HSMC4) Data timeout Error
  204. #define AT91C_HSMC4_UNDEF (0x1 << 21) // (HSMC4) Undefined Area Error
  205. #define AT91C_HSMC4_AWB (0x1 << 22) // (HSMC4) Accessing While Busy Error
  206. #define AT91C_HSMC4_HASE (0x1 << 23) // (HSMC4) Host Controller Access Size Error
  207. #define AT91C_HSMC4_RBEDGE0 (0x1 << 24) // (HSMC4) Ready Busy line 0 Edge detected
  208. #define AT91C_HSMC4_RBEDGE1 (0x1 << 25) // (HSMC4) Ready Busy line 1 Edge detected
  209. #define AT91C_HSMC4_RBEDGE2 (0x1 << 26) // (HSMC4) Ready Busy line 2 Edge detected
  210. #define AT91C_HSMC4_RBEDGE3 (0x1 << 27) // (HSMC4) Ready Busy line 3 Edge detected
  211. #define AT91C_HSMC4_RBEDGE4 (0x1 << 28) // (HSMC4) Ready Busy line 4 Edge detected
  212. #define AT91C_HSMC4_RBEDGE5 (0x1 << 29) // (HSMC4) Ready Busy line 5 Edge detected
  213. #define AT91C_HSMC4_RBEDGE6 (0x1 << 30) // (HSMC4) Ready Busy line 6 Edge detected
  214. #define AT91C_HSMC4_RBEDGE7 (0x1 << 31) // (HSMC4) Ready Busy line 7 Edge detected
  215. // -------- HSMC4_IER : (HSMC4 Offset: 0xc) HSMC4 Interrupt Enable Register --------
  216. // -------- HSMC4_IDR : (HSMC4 Offset: 0x10) HSMC4 Interrupt Disable Register --------
  217. // -------- HSMC4_IMR : (HSMC4 Offset: 0x14) HSMC4 Interrupt Mask Register --------
  218. // -------- HSMC4_ADDR : (HSMC4 Offset: 0x18) Address Cycle Zero Register --------
  219. #define AT91C_HSMC4_ADDRCYCLE0 (0xFF << 0) // (HSMC4) Nand Flash Array Address cycle 0
  220. // -------- HSMC4_BANK : (HSMC4 Offset: 0x1c) Bank Register --------
  221. #define AT91C_BANK (0x7 << 0) // (HSMC4) Bank identifier
  222. #define AT91C_BANK_0 (0x0) // (HSMC4) BANK0
  223. #define AT91C_BANK_1 (0x1) // (HSMC4) BANK1
  224. #define AT91C_BANK_2 (0x2) // (HSMC4) BANK2
  225. #define AT91C_BANK_3 (0x3) // (HSMC4) BANK3
  226. #define AT91C_BANK_4 (0x4) // (HSMC4) BANK4
  227. #define AT91C_BANK_5 (0x5) // (HSMC4) BANK5
  228. #define AT91C_BANK_6 (0x6) // (HSMC4) BANK6
  229. #define AT91C_BANK_7 (0x7) // (HSMC4) BANK7
  230. // -------- HSMC4_ECCCR : (HSMC4 Offset: 0x20) ECC Control Register --------
  231. #define AT91C_HSMC4_ECCRESET (0x1 << 0) // (HSMC4) Reset ECC
  232. // -------- HSMC4_ECCCMD : (HSMC4 Offset: 0x24) ECC mode register --------
  233. #define AT91C_ECC_PAGE_SIZE (0x3 << 0) // (HSMC4) Nand Flash page size
  234. #define AT91C_ECC_TYPCORRECT (0x3 << 4) // (HSMC4) Nand Flash page size
  235. #define AT91C_ECC_TYPCORRECT_ONE_PER_PAGE (0x0 << 4) // (HSMC4)
  236. #define AT91C_ECC_TYPCORRECT_ONE_EVERY_256_BYTES (0x1 << 4) // (HSMC4)
  237. #define AT91C_ECC_TYPCORRECT_ONE_EVERY_512_BYTES (0x2 << 4) // (HSMC4)
  238. // -------- HSMC4_ECCSR1 : (HSMC4 Offset: 0x28) ECC Status Register 1 --------
  239. #define AT91C_HSMC4_ECC_RECERR0 (0x1 << 0) // (HSMC4) Recoverable Error
  240. #define AT91C_HSMC4_ECC_ECCERR0 (0x1 << 1) // (HSMC4) ECC Error
  241. #define AT91C_HSMC4_ECC_MULERR0 (0x1 << 2) // (HSMC4) Multiple Error
  242. #define AT91C_HSMC4_ECC_RECERR1 (0x1 << 4) // (HSMC4) Recoverable Error
  243. #define AT91C_HSMC4_ECC_ECCERR1 (0x1 << 5) // (HSMC4) ECC Error
  244. #define AT91C_HSMC4_ECC_MULERR1 (0x1 << 6) // (HSMC4) Multiple Error
  245. #define AT91C_HSMC4_ECC_RECERR2 (0x1 << 8) // (HSMC4) Recoverable Error
  246. #define AT91C_HSMC4_ECC_ECCERR2 (0x1 << 9) // (HSMC4) ECC Error
  247. #define AT91C_HSMC4_ECC_MULERR2 (0x1 << 10) // (HSMC4) Multiple Error
  248. #define AT91C_HSMC4_ECC_RECERR3 (0x1 << 12) // (HSMC4) Recoverable Error
  249. #define AT91C_HSMC4_ECC_ECCERR3 (0x1 << 13) // (HSMC4) ECC Error
  250. #define AT91C_HSMC4_ECC_MULERR3 (0x1 << 14) // (HSMC4) Multiple Error
  251. #define AT91C_HSMC4_ECC_RECERR4 (0x1 << 16) // (HSMC4) Recoverable Error
  252. #define AT91C_HSMC4_ECC_ECCERR4 (0x1 << 17) // (HSMC4) ECC Error
  253. #define AT91C_HSMC4_ECC_MULERR4 (0x1 << 18) // (HSMC4) Multiple Error
  254. #define AT91C_HSMC4_ECC_RECERR5 (0x1 << 20) // (HSMC4) Recoverable Error
  255. #define AT91C_HSMC4_ECC_ECCERR5 (0x1 << 21) // (HSMC4) ECC Error
  256. #define AT91C_HSMC4_ECC_MULERR5 (0x1 << 22) // (HSMC4) Multiple Error
  257. #define AT91C_HSMC4_ECC_RECERR6 (0x1 << 24) // (HSMC4) Recoverable Error
  258. #define AT91C_HSMC4_ECC_ECCERR6 (0x1 << 25) // (HSMC4) ECC Error
  259. #define AT91C_HSMC4_ECC_MULERR6 (0x1 << 26) // (HSMC4) Multiple Error
  260. #define AT91C_HSMC4_ECC_RECERR7 (0x1 << 28) // (HSMC4) Recoverable Error
  261. #define AT91C_HSMC4_ECC_ECCERR7 (0x1 << 29) // (HSMC4) ECC Error
  262. #define AT91C_HSMC4_ECC_MULERR7 (0x1 << 30) // (HSMC4) Multiple Error
  263. // -------- HSMC4_ECCPR0 : (HSMC4 Offset: 0x2c) HSMC4 ECC parity Register 0 --------
  264. #define AT91C_HSMC4_ECC_BITADDR (0x7 << 0) // (HSMC4) Corrupted Bit Address in the page
  265. #define AT91C_HSMC4_ECC_WORDADDR (0xFF << 3) // (HSMC4) Corrupted Word Address in the page
  266. #define AT91C_HSMC4_ECC_NPARITY (0x7FF << 12) // (HSMC4) Parity N
  267. // -------- HSMC4_ECCPR1 : (HSMC4 Offset: 0x30) HSMC4 ECC parity Register 1 --------
  268. // -------- HSMC4_ECCSR2 : (HSMC4 Offset: 0x34) ECC Status Register 2 --------
  269. #define AT91C_HSMC4_ECC_RECERR8 (0x1 << 0) // (HSMC4) Recoverable Error
  270. #define AT91C_HSMC4_ECC_ECCERR8 (0x1 << 1) // (HSMC4) ECC Error
  271. #define AT91C_HSMC4_ECC_MULERR8 (0x1 << 2) // (HSMC4) Multiple Error
  272. #define AT91C_HSMC4_ECC_RECERR9 (0x1 << 4) // (HSMC4) Recoverable Error
  273. #define AT91C_HSMC4_ECC_ECCERR9 (0x1 << 5) // (HSMC4) ECC Error
  274. #define AT91C_HSMC4_ECC_MULERR9 (0x1 << 6) // (HSMC4) Multiple Error
  275. #define AT91C_HSMC4_ECC_RECERR10 (0x1 << 8) // (HSMC4) Recoverable Error
  276. #define AT91C_HSMC4_ECC_ECCERR10 (0x1 << 9) // (HSMC4) ECC Error
  277. #define AT91C_HSMC4_ECC_MULERR10 (0x1 << 10) // (HSMC4) Multiple Error
  278. #define AT91C_HSMC4_ECC_RECERR11 (0x1 << 12) // (HSMC4) Recoverable Error
  279. #define AT91C_HSMC4_ECC_ECCERR11 (0x1 << 13) // (HSMC4) ECC Error
  280. #define AT91C_HSMC4_ECC_MULERR11 (0x1 << 14) // (HSMC4) Multiple Error
  281. #define AT91C_HSMC4_ECC_RECERR12 (0x1 << 16) // (HSMC4) Recoverable Error
  282. #define AT91C_HSMC4_ECC_ECCERR12 (0x1 << 17) // (HSMC4) ECC Error
  283. #define AT91C_HSMC4_ECC_MULERR12 (0x1 << 18) // (HSMC4) Multiple Error
  284. #define AT91C_HSMC4_ECC_RECERR13 (0x1 << 20) // (HSMC4) Recoverable Error
  285. #define AT91C_HSMC4_ECC_ECCERR13 (0x1 << 21) // (HSMC4) ECC Error
  286. #define AT91C_HSMC4_ECC_MULERR13 (0x1 << 22) // (HSMC4) Multiple Error
  287. #define AT91C_HSMC4_ECC_RECERR14 (0x1 << 24) // (HSMC4) Recoverable Error
  288. #define AT91C_HSMC4_ECC_ECCERR14 (0x1 << 25) // (HSMC4) ECC Error
  289. #define AT91C_HSMC4_ECC_MULERR14 (0x1 << 26) // (HSMC4) Multiple Error
  290. #define AT91C_HSMC4_ECC_RECERR15 (0x1 << 28) // (HSMC4) Recoverable Error
  291. #define AT91C_HSMC4_ECC_ECCERR15 (0x1 << 29) // (HSMC4) ECC Error
  292. #define AT91C_HSMC4_ECC_MULERR15 (0x1 << 30) // (HSMC4) Multiple Error
  293. // -------- HSMC4_ECCPR2 : (HSMC4 Offset: 0x38) HSMC4 ECC parity Register 2 --------
  294. // -------- HSMC4_ECCPR3 : (HSMC4 Offset: 0x3c) HSMC4 ECC parity Register 3 --------
  295. // -------- HSMC4_ECCPR4 : (HSMC4 Offset: 0x40) HSMC4 ECC parity Register 4 --------
  296. // -------- HSMC4_ECCPR5 : (HSMC4 Offset: 0x44) HSMC4 ECC parity Register 5 --------
  297. // -------- HSMC4_ECCPR6 : (HSMC4 Offset: 0x48) HSMC4 ECC parity Register 6 --------
  298. // -------- HSMC4_ECCPR7 : (HSMC4 Offset: 0x4c) HSMC4 ECC parity Register 7 --------
  299. // -------- HSMC4_ECCPR8 : (HSMC4 Offset: 0x50) HSMC4 ECC parity Register 8 --------
  300. // -------- HSMC4_ECCPR9 : (HSMC4 Offset: 0x54) HSMC4 ECC parity Register 9 --------
  301. // -------- HSMC4_ECCPR10 : (HSMC4 Offset: 0x58) HSMC4 ECC parity Register 10 --------
  302. // -------- HSMC4_ECCPR11 : (HSMC4 Offset: 0x5c) HSMC4 ECC parity Register 11 --------
  303. // -------- HSMC4_ECCPR12 : (HSMC4 Offset: 0x60) HSMC4 ECC parity Register 12 --------
  304. // -------- HSMC4_ECCPR13 : (HSMC4 Offset: 0x64) HSMC4 ECC parity Register 13 --------
  305. // -------- HSMC4_ECCPR14 : (HSMC4 Offset: 0x68) HSMC4 ECC parity Register 14 --------
  306. // -------- HSMC4_ECCPR15 : (HSMC4 Offset: 0x6c) HSMC4 ECC parity Register 15 --------
  307. // -------- HSMC4_OCMS : (HSMC4 Offset: 0x110) HSMC4 OCMS Register --------
  308. #define AT91C_HSMC4_OCMS_SRSE (0x1 << 0) // (HSMC4) Static Memory Controller Scrambling Enable
  309. #define AT91C_HSMC4_OCMS_SMSE (0x1 << 1) // (HSMC4) SRAM Scramling Enable
  310. // -------- HSMC4_KEY1 : (HSMC4 Offset: 0x114) HSMC4 OCMS KEY1 Register --------
  311. #define AT91C_HSMC4_OCMS_KEY1 (0x0 << 0) // (HSMC4) OCMS Key 2
  312. // -------- HSMC4_OCMS_KEY2 : (HSMC4 Offset: 0x118) HSMC4 OCMS KEY2 Register --------
  313. #define AT91C_HSMC4_OCMS_KEY2 (0x0 << 0) // (HSMC4) OCMS Key 2
  314. // -------- HSMC4_WPCR : (HSMC4 Offset: 0x1e4) HSMC4 Witre Protection Control Register --------
  315. #define AT91C_HSMC4_WP_EN (0x1 << 0) // (HSMC4) Write Protection Enable
  316. #define AT91C_HSMC4_WP_KEY (0xFFFFFF << 8) // (HSMC4) Protection Password
  317. // -------- HSMC4_WPSR : (HSMC4 Offset: 0x1e8) HSMC4 WPSR Register --------
  318. #define AT91C_HSMC4_WP_VS (0xF << 0) // (HSMC4) Write Protection Violation Status
  319. #define AT91C_HSMC4_WP_VS_WP_VS0 (0x0) // (HSMC4) No write protection violation since the last read of this register
  320. #define AT91C_HSMC4_WP_VS_WP_VS1 (0x1) // (HSMC4) write protection detected unauthorized attempt to write a control register had occured (since the last read)
  321. #define AT91C_HSMC4_WP_VS_WP_VS2 (0x2) // (HSMC4) Software reset had been performed while write protection was enabled (since the last read)
  322. #define AT91C_HSMC4_WP_VS_WP_VS3 (0x3) // (HSMC4) Both write protection violation and software reset with write protection enabled had occured since the last read
  323. #define AT91C_ (0x0 << 8) // (HSMC4)
  324. // -------- HSMC4_VER : (HSMC4 Offset: 0x1fc) HSMC4 VERSION Register --------
  325. // -------- HSMC4_DUMMY : (HSMC4 Offset: 0x200) HSMC4 DUMMY REGISTER --------
  326. #define AT91C_HSMC4_CMD1 (0xFF << 2) // (HSMC4) Command Register Value for Cycle 1
  327. #define AT91C_HSMC4_CMD2 (0xFF << 10) // (HSMC4) Command Register Value for Cycle 2
  328. #define AT91C_HSMC4_VCMD2 (0x1 << 18) // (HSMC4) Valid Cycle 2 Command
  329. #define AT91C_HSMC4_ACYCLE (0x7 << 19) // (HSMC4) Number of Address required for the current command
  330. #define AT91C_HSMC4_ACYCLE_HSMC4_ACYCLE_NONE (0x0 << 19) // (HSMC4) No address cycle
  331. #define AT91C_HSMC4_ACYCLE_HSMC4_ACYCLE_ONE (0x1 << 19) // (HSMC4) One address cycle
  332. #define AT91C_HSMC4_ACYCLE_HSMC4_ACYCLE_TWO (0x2 << 19) // (HSMC4) Two address cycles
  333. #define AT91C_HSMC4_ACYCLE_HSMC4_ACYCLE_THREE (0x3 << 19) // (HSMC4) Three address cycles
  334. #define AT91C_HSMC4_ACYCLE_HSMC4_ACYCLE_FOUR (0x4 << 19) // (HSMC4) Four address cycles
  335. #define AT91C_HSMC4_ACYCLE_HSMC4_ACYCLE_FIVE (0x5 << 19) // (HSMC4) Five address cycles
  336. #define AT91C_HSMC4_CSID (0x7 << 22) // (HSMC4) Chip Select Identifier
  337. #define AT91C_HSMC4_CSID_0 (0x0 << 22) // (HSMC4) CS0
  338. #define AT91C_HSMC4_CSID_1 (0x1 << 22) // (HSMC4) CS1
  339. #define AT91C_HSMC4_CSID_2 (0x2 << 22) // (HSMC4) CS2
  340. #define AT91C_HSMC4_CSID_3 (0x3 << 22) // (HSMC4) CS3
  341. #define AT91C_HSMC4_CSID_4 (0x4 << 22) // (HSMC4) CS4
  342. #define AT91C_HSMC4_CSID_5 (0x5 << 22) // (HSMC4) CS5
  343. #define AT91C_HSMC4_CSID_6 (0x6 << 22) // (HSMC4) CS6
  344. #define AT91C_HSMC4_CSID_7 (0x7 << 22) // (HSMC4) CS7
  345. #define AT91C_HSMC4_HOST_EN (0x1 << 25) // (HSMC4) Host Main Controller Enable
  346. #define AT91C_HSMC4_HOST_WR (0x1 << 26) // (HSMC4) HOSTWR : Host Main Controller Write Enable
  347. #define AT91C_HSMC4_HOSTCMD (0x1 << 27) // (HSMC4) Host Command Enable
  348. // *****************************************************************************
  349. // SOFTWARE API DEFINITION FOR AHB Matrix2 Interface
  350. // *****************************************************************************
  351. #ifndef __ASSEMBLY__
  352. #else
  353. #define MATRIX_MCFG0 (AT91_CAST(AT91_REG *) 0x00000000) // (MATRIX_MCFG0) Master Configuration Register 0 : ARM I and D
  354. #define MATRIX_MCFG1 (AT91_CAST(AT91_REG *) 0x00000004) // (MATRIX_MCFG1) Master Configuration Register 1 : ARM S
  355. #define MATRIX_MCFG2 (AT91_CAST(AT91_REG *) 0x00000008) // (MATRIX_MCFG2) Master Configuration Register 2
  356. #define MATRIX_MCFG3 (AT91_CAST(AT91_REG *) 0x0000000C) // (MATRIX_MCFG3) Master Configuration Register 3
  357. #define MATRIX_MCFG4 (AT91_CAST(AT91_REG *) 0x00000010) // (MATRIX_MCFG4) Master Configuration Register 4
  358. #define MATRIX_MCFG5 (AT91_CAST(AT91_REG *) 0x00000014) // (MATRIX_MCFG5) Master Configuration Register 5
  359. #define MATRIX_MCFG6 (AT91_CAST(AT91_REG *) 0x00000018) // (MATRIX_MCFG6) Master Configuration Register 6
  360. #define MATRIX_MCFG7 (AT91_CAST(AT91_REG *) 0x0000001C) // (MATRIX_MCFG7) Master Configuration Register 7
  361. #define MATRIX_SCFG0 (AT91_CAST(AT91_REG *) 0x00000040) // (MATRIX_SCFG0) Slave Configuration Register 0
  362. #define MATRIX_SCFG1 (AT91_CAST(AT91_REG *) 0x00000044) // (MATRIX_SCFG1) Slave Configuration Register 1
  363. #define MATRIX_SCFG2 (AT91_CAST(AT91_REG *) 0x00000048) // (MATRIX_SCFG2) Slave Configuration Register 2
  364. #define MATRIX_SCFG3 (AT91_CAST(AT91_REG *) 0x0000004C) // (MATRIX_SCFG3) Slave Configuration Register 3
  365. #define MATRIX_SCFG4 (AT91_CAST(AT91_REG *) 0x00000050) // (MATRIX_SCFG4) Slave Configuration Register 4
  366. #define MATRIX_SCFG5 (AT91_CAST(AT91_REG *) 0x00000054) // (MATRIX_SCFG5) Slave Configuration Register 5
  367. #define MATRIX_SCFG6 (AT91_CAST(AT91_REG *) 0x00000058) // (MATRIX_SCFG6) Slave Configuration Register 6
  368. #define MATRIX_SCFG7 (AT91_CAST(AT91_REG *) 0x0000005C) // (MATRIX_SCFG7) Slave Configuration Register 5
  369. #define MATRIX_SCFG8 (AT91_CAST(AT91_REG *) 0x00000060) // (MATRIX_SCFG8) Slave Configuration Register 8
  370. #define MATRIX_SCFG9 (AT91_CAST(AT91_REG *) 0x00000064) // (MATRIX_SCFG9) Slave Configuration Register 9
  371. #define MATRIX_SFR0 (AT91_CAST(AT91_REG *) 0x00000110) // (MATRIX_SFR0 ) Special Function Register 0
  372. #define MATRIX_SFR1 (AT91_CAST(AT91_REG *) 0x00000114) // (MATRIX_SFR1 ) Special Function Register 1
  373. #define MATRIX_SFR2 (AT91_CAST(AT91_REG *) 0x00000118) // (MATRIX_SFR2 ) Special Function Register 2
  374. #define MATRIX_SFR3 (AT91_CAST(AT91_REG *) 0x0000011C) // (MATRIX_SFR3 ) Special Function Register 3
  375. #define MATRIX_SFR4 (AT91_CAST(AT91_REG *) 0x00000120) // (MATRIX_SFR4 ) Special Function Register 4
  376. #define MATRIX_SFR5 (AT91_CAST(AT91_REG *) 0x00000124) // (MATRIX_SFR5 ) Special Function Register 5
  377. #define MATRIX_SFR6 (AT91_CAST(AT91_REG *) 0x00000128) // (MATRIX_SFR6 ) Special Function Register 6
  378. #define MATRIX_SFR7 (AT91_CAST(AT91_REG *) 0x0000012C) // (MATRIX_SFR7 ) Special Function Register 7
  379. #define MATRIX_SFR8 (AT91_CAST(AT91_REG *) 0x00000130) // (MATRIX_SFR8 ) Special Function Register 8
  380. #define MATRIX_SFR9 (AT91_CAST(AT91_REG *) 0x00000134) // (MATRIX_SFR9 ) Special Function Register 9
  381. #define MATRIX_SFR10 (AT91_CAST(AT91_REG *) 0x00000138) // (MATRIX_SFR10) Special Function Register 10
  382. #define MATRIX_SFR11 (AT91_CAST(AT91_REG *) 0x0000013C) // (MATRIX_SFR11) Special Function Register 11
  383. #define MATRIX_SFR12 (AT91_CAST(AT91_REG *) 0x00000140) // (MATRIX_SFR12) Special Function Register 12
  384. #define MATRIX_SFR13 (AT91_CAST(AT91_REG *) 0x00000144) // (MATRIX_SFR13) Special Function Register 13
  385. #define MATRIX_SFR14 (AT91_CAST(AT91_REG *) 0x00000148) // (MATRIX_SFR14) Special Function Register 14
  386. #define MATRIX_SFR15 (AT91_CAST(AT91_REG *) 0x0000014C) // (MATRIX_SFR15) Special Function Register 15
  387. #define HMATRIX2_ADDRSIZE (AT91_CAST(AT91_REG *) 0x000001EC) // (HMATRIX2_ADDRSIZE) HMATRIX2 ADDRSIZE REGISTER
  388. #define HMATRIX2_IPNAME1 (AT91_CAST(AT91_REG *) 0x000001F0) // (HMATRIX2_IPNAME1) HMATRIX2 IPNAME1 REGISTER
  389. #define HMATRIX2_IPNAME2 (AT91_CAST(AT91_REG *) 0x000001F4) // (HMATRIX2_IPNAME2) HMATRIX2 IPNAME2 REGISTER
  390. #define HMATRIX2_FEATURES (AT91_CAST(AT91_REG *) 0x000001F8) // (HMATRIX2_FEATURES) HMATRIX2 FEATURES REGISTER
  391. #define HMATRIX2_VER (AT91_CAST(AT91_REG *) 0x000001FC) // (HMATRIX2_VER) HMATRIX2 VERSION REGISTER
  392. #endif
  393. // -------- MATRIX_MCFG0 : (HMATRIX2 Offset: 0x0) Master Configuration Register ARM bus I and D --------
  394. #define AT91C_MATRIX_ULBT (0x7 << 0) // (HMATRIX2) Undefined Length Burst Type
  395. #define AT91C_MATRIX_ULBT_INFINIT_LENGTH (0x0) // (HMATRIX2) infinite length burst
  396. #define AT91C_MATRIX_ULBT_SINGLE_ACCESS (0x1) // (HMATRIX2) Single Access
  397. #define AT91C_MATRIX_ULBT_4_BEAT (0x2) // (HMATRIX2) 4 Beat Burst
  398. #define AT91C_MATRIX_ULBT_8_BEAT (0x3) // (HMATRIX2) 8 Beat Burst
  399. #define AT91C_MATRIX_ULBT_16_BEAT (0x4) // (HMATRIX2) 16 Beat Burst
  400. #define AT91C_MATRIX_ULBT_32_BEAT (0x5) // (HMATRIX2) 32 Beat Burst
  401. #define AT91C_MATRIX_ULBT_64_BEAT (0x6) // (HMATRIX2) 64 Beat Burst
  402. #define AT91C_MATRIX_ULBT_128_BEAT (0x7) // (HMATRIX2) 128 Beat Burst
  403. // -------- MATRIX_MCFG1 : (HMATRIX2 Offset: 0x4) Master Configuration Register ARM bus S --------
  404. // -------- MATRIX_MCFG2 : (HMATRIX2 Offset: 0x8) Master Configuration Register --------
  405. // -------- MATRIX_MCFG3 : (HMATRIX2 Offset: 0xc) Master Configuration Register --------
  406. // -------- MATRIX_MCFG4 : (HMATRIX2 Offset: 0x10) Master Configuration Register --------
  407. // -------- MATRIX_MCFG5 : (HMATRIX2 Offset: 0x14) Master Configuration Register --------
  408. // -------- MATRIX_MCFG6 : (HMATRIX2 Offset: 0x18) Master Configuration Register --------
  409. // -------- MATRIX_MCFG7 : (HMATRIX2 Offset: 0x1c) Master Configuration Register --------
  410. // -------- MATRIX_SCFG0 : (HMATRIX2 Offset: 0x40) Slave Configuration Register 0 --------
  411. #define AT91C_MATRIX_SLOT_CYCLE (0x1FF << 0) // (HMATRIX2) Maximum Number of Allowed Cycles for a Burst
  412. #define AT91C_MATRIX_DEFMSTR_TYPE (0x3 << 16) // (HMATRIX2) Default Master Type
  413. #define AT91C_MATRIX_DEFMSTR_TYPE_NO_DEFMSTR (0x0 << 16) // (HMATRIX2) No Default Master. At the end of current slave access, if no other master request is pending, the slave is deconnected from all masters. This results in having a one cycle latency for the first transfer of a burst.
  414. #define AT91C_MATRIX_DEFMSTR_TYPE_LAST_DEFMSTR (0x1 << 16) // (HMATRIX2) Last Default Master. At the end of current slave access, if no other master request is pending, the slave stay connected with the last master having accessed it. This results in not having the one cycle latency when the last master re-trying access on the slave.
  415. #define AT91C_MATRIX_DEFMSTR_TYPE_FIXED_DEFMSTR (0x2 << 16) // (HMATRIX2) Fixed Default Master. At the end of current slave access, if no other master request is pending, the slave connects with fixed which number is in FIXED_DEFMSTR field. This results in not having the one cycle latency when the fixed master re-trying access on the slave.
  416. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG0 (0x7 << 18) // (HMATRIX2) Fixed Index of Default Master
  417. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG0_ARMS (0x1 << 18) // (HMATRIX2) ARMS is Default Master
  418. // -------- MATRIX_SCFG1 : (HMATRIX2 Offset: 0x44) Slave Configuration Register 1 --------
  419. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG1 (0x7 << 18) // (HMATRIX2) Fixed Index of Default Master
  420. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG1_ARMS (0x1 << 18) // (HMATRIX2) ARMS is Default Master
  421. // -------- MATRIX_SCFG2 : (HMATRIX2 Offset: 0x48) Slave Configuration Register 2 --------
  422. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG2 (0x7 << 18) // (HMATRIX2) Fixed Index of Default Master
  423. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG2_ARMS (0x1 << 18) // (HMATRIX2) ARMS is Default Master
  424. // -------- MATRIX_SCFG3 : (HMATRIX2 Offset: 0x4c) Slave Configuration Register 3 --------
  425. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG3 (0x7 << 18) // (HMATRIX2) Fixed Index of Default Master
  426. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG3_ARMC (0x0 << 18) // (HMATRIX2) ARMC is Default Master
  427. // -------- MATRIX_SCFG4 : (HMATRIX2 Offset: 0x50) Slave Configuration Register 4 --------
  428. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG4 (0x7 << 18) // (HMATRIX2) Fixed Index of Default Master
  429. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG4_ARMC (0x0 << 18) // (HMATRIX2) ARMC is Default Master
  430. // -------- MATRIX_SCFG5 : (HMATRIX2 Offset: 0x54) Slave Configuration Register 5 --------
  431. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG5 (0x7 << 18) // (HMATRIX2) Fixed Index of Default Master
  432. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG5_ARMS (0x1 << 18) // (HMATRIX2) ARMS is Default Master
  433. // -------- MATRIX_SCFG6 : (HMATRIX2 Offset: 0x58) Slave Configuration Register 6 --------
  434. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG6 (0x7 << 18) // (HMATRIX2) Fixed Index of Default Master
  435. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG6_ARMS (0x1 << 18) // (HMATRIX2) ARMS is Default Master
  436. // -------- MATRIX_SCFG7 : (HMATRIX2 Offset: 0x5c) Slave Configuration Register 7 --------
  437. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG7 (0x7 << 18) // (HMATRIX2) Fixed Index of Default Master
  438. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG7_ARMS (0x1 << 18) // (HMATRIX2) ARMS is Default Master
  439. // -------- MATRIX_SCFG8 : (HMATRIX2 Offset: 0x60) Slave Configuration Register 8 --------
  440. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG8 (0x7 << 18) // (HMATRIX2) Fixed Index of Default Master
  441. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG8_ARMS (0x1 << 18) // (HMATRIX2) ARMS is Default Master
  442. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG8_HDMA (0x4 << 18) // (HMATRIX2) HDMA is Default Master
  443. // -------- MATRIX_SCFG9 : (HMATRIX2 Offset: 0x64) Slave Configuration Register 9 --------
  444. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG9 (0x7 << 18) // (HMATRIX2) Fixed Index of Default Master
  445. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG9_ARMS (0x1 << 18) // (HMATRIX2) ARMS is Default Master
  446. #define AT91C_MATRIX_FIXED_DEFMSTR_SCFG9_HDMA (0x4 << 18) // (HMATRIX2) HDMA is Default Master
  447. // -------- MATRIX_SFR0 : (HMATRIX2 Offset: 0x110) Special Function Register 0 --------
  448. // -------- MATRIX_SFR0 : (HMATRIX2 Offset: 0x114) Special Function Register 0 --------
  449. // -------- MATRIX_SFR0 : (HMATRIX2 Offset: 0x118) Special Function Register 0 --------
  450. // -------- MATRIX_SFR0 : (HMATRIX2 Offset: 0x11c) Special Function Register 0 --------
  451. // -------- MATRIX_SFR0 : (HMATRIX2 Offset: 0x120) Special Function Register 0 --------
  452. // -------- MATRIX_SFR0 : (HMATRIX2 Offset: 0x124) Special Function Register 0 --------
  453. // -------- MATRIX_SFR0 : (HMATRIX2 Offset: 0x128) Special Function Register 0 --------
  454. // -------- MATRIX_SFR0 : (HMATRIX2 Offset: 0x12c) Special Function Register 0 --------
  455. // -------- MATRIX_SFR0 : (HMATRIX2 Offset: 0x130) Special Function Register 0 --------
  456. // -------- MATRIX_SFR0 : (HMATRIX2 Offset: 0x134) Special Function Register 0 --------
  457. // -------- MATRIX_SFR0 : (HMATRIX2 Offset: 0x138) Special Function Register 0 --------
  458. // -------- MATRIX_SFR0 : (HMATRIX2 Offset: 0x13c) Special Function Register 0 --------
  459. // -------- MATRIX_SFR0 : (HMATRIX2 Offset: 0x140) Special Function Register 0 --------
  460. // -------- MATRIX_SFR0 : (HMATRIX2 Offset: 0x144) Special Function Register 0 --------
  461. // -------- MATRIX_SFR0 : (HMATRIX2 Offset: 0x148) Special Function Register 0 --------
  462. // -------- MATRIX_SFR0 : (HMATRIX2 Offset: 0x14c) Special Function Register 0 --------
  463. // -------- HMATRIX2_VER : (HMATRIX2 Offset: 0x1fc) VERSION Register --------
  464. #define AT91C_HMATRIX2_VER (0xF << 0) // (HMATRIX2) VERSION Register
  465. // *****************************************************************************
  466. // SOFTWARE API DEFINITION FOR NESTED vector Interrupt Controller
  467. // *****************************************************************************
  468. #ifndef __ASSEMBLY__
  469. #else
  470. #define NVIC_ICTR (AT91_CAST(AT91_REG *) 0x00000004) // (NVIC_ICTR) Interrupt Control Type Register
  471. #define NVIC_STICKCSR (AT91_CAST(AT91_REG *) 0x00000010) // (NVIC_STICKCSR) SysTick Control and Status Register
  472. #define NVIC_STICKRVR (AT91_CAST(AT91_REG *) 0x00000014) // (NVIC_STICKRVR) SysTick Reload Value Register
  473. #define NVIC_STICKCVR (AT91_CAST(AT91_REG *) 0x00000018) // (NVIC_STICKCVR) SysTick Current Value Register
  474. #define NVIC_STICKCALVR (AT91_CAST(AT91_REG *) 0x0000001C) // (NVIC_STICKCALVR) SysTick Calibration Value Register
  475. #define NVIC_ISER (AT91_CAST(AT91_REG *) 0x00000100) // (NVIC_ISER) Set Enable Register
  476. #define NVIC_ICER (AT91_CAST(AT91_REG *) 0x00000180) // (NVIC_ICER) Clear enable Register
  477. #define NVIC_ISPR (AT91_CAST(AT91_REG *) 0x00000200) // (NVIC_ISPR) Set Pending Register
  478. #define NVIC_ICPR (AT91_CAST(AT91_REG *) 0x00000280) // (NVIC_ICPR) Clear Pending Register
  479. #define NVIC_IABR (AT91_CAST(AT91_REG *) 0x00000300) // (NVIC_IABR) Active Bit Register
  480. #define NVIC_IPR (AT91_CAST(AT91_REG *) 0x00000400) // (NVIC_IPR) Interrupt Mask Register
  481. #define NVIC_CPUID (AT91_CAST(AT91_REG *) 0x00000D00) // (NVIC_CPUID) CPUID Base Register
  482. #define NVIC_ICSR (AT91_CAST(AT91_REG *) 0x00000D04) // (NVIC_ICSR) Interrupt Control State Register
  483. #define NVIC_VTOFFR (AT91_CAST(AT91_REG *) 0x00000D08) // (NVIC_VTOFFR) Vector Table Offset Register
  484. #define NVIC_AIRCR (AT91_CAST(AT91_REG *) 0x00000D0C) // (NVIC_AIRCR) Application Interrupt/Reset Control Reg
  485. #define NVIC_SCR (AT91_CAST(AT91_REG *) 0x00000D10) // (NVIC_SCR) System Control Register
  486. #define NVIC_CCR (AT91_CAST(AT91_REG *) 0x00000D14) // (NVIC_CCR) Configuration Control Register
  487. #define NVIC_HAND4PR (AT91_CAST(AT91_REG *) 0x00000D18) // (NVIC_HAND4PR) System Handlers 4-7 Priority Register
  488. #define NVIC_HAND8PR (AT91_CAST(AT91_REG *) 0x00000D1C) // (NVIC_HAND8PR) System Handlers 8-11 Priority Register
  489. #define NVIC_HAND12PR (AT91_CAST(AT91_REG *) 0x00000D20) // (NVIC_HAND12PR) System Handlers 12-15 Priority Register
  490. #define NVIC_HANDCSR (AT91_CAST(AT91_REG *) 0x00000D24) // (NVIC_HANDCSR) System Handler Control and State Register
  491. #define NVIC_CFSR (AT91_CAST(AT91_REG *) 0x00000D28) // (NVIC_CFSR) Configurable Fault Status Register
  492. #define NVIC_HFSR (AT91_CAST(AT91_REG *) 0x00000D2C) // (NVIC_HFSR) Hard Fault Status Register
  493. #define NVIC_DFSR (AT91_CAST(AT91_REG *) 0x00000D30) // (NVIC_DFSR) Debug Fault Status Register
  494. #define NVIC_MMAR (AT91_CAST(AT91_REG *) 0x00000D34) // (NVIC_MMAR) Mem Manage Address Register
  495. #define NVIC_BFAR (AT91_CAST(AT91_REG *) 0x00000D38) // (NVIC_BFAR) Bus Fault Address Register
  496. #define NVIC_AFSR (AT91_CAST(AT91_REG *) 0x00000D3C) // (NVIC_AFSR) Auxiliary Fault Status Register
  497. #define NVIC_PFR0 (AT91_CAST(AT91_REG *) 0x00000D40) // (NVIC_PFR0) Processor Feature register0
  498. #define NVIC_PFR1 (AT91_CAST(AT91_REG *) 0x00000D44) // (NVIC_PFR1) Processor Feature register1
  499. #define NVIC_DFR0 (AT91_CAST(AT91_REG *) 0x00000D48) // (NVIC_DFR0) Debug Feature register0
  500. #define NVIC_AFR0 (AT91_CAST(AT91_REG *) 0x00000D4C) // (NVIC_AFR0) Auxiliary Feature register0
  501. #define NVIC_MMFR0 (AT91_CAST(AT91_REG *) 0x00000D50) // (NVIC_MMFR0) Memory Model Feature register0
  502. #define NVIC_MMFR1 (AT91_CAST(AT91_REG *) 0x00000D54) // (NVIC_MMFR1) Memory Model Feature register1
  503. #define NVIC_MMFR2 (AT91_CAST(AT91_REG *) 0x00000D58) // (NVIC_MMFR2) Memory Model Feature register2
  504. #define NVIC_MMFR3 (AT91_CAST(AT91_REG *) 0x00000D5C) // (NVIC_MMFR3) Memory Model Feature register3
  505. #define NVIC_ISAR0 (AT91_CAST(AT91_REG *) 0x00000D60) // (NVIC_ISAR0) ISA Feature register0
  506. #define NVIC_ISAR1 (AT91_CAST(AT91_REG *) 0x00000D64) // (NVIC_ISAR1) ISA Feature register1
  507. #define NVIC_ISAR2 (AT91_CAST(AT91_REG *) 0x00000D68) // (NVIC_ISAR2) ISA Feature register2
  508. #define NVIC_ISAR3 (AT91_CAST(AT91_REG *) 0x00000D6C) // (NVIC_ISAR3) ISA Feature register3
  509. #define NVIC_ISAR4 (AT91_CAST(AT91_REG *) 0x00000D70) // (NVIC_ISAR4) ISA Feature register4
  510. #define NVIC_STIR (AT91_CAST(AT91_REG *) 0x00000F00) // (NVIC_STIR) Software Trigger Interrupt Register
  511. #define NVIC_PID4 (AT91_CAST(AT91_REG *) 0x00000FD0) // (NVIC_PID4) Peripheral identification register
  512. #define NVIC_PID5 (AT91_CAST(AT91_REG *) 0x00000FD4) // (NVIC_PID5) Peripheral identification register
  513. #define NVIC_PID6 (AT91_CAST(AT91_REG *) 0x00000FD8) // (NVIC_PID6) Peripheral identification register
  514. #define NVIC_PID7 (AT91_CAST(AT91_REG *) 0x00000FDC) // (NVIC_PID7) Peripheral identification register
  515. #define NVIC_PID0 (AT91_CAST(AT91_REG *) 0x00000FE0) // (NVIC_PID0) Peripheral identification register b7:0
  516. #define NVIC_PID1 (AT91_CAST(AT91_REG *) 0x00000FE4) // (NVIC_PID1) Peripheral identification register b15:8
  517. #define NVIC_PID2 (AT91_CAST(AT91_REG *) 0x00000FE8) // (NVIC_PID2) Peripheral identification register b23:16
  518. #define NVIC_PID3 (AT91_CAST(AT91_REG *) 0x00000FEC) // (NVIC_PID3) Peripheral identification register b31:24
  519. #define NVIC_CID0 (AT91_CAST(AT91_REG *) 0x00000FF0) // (NVIC_CID0) Component identification register b7:0
  520. #define NVIC_CID1 (AT91_CAST(AT91_REG *) 0x00000FF4) // (NVIC_CID1) Component identification register b15:8
  521. #define NVIC_CID2 (AT91_CAST(AT91_REG *) 0x00000FF8) // (NVIC_CID2) Component identification register b23:16
  522. #define NVIC_CID3 (AT91_CAST(AT91_REG *) 0x00000FFC) // (NVIC_CID3) Component identification register b31:24
  523. #endif
  524. // -------- NVIC_ICTR : (NVIC Offset: 0x4) Interrupt Controller Type Register --------
  525. #define AT91C_NVIC_INTLINESNUM (0xF << 0) // (NVIC) Total number of interrupt lines
  526. #define AT91C_NVIC_INTLINESNUM_32 (0x0) // (NVIC) up to 32 interrupt lines supported
  527. #define AT91C_NVIC_INTLINESNUM_64 (0x1) // (NVIC) up to 64 interrupt lines supported
  528. #define AT91C_NVIC_INTLINESNUM_96 (0x2) // (NVIC) up to 96 interrupt lines supported
  529. #define AT91C_NVIC_INTLINESNUM_128 (0x3) // (NVIC) up to 128 interrupt lines supported
  530. #define AT91C_NVIC_INTLINESNUM_160 (0x4) // (NVIC) up to 160 interrupt lines supported
  531. #define AT91C_NVIC_INTLINESNUM_192 (0x5) // (NVIC) up to 192 interrupt lines supported
  532. #define AT91C_NVIC_INTLINESNUM_224 (0x6) // (NVIC) up to 224 interrupt lines supported
  533. #define AT91C_NVIC_INTLINESNUM_256 (0x7) // (NVIC) up to 256 interrupt lines supported
  534. #define AT91C_NVIC_INTLINESNUM_288 (0x8) // (NVIC) up to 288 interrupt lines supported
  535. #define AT91C_NVIC_INTLINESNUM_320 (0x9) // (NVIC) up to 320 interrupt lines supported
  536. #define AT91C_NVIC_INTLINESNUM_352 (0xA) // (NVIC) up to 352 interrupt lines supported
  537. #define AT91C_NVIC_INTLINESNUM_384 (0xB) // (NVIC) up to 384 interrupt lines supported
  538. #define AT91C_NVIC_INTLINESNUM_416 (0xC) // (NVIC) up to 416 interrupt lines supported
  539. #define AT91C_NVIC_INTLINESNUM_448 (0xD) // (NVIC) up to 448 interrupt lines supported
  540. #define AT91C_NVIC_INTLINESNUM_480 (0xE) // (NVIC) up to 480 interrupt lines supported
  541. #define AT91C_NVIC_INTLINESNUM_496 (0xF) // (NVIC) up to 496 interrupt lines supported)
  542. // -------- NVIC_STICKCSR : (NVIC Offset: 0x10) SysTick Control and Status Register --------
  543. #define AT91C_NVIC_STICKENABLE (0x1 << 0) // (NVIC) SysTick counter enable.
  544. #define AT91C_NVIC_STICKINT (0x1 << 1) // (NVIC) SysTick interrupt enable.
  545. #define AT91C_NVIC_STICKCLKSOURCE (0x1 << 2) // (NVIC) Reference clock selection.
  546. #define AT91C_NVIC_STICKCOUNTFLAG (0x1 << 16) // (NVIC) Return 1 if timer counted to 0 since last read.
  547. // -------- NVIC_STICKRVR : (NVIC Offset: 0x14) SysTick Reload Value Register --------
  548. #define AT91C_NVIC_STICKRELOAD (0xFFFFFF << 0) // (NVIC) SysTick reload value.
  549. // -------- NVIC_STICKCVR : (NVIC Offset: 0x18) SysTick Current Value Register --------
  550. #define AT91C_NVIC_STICKCURRENT (0x7FFFFFFF << 0) // (NVIC) SysTick current value.
  551. // -------- NVIC_STICKCALVR : (NVIC Offset: 0x1c) SysTick Calibration Value Register --------
  552. #define AT91C_NVIC_STICKTENMS (0xFFFFFF << 0) // (NVIC) Reload value to use for 10ms timing.
  553. #define AT91C_NVIC_STICKSKEW (0x1 << 30) // (NVIC) Read as 1 if the calibration value is not exactly 10ms because of clock frequency.
  554. #define AT91C_NVIC_STICKNOREF (0x1 << 31) // (NVIC) Read as 1 if the reference clock is not provided.
  555. // -------- NVIC_IPR : (NVIC Offset: 0x400) Interrupt Priority Registers --------
  556. #define AT91C_NVIC_PRI_N (0xFF << 0) // (NVIC) Priority of interrupt N (0, 4, 8, etc)
  557. #define AT91C_NVIC_PRI_N1 (0xFF << 8) // (NVIC) Priority of interrupt N+1 (1, 5, 9, etc)
  558. #define AT91C_NVIC_PRI_N2 (0xFF << 16) // (NVIC) Priority of interrupt N+2 (2, 6, 10, etc)
  559. #define AT91C_NVIC_PRI_N3 (0xFF << 24) // (NVIC) Priority of interrupt N+3 (3, 7, 11, etc)
  560. // -------- NVIC_CPUID : (NVIC Offset: 0xd00) CPU ID Base Register --------
  561. #define AT91C_NVIC_REVISION (0xF << 0) // (NVIC) Implementation defined revision number.
  562. #define AT91C_NVIC_PARTNO (0xFFF << 4) // (NVIC) Number of processor within family
  563. #define AT91C_NVIC_CONSTANT (0xF << 16) // (NVIC) Reads as 0xF
  564. #define AT91C_NVIC_VARIANT (0xF << 20) // (NVIC) Implementation defined variant number.
  565. #define AT91C_NVIC_IMPLEMENTER (0xFF << 24) // (NVIC) Implementer code. ARM is 0x41
  566. // -------- NVIC_ICSR : (NVIC Offset: 0xd04) Interrupt Control State Register --------
  567. #define AT91C_NVIC_VECTACTIVE (0x1FF << 0) // (NVIC) Read-only Active ISR number field
  568. #define AT91C_NVIC_RETTOBASE (0x1 << 11) // (NVIC) Read-only
  569. #define AT91C_NVIC_VECTPENDING (0x1FF << 12) // (NVIC) Read-only Pending ISR number field
  570. #define AT91C_NVIC_ISRPENDING (0x1 << 22) // (NVIC) Read-only Interrupt pending flag.
  571. #define AT91C_NVIC_ISRPREEMPT (0x1 << 23) // (NVIC) Read-only You must only use this at debug time
  572. #define AT91C_NVIC_PENDSTCLR (0x1 << 25) // (NVIC) Write-only Clear pending SysTick bit
  573. #define AT91C_NVIC_PENDSTSET (0x1 << 26) // (NVIC) Read/write Set a pending SysTick bit
  574. #define AT91C_NVIC_PENDSVCLR (0x1 << 27) // (NVIC) Write-only Clear pending pendSV bit
  575. #define AT91C_NVIC_PENDSVSET (0x1 << 28) // (NVIC) Read/write Set pending pendSV bit
  576. #define AT91C_NVIC_NMIPENDSET (0x1 << 31) // (NVIC) Read/write Set pending NMI
  577. // -------- NVIC_VTOFFR : (NVIC Offset: 0xd08) Vector Table Offset Register --------
  578. #define AT91C_NVIC_TBLOFF (0x3FFFFF << 7) // (NVIC) Vector table base offset field
  579. #define AT91C_NVIC_TBLBASE (0x1 << 29) // (NVIC) Table base is in Code (0) or RAM (1)
  580. #define AT91C_NVIC_TBLBASE_CODE (0x0 << 29) // (NVIC) Table base is in CODE
  581. #define AT91C_NVIC_TBLBASE_RAM (0x1 << 29) // (NVIC) Table base is in RAM
  582. // -------- NVIC_AIRCR : (NVIC Offset: 0xd0c) Application Interrupt and Reset Control Register --------
  583. #define AT91C_NVIC_VECTRESET (0x1 << 0) // (NVIC) System Reset bit
  584. #define AT91C_NVIC_VECTCLRACTIVE (0x1 << 1) // (NVIC) Clear active vector bit
  585. #define AT91C_NVIC_SYSRESETREQ (0x1 << 2) // (NVIC) Causes a signal to be asserted to the outer system that indicates a reset is requested
  586. #define AT91C_NVIC_PRIGROUP (0x7 << 8) // (NVIC) Interrupt priority grouping field
  587. #define AT91C_NVIC_PRIGROUP_0 (0x0 << 8) // (NVIC) indicates seven bits of pre-emption priority, one bit of subpriority
  588. #define AT91C_NVIC_PRIGROUP_1 (0x1 << 8) // (NVIC) indicates six bits of pre-emption priority, two bits of subpriority
  589. #define AT91C_NVIC_PRIGROUP_2 (0x2 << 8) // (NVIC) indicates five bits of pre-emption priority, three bits of subpriority
  590. #define AT91C_NVIC_PRIGROUP_3 (0x3 << 8) // (NVIC) indicates four bits of pre-emption priority, four bits of subpriority
  591. #define AT91C_NVIC_PRIGROUP_4 (0x4 << 8) // (NVIC) indicates three bits of pre-emption priority, five bits of subpriority
  592. #define AT91C_NVIC_PRIGROUP_5 (0x5 << 8) // (NVIC) indicates two bits of pre-emption priority, six bits of subpriority
  593. #define AT91C_NVIC_PRIGROUP_6 (0x6 << 8) // (NVIC) indicates one bit of pre-emption priority, seven bits of subpriority
  594. #define AT91C_NVIC_PRIGROUP_7 (0x7 << 8) // (NVIC) indicates no pre-emption priority, eight bits of subpriority
  595. #define AT91C_NVIC_ENDIANESS (0x1 << 15) // (NVIC) Data endianness bit
  596. #define AT91C_NVIC_VECTKEY (0xFFFF << 16) // (NVIC) Register key
  597. // -------- NVIC_SCR : (NVIC Offset: 0xd10) System Control Register --------
  598. #define AT91C_NVIC_SLEEPONEXIT (0x1 << 1) // (NVIC) Sleep on exit when returning from Handler mode to Thread mode
  599. #define AT91C_NVIC_SLEEPDEEP (0x1 << 2) // (NVIC) Sleep deep bit
  600. #define AT91C_NVIC_SEVONPEND (0x1 << 4) // (NVIC) When enabled, this causes WFE to wake up when an interrupt moves from inactive to pended
  601. // -------- NVIC_CCR : (NVIC Offset: 0xd14) Configuration Control Register --------
  602. #define AT91C_NVIC_NONEBASETHRDENA (0x1 << 0) // (NVIC) When 0, default, It is only possible to enter Thread mode when returning from the last exception
  603. #define AT91C_NVIC_USERSETMPEND (0x1 << 1) // (NVIC)
  604. #define AT91C_NVIC_UNALIGN_TRP (0x1 << 3) // (NVIC) Trap for unaligned access
  605. #define AT91C_NVIC_DIV_0_TRP (0x1 << 4) // (NVIC) Trap on Divide by 0
  606. #define AT91C_NVIC_BFHFNMIGN (0x1 << 8) // (NVIC)
  607. #define AT91C_NVIC_STKALIGN (0x1 << 9) // (NVIC)
  608. // -------- NVIC_HAND4PR : (NVIC Offset: 0xd18) System Handlers 4-7 Priority Register --------
  609. #define AT91C_NVIC_PRI_4 (0xFF << 0) // (NVIC)
  610. #define AT91C_NVIC_PRI_5 (0xFF << 8) // (NVIC)
  611. #define AT91C_NVIC_PRI_6 (0xFF << 16) // (NVIC)
  612. #define AT91C_NVIC_PRI_7 (0xFF << 24) // (NVIC)
  613. // -------- NVIC_HAND8PR : (NVIC Offset: 0xd1c) System Handlers 8-11 Priority Register --------
  614. #define AT91C_NVIC_PRI_8 (0xFF << 0) // (NVIC)
  615. #define AT91C_NVIC_PRI_9 (0xFF << 8) // (NVIC)
  616. #define AT91C_NVIC_PRI_10 (0xFF << 16) // (NVIC)
  617. #define AT91C_NVIC_PRI_11 (0xFF << 24) // (NVIC)
  618. // -------- NVIC_HAND12PR : (NVIC Offset: 0xd20) System Handlers 12-15 Priority Register --------
  619. #define AT91C_NVIC_PRI_12 (0xFF << 0) // (NVIC)
  620. #define AT91C_NVIC_PRI_13 (0xFF << 8) // (NVIC)
  621. #define AT91C_NVIC_PRI_14 (0xFF << 16) // (NVIC)
  622. #define AT91C_NVIC_PRI_15 (0xFF << 24) // (NVIC)
  623. // -------- NVIC_HANDCSR : (NVIC Offset: 0xd24) System Handler Control and State Register --------
  624. #define AT91C_NVIC_MEMFAULTACT (0x1 << 0) // (NVIC)
  625. #define AT91C_NVIC_BUSFAULTACT (0x1 << 1) // (NVIC)
  626. #define AT91C_NVIC_USGFAULTACT (0x1 << 3) // (NVIC)
  627. #define AT91C_NVIC_SVCALLACT (0x1 << 7) // (NVIC)
  628. #define AT91C_NVIC_MONITORACT (0x1 << 8) // (NVIC)
  629. #define AT91C_NVIC_PENDSVACT (0x1 << 10) // (NVIC)
  630. #define AT91C_NVIC_SYSTICKACT (0x1 << 11) // (NVIC)
  631. #define AT91C_NVIC_USGFAULTPENDED (0x1 << 12) // (NVIC)
  632. #define AT91C_NVIC_MEMFAULTPENDED (0x1 << 13) // (NVIC)
  633. #define AT91C_NVIC_BUSFAULTPENDED (0x1 << 14) // (NVIC)
  634. #define AT91C_NVIC_SVCALLPENDED (0x1 << 15) // (NVIC)
  635. #define AT91C_NVIC_MEMFAULTENA (0x1 << 16) // (NVIC)
  636. #define AT91C_NVIC_BUSFAULTENA (0x1 << 17) // (NVIC)
  637. #define AT91C_NVIC_USGFAULTENA (0x1 << 18) // (NVIC)
  638. // -------- NVIC_CFSR : (NVIC Offset: 0xd28) Configurable Fault Status Registers --------
  639. #define AT91C_NVIC_MEMMANAGE (0xFF << 0) // (NVIC)
  640. #define AT91C_NVIC_BUSFAULT (0xFF << 8) // (NVIC)
  641. #define AT91C_NVIC_USAGEFAULT (0xFF << 16) // (NVIC)
  642. // -------- NVIC_BFAR : (NVIC Offset: 0xd38) Bus Fault Address Register --------
  643. #define AT91C_NVIC_IBUSERR (0x1 << 0) // (NVIC) This bit indicates a bus fault on an instruction prefetch
  644. #define AT91C_NVIC_PRECISERR (0x1 << 1) // (NVIC) Precise data access error. The BFAR is written with the faulting address
  645. #define AT91C_NVIC_IMPRECISERR (0x1 << 2) // (NVIC) Imprecise data access error
  646. #define AT91C_NVIC_UNSTKERR (0x1 << 3) // (NVIC) This bit indicates a derived bus fault has occurred on exception return
  647. #define AT91C_NVIC_STKERR (0x1 << 4) // (NVIC) This bit indicates a derived bus fault has occurred on exception entry
  648. #define AT91C_NVIC_BFARVALID (0x1 << 7) // (NVIC) This bit is set if the BFAR register has valid contents
  649. // -------- NVIC_PFR0 : (NVIC Offset: 0xd40) Processor Feature register0 (ID_PFR0) --------
  650. #define AT91C_NVIC_ID_PFR0_0 (0xF << 0) // (NVIC) State0 (T-bit == 0)
  651. #define AT91C_NVIC_ID_PRF0_1 (0xF << 4) // (NVIC) State1 (T-bit == 1)
  652. // -------- NVIC_PFR1 : (NVIC Offset: 0xd44) Processor Feature register1 (ID_PFR1) --------
  653. #define AT91C_NVIC_ID_PRF1_MODEL (0xF << 8) // (NVIC) Microcontroller programmer’s model
  654. // -------- NVIC_DFR0 : (NVIC Offset: 0xd48) Debug Feature register0 (ID_DFR0) --------
  655. #define AT91C_NVIC_ID_DFR0_MODEL (0xF << 20) // (NVIC) Microcontroller Debug Model – memory mapped
  656. // -------- NVIC_MMFR0 : (NVIC Offset: 0xd50) Memory Model Feature register0 (ID_MMFR0) --------
  657. #define AT91C_NVIC_ID_MMFR0_PMSA (0xF << 4) // (NVIC) Microcontroller Debug Model – memory mapped
  658. #define AT91C_NVIC_ID_MMFR0_CACHE (0xF << 8) // (NVIC) Microcontroller Debug Model – memory mapped
  659. // *****************************************************************************
  660. // SOFTWARE API DEFINITION FOR NESTED vector Interrupt Controller
  661. // *****************************************************************************
  662. #ifndef __ASSEMBLY__
  663. #else
  664. #define MPU_TYPE (AT91_CAST(AT91_REG *) 0x00000000) // (MPU_TYPE) MPU Type Register
  665. #define MPU_CTRL (AT91_CAST(AT91_REG *) 0x00000004) // (MPU_CTRL) MPU Control Register
  666. #define MPU_REG_NB (AT91_CAST(AT91_REG *) 0x00000008) // (MPU_REG_NB) MPU Region Number Register
  667. #define MPU_REG_BASE_ADDR (AT91_CAST(AT91_REG *) 0x0000000C) // (MPU_REG_BASE_ADDR) MPU Region Base Address Register
  668. #define MPU_ATTR_SIZE (AT91_CAST(AT91_REG *) 0x00000010) // (MPU_ATTR_SIZE) MPU Attribute and Size Register
  669. #define MPU_REG_BASE_ADDR1 (AT91_CAST(AT91_REG *) 0x00000014) // (MPU_REG_BASE_ADDR1) MPU Region Base Address Register alias 1
  670. #define MPU_ATTR_SIZE1 (AT91_CAST(AT91_REG *) 0x00000018) // (MPU_ATTR_SIZE1) MPU Attribute and Size Register alias 1
  671. #define MPU_REG_BASE_ADDR2 (AT91_CAST(AT91_REG *) 0x0000001C) // (MPU_REG_BASE_ADDR2) MPU Region Base Address Register alias 2
  672. #define MPU_ATTR_SIZE2 (AT91_CAST(AT91_REG *) 0x00000020) // (MPU_ATTR_SIZE2) MPU Attribute and Size Register alias 2
  673. #define MPU_REG_BASE_ADDR3 (AT91_CAST(AT91_REG *) 0x00000024) // (MPU_REG_BASE_ADDR3) MPU Region Base Address Register alias 3
  674. #define MPU_ATTR_SIZE3 (AT91_CAST(AT91_REG *) 0x00000028) // (MPU_ATTR_SIZE3) MPU Attribute and Size Register alias 3
  675. #endif
  676. // -------- MPU_TYPE : (MPU Offset: 0x0) --------
  677. #define AT91C_MPU_SEPARATE (0x1 << 0) // (MPU)
  678. #define AT91C_MPU_DREGION (0xFF << 8) // (MPU)
  679. #define AT91C_MPU_IREGION (0xFF << 16) // (MPU)
  680. // -------- MPU_CTRL : (MPU Offset: 0x4) --------
  681. #define AT91C_MPU_ENABLE (0x1 << 0) // (MPU)
  682. #define AT91C_MPU_HFNMIENA (0x1 << 1) // (MPU)
  683. #define AT91C_MPU_PRIVDEFENA (0x1 << 2) // (MPU)
  684. // -------- MPU_REG_NB : (MPU Offset: 0x8) --------
  685. #define AT91C_MPU_REGION (0xFF << 0) // (MPU)
  686. // -------- MPU_REG_BASE_ADDR : (MPU Offset: 0xc) --------
  687. #define AT91C_MPU_REG (0xF << 0) // (MPU)
  688. #define AT91C_MPU_VALID (0x1 << 4) // (MPU)
  689. #define AT91C_MPU_ADDR (0x3FFFFFF << 5) // (MPU)
  690. // -------- MPU_ATTR_SIZE : (MPU Offset: 0x10) --------
  691. #define AT91C_MPU_ENA (0x1 << 0) // (MPU)
  692. #define AT91C_MPU_SIZE (0xF << 1) // (MPU)
  693. #define AT91C_MPU_SRD (0xFF << 8) // (MPU)
  694. #define AT91C_MPU_B (0x1 << 16) // (MPU)
  695. #define AT91C_MPU_C (0x1 << 17) // (MPU)
  696. #define AT91C_MPU_S (0x1 << 18) // (MPU)
  697. #define AT91C_MPU_TEX (0x7 << 19) // (MPU)
  698. #define AT91C_MPU_AP (0x7 << 24) // (MPU)
  699. #define AT91C_MPU_XN (0x7 << 28) // (MPU)
  700. // *****************************************************************************
  701. // SOFTWARE API DEFINITION FOR CORTEX_M3 Registers
  702. // *****************************************************************************
  703. #ifndef __ASSEMBLY__
  704. #else
  705. #define CM3_CPUID (AT91_CAST(AT91_REG *) 0x00000000) // (CM3_CPUID) CPU ID Base Register
  706. #define CM3_ICSR (AT91_CAST(AT91_REG *) 0x00000004) // (CM3_ICSR) Interrupt Control State Register
  707. #define CM3_VTOR (AT91_CAST(AT91_REG *) 0x00000008) // (CM3_VTOR) Vector Table Offset Register
  708. #define CM3_AIRCR (AT91_CAST(AT91_REG *) 0x0000000C) // (CM3_AIRCR) Application Interrupt and Reset Control Register
  709. #define CM3_SCR (AT91_CAST(AT91_REG *) 0x00000010) // (CM3_SCR) System Controller Register
  710. #define CM3_CCR (AT91_CAST(AT91_REG *) 0x00000014) // (CM3_CCR) Configuration Control Register
  711. #define CM3_SHPR (AT91_CAST(AT91_REG *) 0x00000018) // (CM3_SHPR) System Handler Priority Register
  712. #define CM3_SHCSR (AT91_CAST(AT91_REG *) 0x00000024) // (CM3_SHCSR) System Handler Control and State Register
  713. #endif
  714. // -------- CM3_CPUID : (CM3 Offset: 0x0) --------
  715. // -------- CM3_AIRCR : (CM3 Offset: 0xc) --------
  716. #define AT91C_CM3_SYSRESETREQ (0x1 << 2) // (CM3) A reset is requested by the processor.
  717. // -------- CM3_SCR : (CM3 Offset: 0x10) --------
  718. #define AT91C_CM3_SLEEPONEXIT (0x1 << 1) // (CM3) Sleep on exit when returning from Handler mode to Thread mode. Enables interrupt driven applications to avoid returning to empty main application.
  719. #define AT91C_CM3_SLEEPDEEP (0x1 << 2) // (CM3) Sleep deep bit.
  720. #define AT91C_CM3_SEVONPEND (0x1 << 4) // (CM3) When enabled, this causes WFE to wake up when an interrupt moves from inactive to pended.
  721. // -------- CM3_SHCSR : (CM3 Offset: 0x24) --------
  722. #define AT91C_CM3_SYSTICKACT (0x1 << 11) // (CM3) Reads as 1 if SysTick is active.
  723. // *****************************************************************************
  724. // SOFTWARE API DEFINITION FOR Peripheral DMA Controller
  725. // *****************************************************************************
  726. #ifndef __ASSEMBLY__
  727. #else
  728. #define PDC_RPR (AT91_CAST(AT91_REG *) 0x00000000) // (PDC_RPR) Receive Pointer Register
  729. #define PDC_RCR (AT91_CAST(AT91_REG *) 0x00000004) // (PDC_RCR) Receive Counter Register
  730. #define PDC_TPR (AT91_CAST(AT91_REG *) 0x00000008) // (PDC_TPR) Transmit Pointer Register
  731. #define PDC_TCR (AT91_CAST(AT91_REG *) 0x0000000C) // (PDC_TCR) Transmit Counter Register
  732. #define PDC_RNPR (AT91_CAST(AT91_REG *) 0x00000010) // (PDC_RNPR) Receive Next Pointer Register
  733. #define PDC_RNCR (AT91_CAST(AT91_REG *) 0x00000014) // (PDC_RNCR) Receive Next Counter Register
  734. #define PDC_TNPR (AT91_CAST(AT91_REG *) 0x00000018) // (PDC_TNPR) Transmit Next Pointer Register
  735. #define PDC_TNCR (AT91_CAST(AT91_REG *) 0x0000001C) // (PDC_TNCR) Transmit Next Counter Register
  736. #define PDC_PTCR (AT91_CAST(AT91_REG *) 0x00000020) // (PDC_PTCR) PDC Transfer Control Register
  737. #define PDC_PTSR (AT91_CAST(AT91_REG *) 0x00000024) // (PDC_PTSR) PDC Transfer Status Register
  738. #endif
  739. // -------- PDC_PTCR : (PDC Offset: 0x20) PDC Transfer Control Register --------
  740. #define AT91C_PDC_RXTEN (0x1 << 0) // (PDC) Receiver Transfer Enable
  741. #define AT91C_PDC_RXTDIS (0x1 << 1) // (PDC) Receiver Transfer Disable
  742. #define AT91C_PDC_TXTEN (0x1 << 8) // (PDC) Transmitter Transfer Enable
  743. #define AT91C_PDC_TXTDIS (0x1 << 9) // (PDC) Transmitter Transfer Disable
  744. // -------- PDC_PTSR : (PDC Offset: 0x24) PDC Transfer Status Register --------
  745. // *****************************************************************************
  746. // SOFTWARE API DEFINITION FOR Debug Unit
  747. // *****************************************************************************
  748. #ifndef __ASSEMBLY__
  749. #else
  750. #define DBGU_CR (AT91_CAST(AT91_REG *) 0x00000000) // (DBGU_CR) Control Register
  751. #define DBGU_MR (AT91_CAST(AT91_REG *) 0x00000004) // (DBGU_MR) Mode Register
  752. #define DBGU_IER (AT91_CAST(AT91_REG *) 0x00000008) // (DBGU_IER) Interrupt Enable Register
  753. #define DBGU_IDR (AT91_CAST(AT91_REG *) 0x0000000C) // (DBGU_IDR) Interrupt Disable Register
  754. #define DBGU_IMR (AT91_CAST(AT91_REG *) 0x00000010) // (DBGU_IMR) Interrupt Mask Register
  755. #define DBGU_CSR (AT91_CAST(AT91_REG *) 0x00000014) // (DBGU_CSR) Channel Status Register
  756. #define DBGU_RHR (AT91_CAST(AT91_REG *) 0x00000018) // (DBGU_RHR) Receiver Holding Register
  757. #define DBGU_THR (AT91_CAST(AT91_REG *) 0x0000001C) // (DBGU_THR) Transmitter Holding Register
  758. #define DBGU_BRGR (AT91_CAST(AT91_REG *) 0x00000020) // (DBGU_BRGR) Baud Rate Generator Register
  759. #define DBGU_FNTR (AT91_CAST(AT91_REG *) 0x00000048) // (DBGU_FNTR) Force NTRST Register
  760. #define DBGU_ADDRSIZE (AT91_CAST(AT91_REG *) 0x000000EC) // (DBGU_ADDRSIZE) DBGU ADDRSIZE REGISTER
  761. #define DBGU_IPNAME1 (AT91_CAST(AT91_REG *) 0x000000F0) // (DBGU_IPNAME1) DBGU IPNAME1 REGISTER
  762. #define DBGU_IPNAME2 (AT91_CAST(AT91_REG *) 0x000000F4) // (DBGU_IPNAME2) DBGU IPNAME2 REGISTER
  763. #define DBGU_FEATURES (AT91_CAST(AT91_REG *) 0x000000F8) // (DBGU_FEATURES) DBGU FEATURES REGISTER
  764. #define DBGU_VER (AT91_CAST(AT91_REG *) 0x000000FC) // (DBGU_VER) DBGU VERSION REGISTER
  765. #define DBGU_CIDR (AT91_CAST(AT91_REG *) 0x00000140) // (DBGU_CIDR) Chip ID Register
  766. #define DBGU_EXID (AT91_CAST(AT91_REG *) 0x00000144) // (DBGU_EXID) Chip ID Extension Register
  767. #endif
  768. // -------- DBGU_CR : (DBGU Offset: 0x0) Debug Unit Control Register --------
  769. #define AT91C_DBGU_RSTRX (0x1 << 2) // (DBGU) Reset Receiver
  770. #define AT91C_DBGU_RSTTX (0x1 << 3) // (DBGU) Reset Transmitter
  771. #define AT91C_DBGU_RXEN (0x1 << 4) // (DBGU) Receiver Enable
  772. #define AT91C_DBGU_RXDIS (0x1 << 5) // (DBGU) Receiver Disable
  773. #define AT91C_DBGU_TXEN (0x1 << 6) // (DBGU) Transmitter Enable
  774. #define AT91C_DBGU_TXDIS (0x1 << 7) // (DBGU) Transmitter Disable
  775. #define AT91C_DBGU_RSTSTA (0x1 << 8) // (DBGU) Reset Status Bits
  776. // -------- DBGU_MR : (DBGU Offset: 0x4) Debug Unit Mode Register --------
  777. #define AT91C_DBGU_PAR (0x7 << 9) // (DBGU) Parity type
  778. #define AT91C_DBGU_PAR_EVEN (0x0 << 9) // (DBGU) Even Parity
  779. #define AT91C_DBGU_PAR_ODD (0x1 << 9) // (DBGU) Odd Parity
  780. #define AT91C_DBGU_PAR_SPACE (0x2 << 9) // (DBGU) Parity forced to 0 (Space)
  781. #define AT91C_DBGU_PAR_MARK (0x3 << 9) // (DBGU) Parity forced to 1 (Mark)
  782. #define AT91C_DBGU_PAR_NONE (0x4 << 9) // (DBGU) No Parity
  783. #define AT91C_DBGU_CHMODE (0x3 << 14) // (DBGU) Channel Mode
  784. #define AT91C_DBGU_CHMODE_NORMAL (0x0 << 14) // (DBGU) Normal Mode: The debug unit channel operates as an RX/TX debug unit.
  785. #define AT91C_DBGU_CHMODE_AUTO (0x1 << 14) // (DBGU) Automatic Echo: Receiver Data Input is connected to the TXD pin.
  786. #define AT91C_DBGU_CHMODE_LOCAL (0x2 << 14) // (DBGU) Local Loopback: Transmitter Output Signal is connected to Receiver Input Signal.
  787. #define AT91C_DBGU_CHMODE_REMOTE (0x3 << 14) // (DBGU) Remote Loopback: RXD pin is internally connected to TXD pin.
  788. // -------- DBGU_IER : (DBGU Offset: 0x8) Debug Unit Interrupt Enable Register --------
  789. #define AT91C_DBGU_RXRDY (0x1 << 0) // (DBGU) RXRDY Interrupt
  790. #define AT91C_DBGU_TXRDY (0x1 << 1) // (DBGU) TXRDY Interrupt
  791. #define AT91C_DBGU_ENDRX (0x1 << 3) // (DBGU) End of Receive Transfer Interrupt
  792. #define AT91C_DBGU_ENDTX (0x1 << 4) // (DBGU) End of Transmit Interrupt
  793. #define AT91C_DBGU_OVRE (0x1 << 5) // (DBGU) Overrun Interrupt
  794. #define AT91C_DBGU_FRAME (0x1 << 6) // (DBGU) Framing Error Interrupt
  795. #define AT91C_DBGU_PARE (0x1 << 7) // (DBGU) Parity Error Interrupt
  796. #define AT91C_DBGU_TXEMPTY (0x1 << 9) // (DBGU) TXEMPTY Interrupt
  797. #define AT91C_DBGU_TXBUFE (0x1 << 11) // (DBGU) TXBUFE Interrupt
  798. #define AT91C_DBGU_RXBUFF (0x1 << 12) // (DBGU) RXBUFF Interrupt
  799. #define AT91C_DBGU_COMM_TX (0x1 << 30) // (DBGU) COMM_TX Interrupt
  800. #define AT91C_DBGU_COMM_RX (0x1 << 31) // (DBGU) COMM_RX Interrupt
  801. // -------- DBGU_IDR : (DBGU Offset: 0xc) Debug Unit Interrupt Disable Register --------
  802. // -------- DBGU_IMR : (DBGU Offset: 0x10) Debug Unit Interrupt Mask Register --------
  803. // -------- DBGU_CSR : (DBGU Offset: 0x14) Debug Unit Channel Status Register --------
  804. // -------- DBGU_FNTR : (DBGU Offset: 0x48) Debug Unit FORCE_NTRST Register --------
  805. #define AT91C_DBGU_FORCE_NTRST (0x1 << 0) // (DBGU) Force NTRST in JTAG
  806. // *****************************************************************************
  807. // SOFTWARE API DEFINITION FOR Parallel Input Output Controler
  808. // *****************************************************************************
  809. #ifndef __ASSEMBLY__
  810. #else
  811. #define PIO_PER (AT91_CAST(AT91_REG *) 0x00000000) // (PIO_PER) PIO Enable Register
  812. #define PIO_PDR (AT91_CAST(AT91_REG *) 0x00000004) // (PIO_PDR) PIO Disable Register
  813. #define PIO_PSR (AT91_CAST(AT91_REG *) 0x00000008) // (PIO_PSR) PIO Status Register
  814. #define PIO_OER (AT91_CAST(AT91_REG *) 0x00000010) // (PIO_OER) Output Enable Register
  815. #define PIO_ODR (AT91_CAST(AT91_REG *) 0x00000014) // (PIO_ODR) Output Disable Registerr
  816. #define PIO_OSR (AT91_CAST(AT91_REG *) 0x00000018) // (PIO_OSR) Output Status Register
  817. #define PIO_IFER (AT91_CAST(AT91_REG *) 0x00000020) // (PIO_IFER) Input Filter Enable Register
  818. #define PIO_IFDR (AT91_CAST(AT91_REG *) 0x00000024) // (PIO_IFDR) Input Filter Disable Register
  819. #define PIO_IFSR (AT91_CAST(AT91_REG *) 0x00000028) // (PIO_IFSR) Input Filter Status Register
  820. #define PIO_SODR (AT91_CAST(AT91_REG *) 0x00000030) // (PIO_SODR) Set Output Data Register
  821. #define PIO_CODR (AT91_CAST(AT91_REG *) 0x00000034) // (PIO_CODR) Clear Output Data Register
  822. #define PIO_ODSR (AT91_CAST(AT91_REG *) 0x00000038) // (PIO_ODSR) Output Data Status Register
  823. #define PIO_PDSR (AT91_CAST(AT91_REG *) 0x0000003C) // (PIO_PDSR) Pin Data Status Register
  824. #define PIO_IER (AT91_CAST(AT91_REG *) 0x00000040) // (PIO_IER) Interrupt Enable Register
  825. #define PIO_IDR (AT91_CAST(AT91_REG *) 0x00000044) // (PIO_IDR) Interrupt Disable Register
  826. #define PIO_IMR (AT91_CAST(AT91_REG *) 0x00000048) // (PIO_IMR) Interrupt Mask Register
  827. #define PIO_ISR (AT91_CAST(AT91_REG *) 0x0000004C) // (PIO_ISR) Interrupt Status Register
  828. #define PIO_MDER (AT91_CAST(AT91_REG *) 0x00000050) // (PIO_MDER) Multi-driver Enable Register
  829. #define PIO_MDDR (AT91_CAST(AT91_REG *) 0x00000054) // (PIO_MDDR) Multi-driver Disable Register
  830. #define PIO_MDSR (AT91_CAST(AT91_REG *) 0x00000058) // (PIO_MDSR) Multi-driver Status Register
  831. #define PIO_PPUDR (AT91_CAST(AT91_REG *) 0x00000060) // (PIO_PPUDR) Pull-up Disable Register
  832. #define PIO_PPUER (AT91_CAST(AT91_REG *) 0x00000064) // (PIO_PPUER) Pull-up Enable Register
  833. #define PIO_PPUSR (AT91_CAST(AT91_REG *) 0x00000068) // (PIO_PPUSR) Pull-up Status Register
  834. #define PIO_ABSR (AT91_CAST(AT91_REG *) 0x00000070) // (PIO_ABSR) Peripheral AB Select Register
  835. #define PIO_SCIFSR (AT91_CAST(AT91_REG *) 0x00000080) // (PIO_SCIFSR) System Clock Glitch Input Filter Select Register
  836. #define PIO_DIFSR (AT91_CAST(AT91_REG *) 0x00000084) // (PIO_DIFSR) Debouncing Input Filter Select Register
  837. #define PIO_IFDGSR (AT91_CAST(AT91_REG *) 0x00000088) // (PIO_IFDGSR) Glitch or Debouncing Input Filter Clock Selection Status Register
  838. #define PIO_SCDR (AT91_CAST(AT91_REG *) 0x0000008C) // (PIO_SCDR) Slow Clock Divider Debouncing Register
  839. #define PIO_OWER (AT91_CAST(AT91_REG *) 0x000000A0) // (PIO_OWER) Output Write Enable Register
  840. #define PIO_OWDR (AT91_CAST(AT91_REG *) 0x000000A4) // (PIO_OWDR) Output Write Disable Register
  841. #define PIO_OWSR (AT91_CAST(AT91_REG *) 0x000000A8) // (PIO_OWSR) Output Write Status Register
  842. #define PIO_AIMER (AT91_CAST(AT91_REG *) 0x000000B0) // (PIO_AIMER) Additional Interrupt Modes Enable Register
  843. #define PIO_AIMDR (AT91_CAST(AT91_REG *) 0x000000B4) // (PIO_AIMDR) Additional Interrupt Modes Disables Register
  844. #define PIO_AIMMR (AT91_CAST(AT91_REG *) 0x000000B8) // (PIO_AIMMR) Additional Interrupt Modes Mask Register
  845. #define PIO_ESR (AT91_CAST(AT91_REG *) 0x000000C0) // (PIO_ESR) Edge Select Register
  846. #define PIO_LSR (AT91_CAST(AT91_REG *) 0x000000C4) // (PIO_LSR) Level Select Register
  847. #define PIO_ELSR (AT91_CAST(AT91_REG *) 0x000000C8) // (PIO_ELSR) Edge/Level Status Register
  848. #define PIO_FELLSR (AT91_CAST(AT91_REG *) 0x000000D0) // (PIO_FELLSR) Falling Edge/Low Level Select Register
  849. #define PIO_REHLSR (AT91_CAST(AT91_REG *) 0x000000D4) // (PIO_REHLSR) Rising Edge/ High Level Select Register
  850. #define PIO_FRLHSR (AT91_CAST(AT91_REG *) 0x000000D8) // (PIO_FRLHSR) Fall/Rise - Low/High Status Register
  851. #define PIO_LOCKSR (AT91_CAST(AT91_REG *) 0x000000E0) // (PIO_LOCKSR) Lock Status Register
  852. #define PIO_VER (AT91_CAST(AT91_REG *) 0x000000FC) // (PIO_VER) PIO VERSION REGISTER
  853. #define PIO_KER (AT91_CAST(AT91_REG *) 0x00000120) // (PIO_KER) Keypad Controller Enable Register
  854. #define PIO_KRCR (AT91_CAST(AT91_REG *) 0x00000124) // (PIO_KRCR) Keypad Controller Row Column Register
  855. #define PIO_KDR (AT91_CAST(AT91_REG *) 0x00000128) // (PIO_KDR) Keypad Controller Debouncing Register
  856. #define PIO_KIER (AT91_CAST(AT91_REG *) 0x00000130) // (PIO_KIER) Keypad Controller Interrupt Enable Register
  857. #define PIO_KIDR (AT91_CAST(AT91_REG *) 0x00000134) // (PIO_KIDR) Keypad Controller Interrupt Disable Register
  858. #define PIO_KIMR (AT91_CAST(AT91_REG *) 0x00000138) // (PIO_KIMR) Keypad Controller Interrupt Mask Register
  859. #define PIO_KSR (AT91_CAST(AT91_REG *) 0x0000013C) // (PIO_KSR) Keypad Controller Status Register
  860. #define PIO_KKPR (AT91_CAST(AT91_REG *) 0x00000140) // (PIO_KKPR) Keypad Controller Key Press Register
  861. #define PIO_KKRR (AT91_CAST(AT91_REG *) 0x00000144) // (PIO_KKRR) Keypad Controller Key Release Register
  862. #endif
  863. // -------- PIO_KER : (PIO Offset: 0x120) Keypad Controller Enable Register --------
  864. #define AT91C_PIO_KCE (0x1 << 0) // (PIO) Keypad Controller Enable
  865. // -------- PIO_KRCR : (PIO Offset: 0x124) Keypad Controller Row Column Register --------
  866. #define AT91C_PIO_NBR (0x7 << 0) // (PIO) Number of Columns of the Keypad Matrix
  867. #define AT91C_PIO_NBC (0x7 << 8) // (PIO) Number of Rows of the Keypad Matrix
  868. // -------- PIO_KDR : (PIO Offset: 0x128) Keypad Controller Debouncing Register --------
  869. #define AT91C_PIO_DBC (0x3FF << 0) // (PIO) Debouncing Value
  870. // -------- PIO_KIER : (PIO Offset: 0x130) Keypad Controller Interrupt Enable Register --------
  871. #define AT91C_PIO_KPR (0x1 << 0) // (PIO) Key Press Interrupt Enable
  872. #define AT91C_PIO_KRL (0x1 << 1) // (PIO) Key Release Interrupt Enable
  873. // -------- PIO_KIDR : (PIO Offset: 0x134) Keypad Controller Interrupt Disable Register --------
  874. // -------- PIO_KIMR : (PIO Offset: 0x138) Keypad Controller Interrupt Mask Register --------
  875. // -------- PIO_KSR : (PIO Offset: 0x13c) Keypad Controller Status Register --------
  876. #define AT91C_PIO_NBKPR (0x3 << 8) // (PIO) Number of Simultaneous Key Presses
  877. #define AT91C_PIO_NBKRL (0x3 << 16) // (PIO) Number of Simultaneous Key Releases
  878. // -------- PIO_KKPR : (PIO Offset: 0x140) Keypad Controller Key Press Register --------
  879. #define AT91C_KEY0ROW (0x7 << 0) // (PIO) Row index of the first detected Key Press
  880. #define AT91C_KEY0COL (0x7 << 4) // (PIO) Column index of the first detected Key Press
  881. #define AT91C_KEY1ROW (0x7 << 8) // (PIO) Row index of the second detected Key Press
  882. #define AT91C_KEY1COL (0x7 << 12) // (PIO) Column index of the second detected Key Press
  883. #define AT91C_KEY2ROW (0x7 << 16) // (PIO) Row index of the third detected Key Press
  884. #define AT91C_KEY2COL (0x7 << 20) // (PIO) Column index of the third detected Key Press
  885. #define AT91C_KEY3ROW (0x7 << 24) // (PIO) Row index of the fourth detected Key Press
  886. #define AT91C_KEY3COL (0x7 << 28) // (PIO) Column index of the fourth detected Key Press
  887. // -------- PIO_KKRR : (PIO Offset: 0x144) Keypad Controller Key Release Register --------
  888. // *****************************************************************************
  889. // SOFTWARE API DEFINITION FOR Power Management Controler
  890. // *****************************************************************************
  891. #ifndef __ASSEMBLY__
  892. #else
  893. #define PMC_SCER (AT91_CAST(AT91_REG *) 0x00000000) // (PMC_SCER) System Clock Enable Register
  894. #define PMC_SCDR (AT91_CAST(AT91_REG *) 0x00000004) // (PMC_SCDR) System Clock Disable Register
  895. #define PMC_SCSR (AT91_CAST(AT91_REG *) 0x00000008) // (PMC_SCSR) System Clock Status Register
  896. #define PMC_PCER (AT91_CAST(AT91_REG *) 0x00000010) // (PMC_PCER) Peripheral Clock Enable Register
  897. #define PMC_PCDR (AT91_CAST(AT91_REG *) 0x00000014) // (PMC_PCDR) Peripheral Clock Disable Register
  898. #define PMC_PCSR (AT91_CAST(AT91_REG *) 0x00000018) // (PMC_PCSR) Peripheral Clock Status Register
  899. #define CKGR_UCKR (AT91_CAST(AT91_REG *) 0x0000001C) // (CKGR_UCKR) UTMI Clock Configuration Register
  900. #define CKGR_MOR (AT91_CAST(AT91_REG *) 0x00000020) // (CKGR_MOR) Main Oscillator Register
  901. #define CKGR_MCFR (AT91_CAST(AT91_REG *) 0x00000024) // (CKGR_MCFR) Main Clock Frequency Register
  902. #define CKGR_PLLAR (AT91_CAST(AT91_REG *) 0x00000028) // (CKGR_PLLAR) PLL Register
  903. #define PMC_MCKR (AT91_CAST(AT91_REG *) 0x00000030) // (PMC_MCKR) Master Clock Register
  904. #define PMC_PCKR (AT91_CAST(AT91_REG *) 0x00000040) // (PMC_PCKR) Programmable Clock Register
  905. #define PMC_IER (AT91_CAST(AT91_REG *) 0x00000060) // (PMC_IER) Interrupt Enable Register
  906. #define PMC_IDR (AT91_CAST(AT91_REG *) 0x00000064) // (PMC_IDR) Interrupt Disable Register
  907. #define PMC_SR (AT91_CAST(AT91_REG *) 0x00000068) // (PMC_SR) Status Register
  908. #define PMC_IMR (AT91_CAST(AT91_REG *) 0x0000006C) // (PMC_IMR) Interrupt Mask Register
  909. #define PMC_FSMR (AT91_CAST(AT91_REG *) 0x00000070) // (PMC_FSMR) Fast Startup Mode Register
  910. #define PMC_FSPR (AT91_CAST(AT91_REG *) 0x00000074) // (PMC_FSPR) Fast Startup Polarity Register
  911. #define PMC_FOCR (AT91_CAST(AT91_REG *) 0x00000078) // (PMC_FOCR) Fault Output Clear Register
  912. #define PMC_ADDRSIZE (AT91_CAST(AT91_REG *) 0x000000EC) // (PMC_ADDRSIZE) PMC ADDRSIZE REGISTER
  913. #define PMC_IPNAME1 (AT91_CAST(AT91_REG *) 0x000000F0) // (PMC_IPNAME1) PMC IPNAME1 REGISTER
  914. #define PMC_IPNAME2 (AT91_CAST(AT91_REG *) 0x000000F4) // (PMC_IPNAME2) PMC IPNAME2 REGISTER
  915. #define PMC_FEATURES (AT91_CAST(AT91_REG *) 0x000000F8) // (PMC_FEATURES) PMC FEATURES REGISTER
  916. #define PMC_VER (AT91_CAST(AT91_REG *) 0x000000FC) // (PMC_VER) APMC VERSION REGISTER
  917. #endif
  918. // -------- PMC_SCER : (PMC Offset: 0x0) System Clock Enable Register --------
  919. #define AT91C_PMC_PCK (0x1 << 0) // (PMC) Processor Clock
  920. #define AT91C_PMC_PCK0 (0x1 << 8) // (PMC) Programmable Clock Output
  921. #define AT91C_PMC_PCK1 (0x1 << 9) // (PMC) Programmable Clock Output
  922. #define AT91C_PMC_PCK2 (0x1 << 10) // (PMC) Programmable Clock Output
  923. // -------- PMC_SCDR : (PMC Offset: 0x4) System Clock Disable Register --------
  924. // -------- PMC_SCSR : (PMC Offset: 0x8) System Clock Status Register --------
  925. // -------- CKGR_UCKR : (PMC Offset: 0x1c) UTMI Clock Configuration Register --------
  926. #define AT91C_CKGR_UPLLEN (0x1 << 16) // (PMC) UTMI PLL Enable
  927. #define AT91C_CKGR_UPLLEN_DISABLED (0x0 << 16) // (PMC) The UTMI PLL is disabled
  928. #define AT91C_CKGR_UPLLEN_ENABLED (0x1 << 16) // (PMC) The UTMI PLL is enabled
  929. #define AT91C_CKGR_UPLLCOUNT (0xF << 20) // (PMC) UTMI Oscillator Start-up Time
  930. #define AT91C_CKGR_BIASEN (0x1 << 24) // (PMC) UTMI BIAS Enable
  931. #define AT91C_CKGR_BIASEN_DISABLED (0x0 << 24) // (PMC) The UTMI BIAS is disabled
  932. #define AT91C_CKGR_BIASEN_ENABLED (0x1 << 24) // (PMC) The UTMI BIAS is enabled
  933. #define AT91C_CKGR_BIASCOUNT (0xF << 28) // (PMC) UTMI BIAS Start-up Time
  934. // -------- CKGR_MOR : (PMC Offset: 0x20) Main Oscillator Register --------
  935. #define AT91C_CKGR_MOSCXTEN (0x1 << 0) // (PMC) Main Crystal Oscillator Enable
  936. #define AT91C_CKGR_MOSCXTBY (0x1 << 1) // (PMC) Main Crystal Oscillator Bypass
  937. #define AT91C_CKGR_WAITMODE (0x1 << 2) // (PMC) Main Crystal Oscillator Bypass
  938. #define AT91C_CKGR_MOSCRCEN (0x1 << 3) // (PMC) Main On-Chip RC Oscillator Enable
  939. #define AT91C_CKGR_MOSCRCF (0x7 << 4) // (PMC) Main On-Chip RC Oscillator Frequency Selection
  940. #define AT91C_CKGR_MOSCXTST (0xFF << 8) // (PMC) Main Crystal Oscillator Start-up Time
  941. #define AT91C_CKGR_KEY (0xFF << 16) // (PMC) Clock Generator Controller Writing Protection Key
  942. #define AT91C_CKGR_MOSCSEL (0x1 << 24) // (PMC) Main Oscillator Selection
  943. #define AT91C_CKGR_CFDEN (0x1 << 25) // (PMC) Clock Failure Detector Enable
  944. // -------- CKGR_MCFR : (PMC Offset: 0x24) Main Clock Frequency Register --------
  945. #define AT91C_CKGR_MAINF (0xFFFF << 0) // (PMC) Main Clock Frequency
  946. #define AT91C_CKGR_MAINRDY (0x1 << 16) // (PMC) Main Clock Ready
  947. // -------- CKGR_PLLAR : (PMC Offset: 0x28) PLL A Register --------
  948. #define AT91C_CKGR_DIVA (0xFF << 0) // (PMC) Divider Selected
  949. #define AT91C_CKGR_DIVA_0 (0x0) // (PMC) Divider output is 0
  950. #define AT91C_CKGR_DIVA_BYPASS (0x1) // (PMC) Divider is bypassed
  951. #define AT91C_CKGR_PLLACOUNT (0x3F << 8) // (PMC) PLLA Counter
  952. #define AT91C_CKGR_STMODE (0x3 << 14) // (PMC) Start Mode
  953. #define AT91C_CKGR_STMODE_0 (0x0 << 14) // (PMC) Fast startup
  954. #define AT91C_CKGR_STMODE_1 (0x1 << 14) // (PMC) Reserved
  955. #define AT91C_CKGR_STMODE_2 (0x2 << 14) // (PMC) Normal startup
  956. #define AT91C_CKGR_STMODE_3 (0x3 << 14) // (PMC) Reserved
  957. #define AT91C_CKGR_MULA (0x7FF << 16) // (PMC) PLL Multiplier
  958. #define AT91C_CKGR_SRC (0x1 << 29) // (PMC)
  959. // -------- PMC_MCKR : (PMC Offset: 0x30) Master Clock Register --------
  960. #define AT91C_PMC_CSS (0x7 << 0) // (PMC) Programmable Clock Selection
  961. #define AT91C_PMC_CSS_SLOW_CLK (0x0) // (PMC) Slow Clock is selected
  962. #define AT91C_PMC_CSS_MAIN_CLK (0x1) // (PMC) Main Clock is selected
  963. #define AT91C_PMC_CSS_PLLA_CLK (0x2) // (PMC) Clock from PLL A is selected
  964. #define AT91C_PMC_CSS_UPLL_CLK (0x3) // (PMC) Clock from UPLL is selected
  965. #define AT91C_PMC_CSS_SYS_CLK (0x4) // (PMC) System clock is selected
  966. #define AT91C_PMC_PRES (0x7 << 4) // (PMC) Programmable Clock Prescaler
  967. #define AT91C_PMC_PRES_CLK (0x0 << 4) // (PMC) Selected clock
  968. #define AT91C_PMC_PRES_CLK_2 (0x1 << 4) // (PMC) Selected clock divided by 2
  969. #define AT91C_PMC_PRES_CLK_4 (0x2 << 4) // (PMC) Selected clock divided by 4
  970. #define AT91C_PMC_PRES_CLK_8 (0x3 << 4) // (PMC) Selected clock divided by 8
  971. #define AT91C_PMC_PRES_CLK_16 (0x4 << 4) // (PMC) Selected clock divided by 16
  972. #define AT91C_PMC_PRES_CLK_32 (0x5 << 4) // (PMC) Selected clock divided by 32
  973. #define AT91C_PMC_PRES_CLK_64 (0x6 << 4) // (PMC) Selected clock divided by 64
  974. #define AT91C_PMC_PRES_CLK_6 (0x7 << 4) // (PMC) Selected clock divided by 6
  975. // -------- PMC_PCKR : (PMC Offset: 0x40) Programmable Clock Register --------
  976. // -------- PMC_IER : (PMC Offset: 0x60) PMC Interrupt Enable Register --------
  977. #define AT91C_PMC_MOSCXTS (0x1 << 0) // (PMC) Main Crystal Oscillator Status/Enable/Disable/Mask
  978. #define AT91C_PMC_LOCKA (0x1 << 1) // (PMC) PLL A Status/Enable/Disable/Mask
  979. #define AT91C_PMC_MCKRDY (0x1 << 3) // (PMC) Master Clock Status/Enable/Disable/Mask
  980. #define AT91C_PMC_LOCKU (0x1 << 6) // (PMC) PLL UTMI Status/Enable/Disable/Mask
  981. #define AT91C_PMC_PCKRDY0 (0x1 << 8) // (PMC) PCK0_RDY Status/Enable/Disable/Mask
  982. #define AT91C_PMC_PCKRDY1 (0x1 << 9) // (PMC) PCK1_RDY Status/Enable/Disable/Mask
  983. #define AT91C_PMC_PCKRDY2 (0x1 << 10) // (PMC) PCK2_RDY Status/Enable/Disable/Mask
  984. #define AT91C_PMC_MOSCSELS (0x1 << 16) // (PMC) Main Oscillator Selection Status
  985. #define AT91C_PMC_MOSCRCS (0x1 << 17) // (PMC) Main On-Chip RC Oscillator Status
  986. #define AT91C_PMC_CFDEV (0x1 << 18) // (PMC) Clock Failure Detector Event
  987. // -------- PMC_IDR : (PMC Offset: 0x64) PMC Interrupt Disable Register --------
  988. // -------- PMC_SR : (PMC Offset: 0x68) PMC Status Register --------
  989. #define AT91C_PMC_OSCSELS (0x1 << 7) // (PMC) Slow Clock Oscillator Selection
  990. #define AT91C_PMC_CFDS (0x1 << 19) // (PMC) Clock Failure Detector Status
  991. #define AT91C_PMC_FOS (0x1 << 20) // (PMC) Clock Failure Detector Fault Output Status
  992. // -------- PMC_IMR : (PMC Offset: 0x6c) PMC Interrupt Mask Register --------
  993. // -------- PMC_FSMR : (PMC Offset: 0x70) Fast Startup Mode Register --------
  994. #define AT91C_PMC_FSTT (0xFFFF << 0) // (PMC) Fast Start-up Input Enable 0 to 15
  995. #define AT91C_PMC_RTTAL (0x1 << 16) // (PMC) RTT Alarm Enable
  996. #define AT91C_PMC_RTCAL (0x1 << 17) // (PMC) RTC Alarm Enable
  997. #define AT91C_PMC_USBAL (0x1 << 18) // (PMC) USB Alarm Enable
  998. #define AT91C_PMC_LPM (0x1 << 20) // (PMC) Low Power Mode
  999. // -------- PMC_FSPR : (PMC Offset: 0x74) Fast Startup Polarity Register --------
  1000. #define AT91C_PMC_FSTP (0xFFFF << 0) // (PMC) Fast Start-up Input Polarity 0 to 15
  1001. // -------- PMC_FOCR : (PMC Offset: 0x78) Fault Output Clear Register --------
  1002. #define AT91C_PMC_FOCLR (0x1 << 0) // (PMC) Fault Output Clear
  1003. // *****************************************************************************
  1004. // SOFTWARE API DEFINITION FOR Clock Generator Controler
  1005. // *****************************************************************************
  1006. // -------- CKGR_UCKR : (CKGR Offset: 0x0) UTMI Clock Configuration Register --------
  1007. // -------- CKGR_MOR : (CKGR Offset: 0x4) Main Oscillator Register --------
  1008. // -------- CKGR_MCFR : (CKGR Offset: 0x8) Main Clock Frequency Register --------
  1009. // -------- CKGR_PLLAR : (CKGR Offset: 0xc) PLL A Register --------
  1010. // *****************************************************************************
  1011. // SOFTWARE API DEFINITION FOR Reset Controller Interface
  1012. // *****************************************************************************
  1013. #ifndef __ASSEMBLY__
  1014. #else
  1015. #define RSTC_RCR (AT91_CAST(AT91_REG *) 0x00000000) // (RSTC_RCR) Reset Control Register
  1016. #define RSTC_RSR (AT91_CAST(AT91_REG *) 0x00000004) // (RSTC_RSR) Reset Status Register
  1017. #define RSTC_RMR (AT91_CAST(AT91_REG *) 0x00000008) // (RSTC_RMR) Reset Mode Register
  1018. #define RSTC_VER (AT91_CAST(AT91_REG *) 0x000000FC) // (RSTC_VER) Version Register
  1019. #endif
  1020. // -------- RSTC_RCR : (RSTC Offset: 0x0) Reset Control Register --------
  1021. #define AT91C_RSTC_PROCRST (0x1 << 0) // (RSTC) Processor Reset
  1022. #define AT91C_RSTC_ICERST (0x1 << 1) // (RSTC) ICE Interface Reset
  1023. #define AT91C_RSTC_PERRST (0x1 << 2) // (RSTC) Peripheral Reset
  1024. #define AT91C_RSTC_EXTRST (0x1 << 3) // (RSTC) External Reset
  1025. #define AT91C_RSTC_KEY (0xFF << 24) // (RSTC) Password
  1026. // -------- RSTC_RSR : (RSTC Offset: 0x4) Reset Status Register --------
  1027. #define AT91C_RSTC_URSTS (0x1 << 0) // (RSTC) User Reset Status
  1028. #define AT91C_RSTC_RSTTYP (0x7 << 8) // (RSTC) Reset Type
  1029. #define AT91C_RSTC_RSTTYP_GENERAL (0x0 << 8) // (RSTC) General reset. Both VDDCORE and VDDBU rising.
  1030. #define AT91C_RSTC_RSTTYP_WAKEUP (0x1 << 8) // (RSTC) WakeUp Reset. VDDCORE rising.
  1031. #define AT91C_RSTC_RSTTYP_WATCHDOG (0x2 << 8) // (RSTC) Watchdog Reset. Watchdog overflow occured.
  1032. #define AT91C_RSTC_RSTTYP_SOFTWARE (0x3 << 8) // (RSTC) Software Reset. Processor reset required by the software.
  1033. #define AT91C_RSTC_RSTTYP_USER (0x4 << 8) // (RSTC) User Reset. NRST pin detected low.
  1034. #define AT91C_RSTC_NRSTL (0x1 << 16) // (RSTC) NRST pin level
  1035. #define AT91C_RSTC_SRCMP (0x1 << 17) // (RSTC) Software Reset Command in Progress.
  1036. // -------- RSTC_RMR : (RSTC Offset: 0x8) Reset Mode Register --------
  1037. #define AT91C_RSTC_URSTEN (0x1 << 0) // (RSTC) User Reset Enable
  1038. #define AT91C_RSTC_URSTIEN (0x1 << 4) // (RSTC) User Reset Interrupt Enable
  1039. #define AT91C_RSTC_ERSTL (0xF << 8) // (RSTC) User Reset Enable
  1040. // *****************************************************************************
  1041. // SOFTWARE API DEFINITION FOR Supply Controller Interface
  1042. // *****************************************************************************
  1043. #ifndef __ASSEMBLY__
  1044. #else
  1045. #define SUPC_CR (AT91_CAST(AT91_REG *) 0x00000000) // Supply Controller Control Register
  1046. #define SUPC_SMMR (AT91_CAST(AT91_REG *) 0x00000004) // Supply Controller Supply Monitor Mode Register
  1047. #define SUPC_MR (AT91_CAST(AT91_REG *) 0x00000008) // Supply Controller Mode Register
  1048. #define SUPC_WUMR (AT91_CAST(AT91_REG *) 0x0000000C) // Supply Controller Wake Up Mode Register
  1049. #define SUPC_WUIR (AT91_CAST(AT91_REG *) 0x00000010) // Supply Controller Wake Up Inputs Register
  1050. #define SUPC_SR (AT91_CAST(AT91_REG *) 0x00000014) // Supply Controller Status Register
  1051. #endif
  1052. // -------- SUPC_CR : (SUPC Offset: 0x00) Supply Controller Control Register --------
  1053. #define AT91C_SUPC_CR_VROFF (0x1 << 2) // (SUPC) Voltage Regulator Off
  1054. #define AT91C_SUPC_CR_VROFF_NO_EFFECT (0x0 << 2) // (SUPC) no effect.
  1055. #define AT91C_SUPC_CR_VROFF_STOP_VREG (0x1 << 2) // (SUPC) if KEY is correct, asserts vddcore_nreset and stops the voltage regulator.
  1056. #define AT91C_SUPC_CR_XTALSEL (0x1 << 3) // (SUPC) Crystal Oscillator Select
  1057. #define AT91C_SUPC_CR_XTALSEL_NO_EFFECT (0x0 << 3) // (SUPC) no effect.
  1058. #define AT91C_SUPC_CR_XTALSEL_CRYSTAL_SEL (0x1 << 3) // (SUPC) if KEY is correct, switches the slow clock on the crystal oscillator output.
  1059. #define AT91C_SUPC_CR_KEY (0xff << 24) // (SUPC) Password
  1060. // -------- SUPC_SMMR : (SUPC Offset: 0x04) Supply Controller Supply Monitor Mode Register --------
  1061. #define AT91C_SUPC_SMMR_SMTH (0xf << 0) // (SUPC) Supply Monitor Threshold
  1062. #define AT91C_SUPC_SMMR_SMTH_1_9V (0x0 << 0) // (SUPC) 1.9 V
  1063. #define AT91C_SUPC_SMMR_SMTH_2_0V (0x1 << 0) // (SUPC) 2.0 V
  1064. #define AT91C_SUPC_SMMR_SMTH_2_1V (0x2 << 0) // (SUPC) 2.1 V
  1065. #define AT91C_SUPC_SMMR_SMTH_2_2V (0x3 << 0) // (SUPC) 2.2 V
  1066. #define AT91C_SUPC_SMMR_SMTH_2_3V (0x4 << 0) // (SUPC) 2.3 V
  1067. #define AT91C_SUPC_SMMR_SMTH_2_4V (0x5 << 0) // (SUPC) 2.4 V
  1068. #define AT91C_SUPC_SMMR_SMTH_2_5V (0x6 << 0) // (SUPC) 2.5 V
  1069. #define AT91C_SUPC_SMMR_SMTH_2_6V (0x7 << 0) // (SUPC) 2.6 V
  1070. #define AT91C_SUPC_SMMR_SMTH_2_7V (0x8 << 0) // (SUPC) 2.7 V
  1071. #define AT91C_SUPC_SMMR_SMTH_2_8V (0x9 << 0) // (SUPC) 2.8 V
  1072. #define AT91C_SUPC_SMMR_SMTH_2_9V (0xA << 0) // (SUPC) 2.9 V
  1073. #define AT91C_SUPC_SMMR_SMTH_3_0V (0xB << 0) // (SUPC) 3.0 V
  1074. #define AT91C_SUPC_SMMR_SMTH_3_1V (0xC << 0) // (SUPC) 3.1 V
  1075. #define AT91C_SUPC_SMMR_SMTH_3_2V (0xD << 0) // (SUPC) 3.2 V
  1076. #define AT91C_SUPC_SMMR_SMTH_3_3V (0xE << 0) // (SUPC) 3.3 V
  1077. #define AT91C_SUPC_SMMR_SMTH_3_4V (0xF << 0) // (SUPC) 3.4 V
  1078. #define AT91C_SUPC_SMMR_SMSMPL (0x7 << 8) // (SUPC) Supply Monitor Sampling Period
  1079. #define AT91C_SUPC_SMMR_SMSMPL_SMD (0x0 << 8) // (SUPC) Supply Monitor disabled
  1080. #define AT91C_SUPC_SMMR_SMSMPL_CSM (0x1 << 8) // (SUPC) Continuous Supply Monitor
  1081. #define AT91C_SUPC_SMMR_SMSMPL_32SLCK (0x2 << 8) // (SUPC) Supply Monitor enabled one SLCK period every 32 SLCK periods
  1082. #define AT91C_SUPC_SMMR_SMSMPL_256SLCK (0x3 << 8) // (SUPC) Supply Monitor enabled one SLCK period every 256 SLCK periods
  1083. #define AT91C_SUPC_SMMR_SMSMPL_2048SLCK (0x4 << 8) // (SUPC) Supply Monitor enabled one SLCK period every 2,048 SLCK periods
  1084. #define AT91C_SUPC_SMMR_SMRSTEN (0x1 << 12) // (SUPC) Supply Monitor Reset Enable
  1085. #define AT91C_SUPC_SMMR_SMRSTEN_NOT_ENABLE (0x0 << 12) // (SUPC) the core reset signal "vddcore_nreset" is not affected when a supply monitor detection occurs.
  1086. #define AT91C_SUPC_SMMR_SMRSTEN_ENABLE (0x1 << 12) // (SUPC) the core reset signal, vddcore_nreset is asserted when a supply monitor detection occurs.
  1087. #define AT91C_SUPC_SMMR_SMIEN (0x1 << 13) // (SUPC) Supply Monitor Interrupt Enable
  1088. #define AT91C_SUPC_SMMR_SMIEN_NOT_ENABLE (0x0 << 13) // (SUPC) the SUPC interrupt signal is not affected when a supply monitor detection occurs.
  1089. #define AT91C_SUPC_SMMR_SMIEN_ENABLE (0x1 << 13) // (SUPC) the SUPC interrupt signal is asserted when a supply monitor detection occurs.
  1090. // -------- SUPC_MR : (SUPC Offset: 0x08) Supply Controller Mode Register --------
  1091. #define AT91C_SUPC_MR_BODRSTEN (0x1 << 12) // (SUPC) Brownout Detector Reset Enable
  1092. #define AT91C_SUPC_MR_BODRSTEN_NOT_ENABLE (0x0 << 12) // (SUPC) the core reset signal "vddcore_nreset" is not affected when a brownout detection occurs.
  1093. #define AT91C_SUPC_MR_BODRSTEN_ENABLE (0x1 << 12) // (SUPC) the core reset signal, vddcore_nreset is asserted when a brownout detection occurs.
  1094. #define AT91C_SUPC_MR_BODDIS (0x1 << 13) // (SUPC) Brownout Detector Disable
  1095. #define AT91C_SUPC_MR_BODDIS_ENABLE (0x0 << 13) // (SUPC) the core brownout detector is enabled.
  1096. #define AT91C_SUPC_MR_BODDIS_DISABLE (0x1 << 13) // (SUPC) the core brownout detector is disabled.
  1097. #define AT91C_SUPC_MR_VDDIORDY (0x1 << 14) // (SUPC) VDDIO Ready
  1098. #define AT91C_SUPC_MR_VDDIORDY_VDDIO_REMOVED (0x0 << 14) // (SUPC) VDDIO is removed (used before going to backup mode when backup batteries are used)
  1099. #define AT91C_SUPC_MR_VDDIORDY_VDDIO_PRESENT (0x1 << 14) // (SUPC) VDDIO is present (used before going to backup mode when backup batteries are used)
  1100. #define AT91C_SUPC_MR_OSCBYPASS (0x1 << 20) // (SUPC) Oscillator Bypass
  1101. #define AT91C_SUPC_MR_OSCBYPASS_NO_EFFECT (0x0 << 20) // (SUPC) no effect. Clock selection depends on XTALSEL value.
  1102. #define AT91C_SUPC_MR_OSCBYPASS_BYPASS (0x1 << 20) // (SUPC) the 32-KHz XTAL oscillator is selected and is put in bypass mode.
  1103. #define AT91C_SUPC_MR_KEY (0xff << 24) // (SUPC) Password Key
  1104. // -------- SUPC_WUMR : (SUPC Offset: 0x0C) Supply Controller Wake Up Mode Register --------
  1105. #define AT91C_SUPC_WUMR_FWUPEN (0x1 << 0) // (SUPC) Force Wake Up Enable
  1106. #define AT91C_SUPC_WUMR_FWUPEN_NOT_ENABLE (0x0 << 0) // (SUPC) the Force Wake Up pin has no wake up effect.
  1107. #define AT91C_SUPC_WUMR_FWUPEN_ENABLE (0x1 << 0) // (SUPC) the Force Wake Up pin low forces the wake up of the core power supply.
  1108. #define AT91C_SUPC_WUMR_SMEN (0x1 << 1) // (SUPC) Supply Monitor Wake Up Enable
  1109. #define AT91C_SUPC_WUMR_SMEN_NOT_ENABLE (0x0 << 1) // (SUPC) the supply monitor detection has no wake up effect.
  1110. #define AT91C_SUPC_WUMR_SMEN_ENABLE (0x1 << 1) // (SUPC) the supply monitor detection forces the wake up of the core power supply.
  1111. #define AT91C_SUPC_WUMR_RTTEN (0x1 << 2) // (SUPC) Real Time Timer Wake Up Enable
  1112. #define AT91C_SUPC_WUMR_RTTEN_NOT_ENABLE (0x0 << 2) // (SUPC) the RTT alarm signal has no wake up effect.
  1113. #define AT91C_SUPC_WUMR_RTTEN_ENABLE (0x1 << 2) // (SUPC) the RTT alarm signal forces the wake up of the core power supply.
  1114. #define AT91C_SUPC_WUMR_RTCEN (0x1 << 3) // (SUPC) Real Time Clock Wake Up Enable
  1115. #define AT91C_SUPC_WUMR_RTCEN_NOT_ENABLE (0x0 << 3) // (SUPC) the RTC alarm signal has no wake up effect.
  1116. #define AT91C_SUPC_WUMR_RTCEN_ENABLE (0x1 << 3) // (SUPC) the RTC alarm signal forces the wake up of the core power supply.
  1117. #define AT91C_SUPC_WUMR_FWUPDBC (0x7 << 8) // (SUPC) Force Wake Up Debouncer
  1118. #define AT91C_SUPC_WUMR_FWUPDBC_1SCLK (0x0 << 8) // (SUPC) Immediate, no debouncing, detected active at least on one Slow Clock edge.
  1119. #define AT91C_SUPC_WUMR_FWUPDBC_3SCLK (0x1 << 8) // (SUPC) FWUP shall be low for at least 3 SLCK periods
  1120. #define AT91C_SUPC_WUMR_FWUPDBC_32SCLK (0x2 << 8) // (SUPC) FWUP shall be low for at least 32 SLCK periods
  1121. #define AT91C_SUPC_WUMR_FWUPDBC_512SCLK (0x3 << 8) // (SUPC) FWUP shall be low for at least 512 SLCK periods
  1122. #define AT91C_SUPC_WUMR_FWUPDBC_4096SCLK (0x4 << 8) // (SUPC) FWUP shall be low for at least 4,096 SLCK periods
  1123. #define AT91C_SUPC_WUMR_FWUPDBC_32768SCLK (0x5 << 8) // (SUPC) FWUP shall be low for at least 32,768 SLCK periods
  1124. #define AT91C_SUPC_WUMR_WKUPDBC (0x7 << 12) // (SUPC) Wake Up Inputs Debouncer
  1125. #define AT91C_SUPC_WUMR_WKUPDBC_1SCLK (0x0 << 12) // (SUPC) Immediate, no debouncing, detected active at least on one Slow Clock edge.
  1126. #define AT91C_SUPC_WUMR_WKUPDBC_3SCLK (0x1 << 12) // (SUPC) An enabled wake-up input shall be active for at least 3 SLCK periods
  1127. #define AT91C_SUPC_WUMR_WKUPDBC_32SCLK (0x2 << 12) // (SUPC) An enabled wake-up input shall be active for at least 32 SLCK periods
  1128. #define AT91C_SUPC_WUMR_WKUPDBC_512SCLK (0x3 << 12) // (SUPC) An enabled wake-up input shall be active for at least 512 SLCK periods
  1129. #define AT91C_SUPC_WUMR_WKUPDBC_4096SCLK (0x4 << 12) // (SUPC) An enabled wake-up input shall be active for at least 4,096 SLCK periods
  1130. #define AT91C_SUPC_WUMR_WKUPDBC_32768SCLK (0x5 << 12) // (SUPC) An enabled wake-up input shall be active for at least 32,768 SLCK periods
  1131. // -------- SUPC_WUIR : (SUPC Offset: 0x10) Supply Controller Wake Up Inputs Register --------
  1132. #define AT91C_SUPC_WUIR_WKUPEN0 (0x1 << 0) // (SUPC) Wake Up Input Enable 0
  1133. #define AT91C_SUPC_WUIR_WKUPEN0_NOT_ENABLE (0x0 << 0) // (SUPC) the corresponding wake-up input has no wake up effect.
  1134. #define AT91C_SUPC_WUIR_WKUPEN0_ENABLE (0x1 << 0) // (SUPC) the corresponding wake-up input forces the wake up of the core power supply.
  1135. #define AT91C_SUPC_WUIR_WKUPEN1 (0x1 << 1) // (SUPC) Wake Up Input Enable 1
  1136. #define AT91C_SUPC_WUIR_WKUPEN1_NOT_ENABLE (0x0 << 1) // (SUPC) the corresponding wake-up input has no wake up effect.
  1137. #define AT91C_SUPC_WUIR_WKUPEN1_ENABLE (0x1 << 1) // (SUPC) the corresponding wake-up input forces the wake up of the core power supply.
  1138. #define AT91C_SUPC_WUIR_WKUPEN2 (0x1 << 2) // (SUPC) Wake Up Input Enable 2
  1139. #define AT91C_SUPC_WUIR_WKUPEN2_NOT_ENABLE (0x0 << 2) // (SUPC) the corresponding wake-up input has no wake up effect.
  1140. #define AT91C_SUPC_WUIR_WKUPEN2_ENABLE (0x1 << 2) // (SUPC) the corresponding wake-up input forces the wake up of the core power supply.
  1141. #define AT91C_SUPC_WUIR_WKUPEN3 (0x1 << 3) // (SUPC) Wake Up Input Enable 3
  1142. #define AT91C_SUPC_WUIR_WKUPEN3_NOT_ENABLE (0x0 << 3) // (SUPC) the corresponding wake-up input has no wake up effect.
  1143. #define AT91C_SUPC_WUIR_WKUPEN3_ENABLE (0x1 << 3) // (SUPC) the corresponding wake-up input forces the wake up of the core power supply.
  1144. #define AT91C_SUPC_WUIR_WKUPEN4 (0x1 << 4) // (SUPC) Wake Up Input Enable 4
  1145. #define AT91C_SUPC_WUIR_WKUPEN4_NOT_ENABLE (0x0 << 4) // (SUPC) the corresponding wake-up input has no wake up effect.
  1146. #define AT91C_SUPC_WUIR_WKUPEN4_ENABLE (0x1 << 4) // (SUPC) the corresponding wake-up input forces the wake up of the core power supply.
  1147. #define AT91C_SUPC_WUIR_WKUPEN5 (0x1 << 5) // (SUPC) Wake Up Input Enable 5
  1148. #define AT91C_SUPC_WUIR_WKUPEN5_NOT_ENABLE (0x0 << 5) // (SUPC) the corresponding wake-up input has no wake up effect.
  1149. #define AT91C_SUPC_WUIR_WKUPEN5_ENABLE (0x1 << 5) // (SUPC) the corresponding wake-up input forces the wake up of the core power supply.
  1150. #define AT91C_SUPC_WUIR_WKUPEN6 (0x1 << 6) // (SUPC) Wake Up Input Enable 6
  1151. #define AT91C_SUPC_WUIR_WKUPEN6_NOT_ENABLE (0x0 << 6) // (SUPC) the corresponding wake-up input has no wake up effect.
  1152. #define AT91C_SUPC_WUIR_WKUPEN6_ENABLE (0x1 << 6) // (SUPC) the corresponding wake-up input forces the wake up of the core power supply.
  1153. #define AT91C_SUPC_WUIR_WKUPEN7 (0x1 << 7) // (SUPC) Wake Up Input Enable 7
  1154. #define AT91C_SUPC_WUIR_WKUPEN7_NOT_ENABLE (0x0 << 7) // (SUPC) the corresponding wake-up input has no wake up effect.
  1155. #define AT91C_SUPC_WUIR_WKUPEN7_ENABLE (0x1 << 7) // (SUPC) the corresponding wake-up input forces the wake up of the core power supply.
  1156. #define AT91C_SUPC_WUIR_WKUPEN8 (0x1 << 8) // (SUPC) Wake Up Input Enable 8
  1157. #define AT91C_SUPC_WUIR_WKUPEN8_NOT_ENABLE (0x0 << 8) // (SUPC) the corresponding wake-up input has no wake up effect.
  1158. #define AT91C_SUPC_WUIR_WKUPEN8_ENABLE (0x1 << 8) // (SUPC) the corresponding wake-up input forces the wake up of the core power supply.
  1159. #define AT91C_SUPC_WUIR_WKUPEN9 (0x1 << 9) // (SUPC) Wake Up Input Enable 9
  1160. #define AT91C_SUPC_WUIR_WKUPEN9_NOT_ENABLE (0x0 << 9) // (SUPC) the corresponding wake-up input has no wake up effect.
  1161. #define AT91C_SUPC_WUIR_WKUPEN9_ENABLE (0x1 << 9) // (SUPC) the corresponding wake-up input forces the wake up of the core power supply.
  1162. #define AT91C_SUPC_WUIR_WKUPEN10 (0x1 << 10) // (SUPC) Wake Up Input Enable 10
  1163. #define AT91C_SUPC_WUIR_WKUPEN10_NOT_ENABLE (0x0 << 10) // (SUPC) the corresponding wake-up input has no wake up effect.
  1164. #define AT91C_SUPC_WUIR_WKUPEN10_ENABLE (0x1 << 10) // (SUPC) the corresponding wake-up input forces the wake up of the core power supply.
  1165. #define AT91C_SUPC_WUIR_WKUPEN11 (0x1 << 11) // (SUPC) Wake Up Input Enable 11
  1166. #define AT91C_SUPC_WUIR_WKUPEN11_NOT_ENABLE (0x0 << 11) // (SUPC) the corresponding wake-up input has no wake up effect.
  1167. #define AT91C_SUPC_WUIR_WKUPEN11_ENABLE (0x1 << 11) // (SUPC) the corresponding wake-up input forces the wake up of the core power supply.
  1168. #define AT91C_SUPC_WUIR_WKUPEN12 (0x1 << 12) // (SUPC) Wake Up Input Enable 12
  1169. #define AT91C_SUPC_WUIR_WKUPEN12_NOT_ENABLE (0x0 << 12) // (SUPC) the corresponding wake-up input has no wake up effect.
  1170. #define AT91C_SUPC_WUIR_WKUPEN12_ENABLE (0x1 << 12) // (SUPC) the corresponding wake-up input forces the wake up of the core power supply.
  1171. #define AT91C_SUPC_WUIR_WKUPEN13 (0x1 << 13) // (SUPC) Wake Up Input Enable 13
  1172. #define AT91C_SUPC_WUIR_WKUPEN13_NOT_ENABLE (0x0 << 13) // (SUPC) the corresponding wake-up input has no wake up effect.
  1173. #define AT91C_SUPC_WUIR_WKUPEN13_ENABLE (0x1 << 13) // (SUPC) the corresponding wake-up input forces the wake up of the core power supply.
  1174. #define AT91C_SUPC_WUIR_WKUPEN14 (0x1 << 14) // (SUPC) Wake Up Input Enable 14
  1175. #define AT91C_SUPC_WUIR_WKUPEN14_NOT_ENABLE (0x0 << 14) // (SUPC) the corresponding wake-up input has no wake up effect.
  1176. #define AT91C_SUPC_WUIR_WKUPEN14_ENABLE (0x1 << 14) // (SUPC) the corresponding wake-up input forces the wake up of the core power supply.
  1177. #define AT91C_SUPC_WUIR_WKUPEN15 (0x1 << 15) // (SUPC) Wake Up Input Enable 15
  1178. #define AT91C_SUPC_WUIR_WKUPEN15_NOT_ENABLE (0x0 << 15) // (SUPC) the corresponding wake-up input has no wake up effect.
  1179. #define AT91C_SUPC_WUIR_WKUPEN15_ENABLE (0x1 << 15) // (SUPC) the corresponding wake-up input forces the wake up of the core power supply.
  1180. #define AT91C_SUPC_WUIR_WKUPT0 (0x1 << 16) // (SUPC) Wake Up Input Transition 0
  1181. #define AT91C_SUPC_WUIR_WKUPT0_HIGH_TO_LOW (0x0 << 16) // (SUPC) a high to low level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1182. #define AT91C_SUPC_WUIR_WKUPT0_LOW_TO_HIGH (0x1 << 16) // (SUPC) a low to high level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1183. #define AT91C_SUPC_WUIR_WKUPT1 (0x1 << 17) // (SUPC) Wake Up Input Transition 1
  1184. #define AT91C_SUPC_WUIR_WKUPT1_HIGH_TO_LOW (0x0 << 17) // (SUPC) a high to low level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1185. #define AT91C_SUPC_WUIR_WKUPT1_LOW_TO_HIGH (0x1 << 17) // (SUPC) a low to high level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1186. #define AT91C_SUPC_WUIR_WKUPT2 (0x1 << 18) // (SUPC) Wake Up Input Transition 2
  1187. #define AT91C_SUPC_WUIR_WKUPT2_HIGH_TO_LOW (0x0 << 18) // (SUPC) a high to low level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1188. #define AT91C_SUPC_WUIR_WKUPT2_LOW_TO_HIGH (0x1 << 18) // (SUPC) a low to high level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1189. #define AT91C_SUPC_WUIR_WKUPT3 (0x1 << 19) // (SUPC) Wake Up Input Transition 3
  1190. #define AT91C_SUPC_WUIR_WKUPT3_HIGH_TO_LOW (0x0 << 19) // (SUPC) a high to low level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1191. #define AT91C_SUPC_WUIR_WKUPT3_LOW_TO_HIGH (0x1 << 19) // (SUPC) a low to high level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1192. #define AT91C_SUPC_WUIR_WKUPT4 (0x1 << 20) // (SUPC) Wake Up Input Transition 4
  1193. #define AT91C_SUPC_WUIR_WKUPT4_HIGH_TO_LOW (0x0 << 20) // (SUPC) a high to low level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1194. #define AT91C_SUPC_WUIR_WKUPT4_LOW_TO_HIGH (0x1 << 20) // (SUPC) a low to high level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1195. #define AT91C_SUPC_WUIR_WKUPT5 (0x1 << 21) // (SUPC) Wake Up Input Transition 5
  1196. #define AT91C_SUPC_WUIR_WKUPT5_HIGH_TO_LOW (0x0 << 21) // (SUPC) a high to low level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1197. #define AT91C_SUPC_WUIR_WKUPT5_LOW_TO_HIGH (0x1 << 21) // (SUPC) a low to high level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1198. #define AT91C_SUPC_WUIR_WKUPT6 (0x1 << 22) // (SUPC) Wake Up Input Transition 6
  1199. #define AT91C_SUPC_WUIR_WKUPT6_HIGH_TO_LOW (0x0 << 22) // (SUPC) a high to low level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1200. #define AT91C_SUPC_WUIR_WKUPT6_LOW_TO_HIGH (0x1 << 22) // (SUPC) a low to high level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1201. #define AT91C_SUPC_WUIR_WKUPT7 (0x1 << 23) // (SUPC) Wake Up Input Transition 7
  1202. #define AT91C_SUPC_WUIR_WKUPT7_HIGH_TO_LOW (0x0 << 23) // (SUPC) a high to low level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1203. #define AT91C_SUPC_WUIR_WKUPT7_LOW_TO_HIGH (0x1 << 23) // (SUPC) a low to high level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1204. #define AT91C_SUPC_WUIR_WKUPT8 (0x1 << 24) // (SUPC) Wake Up Input Transition 8
  1205. #define AT91C_SUPC_WUIR_WKUPT8_HIGH_TO_LOW (0x0 << 24) // (SUPC) a high to low level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1206. #define AT91C_SUPC_WUIR_WKUPT8_LOW_TO_HIGH (0x1 << 24) // (SUPC) a low to high level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1207. #define AT91C_SUPC_WUIR_WKUPT9 (0x1 << 25) // (SUPC) Wake Up Input Transition 9
  1208. #define AT91C_SUPC_WUIR_WKUPT9_HIGH_TO_LOW (0x0 << 25) // (SUPC) a high to low level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1209. #define AT91C_SUPC_WUIR_WKUPT9_LOW_TO_HIGH (0x1 << 25) // (SUPC) a low to high level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1210. #define AT91C_SUPC_WUIR_WKUPT10 (0x1 << 26) // (SUPC) Wake Up Input Transition 10
  1211. #define AT91C_SUPC_WUIR_WKUPT10_HIGH_TO_LOW (0x0 << 26) // (SUPC) a high to low level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1212. #define AT91C_SUPC_WUIR_WKUPT10_LOW_TO_HIGH (0x1 << 26) // (SUPC) a low to high level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1213. #define AT91C_SUPC_WUIR_WKUPT11 (0x1 << 27) // (SUPC) Wake Up Input Transition 11
  1214. #define AT91C_SUPC_WUIR_WKUPT11_HIGH_TO_LOW (0x0 << 27) // (SUPC) a high to low level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1215. #define AT91C_SUPC_WUIR_WKUPT11_LOW_TO_HIGH (0x1 << 27) // (SUPC) a low to high level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1216. #define AT91C_SUPC_WUIR_WKUPT12 (0x1 << 28) // (SUPC) Wake Up Input Transition 12
  1217. #define AT91C_SUPC_WUIR_WKUPT12_HIGH_TO_LOW (0x0 << 28) // (SUPC) a high to low level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1218. #define AT91C_SUPC_WUIR_WKUPT12_LOW_TO_HIGH (0x1 << 28) // (SUPC) a low to high level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1219. #define AT91C_SUPC_WUIR_WKUPT13 (0x1 << 29) // (SUPC) Wake Up Input Transition 13
  1220. #define AT91C_SUPC_WUIR_WKUPT13_HIGH_TO_LOW (0x0 << 29) // (SUPC) a high to low level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1221. #define AT91C_SUPC_WUIR_WKUPT13_LOW_TO_HIGH (0x1 << 29) // (SUPC) a low to high level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1222. #define AT91C_SUPC_WUIR_WKUPT14 (0x1 << 30) // (SUPC) Wake Up Input Transition 14
  1223. #define AT91C_SUPC_WUIR_WKUPT14_HIGH_TO_LOW (0x0 << 30) // (SUPC) a high to low level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1224. #define AT91C_SUPC_WUIR_WKUPT14_LOW_TO_HIGH (0x1 << 30) // (SUPC) a low to high level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1225. #define AT91C_SUPC_WUIR_WKUPT15 (0x1 << 31) // (SUPC) Wake Up Input Transition 15
  1226. #define AT91C_SUPC_WUIR_WKUPT15_HIGH_TO_LOW (0x0 << 31) // (SUPC) a high to low level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1227. #define AT91C_SUPC_WUIR_WKUPT15_LOW_TO_HIGH (0x1 << 31) // (SUPC) a low to high level transition on the corresponding wake-up input forces the wake up of the core power supply.
  1228. // -------- SUPC_SR : (SUPC Offset: 0x14) Supply Controller Status Register --------
  1229. #define AT91C_SUPC_SR_FWUPS (0x1 << 0) // (SUPC) FWUP Wake Up Status
  1230. #define AT91C_SUPC_SR_FWUPS_NO (0x0 << 0) // (SUPC) no wake up due to the assertion of the FWUP pin has occurred since the last read of SUPC_SR.
  1231. #define AT91C_SUPC_SR_FWUPS_PRESENT (0x1 << 0) // (SUPC) at least one wake up due to the assertion of the FWUP pin has occurred since the last read of SUPC_SR.
  1232. #define AT91C_SUPC_SR_WKUPS (0x1 << 1) // (SUPC) WKUP Wake Up Status
  1233. #define AT91C_SUPC_SR_WKUPS_NO (0x0 << 1) // (SUPC) no wake up due to the assertion of the WKUP pins has occurred since the last read of SUPC_SR.
  1234. #define AT91C_SUPC_SR_WKUPS_PRESENT (0x1 << 1) // (SUPC) at least one wake up due to the assertion of the WKUP pins has occurred since the last read of SUPC_SR.
  1235. #define AT91C_SUPC_SR_SMWS (0x1 << 2) // (SUPC) Supply Monitor Detection Wake Up Status
  1236. #define AT91C_SUPC_SR_SMWS_NO (0x0 << 2) // (SUPC) no wake up due to a supply monitor detection has occurred since the last read of SUPC_SR.
  1237. #define AT91C_SUPC_SR_SMWS_PRESENT (0x1 << 2) // (SUPC) at least one wake up due to a supply monitor detection has occurred since the last read of SUPC_SR.
  1238. #define AT91C_SUPC_SR_BODRSTS (0x1 << 3) // (SUPC) Brownout Detector Reset Status
  1239. #define AT91C_SUPC_SR_BODRSTS_NO (0x0 << 3) // (SUPC) no core brownout detection has generated a core reset since the last read of the SUPC_SR.
  1240. #define AT91C_SUPC_SR_BODRSTS_PRESENT (0x1 << 3) // (SUPC) at least one core brownout detection has generated a core reset since the last read of the SUPC_SR.
  1241. #define AT91C_SUPC_SR_SMRSTS (0x1 << 4) // (SUPC) Supply Monitor Reset Status
  1242. #define AT91C_SUPC_SR_SMRSTS_NO (0x0 << 4) // (SUPC) no supply monitor detection has generated a core reset since the last read of the SUPC_SR.
  1243. #define AT91C_SUPC_SR_SMRSTS_PRESENT (0x1 << 4) // (SUPC) at least one supply monitor detection has generated a core reset since the last read of the SUPC_SR.
  1244. #define AT91C_SUPC_SR_SMS (0x1 << 5) // (SUPC) Supply Monitor Status
  1245. #define AT91C_SUPC_SR_SMS_NO (0x0 << 5) // (SUPC) no supply monitor detection since the last read of SUPC_SR.
  1246. #define AT91C_SUPC_SR_SMS_PRESENT (0x1 << 5) // (SUPC) at least one supply monitor detection since the last read of SUPC_SR.
  1247. #define AT91C_SUPC_SR_SMOS (0x1 << 6) // (SUPC) Supply Monitor Output Status
  1248. #define AT91C_SUPC_SR_SMOS_HIGH (0x0 << 6) // (SUPC) the supply monitor detected VDDUTMI higher than its threshold at its last measurement.
  1249. #define AT91C_SUPC_SR_SMOS_LOW (0x1 << 6) // (SUPC) the supply monitor detected VDDUTMI lower than its threshold at its last measurement.
  1250. #define AT91C_SUPC_SR_OSCSEL (0x1 << 7) // (SUPC) 32-kHz Oscillator Selection Status
  1251. #define AT91C_SUPC_SR_OSCSEL_RC (0x0 << 7) // (SUPC) the slow clock, SLCK is generated by the embedded 32-kHz RC oscillator.
  1252. #define AT91C_SUPC_SR_OSCSEL_CRYST (0x1 << 7) // (SUPC) the slow clock, SLCK is generated by the 32-kHz crystal oscillator.
  1253. #define AT91C_SUPC_SR_FWUPIS (0x1 << 12) // (SUPC) FWUP Input Status
  1254. #define AT91C_SUPC_SR_FWUPIS_LOW (0x0 << 12) // (SUPC) FWUP input is tied low.
  1255. #define AT91C_SUPC_SR_FWUPIS_HIGH (0x1 << 12) // (SUPC) FWUP input is tied high.
  1256. #define AT91C_SUPC_SR_WKUPIS0 (0x1 << 16) // (SUPC) WKUP Input Status 0
  1257. #define AT91C_SUPC_SR_WKUPIS0_DIS (0x0 << 16) // (SUPC) the corresponding wake-up input is disabled, or was inactive at the time the debouncer triggered a wake up event.
  1258. #define AT91C_SUPC_SR_WKUPIS0_EN (0x1 << 16) // (SUPC) the corresponding wake-up input was active at the time the debouncer triggered a wake up event.
  1259. #define AT91C_SUPC_SR_WKUPIS1 (0x1 << 17) // (SUPC) WKUP Input Status 1
  1260. #define AT91C_SUPC_SR_WKUPIS1_DIS (0x0 << 17) // (SUPC) the corresponding wake-up input is disabled, or was inactive at the time the debouncer triggered a wake up event.
  1261. #define AT91C_SUPC_SR_WKUPIS1_EN (0x1 << 17) // (SUPC) the corresponding wake-up input was active at the time the debouncer triggered a wake up event.
  1262. #define AT91C_SUPC_SR_WKUPIS2 (0x1 << 18) // (SUPC) WKUP Input Status 2
  1263. #define AT91C_SUPC_SR_WKUPIS2_DIS (0x0 << 18) // (SUPC) the corresponding wake-up input is disabled, or was inactive at the time the debouncer triggered a wake up event.
  1264. #define AT91C_SUPC_SR_WKUPIS2_EN (0x1 << 18) // (SUPC) the corresponding wake-up input was active at the time the debouncer triggered a wake up event.
  1265. #define AT91C_SUPC_SR_WKUPIS3 (0x1 << 19) // (SUPC) WKUP Input Status 3
  1266. #define AT91C_SUPC_SR_WKUPIS3_DIS (0x0 << 19) // (SUPC) the corresponding wake-up input is disabled, or was inactive at the time the debouncer triggered a wake up event.
  1267. #define AT91C_SUPC_SR_WKUPIS3_EN (0x1 << 19) // (SUPC) the corresponding wake-up input was active at the time the debouncer triggered a wake up event.
  1268. #define AT91C_SUPC_SR_WKUPIS4 (0x1 << 20) // (SUPC) WKUP Input Status 4
  1269. #define AT91C_SUPC_SR_WKUPIS4_DIS (0x0 << 20) // (SUPC) the corresponding wake-up input is disabled, or was inactive at the time the debouncer triggered a wake up event.
  1270. #define AT91C_SUPC_SR_WKUPIS4_EN (0x1 << 20) // (SUPC) the corresponding wake-up input was active at the time the debouncer triggered a wake up event.
  1271. #define AT91C_SUPC_SR_WKUPIS5 (0x1 << 21) // (SUPC) WKUP Input Status 5
  1272. #define AT91C_SUPC_SR_WKUPIS5_DIS (0x0 << 21) // (SUPC) the corresponding wake-up input is disabled, or was inactive at the time the debouncer triggered a wake up event.
  1273. #define AT91C_SUPC_SR_WKUPIS5_EN (0x1 << 21) // (SUPC) the corresponding wake-up input was active at the time the debouncer triggered a wake up event.
  1274. #define AT91C_SUPC_SR_WKUPIS6 (0x1 << 22) // (SUPC) WKUP Input Status 6
  1275. #define AT91C_SUPC_SR_WKUPIS6_DIS (0x0 << 22) // (SUPC) the corresponding wake-up input is disabled, or was inactive at the time the debouncer triggered a wake up event.
  1276. #define AT91C_SUPC_SR_WKUPIS6_EN (0x1 << 22) // (SUPC) the corresponding wake-up input was active at the time the debouncer triggered a wake up event.
  1277. #define AT91C_SUPC_SR_WKUPIS7 (0x1 << 23) // (SUPC) WKUP Input Status 7
  1278. #define AT91C_SUPC_SR_WKUPIS7_DIS (0x0 << 23) // (SUPC) the corresponding wake-up input is disabled, or was inactive at the time the debouncer triggered a wake up event.
  1279. #define AT91C_SUPC_SR_WKUPIS7_EN (0x1 << 23) // (SUPC) the corresponding wake-up input was active at the time the debouncer triggered a wake up event.
  1280. #define AT91C_SUPC_SR_WKUPIS8 (0x1 << 24) // (SUPC) WKUP Input Status 8
  1281. #define AT91C_SUPC_SR_WKUPIS8_DIS (0x0 << 24) // (SUPC) the corresponding wake-up input is disabled, or was inactive at the time the debouncer triggered a wake up event.
  1282. #define AT91C_SUPC_SR_WKUPIS8_EN (0x1 << 24) // (SUPC) the corresponding wake-up input was active at the time the debouncer triggered a wake up event.
  1283. #define AT91C_SUPC_SR_WKUPIS9 (0x1 << 25) // (SUPC) WKUP Input Status 9
  1284. #define AT91C_SUPC_SR_WKUPIS9_DIS (0x0 << 25) // (SUPC) the corresponding wake-up input is disabled, or was inactive at the time the debouncer triggered a wake up event.
  1285. #define AT91C_SUPC_SR_WKUPIS9_EN (0x1 << 25) // (SUPC) the corresponding wake-up input was active at the time the debouncer triggered a wake up event.
  1286. #define AT91C_SUPC_SR_WKUPIS10 (0x1 << 26) // (SUPC) WKUP Input Status 10
  1287. #define AT91C_SUPC_SR_WKUPIS10_DIS (0x0 << 26) // (SUPC) the corresponding wake-up input is disabled, or was inactive at the time the debouncer triggered a wake up event.
  1288. #define AT91C_SUPC_SR_WKUPIS10_EN (0x1 << 26) // (SUPC) the corresponding wake-up input was active at the time the debouncer triggered a wake up event.
  1289. #define AT91C_SUPC_SR_WKUPIS11 (0x1 << 27) // (SUPC) WKUP Input Status 11
  1290. #define AT91C_SUPC_SR_WKUPIS11_DIS (0x0 << 27) // (SUPC) the corresponding wake-up input is disabled, or was inactive at the time the debouncer triggered a wake up event.
  1291. #define AT91C_SUPC_SR_WKUPIS11_EN (0x1 << 27) // (SUPC) the corresponding wake-up input was active at the time the debouncer triggered a wake up event.
  1292. #define AT91C_SUPC_SR_WKUPIS12 (0x1 << 28) // (SUPC) WKUP Input Status 12
  1293. #define AT91C_SUPC_SR_WKUPIS12_DIS (0x0 << 28) // (SUPC) the corresponding wake-up input is disabled, or was inactive at the time the debouncer triggered a wake up event.
  1294. #define AT91C_SUPC_SR_WKUPIS12_EN (0x1 << 28) // (SUPC) the corresponding wake-up input was active at the time the debouncer triggered a wake up event.
  1295. #define AT91C_SUPC_SR_WKUPIS13 (0x1 << 29) // (SUPC) WKUP Input Status 13
  1296. #define AT91C_SUPC_SR_WKUPIS13_DIS (0x0 << 29) // (SUPC) the corresponding wake-up input is disabled, or was inactive at the time the debouncer triggered a wake up event.
  1297. #define AT91C_SUPC_SR_WKUPIS13_EN (0x1 << 29) // (SUPC) the corresponding wake-up input was active at the time the debouncer triggered a wake up event.
  1298. #define AT91C_SUPC_SR_WKUPIS14 (0x1 << 30) // (SUPC) WKUP Input Status 14
  1299. #define AT91C_SUPC_SR_WKUPIS14_DIS (0x0 << 30) // (SUPC) the corresponding wake-up input is disabled, or was inactive at the time the debouncer triggered a wake up event.
  1300. #define AT91C_SUPC_SR_WKUPIS14_EN (0x1 << 30) // (SUPC) the corresponding wake-up input was active at the time the debouncer triggered a wake up event.
  1301. #define AT91C_SUPC_SR_WKUPIS15 (0x1 << 31) // (SUPC) WKUP Input Status 15
  1302. #define AT91C_SUPC_SR_WKUPIS15_DIS (0x0 << 31) // (SUPC) the corresponding wake-up input is disabled, or was inactive at the time the debouncer triggered a wake up event.
  1303. #define AT91C_SUPC_SR_WKUPIS15_EN (0x1 << 31) // (SUPC) the corresponding wake-up input was active at the time the debouncer triggered a wake up event.
  1304. // *****************************************************************************
  1305. // SOFTWARE API DEFINITION FOR Real Time Timer Controller Interface
  1306. // *****************************************************************************
  1307. #ifndef __ASSEMBLY__
  1308. #else
  1309. #define RTTC_RTMR (AT91_CAST(AT91_REG *) 0x00000000) // (RTTC_RTMR) Real-time Mode Register
  1310. #define RTTC_RTAR (AT91_CAST(AT91_REG *) 0x00000004) // (RTTC_RTAR) Real-time Alarm Register
  1311. #define RTTC_RTVR (AT91_CAST(AT91_REG *) 0x00000008) // (RTTC_RTVR) Real-time Value Register
  1312. #define RTTC_RTSR (AT91_CAST(AT91_REG *) 0x0000000C) // (RTTC_RTSR) Real-time Status Register
  1313. #endif
  1314. // -------- RTTC_RTMR : (RTTC Offset: 0x0) Real-time Mode Register --------
  1315. #define AT91C_RTTC_RTPRES (0xFFFF << 0) // (RTTC) Real-time Timer Prescaler Value
  1316. #define AT91C_RTTC_ALMIEN (0x1 << 16) // (RTTC) Alarm Interrupt Enable
  1317. #define AT91C_RTTC_RTTINCIEN (0x1 << 17) // (RTTC) Real Time Timer Increment Interrupt Enable
  1318. #define AT91C_RTTC_RTTRST (0x1 << 18) // (RTTC) Real Time Timer Restart
  1319. // -------- RTTC_RTAR : (RTTC Offset: 0x4) Real-time Alarm Register --------
  1320. #define AT91C_RTTC_ALMV (0x0 << 0) // (RTTC) Alarm Value
  1321. // -------- RTTC_RTVR : (RTTC Offset: 0x8) Current Real-time Value Register --------
  1322. #define AT91C_RTTC_CRTV (0x0 << 0) // (RTTC) Current Real-time Value
  1323. // -------- RTTC_RTSR : (RTTC Offset: 0xc) Real-time Status Register --------
  1324. #define AT91C_RTTC_ALMS (0x1 << 0) // (RTTC) Real-time Alarm Status
  1325. #define AT91C_RTTC_RTTINC (0x1 << 1) // (RTTC) Real-time Timer Increment
  1326. // *****************************************************************************
  1327. // SOFTWARE API DEFINITION FOR Watchdog Timer Controller Interface
  1328. // *****************************************************************************
  1329. #ifndef __ASSEMBLY__
  1330. #else
  1331. #define WDTC_WDCR (AT91_CAST(AT91_REG *) 0x00000000) // (WDTC_WDCR) Watchdog Control Register
  1332. #define WDTC_WDMR (AT91_CAST(AT91_REG *) 0x00000004) // (WDTC_WDMR) Watchdog Mode Register
  1333. #define WDTC_WDSR (AT91_CAST(AT91_REG *) 0x00000008) // (WDTC_WDSR) Watchdog Status Register
  1334. #endif
  1335. // -------- WDTC_WDCR : (WDTC Offset: 0x0) Periodic Interval Image Register --------
  1336. #define AT91C_WDTC_WDRSTT (0x1 << 0) // (WDTC) Watchdog Restart
  1337. #define AT91C_WDTC_KEY (0xFF << 24) // (WDTC) Watchdog KEY Password
  1338. // -------- WDTC_WDMR : (WDTC Offset: 0x4) Watchdog Mode Register --------
  1339. #define AT91C_WDTC_WDV (0xFFF << 0) // (WDTC) Watchdog Timer Restart
  1340. #define AT91C_WDTC_WDFIEN (0x1 << 12) // (WDTC) Watchdog Fault Interrupt Enable
  1341. #define AT91C_WDTC_WDRSTEN (0x1 << 13) // (WDTC) Watchdog Reset Enable
  1342. #define AT91C_WDTC_WDRPROC (0x1 << 14) // (WDTC) Watchdog Timer Restart
  1343. #define AT91C_WDTC_WDDIS (0x1 << 15) // (WDTC) Watchdog Disable
  1344. #define AT91C_WDTC_WDD (0xFFF << 16) // (WDTC) Watchdog Delta Value
  1345. #define AT91C_WDTC_WDDBGHLT (0x1 << 28) // (WDTC) Watchdog Debug Halt
  1346. #define AT91C_WDTC_WDIDLEHLT (0x1 << 29) // (WDTC) Watchdog Idle Halt
  1347. // -------- WDTC_WDSR : (WDTC Offset: 0x8) Watchdog Status Register --------
  1348. #define AT91C_WDTC_WDUNF (0x1 << 0) // (WDTC) Watchdog Underflow
  1349. #define AT91C_WDTC_WDERR (0x1 << 1) // (WDTC) Watchdog Error
  1350. // *****************************************************************************
  1351. // SOFTWARE API DEFINITION FOR Real-time Clock Alarm and Parallel Load Interface
  1352. // *****************************************************************************
  1353. #ifndef __ASSEMBLY__
  1354. #else
  1355. #define RTC_CR (AT91_CAST(AT91_REG *) 0x00000000) // (RTC_CR) Control Register
  1356. #define RTC_MR (AT91_CAST(AT91_REG *) 0x00000004) // (RTC_MR) Mode Register
  1357. #define RTC_TIMR (AT91_CAST(AT91_REG *) 0x00000008) // (RTC_TIMR) Time Register
  1358. #define RTC_CALR (AT91_CAST(AT91_REG *) 0x0000000C) // (RTC_CALR) Calendar Register
  1359. #define RTC_TIMALR (AT91_CAST(AT91_REG *) 0x00000010) // (RTC_TIMALR) Time Alarm Register
  1360. #define RTC_CALALR (AT91_CAST(AT91_REG *) 0x00000014) // (RTC_CALALR) Calendar Alarm Register
  1361. #define RTC_SR (AT91_CAST(AT91_REG *) 0x00000018) // (RTC_SR) Status Register
  1362. #define RTC_SCCR (AT91_CAST(AT91_REG *) 0x0000001C) // (RTC_SCCR) Status Clear Command Register
  1363. #define RTC_IER (AT91_CAST(AT91_REG *) 0x00000020) // (RTC_IER) Interrupt Enable Register
  1364. #define RTC_IDR (AT91_CAST(AT91_REG *) 0x00000024) // (RTC_IDR) Interrupt Disable Register
  1365. #define RTC_IMR (AT91_CAST(AT91_REG *) 0x00000028) // (RTC_IMR) Interrupt Mask Register
  1366. #define RTC_VER (AT91_CAST(AT91_REG *) 0x0000002C) // (RTC_VER) Valid Entry Register
  1367. #endif
  1368. // -------- RTC_CR : (RTC Offset: 0x0) RTC Control Register --------
  1369. #define AT91C_RTC_UPDTIM (0x1 << 0) // (RTC) Update Request Time Register
  1370. #define AT91C_RTC_UPDCAL (0x1 << 1) // (RTC) Update Request Calendar Register
  1371. #define AT91C_RTC_TIMEVSEL (0x3 << 8) // (RTC) Time Event Selection
  1372. #define AT91C_RTC_TIMEVSEL_MINUTE (0x0 << 8) // (RTC) Minute change.
  1373. #define AT91C_RTC_TIMEVSEL_HOUR (0x1 << 8) // (RTC) Hour change.
  1374. #define AT91C_RTC_TIMEVSEL_DAY24 (0x2 << 8) // (RTC) Every day at midnight.
  1375. #define AT91C_RTC_TIMEVSEL_DAY12 (0x3 << 8) // (RTC) Every day at noon.
  1376. #define AT91C_RTC_CALEVSEL (0x3 << 16) // (RTC) Calendar Event Selection
  1377. #define AT91C_RTC_CALEVSEL_WEEK (0x0 << 16) // (RTC) Week change (every Monday at time 00:00:00).
  1378. #define AT91C_RTC_CALEVSEL_MONTH (0x1 << 16) // (RTC) Month change (every 01 of each month at time 00:00:00).
  1379. #define AT91C_RTC_CALEVSEL_YEAR (0x2 << 16) // (RTC) Year change (every January 1 at time 00:00:00).
  1380. // -------- RTC_MR : (RTC Offset: 0x4) RTC Mode Register --------
  1381. #define AT91C_RTC_HRMOD (0x1 << 0) // (RTC) 12-24 hour Mode
  1382. // -------- RTC_TIMR : (RTC Offset: 0x8) RTC Time Register --------
  1383. #define AT91C_RTC_SEC (0x7F << 0) // (RTC) Current Second
  1384. #define AT91C_RTC_MIN (0x7F << 8) // (RTC) Current Minute
  1385. #define AT91C_RTC_HOUR (0x3F << 16) // (RTC) Current Hour
  1386. #define AT91C_RTC_AMPM (0x1 << 22) // (RTC) Ante Meridiem, Post Meridiem Indicator
  1387. // -------- RTC_CALR : (RTC Offset: 0xc) RTC Calendar Register --------
  1388. #define AT91C_RTC_CENT (0x3F << 0) // (RTC) Current Century
  1389. #define AT91C_RTC_YEAR (0xFF << 8) // (RTC) Current Year
  1390. #define AT91C_RTC_MONTH (0x1F << 16) // (RTC) Current Month
  1391. #define AT91C_RTC_DAY (0x7 << 21) // (RTC) Current Day
  1392. #define AT91C_RTC_DATE (0x3F << 24) // (RTC) Current Date
  1393. // -------- RTC_TIMALR : (RTC Offset: 0x10) RTC Time Alarm Register --------
  1394. #define AT91C_RTC_SECEN (0x1 << 7) // (RTC) Second Alarm Enable
  1395. #define AT91C_RTC_MINEN (0x1 << 15) // (RTC) Minute Alarm
  1396. #define AT91C_RTC_HOUREN (0x1 << 23) // (RTC) Current Hour
  1397. // -------- RTC_CALALR : (RTC Offset: 0x14) RTC Calendar Alarm Register --------
  1398. #define AT91C_RTC_MONTHEN (0x1 << 23) // (RTC) Month Alarm Enable
  1399. #define AT91C_RTC_DATEEN (0x1 << 31) // (RTC) Date Alarm Enable
  1400. // -------- RTC_SR : (RTC Offset: 0x18) RTC Status Register --------
  1401. #define AT91C_RTC_ACKUPD (0x1 << 0) // (RTC) Acknowledge for Update
  1402. #define AT91C_RTC_ALARM (0x1 << 1) // (RTC) Alarm Flag
  1403. #define AT91C_RTC_SECEV (0x1 << 2) // (RTC) Second Event
  1404. #define AT91C_RTC_TIMEV (0x1 << 3) // (RTC) Time Event
  1405. #define AT91C_RTC_CALEV (0x1 << 4) // (RTC) Calendar event
  1406. // -------- RTC_SCCR : (RTC Offset: 0x1c) RTC Status Clear Command Register --------
  1407. // -------- RTC_IER : (RTC Offset: 0x20) RTC Interrupt Enable Register --------
  1408. // -------- RTC_IDR : (RTC Offset: 0x24) RTC Interrupt Disable Register --------
  1409. // -------- RTC_IMR : (RTC Offset: 0x28) RTC Interrupt Mask Register --------
  1410. // -------- RTC_VER : (RTC Offset: 0x2c) RTC Valid Entry Register --------
  1411. #define AT91C_RTC_NVTIM (0x1 << 0) // (RTC) Non valid Time
  1412. #define AT91C_RTC_NVCAL (0x1 << 1) // (RTC) Non valid Calendar
  1413. #define AT91C_RTC_NVTIMALR (0x1 << 2) // (RTC) Non valid time Alarm
  1414. #define AT91C_RTC_NVCALALR (0x1 << 3) // (RTC) Nonvalid Calendar Alarm
  1415. // *****************************************************************************
  1416. // SOFTWARE API DEFINITION FOR Analog to Digital Convertor
  1417. // *****************************************************************************
  1418. #ifndef __ASSEMBLY__
  1419. #else
  1420. #define ADC_CR (AT91_CAST(AT91_REG *) 0x00000000) // (ADC_CR) ADC Control Register
  1421. #define ADC_MR (AT91_CAST(AT91_REG *) 0x00000004) // (ADC_MR) ADC Mode Register
  1422. #define ADC_CHER (AT91_CAST(AT91_REG *) 0x00000010) // (ADC_CHER) ADC Channel Enable Register
  1423. #define ADC_CHDR (AT91_CAST(AT91_REG *) 0x00000014) // (ADC_CHDR) ADC Channel Disable Register
  1424. #define ADC_CHSR (AT91_CAST(AT91_REG *) 0x00000018) // (ADC_CHSR) ADC Channel Status Register
  1425. #define ADC_SR (AT91_CAST(AT91_REG *) 0x0000001C) // (ADC_SR) ADC Status Register
  1426. #define ADC_LCDR (AT91_CAST(AT91_REG *) 0x00000020) // (ADC_LCDR) ADC Last Converted Data Register
  1427. #define ADC_IER (AT91_CAST(AT91_REG *) 0x00000024) // (ADC_IER) ADC Interrupt Enable Register
  1428. #define ADC_IDR (AT91_CAST(AT91_REG *) 0x00000028) // (ADC_IDR) ADC Interrupt Disable Register
  1429. #define ADC_IMR (AT91_CAST(AT91_REG *) 0x0000002C) // (ADC_IMR) ADC Interrupt Mask Register
  1430. #define ADC_CDR0 (AT91_CAST(AT91_REG *) 0x00000030) // (ADC_CDR0) ADC Channel Data Register 0
  1431. #define ADC_CDR1 (AT91_CAST(AT91_REG *) 0x00000034) // (ADC_CDR1) ADC Channel Data Register 1
  1432. #define ADC_CDR2 (AT91_CAST(AT91_REG *) 0x00000038) // (ADC_CDR2) ADC Channel Data Register 2
  1433. #define ADC_CDR3 (AT91_CAST(AT91_REG *) 0x0000003C) // (ADC_CDR3) ADC Channel Data Register 3
  1434. #define ADC_CDR4 (AT91_CAST(AT91_REG *) 0x00000040) // (ADC_CDR4) ADC Channel Data Register 4
  1435. #define ADC_CDR5 (AT91_CAST(AT91_REG *) 0x00000044) // (ADC_CDR5) ADC Channel Data Register 5
  1436. #define ADC_CDR6 (AT91_CAST(AT91_REG *) 0x00000048) // (ADC_CDR6) ADC Channel Data Register 6
  1437. #define ADC_CDR7 (AT91_CAST(AT91_REG *) 0x0000004C) // (ADC_CDR7) ADC Channel Data Register 7
  1438. #define ADC_ACR (AT91_CAST(AT91_REG *) 0x00000064) // (ADC_ACR) Analog Control Register
  1439. #define ADC_EMR (AT91_CAST(AT91_REG *) 0x00000068) // (ADC_EMR) Extended Mode Register
  1440. #define ADC_ADDRSIZE (AT91_CAST(AT91_REG *) 0x000000EC) // (ADC_ADDRSIZE) ADC ADDRSIZE REGISTER
  1441. #define ADC_IPNAME1 (AT91_CAST(AT91_REG *) 0x000000F0) // (ADC_IPNAME1) ADC IPNAME1 REGISTER
  1442. #define ADC_IPNAME2 (AT91_CAST(AT91_REG *) 0x000000F4) // (ADC_IPNAME2) ADC IPNAME2 REGISTER
  1443. #define ADC_FEATURES (AT91_CAST(AT91_REG *) 0x000000F8) // (ADC_FEATURES) ADC FEATURES REGISTER
  1444. #define ADC_VER (AT91_CAST(AT91_REG *) 0x000000FC) // (ADC_VER) ADC VERSION REGISTER
  1445. #endif
  1446. // -------- ADC_CR : (ADC Offset: 0x0) ADC Control Register --------
  1447. #define AT91C_ADC_SWRST (0x1 << 0) // (ADC) Software Reset
  1448. #define AT91C_ADC_START (0x1 << 1) // (ADC) Start Conversion
  1449. // -------- ADC_MR : (ADC Offset: 0x4) ADC Mode Register --------
  1450. #define AT91C_ADC_TRGEN (0x1 << 0) // (ADC) Trigger Enable
  1451. #define AT91C_ADC_TRGEN_DIS (0x0) // (ADC) Hradware triggers are disabled. Starting a conversion is only possible by software
  1452. #define AT91C_ADC_TRGEN_EN (0x1) // (ADC) Hardware trigger selected by TRGSEL field is enabled.
  1453. #define AT91C_ADC_TRGSEL (0x7 << 1) // (ADC) Trigger Selection
  1454. #define AT91C_ADC_TRGSEL_EXT (0x0 << 1) // (ADC) Selected TRGSEL = External Trigger
  1455. #define AT91C_ADC_TRGSEL_TIOA0 (0x1 << 1) // (ADC) Selected TRGSEL = TIAO0
  1456. #define AT91C_ADC_TRGSEL_TIOA1 (0x2 << 1) // (ADC) Selected TRGSEL = TIAO1
  1457. #define AT91C_ADC_TRGSEL_TIOA2 (0x3 << 1) // (ADC) Selected TRGSEL = TIAO2
  1458. #define AT91C_ADC_TRGSEL_PWM0_TRIG (0x4 << 1) // (ADC) Selected TRGSEL = PWM trigger
  1459. #define AT91C_ADC_TRGSEL_PWM1_TRIG (0x5 << 1) // (ADC) Selected TRGSEL = PWM Trigger
  1460. #define AT91C_ADC_TRGSEL_RESERVED (0x6 << 1) // (ADC) Selected TRGSEL = Reserved
  1461. #define AT91C_ADC_LOWRES (0x1 << 4) // (ADC) Resolution.
  1462. #define AT91C_ADC_LOWRES_12_BIT (0x0 << 4) // (ADC) 10-bit resolution
  1463. #define AT91C_ADC_LOWRES_10_BIT (0x1 << 4) // (ADC) 8-bit resolution
  1464. #define AT91C_ADC_SLEEP (0x1 << 5) // (ADC) Sleep Mode
  1465. #define AT91C_ADC_SLEEP_NORMAL_MODE (0x0 << 5) // (ADC) Normal Mode
  1466. #define AT91C_ADC_SLEEP_MODE (0x1 << 5) // (ADC) Sleep Mode
  1467. #define AT91C_ADC_PRESCAL (0x3F << 8) // (ADC) Prescaler rate selection
  1468. #define AT91C_ADC_STARTUP (0x1F << 16) // (ADC) Startup Time
  1469. #define AT91C_ADC_SHTIM (0xF << 24) // (ADC) Sample & Hold Time
  1470. // -------- ADC_CHER : (ADC Offset: 0x10) ADC Channel Enable Register --------
  1471. #define AT91C_ADC_CH0 (0x1 << 0) // (ADC) Channel 0
  1472. #define AT91C_ADC_CH1 (0x1 << 1) // (ADC) Channel 1
  1473. #define AT91C_ADC_CH2 (0x1 << 2) // (ADC) Channel 2
  1474. #define AT91C_ADC_CH3 (0x1 << 3) // (ADC) Channel 3
  1475. #define AT91C_ADC_CH4 (0x1 << 4) // (ADC) Channel 4
  1476. #define AT91C_ADC_CH5 (0x1 << 5) // (ADC) Channel 5
  1477. #define AT91C_ADC_CH6 (0x1 << 6) // (ADC) Channel 6
  1478. #define AT91C_ADC_CH7 (0x1 << 7) // (ADC) Channel 7
  1479. // -------- ADC_CHDR : (ADC Offset: 0x14) ADC Channel Disable Register --------
  1480. // -------- ADC_CHSR : (ADC Offset: 0x18) ADC Channel Status Register --------
  1481. // -------- ADC_SR : (ADC Offset: 0x1c) ADC Status Register --------
  1482. #define AT91C_ADC_EOC0 (0x1 << 0) // (ADC) End of Conversion
  1483. #define AT91C_ADC_EOC1 (0x1 << 1) // (ADC) End of Conversion
  1484. #define AT91C_ADC_EOC2 (0x1 << 2) // (ADC) End of Conversion
  1485. #define AT91C_ADC_EOC3 (0x1 << 3) // (ADC) End of Conversion
  1486. #define AT91C_ADC_EOC4 (0x1 << 4) // (ADC) End of Conversion
  1487. #define AT91C_ADC_EOC5 (0x1 << 5) // (ADC) End of Conversion
  1488. #define AT91C_ADC_EOC6 (0x1 << 6) // (ADC) End of Conversion
  1489. #define AT91C_ADC_EOC7 (0x1 << 7) // (ADC) End of Conversion
  1490. #define AT91C_ADC_OVRE0 (0x1 << 8) // (ADC) Overrun Error
  1491. #define AT91C_ADC_OVRE1 (0x1 << 9) // (ADC) Overrun Error
  1492. #define AT91C_ADC_OVRE2 (0x1 << 10) // (ADC) Overrun Error
  1493. #define AT91C_ADC_OVRE3 (0x1 << 11) // (ADC) Overrun Error
  1494. #define AT91C_ADC_OVRE4 (0x1 << 12) // (ADC) Overrun Error
  1495. #define AT91C_ADC_OVRE5 (0x1 << 13) // (ADC) Overrun Error
  1496. #define AT91C_ADC_OVRE6 (0x1 << 14) // (ADC) Overrun Error
  1497. #define AT91C_ADC_OVRE7 (0x1 << 15) // (ADC) Overrun Error
  1498. #define AT91C_ADC_DRDY (0x1 << 16) // (ADC) Data Ready
  1499. #define AT91C_ADC_GOVRE (0x1 << 17) // (ADC) General Overrun
  1500. #define AT91C_ADC_ENDRX (0x1 << 18) // (ADC) End of Receiver Transfer
  1501. #define AT91C_ADC_RXBUFF (0x1 << 19) // (ADC) RXBUFF Interrupt
  1502. // -------- ADC_LCDR : (ADC Offset: 0x20) ADC Last Converted Data Register --------
  1503. #define AT91C_ADC_LDATA (0x3FF << 0) // (ADC) Last Data Converted
  1504. // -------- ADC_IER : (ADC Offset: 0x24) ADC Interrupt Enable Register --------
  1505. // -------- ADC_IDR : (ADC Offset: 0x28) ADC Interrupt Disable Register --------
  1506. // -------- ADC_IMR : (ADC Offset: 0x2c) ADC Interrupt Mask Register --------
  1507. // -------- ADC_CDR0 : (ADC Offset: 0x30) ADC Channel Data Register 0 --------
  1508. #define AT91C_ADC_DATA (0x3FF << 0) // (ADC) Converted Data
  1509. // -------- ADC_CDR1 : (ADC Offset: 0x34) ADC Channel Data Register 1 --------
  1510. // -------- ADC_CDR2 : (ADC Offset: 0x38) ADC Channel Data Register 2 --------
  1511. // -------- ADC_CDR3 : (ADC Offset: 0x3c) ADC Channel Data Register 3 --------
  1512. // -------- ADC_CDR4 : (ADC Offset: 0x40) ADC Channel Data Register 4 --------
  1513. // -------- ADC_CDR5 : (ADC Offset: 0x44) ADC Channel Data Register 5 --------
  1514. // -------- ADC_CDR6 : (ADC Offset: 0x48) ADC Channel Data Register 6 --------
  1515. // -------- ADC_CDR7 : (ADC Offset: 0x4c) ADC Channel Data Register 7 --------
  1516. // -------- ADC_ACR : (ADC Offset: 0x64) ADC Analog Controler Register --------
  1517. #define AT91C_ADC_GAIN (0x3 << 0) // (ADC) Input Gain
  1518. #define AT91C_ADC_IBCTL (0x3 << 6) // (ADC) Bias Current Control
  1519. #define AT91C_ADC_IBCTL_00 (0x0 << 6) // (ADC) typ - 20%
  1520. #define AT91C_ADC_IBCTL_01 (0x1 << 6) // (ADC) typ
  1521. #define AT91C_ADC_IBCTL_10 (0x2 << 6) // (ADC) typ + 20%
  1522. #define AT91C_ADC_IBCTL_11 (0x3 << 6) // (ADC) typ + 40%
  1523. #define AT91C_ADC_DIFF (0x1 << 16) // (ADC) Differential Mode
  1524. #define AT91C_ADC_OFFSET (0x1 << 17) // (ADC) Input OFFSET
  1525. // -------- ADC_EMR : (ADC Offset: 0x68) ADC Extended Mode Register --------
  1526. #define AT91C_OFFMODES (0x1 << 0) // (ADC) Off Mode if
  1527. #define AT91C_OFF_MODE_STARTUP_TIME (0x1 << 16) // (ADC) Startup Time
  1528. // -------- ADC_VER : (ADC Offset: 0xfc) ADC VER --------
  1529. #define AT91C_ADC_VER (0xF << 0) // (ADC) ADC VER
  1530. // *****************************************************************************
  1531. // SOFTWARE API DEFINITION FOR Analog-to Digital Converter
  1532. // *****************************************************************************
  1533. #ifndef __ASSEMBLY__
  1534. #else
  1535. #define ADC12B_CR (AT91_CAST(AT91_REG *) 0x00000000) // Control Register
  1536. #define ADC12B_MR (AT91_CAST(AT91_REG *) 0x00000004) // Mode Register
  1537. #define ADC12B_CHER (AT91_CAST(AT91_REG *) 0x00000010) // Channel Enable Register
  1538. #define ADC12B_CHDR (AT91_CAST(AT91_REG *) 0x00000014) // Channel Disable Register
  1539. #define ADC12B_CHSR (AT91_CAST(AT91_REG *) 0x00000018) // Channel Status Register
  1540. #define ADC12B_SR (AT91_CAST(AT91_REG *) 0x0000001C) // Status Register
  1541. #define ADC12B_LCDR (AT91_CAST(AT91_REG *) 0x00000020) // Last Converted Data Register
  1542. #define ADC12B_IER (AT91_CAST(AT91_REG *) 0x00000024) // Interrupt Enable Register
  1543. #define ADC12B_IDR (AT91_CAST(AT91_REG *) 0x00000028) // Interrupt Disable Register
  1544. #define ADC12B_IMR (AT91_CAST(AT91_REG *) 0x0000002C) // Interrupt Mask Register
  1545. #define ADC12B_CDR (AT91_CAST(AT91_REG *) 0x00000030) // Channel Data Register
  1546. #define ADC12B_ACR (AT91_CAST(AT91_REG *) 0x00000064) // Analog Control Register
  1547. #define ADC12B_EMR (AT91_CAST(AT91_REG *) 0x00000068) // Extended Mode Register
  1548. #endif
  1549. // -------- ADC12B_CR : (ADC12B Offset: 0x00) Control Register --------
  1550. #define AT91C_ADC12B_CR_SWRST (0x1 << 0) // (ADC12B) Software Reset
  1551. #define AT91C_ADC12B_CR_SWRST_NO_EFFECT (0x0 << 0) // (ADC12B) No effect.
  1552. #define AT91C_ADC12B_CR_SWRST_RESET (0x1 << 0) // (ADC12B) Resets the ADC12B simulating a hardware reset.
  1553. #define AT91C_ADC12B_CR_START (0x1 << 1) // (ADC12B) Start Conversion
  1554. #define AT91C_ADC12B_CR_START_NO_EFFECT (0x0 << 1) // (ADC12B) No effect.
  1555. #define AT91C_ADC12B_CR_START_BEGIN_ADC (0x1 << 1) // (ADC12B) Begins analog-to-digital conversion.
  1556. // -------- ADC12B_MR : (ADC12B Offset: 0x04) Mode Register --------
  1557. #define AT91C_ADC12B_MR_TRGEN (0x1 << 0) // (ADC12B) Trigger Enable
  1558. #define AT91C_ADC12B_MR_TRGEN_DIS (0x0 << 0) // (ADC12B) Hardware triggers are disabled. Starting a conversion is only possible by software.
  1559. #define AT91C_ADC12B_MR_TRGEN_EN (0x1 << 0) // (ADC12B) Hardware trigger selected by TRGSEL field is enabled.
  1560. #define AT91C_ADC12B_MR_TRGSEL (0x7 << 1) // (ADC12B) Trigger Selection
  1561. #define AT91C_ADC12B_MR_TRGSEL_EXT_TRIG (0x0 << 1) // (ADC12B) External trigger
  1562. #define AT91C_ADC12B_MR_TRGSEL_TIOA_0 (0x1 << 1) // (ADC12B) TIO Output of the Timer Counter Channel 0
  1563. #define AT91C_ADC12B_MR_TRGSEL_TIOA_1 (0x2 << 1) // (ADC12B) TIO Output of the Timer Counter Channel 1
  1564. #define AT91C_ADC12B_MR_TRGSEL_TIOA_2 (0x3 << 1) // (ADC12B) TIO Output of the Timer Counter Channel 2
  1565. #define AT91C_ADC12B_MR_TRGSEL_TIOA_3 (0x4 << 1) // (ADC12B) PWM Event Line 0
  1566. #define AT91C_ADC12B_MR_TRGSEL_TIOA_4 (0x5 << 1) // (ADC12B) PWM Event Line 1
  1567. #define AT91C_ADC12B_MR_LOWRES (0x1 << 4) // (ADC12B) Resolution
  1568. #define AT91C_ADC12B_MR_LOWRES_12_BIT (0x0 << 4) // (ADC12B) 12-bit resolution
  1569. #define AT91C_ADC12B_MR_LOWRES_10_BIT (0x1 << 4) // (ADC12B) 10-bit resolution
  1570. #define AT91C_ADC12B_MR_SLEEP (0x1 << 5) // (ADC12B) Sleep Mode
  1571. #define AT91C_ADC12B_MR_SLEEP_NORMAL (0x0 << 5) // (ADC12B) Normal Mode
  1572. #define AT91C_ADC12B_MR_SLEEP_SLEEP (0x1 << 5) // (ADC12B) Sleep Modes (see OFFMODES register)
  1573. #define AT91C_ADC12B_MR_PRESCAL (0xff << 8) // (ADC12B) Prescaler Rate Selection
  1574. #define AT91C_ADC12B_MR_STARTUP (0xff << 16) // (ADC12B) Start Up Time
  1575. #define AT91C_ADC12B_MR_SHTIM (0xf << 24) // (ADC12B) Sample & Hold Time
  1576. // -------- ADC12B_CHER : (ADC12B Offset: 0x10) Channel Enable Register --------
  1577. #define AT91C_ADC12B_CHER_CH0 (0x1 << 0) // (ADC12B) Channel 0 Enable
  1578. #define AT91C_ADC12B_CHER_CH0_NO_EFFECT (0x0 << 0) // (ADC12B) No effect.
  1579. #define AT91C_ADC12B_CHER_CH0_ENABLE (0x1 << 0) // (ADC12B) Enables the corresponding channel.
  1580. #define AT91C_ADC12B_CHER_CH1 (0x1 << 1) // (ADC12B) Channel 1 Enable
  1581. #define AT91C_ADC12B_CHER_CH1_NO_EFFECT (0x0 << 1) // (ADC12B) No effect.
  1582. #define AT91C_ADC12B_CHER_CH1_ENABLE (0x1 << 1) // (ADC12B) Enables the corresponding channel.
  1583. #define AT91C_ADC12B_CHER_CH2 (0x1 << 2) // (ADC12B) Channel 2 Enable
  1584. #define AT91C_ADC12B_CHER_CH2_NO_EFFECT (0x0 << 2) // (ADC12B) No effect.
  1585. #define AT91C_ADC12B_CHER_CH2_ENABLE (0x1 << 2) // (ADC12B) Enables the corresponding channel.
  1586. #define AT91C_ADC12B_CHER_CH3 (0x1 << 3) // (ADC12B) Channel 3 Enable
  1587. #define AT91C_ADC12B_CHER_CH3_NO_EFFECT (0x0 << 3) // (ADC12B) No effect.
  1588. #define AT91C_ADC12B_CHER_CH3_ENABLE (0x1 << 3) // (ADC12B) Enables the corresponding channel.
  1589. #define AT91C_ADC12B_CHER_CH4 (0x1 << 4) // (ADC12B) Channel 4 Enable
  1590. #define AT91C_ADC12B_CHER_CH4_NO_EFFECT (0x0 << 4) // (ADC12B) No effect.
  1591. #define AT91C_ADC12B_CHER_CH4_ENABLE (0x1 << 4) // (ADC12B) Enables the corresponding channel.
  1592. #define AT91C_ADC12B_CHER_CH5 (0x1 << 5) // (ADC12B) Channel 5 Enable
  1593. #define AT91C_ADC12B_CHER_CH5_NO_EFFECT (0x0 << 5) // (ADC12B) No effect.
  1594. #define AT91C_ADC12B_CHER_CH5_ENABLE (0x1 << 5) // (ADC12B) Enables the corresponding channel.
  1595. #define AT91C_ADC12B_CHER_CH6 (0x1 << 6) // (ADC12B) Channel 6 Enable
  1596. #define AT91C_ADC12B_CHER_CH6_NO_EFFECT (0x0 << 6) // (ADC12B) No effect.
  1597. #define AT91C_ADC12B_CHER_CH6_ENABLE (0x1 << 6) // (ADC12B) Enables the corresponding channel.
  1598. #define AT91C_ADC12B_CHER_CH7 (0x1 << 7) // (ADC12B) Channel 7 Enable
  1599. #define AT91C_ADC12B_CHER_CH7_NO_EFFECT (0x0 << 7) // (ADC12B) No effect.
  1600. #define AT91C_ADC12B_CHER_CH7_ENABLE (0x1 << 7) // (ADC12B) Enables the corresponding channel.
  1601. // -------- ADC12B_CHDR : (ADC12B Offset: 0x14) Channel Disable Register --------
  1602. #define AT91C_ADC12B_CHDR_CH0 (0x1 << 0) // (ADC12B) Channel 0 Disable
  1603. #define AT91C_ADC12B_CHDR_CH0_NO_EFFECT (0x0 << 0) // (ADC12B) No effect.
  1604. #define AT91C_ADC12B_CHDR_CH0_DISABLE (0x1 << 0) // (ADC12B) Disables the corresponding channel.
  1605. #define AT91C_ADC12B_CHDR_CH1 (0x1 << 1) // (ADC12B) Channel 1 Disable
  1606. #define AT91C_ADC12B_CHDR_CH1_NO_EFFECT (0x0 << 1) // (ADC12B) No effect.
  1607. #define AT91C_ADC12B_CHDR_CH1_DISABLE (0x1 << 1) // (ADC12B) Disables the corresponding channel.
  1608. #define AT91C_ADC12B_CHDR_CH2 (0x1 << 2) // (ADC12B) Channel 2 Disable
  1609. #define AT91C_ADC12B_CHDR_CH2_NO_EFFECT (0x0 << 2) // (ADC12B) No effect.
  1610. #define AT91C_ADC12B_CHDR_CH2_DISABLE (0x1 << 2) // (ADC12B) Disables the corresponding channel.
  1611. #define AT91C_ADC12B_CHDR_CH3 (0x1 << 3) // (ADC12B) Channel 3 Disable
  1612. #define AT91C_ADC12B_CHDR_CH3_NO_EFFECT (0x0 << 3) // (ADC12B) No effect.
  1613. #define AT91C_ADC12B_CHDR_CH3_DISABLE (0x1 << 3) // (ADC12B) Disables the corresponding channel.
  1614. #define AT91C_ADC12B_CHDR_CH4 (0x1 << 4) // (ADC12B) Channel 4 Disable
  1615. #define AT91C_ADC12B_CHDR_CH4_NO_EFFECT (0x0 << 4) // (ADC12B) No effect.
  1616. #define AT91C_ADC12B_CHDR_CH4_DISABLE (0x1 << 4) // (ADC12B) Disables the corresponding channel.
  1617. #define AT91C_ADC12B_CHDR_CH5 (0x1 << 5) // (ADC12B) Channel 5 Disable
  1618. #define AT91C_ADC12B_CHDR_CH5_NO_EFFECT (0x0 << 5) // (ADC12B) No effect.
  1619. #define AT91C_ADC12B_CHDR_CH5_DISABLE (0x1 << 5) // (ADC12B) Disables the corresponding channel.
  1620. #define AT91C_ADC12B_CHDR_CH6 (0x1 << 6) // (ADC12B) Channel 6 Disable
  1621. #define AT91C_ADC12B_CHDR_CH6_NO_EFFECT (0x0 << 6) // (ADC12B) No effect.
  1622. #define AT91C_ADC12B_CHDR_CH6_DISABLE (0x1 << 6) // (ADC12B) Disables the corresponding channel.
  1623. #define AT91C_ADC12B_CHDR_CH7 (0x1 << 7) // (ADC12B) Channel 7 Disable
  1624. #define AT91C_ADC12B_CHDR_CH7_NO_EFFECT (0x0 << 7) // (ADC12B) No effect.
  1625. #define AT91C_ADC12B_CHDR_CH7_DISABLE (0x1 << 7) // (ADC12B) Disables the corresponding channel.
  1626. // -------- ADC12B_CHSR : (ADC12B Offset: 0x18) Channel Status Register --------
  1627. #define AT91C_ADC12B_CHSR_CH0 (0x1 << 0) // (ADC12B) Channel 0 Status
  1628. #define AT91C_ADC12B_CHSR_CH0_DISABLED (0x0 << 0) // (ADC12B) Corresponding channel is disabled.
  1629. #define AT91C_ADC12B_CHSR_CH0_ENABLED (0x1 << 0) // (ADC12B) Corresponding channel is enabled.
  1630. #define AT91C_ADC12B_CHSR_CH1 (0x1 << 1) // (ADC12B) Channel 1 Status
  1631. #define AT91C_ADC12B_CHSR_CH1_DISABLED (0x0 << 1) // (ADC12B) Corresponding channel is disabled.
  1632. #define AT91C_ADC12B_CHSR_CH1_ENABLED (0x1 << 1) // (ADC12B) Corresponding channel is enabled.
  1633. #define AT91C_ADC12B_CHSR_CH2 (0x1 << 2) // (ADC12B) Channel 2 Status
  1634. #define AT91C_ADC12B_CHSR_CH2_DISABLED (0x0 << 2) // (ADC12B) Corresponding channel is disabled.
  1635. #define AT91C_ADC12B_CHSR_CH2_ENABLED (0x1 << 2) // (ADC12B) Corresponding channel is enabled.
  1636. #define AT91C_ADC12B_CHSR_CH3 (0x1 << 3) // (ADC12B) Channel 3 Status
  1637. #define AT91C_ADC12B_CHSR_CH3_DISABLED (0x0 << 3) // (ADC12B) Corresponding channel is disabled.
  1638. #define AT91C_ADC12B_CHSR_CH3_ENABLED (0x1 << 3) // (ADC12B) Corresponding channel is enabled.
  1639. #define AT91C_ADC12B_CHSR_CH4 (0x1 << 4) // (ADC12B) Channel 4 Status
  1640. #define AT91C_ADC12B_CHSR_CH4_DISABLED (0x0 << 4) // (ADC12B) Corresponding channel is disabled.
  1641. #define AT91C_ADC12B_CHSR_CH4_ENABLED (0x1 << 4) // (ADC12B) Corresponding channel is enabled.
  1642. #define AT91C_ADC12B_CHSR_CH5 (0x1 << 5) // (ADC12B) Channel 5 Status
  1643. #define AT91C_ADC12B_CHSR_CH5_DISABLED (0x0 << 5) // (ADC12B) Corresponding channel is disabled.
  1644. #define AT91C_ADC12B_CHSR_CH5_ENABLED (0x1 << 5) // (ADC12B) Corresponding channel is enabled.
  1645. #define AT91C_ADC12B_CHSR_CH6 (0x1 << 6) // (ADC12B) Channel 6 Status
  1646. #define AT91C_ADC12B_CHSR_CH6_DISABLED (0x0 << 6) // (ADC12B) Corresponding channel is disabled.
  1647. #define AT91C_ADC12B_CHSR_CH6_ENABLED (0x1 << 6) // (ADC12B) Corresponding channel is enabled.
  1648. #define AT91C_ADC12B_CHSR_CH7 (0x1 << 7) // (ADC12B) Channel 7 Status
  1649. #define AT91C_ADC12B_CHSR_CH7_DISABLED (0x0 << 7) // (ADC12B) Corresponding channel is disabled.
  1650. #define AT91C_ADC12B_CHSR_CH7_ENABLED (0x1 << 7) // (ADC12B) Corresponding channel is enabled.
  1651. // -------- ADC12B_SR : (ADC12B Offset: 0x1C) Status Register --------
  1652. #define AT91C_ADC12B_SR_EOC0 (0x1 << 0) // (ADC12B) End of Conversion 0
  1653. #define AT91C_ADC12B_SR_EOC0_DISABLE (0x0 << 0) // (ADC12B) Corresponding analog channel is disabled, or the conversion is not finished.
  1654. #define AT91C_ADC12B_SR_EOC0_ENABLE (0x1 << 0) // (ADC12B) Corresponding analog channel is enabled and conversion is complete.
  1655. #define AT91C_ADC12B_SR_EOC1 (0x1 << 1) // (ADC12B) End of Conversion 1
  1656. #define AT91C_ADC12B_SR_EOC1_DISABLE (0x0 << 1) // (ADC12B) Corresponding analog channel is disabled, or the conversion is not finished.
  1657. #define AT91C_ADC12B_SR_EOC1_ENABLE (0x1 << 1) // (ADC12B) Corresponding analog channel is enabled and conversion is complete.
  1658. #define AT91C_ADC12B_SR_EOC2 (0x1 << 2) // (ADC12B) End of Conversion 2
  1659. #define AT91C_ADC12B_SR_EOC2_DISABLE (0x0 << 2) // (ADC12B) Corresponding analog channel is disabled, or the conversion is not finished.
  1660. #define AT91C_ADC12B_SR_EOC2_ENABLE (0x1 << 2) // (ADC12B) Corresponding analog channel is enabled and conversion is complete.
  1661. #define AT91C_ADC12B_SR_EOC3 (0x1 << 3) // (ADC12B) End of Conversion 3
  1662. #define AT91C_ADC12B_SR_EOC3_DISABLE (0x0 << 3) // (ADC12B) Corresponding analog channel is disabled, or the conversion is not finished.
  1663. #define AT91C_ADC12B_SR_EOC3_ENABLE (0x1 << 3) // (ADC12B) Corresponding analog channel is enabled and conversion is complete.
  1664. #define AT91C_ADC12B_SR_EOC4 (0x1 << 4) // (ADC12B) End of Conversion 4
  1665. #define AT91C_ADC12B_SR_EOC4_DISABLE (0x0 << 4) // (ADC12B) Corresponding analog channel is disabled, or the conversion is not finished.
  1666. #define AT91C_ADC12B_SR_EOC4_ENABLE (0x1 << 4) // (ADC12B) Corresponding analog channel is enabled and conversion is complete.
  1667. #define AT91C_ADC12B_SR_EOC5 (0x1 << 5) // (ADC12B) End of Conversion 5
  1668. #define AT91C_ADC12B_SR_EOC5_DISABLE (0x0 << 5) // (ADC12B) Corresponding analog channel is disabled, or the conversion is not finished.
  1669. #define AT91C_ADC12B_SR_EOC5_ENABLE (0x1 << 5) // (ADC12B) Corresponding analog channel is enabled and conversion is complete.
  1670. #define AT91C_ADC12B_SR_EOC6 (0x1 << 6) // (ADC12B) End of Conversion 6
  1671. #define AT91C_ADC12B_SR_EOC6_DISABLE (0x0 << 6) // (ADC12B) Corresponding analog channel is disabled, or the conversion is not finished.
  1672. #define AT91C_ADC12B_SR_EOC6_ENABLE (0x1 << 6) // (ADC12B) Corresponding analog channel is enabled and conversion is complete.
  1673. #define AT91C_ADC12B_SR_EOC7 (0x1 << 7) // (ADC12B) End of Conversion 7
  1674. #define AT91C_ADC12B_SR_EOC7_DISABLE (0x0 << 7) // (ADC12B) Corresponding analog channel is disabled, or the conversion is not finished.
  1675. #define AT91C_ADC12B_SR_EOC7_ENABLE (0x1 << 7) // (ADC12B) Corresponding analog channel is enabled and conversion is complete.
  1676. #define AT91C_ADC12B_SR_OVRE0 (0x1 << 8) // (ADC12B) Overrun Error 0
  1677. #define AT91C_ADC12B_SR_OVRE0_NO_ERROR (0x0 << 8) // (ADC12B) No overrun error on the corresponding channel since the last read of ADC12B_SR.
  1678. #define AT91C_ADC12B_SR_OVRE0_ERROR (0x1 << 8) // (ADC12B) There has been an overrun error on the corresponding channel since the last read of ADC12B_SR.
  1679. #define AT91C_ADC12B_SR_OVRE1 (0x1 << 9) // (ADC12B) Overrun Error 1
  1680. #define AT91C_ADC12B_SR_OVRE1_NO_ERROR (0x0 << 9) // (ADC12B) No overrun error on the corresponding channel since the last read of ADC12B_SR.
  1681. #define AT91C_ADC12B_SR_OVRE1_ERROR (0x1 << 9) // (ADC12B) There has been an overrun error on the corresponding channel since the last read of ADC12B_SR.
  1682. #define AT91C_ADC12B_SR_OVRE2 (0x1 << 10) // (ADC12B) Overrun Error 2
  1683. #define AT91C_ADC12B_SR_OVRE2_NO_ERROR (0x0 << 10) // (ADC12B) No overrun error on the corresponding channel since the last read of ADC12B_SR.
  1684. #define AT91C_ADC12B_SR_OVRE2_ERROR (0x1 << 10) // (ADC12B) There has been an overrun error on the corresponding channel since the last read of ADC12B_SR.
  1685. #define AT91C_ADC12B_SR_OVRE3 (0x1 << 11) // (ADC12B) Overrun Error 3
  1686. #define AT91C_ADC12B_SR_OVRE3_NO_ERROR (0x0 << 11) // (ADC12B) No overrun error on the corresponding channel since the last read of ADC12B_SR.
  1687. #define AT91C_ADC12B_SR_OVRE3_ERROR (0x1 << 11) // (ADC12B) There has been an overrun error on the corresponding channel since the last read of ADC12B_SR.
  1688. #define AT91C_ADC12B_SR_OVRE4 (0x1 << 12) // (ADC12B) Overrun Error 4
  1689. #define AT91C_ADC12B_SR_OVRE4_NO_ERROR (0x0 << 12) // (ADC12B) No overrun error on the corresponding channel since the last read of ADC12B_SR.
  1690. #define AT91C_ADC12B_SR_OVRE4_ERROR (0x1 << 12) // (ADC12B) There has been an overrun error on the corresponding channel since the last read of ADC12B_SR.
  1691. #define AT91C_ADC12B_SR_OVRE5 (0x1 << 13) // (ADC12B) Overrun Error 5
  1692. #define AT91C_ADC12B_SR_OVRE5_NO_ERROR (0x0 << 13) // (ADC12B) No overrun error on the corresponding channel since the last read of ADC12B_SR.
  1693. #define AT91C_ADC12B_SR_OVRE5_ERROR (0x1 << 13) // (ADC12B) There has been an overrun error on the corresponding channel since the last read of ADC12B_SR.
  1694. #define AT91C_ADC12B_SR_OVRE6 (0x1 << 14) // (ADC12B) Overrun Error 6
  1695. #define AT91C_ADC12B_SR_OVRE6_NO_ERROR (0x0 << 14) // (ADC12B) No overrun error on the corresponding channel since the last read of ADC12B_SR.
  1696. #define AT91C_ADC12B_SR_OVRE6_ERROR (0x1 << 14) // (ADC12B) There has been an overrun error on the corresponding channel since the last read of ADC12B_SR.
  1697. #define AT91C_ADC12B_SR_OVRE7 (0x1 << 15) // (ADC12B) Overrun Error 7
  1698. #define AT91C_ADC12B_SR_OVRE7_NO_ERROR (0x0 << 15) // (ADC12B) No overrun error on the corresponding channel since the last read of ADC12B_SR.
  1699. #define AT91C_ADC12B_SR_OVRE7_ERROR (0x1 << 15) // (ADC12B) There has been an overrun error on the corresponding channel since the last read of ADC12B_SR.
  1700. #define AT91C_ADC12B_SR_DRDY (0x1 << 16) // (ADC12B) Data Ready
  1701. #define AT91C_ADC12B_SR_DRDY_NO_CONV (0x0 << 16) // (ADC12B) No data has been converted since the last read of ADC12B_LCDR.
  1702. #define AT91C_ADC12B_SR_DRDY_CONV (0x1 << 16) // (ADC12B) At least one data has been converted and is available in ADC12B_LCDR.
  1703. #define AT91C_ADC12B_SR_GOVRE (0x1 << 17) // (ADC12B) General Overrun Error
  1704. #define AT91C_ADC12B_SR_GOVRE_NO_ERROR (0x0 << 17) // (ADC12B) No General Overrun Error occurred since the last read of ADC12B_SR.
  1705. #define AT91C_ADC12B_SR_GOVRE_ERROR (0x1 << 17) // (ADC12B) At least one General Overrun Error has occurred since the last read of ADC12B_SR.
  1706. #define AT91C_ADC12B_SR_ENDRX (0x1 << 18) // (ADC12B) End of RX Buffer
  1707. #define AT91C_ADC12B_SR_ENDRX_NOT_REACH (0x0 << 18) // (ADC12B) The Receive Counter Register has not reached 0 since the last write in ADC12B_RCR or ADC12B_RNCR.
  1708. #define AT91C_ADC12B_SR_ENDRX_REACH_0 (0x1 << 18) // (ADC12B) The Receive Counter Register has reached 0 since the last write in ADC12B_RCR or ADC12B_RNCR.
  1709. #define AT91C_ADC12B_SR_RXBUFF (0x1 << 19) // (ADC12B) RX Buffer Full
  1710. #define AT91C_ADC12B_SR_RXBUFF_NO_ZERO (0x0 << 19) // (ADC12B) ADC12B_RCR or ADC12B_RNCR have a value other than 0.
  1711. #define AT91C_ADC12B_SR_RXBUFF_ZERO (0x1 << 19) // (ADC12B) Both ADC12B_RCR and ADC12B_RNCR have a value of 0.
  1712. // -------- ADC12B_LCDR : (ADC12B Offset: 0x20) Last Converted Data Register --------
  1713. #define AT91C_ADC12B_LCDR_LDATA (0xfff << 0) // (ADC12B) Last Data Converted
  1714. // -------- ADC12B_IER : (ADC12B Offset: 0x24) Interrupt Enable Register --------
  1715. #define AT91C_ADC12B_IER_EOC0 (0x1 << 0) // (ADC12B) End of Conversion Interrupt Enable 0
  1716. #define AT91C_ADC12B_IER_EOC0_NO_EFFECT (0x0 << 0) // (ADC12B) No effect.
  1717. #define AT91C_ADC12B_IER_EOC0_ENABLE (0x1 << 0) // (ADC12B) Enables the corresponding interrupt.
  1718. #define AT91C_ADC12B_IER_EOC1 (0x1 << 1) // (ADC12B) End of Conversion Interrupt Enable 1
  1719. #define AT91C_ADC12B_IER_EOC1_NO_EFFECT (0x0 << 1) // (ADC12B) No effect.
  1720. #define AT91C_ADC12B_IER_EOC1_ENABLE (0x1 << 1) // (ADC12B) Enables the corresponding interrupt.
  1721. #define AT91C_ADC12B_IER_EOC2 (0x1 << 2) // (ADC12B) End of Conversion Interrupt Enable 2
  1722. #define AT91C_ADC12B_IER_EOC2_NO_EFFECT (0x0 << 2) // (ADC12B) No effect.
  1723. #define AT91C_ADC12B_IER_EOC2_ENABLE (0x1 << 2) // (ADC12B) Enables the corresponding interrupt.
  1724. #define AT91C_ADC12B_IER_EOC3 (0x1 << 3) // (ADC12B) End of Conversion Interrupt Enable 3
  1725. #define AT91C_ADC12B_IER_EOC3_NO_EFFECT (0x0 << 3) // (ADC12B) No effect.
  1726. #define AT91C_ADC12B_IER_EOC3_ENABLE (0x1 << 3) // (ADC12B) Enables the corresponding interrupt.
  1727. #define AT91C_ADC12B_IER_EOC4 (0x1 << 4) // (ADC12B) End of Conversion Interrupt Enable 4
  1728. #define AT91C_ADC12B_IER_EOC4_NO_EFFECT (0x0 << 4) // (ADC12B) No effect.
  1729. #define AT91C_ADC12B_IER_EOC4_ENABLE (0x1 << 4) // (ADC12B) Enables the corresponding interrupt.
  1730. #define AT91C_ADC12B_IER_EOC5 (0x1 << 5) // (ADC12B) End of Conversion Interrupt Enable 5
  1731. #define AT91C_ADC12B_IER_EOC5_NO_EFFECT (0x0 << 5) // (ADC12B) No effect.
  1732. #define AT91C_ADC12B_IER_EOC5_ENABLE (0x1 << 5) // (ADC12B) Enables the corresponding interrupt.
  1733. #define AT91C_ADC12B_IER_EOC6 (0x1 << 6) // (ADC12B) End of Conversion Interrupt Enable 6
  1734. #define AT91C_ADC12B_IER_EOC6_NO_EFFECT (0x0 << 6) // (ADC12B) No effect.
  1735. #define AT91C_ADC12B_IER_EOC6_ENABLE (0x1 << 6) // (ADC12B) Enables the corresponding interrupt.
  1736. #define AT91C_ADC12B_IER_EOC7 (0x1 << 7) // (ADC12B) End of Conversion Interrupt Enable 7
  1737. #define AT91C_ADC12B_IER_EOC7_NO_EFFECT (0x0 << 7) // (ADC12B) No effect.
  1738. #define AT91C_ADC12B_IER_EOC7_ENABLE (0x1 << 7) // (ADC12B) Enables the corresponding interrupt.
  1739. #define AT91C_ADC12B_IER_OVRE0 (0x1 << 8) // (ADC12B) Overrun Error Interrupt Enable 0
  1740. #define AT91C_ADC12B_IER_OVRE0_NO_EFFECT (0x0 << 8) // (ADC12B) No effect.
  1741. #define AT91C_ADC12B_IER_OVRE0_ENABLE (0x1 << 8) // (ADC12B) Enables the corresponding interrupt.
  1742. #define AT91C_ADC12B_IER_OVRE1 (0x1 << 9) // (ADC12B) Overrun Error Interrupt Enable 1
  1743. #define AT91C_ADC12B_IER_OVRE1_NO_EFFECT (0x0 << 9) // (ADC12B) No effect.
  1744. #define AT91C_ADC12B_IER_OVRE1_ENABLE (0x1 << 9) // (ADC12B) Enables the corresponding interrupt.
  1745. #define AT91C_ADC12B_IER_OVRE2 (0x1 << 10) // (ADC12B) Overrun Error Interrupt Enable 2
  1746. #define AT91C_ADC12B_IER_OVRE2_NO_EFFECT (0x0 << 10) // (ADC12B) No effect.
  1747. #define AT91C_ADC12B_IER_OVRE2_ENABLE (0x1 << 10) // (ADC12B) Enables the corresponding interrupt.
  1748. #define AT91C_ADC12B_IER_OVRE3 (0x1 << 11) // (ADC12B) Overrun Error Interrupt Enable 3
  1749. #define AT91C_ADC12B_IER_OVRE3_NO_EFFECT (0x0 << 11) // (ADC12B) No effect.
  1750. #define AT91C_ADC12B_IER_OVRE3_ENABLE (0x1 << 11) // (ADC12B) Enables the corresponding interrupt.
  1751. #define AT91C_ADC12B_IER_OVRE4 (0x1 << 12) // (ADC12B) Overrun Error Interrupt Enable 4
  1752. #define AT91C_ADC12B_IER_OVRE4_NO_EFFECT (0x0 << 12) // (ADC12B) No effect.
  1753. #define AT91C_ADC12B_IER_OVRE4_ENABLE (0x1 << 12) // (ADC12B) Enables the corresponding interrupt.
  1754. #define AT91C_ADC12B_IER_OVRE5 (0x1 << 13) // (ADC12B) Overrun Error Interrupt Enable 5
  1755. #define AT91C_ADC12B_IER_OVRE5_NO_EFFECT (0x0 << 13) // (ADC12B) No effect.
  1756. #define AT91C_ADC12B_IER_OVRE5_ENABLE (0x1 << 13) // (ADC12B) Enables the corresponding interrupt.
  1757. #define AT91C_ADC12B_IER_OVRE6 (0x1 << 14) // (ADC12B) Overrun Error Interrupt Enable 6
  1758. #define AT91C_ADC12B_IER_OVRE6_NO_EFFECT (0x0 << 14) // (ADC12B) No effect.
  1759. #define AT91C_ADC12B_IER_OVRE6_ENABLE (0x1 << 14) // (ADC12B) Enables the corresponding interrupt.
  1760. #define AT91C_ADC12B_IER_OVRE7 (0x1 << 15) // (ADC12B) Overrun Error Interrupt Enable 7
  1761. #define AT91C_ADC12B_IER_OVRE7_NO_EFFECT (0x0 << 15) // (ADC12B) No effect.
  1762. #define AT91C_ADC12B_IER_OVRE7_ENABLE (0x1 << 15) // (ADC12B) Enables the corresponding interrupt.
  1763. #define AT91C_ADC12B_IER_DRDY (0x1 << 16) // (ADC12B) Data Ready Interrupt Enable
  1764. #define AT91C_ADC12B_IER_DRDY_NO_EFFECT (0x0 << 16) // (ADC12B) No effect.
  1765. #define AT91C_ADC12B_IER_DRDY_ENABLE (0x1 << 16) // (ADC12B) Enables the corresponding interrupt.
  1766. #define AT91C_ADC12B_IER_GOVRE (0x1 << 17) // (ADC12B) General Overrun Error Interrupt Enable
  1767. #define AT91C_ADC12B_IER_GOVRE_NO_EFFECT (0x0 << 17) // (ADC12B) No effect.
  1768. #define AT91C_ADC12B_IER_GOVRE_ENABLE (0x1 << 17) // (ADC12B) Enables the corresponding interrupt.
  1769. #define AT91C_ADC12B_IER_ENDRX (0x1 << 18) // (ADC12B) End of Receive Buffer Interrupt Enable
  1770. #define AT91C_ADC12B_IER_ENDRX_NO_EFFECT (0x0 << 18) // (ADC12B) No effect.
  1771. #define AT91C_ADC12B_IER_ENDRX_ENABLE (0x1 << 18) // (ADC12B) Enables the corresponding interrupt.
  1772. #define AT91C_ADC12B_IER_RXBUFF (0x1 << 19) // (ADC12B) Receive Buffer Full Interrupt Enable
  1773. #define AT91C_ADC12B_IER_RXBUFF_NO_EFFECT (0x0 << 19) // (ADC12B) No effect.
  1774. #define AT91C_ADC12B_IER_RXBUFF_ENABLE (0x1 << 19) // (ADC12B) Enables the corresponding interrupt.
  1775. // -------- ADC12B_IDR : (ADC12B Offset: 0x28) Interrupt Disable Register --------
  1776. #define AT91C_ADC12B_IDR_EOC0 (0x1 << 0) // (ADC12B) End of Conversion Interrupt Disable 0
  1777. #define AT91C_ADC12B_IDR_EOC0_NO_EFFECT (0x0 << 0) // (ADC12B) No effect.
  1778. #define AT91C_ADC12B_IDR_EOC0_DISABLE (0x1 << 0) // (ADC12B) Disables the corresponding interrupt.
  1779. #define AT91C_ADC12B_IDR_EOC1 (0x1 << 1) // (ADC12B) End of Conversion Interrupt Disable 1
  1780. #define AT91C_ADC12B_IDR_EOC1_NO_EFFECT (0x0 << 1) // (ADC12B) No effect.
  1781. #define AT91C_ADC12B_IDR_EOC1_DISABLE (0x1 << 1) // (ADC12B) Disables the corresponding interrupt.
  1782. #define AT91C_ADC12B_IDR_EOC2 (0x1 << 2) // (ADC12B) End of Conversion Interrupt Disable 2
  1783. #define AT91C_ADC12B_IDR_EOC2_NO_EFFECT (0x0 << 2) // (ADC12B) No effect.
  1784. #define AT91C_ADC12B_IDR_EOC2_DISABLE (0x1 << 2) // (ADC12B) Disables the corresponding interrupt.
  1785. #define AT91C_ADC12B_IDR_EOC3 (0x1 << 3) // (ADC12B) End of Conversion Interrupt Disable 3
  1786. #define AT91C_ADC12B_IDR_EOC3_NO_EFFECT (0x0 << 3) // (ADC12B) No effect.
  1787. #define AT91C_ADC12B_IDR_EOC3_DISABLE (0x1 << 3) // (ADC12B) Disables the corresponding interrupt.
  1788. #define AT91C_ADC12B_IDR_EOC4 (0x1 << 4) // (ADC12B) End of Conversion Interrupt Disable 4
  1789. #define AT91C_ADC12B_IDR_EOC4_NO_EFFECT (0x0 << 4) // (ADC12B) No effect.
  1790. #define AT91C_ADC12B_IDR_EOC4_DISABLE (0x1 << 4) // (ADC12B) Disables the corresponding interrupt.
  1791. #define AT91C_ADC12B_IDR_EOC5 (0x1 << 5) // (ADC12B) End of Conversion Interrupt Disable 5
  1792. #define AT91C_ADC12B_IDR_EOC5_NO_EFFECT (0x0 << 5) // (ADC12B) No effect.
  1793. #define AT91C_ADC12B_IDR_EOC5_DISABLE (0x1 << 5) // (ADC12B) Disables the corresponding interrupt.
  1794. #define AT91C_ADC12B_IDR_EOC6 (0x1 << 6) // (ADC12B) End of Conversion Interrupt Disable 6
  1795. #define AT91C_ADC12B_IDR_EOC6_NO_EFFECT (0x0 << 6) // (ADC12B) No effect.
  1796. #define AT91C_ADC12B_IDR_EOC6_DISABLE (0x1 << 6) // (ADC12B) Disables the corresponding interrupt.
  1797. #define AT91C_ADC12B_IDR_EOC7 (0x1 << 7) // (ADC12B) End of Conversion Interrupt Disable 7
  1798. #define AT91C_ADC12B_IDR_EOC7_NO_EFFECT (0x0 << 7) // (ADC12B) No effect.
  1799. #define AT91C_ADC12B_IDR_EOC7_DISABLE (0x1 << 7) // (ADC12B) Disables the corresponding interrupt.
  1800. #define AT91C_ADC12B_IDR_OVRE0 (0x1 << 8) // (ADC12B) Overrun Error Interrupt Disable 0
  1801. #define AT91C_ADC12B_IDR_OVRE0_NO_EFFECT (0x0 << 8) // (ADC12B) No effect.
  1802. #define AT91C_ADC12B_IDR_OVRE0_DISABLE (0x1 << 8) // (ADC12B) Disables the corresponding interrupt.
  1803. #define AT91C_ADC12B_IDR_OVRE1 (0x1 << 9) // (ADC12B) Overrun Error Interrupt Disable 1
  1804. #define AT91C_ADC12B_IDR_OVRE1_NO_EFFECT (0x0 << 9) // (ADC12B) No effect.
  1805. #define AT91C_ADC12B_IDR_OVRE1_DISABLE (0x1 << 9) // (ADC12B) Disables the corresponding interrupt.
  1806. #define AT91C_ADC12B_IDR_OVRE2 (0x1 << 10) // (ADC12B) Overrun Error Interrupt Disable 2
  1807. #define AT91C_ADC12B_IDR_OVRE2_NO_EFFECT (0x0 << 10) // (ADC12B) No effect.
  1808. #define AT91C_ADC12B_IDR_OVRE2_DISABLE (0x1 << 10) // (ADC12B) Disables the corresponding interrupt.
  1809. #define AT91C_ADC12B_IDR_OVRE3 (0x1 << 11) // (ADC12B) Overrun Error Interrupt Disable 3
  1810. #define AT91C_ADC12B_IDR_OVRE3_NO_EFFECT (0x0 << 11) // (ADC12B) No effect.
  1811. #define AT91C_ADC12B_IDR_OVRE3_DISABLE (0x1 << 11) // (ADC12B) Disables the corresponding interrupt.
  1812. #define AT91C_ADC12B_IDR_OVRE4 (0x1 << 12) // (ADC12B) Overrun Error Interrupt Disable 4
  1813. #define AT91C_ADC12B_IDR_OVRE4_NO_EFFECT (0x0 << 12) // (ADC12B) No effect.
  1814. #define AT91C_ADC12B_IDR_OVRE4_DISABLE (0x1 << 12) // (ADC12B) Disables the corresponding interrupt.
  1815. #define AT91C_ADC12B_IDR_OVRE5 (0x1 << 13) // (ADC12B) Overrun Error Interrupt Disable 5
  1816. #define AT91C_ADC12B_IDR_OVRE5_NO_EFFECT (0x0 << 13) // (ADC12B) No effect.
  1817. #define AT91C_ADC12B_IDR_OVRE5_DISABLE (0x1 << 13) // (ADC12B) Disables the corresponding interrupt.
  1818. #define AT91C_ADC12B_IDR_OVRE6 (0x1 << 14) // (ADC12B) Overrun Error Interrupt Disable 6
  1819. #define AT91C_ADC12B_IDR_OVRE6_NO_EFFECT (0x0 << 14) // (ADC12B) No effect.
  1820. #define AT91C_ADC12B_IDR_OVRE6_DISABLE (0x1 << 14) // (ADC12B) Disables the corresponding interrupt.
  1821. #define AT91C_ADC12B_IDR_OVRE7 (0x1 << 15) // (ADC12B) Overrun Error Interrupt Disable 7
  1822. #define AT91C_ADC12B_IDR_OVRE7_NO_EFFECT (0x0 << 15) // (ADC12B) No effect.
  1823. #define AT91C_ADC12B_IDR_OVRE7_DISABLE (0x1 << 15) // (ADC12B) Disables the corresponding interrupt.
  1824. #define AT91C_ADC12B_IDR_DRDY (0x1 << 16) // (ADC12B) Data Ready Interrupt Disable
  1825. #define AT91C_ADC12B_IDR_DRDY_NO_EFFECT (0x0 << 16) // (ADC12B) No effect.
  1826. #define AT91C_ADC12B_IDR_DRDY_DISABLE (0x1 << 16) // (ADC12B) Disables the corresponding interrupt.
  1827. #define AT91C_ADC12B_IDR_GOVRE (0x1 << 17) // (ADC12B) General Overrun Error Interrupt Disable
  1828. #define AT91C_ADC12B_IDR_GOVRE_NO_EFFECT (0x0 << 17) // (ADC12B) No effect.
  1829. #define AT91C_ADC12B_IDR_GOVRE_DISABLE (0x1 << 17) // (ADC12B) Disables the corresponding interrupt.
  1830. #define AT91C_ADC12B_IDR_ENDRX (0x1 << 18) // (ADC12B) End of Receive Buffer Interrupt Disable
  1831. #define AT91C_ADC12B_IDR_ENDRX_NO_EFFECT (0x0 << 18) // (ADC12B) No effect.
  1832. #define AT91C_ADC12B_IDR_ENDRX_DISABLE (0x1 << 18) // (ADC12B) Disables the corresponding interrupt.
  1833. #define AT91C_ADC12B_IDR_RXBUFF (0x1 << 19) // (ADC12B) Receive Buffer Full Interrupt Disable
  1834. #define AT91C_ADC12B_IDR_RXBUFF_NO_EFFECT (0x0 << 19) // (ADC12B) No effect.
  1835. #define AT91C_ADC12B_IDR_RXBUFF_DISABLE (0x1 << 19) // (ADC12B) Disables the corresponding interrupt.
  1836. // -------- ADC12B_IMR : (ADC12B Offset: 0x2C) Interrupt Mask Register --------
  1837. #define AT91C_ADC12B_IMR_EOC0 (0x1 << 0) // (ADC12B) End of Conversion Interrupt Mask 0
  1838. #define AT91C_ADC12B_IMR_EOC0_DIS (0x0 << 0) // (ADC12B) The corresponding interrupt is disabled.
  1839. #define AT91C_ADC12B_IMR_EOC0_EN (0x1 << 0) // (ADC12B) The corresponding interrupt is enabled.
  1840. #define AT91C_ADC12B_IMR_EOC1 (0x1 << 1) // (ADC12B) End of Conversion Interrupt Mask 1
  1841. #define AT91C_ADC12B_IMR_EOC1_DIS (0x0 << 1) // (ADC12B) The corresponding interrupt is disabled.
  1842. #define AT91C_ADC12B_IMR_EOC1_EN (0x1 << 1) // (ADC12B) The corresponding interrupt is enabled.
  1843. #define AT91C_ADC12B_IMR_EOC2 (0x1 << 2) // (ADC12B) End of Conversion Interrupt Mask 2
  1844. #define AT91C_ADC12B_IMR_EOC2_DIS (0x0 << 2) // (ADC12B) The corresponding interrupt is disabled.
  1845. #define AT91C_ADC12B_IMR_EOC2_EN (0x1 << 2) // (ADC12B) The corresponding interrupt is enabled.
  1846. #define AT91C_ADC12B_IMR_EOC3 (0x1 << 3) // (ADC12B) End of Conversion Interrupt Mask 3
  1847. #define AT91C_ADC12B_IMR_EOC3_DIS (0x0 << 3) // (ADC12B) The corresponding interrupt is disabled.
  1848. #define AT91C_ADC12B_IMR_EOC3_EN (0x1 << 3) // (ADC12B) The corresponding interrupt is enabled.
  1849. #define AT91C_ADC12B_IMR_EOC4 (0x1 << 4) // (ADC12B) End of Conversion Interrupt Mask 4
  1850. #define AT91C_ADC12B_IMR_EOC4_DIS (0x0 << 4) // (ADC12B) The corresponding interrupt is disabled.
  1851. #define AT91C_ADC12B_IMR_EOC4_EN (0x1 << 4) // (ADC12B) The corresponding interrupt is enabled.
  1852. #define AT91C_ADC12B_IMR_EOC5 (0x1 << 5) // (ADC12B) End of Conversion Interrupt Mask 5
  1853. #define AT91C_ADC12B_IMR_EOC5_DIS (0x0 << 5) // (ADC12B) The corresponding interrupt is disabled.
  1854. #define AT91C_ADC12B_IMR_EOC5_EN (0x1 << 5) // (ADC12B) The corresponding interrupt is enabled.
  1855. #define AT91C_ADC12B_IMR_EOC6 (0x1 << 6) // (ADC12B) End of Conversion Interrupt Mask 6
  1856. #define AT91C_ADC12B_IMR_EOC6_DIS (0x0 << 6) // (ADC12B) The corresponding interrupt is disabled.
  1857. #define AT91C_ADC12B_IMR_EOC6_EN (0x1 << 6) // (ADC12B) The corresponding interrupt is enabled.
  1858. #define AT91C_ADC12B_IMR_EOC7 (0x1 << 7) // (ADC12B) End of Conversion Interrupt Mask 7
  1859. #define AT91C_ADC12B_IMR_EOC7_DIS (0x0 << 7) // (ADC12B) The corresponding interrupt is disabled.
  1860. #define AT91C_ADC12B_IMR_EOC7_EN (0x1 << 7) // (ADC12B) The corresponding interrupt is enabled.
  1861. #define AT91C_ADC12B_IMR_OVRE0 (0x1 << 8) // (ADC12B) Overrun Error Interrupt Mask 0
  1862. #define AT91C_ADC12B_IMR_OVRE0_DIS (0x0 << 8) // (ADC12B) The corresponding interrupt is disabled.
  1863. #define AT91C_ADC12B_IMR_OVRE0_EN (0x1 << 8) // (ADC12B) The corresponding interrupt is enabled.
  1864. #define AT91C_ADC12B_IMR_OVRE1 (0x1 << 9) // (ADC12B) Overrun Error Interrupt Mask 1
  1865. #define AT91C_ADC12B_IMR_OVRE1_DIS (0x0 << 9) // (ADC12B) The corresponding interrupt is disabled.
  1866. #define AT91C_ADC12B_IMR_OVRE1_EN (0x1 << 9) // (ADC12B) The corresponding interrupt is enabled.
  1867. #define AT91C_ADC12B_IMR_OVRE2 (0x1 << 10) // (ADC12B) Overrun Error Interrupt Mask 2
  1868. #define AT91C_ADC12B_IMR_OVRE2_DIS (0x0 << 10) // (ADC12B) The corresponding interrupt is disabled.
  1869. #define AT91C_ADC12B_IMR_OVRE2_EN (0x1 << 10) // (ADC12B) The corresponding interrupt is enabled.
  1870. #define AT91C_ADC12B_IMR_OVRE3 (0x1 << 11) // (ADC12B) Overrun Error Interrupt Mask 3
  1871. #define AT91C_ADC12B_IMR_OVRE3_DIS (0x0 << 11) // (ADC12B) The corresponding interrupt is disabled.
  1872. #define AT91C_ADC12B_IMR_OVRE3_EN (0x1 << 11) // (ADC12B) The corresponding interrupt is enabled.
  1873. #define AT91C_ADC12B_IMR_OVRE4 (0x1 << 12) // (ADC12B) Overrun Error Interrupt Mask 4
  1874. #define AT91C_ADC12B_IMR_OVRE4_DIS (0x0 << 12) // (ADC12B) The corresponding interrupt is disabled.
  1875. #define AT91C_ADC12B_IMR_OVRE4_EN (0x1 << 12) // (ADC12B) The corresponding interrupt is enabled.
  1876. #define AT91C_ADC12B_IMR_OVRE5 (0x1 << 13) // (ADC12B) Overrun Error Interrupt Mask 5
  1877. #define AT91C_ADC12B_IMR_OVRE5_DIS (0x0 << 13) // (ADC12B) The corresponding interrupt is disabled.
  1878. #define AT91C_ADC12B_IMR_OVRE5_EN (0x1 << 13) // (ADC12B) The corresponding interrupt is enabled.
  1879. #define AT91C_ADC12B_IMR_OVRE6 (0x1 << 14) // (ADC12B) Overrun Error Interrupt Mask 6
  1880. #define AT91C_ADC12B_IMR_OVRE6_DIS (0x0 << 14) // (ADC12B) The corresponding interrupt is disabled.
  1881. #define AT91C_ADC12B_IMR_OVRE6_EN (0x1 << 14) // (ADC12B) The corresponding interrupt is enabled.
  1882. #define AT91C_ADC12B_IMR_OVRE7 (0x1 << 15) // (ADC12B) Overrun Error Interrupt Mask 7
  1883. #define AT91C_ADC12B_IMR_OVRE7_DIS (0x0 << 15) // (ADC12B) The corresponding interrupt is disabled.
  1884. #define AT91C_ADC12B_IMR_OVRE7_EN (0x1 << 15) // (ADC12B) The corresponding interrupt is enabled.
  1885. #define AT91C_ADC12B_IMR_DRDY (0x1 << 16) // (ADC12B) Data Ready Interrupt Mask
  1886. #define AT91C_ADC12B_IMR_DRDY_DIS (0x0 << 16) // (ADC12B) The corresponding interrupt is disabled.
  1887. #define AT91C_ADC12B_IMR_DRDY_EN (0x1 << 16) // (ADC12B) The corresponding interrupt is enabled.
  1888. #define AT91C_ADC12B_IMR_GOVRE (0x1 << 17) // (ADC12B) General Overrun Error Interrupt Mask
  1889. #define AT91C_ADC12B_IMR_GOVRE_DIS (0x0 << 17) // (ADC12B) The corresponding interrupt is disabled.
  1890. #define AT91C_ADC12B_IMR_GOVRE_EN (0x1 << 17) // (ADC12B) The corresponding interrupt is enabled.
  1891. #define AT91C_ADC12B_IMR_ENDRX (0x1 << 18) // (ADC12B) End of Receive Buffer Interrupt Mask
  1892. #define AT91C_ADC12B_IMR_ENDRX_DIS (0x0 << 18) // (ADC12B) The corresponding interrupt is disabled.
  1893. #define AT91C_ADC12B_IMR_ENDRX_EN (0x1 << 18) // (ADC12B) The corresponding interrupt is enabled.
  1894. #define AT91C_ADC12B_IMR_RXBUFF (0x1 << 19) // (ADC12B) Receive Buffer Full Interrupt Mask
  1895. #define AT91C_ADC12B_IMR_RXBUFF_DIS (0x0 << 19) // (ADC12B) The corresponding interrupt is disabled.
  1896. #define AT91C_ADC12B_IMR_RXBUFF_EN (0x1 << 19) // (ADC12B) The corresponding interrupt is enabled.
  1897. // -------- ADC12B_CDR[8] : (ADC12B Offset: 0x30) Channel Data Register --------
  1898. #define AT91C_ADC12B_CDR_DATA (0xfff << 0) // (ADC12B) Converted Data
  1899. // -------- ADC12B_ACR : (ADC12B Offset: 0x64) Analog Control Register --------
  1900. #define AT91C_ADC12B_ACR_GAIN (0x3 << 0) // (ADC12B) Input Gain
  1901. #define AT91C_ADC12B_ACR_IBCTL (0x3 << 6) // (ADC12B) Bias Current Control
  1902. #define AT91C_ADC12B_ACR_IBCTL_MIN20 (0x0 << 6) // (ADC12B) typ - 20%
  1903. #define AT91C_ADC12B_ACR_IBCTL_TYP (0x1 << 6) // (ADC12B) typ
  1904. #define AT91C_ADC12B_ACR_IBCTL_PLUS20 (0x2 << 6) // (ADC12B) typ + 20%
  1905. #define AT91C_ADC12B_ACR_IBCTL_PLUS40 (0x3 << 6) // (ADC12B) typ + 40%
  1906. #define AT91C_ADC12B_ACR_DIFF (0x1 << 16) // (ADC12B) Differential Mode
  1907. #define AT91C_ADC12B_ACR_DIFF_SINGLE (0x0 << 16) // (ADC12B) Single Ended Mode
  1908. #define AT91C_ADC12B_ACR_DIFF_FULLY (0x1 << 16) // (ADC12B) Fully Differential Mode
  1909. #define AT91C_ADC12B_ACR_OFFSET (0x1 << 17) // (ADC12B) Input OFFSET
  1910. // -------- ADC12B_EMR : (ADC12B Offset: 0x68) Extended Mode Register --------
  1911. #define AT91C_ADC12B_EMR_OFFMODES (0x1 << 0) // (ADC12B) Off Mode if Sleep Bit (ADC12B_MR) = 1
  1912. #define AT91C_ADC12B_EMR_OFFMODES_STBY (0x0 << 0) // (ADC12B) Standby Mode
  1913. #define AT91C_ADC12B_EMR_OFFMODES_OFF (0x1 << 0) // (ADC12B) Off Mode
  1914. #define AT91C_ADC12B_EMR_OFF_MODE_STARTUP_TIME (0xff << 16) // (ADC12B) Startup Time
  1915. // *****************************************************************************
  1916. // SOFTWARE API DEFINITION FOR Timer Counter Channel Interface
  1917. // *****************************************************************************
  1918. #ifndef __ASSEMBLY__
  1919. #else
  1920. #define TC_CCR (AT91_CAST(AT91_REG *) 0x00000000) // (TC_CCR) Channel Control Register
  1921. #define TC_CMR (AT91_CAST(AT91_REG *) 0x00000004) // (TC_CMR) Channel Mode Register (Capture Mode / Waveform Mode)
  1922. #define TC_CV (AT91_CAST(AT91_REG *) 0x00000010) // (TC_CV) Counter Value
  1923. #define TC_RA (AT91_CAST(AT91_REG *) 0x00000014) // (TC_RA) Register A
  1924. #define TC_RB (AT91_CAST(AT91_REG *) 0x00000018) // (TC_RB) Register B
  1925. #define TC_RC (AT91_CAST(AT91_REG *) 0x0000001C) // (TC_RC) Register C
  1926. #define TC_SR (AT91_CAST(AT91_REG *) 0x00000020) // (TC_SR) Status Register
  1927. #define TC_IER (AT91_CAST(AT91_REG *) 0x00000024) // (TC_IER) Interrupt Enable Register
  1928. #define TC_IDR (AT91_CAST(AT91_REG *) 0x00000028) // (TC_IDR) Interrupt Disable Register
  1929. #define TC_IMR (AT91_CAST(AT91_REG *) 0x0000002C) // (TC_IMR) Interrupt Mask Register
  1930. #endif
  1931. // -------- TC_CCR : (TC Offset: 0x0) TC Channel Control Register --------
  1932. #define AT91C_TC_CLKEN (0x1 << 0) // (TC) Counter Clock Enable Command
  1933. #define AT91C_TC_CLKDIS (0x1 << 1) // (TC) Counter Clock Disable Command
  1934. #define AT91C_TC_SWTRG (0x1 << 2) // (TC) Software Trigger Command
  1935. // -------- TC_CMR : (TC Offset: 0x4) TC Channel Mode Register: Capture Mode / Waveform Mode --------
  1936. #define AT91C_TC_CLKS (0x7 << 0) // (TC) Clock Selection
  1937. #define AT91C_TC_CLKS_TIMER_DIV1_CLOCK (0x0) // (TC) Clock selected: TIMER_DIV1_CLOCK
  1938. #define AT91C_TC_CLKS_TIMER_DIV2_CLOCK (0x1) // (TC) Clock selected: TIMER_DIV2_CLOCK
  1939. #define AT91C_TC_CLKS_TIMER_DIV3_CLOCK (0x2) // (TC) Clock selected: TIMER_DIV3_CLOCK
  1940. #define AT91C_TC_CLKS_TIMER_DIV4_CLOCK (0x3) // (TC) Clock selected: TIMER_DIV4_CLOCK
  1941. #define AT91C_TC_CLKS_TIMER_DIV5_CLOCK (0x4) // (TC) Clock selected: TIMER_DIV5_CLOCK
  1942. #define AT91C_TC_CLKS_XC0 (0x5) // (TC) Clock selected: XC0
  1943. #define AT91C_TC_CLKS_XC1 (0x6) // (TC) Clock selected: XC1
  1944. #define AT91C_TC_CLKS_XC2 (0x7) // (TC) Clock selected: XC2
  1945. #define AT91C_TC_CLKI (0x1 << 3) // (TC) Clock Invert
  1946. #define AT91C_TC_BURST (0x3 << 4) // (TC) Burst Signal Selection
  1947. #define AT91C_TC_BURST_NONE (0x0 << 4) // (TC) The clock is not gated by an external signal
  1948. #define AT91C_TC_BURST_XC0 (0x1 << 4) // (TC) XC0 is ANDed with the selected clock
  1949. #define AT91C_TC_BURST_XC1 (0x2 << 4) // (TC) XC1 is ANDed with the selected clock
  1950. #define AT91C_TC_BURST_XC2 (0x3 << 4) // (TC) XC2 is ANDed with the selected clock
  1951. #define AT91C_TC_CPCSTOP (0x1 << 6) // (TC) Counter Clock Stopped with RC Compare
  1952. #define AT91C_TC_LDBSTOP (0x1 << 6) // (TC) Counter Clock Stopped with RB Loading
  1953. #define AT91C_TC_CPCDIS (0x1 << 7) // (TC) Counter Clock Disable with RC Compare
  1954. #define AT91C_TC_LDBDIS (0x1 << 7) // (TC) Counter Clock Disabled with RB Loading
  1955. #define AT91C_TC_ETRGEDG (0x3 << 8) // (TC) External Trigger Edge Selection
  1956. #define AT91C_TC_ETRGEDG_NONE (0x0 << 8) // (TC) Edge: None
  1957. #define AT91C_TC_ETRGEDG_RISING (0x1 << 8) // (TC) Edge: rising edge
  1958. #define AT91C_TC_ETRGEDG_FALLING (0x2 << 8) // (TC) Edge: falling edge
  1959. #define AT91C_TC_ETRGEDG_BOTH (0x3 << 8) // (TC) Edge: each edge
  1960. #define AT91C_TC_EEVTEDG (0x3 << 8) // (TC) External Event Edge Selection
  1961. #define AT91C_TC_EEVTEDG_NONE (0x0 << 8) // (TC) Edge: None
  1962. #define AT91C_TC_EEVTEDG_RISING (0x1 << 8) // (TC) Edge: rising edge
  1963. #define AT91C_TC_EEVTEDG_FALLING (0x2 << 8) // (TC) Edge: falling edge
  1964. #define AT91C_TC_EEVTEDG_BOTH (0x3 << 8) // (TC) Edge: each edge
  1965. #define AT91C_TC_EEVT (0x3 << 10) // (TC) External Event Selection
  1966. #define AT91C_TC_EEVT_TIOB (0x0 << 10) // (TC) Signal selected as external event: TIOB TIOB direction: input
  1967. #define AT91C_TC_EEVT_XC0 (0x1 << 10) // (TC) Signal selected as external event: XC0 TIOB direction: output
  1968. #define AT91C_TC_EEVT_XC1 (0x2 << 10) // (TC) Signal selected as external event: XC1 TIOB direction: output
  1969. #define AT91C_TC_EEVT_XC2 (0x3 << 10) // (TC) Signal selected as external event: XC2 TIOB direction: output
  1970. #define AT91C_TC_ABETRG (0x1 << 10) // (TC) TIOA or TIOB External Trigger Selection
  1971. #define AT91C_TC_ENETRG (0x1 << 12) // (TC) External Event Trigger enable
  1972. #define AT91C_TC_WAVESEL (0x3 << 13) // (TC) Waveform Selection
  1973. #define AT91C_TC_WAVESEL_UP (0x0 << 13) // (TC) UP mode without atomatic trigger on RC Compare
  1974. #define AT91C_TC_WAVESEL_UPDOWN (0x1 << 13) // (TC) UPDOWN mode without automatic trigger on RC Compare
  1975. #define AT91C_TC_WAVESEL_UP_AUTO (0x2 << 13) // (TC) UP mode with automatic trigger on RC Compare
  1976. #define AT91C_TC_WAVESEL_UPDOWN_AUTO (0x3 << 13) // (TC) UPDOWN mode with automatic trigger on RC Compare
  1977. #define AT91C_TC_CPCTRG (0x1 << 14) // (TC) RC Compare Trigger Enable
  1978. #define AT91C_TC_WAVE (0x1 << 15) // (TC)
  1979. #define AT91C_TC_ACPA (0x3 << 16) // (TC) RA Compare Effect on TIOA
  1980. #define AT91C_TC_ACPA_NONE (0x0 << 16) // (TC) Effect: none
  1981. #define AT91C_TC_ACPA_SET (0x1 << 16) // (TC) Effect: set
  1982. #define AT91C_TC_ACPA_CLEAR (0x2 << 16) // (TC) Effect: clear
  1983. #define AT91C_TC_ACPA_TOGGLE (0x3 << 16) // (TC) Effect: toggle
  1984. #define AT91C_TC_LDRA (0x3 << 16) // (TC) RA Loading Selection
  1985. #define AT91C_TC_LDRA_NONE (0x0 << 16) // (TC) Edge: None
  1986. #define AT91C_TC_LDRA_RISING (0x1 << 16) // (TC) Edge: rising edge of TIOA
  1987. #define AT91C_TC_LDRA_FALLING (0x2 << 16) // (TC) Edge: falling edge of TIOA
  1988. #define AT91C_TC_LDRA_BOTH (0x3 << 16) // (TC) Edge: each edge of TIOA
  1989. #define AT91C_TC_ACPC (0x3 << 18) // (TC) RC Compare Effect on TIOA
  1990. #define AT91C_TC_ACPC_NONE (0x0 << 18) // (TC) Effect: none
  1991. #define AT91C_TC_ACPC_SET (0x1 << 18) // (TC) Effect: set
  1992. #define AT91C_TC_ACPC_CLEAR (0x2 << 18) // (TC) Effect: clear
  1993. #define AT91C_TC_ACPC_TOGGLE (0x3 << 18) // (TC) Effect: toggle
  1994. #define AT91C_TC_LDRB (0x3 << 18) // (TC) RB Loading Selection
  1995. #define AT91C_TC_LDRB_NONE (0x0 << 18) // (TC) Edge: None
  1996. #define AT91C_TC_LDRB_RISING (0x1 << 18) // (TC) Edge: rising edge of TIOA
  1997. #define AT91C_TC_LDRB_FALLING (0x2 << 18) // (TC) Edge: falling edge of TIOA
  1998. #define AT91C_TC_LDRB_BOTH (0x3 << 18) // (TC) Edge: each edge of TIOA
  1999. #define AT91C_TC_AEEVT (0x3 << 20) // (TC) External Event Effect on TIOA
  2000. #define AT91C_TC_AEEVT_NONE (0x0 << 20) // (TC) Effect: none
  2001. #define AT91C_TC_AEEVT_SET (0x1 << 20) // (TC) Effect: set
  2002. #define AT91C_TC_AEEVT_CLEAR (0x2 << 20) // (TC) Effect: clear
  2003. #define AT91C_TC_AEEVT_TOGGLE (0x3 << 20) // (TC) Effect: toggle
  2004. #define AT91C_TC_ASWTRG (0x3 << 22) // (TC) Software Trigger Effect on TIOA
  2005. #define AT91C_TC_ASWTRG_NONE (0x0 << 22) // (TC) Effect: none
  2006. #define AT91C_TC_ASWTRG_SET (0x1 << 22) // (TC) Effect: set
  2007. #define AT91C_TC_ASWTRG_CLEAR (0x2 << 22) // (TC) Effect: clear
  2008. #define AT91C_TC_ASWTRG_TOGGLE (0x3 << 22) // (TC) Effect: toggle
  2009. #define AT91C_TC_BCPB (0x3 << 24) // (TC) RB Compare Effect on TIOB
  2010. #define AT91C_TC_BCPB_NONE (0x0 << 24) // (TC) Effect: none
  2011. #define AT91C_TC_BCPB_SET (0x1 << 24) // (TC) Effect: set
  2012. #define AT91C_TC_BCPB_CLEAR (0x2 << 24) // (TC) Effect: clear
  2013. #define AT91C_TC_BCPB_TOGGLE (0x3 << 24) // (TC) Effect: toggle
  2014. #define AT91C_TC_BCPC (0x3 << 26) // (TC) RC Compare Effect on TIOB
  2015. #define AT91C_TC_BCPC_NONE (0x0 << 26) // (TC) Effect: none
  2016. #define AT91C_TC_BCPC_SET (0x1 << 26) // (TC) Effect: set
  2017. #define AT91C_TC_BCPC_CLEAR (0x2 << 26) // (TC) Effect: clear
  2018. #define AT91C_TC_BCPC_TOGGLE (0x3 << 26) // (TC) Effect: toggle
  2019. #define AT91C_TC_BEEVT (0x3 << 28) // (TC) External Event Effect on TIOB
  2020. #define AT91C_TC_BEEVT_NONE (0x0 << 28) // (TC) Effect: none
  2021. #define AT91C_TC_BEEVT_SET (0x1 << 28) // (TC) Effect: set
  2022. #define AT91C_TC_BEEVT_CLEAR (0x2 << 28) // (TC) Effect: clear
  2023. #define AT91C_TC_BEEVT_TOGGLE (0x3 << 28) // (TC) Effect: toggle
  2024. #define AT91C_TC_BSWTRG (0x3 << 30) // (TC) Software Trigger Effect on TIOB
  2025. #define AT91C_TC_BSWTRG_NONE (0x0 << 30) // (TC) Effect: none
  2026. #define AT91C_TC_BSWTRG_SET (0x1 << 30) // (TC) Effect: set
  2027. #define AT91C_TC_BSWTRG_CLEAR (0x2 << 30) // (TC) Effect: clear
  2028. #define AT91C_TC_BSWTRG_TOGGLE (0x3 << 30) // (TC) Effect: toggle
  2029. // -------- TC_SR : (TC Offset: 0x20) TC Channel Status Register --------
  2030. #define AT91C_TC_COVFS (0x1 << 0) // (TC) Counter Overflow
  2031. #define AT91C_TC_LOVRS (0x1 << 1) // (TC) Load Overrun
  2032. #define AT91C_TC_CPAS (0x1 << 2) // (TC) RA Compare
  2033. #define AT91C_TC_CPBS (0x1 << 3) // (TC) RB Compare
  2034. #define AT91C_TC_CPCS (0x1 << 4) // (TC) RC Compare
  2035. #define AT91C_TC_LDRAS (0x1 << 5) // (TC) RA Loading
  2036. #define AT91C_TC_LDRBS (0x1 << 6) // (TC) RB Loading
  2037. #define AT91C_TC_ETRGS (0x1 << 7) // (TC) External Trigger
  2038. #define AT91C_TC_CLKSTA (0x1 << 16) // (TC) Clock Enabling
  2039. #define AT91C_TC_MTIOA (0x1 << 17) // (TC) TIOA Mirror
  2040. #define AT91C_TC_MTIOB (0x1 << 18) // (TC) TIOA Mirror
  2041. // -------- TC_IER : (TC Offset: 0x24) TC Channel Interrupt Enable Register --------
  2042. // -------- TC_IDR : (TC Offset: 0x28) TC Channel Interrupt Disable Register --------
  2043. // -------- TC_IMR : (TC Offset: 0x2c) TC Channel Interrupt Mask Register --------
  2044. // *****************************************************************************
  2045. // SOFTWARE API DEFINITION FOR Timer Counter Interface
  2046. // *****************************************************************************
  2047. #ifndef __ASSEMBLY__
  2048. #else
  2049. #define TCB_BCR (AT91_CAST(AT91_REG *) 0x000000C0) // (TCB_BCR) TC Block Control Register
  2050. #define TCB_BMR (AT91_CAST(AT91_REG *) 0x000000C4) // (TCB_BMR) TC Block Mode Register
  2051. #define TC_ADDRSIZE (AT91_CAST(AT91_REG *) 0x000000EC) // (TC_ADDRSIZE) TC ADDRSIZE REGISTER
  2052. #define TC_IPNAME1 (AT91_CAST(AT91_REG *) 0x000000F0) // (TC_IPNAME1) TC IPNAME1 REGISTER
  2053. #define TC_IPNAME2 (AT91_CAST(AT91_REG *) 0x000000F4) // (TC_IPNAME2) TC IPNAME2 REGISTER
  2054. #define TC_FEATURES (AT91_CAST(AT91_REG *) 0x000000F8) // (TC_FEATURES) TC FEATURES REGISTER
  2055. #define TC_VER (AT91_CAST(AT91_REG *) 0x000000FC) // (TC_VER) Version Register
  2056. #endif
  2057. // -------- TCB_BCR : (TCB Offset: 0xc0) TC Block Control Register --------
  2058. #define AT91C_TCB_SYNC (0x1 << 0) // (TCB) Synchro Command
  2059. // -------- TCB_BMR : (TCB Offset: 0xc4) TC Block Mode Register --------
  2060. #define AT91C_TCB_TC0XC0S (0x3 << 0) // (TCB) External Clock Signal 0 Selection
  2061. #define AT91C_TCB_TC0XC0S_TCLK0 (0x0) // (TCB) TCLK0 connected to XC0
  2062. #define AT91C_TCB_TC0XC0S_NONE (0x1) // (TCB) None signal connected to XC0
  2063. #define AT91C_TCB_TC0XC0S_TIOA1 (0x2) // (TCB) TIOA1 connected to XC0
  2064. #define AT91C_TCB_TC0XC0S_TIOA2 (0x3) // (TCB) TIOA2 connected to XC0
  2065. #define AT91C_TCB_TC1XC1S (0x3 << 2) // (TCB) External Clock Signal 1 Selection
  2066. #define AT91C_TCB_TC1XC1S_TCLK1 (0x0 << 2) // (TCB) TCLK1 connected to XC1
  2067. #define AT91C_TCB_TC1XC1S_NONE (0x1 << 2) // (TCB) None signal connected to XC1
  2068. #define AT91C_TCB_TC1XC1S_TIOA0 (0x2 << 2) // (TCB) TIOA0 connected to XC1
  2069. #define AT91C_TCB_TC1XC1S_TIOA2 (0x3 << 2) // (TCB) TIOA2 connected to XC1
  2070. #define AT91C_TCB_TC2XC2S (0x3 << 4) // (TCB) External Clock Signal 2 Selection
  2071. #define AT91C_TCB_TC2XC2S_TCLK2 (0x0 << 4) // (TCB) TCLK2 connected to XC2
  2072. #define AT91C_TCB_TC2XC2S_NONE (0x1 << 4) // (TCB) None signal connected to XC2
  2073. #define AT91C_TCB_TC2XC2S_TIOA0 (0x2 << 4) // (TCB) TIOA0 connected to XC2
  2074. #define AT91C_TCB_TC2XC2S_TIOA1 (0x3 << 4) // (TCB) TIOA2 connected to XC2
  2075. // *****************************************************************************
  2076. // SOFTWARE API DEFINITION FOR Embedded Flash Controller 2.0
  2077. // *****************************************************************************
  2078. #ifndef __ASSEMBLY__
  2079. #else
  2080. #define EFC_FMR (AT91_CAST(AT91_REG *) 0x00000000) // (EFC_FMR) EFC Flash Mode Register
  2081. #define EFC_FCR (AT91_CAST(AT91_REG *) 0x00000004) // (EFC_FCR) EFC Flash Command Register
  2082. #define EFC_FSR (AT91_CAST(AT91_REG *) 0x00000008) // (EFC_FSR) EFC Flash Status Register
  2083. #define EFC_FRR (AT91_CAST(AT91_REG *) 0x0000000C) // (EFC_FRR) EFC Flash Result Register
  2084. #define EFC_FVR (AT91_CAST(AT91_REG *) 0x00000014) // (EFC_FVR) EFC Flash Version Register
  2085. #endif
  2086. // -------- EFC_FMR : (EFC Offset: 0x0) EFC Flash Mode Register --------
  2087. #define AT91C_EFC_FRDY (0x1 << 0) // (EFC) Ready Interrupt Enable
  2088. #define AT91C_EFC_FWS (0xF << 8) // (EFC) Flash Wait State.
  2089. #define AT91C_EFC_FWS_0WS (0x0 << 8) // (EFC) 0 Wait State
  2090. #define AT91C_EFC_FWS_1WS (0x1 << 8) // (EFC) 1 Wait State
  2091. #define AT91C_EFC_FWS_2WS (0x2 << 8) // (EFC) 2 Wait States
  2092. #define AT91C_EFC_FWS_3WS (0x3 << 8) // (EFC) 3 Wait States
  2093. // -------- EFC_FCR : (EFC Offset: 0x4) EFC Flash Command Register --------
  2094. #define AT91C_EFC_FCMD (0xFF << 0) // (EFC) Flash Command
  2095. #define AT91C_EFC_FCMD_GETD (0x0) // (EFC) Get Flash Descriptor
  2096. #define AT91C_EFC_FCMD_WP (0x1) // (EFC) Write Page
  2097. #define AT91C_EFC_FCMD_WPL (0x2) // (EFC) Write Page and Lock
  2098. #define AT91C_EFC_FCMD_EWP (0x3) // (EFC) Erase Page and Write Page
  2099. #define AT91C_EFC_FCMD_EWPL (0x4) // (EFC) Erase Page and Write Page then Lock
  2100. #define AT91C_EFC_FCMD_EA (0x5) // (EFC) Erase All
  2101. #define AT91C_EFC_FCMD_EPL (0x6) // (EFC) Erase Plane
  2102. #define AT91C_EFC_FCMD_EPA (0x7) // (EFC) Erase Pages
  2103. #define AT91C_EFC_FCMD_SLB (0x8) // (EFC) Set Lock Bit
  2104. #define AT91C_EFC_FCMD_CLB (0x9) // (EFC) Clear Lock Bit
  2105. #define AT91C_EFC_FCMD_GLB (0xA) // (EFC) Get Lock Bit
  2106. #define AT91C_EFC_FCMD_SFB (0xB) // (EFC) Set Fuse Bit
  2107. #define AT91C_EFC_FCMD_CFB (0xC) // (EFC) Clear Fuse Bit
  2108. #define AT91C_EFC_FCMD_GFB (0xD) // (EFC) Get Fuse Bit
  2109. #define AT91C_EFC_FCMD_STUI (0xE) // (EFC) Start Read Unique ID
  2110. #define AT91C_EFC_FCMD_SPUI (0xF) // (EFC) Stop Read Unique ID
  2111. #define AT91C_EFC_FARG (0xFFFF << 8) // (EFC) Flash Command Argument
  2112. #define AT91C_EFC_FKEY (0xFF << 24) // (EFC) Flash Writing Protection Key
  2113. // -------- EFC_FSR : (EFC Offset: 0x8) EFC Flash Status Register --------
  2114. #define AT91C_EFC_FRDY_S (0x1 << 0) // (EFC) Flash Ready Status
  2115. #define AT91C_EFC_FCMDE (0x1 << 1) // (EFC) Flash Command Error Status
  2116. #define AT91C_EFC_LOCKE (0x1 << 2) // (EFC) Flash Lock Error Status
  2117. // -------- EFC_FRR : (EFC Offset: 0xc) EFC Flash Result Register --------
  2118. #define AT91C_EFC_FVALUE (0x0 << 0) // (EFC) Flash Result Value
  2119. // *****************************************************************************
  2120. // SOFTWARE API DEFINITION FOR Multimedia Card Interface
  2121. // *****************************************************************************
  2122. #ifndef __ASSEMBLY__
  2123. #else
  2124. #define MCI_CR (AT91_CAST(AT91_REG *) 0x00000000) // (MCI_CR) MCI Control Register
  2125. #define MCI_MR (AT91_CAST(AT91_REG *) 0x00000004) // (MCI_MR) MCI Mode Register
  2126. #define MCI_DTOR (AT91_CAST(AT91_REG *) 0x00000008) // (MCI_DTOR) MCI Data Timeout Register
  2127. #define MCI_SDCR (AT91_CAST(AT91_REG *) 0x0000000C) // (MCI_SDCR) MCI SD/SDIO Card Register
  2128. #define MCI_ARGR (AT91_CAST(AT91_REG *) 0x00000010) // (MCI_ARGR) MCI Argument Register
  2129. #define MCI_CMDR (AT91_CAST(AT91_REG *) 0x00000014) // (MCI_CMDR) MCI Command Register
  2130. #define MCI_BLKR (AT91_CAST(AT91_REG *) 0x00000018) // (MCI_BLKR) MCI Block Register
  2131. #define MCI_CSTOR (AT91_CAST(AT91_REG *) 0x0000001C) // (MCI_CSTOR) MCI Completion Signal Timeout Register
  2132. #define MCI_RSPR (AT91_CAST(AT91_REG *) 0x00000020) // (MCI_RSPR) MCI Response Register
  2133. #define MCI_RDR (AT91_CAST(AT91_REG *) 0x00000030) // (MCI_RDR) MCI Receive Data Register
  2134. #define MCI_TDR (AT91_CAST(AT91_REG *) 0x00000034) // (MCI_TDR) MCI Transmit Data Register
  2135. #define MCI_SR (AT91_CAST(AT91_REG *) 0x00000040) // (MCI_SR) MCI Status Register
  2136. #define MCI_IER (AT91_CAST(AT91_REG *) 0x00000044) // (MCI_IER) MCI Interrupt Enable Register
  2137. #define MCI_IDR (AT91_CAST(AT91_REG *) 0x00000048) // (MCI_IDR) MCI Interrupt Disable Register
  2138. #define MCI_IMR (AT91_CAST(AT91_REG *) 0x0000004C) // (MCI_IMR) MCI Interrupt Mask Register
  2139. #define MCI_DMA (AT91_CAST(AT91_REG *) 0x00000050) // (MCI_DMA) MCI DMA Configuration Register
  2140. #define MCI_CFG (AT91_CAST(AT91_REG *) 0x00000054) // (MCI_CFG) MCI Configuration Register
  2141. #define MCI_WPCR (AT91_CAST(AT91_REG *) 0x000000E4) // (MCI_WPCR) MCI Write Protection Control Register
  2142. #define MCI_WPSR (AT91_CAST(AT91_REG *) 0x000000E8) // (MCI_WPSR) MCI Write Protection Status Register
  2143. #define MCI_ADDRSIZE (AT91_CAST(AT91_REG *) 0x000000EC) // (MCI_ADDRSIZE) MCI ADDRSIZE REGISTER
  2144. #define MCI_IPNAME1 (AT91_CAST(AT91_REG *) 0x000000F0) // (MCI_IPNAME1) MCI IPNAME1 REGISTER
  2145. #define MCI_IPNAME2 (AT91_CAST(AT91_REG *) 0x000000F4) // (MCI_IPNAME2) MCI IPNAME2 REGISTER
  2146. #define MCI_FEATURES (AT91_CAST(AT91_REG *) 0x000000F8) // (MCI_FEATURES) MCI FEATURES REGISTER
  2147. #define MCI_VER (AT91_CAST(AT91_REG *) 0x000000FC) // (MCI_VER) MCI VERSION REGISTER
  2148. #define MCI_FIFO (AT91_CAST(AT91_REG *) 0x00000200) // (MCI_FIFO) MCI FIFO Aperture Register
  2149. #endif
  2150. // -------- MCI_CR : (MCI Offset: 0x0) MCI Control Register --------
  2151. #define AT91C_MCI_MCIEN (0x1 << 0) // (MCI) Multimedia Interface Enable
  2152. #define AT91C_MCI_MCIEN_0 (0x0) // (MCI) No effect
  2153. #define AT91C_MCI_MCIEN_1 (0x1) // (MCI) Enable the MultiMedia Interface if MCIDIS is 0
  2154. #define AT91C_MCI_MCIDIS (0x1 << 1) // (MCI) Multimedia Interface Disable
  2155. #define AT91C_MCI_MCIDIS_0 (0x0 << 1) // (MCI) No effect
  2156. #define AT91C_MCI_MCIDIS_1 (0x1 << 1) // (MCI) Disable the MultiMedia Interface
  2157. #define AT91C_MCI_PWSEN (0x1 << 2) // (MCI) Power Save Mode Enable
  2158. #define AT91C_MCI_PWSEN_0 (0x0 << 2) // (MCI) No effect
  2159. #define AT91C_MCI_PWSEN_1 (0x1 << 2) // (MCI) Enable the Power-saving mode if PWSDIS is 0.
  2160. #define AT91C_MCI_PWSDIS (0x1 << 3) // (MCI) Power Save Mode Disable
  2161. #define AT91C_MCI_PWSDIS_0 (0x0 << 3) // (MCI) No effect
  2162. #define AT91C_MCI_PWSDIS_1 (0x1 << 3) // (MCI) Disable the Power-saving mode.
  2163. #define AT91C_MCI_IOWAITEN (0x1 << 4) // (MCI) SDIO Read Wait Enable
  2164. #define AT91C_MCI_IOWAITEN_0 (0x0 << 4) // (MCI) No effect
  2165. #define AT91C_MCI_IOWAITEN_1 (0x1 << 4) // (MCI) Enables the SDIO Read Wait Operation.
  2166. #define AT91C_MCI_IOWAITDIS (0x1 << 5) // (MCI) SDIO Read Wait Disable
  2167. #define AT91C_MCI_IOWAITDIS_0 (0x0 << 5) // (MCI) No effect
  2168. #define AT91C_MCI_IOWAITDIS_1 (0x1 << 5) // (MCI) Disables the SDIO Read Wait Operation.
  2169. #define AT91C_MCI_SWRST (0x1 << 7) // (MCI) MCI Software reset
  2170. #define AT91C_MCI_SWRST_0 (0x0 << 7) // (MCI) No effect
  2171. #define AT91C_MCI_SWRST_1 (0x1 << 7) // (MCI) Resets the MCI
  2172. // -------- MCI_MR : (MCI Offset: 0x4) MCI Mode Register --------
  2173. #define AT91C_MCI_CLKDIV (0xFF << 0) // (MCI) Clock Divider
  2174. #define AT91C_MCI_PWSDIV (0x7 << 8) // (MCI) Power Saving Divider
  2175. #define AT91C_MCI_RDPROOF (0x1 << 11) // (MCI) Read Proof Enable
  2176. #define AT91C_MCI_RDPROOF_DISABLE (0x0 << 11) // (MCI) Disables Read Proof
  2177. #define AT91C_MCI_RDPROOF_ENABLE (0x1 << 11) // (MCI) Enables Read Proof
  2178. #define AT91C_MCI_WRPROOF (0x1 << 12) // (MCI) Write Proof Enable
  2179. #define AT91C_MCI_WRPROOF_DISABLE (0x0 << 12) // (MCI) Disables Write Proof
  2180. #define AT91C_MCI_WRPROOF_ENABLE (0x1 << 12) // (MCI) Enables Write Proof
  2181. #define AT91C_MCI_PDCFBYTE (0x1 << 13) // (MCI) PDC Force Byte Transfer
  2182. #define AT91C_MCI_PDCFBYTE_DISABLE (0x0 << 13) // (MCI) Disables PDC Force Byte Transfer
  2183. #define AT91C_MCI_PDCFBYTE_ENABLE (0x1 << 13) // (MCI) Enables PDC Force Byte Transfer
  2184. #define AT91C_MCI_PDCPADV (0x1 << 14) // (MCI) PDC Padding Value
  2185. #define AT91C_MCI_PDCMODE (0x1 << 15) // (MCI) PDC Oriented Mode
  2186. #define AT91C_MCI_PDCMODE_DISABLE (0x0 << 15) // (MCI) Disables PDC Transfer
  2187. #define AT91C_MCI_PDCMODE_ENABLE (0x1 << 15) // (MCI) Enables PDC Transfer
  2188. #define AT91C_MCI_BLKLEN (0xFFFF << 16) // (MCI) Data Block Length
  2189. // -------- MCI_DTOR : (MCI Offset: 0x8) MCI Data Timeout Register --------
  2190. #define AT91C_MCI_DTOCYC (0xF << 0) // (MCI) Data Timeout Cycle Number
  2191. #define AT91C_MCI_DTOMUL (0x7 << 4) // (MCI) Data Timeout Multiplier
  2192. #define AT91C_MCI_DTOMUL_1 (0x0 << 4) // (MCI) DTOCYC x 1
  2193. #define AT91C_MCI_DTOMUL_16 (0x1 << 4) // (MCI) DTOCYC x 16
  2194. #define AT91C_MCI_DTOMUL_128 (0x2 << 4) // (MCI) DTOCYC x 128
  2195. #define AT91C_MCI_DTOMUL_256 (0x3 << 4) // (MCI) DTOCYC x 256
  2196. #define AT91C_MCI_DTOMUL_1024 (0x4 << 4) // (MCI) DTOCYC x 1024
  2197. #define AT91C_MCI_DTOMUL_4096 (0x5 << 4) // (MCI) DTOCYC x 4096
  2198. #define AT91C_MCI_DTOMUL_65536 (0x6 << 4) // (MCI) DTOCYC x 65536
  2199. #define AT91C_MCI_DTOMUL_1048576 (0x7 << 4) // (MCI) DTOCYC x 1048576
  2200. // -------- MCI_SDCR : (MCI Offset: 0xc) MCI SD Card Register --------
  2201. #define AT91C_MCI_SCDSEL (0x3 << 0) // (MCI) SD Card/SDIO Selector
  2202. #define AT91C_MCI_SCDSEL_SLOTA (0x0) // (MCI) Slot A selected
  2203. #define AT91C_MCI_SCDSEL_SLOTB (0x1) // (MCI) Slot B selected
  2204. #define AT91C_MCI_SCDSEL_SLOTC (0x2) // (MCI) Slot C selected
  2205. #define AT91C_MCI_SCDSEL_SLOTD (0x3) // (MCI) Slot D selected
  2206. #define AT91C_MCI_SCDBUS (0x3 << 6) // (MCI) SDCard/SDIO Bus Width
  2207. #define AT91C_MCI_SCDBUS_1BIT (0x0 << 6) // (MCI) 1-bit data bus
  2208. #define AT91C_MCI_SCDBUS_4BITS (0x2 << 6) // (MCI) 4-bits data bus
  2209. #define AT91C_MCI_SCDBUS_8BITS (0x3 << 6) // (MCI) 8-bits data bus
  2210. // -------- MCI_CMDR : (MCI Offset: 0x14) MCI Command Register --------
  2211. #define AT91C_MCI_CMDNB (0x3F << 0) // (MCI) Command Number
  2212. #define AT91C_MCI_RSPTYP (0x3 << 6) // (MCI) Response Type
  2213. #define AT91C_MCI_RSPTYP_NO (0x0 << 6) // (MCI) No response
  2214. #define AT91C_MCI_RSPTYP_48 (0x1 << 6) // (MCI) 48-bit response
  2215. #define AT91C_MCI_RSPTYP_136 (0x2 << 6) // (MCI) 136-bit response
  2216. #define AT91C_MCI_RSPTYP_R1B (0x3 << 6) // (MCI) R1b response
  2217. #define AT91C_MCI_SPCMD (0x7 << 8) // (MCI) Special CMD
  2218. #define AT91C_MCI_SPCMD_NONE (0x0 << 8) // (MCI) Not a special CMD
  2219. #define AT91C_MCI_SPCMD_INIT (0x1 << 8) // (MCI) Initialization CMD
  2220. #define AT91C_MCI_SPCMD_SYNC (0x2 << 8) // (MCI) Synchronized CMD
  2221. #define AT91C_MCI_SPCMD_CE_ATA (0x3 << 8) // (MCI) CE-ATA Completion Signal disable CMD
  2222. #define AT91C_MCI_SPCMD_IT_CMD (0x4 << 8) // (MCI) Interrupt command
  2223. #define AT91C_MCI_SPCMD_IT_REP (0x5 << 8) // (MCI) Interrupt response
  2224. #define AT91C_MCI_OPDCMD (0x1 << 11) // (MCI) Open Drain Command
  2225. #define AT91C_MCI_OPDCMD_PUSHPULL (0x0 << 11) // (MCI) Push/pull command
  2226. #define AT91C_MCI_OPDCMD_OPENDRAIN (0x1 << 11) // (MCI) Open drain command
  2227. #define AT91C_MCI_MAXLAT (0x1 << 12) // (MCI) Maximum Latency for Command to respond
  2228. #define AT91C_MCI_MAXLAT_5 (0x0 << 12) // (MCI) 5 cycles maximum latency
  2229. #define AT91C_MCI_MAXLAT_64 (0x1 << 12) // (MCI) 64 cycles maximum latency
  2230. #define AT91C_MCI_TRCMD (0x3 << 16) // (MCI) Transfer CMD
  2231. #define AT91C_MCI_TRCMD_NO (0x0 << 16) // (MCI) No transfer
  2232. #define AT91C_MCI_TRCMD_START (0x1 << 16) // (MCI) Start transfer
  2233. #define AT91C_MCI_TRCMD_STOP (0x2 << 16) // (MCI) Stop transfer
  2234. #define AT91C_MCI_TRDIR (0x1 << 18) // (MCI) Transfer Direction
  2235. #define AT91C_MCI_TRDIR_WRITE (0x0 << 18) // (MCI) Write
  2236. #define AT91C_MCI_TRDIR_READ (0x1 << 18) // (MCI) Read
  2237. #define AT91C_MCI_TRTYP (0x7 << 19) // (MCI) Transfer Type
  2238. #define AT91C_MCI_TRTYP_BLOCK (0x0 << 19) // (MCI) MMC/SDCard Single Block Transfer type
  2239. #define AT91C_MCI_TRTYP_MULTIPLE (0x1 << 19) // (MCI) MMC/SDCard Multiple Block transfer type
  2240. #define AT91C_MCI_TRTYP_STREAM (0x2 << 19) // (MCI) MMC Stream transfer type
  2241. #define AT91C_MCI_TRTYP_SDIO_BYTE (0x4 << 19) // (MCI) SDIO Byte transfer type
  2242. #define AT91C_MCI_TRTYP_SDIO_BLOCK (0x5 << 19) // (MCI) SDIO Block transfer type
  2243. #define AT91C_MCI_IOSPCMD (0x3 << 24) // (MCI) SDIO Special Command
  2244. #define AT91C_MCI_IOSPCMD_NONE (0x0 << 24) // (MCI) NOT a special command
  2245. #define AT91C_MCI_IOSPCMD_SUSPEND (0x1 << 24) // (MCI) SDIO Suspend Command
  2246. #define AT91C_MCI_IOSPCMD_RESUME (0x2 << 24) // (MCI) SDIO Resume Command
  2247. #define AT91C_MCI_ATACS (0x1 << 26) // (MCI) ATA with command completion signal
  2248. #define AT91C_MCI_ATACS_NORMAL (0x0 << 26) // (MCI) normal operation mode
  2249. #define AT91C_MCI_ATACS_COMPLETION (0x1 << 26) // (MCI) completion signal is expected within MCI_CSTOR
  2250. // -------- MCI_BLKR : (MCI Offset: 0x18) MCI Block Register --------
  2251. #define AT91C_MCI_BCNT (0xFFFF << 0) // (MCI) MMC/SDIO Block Count / SDIO Byte Count
  2252. // -------- MCI_CSTOR : (MCI Offset: 0x1c) MCI Completion Signal Timeout Register --------
  2253. #define AT91C_MCI_CSTOCYC (0xF << 0) // (MCI) Completion Signal Timeout Cycle Number
  2254. #define AT91C_MCI_CSTOMUL (0x7 << 4) // (MCI) Completion Signal Timeout Multiplier
  2255. #define AT91C_MCI_CSTOMUL_1 (0x0 << 4) // (MCI) CSTOCYC x 1
  2256. #define AT91C_MCI_CSTOMUL_16 (0x1 << 4) // (MCI) CSTOCYC x 16
  2257. #define AT91C_MCI_CSTOMUL_128 (0x2 << 4) // (MCI) CSTOCYC x 128
  2258. #define AT91C_MCI_CSTOMUL_256 (0x3 << 4) // (MCI) CSTOCYC x 256
  2259. #define AT91C_MCI_CSTOMUL_1024 (0x4 << 4) // (MCI) CSTOCYC x 1024
  2260. #define AT91C_MCI_CSTOMUL_4096 (0x5 << 4) // (MCI) CSTOCYC x 4096
  2261. #define AT91C_MCI_CSTOMUL_65536 (0x6 << 4) // (MCI) CSTOCYC x 65536
  2262. #define AT91C_MCI_CSTOMUL_1048576 (0x7 << 4) // (MCI) CSTOCYC x 1048576
  2263. // -------- MCI_SR : (MCI Offset: 0x40) MCI Status Register --------
  2264. #define AT91C_MCI_CMDRDY (0x1 << 0) // (MCI) Command Ready flag
  2265. #define AT91C_MCI_RXRDY (0x1 << 1) // (MCI) RX Ready flag
  2266. #define AT91C_MCI_TXRDY (0x1 << 2) // (MCI) TX Ready flag
  2267. #define AT91C_MCI_BLKE (0x1 << 3) // (MCI) Data Block Transfer Ended flag
  2268. #define AT91C_MCI_DTIP (0x1 << 4) // (MCI) Data Transfer in Progress flag
  2269. #define AT91C_MCI_NOTBUSY (0x1 << 5) // (MCI) Data Line Not Busy flag
  2270. #define AT91C_MCI_ENDRX (0x1 << 6) // (MCI) End of RX Buffer flag
  2271. #define AT91C_MCI_ENDTX (0x1 << 7) // (MCI) End of TX Buffer flag
  2272. #define AT91C_MCI_SDIOIRQA (0x1 << 8) // (MCI) SDIO Interrupt for Slot A
  2273. #define AT91C_MCI_SDIOIRQB (0x1 << 9) // (MCI) SDIO Interrupt for Slot B
  2274. #define AT91C_MCI_SDIOIRQC (0x1 << 10) // (MCI) SDIO Interrupt for Slot C
  2275. #define AT91C_MCI_SDIOIRQD (0x1 << 11) // (MCI) SDIO Interrupt for Slot D
  2276. #define AT91C_MCI_SDIOWAIT (0x1 << 12) // (MCI) SDIO Read Wait operation flag
  2277. #define AT91C_MCI_CSRCV (0x1 << 13) // (MCI) CE-ATA Completion Signal flag
  2278. #define AT91C_MCI_RXBUFF (0x1 << 14) // (MCI) RX Buffer Full flag
  2279. #define AT91C_MCI_TXBUFE (0x1 << 15) // (MCI) TX Buffer Empty flag
  2280. #define AT91C_MCI_RINDE (0x1 << 16) // (MCI) Response Index Error flag
  2281. #define AT91C_MCI_RDIRE (0x1 << 17) // (MCI) Response Direction Error flag
  2282. #define AT91C_MCI_RCRCE (0x1 << 18) // (MCI) Response CRC Error flag
  2283. #define AT91C_MCI_RENDE (0x1 << 19) // (MCI) Response End Bit Error flag
  2284. #define AT91C_MCI_RTOE (0x1 << 20) // (MCI) Response Time-out Error flag
  2285. #define AT91C_MCI_DCRCE (0x1 << 21) // (MCI) data CRC Error flag
  2286. #define AT91C_MCI_DTOE (0x1 << 22) // (MCI) Data timeout Error flag
  2287. #define AT91C_MCI_CSTOE (0x1 << 23) // (MCI) Completion Signal timeout Error flag
  2288. #define AT91C_MCI_BLKOVRE (0x1 << 24) // (MCI) DMA Block Overrun Error flag
  2289. #define AT91C_MCI_DMADONE (0x1 << 25) // (MCI) DMA Transfer Done flag
  2290. #define AT91C_MCI_FIFOEMPTY (0x1 << 26) // (MCI) FIFO Empty flag
  2291. #define AT91C_MCI_XFRDONE (0x1 << 27) // (MCI) Transfer Done flag
  2292. #define AT91C_MCI_OVRE (0x1 << 30) // (MCI) Overrun flag
  2293. #define AT91C_MCI_UNRE (0x1 << 31) // (MCI) Underrun flag
  2294. // -------- MCI_IER : (MCI Offset: 0x44) MCI Interrupt Enable Register --------
  2295. // -------- MCI_IDR : (MCI Offset: 0x48) MCI Interrupt Disable Register --------
  2296. // -------- MCI_IMR : (MCI Offset: 0x4c) MCI Interrupt Mask Register --------
  2297. // -------- MCI_DMA : (MCI Offset: 0x50) MCI DMA Configuration Register --------
  2298. #define AT91C_MCI_OFFSET (0x3 << 0) // (MCI) DMA Write Buffer Offset
  2299. #define AT91C_MCI_CHKSIZE (0x7 << 4) // (MCI) DMA Channel Read/Write Chunk Size
  2300. #define AT91C_MCI_CHKSIZE_1 (0x0 << 4) // (MCI) Number of data transferred is 1
  2301. #define AT91C_MCI_CHKSIZE_4 (0x1 << 4) // (MCI) Number of data transferred is 4
  2302. #define AT91C_MCI_CHKSIZE_8 (0x2 << 4) // (MCI) Number of data transferred is 8
  2303. #define AT91C_MCI_CHKSIZE_16 (0x3 << 4) // (MCI) Number of data transferred is 16
  2304. #define AT91C_MCI_CHKSIZE_32 (0x4 << 4) // (MCI) Number of data transferred is 32
  2305. #define AT91C_MCI_DMAEN (0x1 << 8) // (MCI) DMA Hardware Handshaking Enable
  2306. #define AT91C_MCI_DMAEN_DISABLE (0x0 << 8) // (MCI) DMA interface is disabled
  2307. #define AT91C_MCI_DMAEN_ENABLE (0x1 << 8) // (MCI) DMA interface is enabled
  2308. // -------- MCI_CFG : (MCI Offset: 0x54) MCI Configuration Register --------
  2309. #define AT91C_MCI_FIFOMODE (0x1 << 0) // (MCI) MCI Internal FIFO Control Mode
  2310. #define AT91C_MCI_FIFOMODE_AMOUNTDATA (0x0) // (MCI) A write transfer starts when a sufficient amount of datas is written into the FIFO
  2311. #define AT91C_MCI_FIFOMODE_ONEDATA (0x1) // (MCI) A write transfer starts as soon as one data is written into the FIFO
  2312. #define AT91C_MCI_FERRCTRL (0x1 << 4) // (MCI) Flow Error Flag Reset Control Mode
  2313. #define AT91C_MCI_FERRCTRL_RWCMD (0x0 << 4) // (MCI) When an underflow/overflow condition flag is set, a new Write/Read command is needed to reset the flag
  2314. #define AT91C_MCI_FERRCTRL_READSR (0x1 << 4) // (MCI) When an underflow/overflow condition flag is set, a read status resets the flag
  2315. #define AT91C_MCI_HSMODE (0x1 << 8) // (MCI) High Speed Mode
  2316. #define AT91C_MCI_HSMODE_DISABLE (0x0 << 8) // (MCI) Default Bus Timing Mode
  2317. #define AT91C_MCI_HSMODE_ENABLE (0x1 << 8) // (MCI) High Speed Mode
  2318. #define AT91C_MCI_LSYNC (0x1 << 12) // (MCI) Synchronize on last block
  2319. #define AT91C_MCI_LSYNC_CURRENT (0x0 << 12) // (MCI) Pending command sent at end of current data block
  2320. #define AT91C_MCI_LSYNC_INFINITE (0x1 << 12) // (MCI) Pending command sent at end of block transfer when transfer length is not infinite
  2321. // -------- MCI_WPCR : (MCI Offset: 0xe4) Write Protection Control Register --------
  2322. #define AT91C_MCI_WP_EN (0x1 << 0) // (MCI) Write Protection Enable
  2323. #define AT91C_MCI_WP_EN_DISABLE (0x0) // (MCI) Write Operation is disabled (if WP_KEY corresponds)
  2324. #define AT91C_MCI_WP_EN_ENABLE (0x1) // (MCI) Write Operation is enabled (if WP_KEY corresponds)
  2325. #define AT91C_MCI_WP_KEY (0xFFFFFF << 8) // (MCI) Write Protection Key
  2326. // -------- MCI_WPSR : (MCI Offset: 0xe8) Write Protection Status Register --------
  2327. #define AT91C_MCI_WP_VS (0xF << 0) // (MCI) Write Protection Violation Status
  2328. #define AT91C_MCI_WP_VS_NO_VIOLATION (0x0) // (MCI) No Write Protection Violation detected since last read
  2329. #define AT91C_MCI_WP_VS_ON_WRITE (0x1) // (MCI) Write Protection Violation detected since last read
  2330. #define AT91C_MCI_WP_VS_ON_RESET (0x2) // (MCI) Software Reset Violation detected since last read
  2331. #define AT91C_MCI_WP_VS_ON_BOTH (0x3) // (MCI) Write Protection and Software Reset Violation detected since last read
  2332. #define AT91C_MCI_WP_VSRC (0xF << 8) // (MCI) Write Protection Violation Source
  2333. #define AT91C_MCI_WP_VSRC_NO_VIOLATION (0x0 << 8) // (MCI) No Write Protection Violation detected since last read
  2334. #define AT91C_MCI_WP_VSRC_MCI_MR (0x1 << 8) // (MCI) Write Protection Violation detected on MCI_MR since last read
  2335. #define AT91C_MCI_WP_VSRC_MCI_DTOR (0x2 << 8) // (MCI) Write Protection Violation detected on MCI_DTOR since last read
  2336. #define AT91C_MCI_WP_VSRC_MCI_SDCR (0x3 << 8) // (MCI) Write Protection Violation detected on MCI_SDCR since last read
  2337. #define AT91C_MCI_WP_VSRC_MCI_CSTOR (0x4 << 8) // (MCI) Write Protection Violation detected on MCI_CSTOR since last read
  2338. #define AT91C_MCI_WP_VSRC_MCI_DMA (0x5 << 8) // (MCI) Write Protection Violation detected on MCI_DMA since last read
  2339. #define AT91C_MCI_WP_VSRC_MCI_CFG (0x6 << 8) // (MCI) Write Protection Violation detected on MCI_CFG since last read
  2340. #define AT91C_MCI_WP_VSRC_MCI_DEL (0x7 << 8) // (MCI) Write Protection Violation detected on MCI_DEL since last read
  2341. // -------- MCI_VER : (MCI Offset: 0xfc) VERSION Register --------
  2342. #define AT91C_MCI_VER (0xF << 0) // (MCI) VERSION Register
  2343. // *****************************************************************************
  2344. // SOFTWARE API DEFINITION FOR Two-wire Interface
  2345. // *****************************************************************************
  2346. #ifndef __ASSEMBLY__
  2347. #else
  2348. #define TWI_CR (AT91_CAST(AT91_REG *) 0x00000000) // (TWI_CR) Control Register
  2349. #define TWI_MMR (AT91_CAST(AT91_REG *) 0x00000004) // (TWI_MMR) Master Mode Register
  2350. #define TWI_SMR (AT91_CAST(AT91_REG *) 0x00000008) // (TWI_SMR) Slave Mode Register
  2351. #define TWI_IADR (AT91_CAST(AT91_REG *) 0x0000000C) // (TWI_IADR) Internal Address Register
  2352. #define TWI_CWGR (AT91_CAST(AT91_REG *) 0x00000010) // (TWI_CWGR) Clock Waveform Generator Register
  2353. #define TWI_SR (AT91_CAST(AT91_REG *) 0x00000020) // (TWI_SR) Status Register
  2354. #define TWI_IER (AT91_CAST(AT91_REG *) 0x00000024) // (TWI_IER) Interrupt Enable Register
  2355. #define TWI_IDR (AT91_CAST(AT91_REG *) 0x00000028) // (TWI_IDR) Interrupt Disable Register
  2356. #define TWI_IMR (AT91_CAST(AT91_REG *) 0x0000002C) // (TWI_IMR) Interrupt Mask Register
  2357. #define TWI_RHR (AT91_CAST(AT91_REG *) 0x00000030) // (TWI_RHR) Receive Holding Register
  2358. #define TWI_THR (AT91_CAST(AT91_REG *) 0x00000034) // (TWI_THR) Transmit Holding Register
  2359. #define TWI_ADDRSIZE (AT91_CAST(AT91_REG *) 0x000000EC) // (TWI_ADDRSIZE) TWI ADDRSIZE REGISTER
  2360. #define TWI_IPNAME1 (AT91_CAST(AT91_REG *) 0x000000F0) // (TWI_IPNAME1) TWI IPNAME1 REGISTER
  2361. #define TWI_IPNAME2 (AT91_CAST(AT91_REG *) 0x000000F4) // (TWI_IPNAME2) TWI IPNAME2 REGISTER
  2362. #define TWI_FEATURES (AT91_CAST(AT91_REG *) 0x000000F8) // (TWI_FEATURES) TWI FEATURES REGISTER
  2363. #define TWI_VER (AT91_CAST(AT91_REG *) 0x000000FC) // (TWI_VER) Version Register
  2364. #endif
  2365. // -------- TWI_CR : (TWI Offset: 0x0) TWI Control Register --------
  2366. #define AT91C_TWI_START (0x1 << 0) // (TWI) Send a START Condition
  2367. #define AT91C_TWI_STOP (0x1 << 1) // (TWI) Send a STOP Condition
  2368. #define AT91C_TWI_MSEN (0x1 << 2) // (TWI) TWI Master Transfer Enabled
  2369. #define AT91C_TWI_MSDIS (0x1 << 3) // (TWI) TWI Master Transfer Disabled
  2370. #define AT91C_TWI_SVEN (0x1 << 4) // (TWI) TWI Slave mode Enabled
  2371. #define AT91C_TWI_SVDIS (0x1 << 5) // (TWI) TWI Slave mode Disabled
  2372. #define AT91C_TWI_SWRST (0x1 << 7) // (TWI) Software Reset
  2373. // -------- TWI_MMR : (TWI Offset: 0x4) TWI Master Mode Register --------
  2374. #define AT91C_TWI_IADRSZ (0x3 << 8) // (TWI) Internal Device Address Size
  2375. #define AT91C_TWI_IADRSZ_NO (0x0 << 8) // (TWI) No internal device address
  2376. #define AT91C_TWI_IADRSZ_1_BYTE (0x1 << 8) // (TWI) One-byte internal device address
  2377. #define AT91C_TWI_IADRSZ_2_BYTE (0x2 << 8) // (TWI) Two-byte internal device address
  2378. #define AT91C_TWI_IADRSZ_3_BYTE (0x3 << 8) // (TWI) Three-byte internal device address
  2379. #define AT91C_TWI_MREAD (0x1 << 12) // (TWI) Master Read Direction
  2380. #define AT91C_TWI_DADR (0x7F << 16) // (TWI) Device Address
  2381. // -------- TWI_SMR : (TWI Offset: 0x8) TWI Slave Mode Register --------
  2382. #define AT91C_TWI_SADR (0x7F << 16) // (TWI) Slave Address
  2383. // -------- TWI_CWGR : (TWI Offset: 0x10) TWI Clock Waveform Generator Register --------
  2384. #define AT91C_TWI_CLDIV (0xFF << 0) // (TWI) Clock Low Divider
  2385. #define AT91C_TWI_CHDIV (0xFF << 8) // (TWI) Clock High Divider
  2386. #define AT91C_TWI_CKDIV (0x7 << 16) // (TWI) Clock Divider
  2387. // -------- TWI_SR : (TWI Offset: 0x20) TWI Status Register --------
  2388. #define AT91C_TWI_TXCOMP_SLAVE (0x1 << 0) // (TWI) Transmission Completed
  2389. #define AT91C_TWI_TXCOMP_MASTER (0x1 << 0) // (TWI) Transmission Completed
  2390. #define AT91C_TWI_RXRDY (0x1 << 1) // (TWI) Receive holding register ReaDY
  2391. #define AT91C_TWI_TXRDY_MASTER (0x1 << 2) // (TWI) Transmit holding register ReaDY
  2392. #define AT91C_TWI_TXRDY_SLAVE (0x1 << 2) // (TWI) Transmit holding register ReaDY
  2393. #define AT91C_TWI_SVREAD (0x1 << 3) // (TWI) Slave READ (used only in Slave mode)
  2394. #define AT91C_TWI_SVACC (0x1 << 4) // (TWI) Slave ACCess (used only in Slave mode)
  2395. #define AT91C_TWI_GACC (0x1 << 5) // (TWI) General Call ACcess (used only in Slave mode)
  2396. #define AT91C_TWI_OVRE (0x1 << 6) // (TWI) Overrun Error (used only in Master and Multi-master mode)
  2397. #define AT91C_TWI_NACK_SLAVE (0x1 << 8) // (TWI) Not Acknowledged
  2398. #define AT91C_TWI_NACK_MASTER (0x1 << 8) // (TWI) Not Acknowledged
  2399. #define AT91C_TWI_ARBLST_MULTI_MASTER (0x1 << 9) // (TWI) Arbitration Lost (used only in Multimaster mode)
  2400. #define AT91C_TWI_SCLWS (0x1 << 10) // (TWI) Clock Wait State (used only in Slave mode)
  2401. #define AT91C_TWI_EOSACC (0x1 << 11) // (TWI) End Of Slave ACCess (used only in Slave mode)
  2402. #define AT91C_TWI_ENDRX (0x1 << 12) // (TWI) End of Receiver Transfer
  2403. #define AT91C_TWI_ENDTX (0x1 << 13) // (TWI) End of Receiver Transfer
  2404. #define AT91C_TWI_RXBUFF (0x1 << 14) // (TWI) RXBUFF Interrupt
  2405. #define AT91C_TWI_TXBUFE (0x1 << 15) // (TWI) TXBUFE Interrupt
  2406. // -------- TWI_IER : (TWI Offset: 0x24) TWI Interrupt Enable Register --------
  2407. // -------- TWI_IDR : (TWI Offset: 0x28) TWI Interrupt Disable Register --------
  2408. // -------- TWI_IMR : (TWI Offset: 0x2c) TWI Interrupt Mask Register --------
  2409. // *****************************************************************************
  2410. // SOFTWARE API DEFINITION FOR Usart
  2411. // *****************************************************************************
  2412. #define US_CR_OFF ( 0x00000000) // (US_CR) Control Register
  2413. #define US_MR_OFF ( 0x00000004) // (US_MR) Mode Register
  2414. #define US_IER_OFF ( 0x00000008) // (US_IER) Interrupt Enable Register
  2415. #define US_IDR_OFF ( 0x0000000C) // (US_IDR) Interrupt Disable Register
  2416. #define US_IMR_OFF ( 0x00000010) // (US_IMR) Interrupt Mask Register
  2417. #define US_CSR_OFF ( 0x00000014) // (US_CSR) Channel Status Register
  2418. #define US_RHR_OFF ( 0x00000018) // (US_RHR) Receiver Holding Register
  2419. #define US_THR_OFF ( 0x0000001C) // (US_THR) Transmitter Holding Register
  2420. #define US_BRGR_OFF ( 0x00000020) // (US_BRGR) Baud Rate Generator Register
  2421. #define US_RTOR_OFF ( 0x00000024) // (US_RTOR) Receiver Time-out Register
  2422. #define US_TTGR_OFF ( 0x00000028) // (US_TTGR) Transmitter Time-guard Register
  2423. #define US_FIDI_OFF ( 0x00000040) // (US_FIDI) FI_DI_Ratio Register
  2424. #define US_NER_OFF ( 0x00000044) // (US_NER) Nb Errors Register
  2425. #define US_IF_OFF ( 0x0000004C) // (US_IF) IRDA_FILTER Register
  2426. #define US_MAN_OFF ( 0x00000050) // (US_MAN) Manchester Encoder Decoder Register
  2427. #define US_ADDRSIZE_OFF ( 0x000000EC) // (US_ADDRSIZE) US ADDRSIZE REGISTER
  2428. #define US_IPNAME1_OFF ( 0x000000F0) // (US_IPNAME1) US IPNAME1 REGISTER
  2429. #define US_IPNAME2_OFF ( 0x000000F4) // (US_IPNAME2) US IPNAME2 REGISTER
  2430. #define US_FEATURES_OFF ( 0x000000F8) // (US_FEATURES) US FEATURES REGISTER
  2431. #define US_VER_OFF ( 0x000000FC) // (US_VER) VERSION Register
  2432. // -------- US_CR : (USART Offset: 0x0) Control Register --------
  2433. #define US_RSTRX (0x1 << 2) // (USART) Reset Receiver
  2434. #define US_RSTTX (0x1 << 3) // (USART) Reset Transmitter
  2435. #define US_RXEN (0x1 << 4) // (USART) Receiver Enable
  2436. #define US_RXDIS (0x1 << 5) // (USART) Receiver Disable
  2437. #define US_TXEN (0x1 << 6) // (USART) Transmitter Enable
  2438. #define US_TXDIS (0x1 << 7) // (USART) Transmitter Disable
  2439. #define US_RSTSTA (0x1 << 8) // (USART) Reset Status Bits
  2440. #define US_STTBRK (0x1 << 9) // (USART) Start Break
  2441. #define US_STPBRK (0x1 << 10) // (USART) Stop Break
  2442. #define US_STTTO (0x1 << 11) // (USART) Start Time-out
  2443. #define US_SENDA (0x1 << 12) // (USART) Send Address
  2444. #define US_RSTIT (0x1 << 13) // (USART) Reset Iterations
  2445. #define US_RSTNACK (0x1 << 14) // (USART) Reset Non Acknowledge
  2446. #define US_RETTO (0x1 << 15) // (USART) Rearm Time-out
  2447. #define US_DTREN (0x1 << 16) // (USART) Data Terminal ready Enable
  2448. #define US_DTRDIS (0x1 << 17) // (USART) Data Terminal ready Disable
  2449. #define US_RTSEN (0x1 << 18) // (USART) Request to Send enable
  2450. #define US_RTSDIS (0x1 << 19) // (USART) Request to Send Disable
  2451. // -------- US_MR : (USART Offset: 0x4) Mode Register --------
  2452. #define US_USMODE (0xF << 0) // (USART) Usart mode
  2453. #define US_USMODE_NORMAL (0x0) // (USART) Normal
  2454. #define US_USMODE_RS485 (0x1) // (USART) RS485
  2455. #define US_USMODE_HWHSH (0x2) // (USART) Hardware Handshaking
  2456. #define US_USMODE_MODEM (0x3) // (USART) Modem
  2457. #define US_USMODE_ISO7816_0 (0x4) // (USART) ISO7816 protocol: T = 0
  2458. #define US_USMODE_ISO7816_1 (0x6) // (USART) ISO7816 protocol: T = 1
  2459. #define US_USMODE_IRDA (0x8) // (USART) IrDA
  2460. #define US_USMODE_SWHSH (0xC) // (USART) Software Handshaking
  2461. #define US_CLKS (0x3 << 4) // (USART) Clock Selection (Baud Rate generator Input Clock
  2462. #define US_CLKS_MCK (0x0 << 4) // (USART) Clock
  2463. #define US_CLKS_MCK8 (0x1 << 4) // (USART) fdiv1
  2464. #define US_CLKS_SLCK (0x2 << 4) // (USART) slow_clock (ARM)
  2465. #define US_CLKS_SCK (0x3 << 4) // (USART) External (SCK)
  2466. #define US_CHRL (0x3 << 6) // (USART) Clock Selection (Baud Rate generator Input Clock
  2467. #define US_CHRL_5 (0x0 << 6) // (USART) Character Length: 5 bits
  2468. #define US_CHRL_6 (0x1 << 6) // (USART) Character Length: 6 bits
  2469. #define US_CHRL_7 (0x2 << 6) // (USART) Character Length: 7 bits
  2470. #define US_CHRL_8 (0x3 << 6) // (USART) Character Length: 8 bits
  2471. #define US_SYNC (0x1 << 8) // (USART) Synchronous Mode Select
  2472. #define US_PAR (0x7 << 9) // (USART) Parity type
  2473. #define US_PAR_EVEN (0x0 << 9) // (USART) Even Parity
  2474. #define US_PAR_ODD (0x1 << 9) // (USART) Odd Parity
  2475. #define US_PAR_SPACE (0x2 << 9) // (USART) Parity forced to 0 (Space)
  2476. #define US_PAR_MARK (0x3 << 9) // (USART) Parity forced to 1 (Mark)
  2477. #define US_PAR_NO (0x4 << 9) // (USART) No Parity
  2478. #define US_PAR_MULTIDROP (0x6 << 9) // (USART) Multi-drop mode
  2479. #define US_NBSTOP (0x3 << 12) // (USART) Number of Stop bits
  2480. #define US_NBSTOP_1 (0x0 << 12) // (USART) 1 stop bit
  2481. #define US_NBSTOP_15 (0x1 << 12) // (USART) Asynchronous (SYNC=0) 2 stop bits Synchronous (SYNC=1) 2 stop bits
  2482. #define US_NBSTOP_2_BIT (0x2 << 12) // (USART) 2 stop bits
  2483. #define US_CHMODE (0x3 << 14) // (USART) Channel Mode
  2484. #define US_CHMODE_NORMAL (0x0 << 14) // (USART) Normal Mode: The USART channel operates as an RX/TX USART.
  2485. #define US_CHMODE_AUTO (0x1 << 14) // (USART) Automatic Echo: Receiver Data Input is connected to the TXD pin.
  2486. #define US_CHMODE_LOCAL (0x2 << 14) // (USART) Local Loopback: Transmitter Output Signal is connected to Receiver Input Signal.
  2487. #define US_CHMODE_REMOTE (0x3 << 14) // (USART) Remote Loopback: RXD pin is internally connected to TXD pin.
  2488. #define US_MSBF (0x1 << 16) // (USART) Bit Order
  2489. #define US_MODE9 (0x1 << 17) // (USART) 9-bit Character length
  2490. #define US_CKLO (0x1 << 18) // (USART) Clock Output Select
  2491. #define US_OVER (0x1 << 19) // (USART) Over Sampling Mode
  2492. #define US_INACK (0x1 << 20) // (USART) Inhibit Non Acknowledge
  2493. #define US_DSNACK (0x1 << 21) // (USART) Disable Successive NACK
  2494. #define US_VAR_SYNC (0x1 << 22) // (USART) Variable synchronization of command/data sync Start Frame Delimiter
  2495. #define US_MAX_ITER (0x1 << 24) // (USART) Number of Repetitions
  2496. #define US_FILTER (0x1 << 28) // (USART) Receive Line Filter
  2497. #define US_MANMODE (0x1 << 29) // (USART) Manchester Encoder/Decoder Enable
  2498. #define US_MODSYNC (0x1 << 30) // (USART) Manchester Synchronization mode
  2499. #define US_ONEBIT (0x1 << 31) // (USART) Start Frame Delimiter selector
  2500. // -------- US_IER : (USART Offset: 0x8) Interrupt Enable Register --------
  2501. #define US_RXRDY (0x1 << 0) // (USART) RXRDY Interrupt
  2502. #define US_TXRDY (0x1 << 1) // (USART) TXRDY Interrupt
  2503. #define US_RXBRK (0x1 << 2) // (USART) Break Received/End of Break
  2504. #define US_ENDRX (0x1 << 3) // (USART) End of Receive Transfer Interrupt
  2505. #define US_ENDTX (0x1 << 4) // (USART) End of Transmit Interrupt
  2506. #define US_OVRE (0x1 << 5) // (USART) Overrun Interrupt
  2507. #define US_FRAME (0x1 << 6) // (USART) Framing Error Interrupt
  2508. #define US_PARE (0x1 << 7) // (USART) Parity Error Interrupt
  2509. #define US_TIMEOUT (0x1 << 8) // (USART) Receiver Time-out
  2510. #define US_TXEMPTY (0x1 << 9) // (USART) TXEMPTY Interrupt
  2511. #define US_ITERATION (0x1 << 10) // (USART) Max number of Repetitions Reached
  2512. #define US_TXBUFE (0x1 << 11) // (USART) TXBUFE Interrupt
  2513. #define US_RXBUFF (0x1 << 12) // (USART) RXBUFF Interrupt
  2514. #define US_NACK (0x1 << 13) // (USART) Non Acknowledge
  2515. #define US_RIIC (0x1 << 16) // (USART) Ring INdicator Input Change Flag
  2516. #define US_DSRIC (0x1 << 17) // (USART) Data Set Ready Input Change Flag
  2517. #define US_DCDIC (0x1 << 18) // (USART) Data Carrier Flag
  2518. #define US_CTSIC (0x1 << 19) // (USART) Clear To Send Input Change Flag
  2519. #define US_MANE (0x1 << 20) // (USART) Manchester Error Interrupt
  2520. // -------- US_IDR : (USART Offset: 0xc) Interrupt Disable Register --------
  2521. // -------- US_IMR : (USART Offset: 0x10) Interrupt Mask Register --------
  2522. // -------- US_CSR : (USART Offset: 0x14) Channel Status Register --------
  2523. #define US_RI (0x1 << 20) // (USART) Image of RI Input
  2524. #define US_DSR (0x1 << 21) // (USART) Image of DSR Input
  2525. #define US_DCD (0x1 << 22) // (USART) Image of DCD Input
  2526. #define US_CTS (0x1 << 23) // (USART) Image of CTS Input
  2527. #define US_MANERR (0x1 << 24) // (USART) Manchester Error
  2528. // -------- US_MAN : (USART Offset: 0x50) Manchester Encoder Decoder Register --------
  2529. #define US_TX_PL (0xF << 0) // (USART) Transmitter Preamble Length
  2530. #define US_TX_PP (0x3 << 8) // (USART) Transmitter Preamble Pattern
  2531. #define US_TX_PP_ALL_ONE (0x0 << 8) // (USART) ALL_ONE
  2532. #define US_TX_PP_ALL_ZERO (0x1 << 8) // (USART) ALL_ZERO
  2533. #define US_TX_PP_ZERO_ONE (0x2 << 8) // (USART) ZERO_ONE
  2534. #define US_TX_PP_ONE_ZERO (0x3 << 8) // (USART) ONE_ZERO
  2535. #define US_TX_MPOL (0x1 << 12) // (USART) Transmitter Manchester Polarity
  2536. #define US_RX_PL (0xF << 16) // (USART) Receiver Preamble Length
  2537. #define US_RX_PP (0x3 << 24) // (USART) Receiver Preamble Pattern detected
  2538. #define US_RX_PP_ALL_ONE (0x0 << 24) // (USART) ALL_ONE
  2539. #define US_RX_PP_ALL_ZERO (0x1 << 24) // (USART) ALL_ZERO
  2540. #define US_RX_PP_ZERO_ONE (0x2 << 24) // (USART) ZERO_ONE
  2541. #define US_RX_PP_ONE_ZERO (0x3 << 24) // (USART) ONE_ZERO
  2542. #define US_RX_MPOL (0x1 << 28) // (USART) Receiver Manchester Polarity
  2543. #define US_DRIFT (0x1 << 30) // (USART) Drift compensation
  2544. // *****************************************************************************
  2545. // SOFTWARE API DEFINITION FOR Synchronous Serial Controller Interface
  2546. // *****************************************************************************
  2547. #ifndef __ASSEMBLY__
  2548. #else
  2549. #define SSC_CR (AT91_CAST(AT91_REG *) 0x00000000) // (SSC_CR) Control Register
  2550. #define SSC_CMR (AT91_CAST(AT91_REG *) 0x00000004) // (SSC_CMR) Clock Mode Register
  2551. #define SSC_RCMR (AT91_CAST(AT91_REG *) 0x00000010) // (SSC_RCMR) Receive Clock ModeRegister
  2552. #define SSC_RFMR (AT91_CAST(AT91_REG *) 0x00000014) // (SSC_RFMR) Receive Frame Mode Register
  2553. #define SSC_TCMR (AT91_CAST(AT91_REG *) 0x00000018) // (SSC_TCMR) Transmit Clock Mode Register
  2554. #define SSC_TFMR (AT91_CAST(AT91_REG *) 0x0000001C) // (SSC_TFMR) Transmit Frame Mode Register
  2555. #define SSC_RHR (AT91_CAST(AT91_REG *) 0x00000020) // (SSC_RHR) Receive Holding Register
  2556. #define SSC_THR (AT91_CAST(AT91_REG *) 0x00000024) // (SSC_THR) Transmit Holding Register
  2557. #define SSC_RSHR (AT91_CAST(AT91_REG *) 0x00000030) // (SSC_RSHR) Receive Sync Holding Register
  2558. #define SSC_TSHR (AT91_CAST(AT91_REG *) 0x00000034) // (SSC_TSHR) Transmit Sync Holding Register
  2559. #define SSC_SR (AT91_CAST(AT91_REG *) 0x00000040) // (SSC_SR) Status Register
  2560. #define SSC_IER (AT91_CAST(AT91_REG *) 0x00000044) // (SSC_IER) Interrupt Enable Register
  2561. #define SSC_IDR (AT91_CAST(AT91_REG *) 0x00000048) // (SSC_IDR) Interrupt Disable Register
  2562. #define SSC_IMR (AT91_CAST(AT91_REG *) 0x0000004C) // (SSC_IMR) Interrupt Mask Register
  2563. #define SSC_ADDRSIZE (AT91_CAST(AT91_REG *) 0x000000EC) // (SSC_ADDRSIZE) SSC ADDRSIZE REGISTER
  2564. #define SSC_IPNAME1 (AT91_CAST(AT91_REG *) 0x000000F0) // (SSC_IPNAME1) SSC IPNAME1 REGISTER
  2565. #define SSC_IPNAME2 (AT91_CAST(AT91_REG *) 0x000000F4) // (SSC_IPNAME2) SSC IPNAME2 REGISTER
  2566. #define SSC_FEATURES (AT91_CAST(AT91_REG *) 0x000000F8) // (SSC_FEATURES) SSC FEATURES REGISTER
  2567. #define SSC_VER (AT91_CAST(AT91_REG *) 0x000000FC) // (SSC_VER) Version Register
  2568. #endif
  2569. // -------- SSC_CR : (SSC Offset: 0x0) SSC Control Register --------
  2570. #define AT91C_SSC_RXEN (0x1 << 0) // (SSC) Receive Enable
  2571. #define AT91C_SSC_RXDIS (0x1 << 1) // (SSC) Receive Disable
  2572. #define AT91C_SSC_TXEN (0x1 << 8) // (SSC) Transmit Enable
  2573. #define AT91C_SSC_TXDIS (0x1 << 9) // (SSC) Transmit Disable
  2574. #define AT91C_SSC_SWRST (0x1 << 15) // (SSC) Software Reset
  2575. // -------- SSC_RCMR : (SSC Offset: 0x10) SSC Receive Clock Mode Register --------
  2576. #define AT91C_SSC_CKS (0x3 << 0) // (SSC) Receive/Transmit Clock Selection
  2577. #define AT91C_SSC_CKS_DIV (0x0) // (SSC) Divided Clock
  2578. #define AT91C_SSC_CKS_TK (0x1) // (SSC) TK Clock signal
  2579. #define AT91C_SSC_CKS_RK (0x2) // (SSC) RK pin
  2580. #define AT91C_SSC_CKO (0x7 << 2) // (SSC) Receive/Transmit Clock Output Mode Selection
  2581. #define AT91C_SSC_CKO_NONE (0x0 << 2) // (SSC) Receive/Transmit Clock Output Mode: None RK pin: Input-only
  2582. #define AT91C_SSC_CKO_CONTINOUS (0x1 << 2) // (SSC) Continuous Receive/Transmit Clock RK pin: Output
  2583. #define AT91C_SSC_CKO_DATA_TX (0x2 << 2) // (SSC) Receive/Transmit Clock only during data transfers RK pin: Output
  2584. #define AT91C_SSC_CKI (0x1 << 5) // (SSC) Receive/Transmit Clock Inversion
  2585. #define AT91C_SSC_CKG (0x3 << 6) // (SSC) Receive/Transmit Clock Gating Selection
  2586. #define AT91C_SSC_CKG_NONE (0x0 << 6) // (SSC) Receive/Transmit Clock Gating: None, continuous clock
  2587. #define AT91C_SSC_CKG_LOW (0x1 << 6) // (SSC) Receive/Transmit Clock enabled only if RF Low
  2588. #define AT91C_SSC_CKG_HIGH (0x2 << 6) // (SSC) Receive/Transmit Clock enabled only if RF High
  2589. #define AT91C_SSC_START (0xF << 8) // (SSC) Receive/Transmit Start Selection
  2590. #define AT91C_SSC_START_CONTINOUS (0x0 << 8) // (SSC) Continuous, as soon as the receiver is enabled, and immediately after the end of transfer of the previous data.
  2591. #define AT91C_SSC_START_TX (0x1 << 8) // (SSC) Transmit/Receive start
  2592. #define AT91C_SSC_START_LOW_RF (0x2 << 8) // (SSC) Detection of a low level on RF input
  2593. #define AT91C_SSC_START_HIGH_RF (0x3 << 8) // (SSC) Detection of a high level on RF input
  2594. #define AT91C_SSC_START_FALL_RF (0x4 << 8) // (SSC) Detection of a falling edge on RF input
  2595. #define AT91C_SSC_START_RISE_RF (0x5 << 8) // (SSC) Detection of a rising edge on RF input
  2596. #define AT91C_SSC_START_LEVEL_RF (0x6 << 8) // (SSC) Detection of any level change on RF input
  2597. #define AT91C_SSC_START_EDGE_RF (0x7 << 8) // (SSC) Detection of any edge on RF input
  2598. #define AT91C_SSC_START_0 (0x8 << 8) // (SSC) Compare 0
  2599. #define AT91C_SSC_STOP (0x1 << 12) // (SSC) Receive Stop Selection
  2600. #define AT91C_SSC_STTDLY (0xFF << 16) // (SSC) Receive/Transmit Start Delay
  2601. #define AT91C_SSC_PERIOD (0xFF << 24) // (SSC) Receive/Transmit Period Divider Selection
  2602. // -------- SSC_RFMR : (SSC Offset: 0x14) SSC Receive Frame Mode Register --------
  2603. #define AT91C_SSC_DATLEN (0x1F << 0) // (SSC) Data Length
  2604. #define AT91C_SSC_LOOP (0x1 << 5) // (SSC) Loop Mode
  2605. #define AT91C_SSC_MSBF (0x1 << 7) // (SSC) Most Significant Bit First
  2606. #define AT91C_SSC_DATNB (0xF << 8) // (SSC) Data Number per Frame
  2607. #define AT91C_SSC_FSLEN (0xF << 16) // (SSC) Receive/Transmit Frame Sync length
  2608. #define AT91C_SSC_FSOS (0x7 << 20) // (SSC) Receive/Transmit Frame Sync Output Selection
  2609. #define AT91C_SSC_FSOS_NONE (0x0 << 20) // (SSC) Selected Receive/Transmit Frame Sync Signal: None RK pin Input-only
  2610. #define AT91C_SSC_FSOS_NEGATIVE (0x1 << 20) // (SSC) Selected Receive/Transmit Frame Sync Signal: Negative Pulse
  2611. #define AT91C_SSC_FSOS_POSITIVE (0x2 << 20) // (SSC) Selected Receive/Transmit Frame Sync Signal: Positive Pulse
  2612. #define AT91C_SSC_FSOS_LOW (0x3 << 20) // (SSC) Selected Receive/Transmit Frame Sync Signal: Driver Low during data transfer
  2613. #define AT91C_SSC_FSOS_HIGH (0x4 << 20) // (SSC) Selected Receive/Transmit Frame Sync Signal: Driver High during data transfer
  2614. #define AT91C_SSC_FSOS_TOGGLE (0x5 << 20) // (SSC) Selected Receive/Transmit Frame Sync Signal: Toggling at each start of data transfer
  2615. #define AT91C_SSC_FSEDGE (0x1 << 24) // (SSC) Frame Sync Edge Detection
  2616. // -------- SSC_TCMR : (SSC Offset: 0x18) SSC Transmit Clock Mode Register --------
  2617. // -------- SSC_TFMR : (SSC Offset: 0x1c) SSC Transmit Frame Mode Register --------
  2618. #define AT91C_SSC_DATDEF (0x1 << 5) // (SSC) Data Default Value
  2619. #define AT91C_SSC_FSDEN (0x1 << 23) // (SSC) Frame Sync Data Enable
  2620. // -------- SSC_SR : (SSC Offset: 0x40) SSC Status Register --------
  2621. #define AT91C_SSC_TXRDY (0x1 << 0) // (SSC) Transmit Ready
  2622. #define AT91C_SSC_TXEMPTY (0x1 << 1) // (SSC) Transmit Empty
  2623. #define AT91C_SSC_ENDTX (0x1 << 2) // (SSC) End Of Transmission
  2624. #define AT91C_SSC_TXBUFE (0x1 << 3) // (SSC) Transmit Buffer Empty
  2625. #define AT91C_SSC_RXRDY (0x1 << 4) // (SSC) Receive Ready
  2626. #define AT91C_SSC_OVRUN (0x1 << 5) // (SSC) Receive Overrun
  2627. #define AT91C_SSC_ENDRX (0x1 << 6) // (SSC) End of Reception
  2628. #define AT91C_SSC_RXBUFF (0x1 << 7) // (SSC) Receive Buffer Full
  2629. #define AT91C_SSC_CP0 (0x1 << 8) // (SSC) Compare 0
  2630. #define AT91C_SSC_CP1 (0x1 << 9) // (SSC) Compare 1
  2631. #define AT91C_SSC_TXSYN (0x1 << 10) // (SSC) Transmit Sync
  2632. #define AT91C_SSC_RXSYN (0x1 << 11) // (SSC) Receive Sync
  2633. #define AT91C_SSC_TXENA (0x1 << 16) // (SSC) Transmit Enable
  2634. #define AT91C_SSC_RXENA (0x1 << 17) // (SSC) Receive Enable
  2635. // -------- SSC_IER : (SSC Offset: 0x44) SSC Interrupt Enable Register --------
  2636. // -------- SSC_IDR : (SSC Offset: 0x48) SSC Interrupt Disable Register --------
  2637. // -------- SSC_IMR : (SSC Offset: 0x4c) SSC Interrupt Mask Register --------
  2638. // *****************************************************************************
  2639. // SOFTWARE API DEFINITION FOR PWMC Channel Interface
  2640. // *****************************************************************************
  2641. #ifndef __ASSEMBLY__
  2642. #else
  2643. #define PWMC_CMR (AT91_CAST(AT91_REG *) 0x00000000) // (PWMC_CMR) Channel Mode Register
  2644. #define PWMC_CDTYR (AT91_CAST(AT91_REG *) 0x00000004) // (PWMC_CDTYR) Channel Duty Cycle Register
  2645. #define PWMC_CDTYUPDR (AT91_CAST(AT91_REG *) 0x00000008) // (PWMC_CDTYUPDR) Channel Duty Cycle Update Register
  2646. #define PWMC_CPRDR (AT91_CAST(AT91_REG *) 0x0000000C) // (PWMC_CPRDR) Channel Period Register
  2647. #define PWMC_CPRDUPDR (AT91_CAST(AT91_REG *) 0x00000010) // (PWMC_CPRDUPDR) Channel Period Update Register
  2648. #define PWMC_CCNTR (AT91_CAST(AT91_REG *) 0x00000014) // (PWMC_CCNTR) Channel Counter Register
  2649. #define PWMC_DTR (AT91_CAST(AT91_REG *) 0x00000018) // (PWMC_DTR) Channel Dead Time Value Register
  2650. #define PWMC_DTUPDR (AT91_CAST(AT91_REG *) 0x0000001C) // (PWMC_DTUPDR) Channel Dead Time Update Value Register
  2651. #endif
  2652. // -------- PWMC_CMR : (PWMC_CH Offset: 0x0) PWMC Channel Mode Register --------
  2653. #define AT91C_PWMC_CPRE (0xF << 0) // (PWMC_CH) Channel Pre-scaler : PWMC_CLKx
  2654. #define AT91C_PWMC_CPRE_MCK (0x0) // (PWMC_CH)
  2655. #define AT91C_PWMC_CPRE_MCK_DIV_2 (0x1) // (PWMC_CH)
  2656. #define AT91C_PWMC_CPRE_MCK_DIV_4 (0x2) // (PWMC_CH)
  2657. #define AT91C_PWMC_CPRE_MCK_DIV_8 (0x3) // (PWMC_CH)
  2658. #define AT91C_PWMC_CPRE_MCK_DIV_16 (0x4) // (PWMC_CH)
  2659. #define AT91C_PWMC_CPRE_MCK_DIV_32 (0x5) // (PWMC_CH)
  2660. #define AT91C_PWMC_CPRE_MCK_DIV_64 (0x6) // (PWMC_CH)
  2661. #define AT91C_PWMC_CPRE_MCK_DIV_128 (0x7) // (PWMC_CH)
  2662. #define AT91C_PWMC_CPRE_MCK_DIV_256 (0x8) // (PWMC_CH)
  2663. #define AT91C_PWMC_CPRE_MCK_DIV_512 (0x9) // (PWMC_CH)
  2664. #define AT91C_PWMC_CPRE_MCK_DIV_1024 (0xA) // (PWMC_CH)
  2665. #define AT91C_PWMC_CPRE_MCKA (0xB) // (PWMC_CH)
  2666. #define AT91C_PWMC_CPRE_MCKB (0xC) // (PWMC_CH)
  2667. #define AT91C_PWMC_CALG (0x1 << 8) // (PWMC_CH) Channel Alignment
  2668. #define AT91C_PWMC_CPOL (0x1 << 9) // (PWMC_CH) Channel Polarity
  2669. #define AT91C_PWMC_CES (0x1 << 10) // (PWMC_CH) Counter Event Selection
  2670. #define AT91C_PWMC_DTE (0x1 << 16) // (PWMC_CH) Dead Time Genrator Enable
  2671. #define AT91C_PWMC_DTHI (0x1 << 17) // (PWMC_CH) Dead Time PWMHx Output Inverted
  2672. #define AT91C_PWMC_DTLI (0x1 << 18) // (PWMC_CH) Dead Time PWMLx Output Inverted
  2673. // -------- PWMC_CDTYR : (PWMC_CH Offset: 0x4) PWMC Channel Duty Cycle Register --------
  2674. #define AT91C_PWMC_CDTY (0xFFFFFF << 0) // (PWMC_CH) Channel Duty Cycle
  2675. // -------- PWMC_CDTYUPDR : (PWMC_CH Offset: 0x8) PWMC Channel Duty Cycle Update Register --------
  2676. #define AT91C_PWMC_CDTYUPD (0xFFFFFF << 0) // (PWMC_CH) Channel Duty Cycle Update
  2677. // -------- PWMC_CPRDR : (PWMC_CH Offset: 0xc) PWMC Channel Period Register --------
  2678. #define AT91C_PWMC_CPRD (0xFFFFFF << 0) // (PWMC_CH) Channel Period
  2679. // -------- PWMC_CPRDUPDR : (PWMC_CH Offset: 0x10) PWMC Channel Period Update Register --------
  2680. #define AT91C_PWMC_CPRDUPD (0xFFFFFF << 0) // (PWMC_CH) Channel Period Update
  2681. // -------- PWMC_CCNTR : (PWMC_CH Offset: 0x14) PWMC Channel Counter Register --------
  2682. #define AT91C_PWMC_CCNT (0xFFFFFF << 0) // (PWMC_CH) Channel Counter
  2683. // -------- PWMC_DTR : (PWMC_CH Offset: 0x18) Channel Dead Time Value Register --------
  2684. #define AT91C_PWMC_DTL (0xFFFF << 0) // (PWMC_CH) Channel Dead Time for PWML
  2685. #define AT91C_PWMC_DTH (0xFFFF << 16) // (PWMC_CH) Channel Dead Time for PWMH
  2686. // -------- PWMC_DTUPDR : (PWMC_CH Offset: 0x1c) Channel Dead Time Value Register --------
  2687. #define AT91C_PWMC_DTLUPD (0xFFFF << 0) // (PWMC_CH) Channel Dead Time Update for PWML.
  2688. #define AT91C_PWMC_DTHUPD (0xFFFF << 16) // (PWMC_CH) Channel Dead Time Update for PWMH.
  2689. // *****************************************************************************
  2690. // SOFTWARE API DEFINITION FOR Pulse Width Modulation Controller Interface
  2691. // *****************************************************************************
  2692. #ifndef __ASSEMBLY__
  2693. #else
  2694. #define PWMC_MR (AT91_CAST(AT91_REG *) 0x00000000) // (PWMC_MR) PWMC Mode Register
  2695. #define PWMC_ENA (AT91_CAST(AT91_REG *) 0x00000004) // (PWMC_ENA) PWMC Enable Register
  2696. #define PWMC_DIS (AT91_CAST(AT91_REG *) 0x00000008) // (PWMC_DIS) PWMC Disable Register
  2697. #define PWMC_SR (AT91_CAST(AT91_REG *) 0x0000000C) // (PWMC_SR) PWMC Status Register
  2698. #define PWMC_IER1 (AT91_CAST(AT91_REG *) 0x00000010) // (PWMC_IER1) PWMC Interrupt Enable Register 1
  2699. #define PWMC_IDR1 (AT91_CAST(AT91_REG *) 0x00000014) // (PWMC_IDR1) PWMC Interrupt Disable Register 1
  2700. #define PWMC_IMR1 (AT91_CAST(AT91_REG *) 0x00000018) // (PWMC_IMR1) PWMC Interrupt Mask Register 1
  2701. #define PWMC_ISR1 (AT91_CAST(AT91_REG *) 0x0000001C) // (PWMC_ISR1) PWMC Interrupt Status Register 1
  2702. #define PWMC_SYNC (AT91_CAST(AT91_REG *) 0x00000020) // (PWMC_SYNC) PWM Synchronized Channels Register
  2703. #define PWMC_UPCR (AT91_CAST(AT91_REG *) 0x00000028) // (PWMC_UPCR) PWM Update Control Register
  2704. #define PWMC_SCUP (AT91_CAST(AT91_REG *) 0x0000002C) // (PWMC_SCUP) PWM Update Period Register
  2705. #define PWMC_SCUPUPD (AT91_CAST(AT91_REG *) 0x00000030) // (PWMC_SCUPUPD) PWM Update Period Update Register
  2706. #define PWMC_IER2 (AT91_CAST(AT91_REG *) 0x00000034) // (PWMC_IER2) PWMC Interrupt Enable Register 2
  2707. #define PWMC_IDR2 (AT91_CAST(AT91_REG *) 0x00000038) // (PWMC_IDR2) PWMC Interrupt Disable Register 2
  2708. #define PWMC_IMR2 (AT91_CAST(AT91_REG *) 0x0000003C) // (PWMC_IMR2) PWMC Interrupt Mask Register 2
  2709. #define PWMC_ISR2 (AT91_CAST(AT91_REG *) 0x00000040) // (PWMC_ISR2) PWMC Interrupt Status Register 2
  2710. #define PWMC_OOV (AT91_CAST(AT91_REG *) 0x00000044) // (PWMC_OOV) PWM Output Override Value Register
  2711. #define PWMC_OS (AT91_CAST(AT91_REG *) 0x00000048) // (PWMC_OS) PWM Output Selection Register
  2712. #define PWMC_OSS (AT91_CAST(AT91_REG *) 0x0000004C) // (PWMC_OSS) PWM Output Selection Set Register
  2713. #define PWMC_OSC (AT91_CAST(AT91_REG *) 0x00000050) // (PWMC_OSC) PWM Output Selection Clear Register
  2714. #define PWMC_OSSUPD (AT91_CAST(AT91_REG *) 0x00000054) // (PWMC_OSSUPD) PWM Output Selection Set Update Register
  2715. #define PWMC_OSCUPD (AT91_CAST(AT91_REG *) 0x00000058) // (PWMC_OSCUPD) PWM Output Selection Clear Update Register
  2716. #define PWMC_FMR (AT91_CAST(AT91_REG *) 0x0000005C) // (PWMC_FMR) PWM Fault Mode Register
  2717. #define PWMC_FSR (AT91_CAST(AT91_REG *) 0x00000060) // (PWMC_FSR) PWM Fault Mode Status Register
  2718. #define PWMC_FCR (AT91_CAST(AT91_REG *) 0x00000064) // (PWMC_FCR) PWM Fault Mode Clear Register
  2719. #define PWMC_FPV (AT91_CAST(AT91_REG *) 0x00000068) // (PWMC_FPV) PWM Fault Protection Value Register
  2720. #define PWMC_FPER1 (AT91_CAST(AT91_REG *) 0x0000006C) // (PWMC_FPER1) PWM Fault Protection Enable Register 1
  2721. #define PWMC_FPER2 (AT91_CAST(AT91_REG *) 0x00000070) // (PWMC_FPER2) PWM Fault Protection Enable Register 2
  2722. #define PWMC_FPER3 (AT91_CAST(AT91_REG *) 0x00000074) // (PWMC_FPER3) PWM Fault Protection Enable Register 3
  2723. #define PWMC_FPER4 (AT91_CAST(AT91_REG *) 0x00000078) // (PWMC_FPER4) PWM Fault Protection Enable Register 4
  2724. #define PWMC_EL0MR (AT91_CAST(AT91_REG *) 0x0000007C) // (PWMC_EL0MR) PWM Event Line 0 Mode Register
  2725. #define PWMC_EL1MR (AT91_CAST(AT91_REG *) 0x00000080) // (PWMC_EL1MR) PWM Event Line 1 Mode Register
  2726. #define PWMC_EL2MR (AT91_CAST(AT91_REG *) 0x00000084) // (PWMC_EL2MR) PWM Event Line 2 Mode Register
  2727. #define PWMC_EL3MR (AT91_CAST(AT91_REG *) 0x00000088) // (PWMC_EL3MR) PWM Event Line 3 Mode Register
  2728. #define PWMC_EL4MR (AT91_CAST(AT91_REG *) 0x0000008C) // (PWMC_EL4MR) PWM Event Line 4 Mode Register
  2729. #define PWMC_EL5MR (AT91_CAST(AT91_REG *) 0x00000090) // (PWMC_EL5MR) PWM Event Line 5 Mode Register
  2730. #define PWMC_EL6MR (AT91_CAST(AT91_REG *) 0x00000094) // (PWMC_EL6MR) PWM Event Line 6 Mode Register
  2731. #define PWMC_EL7MR (AT91_CAST(AT91_REG *) 0x00000098) // (PWMC_EL7MR) PWM Event Line 7 Mode Register
  2732. #define PWMC_WPCR (AT91_CAST(AT91_REG *) 0x000000E4) // (PWMC_WPCR) PWM Write Protection Enable Register
  2733. #define PWMC_WPSR (AT91_CAST(AT91_REG *) 0x000000E8) // (PWMC_WPSR) PWM Write Protection Status Register
  2734. #define PWMC_ADDRSIZE (AT91_CAST(AT91_REG *) 0x000000EC) // (PWMC_ADDRSIZE) PWMC ADDRSIZE REGISTER
  2735. #define PWMC_IPNAME1 (AT91_CAST(AT91_REG *) 0x000000F0) // (PWMC_IPNAME1) PWMC IPNAME1 REGISTER
  2736. #define PWMC_IPNAME2 (AT91_CAST(AT91_REG *) 0x000000F4) // (PWMC_IPNAME2) PWMC IPNAME2 REGISTER
  2737. #define PWMC_FEATURES (AT91_CAST(AT91_REG *) 0x000000F8) // (PWMC_FEATURES) PWMC FEATURES REGISTER
  2738. #define PWMC_VER (AT91_CAST(AT91_REG *) 0x000000FC) // (PWMC_VER) PWMC Version Register
  2739. #define PWMC_CMP0V (AT91_CAST(AT91_REG *) 0x00000130) // (PWMC_CMP0V) PWM Comparison Value 0 Register
  2740. #define PWMC_CMP0VUPD (AT91_CAST(AT91_REG *) 0x00000134) // (PWMC_CMP0VUPD) PWM Comparison Value 0 Update Register
  2741. #define PWMC_CMP0M (AT91_CAST(AT91_REG *) 0x00000138) // (PWMC_CMP0M) PWM Comparison Mode 0 Register
  2742. #define PWMC_CMP0MUPD (AT91_CAST(AT91_REG *) 0x0000013C) // (PWMC_CMP0MUPD) PWM Comparison Mode 0 Update Register
  2743. #define PWMC_CMP1V (AT91_CAST(AT91_REG *) 0x00000140) // (PWMC_CMP1V) PWM Comparison Value 1 Register
  2744. #define PWMC_CMP1VUPD (AT91_CAST(AT91_REG *) 0x00000144) // (PWMC_CMP1VUPD) PWM Comparison Value 1 Update Register
  2745. #define PWMC_CMP1M (AT91_CAST(AT91_REG *) 0x00000148) // (PWMC_CMP1M) PWM Comparison Mode 1 Register
  2746. #define PWMC_CMP1MUPD (AT91_CAST(AT91_REG *) 0x0000014C) // (PWMC_CMP1MUPD) PWM Comparison Mode 1 Update Register
  2747. #define PWMC_CMP2V (AT91_CAST(AT91_REG *) 0x00000150) // (PWMC_CMP2V) PWM Comparison Value 2 Register
  2748. #define PWMC_CMP2VUPD (AT91_CAST(AT91_REG *) 0x00000154) // (PWMC_CMP2VUPD) PWM Comparison Value 2 Update Register
  2749. #define PWMC_CMP2M (AT91_CAST(AT91_REG *) 0x00000158) // (PWMC_CMP2M) PWM Comparison Mode 2 Register
  2750. #define PWMC_CMP2MUPD (AT91_CAST(AT91_REG *) 0x0000015C) // (PWMC_CMP2MUPD) PWM Comparison Mode 2 Update Register
  2751. #define PWMC_CMP3V (AT91_CAST(AT91_REG *) 0x00000160) // (PWMC_CMP3V) PWM Comparison Value 3 Register
  2752. #define PWMC_CMP3VUPD (AT91_CAST(AT91_REG *) 0x00000164) // (PWMC_CMP3VUPD) PWM Comparison Value 3 Update Register
  2753. #define PWMC_CMP3M (AT91_CAST(AT91_REG *) 0x00000168) // (PWMC_CMP3M) PWM Comparison Mode 3 Register
  2754. #define PWMC_CMP3MUPD (AT91_CAST(AT91_REG *) 0x0000016C) // (PWMC_CMP3MUPD) PWM Comparison Mode 3 Update Register
  2755. #define PWMC_CMP4V (AT91_CAST(AT91_REG *) 0x00000170) // (PWMC_CMP4V) PWM Comparison Value 4 Register
  2756. #define PWMC_CMP4VUPD (AT91_CAST(AT91_REG *) 0x00000174) // (PWMC_CMP4VUPD) PWM Comparison Value 4 Update Register
  2757. #define PWMC_CMP4M (AT91_CAST(AT91_REG *) 0x00000178) // (PWMC_CMP4M) PWM Comparison Mode 4 Register
  2758. #define PWMC_CMP4MUPD (AT91_CAST(AT91_REG *) 0x0000017C) // (PWMC_CMP4MUPD) PWM Comparison Mode 4 Update Register
  2759. #define PWMC_CMP5V (AT91_CAST(AT91_REG *) 0x00000180) // (PWMC_CMP5V) PWM Comparison Value 5 Register
  2760. #define PWMC_CMP5VUPD (AT91_CAST(AT91_REG *) 0x00000184) // (PWMC_CMP5VUPD) PWM Comparison Value 5 Update Register
  2761. #define PWMC_CMP5M (AT91_CAST(AT91_REG *) 0x00000188) // (PWMC_CMP5M) PWM Comparison Mode 5 Register
  2762. #define PWMC_CMP5MUPD (AT91_CAST(AT91_REG *) 0x0000018C) // (PWMC_CMP5MUPD) PWM Comparison Mode 5 Update Register
  2763. #define PWMC_CMP6V (AT91_CAST(AT91_REG *) 0x00000190) // (PWMC_CMP6V) PWM Comparison Value 6 Register
  2764. #define PWMC_CMP6VUPD (AT91_CAST(AT91_REG *) 0x00000194) // (PWMC_CMP6VUPD) PWM Comparison Value 6 Update Register
  2765. #define PWMC_CMP6M (AT91_CAST(AT91_REG *) 0x00000198) // (PWMC_CMP6M) PWM Comparison Mode 6 Register
  2766. #define PWMC_CMP6MUPD (AT91_CAST(AT91_REG *) 0x0000019C) // (PWMC_CMP6MUPD) PWM Comparison Mode 6 Update Register
  2767. #define PWMC_CMP7V (AT91_CAST(AT91_REG *) 0x000001A0) // (PWMC_CMP7V) PWM Comparison Value 7 Register
  2768. #define PWMC_CMP7VUPD (AT91_CAST(AT91_REG *) 0x000001A4) // (PWMC_CMP7VUPD) PWM Comparison Value 7 Update Register
  2769. #define PWMC_CMP7M (AT91_CAST(AT91_REG *) 0x000001A8) // (PWMC_CMP7M) PWM Comparison Mode 7 Register
  2770. #define PWMC_CMP7MUPD (AT91_CAST(AT91_REG *) 0x000001AC) // (PWMC_CMP7MUPD) PWM Comparison Mode 7 Update Register
  2771. #endif
  2772. // -------- PWMC_MR : (PWMC Offset: 0x0) PWMC Mode Register --------
  2773. #define AT91C_PWMC_DIVA (0xFF << 0) // (PWMC) CLKA divide factor.
  2774. #define AT91C_PWMC_PREA (0xF << 8) // (PWMC) Divider Input Clock Prescaler A
  2775. #define AT91C_PWMC_PREA_MCK (0x0 << 8) // (PWMC)
  2776. #define AT91C_PWMC_PREA_MCK_DIV_2 (0x1 << 8) // (PWMC)
  2777. #define AT91C_PWMC_PREA_MCK_DIV_4 (0x2 << 8) // (PWMC)
  2778. #define AT91C_PWMC_PREA_MCK_DIV_8 (0x3 << 8) // (PWMC)
  2779. #define AT91C_PWMC_PREA_MCK_DIV_16 (0x4 << 8) // (PWMC)
  2780. #define AT91C_PWMC_PREA_MCK_DIV_32 (0x5 << 8) // (PWMC)
  2781. #define AT91C_PWMC_PREA_MCK_DIV_64 (0x6 << 8) // (PWMC)
  2782. #define AT91C_PWMC_PREA_MCK_DIV_128 (0x7 << 8) // (PWMC)
  2783. #define AT91C_PWMC_PREA_MCK_DIV_256 (0x8 << 8) // (PWMC)
  2784. #define AT91C_PWMC_DIVB (0xFF << 16) // (PWMC) CLKB divide factor.
  2785. #define AT91C_PWMC_PREB (0xF << 24) // (PWMC) Divider Input Clock Prescaler B
  2786. #define AT91C_PWMC_PREB_MCK (0x0 << 24) // (PWMC)
  2787. #define AT91C_PWMC_PREB_MCK_DIV_2 (0x1 << 24) // (PWMC)
  2788. #define AT91C_PWMC_PREB_MCK_DIV_4 (0x2 << 24) // (PWMC)
  2789. #define AT91C_PWMC_PREB_MCK_DIV_8 (0x3 << 24) // (PWMC)
  2790. #define AT91C_PWMC_PREB_MCK_DIV_16 (0x4 << 24) // (PWMC)
  2791. #define AT91C_PWMC_PREB_MCK_DIV_32 (0x5 << 24) // (PWMC)
  2792. #define AT91C_PWMC_PREB_MCK_DIV_64 (0x6 << 24) // (PWMC)
  2793. #define AT91C_PWMC_PREB_MCK_DIV_128 (0x7 << 24) // (PWMC)
  2794. #define AT91C_PWMC_PREB_MCK_DIV_256 (0x8 << 24) // (PWMC)
  2795. #define AT91C_PWMC_CLKSEL (0x1 << 31) // (PWMC) CCK Source Clock Selection
  2796. // -------- PWMC_ENA : (PWMC Offset: 0x4) PWMC Enable Register --------
  2797. #define AT91C_PWMC_CHID0 (0x1 << 0) // (PWMC) Channel ID 0
  2798. #define AT91C_PWMC_CHID1 (0x1 << 1) // (PWMC) Channel ID 1
  2799. #define AT91C_PWMC_CHID2 (0x1 << 2) // (PWMC) Channel ID 2
  2800. #define AT91C_PWMC_CHID3 (0x1 << 3) // (PWMC) Channel ID 3
  2801. #define AT91C_PWMC_CHID4 (0x1 << 4) // (PWMC) Channel ID 4
  2802. #define AT91C_PWMC_CHID5 (0x1 << 5) // (PWMC) Channel ID 5
  2803. #define AT91C_PWMC_CHID6 (0x1 << 6) // (PWMC) Channel ID 6
  2804. #define AT91C_PWMC_CHID7 (0x1 << 7) // (PWMC) Channel ID 7
  2805. #define AT91C_PWMC_CHID8 (0x1 << 8) // (PWMC) Channel ID 8
  2806. #define AT91C_PWMC_CHID9 (0x1 << 9) // (PWMC) Channel ID 9
  2807. #define AT91C_PWMC_CHID10 (0x1 << 10) // (PWMC) Channel ID 10
  2808. #define AT91C_PWMC_CHID11 (0x1 << 11) // (PWMC) Channel ID 11
  2809. #define AT91C_PWMC_CHID12 (0x1 << 12) // (PWMC) Channel ID 12
  2810. #define AT91C_PWMC_CHID13 (0x1 << 13) // (PWMC) Channel ID 13
  2811. #define AT91C_PWMC_CHID14 (0x1 << 14) // (PWMC) Channel ID 14
  2812. #define AT91C_PWMC_CHID15 (0x1 << 15) // (PWMC) Channel ID 15
  2813. // -------- PWMC_DIS : (PWMC Offset: 0x8) PWMC Disable Register --------
  2814. // -------- PWMC_SR : (PWMC Offset: 0xc) PWMC Status Register --------
  2815. // -------- PWMC_IER1 : (PWMC Offset: 0x10) PWMC Interrupt Enable Register --------
  2816. #define AT91C_PWMC_FCHID0 (0x1 << 16) // (PWMC) Fault Event Channel ID 0
  2817. #define AT91C_PWMC_FCHID1 (0x1 << 17) // (PWMC) Fault Event Channel ID 1
  2818. #define AT91C_PWMC_FCHID2 (0x1 << 18) // (PWMC) Fault Event Channel ID 2
  2819. #define AT91C_PWMC_FCHID3 (0x1 << 19) // (PWMC) Fault Event Channel ID 3
  2820. #define AT91C_PWMC_FCHID4 (0x1 << 20) // (PWMC) Fault Event Channel ID 4
  2821. #define AT91C_PWMC_FCHID5 (0x1 << 21) // (PWMC) Fault Event Channel ID 5
  2822. #define AT91C_PWMC_FCHID6 (0x1 << 22) // (PWMC) Fault Event Channel ID 6
  2823. #define AT91C_PWMC_FCHID7 (0x1 << 23) // (PWMC) Fault Event Channel ID 7
  2824. #define AT91C_PWMC_FCHID8 (0x1 << 24) // (PWMC) Fault Event Channel ID 8
  2825. #define AT91C_PWMC_FCHID9 (0x1 << 25) // (PWMC) Fault Event Channel ID 9
  2826. #define AT91C_PWMC_FCHID10 (0x1 << 26) // (PWMC) Fault Event Channel ID 10
  2827. #define AT91C_PWMC_FCHID11 (0x1 << 27) // (PWMC) Fault Event Channel ID 11
  2828. #define AT91C_PWMC_FCHID12 (0x1 << 28) // (PWMC) Fault Event Channel ID 12
  2829. #define AT91C_PWMC_FCHID13 (0x1 << 29) // (PWMC) Fault Event Channel ID 13
  2830. #define AT91C_PWMC_FCHID14 (0x1 << 30) // (PWMC) Fault Event Channel ID 14
  2831. #define AT91C_PWMC_FCHID15 (0x1 << 31) // (PWMC) Fault Event Channel ID 15
  2832. // -------- PWMC_IDR1 : (PWMC Offset: 0x14) PWMC Interrupt Disable Register --------
  2833. // -------- PWMC_IMR1 : (PWMC Offset: 0x18) PWMC Interrupt Mask Register --------
  2834. // -------- PWMC_ISR1 : (PWMC Offset: 0x1c) PWMC Interrupt Status Register --------
  2835. // -------- PWMC_SYNC : (PWMC Offset: 0x20) PWMC Synchronous Channels Register --------
  2836. #define AT91C_PWMC_SYNC0 (0x1 << 0) // (PWMC) Synchronous Channel ID 0
  2837. #define AT91C_PWMC_SYNC1 (0x1 << 1) // (PWMC) Synchronous Channel ID 1
  2838. #define AT91C_PWMC_SYNC2 (0x1 << 2) // (PWMC) Synchronous Channel ID 2
  2839. #define AT91C_PWMC_SYNC3 (0x1 << 3) // (PWMC) Synchronous Channel ID 3
  2840. #define AT91C_PWMC_SYNC4 (0x1 << 4) // (PWMC) Synchronous Channel ID 4
  2841. #define AT91C_PWMC_SYNC5 (0x1 << 5) // (PWMC) Synchronous Channel ID 5
  2842. #define AT91C_PWMC_SYNC6 (0x1 << 6) // (PWMC) Synchronous Channel ID 6
  2843. #define AT91C_PWMC_SYNC7 (0x1 << 7) // (PWMC) Synchronous Channel ID 7
  2844. #define AT91C_PWMC_SYNC8 (0x1 << 8) // (PWMC) Synchronous Channel ID 8
  2845. #define AT91C_PWMC_SYNC9 (0x1 << 9) // (PWMC) Synchronous Channel ID 9
  2846. #define AT91C_PWMC_SYNC10 (0x1 << 10) // (PWMC) Synchronous Channel ID 10
  2847. #define AT91C_PWMC_SYNC11 (0x1 << 11) // (PWMC) Synchronous Channel ID 11
  2848. #define AT91C_PWMC_SYNC12 (0x1 << 12) // (PWMC) Synchronous Channel ID 12
  2849. #define AT91C_PWMC_SYNC13 (0x1 << 13) // (PWMC) Synchronous Channel ID 13
  2850. #define AT91C_PWMC_SYNC14 (0x1 << 14) // (PWMC) Synchronous Channel ID 14
  2851. #define AT91C_PWMC_SYNC15 (0x1 << 15) // (PWMC) Synchronous Channel ID 15
  2852. #define AT91C_PWMC_UPDM (0x3 << 16) // (PWMC) Synchronous Channels Update mode
  2853. #define AT91C_PWMC_UPDM_MODE0 (0x0 << 16) // (PWMC) Manual write of data and manual trigger of the update
  2854. #define AT91C_PWMC_UPDM_MODE1 (0x1 << 16) // (PWMC) Manual write of data and automatic trigger of the update
  2855. #define AT91C_PWMC_UPDM_MODE2 (0x2 << 16) // (PWMC) Automatic write of data and automatic trigger of the update
  2856. // -------- PWMC_UPCR : (PWMC Offset: 0x28) PWMC Update Control Register --------
  2857. #define AT91C_PWMC_UPDULOCK (0x1 << 0) // (PWMC) Synchronized Channels Duty Cycle Update Unlock
  2858. // -------- PWMC_SCUP : (PWMC Offset: 0x2c) PWM Update Period Register --------
  2859. #define AT91C_PWMC_UPR (0xF << 0) // (PWMC) PWM Update Period.
  2860. #define AT91C_PWMC_UPRCNT (0xF << 4) // (PWMC) PWM Update Period Counter.
  2861. // -------- PWMC_SCUPUPD : (PWMC Offset: 0x30) PWM Update Period Update Register --------
  2862. #define AT91C_PWMC_UPVUPDAL (0xF << 0) // (PWMC) PWM Update Period Update.
  2863. // -------- PWMC_IER2 : (PWMC Offset: 0x34) PWMC Interrupt Enable Register --------
  2864. #define AT91C_PWMC_WRDY (0x1 << 0) // (PWMC) PDC Write Ready
  2865. #define AT91C_PWMC_ENDTX (0x1 << 1) // (PWMC) PDC End of TX Buffer
  2866. #define AT91C_PWMC_TXBUFE (0x1 << 2) // (PWMC) PDC End of TX Buffer
  2867. #define AT91C_PWMC_UNRE (0x1 << 3) // (PWMC) PDC End of TX Buffer
  2868. // -------- PWMC_IDR2 : (PWMC Offset: 0x38) PWMC Interrupt Disable Register --------
  2869. // -------- PWMC_IMR2 : (PWMC Offset: 0x3c) PWMC Interrupt Mask Register --------
  2870. // -------- PWMC_ISR2 : (PWMC Offset: 0x40) PWMC Interrupt Status Register --------
  2871. #define AT91C_PWMC_CMPM0 (0x1 << 8) // (PWMC) Comparison x Match
  2872. #define AT91C_PWMC_CMPM1 (0x1 << 9) // (PWMC) Comparison x Match
  2873. #define AT91C_PWMC_CMPM2 (0x1 << 10) // (PWMC) Comparison x Match
  2874. #define AT91C_PWMC_CMPM3 (0x1 << 11) // (PWMC) Comparison x Match
  2875. #define AT91C_PWMC_CMPM4 (0x1 << 12) // (PWMC) Comparison x Match
  2876. #define AT91C_PWMC_CMPM5 (0x1 << 13) // (PWMC) Comparison x Match
  2877. #define AT91C_PWMC_CMPM6 (0x1 << 14) // (PWMC) Comparison x Match
  2878. #define AT91C_PWMC_CMPM7 (0x1 << 15) // (PWMC) Comparison x Match
  2879. #define AT91C_PWMC_CMPU0 (0x1 << 16) // (PWMC) Comparison x Update
  2880. #define AT91C_PWMC_CMPU1 (0x1 << 17) // (PWMC) Comparison x Update
  2881. #define AT91C_PWMC_CMPU2 (0x1 << 18) // (PWMC) Comparison x Update
  2882. #define AT91C_PWMC_CMPU3 (0x1 << 19) // (PWMC) Comparison x Update
  2883. #define AT91C_PWMC_CMPU4 (0x1 << 20) // (PWMC) Comparison x Update
  2884. #define AT91C_PWMC_CMPU5 (0x1 << 21) // (PWMC) Comparison x Update
  2885. #define AT91C_PWMC_CMPU6 (0x1 << 22) // (PWMC) Comparison x Update
  2886. #define AT91C_PWMC_CMPU7 (0x1 << 23) // (PWMC) Comparison x Update
  2887. // -------- PWMC_OOV : (PWMC Offset: 0x44) PWM Output Override Value Register --------
  2888. #define AT91C_PWMC_OOVH0 (0x1 << 0) // (PWMC) Output Override Value for PWMH output of the channel 0
  2889. #define AT91C_PWMC_OOVH1 (0x1 << 1) // (PWMC) Output Override Value for PWMH output of the channel 1
  2890. #define AT91C_PWMC_OOVH2 (0x1 << 2) // (PWMC) Output Override Value for PWMH output of the channel 2
  2891. #define AT91C_PWMC_OOVH3 (0x1 << 3) // (PWMC) Output Override Value for PWMH output of the channel 3
  2892. #define AT91C_PWMC_OOVH4 (0x1 << 4) // (PWMC) Output Override Value for PWMH output of the channel 4
  2893. #define AT91C_PWMC_OOVH5 (0x1 << 5) // (PWMC) Output Override Value for PWMH output of the channel 5
  2894. #define AT91C_PWMC_OOVH6 (0x1 << 6) // (PWMC) Output Override Value for PWMH output of the channel 6
  2895. #define AT91C_PWMC_OOVH7 (0x1 << 7) // (PWMC) Output Override Value for PWMH output of the channel 7
  2896. #define AT91C_PWMC_OOVH8 (0x1 << 8) // (PWMC) Output Override Value for PWMH output of the channel 8
  2897. #define AT91C_PWMC_OOVH9 (0x1 << 9) // (PWMC) Output Override Value for PWMH output of the channel 9
  2898. #define AT91C_PWMC_OOVH10 (0x1 << 10) // (PWMC) Output Override Value for PWMH output of the channel 10
  2899. #define AT91C_PWMC_OOVH11 (0x1 << 11) // (PWMC) Output Override Value for PWMH output of the channel 11
  2900. #define AT91C_PWMC_OOVH12 (0x1 << 12) // (PWMC) Output Override Value for PWMH output of the channel 12
  2901. #define AT91C_PWMC_OOVH13 (0x1 << 13) // (PWMC) Output Override Value for PWMH output of the channel 13
  2902. #define AT91C_PWMC_OOVH14 (0x1 << 14) // (PWMC) Output Override Value for PWMH output of the channel 14
  2903. #define AT91C_PWMC_OOVH15 (0x1 << 15) // (PWMC) Output Override Value for PWMH output of the channel 15
  2904. #define AT91C_PWMC_OOVL0 (0x1 << 16) // (PWMC) Output Override Value for PWML output of the channel 0
  2905. #define AT91C_PWMC_OOVL1 (0x1 << 17) // (PWMC) Output Override Value for PWML output of the channel 1
  2906. #define AT91C_PWMC_OOVL2 (0x1 << 18) // (PWMC) Output Override Value for PWML output of the channel 2
  2907. #define AT91C_PWMC_OOVL3 (0x1 << 19) // (PWMC) Output Override Value for PWML output of the channel 3
  2908. #define AT91C_PWMC_OOVL4 (0x1 << 20) // (PWMC) Output Override Value for PWML output of the channel 4
  2909. #define AT91C_PWMC_OOVL5 (0x1 << 21) // (PWMC) Output Override Value for PWML output of the channel 5
  2910. #define AT91C_PWMC_OOVL6 (0x1 << 22) // (PWMC) Output Override Value for PWML output of the channel 6
  2911. #define AT91C_PWMC_OOVL7 (0x1 << 23) // (PWMC) Output Override Value for PWML output of the channel 7
  2912. #define AT91C_PWMC_OOVL8 (0x1 << 24) // (PWMC) Output Override Value for PWML output of the channel 8
  2913. #define AT91C_PWMC_OOVL9 (0x1 << 25) // (PWMC) Output Override Value for PWML output of the channel 9
  2914. #define AT91C_PWMC_OOVL10 (0x1 << 26) // (PWMC) Output Override Value for PWML output of the channel 10
  2915. #define AT91C_PWMC_OOVL11 (0x1 << 27) // (PWMC) Output Override Value for PWML output of the channel 11
  2916. #define AT91C_PWMC_OOVL12 (0x1 << 28) // (PWMC) Output Override Value for PWML output of the channel 12
  2917. #define AT91C_PWMC_OOVL13 (0x1 << 29) // (PWMC) Output Override Value for PWML output of the channel 13
  2918. #define AT91C_PWMC_OOVL14 (0x1 << 30) // (PWMC) Output Override Value for PWML output of the channel 14
  2919. #define AT91C_PWMC_OOVL15 (0x1 << 31) // (PWMC) Output Override Value for PWML output of the channel 15
  2920. // -------- PWMC_OS : (PWMC Offset: 0x48) PWM Output Selection Register --------
  2921. #define AT91C_PWMC_OSH0 (0x1 << 0) // (PWMC) Output Selection for PWMH output of the channel 0
  2922. #define AT91C_PWMC_OSH1 (0x1 << 1) // (PWMC) Output Selection for PWMH output of the channel 1
  2923. #define AT91C_PWMC_OSH2 (0x1 << 2) // (PWMC) Output Selection for PWMH output of the channel 2
  2924. #define AT91C_PWMC_OSH3 (0x1 << 3) // (PWMC) Output Selection for PWMH output of the channel 3
  2925. #define AT91C_PWMC_OSH4 (0x1 << 4) // (PWMC) Output Selection for PWMH output of the channel 4
  2926. #define AT91C_PWMC_OSH5 (0x1 << 5) // (PWMC) Output Selection for PWMH output of the channel 5
  2927. #define AT91C_PWMC_OSH6 (0x1 << 6) // (PWMC) Output Selection for PWMH output of the channel 6
  2928. #define AT91C_PWMC_OSH7 (0x1 << 7) // (PWMC) Output Selection for PWMH output of the channel 7
  2929. #define AT91C_PWMC_OSH8 (0x1 << 8) // (PWMC) Output Selection for PWMH output of the channel 8
  2930. #define AT91C_PWMC_OSH9 (0x1 << 9) // (PWMC) Output Selection for PWMH output of the channel 9
  2931. #define AT91C_PWMC_OSH10 (0x1 << 10) // (PWMC) Output Selection for PWMH output of the channel 10
  2932. #define AT91C_PWMC_OSH11 (0x1 << 11) // (PWMC) Output Selection for PWMH output of the channel 11
  2933. #define AT91C_PWMC_OSH12 (0x1 << 12) // (PWMC) Output Selection for PWMH output of the channel 12
  2934. #define AT91C_PWMC_OSH13 (0x1 << 13) // (PWMC) Output Selection for PWMH output of the channel 13
  2935. #define AT91C_PWMC_OSH14 (0x1 << 14) // (PWMC) Output Selection for PWMH output of the channel 14
  2936. #define AT91C_PWMC_OSH15 (0x1 << 15) // (PWMC) Output Selection for PWMH output of the channel 15
  2937. #define AT91C_PWMC_OSL0 (0x1 << 16) // (PWMC) Output Selection for PWML output of the channel 0
  2938. #define AT91C_PWMC_OSL1 (0x1 << 17) // (PWMC) Output Selection for PWML output of the channel 1
  2939. #define AT91C_PWMC_OSL2 (0x1 << 18) // (PWMC) Output Selection for PWML output of the channel 2
  2940. #define AT91C_PWMC_OSL3 (0x1 << 19) // (PWMC) Output Selection for PWML output of the channel 3
  2941. #define AT91C_PWMC_OSL4 (0x1 << 20) // (PWMC) Output Selection for PWML output of the channel 4
  2942. #define AT91C_PWMC_OSL5 (0x1 << 21) // (PWMC) Output Selection for PWML output of the channel 5
  2943. #define AT91C_PWMC_OSL6 (0x1 << 22) // (PWMC) Output Selection for PWML output of the channel 6
  2944. #define AT91C_PWMC_OSL7 (0x1 << 23) // (PWMC) Output Selection for PWML output of the channel 7
  2945. #define AT91C_PWMC_OSL8 (0x1 << 24) // (PWMC) Output Selection for PWML output of the channel 8
  2946. #define AT91C_PWMC_OSL9 (0x1 << 25) // (PWMC) Output Selection for PWML output of the channel 9
  2947. #define AT91C_PWMC_OSL10 (0x1 << 26) // (PWMC) Output Selection for PWML output of the channel 10
  2948. #define AT91C_PWMC_OSL11 (0x1 << 27) // (PWMC) Output Selection for PWML output of the channel 11
  2949. #define AT91C_PWMC_OSL12 (0x1 << 28) // (PWMC) Output Selection for PWML output of the channel 12
  2950. #define AT91C_PWMC_OSL13 (0x1 << 29) // (PWMC) Output Selection for PWML output of the channel 13
  2951. #define AT91C_PWMC_OSL14 (0x1 << 30) // (PWMC) Output Selection for PWML output of the channel 14
  2952. #define AT91C_PWMC_OSL15 (0x1 << 31) // (PWMC) Output Selection for PWML output of the channel 15
  2953. // -------- PWMC_OSS : (PWMC Offset: 0x4c) PWM Output Selection Set Register --------
  2954. #define AT91C_PWMC_OSSH0 (0x1 << 0) // (PWMC) Output Selection Set for PWMH output of the channel 0
  2955. #define AT91C_PWMC_OSSH1 (0x1 << 1) // (PWMC) Output Selection Set for PWMH output of the channel 1
  2956. #define AT91C_PWMC_OSSH2 (0x1 << 2) // (PWMC) Output Selection Set for PWMH output of the channel 2
  2957. #define AT91C_PWMC_OSSH3 (0x1 << 3) // (PWMC) Output Selection Set for PWMH output of the channel 3
  2958. #define AT91C_PWMC_OSSH4 (0x1 << 4) // (PWMC) Output Selection Set for PWMH output of the channel 4
  2959. #define AT91C_PWMC_OSSH5 (0x1 << 5) // (PWMC) Output Selection Set for PWMH output of the channel 5
  2960. #define AT91C_PWMC_OSSH6 (0x1 << 6) // (PWMC) Output Selection Set for PWMH output of the channel 6
  2961. #define AT91C_PWMC_OSSH7 (0x1 << 7) // (PWMC) Output Selection Set for PWMH output of the channel 7
  2962. #define AT91C_PWMC_OSSH8 (0x1 << 8) // (PWMC) Output Selection Set for PWMH output of the channel 8
  2963. #define AT91C_PWMC_OSSH9 (0x1 << 9) // (PWMC) Output Selection Set for PWMH output of the channel 9
  2964. #define AT91C_PWMC_OSSH10 (0x1 << 10) // (PWMC) Output Selection Set for PWMH output of the channel 10
  2965. #define AT91C_PWMC_OSSH11 (0x1 << 11) // (PWMC) Output Selection Set for PWMH output of the channel 11
  2966. #define AT91C_PWMC_OSSH12 (0x1 << 12) // (PWMC) Output Selection Set for PWMH output of the channel 12
  2967. #define AT91C_PWMC_OSSH13 (0x1 << 13) // (PWMC) Output Selection Set for PWMH output of the channel 13
  2968. #define AT91C_PWMC_OSSH14 (0x1 << 14) // (PWMC) Output Selection Set for PWMH output of the channel 14
  2969. #define AT91C_PWMC_OSSH15 (0x1 << 15) // (PWMC) Output Selection Set for PWMH output of the channel 15
  2970. #define AT91C_PWMC_OSSL0 (0x1 << 16) // (PWMC) Output Selection Set for PWML output of the channel 0
  2971. #define AT91C_PWMC_OSSL1 (0x1 << 17) // (PWMC) Output Selection Set for PWML output of the channel 1
  2972. #define AT91C_PWMC_OSSL2 (0x1 << 18) // (PWMC) Output Selection Set for PWML output of the channel 2
  2973. #define AT91C_PWMC_OSSL3 (0x1 << 19) // (PWMC) Output Selection Set for PWML output of the channel 3
  2974. #define AT91C_PWMC_OSSL4 (0x1 << 20) // (PWMC) Output Selection Set for PWML output of the channel 4
  2975. #define AT91C_PWMC_OSSL5 (0x1 << 21) // (PWMC) Output Selection Set for PWML output of the channel 5
  2976. #define AT91C_PWMC_OSSL6 (0x1 << 22) // (PWMC) Output Selection Set for PWML output of the channel 6
  2977. #define AT91C_PWMC_OSSL7 (0x1 << 23) // (PWMC) Output Selection Set for PWML output of the channel 7
  2978. #define AT91C_PWMC_OSSL8 (0x1 << 24) // (PWMC) Output Selection Set for PWML output of the channel 8
  2979. #define AT91C_PWMC_OSSL9 (0x1 << 25) // (PWMC) Output Selection Set for PWML output of the channel 9
  2980. #define AT91C_PWMC_OSSL10 (0x1 << 26) // (PWMC) Output Selection Set for PWML output of the channel 10
  2981. #define AT91C_PWMC_OSSL11 (0x1 << 27) // (PWMC) Output Selection Set for PWML output of the channel 11
  2982. #define AT91C_PWMC_OSSL12 (0x1 << 28) // (PWMC) Output Selection Set for PWML output of the channel 12
  2983. #define AT91C_PWMC_OSSL13 (0x1 << 29) // (PWMC) Output Selection Set for PWML output of the channel 13
  2984. #define AT91C_PWMC_OSSL14 (0x1 << 30) // (PWMC) Output Selection Set for PWML output of the channel 14
  2985. #define AT91C_PWMC_OSSL15 (0x1 << 31) // (PWMC) Output Selection Set for PWML output of the channel 15
  2986. // -------- PWMC_OSC : (PWMC Offset: 0x50) PWM Output Selection Clear Register --------
  2987. #define AT91C_PWMC_OSCH0 (0x1 << 0) // (PWMC) Output Selection Clear for PWMH output of the channel 0
  2988. #define AT91C_PWMC_OSCH1 (0x1 << 1) // (PWMC) Output Selection Clear for PWMH output of the channel 1
  2989. #define AT91C_PWMC_OSCH2 (0x1 << 2) // (PWMC) Output Selection Clear for PWMH output of the channel 2
  2990. #define AT91C_PWMC_OSCH3 (0x1 << 3) // (PWMC) Output Selection Clear for PWMH output of the channel 3
  2991. #define AT91C_PWMC_OSCH4 (0x1 << 4) // (PWMC) Output Selection Clear for PWMH output of the channel 4
  2992. #define AT91C_PWMC_OSCH5 (0x1 << 5) // (PWMC) Output Selection Clear for PWMH output of the channel 5
  2993. #define AT91C_PWMC_OSCH6 (0x1 << 6) // (PWMC) Output Selection Clear for PWMH output of the channel 6
  2994. #define AT91C_PWMC_OSCH7 (0x1 << 7) // (PWMC) Output Selection Clear for PWMH output of the channel 7
  2995. #define AT91C_PWMC_OSCH8 (0x1 << 8) // (PWMC) Output Selection Clear for PWMH output of the channel 8
  2996. #define AT91C_PWMC_OSCH9 (0x1 << 9) // (PWMC) Output Selection Clear for PWMH output of the channel 9
  2997. #define AT91C_PWMC_OSCH10 (0x1 << 10) // (PWMC) Output Selection Clear for PWMH output of the channel 10
  2998. #define AT91C_PWMC_OSCH11 (0x1 << 11) // (PWMC) Output Selection Clear for PWMH output of the channel 11
  2999. #define AT91C_PWMC_OSCH12 (0x1 << 12) // (PWMC) Output Selection Clear for PWMH output of the channel 12
  3000. #define AT91C_PWMC_OSCH13 (0x1 << 13) // (PWMC) Output Selection Clear for PWMH output of the channel 13
  3001. #define AT91C_PWMC_OSCH14 (0x1 << 14) // (PWMC) Output Selection Clear for PWMH output of the channel 14
  3002. #define AT91C_PWMC_OSCH15 (0x1 << 15) // (PWMC) Output Selection Clear for PWMH output of the channel 15
  3003. #define AT91C_PWMC_OSCL0 (0x1 << 16) // (PWMC) Output Selection Clear for PWML output of the channel 0
  3004. #define AT91C_PWMC_OSCL1 (0x1 << 17) // (PWMC) Output Selection Clear for PWML output of the channel 1
  3005. #define AT91C_PWMC_OSCL2 (0x1 << 18) // (PWMC) Output Selection Clear for PWML output of the channel 2
  3006. #define AT91C_PWMC_OSCL3 (0x1 << 19) // (PWMC) Output Selection Clear for PWML output of the channel 3
  3007. #define AT91C_PWMC_OSCL4 (0x1 << 20) // (PWMC) Output Selection Clear for PWML output of the channel 4
  3008. #define AT91C_PWMC_OSCL5 (0x1 << 21) // (PWMC) Output Selection Clear for PWML output of the channel 5
  3009. #define AT91C_PWMC_OSCL6 (0x1 << 22) // (PWMC) Output Selection Clear for PWML output of the channel 6
  3010. #define AT91C_PWMC_OSCL7 (0x1 << 23) // (PWMC) Output Selection Clear for PWML output of the channel 7
  3011. #define AT91C_PWMC_OSCL8 (0x1 << 24) // (PWMC) Output Selection Clear for PWML output of the channel 8
  3012. #define AT91C_PWMC_OSCL9 (0x1 << 25) // (PWMC) Output Selection Clear for PWML output of the channel 9
  3013. #define AT91C_PWMC_OSCL10 (0x1 << 26) // (PWMC) Output Selection Clear for PWML output of the channel 10
  3014. #define AT91C_PWMC_OSCL11 (0x1 << 27) // (PWMC) Output Selection Clear for PWML output of the channel 11
  3015. #define AT91C_PWMC_OSCL12 (0x1 << 28) // (PWMC) Output Selection Clear for PWML output of the channel 12
  3016. #define AT91C_PWMC_OSCL13 (0x1 << 29) // (PWMC) Output Selection Clear for PWML output of the channel 13
  3017. #define AT91C_PWMC_OSCL14 (0x1 << 30) // (PWMC) Output Selection Clear for PWML output of the channel 14
  3018. #define AT91C_PWMC_OSCL15 (0x1 << 31) // (PWMC) Output Selection Clear for PWML output of the channel 15
  3019. // -------- PWMC_OSSUPD : (PWMC Offset: 0x54) Output Selection Set for PWMH / PWML output of the channel x --------
  3020. #define AT91C_PWMC_OSSUPDH0 (0x1 << 0) // (PWMC) Output Selection Set for PWMH output of the channel 0
  3021. #define AT91C_PWMC_OSSUPDH1 (0x1 << 1) // (PWMC) Output Selection Set for PWMH output of the channel 1
  3022. #define AT91C_PWMC_OSSUPDH2 (0x1 << 2) // (PWMC) Output Selection Set for PWMH output of the channel 2
  3023. #define AT91C_PWMC_OSSUPDH3 (0x1 << 3) // (PWMC) Output Selection Set for PWMH output of the channel 3
  3024. #define AT91C_PWMC_OSSUPDH4 (0x1 << 4) // (PWMC) Output Selection Set for PWMH output of the channel 4
  3025. #define AT91C_PWMC_OSSUPDH5 (0x1 << 5) // (PWMC) Output Selection Set for PWMH output of the channel 5
  3026. #define AT91C_PWMC_OSSUPDH6 (0x1 << 6) // (PWMC) Output Selection Set for PWMH output of the channel 6
  3027. #define AT91C_PWMC_OSSUPDH7 (0x1 << 7) // (PWMC) Output Selection Set for PWMH output of the channel 7
  3028. #define AT91C_PWMC_OSSUPDH8 (0x1 << 8) // (PWMC) Output Selection Set for PWMH output of the channel 8
  3029. #define AT91C_PWMC_OSSUPDH9 (0x1 << 9) // (PWMC) Output Selection Set for PWMH output of the channel 9
  3030. #define AT91C_PWMC_OSSUPDH10 (0x1 << 10) // (PWMC) Output Selection Set for PWMH output of the channel 10
  3031. #define AT91C_PWMC_OSSUPDH11 (0x1 << 11) // (PWMC) Output Selection Set for PWMH output of the channel 11
  3032. #define AT91C_PWMC_OSSUPDH12 (0x1 << 12) // (PWMC) Output Selection Set for PWMH output of the channel 12
  3033. #define AT91C_PWMC_OSSUPDH13 (0x1 << 13) // (PWMC) Output Selection Set for PWMH output of the channel 13
  3034. #define AT91C_PWMC_OSSUPDH14 (0x1 << 14) // (PWMC) Output Selection Set for PWMH output of the channel 14
  3035. #define AT91C_PWMC_OSSUPDH15 (0x1 << 15) // (PWMC) Output Selection Set for PWMH output of the channel 15
  3036. #define AT91C_PWMC_OSSUPDL0 (0x1 << 16) // (PWMC) Output Selection Set for PWML output of the channel 0
  3037. #define AT91C_PWMC_OSSUPDL1 (0x1 << 17) // (PWMC) Output Selection Set for PWML output of the channel 1
  3038. #define AT91C_PWMC_OSSUPDL2 (0x1 << 18) // (PWMC) Output Selection Set for PWML output of the channel 2
  3039. #define AT91C_PWMC_OSSUPDL3 (0x1 << 19) // (PWMC) Output Selection Set for PWML output of the channel 3
  3040. #define AT91C_PWMC_OSSUPDL4 (0x1 << 20) // (PWMC) Output Selection Set for PWML output of the channel 4
  3041. #define AT91C_PWMC_OSSUPDL5 (0x1 << 21) // (PWMC) Output Selection Set for PWML output of the channel 5
  3042. #define AT91C_PWMC_OSSUPDL6 (0x1 << 22) // (PWMC) Output Selection Set for PWML output of the channel 6
  3043. #define AT91C_PWMC_OSSUPDL7 (0x1 << 23) // (PWMC) Output Selection Set for PWML output of the channel 7
  3044. #define AT91C_PWMC_OSSUPDL8 (0x1 << 24) // (PWMC) Output Selection Set for PWML output of the channel 8
  3045. #define AT91C_PWMC_OSSUPDL9 (0x1 << 25) // (PWMC) Output Selection Set for PWML output of the channel 9
  3046. #define AT91C_PWMC_OSSUPDL10 (0x1 << 26) // (PWMC) Output Selection Set for PWML output of the channel 10
  3047. #define AT91C_PWMC_OSSUPDL11 (0x1 << 27) // (PWMC) Output Selection Set for PWML output of the channel 11
  3048. #define AT91C_PWMC_OSSUPDL12 (0x1 << 28) // (PWMC) Output Selection Set for PWML output of the channel 12
  3049. #define AT91C_PWMC_OSSUPDL13 (0x1 << 29) // (PWMC) Output Selection Set for PWML output of the channel 13
  3050. #define AT91C_PWMC_OSSUPDL14 (0x1 << 30) // (PWMC) Output Selection Set for PWML output of the channel 14
  3051. #define AT91C_PWMC_OSSUPDL15 (0x1 << 31) // (PWMC) Output Selection Set for PWML output of the channel 15
  3052. // -------- PWMC_OSCUPD : (PWMC Offset: 0x58) Output Selection Clear for PWMH / PWML output of the channel x --------
  3053. #define AT91C_PWMC_OSCUPDH0 (0x1 << 0) // (PWMC) Output Selection Clear for PWMH output of the channel 0
  3054. #define AT91C_PWMC_OSCUPDH1 (0x1 << 1) // (PWMC) Output Selection Clear for PWMH output of the channel 1
  3055. #define AT91C_PWMC_OSCUPDH2 (0x1 << 2) // (PWMC) Output Selection Clear for PWMH output of the channel 2
  3056. #define AT91C_PWMC_OSCUPDH3 (0x1 << 3) // (PWMC) Output Selection Clear for PWMH output of the channel 3
  3057. #define AT91C_PWMC_OSCUPDH4 (0x1 << 4) // (PWMC) Output Selection Clear for PWMH output of the channel 4
  3058. #define AT91C_PWMC_OSCUPDH5 (0x1 << 5) // (PWMC) Output Selection Clear for PWMH output of the channel 5
  3059. #define AT91C_PWMC_OSCUPDH6 (0x1 << 6) // (PWMC) Output Selection Clear for PWMH output of the channel 6
  3060. #define AT91C_PWMC_OSCUPDH7 (0x1 << 7) // (PWMC) Output Selection Clear for PWMH output of the channel 7
  3061. #define AT91C_PWMC_OSCUPDH8 (0x1 << 8) // (PWMC) Output Selection Clear for PWMH output of the channel 8
  3062. #define AT91C_PWMC_OSCUPDH9 (0x1 << 9) // (PWMC) Output Selection Clear for PWMH output of the channel 9
  3063. #define AT91C_PWMC_OSCUPDH10 (0x1 << 10) // (PWMC) Output Selection Clear for PWMH output of the channel 10
  3064. #define AT91C_PWMC_OSCUPDH11 (0x1 << 11) // (PWMC) Output Selection Clear for PWMH output of the channel 11
  3065. #define AT91C_PWMC_OSCUPDH12 (0x1 << 12) // (PWMC) Output Selection Clear for PWMH output of the channel 12
  3066. #define AT91C_PWMC_OSCUPDH13 (0x1 << 13) // (PWMC) Output Selection Clear for PWMH output of the channel 13
  3067. #define AT91C_PWMC_OSCUPDH14 (0x1 << 14) // (PWMC) Output Selection Clear for PWMH output of the channel 14
  3068. #define AT91C_PWMC_OSCUPDH15 (0x1 << 15) // (PWMC) Output Selection Clear for PWMH output of the channel 15
  3069. #define AT91C_PWMC_OSCUPDL0 (0x1 << 16) // (PWMC) Output Selection Clear for PWML output of the channel 0
  3070. #define AT91C_PWMC_OSCUPDL1 (0x1 << 17) // (PWMC) Output Selection Clear for PWML output of the channel 1
  3071. #define AT91C_PWMC_OSCUPDL2 (0x1 << 18) // (PWMC) Output Selection Clear for PWML output of the channel 2
  3072. #define AT91C_PWMC_OSCUPDL3 (0x1 << 19) // (PWMC) Output Selection Clear for PWML output of the channel 3
  3073. #define AT91C_PWMC_OSCUPDL4 (0x1 << 20) // (PWMC) Output Selection Clear for PWML output of the channel 4
  3074. #define AT91C_PWMC_OSCUPDL5 (0x1 << 21) // (PWMC) Output Selection Clear for PWML output of the channel 5
  3075. #define AT91C_PWMC_OSCUPDL6 (0x1 << 22) // (PWMC) Output Selection Clear for PWML output of the channel 6
  3076. #define AT91C_PWMC_OSCUPDL7 (0x1 << 23) // (PWMC) Output Selection Clear for PWML output of the channel 7
  3077. #define AT91C_PWMC_OSCUPDL8 (0x1 << 24) // (PWMC) Output Selection Clear for PWML output of the channel 8
  3078. #define AT91C_PWMC_OSCUPDL9 (0x1 << 25) // (PWMC) Output Selection Clear for PWML output of the channel 9
  3079. #define AT91C_PWMC_OSCUPDL10 (0x1 << 26) // (PWMC) Output Selection Clear for PWML output of the channel 10
  3080. #define AT91C_PWMC_OSCUPDL11 (0x1 << 27) // (PWMC) Output Selection Clear for PWML output of the channel 11
  3081. #define AT91C_PWMC_OSCUPDL12 (0x1 << 28) // (PWMC) Output Selection Clear for PWML output of the channel 12
  3082. #define AT91C_PWMC_OSCUPDL13 (0x1 << 29) // (PWMC) Output Selection Clear for PWML output of the channel 13
  3083. #define AT91C_PWMC_OSCUPDL14 (0x1 << 30) // (PWMC) Output Selection Clear for PWML output of the channel 14
  3084. #define AT91C_PWMC_OSCUPDL15 (0x1 << 31) // (PWMC) Output Selection Clear for PWML output of the channel 15
  3085. // -------- PWMC_FMR : (PWMC Offset: 0x5c) PWM Fault Mode Register --------
  3086. #define AT91C_PWMC_FPOL0 (0x1 << 0) // (PWMC) Fault Polarity on fault input 0
  3087. #define AT91C_PWMC_FPOL1 (0x1 << 1) // (PWMC) Fault Polarity on fault input 1
  3088. #define AT91C_PWMC_FPOL2 (0x1 << 2) // (PWMC) Fault Polarity on fault input 2
  3089. #define AT91C_PWMC_FPOL3 (0x1 << 3) // (PWMC) Fault Polarity on fault input 3
  3090. #define AT91C_PWMC_FPOL4 (0x1 << 4) // (PWMC) Fault Polarity on fault input 4
  3091. #define AT91C_PWMC_FPOL5 (0x1 << 5) // (PWMC) Fault Polarity on fault input 5
  3092. #define AT91C_PWMC_FPOL6 (0x1 << 6) // (PWMC) Fault Polarity on fault input 6
  3093. #define AT91C_PWMC_FPOL7 (0x1 << 7) // (PWMC) Fault Polarity on fault input 7
  3094. #define AT91C_PWMC_FMOD0 (0x1 << 8) // (PWMC) Fault Activation Mode on fault input 0
  3095. #define AT91C_PWMC_FMOD1 (0x1 << 9) // (PWMC) Fault Activation Mode on fault input 1
  3096. #define AT91C_PWMC_FMOD2 (0x1 << 10) // (PWMC) Fault Activation Mode on fault input 2
  3097. #define AT91C_PWMC_FMOD3 (0x1 << 11) // (PWMC) Fault Activation Mode on fault input 3
  3098. #define AT91C_PWMC_FMOD4 (0x1 << 12) // (PWMC) Fault Activation Mode on fault input 4
  3099. #define AT91C_PWMC_FMOD5 (0x1 << 13) // (PWMC) Fault Activation Mode on fault input 5
  3100. #define AT91C_PWMC_FMOD6 (0x1 << 14) // (PWMC) Fault Activation Mode on fault input 6
  3101. #define AT91C_PWMC_FMOD7 (0x1 << 15) // (PWMC) Fault Activation Mode on fault input 7
  3102. #define AT91C_PWMC_FFIL00 (0x1 << 16) // (PWMC) Fault Filtering on fault input 0
  3103. #define AT91C_PWMC_FFIL01 (0x1 << 17) // (PWMC) Fault Filtering on fault input 1
  3104. #define AT91C_PWMC_FFIL02 (0x1 << 18) // (PWMC) Fault Filtering on fault input 2
  3105. #define AT91C_PWMC_FFIL03 (0x1 << 19) // (PWMC) Fault Filtering on fault input 3
  3106. #define AT91C_PWMC_FFIL04 (0x1 << 20) // (PWMC) Fault Filtering on fault input 4
  3107. #define AT91C_PWMC_FFIL05 (0x1 << 21) // (PWMC) Fault Filtering on fault input 5
  3108. #define AT91C_PWMC_FFIL06 (0x1 << 22) // (PWMC) Fault Filtering on fault input 6
  3109. #define AT91C_PWMC_FFIL07 (0x1 << 23) // (PWMC) Fault Filtering on fault input 7
  3110. // -------- PWMC_FSR : (PWMC Offset: 0x60) Fault Input x Value --------
  3111. #define AT91C_PWMC_FIV0 (0x1 << 0) // (PWMC) Fault Input 0 Value
  3112. #define AT91C_PWMC_FIV1 (0x1 << 1) // (PWMC) Fault Input 1 Value
  3113. #define AT91C_PWMC_FIV2 (0x1 << 2) // (PWMC) Fault Input 2 Value
  3114. #define AT91C_PWMC_FIV3 (0x1 << 3) // (PWMC) Fault Input 3 Value
  3115. #define AT91C_PWMC_FIV4 (0x1 << 4) // (PWMC) Fault Input 4 Value
  3116. #define AT91C_PWMC_FIV5 (0x1 << 5) // (PWMC) Fault Input 5 Value
  3117. #define AT91C_PWMC_FIV6 (0x1 << 6) // (PWMC) Fault Input 6 Value
  3118. #define AT91C_PWMC_FIV7 (0x1 << 7) // (PWMC) Fault Input 7 Value
  3119. #define AT91C_PWMC_FS0 (0x1 << 8) // (PWMC) Fault 0 Status
  3120. #define AT91C_PWMC_FS1 (0x1 << 9) // (PWMC) Fault 1 Status
  3121. #define AT91C_PWMC_FS2 (0x1 << 10) // (PWMC) Fault 2 Status
  3122. #define AT91C_PWMC_FS3 (0x1 << 11) // (PWMC) Fault 3 Status
  3123. #define AT91C_PWMC_FS4 (0x1 << 12) // (PWMC) Fault 4 Status
  3124. #define AT91C_PWMC_FS5 (0x1 << 13) // (PWMC) Fault 5 Status
  3125. #define AT91C_PWMC_FS6 (0x1 << 14) // (PWMC) Fault 6 Status
  3126. #define AT91C_PWMC_FS7 (0x1 << 15) // (PWMC) Fault 7 Status
  3127. // -------- PWMC_FCR : (PWMC Offset: 0x64) Fault y Clear --------
  3128. #define AT91C_PWMC_FCLR0 (0x1 << 0) // (PWMC) Fault 0 Clear
  3129. #define AT91C_PWMC_FCLR1 (0x1 << 1) // (PWMC) Fault 1 Clear
  3130. #define AT91C_PWMC_FCLR2 (0x1 << 2) // (PWMC) Fault 2 Clear
  3131. #define AT91C_PWMC_FCLR3 (0x1 << 3) // (PWMC) Fault 3 Clear
  3132. #define AT91C_PWMC_FCLR4 (0x1 << 4) // (PWMC) Fault 4 Clear
  3133. #define AT91C_PWMC_FCLR5 (0x1 << 5) // (PWMC) Fault 5 Clear
  3134. #define AT91C_PWMC_FCLR6 (0x1 << 6) // (PWMC) Fault 6 Clear
  3135. #define AT91C_PWMC_FCLR7 (0x1 << 7) // (PWMC) Fault 7 Clear
  3136. // -------- PWMC_FPV : (PWMC Offset: 0x68) PWM Fault Protection Value --------
  3137. #define AT91C_PWMC_FPVH0 (0x1 << 0) // (PWMC) Fault Protection Value for PWMH output on channel 0
  3138. #define AT91C_PWMC_FPVH1 (0x1 << 1) // (PWMC) Fault Protection Value for PWMH output on channel 1
  3139. #define AT91C_PWMC_FPVH2 (0x1 << 2) // (PWMC) Fault Protection Value for PWMH output on channel 2
  3140. #define AT91C_PWMC_FPVH3 (0x1 << 3) // (PWMC) Fault Protection Value for PWMH output on channel 3
  3141. #define AT91C_PWMC_FPVH4 (0x1 << 4) // (PWMC) Fault Protection Value for PWMH output on channel 4
  3142. #define AT91C_PWMC_FPVH5 (0x1 << 5) // (PWMC) Fault Protection Value for PWMH output on channel 5
  3143. #define AT91C_PWMC_FPVH6 (0x1 << 6) // (PWMC) Fault Protection Value for PWMH output on channel 6
  3144. #define AT91C_PWMC_FPVH7 (0x1 << 7) // (PWMC) Fault Protection Value for PWMH output on channel 7
  3145. #define AT91C_PWMC_FPVL0 (0x1 << 16) // (PWMC) Fault Protection Value for PWML output on channel 0
  3146. #define AT91C_PWMC_FPVL1 (0x1 << 17) // (PWMC) Fault Protection Value for PWML output on channel 1
  3147. #define AT91C_PWMC_FPVL2 (0x1 << 18) // (PWMC) Fault Protection Value for PWML output on channel 2
  3148. #define AT91C_PWMC_FPVL3 (0x1 << 19) // (PWMC) Fault Protection Value for PWML output on channel 3
  3149. #define AT91C_PWMC_FPVL4 (0x1 << 20) // (PWMC) Fault Protection Value for PWML output on channel 4
  3150. #define AT91C_PWMC_FPVL5 (0x1 << 21) // (PWMC) Fault Protection Value for PWML output on channel 5
  3151. #define AT91C_PWMC_FPVL6 (0x1 << 22) // (PWMC) Fault Protection Value for PWML output on channel 6
  3152. #define AT91C_PWMC_FPVL7 (0x1 << 23) // (PWMC) Fault Protection Value for PWML output on channel 7
  3153. // -------- PWMC_FPER1 : (PWMC Offset: 0x6c) PWM Fault Protection Enable Register 1 --------
  3154. #define AT91C_PWMC_FPE0 (0xFF << 0) // (PWMC) Fault Protection Enable with Fault Input y for PWM channel 0
  3155. #define AT91C_PWMC_FPE1 (0xFF << 8) // (PWMC) Fault Protection Enable with Fault Input y for PWM channel 1
  3156. #define AT91C_PWMC_FPE2 (0xFF << 16) // (PWMC) Fault Protection Enable with Fault Input y for PWM channel 2
  3157. #define AT91C_PWMC_FPE3 (0xFF << 24) // (PWMC) Fault Protection Enable with Fault Input y for PWM channel 3
  3158. // -------- PWMC_FPER2 : (PWMC Offset: 0x70) PWM Fault Protection Enable Register 2 --------
  3159. #define AT91C_PWMC_FPE4 (0xFF << 0) // (PWMC) Fault Protection Enable with Fault Input y for PWM channel 4
  3160. #define AT91C_PWMC_FPE5 (0xFF << 8) // (PWMC) Fault Protection Enable with Fault Input y for PWM channel 5
  3161. #define AT91C_PWMC_FPE6 (0xFF << 16) // (PWMC) Fault Protection Enable with Fault Input y for PWM channel 6
  3162. #define AT91C_PWMC_FPE7 (0xFF << 24) // (PWMC) Fault Protection Enable with Fault Input y for PWM channel 7
  3163. // -------- PWMC_FPER3 : (PWMC Offset: 0x74) PWM Fault Protection Enable Register 3 --------
  3164. #define AT91C_PWMC_FPE8 (0xFF << 0) // (PWMC) Fault Protection Enable with Fault Input y for PWM channel 8
  3165. #define AT91C_PWMC_FPE9 (0xFF << 8) // (PWMC) Fault Protection Enable with Fault Input y for PWM channel 9
  3166. #define AT91C_PWMC_FPE10 (0xFF << 16) // (PWMC) Fault Protection Enable with Fault Input y for PWM channel 10
  3167. #define AT91C_PWMC_FPE11 (0xFF << 24) // (PWMC) Fault Protection Enable with Fault Input y for PWM channel 11
  3168. // -------- PWMC_FPER4 : (PWMC Offset: 0x78) PWM Fault Protection Enable Register 4 --------
  3169. #define AT91C_PWMC_FPE12 (0xFF << 0) // (PWMC) Fault Protection Enable with Fault Input y for PWM channel 12
  3170. #define AT91C_PWMC_FPE13 (0xFF << 8) // (PWMC) Fault Protection Enable with Fault Input y for PWM channel 13
  3171. #define AT91C_PWMC_FPE14 (0xFF << 16) // (PWMC) Fault Protection Enable with Fault Input y for PWM channel 14
  3172. #define AT91C_PWMC_FPE15 (0xFF << 24) // (PWMC) Fault Protection Enable with Fault Input y for PWM channel 15
  3173. // -------- PWMC_EL0MR : (PWMC Offset: 0x7c) PWM Event Line 0 Mode Register --------
  3174. #define AT91C_PWMC_L0CSEL0 (0x1 << 0) // (PWMC) Comparison 0 Selection
  3175. #define AT91C_PWMC_L0CSEL1 (0x1 << 1) // (PWMC) Comparison 1 Selection
  3176. #define AT91C_PWMC_L0CSEL2 (0x1 << 2) // (PWMC) Comparison 2 Selection
  3177. #define AT91C_PWMC_L0CSEL3 (0x1 << 3) // (PWMC) Comparison 3 Selection
  3178. #define AT91C_PWMC_L0CSEL4 (0x1 << 4) // (PWMC) Comparison 4 Selection
  3179. #define AT91C_PWMC_L0CSEL5 (0x1 << 5) // (PWMC) Comparison 5 Selection
  3180. #define AT91C_PWMC_L0CSEL6 (0x1 << 6) // (PWMC) Comparison 6 Selection
  3181. #define AT91C_PWMC_L0CSEL7 (0x1 << 7) // (PWMC) Comparison 7 Selection
  3182. // -------- PWMC_EL1MR : (PWMC Offset: 0x80) PWM Event Line 1 Mode Register --------
  3183. #define AT91C_PWMC_L1CSEL0 (0x1 << 0) // (PWMC) Comparison 0 Selection
  3184. #define AT91C_PWMC_L1CSEL1 (0x1 << 1) // (PWMC) Comparison 1 Selection
  3185. #define AT91C_PWMC_L1CSEL2 (0x1 << 2) // (PWMC) Comparison 2 Selection
  3186. #define AT91C_PWMC_L1CSEL3 (0x1 << 3) // (PWMC) Comparison 3 Selection
  3187. #define AT91C_PWMC_L1CSEL4 (0x1 << 4) // (PWMC) Comparison 4 Selection
  3188. #define AT91C_PWMC_L1CSEL5 (0x1 << 5) // (PWMC) Comparison 5 Selection
  3189. #define AT91C_PWMC_L1CSEL6 (0x1 << 6) // (PWMC) Comparison 6 Selection
  3190. #define AT91C_PWMC_L1CSEL7 (0x1 << 7) // (PWMC) Comparison 7 Selection
  3191. // -------- PWMC_EL2MR : (PWMC Offset: 0x84) PWM Event line 2 Mode Register --------
  3192. #define AT91C_PWMC_L2CSEL0 (0x1 << 0) // (PWMC) Comparison 0 Selection
  3193. #define AT91C_PWMC_L2CSEL1 (0x1 << 1) // (PWMC) Comparison 1 Selection
  3194. #define AT91C_PWMC_L2CSEL2 (0x1 << 2) // (PWMC) Comparison 2 Selection
  3195. #define AT91C_PWMC_L2CSEL3 (0x1 << 3) // (PWMC) Comparison 3 Selection
  3196. #define AT91C_PWMC_L2CSEL4 (0x1 << 4) // (PWMC) Comparison 4 Selection
  3197. #define AT91C_PWMC_L2CSEL5 (0x1 << 5) // (PWMC) Comparison 5 Selection
  3198. #define AT91C_PWMC_L2CSEL6 (0x1 << 6) // (PWMC) Comparison 6 Selection
  3199. #define AT91C_PWMC_L2CSEL7 (0x1 << 7) // (PWMC) Comparison 7 Selection
  3200. // -------- PWMC_EL3MR : (PWMC Offset: 0x88) PWM Event line 3 Mode Register --------
  3201. #define AT91C_PWMC_L3CSEL0 (0x1 << 0) // (PWMC) Comparison 0 Selection
  3202. #define AT91C_PWMC_L3CSEL1 (0x1 << 1) // (PWMC) Comparison 1 Selection
  3203. #define AT91C_PWMC_L3CSEL2 (0x1 << 2) // (PWMC) Comparison 2 Selection
  3204. #define AT91C_PWMC_L3CSEL3 (0x1 << 3) // (PWMC) Comparison 3 Selection
  3205. #define AT91C_PWMC_L3CSEL4 (0x1 << 4) // (PWMC) Comparison 4 Selection
  3206. #define AT91C_PWMC_L3CSEL5 (0x1 << 5) // (PWMC) Comparison 5 Selection
  3207. #define AT91C_PWMC_L3CSEL6 (0x1 << 6) // (PWMC) Comparison 6 Selection
  3208. #define AT91C_PWMC_L3CSEL7 (0x1 << 7) // (PWMC) Comparison 7 Selection
  3209. // -------- PWMC_EL4MR : (PWMC Offset: 0x8c) PWM Event line 4 Mode Register --------
  3210. #define AT91C_PWMC_L4CSEL0 (0x1 << 0) // (PWMC) Comparison 0 Selection
  3211. #define AT91C_PWMC_L4CSEL1 (0x1 << 1) // (PWMC) Comparison 1 Selection
  3212. #define AT91C_PWMC_L4CSEL2 (0x1 << 2) // (PWMC) Comparison 2 Selection
  3213. #define AT91C_PWMC_L4CSEL3 (0x1 << 3) // (PWMC) Comparison 3 Selection
  3214. #define AT91C_PWMC_L4CSEL4 (0x1 << 4) // (PWMC) Comparison 4 Selection
  3215. #define AT91C_PWMC_L4CSEL5 (0x1 << 5) // (PWMC) Comparison 5 Selection
  3216. #define AT91C_PWMC_L4CSEL6 (0x1 << 6) // (PWMC) Comparison 6 Selection
  3217. #define AT91C_PWMC_L4CSEL7 (0x1 << 7) // (PWMC) Comparison 7 Selection
  3218. // -------- PWMC_EL5MR : (PWMC Offset: 0x90) PWM Event line 5 Mode Register --------
  3219. #define AT91C_PWMC_L5CSEL0 (0x1 << 0) // (PWMC) Comparison 0 Selection
  3220. #define AT91C_PWMC_L5CSEL1 (0x1 << 1) // (PWMC) Comparison 1 Selection
  3221. #define AT91C_PWMC_L5CSEL2 (0x1 << 2) // (PWMC) Comparison 2 Selection
  3222. #define AT91C_PWMC_L5CSEL3 (0x1 << 3) // (PWMC) Comparison 3 Selection
  3223. #define AT91C_PWMC_L5CSEL4 (0x1 << 4) // (PWMC) Comparison 4 Selection
  3224. #define AT91C_PWMC_L5CSEL5 (0x1 << 5) // (PWMC) Comparison 5 Selection
  3225. #define AT91C_PWMC_L5CSEL6 (0x1 << 6) // (PWMC) Comparison 6 Selection
  3226. #define AT91C_PWMC_L5CSEL7 (0x1 << 7) // (PWMC) Comparison 7 Selection
  3227. // -------- PWMC_EL6MR : (PWMC Offset: 0x94) PWM Event line 6 Mode Register --------
  3228. #define AT91C_PWMC_L6CSEL0 (0x1 << 0) // (PWMC) Comparison 0 Selection
  3229. #define AT91C_PWMC_L6CSEL1 (0x1 << 1) // (PWMC) Comparison 1 Selection
  3230. #define AT91C_PWMC_L6CSEL2 (0x1 << 2) // (PWMC) Comparison 2 Selection
  3231. #define AT91C_PWMC_L6CSEL3 (0x1 << 3) // (PWMC) Comparison 3 Selection
  3232. #define AT91C_PWMC_L6CSEL4 (0x1 << 4) // (PWMC) Comparison 4 Selection
  3233. #define AT91C_PWMC_L6CSEL5 (0x1 << 5) // (PWMC) Comparison 5 Selection
  3234. #define AT91C_PWMC_L6CSEL6 (0x1 << 6) // (PWMC) Comparison 6 Selection
  3235. #define AT91C_PWMC_L6CSEL7 (0x1 << 7) // (PWMC) Comparison 7 Selection
  3236. // -------- PWMC_EL7MR : (PWMC Offset: 0x98) PWM Event line 7 Mode Register --------
  3237. #define AT91C_PWMC_L7CSEL0 (0x1 << 0) // (PWMC) Comparison 0 Selection
  3238. #define AT91C_PWMC_L7CSEL1 (0x1 << 1) // (PWMC) Comparison 1 Selection
  3239. #define AT91C_PWMC_L7CSEL2 (0x1 << 2) // (PWMC) Comparison 2 Selection
  3240. #define AT91C_PWMC_L7CSEL3 (0x1 << 3) // (PWMC) Comparison 3 Selection
  3241. #define AT91C_PWMC_L7CSEL4 (0x1 << 4) // (PWMC) Comparison 4 Selection
  3242. #define AT91C_PWMC_L7CSEL5 (0x1 << 5) // (PWMC) Comparison 5 Selection
  3243. #define AT91C_PWMC_L7CSEL6 (0x1 << 6) // (PWMC) Comparison 6 Selection
  3244. #define AT91C_PWMC_L7CSEL7 (0x1 << 7) // (PWMC) Comparison 7 Selection
  3245. // -------- PWMC_WPCR : (PWMC Offset: 0xe4) PWM Write Protection Control Register --------
  3246. #define AT91C_PWMC_WPCMD (0x3 << 0) // (PWMC) Write Protection Command
  3247. #define AT91C_PWMC_WPRG0 (0x1 << 2) // (PWMC) Write Protect Register Group 0
  3248. #define AT91C_PWMC_WPRG1 (0x1 << 3) // (PWMC) Write Protect Register Group 1
  3249. #define AT91C_PWMC_WPRG2 (0x1 << 4) // (PWMC) Write Protect Register Group 2
  3250. #define AT91C_PWMC_WPRG3 (0x1 << 5) // (PWMC) Write Protect Register Group 3
  3251. #define AT91C_PWMC_WPRG4 (0x1 << 6) // (PWMC) Write Protect Register Group 4
  3252. #define AT91C_PWMC_WPRG5 (0x1 << 7) // (PWMC) Write Protect Register Group 5
  3253. #define AT91C_PWMC_WPKEY (0xFFFFFF << 8) // (PWMC) Protection Password
  3254. // -------- PWMC_WPVS : (PWMC Offset: 0xe8) Write Protection Status Register --------
  3255. #define AT91C_PWMC_WPSWS0 (0x1 << 0) // (PWMC) Write Protect SW Group 0 Status
  3256. #define AT91C_PWMC_WPSWS1 (0x1 << 1) // (PWMC) Write Protect SW Group 1 Status
  3257. #define AT91C_PWMC_WPSWS2 (0x1 << 2) // (PWMC) Write Protect SW Group 2 Status
  3258. #define AT91C_PWMC_WPSWS3 (0x1 << 3) // (PWMC) Write Protect SW Group 3 Status
  3259. #define AT91C_PWMC_WPSWS4 (0x1 << 4) // (PWMC) Write Protect SW Group 4 Status
  3260. #define AT91C_PWMC_WPSWS5 (0x1 << 5) // (PWMC) Write Protect SW Group 5 Status
  3261. #define AT91C_PWMC_WPVS (0x1 << 7) // (PWMC) Write Protection Enable
  3262. #define AT91C_PWMC_WPHWS0 (0x1 << 8) // (PWMC) Write Protect HW Group 0 Status
  3263. #define AT91C_PWMC_WPHWS1 (0x1 << 9) // (PWMC) Write Protect HW Group 1 Status
  3264. #define AT91C_PWMC_WPHWS2 (0x1 << 10) // (PWMC) Write Protect HW Group 2 Status
  3265. #define AT91C_PWMC_WPHWS3 (0x1 << 11) // (PWMC) Write Protect HW Group 3 Status
  3266. #define AT91C_PWMC_WPHWS4 (0x1 << 12) // (PWMC) Write Protect HW Group 4 Status
  3267. #define AT91C_PWMC_WPHWS5 (0x1 << 13) // (PWMC) Write Protect HW Group 5 Status
  3268. #define AT91C_PWMC_WPVSRC (0xFFFF << 16) // (PWMC) Write Protection Violation Source
  3269. // -------- PWMC_CMP0V : (PWMC Offset: 0x130) PWM Comparison Value 0 Register --------
  3270. #define AT91C_PWMC_CV (0xFFFFFF << 0) // (PWMC) PWM Comparison Value 0.
  3271. #define AT91C_PWMC_CVM (0x1 << 24) // (PWMC) Comparison Value 0 Mode.
  3272. // -------- PWMC_CMP0VUPD : (PWMC Offset: 0x134) PWM Comparison Value 0 Update Register --------
  3273. #define AT91C_PWMC_CVUPD (0xFFFFFF << 0) // (PWMC) PWM Comparison Value Update.
  3274. #define AT91C_PWMC_CVMUPD (0x1 << 24) // (PWMC) Comparison Value Update Mode.
  3275. // -------- PWMC_CMP0M : (PWMC Offset: 0x138) PWM Comparison 0 Mode Register --------
  3276. #define AT91C_PWMC_CEN (0x1 << 0) // (PWMC) Comparison Enable.
  3277. #define AT91C_PWMC_CTR (0xF << 4) // (PWMC) PWM Comparison Trigger.
  3278. #define AT91C_PWMC_CPR (0xF << 8) // (PWMC) PWM Comparison Period.
  3279. #define AT91C_PWMC_CPRCNT (0xF << 12) // (PWMC) PWM Comparison Period Counter.
  3280. #define AT91C_PWMC_CUPR (0xF << 16) // (PWMC) PWM Comparison Update Period.
  3281. #define AT91C_PWMC_CUPRCNT (0xF << 20) // (PWMC) PWM Comparison Update Period Counter.
  3282. // -------- PWMC_CMP0MUPD : (PWMC Offset: 0x13c) PWM Comparison 0 Mode Update Register --------
  3283. #define AT91C_PWMC_CENUPD (0x1 << 0) // (PWMC) Comparison Enable Update.
  3284. #define AT91C_PWMC_CTRUPD (0xF << 4) // (PWMC) PWM Comparison Trigger Update.
  3285. #define AT91C_PWMC_CPRUPD (0xF << 8) // (PWMC) PWM Comparison Period Update.
  3286. #define AT91C_PWMC_CUPRUPD (0xF << 16) // (PWMC) PWM Comparison Update Period Update.
  3287. // -------- PWMC_CMP1V : (PWMC Offset: 0x140) PWM Comparison Value 1 Register --------
  3288. // -------- PWMC_CMP1VUPD : (PWMC Offset: 0x144) PWM Comparison Value 1 Update Register --------
  3289. // -------- PWMC_CMP1M : (PWMC Offset: 0x148) PWM Comparison 1 Mode Register --------
  3290. // -------- PWMC_CMP1MUPD : (PWMC Offset: 0x14c) PWM Comparison 1 Mode Update Register --------
  3291. // -------- PWMC_CMP2V : (PWMC Offset: 0x150) PWM Comparison Value 2 Register --------
  3292. // -------- PWMC_CMP2VUPD : (PWMC Offset: 0x154) PWM Comparison Value 2 Update Register --------
  3293. // -------- PWMC_CMP2M : (PWMC Offset: 0x158) PWM Comparison 2 Mode Register --------
  3294. // -------- PWMC_CMP2MUPD : (PWMC Offset: 0x15c) PWM Comparison 2 Mode Update Register --------
  3295. // -------- PWMC_CMP3V : (PWMC Offset: 0x160) PWM Comparison Value 3 Register --------
  3296. // -------- PWMC_CMP3VUPD : (PWMC Offset: 0x164) PWM Comparison Value 3 Update Register --------
  3297. // -------- PWMC_CMP3M : (PWMC Offset: 0x168) PWM Comparison 3 Mode Register --------
  3298. // -------- PWMC_CMP3MUPD : (PWMC Offset: 0x16c) PWM Comparison 3 Mode Update Register --------
  3299. // -------- PWMC_CMP4V : (PWMC Offset: 0x170) PWM Comparison Value 4 Register --------
  3300. // -------- PWMC_CMP4VUPD : (PWMC Offset: 0x174) PWM Comparison Value 4 Update Register --------
  3301. // -------- PWMC_CMP4M : (PWMC Offset: 0x178) PWM Comparison 4 Mode Register --------
  3302. // -------- PWMC_CMP4MUPD : (PWMC Offset: 0x17c) PWM Comparison 4 Mode Update Register --------
  3303. // -------- PWMC_CMP5V : (PWMC Offset: 0x180) PWM Comparison Value 5 Register --------
  3304. // -------- PWMC_CMP5VUPD : (PWMC Offset: 0x184) PWM Comparison Value 5 Update Register --------
  3305. // -------- PWMC_CMP5M : (PWMC Offset: 0x188) PWM Comparison 5 Mode Register --------
  3306. // -------- PWMC_CMP5MUPD : (PWMC Offset: 0x18c) PWM Comparison 5 Mode Update Register --------
  3307. // -------- PWMC_CMP6V : (PWMC Offset: 0x190) PWM Comparison Value 6 Register --------
  3308. // -------- PWMC_CMP6VUPD : (PWMC Offset: 0x194) PWM Comparison Value 6 Update Register --------
  3309. // -------- PWMC_CMP6M : (PWMC Offset: 0x198) PWM Comparison 6 Mode Register --------
  3310. // -------- PWMC_CMP6MUPD : (PWMC Offset: 0x19c) PWM Comparison 6 Mode Update Register --------
  3311. // -------- PWMC_CMP7V : (PWMC Offset: 0x1a0) PWM Comparison Value 7 Register --------
  3312. // -------- PWMC_CMP7VUPD : (PWMC Offset: 0x1a4) PWM Comparison Value 7 Update Register --------
  3313. // -------- PWMC_CMP7M : (PWMC Offset: 0x1a8) PWM Comparison 7 Mode Register --------
  3314. // -------- PWMC_CMP7MUPD : (PWMC Offset: 0x1ac) PWM Comparison 7 Mode Update Register --------
  3315. // *****************************************************************************
  3316. // SOFTWARE API DEFINITION FOR Serial Parallel Interface
  3317. // *****************************************************************************
  3318. #ifndef __ASSEMBLY__
  3319. #else
  3320. #define SPI_CR (AT91_CAST(AT91_REG *) 0x00000000) // (SPI_CR) Control Register
  3321. #define SPI_MR (AT91_CAST(AT91_REG *) 0x00000004) // (SPI_MR) Mode Register
  3322. #define SPI_RDR (AT91_CAST(AT91_REG *) 0x00000008) // (SPI_RDR) Receive Data Register
  3323. #define SPI_TDR (AT91_CAST(AT91_REG *) 0x0000000C) // (SPI_TDR) Transmit Data Register
  3324. #define SPI_SR (AT91_CAST(AT91_REG *) 0x00000010) // (SPI_SR) Status Register
  3325. #define SPI_IER (AT91_CAST(AT91_REG *) 0x00000014) // (SPI_IER) Interrupt Enable Register
  3326. #define SPI_IDR (AT91_CAST(AT91_REG *) 0x00000018) // (SPI_IDR) Interrupt Disable Register
  3327. #define SPI_IMR (AT91_CAST(AT91_REG *) 0x0000001C) // (SPI_IMR) Interrupt Mask Register
  3328. #define SPI_CSR (AT91_CAST(AT91_REG *) 0x00000030) // (SPI_CSR) Chip Select Register
  3329. #define SPI_ADDRSIZE (AT91_CAST(AT91_REG *) 0x000000EC) // (SPI_ADDRSIZE) SPI ADDRSIZE REGISTER
  3330. #define SPI_IPNAME1 (AT91_CAST(AT91_REG *) 0x000000F0) // (SPI_IPNAME1) SPI IPNAME1 REGISTER
  3331. #define SPI_IPNAME2 (AT91_CAST(AT91_REG *) 0x000000F4) // (SPI_IPNAME2) SPI IPNAME2 REGISTER
  3332. #define SPI_FEATURES (AT91_CAST(AT91_REG *) 0x000000F8) // (SPI_FEATURES) SPI FEATURES REGISTER
  3333. #define SPI_VER (AT91_CAST(AT91_REG *) 0x000000FC) // (SPI_VER) Version Register
  3334. #endif
  3335. // -------- SPI_CR : (SPI Offset: 0x0) SPI Control Register --------
  3336. #define AT91C_SPI_SPIEN (0x1 << 0) // (SPI) SPI Enable
  3337. #define AT91C_SPI_SPIDIS (0x1 << 1) // (SPI) SPI Disable
  3338. #define AT91C_SPI_SWRST (0x1 << 7) // (SPI) SPI Software reset
  3339. #define AT91C_SPI_LASTXFER (0x1 << 24) // (SPI) SPI Last Transfer
  3340. // -------- SPI_MR : (SPI Offset: 0x4) SPI Mode Register --------
  3341. #define AT91C_SPI_MSTR (0x1 << 0) // (SPI) Master/Slave Mode
  3342. #define AT91C_SPI_PS (0x1 << 1) // (SPI) Peripheral Select
  3343. #define AT91C_SPI_PS_FIXED (0x0 << 1) // (SPI) Fixed Peripheral Select
  3344. #define AT91C_SPI_PS_VARIABLE (0x1 << 1) // (SPI) Variable Peripheral Select
  3345. #define AT91C_SPI_PCSDEC (0x1 << 2) // (SPI) Chip Select Decode
  3346. #define AT91C_SPI_FDIV (0x1 << 3) // (SPI) Clock Selection
  3347. #define AT91C_SPI_MODFDIS (0x1 << 4) // (SPI) Mode Fault Detection
  3348. #define AT91C_SPI_LLB (0x1 << 7) // (SPI) Clock Selection
  3349. #define AT91C_SPI_PCS (0xF << 16) // (SPI) Peripheral Chip Select
  3350. #define AT91C_SPI_DLYBCS (0xFF << 24) // (SPI) Delay Between Chip Selects
  3351. // -------- SPI_RDR : (SPI Offset: 0x8) Receive Data Register --------
  3352. #define AT91C_SPI_RD (0xFFFF << 0) // (SPI) Receive Data
  3353. #define AT91C_SPI_RPCS (0xF << 16) // (SPI) Peripheral Chip Select Status
  3354. // -------- SPI_TDR : (SPI Offset: 0xc) Transmit Data Register --------
  3355. #define AT91C_SPI_TD (0xFFFF << 0) // (SPI) Transmit Data
  3356. #define AT91C_SPI_TPCS (0xF << 16) // (SPI) Peripheral Chip Select Status
  3357. // -------- SPI_SR : (SPI Offset: 0x10) Status Register --------
  3358. #define AT91C_SPI_RDRF (0x1 << 0) // (SPI) Receive Data Register Full
  3359. #define AT91C_SPI_TDRE (0x1 << 1) // (SPI) Transmit Data Register Empty
  3360. #define AT91C_SPI_MODF (0x1 << 2) // (SPI) Mode Fault Error
  3361. #define AT91C_SPI_OVRES (0x1 << 3) // (SPI) Overrun Error Status
  3362. #define AT91C_SPI_ENDRX (0x1 << 4) // (SPI) End of Receiver Transfer
  3363. #define AT91C_SPI_ENDTX (0x1 << 5) // (SPI) End of Receiver Transfer
  3364. #define AT91C_SPI_RXBUFF (0x1 << 6) // (SPI) RXBUFF Interrupt
  3365. #define AT91C_SPI_TXBUFE (0x1 << 7) // (SPI) TXBUFE Interrupt
  3366. #define AT91C_SPI_NSSR (0x1 << 8) // (SPI) NSSR Interrupt
  3367. #define AT91C_SPI_TXEMPTY (0x1 << 9) // (SPI) TXEMPTY Interrupt
  3368. #define AT91C_SPI_SPIENS (0x1 << 16) // (SPI) Enable Status
  3369. // -------- SPI_IER : (SPI Offset: 0x14) Interrupt Enable Register --------
  3370. // -------- SPI_IDR : (SPI Offset: 0x18) Interrupt Disable Register --------
  3371. // -------- SPI_IMR : (SPI Offset: 0x1c) Interrupt Mask Register --------
  3372. // -------- SPI_CSR : (SPI Offset: 0x30) Chip Select Register --------
  3373. #define AT91C_SPI_CPOL (0x1 << 0) // (SPI) Clock Polarity
  3374. #define AT91C_SPI_NCPHA (0x1 << 1) // (SPI) Clock Phase
  3375. #define AT91C_SPI_CSNAAT (0x1 << 2) // (SPI) Chip Select Not Active After Transfer (Ignored if CSAAT = 1)
  3376. #define AT91C_SPI_CSAAT (0x1 << 3) // (SPI) Chip Select Active After Transfer
  3377. #define AT91C_SPI_BITS (0xF << 4) // (SPI) Bits Per Transfer
  3378. #define AT91C_SPI_BITS_8 (0x0 << 4) // (SPI) 8 Bits Per transfer
  3379. #define AT91C_SPI_BITS_9 (0x1 << 4) // (SPI) 9 Bits Per transfer
  3380. #define AT91C_SPI_BITS_10 (0x2 << 4) // (SPI) 10 Bits Per transfer
  3381. #define AT91C_SPI_BITS_11 (0x3 << 4) // (SPI) 11 Bits Per transfer
  3382. #define AT91C_SPI_BITS_12 (0x4 << 4) // (SPI) 12 Bits Per transfer
  3383. #define AT91C_SPI_BITS_13 (0x5 << 4) // (SPI) 13 Bits Per transfer
  3384. #define AT91C_SPI_BITS_14 (0x6 << 4) // (SPI) 14 Bits Per transfer
  3385. #define AT91C_SPI_BITS_15 (0x7 << 4) // (SPI) 15 Bits Per transfer
  3386. #define AT91C_SPI_BITS_16 (0x8 << 4) // (SPI) 16 Bits Per transfer
  3387. #define AT91C_SPI_SCBR (0xFF << 8) // (SPI) Serial Clock Baud Rate
  3388. #define AT91C_SPI_DLYBS (0xFF << 16) // (SPI) Serial Clock Baud Rate
  3389. #define AT91C_SPI_DLYBCT (0xFF << 24) // (SPI) Delay Between Consecutive Transfers
  3390. // *****************************************************************************
  3391. // SOFTWARE API DEFINITION FOR UDPHS Enpoint FIFO data register
  3392. // *****************************************************************************
  3393. #ifndef __ASSEMBLY__
  3394. typedef struct _AT91S_UDPHS_EPTFIFO {
  3395. AT91_REG UDPHS_READEPT0[16384]; // FIFO Endpoint Data Register 0
  3396. AT91_REG UDPHS_READEPT1[16384]; // FIFO Endpoint Data Register 1
  3397. AT91_REG UDPHS_READEPT2[16384]; // FIFO Endpoint Data Register 2
  3398. AT91_REG UDPHS_READEPT3[16384]; // FIFO Endpoint Data Register 3
  3399. AT91_REG UDPHS_READEPT4[16384]; // FIFO Endpoint Data Register 4
  3400. AT91_REG UDPHS_READEPT5[16384]; // FIFO Endpoint Data Register 5
  3401. AT91_REG UDPHS_READEPT6[16384]; // FIFO Endpoint Data Register 6
  3402. } AT91S_UDPHS_EPTFIFO, *AT91PS_UDPHS_EPTFIFO;
  3403. #else
  3404. #define UDPHS_READEPT0 (AT91_CAST(AT91_REG *) 0x00000000) // (UDPHS_READEPT0) FIFO Endpoint Data Register 0
  3405. #define UDPHS_READEPT1 (AT91_CAST(AT91_REG *) 0x00010000) // (UDPHS_READEPT1) FIFO Endpoint Data Register 1
  3406. #define UDPHS_READEPT2 (AT91_CAST(AT91_REG *) 0x00020000) // (UDPHS_READEPT2) FIFO Endpoint Data Register 2
  3407. #define UDPHS_READEPT3 (AT91_CAST(AT91_REG *) 0x00030000) // (UDPHS_READEPT3) FIFO Endpoint Data Register 3
  3408. #define UDPHS_READEPT4 (AT91_CAST(AT91_REG *) 0x00040000) // (UDPHS_READEPT4) FIFO Endpoint Data Register 4
  3409. #define UDPHS_READEPT5 (AT91_CAST(AT91_REG *) 0x00050000) // (UDPHS_READEPT5) FIFO Endpoint Data Register 5
  3410. #define UDPHS_READEPT6 (AT91_CAST(AT91_REG *) 0x00060000) // (UDPHS_READEPT6) FIFO Endpoint Data Register 6
  3411. #endif
  3412. // *****************************************************************************
  3413. // SOFTWARE API DEFINITION FOR UDPHS Endpoint struct
  3414. // *****************************************************************************
  3415. #ifndef __ASSEMBLY__
  3416. typedef struct _AT91S_UDPHS_EPT {
  3417. AT91_REG UDPHS_EPTCFG; // UDPHS Endpoint Config Register
  3418. AT91_REG UDPHS_EPTCTLENB; // UDPHS Endpoint Control Enable Register
  3419. AT91_REG UDPHS_EPTCTLDIS; // UDPHS Endpoint Control Disable Register
  3420. AT91_REG UDPHS_EPTCTL; // UDPHS Endpoint Control Register
  3421. AT91_REG Reserved0[1]; //
  3422. AT91_REG UDPHS_EPTSETSTA; // UDPHS Endpoint Set Status Register
  3423. AT91_REG UDPHS_EPTCLRSTA; // UDPHS Endpoint Clear Status Register
  3424. AT91_REG UDPHS_EPTSTA; // UDPHS Endpoint Status Register
  3425. } AT91S_UDPHS_EPT, *AT91PS_UDPHS_EPT;
  3426. #else
  3427. #define UDPHS_EPTCFG (AT91_CAST(AT91_REG *) 0x00000000) // (UDPHS_EPTCFG) UDPHS Endpoint Config Register
  3428. #define UDPHS_EPTCTLENB (AT91_CAST(AT91_REG *) 0x00000004) // (UDPHS_EPTCTLENB) UDPHS Endpoint Control Enable Register
  3429. #define UDPHS_EPTCTLDIS (AT91_CAST(AT91_REG *) 0x00000008) // (UDPHS_EPTCTLDIS) UDPHS Endpoint Control Disable Register
  3430. #define UDPHS_EPTCTL (AT91_CAST(AT91_REG *) 0x0000000C) // (UDPHS_EPTCTL) UDPHS Endpoint Control Register
  3431. #define UDPHS_EPTSETSTA (AT91_CAST(AT91_REG *) 0x00000014) // (UDPHS_EPTSETSTA) UDPHS Endpoint Set Status Register
  3432. #define UDPHS_EPTCLRSTA (AT91_CAST(AT91_REG *) 0x00000018) // (UDPHS_EPTCLRSTA) UDPHS Endpoint Clear Status Register
  3433. #define UDPHS_EPTSTA (AT91_CAST(AT91_REG *) 0x0000001C) // (UDPHS_EPTSTA) UDPHS Endpoint Status Register
  3434. #endif
  3435. // -------- UDPHS_EPTCFG : (UDPHS_EPT Offset: 0x0) UDPHS Endpoint Config Register --------
  3436. #define AT91C_UDPHS_EPT_SIZE (0x7 << 0) // (UDPHS_EPT) Endpoint Size
  3437. #define AT91C_UDPHS_EPT_SIZE_8 (0x0) // (UDPHS_EPT) 8 bytes
  3438. #define AT91C_UDPHS_EPT_SIZE_16 (0x1) // (UDPHS_EPT) 16 bytes
  3439. #define AT91C_UDPHS_EPT_SIZE_32 (0x2) // (UDPHS_EPT) 32 bytes
  3440. #define AT91C_UDPHS_EPT_SIZE_64 (0x3) // (UDPHS_EPT) 64 bytes
  3441. #define AT91C_UDPHS_EPT_SIZE_128 (0x4) // (UDPHS_EPT) 128 bytes
  3442. #define AT91C_UDPHS_EPT_SIZE_256 (0x5) // (UDPHS_EPT) 256 bytes (if possible)
  3443. #define AT91C_UDPHS_EPT_SIZE_512 (0x6) // (UDPHS_EPT) 512 bytes (if possible)
  3444. #define AT91C_UDPHS_EPT_SIZE_1024 (0x7) // (UDPHS_EPT) 1024 bytes (if possible)
  3445. #define AT91C_UDPHS_EPT_DIR (0x1 << 3) // (UDPHS_EPT) Endpoint Direction 0:OUT, 1:IN
  3446. #define AT91C_UDPHS_EPT_DIR_OUT (0x0 << 3) // (UDPHS_EPT) Direction OUT
  3447. #define AT91C_UDPHS_EPT_DIR_IN (0x1 << 3) // (UDPHS_EPT) Direction IN
  3448. #define AT91C_UDPHS_EPT_TYPE (0x3 << 4) // (UDPHS_EPT) Endpoint Type
  3449. #define AT91C_UDPHS_EPT_TYPE_CTL_EPT (0x0 << 4) // (UDPHS_EPT) Control endpoint
  3450. #define AT91C_UDPHS_EPT_TYPE_ISO_EPT (0x1 << 4) // (UDPHS_EPT) Isochronous endpoint
  3451. #define AT91C_UDPHS_EPT_TYPE_BUL_EPT (0x2 << 4) // (UDPHS_EPT) Bulk endpoint
  3452. #define AT91C_UDPHS_EPT_TYPE_INT_EPT (0x3 << 4) // (UDPHS_EPT) Interrupt endpoint
  3453. #define AT91C_UDPHS_BK_NUMBER (0x3 << 6) // (UDPHS_EPT) Number of Banks
  3454. #define AT91C_UDPHS_BK_NUMBER_0 (0x0 << 6) // (UDPHS_EPT) Zero Bank, the EndPoint is not mapped in memory
  3455. #define AT91C_UDPHS_BK_NUMBER_1 (0x1 << 6) // (UDPHS_EPT) One Bank (Bank0)
  3456. #define AT91C_UDPHS_BK_NUMBER_2 (0x2 << 6) // (UDPHS_EPT) Double bank (Ping-Pong : Bank0 / Bank1)
  3457. #define AT91C_UDPHS_BK_NUMBER_3 (0x3 << 6) // (UDPHS_EPT) Triple Bank (Bank0 / Bank1 / Bank2) (if possible)
  3458. #define AT91C_UDPHS_NB_TRANS (0x3 << 8) // (UDPHS_EPT) Number Of Transaction per Micro-Frame (High-Bandwidth iso only)
  3459. #define AT91C_UDPHS_EPT_MAPD (0x1 << 31) // (UDPHS_EPT) Endpoint Mapped (read only
  3460. // -------- UDPHS_EPTCTLENB : (UDPHS_EPT Offset: 0x4) UDPHS Endpoint Control Enable Register --------
  3461. #define AT91C_UDPHS_EPT_ENABL (0x1 << 0) // (UDPHS_EPT) Endpoint Enable
  3462. #define AT91C_UDPHS_AUTO_VALID (0x1 << 1) // (UDPHS_EPT) Packet Auto-Valid Enable/Disable
  3463. #define AT91C_UDPHS_INTDIS_DMA (0x1 << 3) // (UDPHS_EPT) Endpoint Interrupts DMA Request Enable/Disable
  3464. #define AT91C_UDPHS_NYET_DIS (0x1 << 4) // (UDPHS_EPT) NYET Enable/Disable
  3465. #define AT91C_UDPHS_DATAX_RX (0x1 << 6) // (UDPHS_EPT) DATAx Interrupt Enable/Disable
  3466. #define AT91C_UDPHS_MDATA_RX (0x1 << 7) // (UDPHS_EPT) MDATA Interrupt Enabled/Disable
  3467. #define AT91C_UDPHS_ERR_OVFLW (0x1 << 8) // (UDPHS_EPT) OverFlow Error Interrupt Enable/Disable/Status
  3468. #define AT91C_UDPHS_RX_BK_RDY (0x1 << 9) // (UDPHS_EPT) Received OUT Data
  3469. #define AT91C_UDPHS_TX_COMPLT (0x1 << 10) // (UDPHS_EPT) Transmitted IN Data Complete Interrupt Enable/Disable or Transmitted IN Data Complete (clear)
  3470. #define AT91C_UDPHS_ERR_TRANS (0x1 << 11) // (UDPHS_EPT) Transaction Error Interrupt Enable/Disable
  3471. #define AT91C_UDPHS_TX_PK_RDY (0x1 << 11) // (UDPHS_EPT) TX Packet Ready Interrupt Enable/Disable
  3472. #define AT91C_UDPHS_RX_SETUP (0x1 << 12) // (UDPHS_EPT) Received SETUP Interrupt Enable/Disable
  3473. #define AT91C_UDPHS_ERR_FL_ISO (0x1 << 12) // (UDPHS_EPT) Error Flow Clear/Interrupt Enable/Disable
  3474. #define AT91C_UDPHS_STALL_SNT (0x1 << 13) // (UDPHS_EPT) Stall Sent Clear
  3475. #define AT91C_UDPHS_ERR_CRISO (0x1 << 13) // (UDPHS_EPT) CRC error / Error NB Trans / Interrupt Enable/Disable
  3476. #define AT91C_UDPHS_NAK_IN (0x1 << 14) // (UDPHS_EPT) NAKIN ERROR FLUSH / Clear / Interrupt Enable/Disable
  3477. #define AT91C_UDPHS_NAK_OUT (0x1 << 15) // (UDPHS_EPT) NAKOUT / Clear / Interrupt Enable/Disable
  3478. #define AT91C_UDPHS_BUSY_BANK (0x1 << 18) // (UDPHS_EPT) Busy Bank Interrupt Enable/Disable
  3479. #define AT91C_UDPHS_SHRT_PCKT (0x1 << 31) // (UDPHS_EPT) Short Packet / Interrupt Enable/Disable
  3480. // -------- UDPHS_EPTCTLDIS : (UDPHS_EPT Offset: 0x8) UDPHS Endpoint Control Disable Register --------
  3481. #define AT91C_UDPHS_EPT_DISABL (0x1 << 0) // (UDPHS_EPT) Endpoint Disable
  3482. // -------- UDPHS_EPTCTL : (UDPHS_EPT Offset: 0xc) UDPHS Endpoint Control Register --------
  3483. // -------- UDPHS_EPTSETSTA : (UDPHS_EPT Offset: 0x14) UDPHS Endpoint Set Status Register --------
  3484. #define AT91C_UDPHS_FRCESTALL (0x1 << 5) // (UDPHS_EPT) Stall Handshake Request Set/Clear/Status
  3485. #define AT91C_UDPHS_KILL_BANK (0x1 << 9) // (UDPHS_EPT) KILL Bank
  3486. // -------- UDPHS_EPTCLRSTA : (UDPHS_EPT Offset: 0x18) UDPHS Endpoint Clear Status Register --------
  3487. #define AT91C_UDPHS_TOGGLESQ (0x1 << 6) // (UDPHS_EPT) Data Toggle Clear
  3488. // -------- UDPHS_EPTSTA : (UDPHS_EPT Offset: 0x1c) UDPHS Endpoint Status Register --------
  3489. #define AT91C_UDPHS_TOGGLESQ_STA (0x3 << 6) // (UDPHS_EPT) Toggle Sequencing
  3490. #define AT91C_UDPHS_TOGGLESQ_STA_00 (0x0 << 6) // (UDPHS_EPT) Data0
  3491. #define AT91C_UDPHS_TOGGLESQ_STA_01 (0x1 << 6) // (UDPHS_EPT) Data1
  3492. #define AT91C_UDPHS_TOGGLESQ_STA_10 (0x2 << 6) // (UDPHS_EPT) Data2 (only for High-Bandwidth Isochronous EndPoint)
  3493. #define AT91C_UDPHS_TOGGLESQ_STA_11 (0x3 << 6) // (UDPHS_EPT) MData (only for High-Bandwidth Isochronous EndPoint)
  3494. #define AT91C_UDPHS_CONTROL_DIR (0x3 << 16) // (UDPHS_EPT)
  3495. #define AT91C_UDPHS_CONTROL_DIR_00 (0x0 << 16) // (UDPHS_EPT) Bank 0
  3496. #define AT91C_UDPHS_CONTROL_DIR_01 (0x1 << 16) // (UDPHS_EPT) Bank 1
  3497. #define AT91C_UDPHS_CONTROL_DIR_10 (0x2 << 16) // (UDPHS_EPT) Bank 2
  3498. #define AT91C_UDPHS_CONTROL_DIR_11 (0x3 << 16) // (UDPHS_EPT) Invalid
  3499. #define AT91C_UDPHS_CURRENT_BANK (0x3 << 16) // (UDPHS_EPT)
  3500. #define AT91C_UDPHS_CURRENT_BANK_00 (0x0 << 16) // (UDPHS_EPT) Bank 0
  3501. #define AT91C_UDPHS_CURRENT_BANK_01 (0x1 << 16) // (UDPHS_EPT) Bank 1
  3502. #define AT91C_UDPHS_CURRENT_BANK_10 (0x2 << 16) // (UDPHS_EPT) Bank 2
  3503. #define AT91C_UDPHS_CURRENT_BANK_11 (0x3 << 16) // (UDPHS_EPT) Invalid
  3504. #define AT91C_UDPHS_BUSY_BANK_STA (0x3 << 18) // (UDPHS_EPT) Busy Bank Number
  3505. #define AT91C_UDPHS_BUSY_BANK_STA_00 (0x0 << 18) // (UDPHS_EPT) All banks are free
  3506. #define AT91C_UDPHS_BUSY_BANK_STA_01 (0x1 << 18) // (UDPHS_EPT) 1 busy bank
  3507. #define AT91C_UDPHS_BUSY_BANK_STA_10 (0x2 << 18) // (UDPHS_EPT) 2 busy banks
  3508. #define AT91C_UDPHS_BUSY_BANK_STA_11 (0x3 << 18) // (UDPHS_EPT) 3 busy banks (if possible)
  3509. #define AT91C_UDPHS_BYTE_COUNT (0x7FF << 20) // (UDPHS_EPT) UDPHS Byte Count
  3510. // *****************************************************************************
  3511. // SOFTWARE API DEFINITION FOR UDPHS DMA struct
  3512. // *****************************************************************************
  3513. #ifndef __ASSEMBLY__
  3514. typedef struct _AT91S_UDPHS_DMA {
  3515. AT91_REG UDPHS_DMANXTDSC; // UDPHS DMA Channel Next Descriptor Address
  3516. AT91_REG UDPHS_DMAADDRESS; // UDPHS DMA Channel Address Register
  3517. AT91_REG UDPHS_DMACONTROL; // UDPHS DMA Channel Control Register
  3518. AT91_REG UDPHS_DMASTATUS; // UDPHS DMA Channel Status Register
  3519. } AT91S_UDPHS_DMA, *AT91PS_UDPHS_DMA;
  3520. #else
  3521. #define UDPHS_DMANXTDSC (AT91_CAST(AT91_REG *) 0x00000000) // (UDPHS_DMANXTDSC) UDPHS DMA Channel Next Descriptor Address
  3522. #define UDPHS_DMAADDRESS (AT91_CAST(AT91_REG *) 0x00000004) // (UDPHS_DMAADDRESS) UDPHS DMA Channel Address Register
  3523. #define UDPHS_DMACONTROL (AT91_CAST(AT91_REG *) 0x00000008) // (UDPHS_DMACONTROL) UDPHS DMA Channel Control Register
  3524. #define UDPHS_DMASTATUS (AT91_CAST(AT91_REG *) 0x0000000C) // (UDPHS_DMASTATUS) UDPHS DMA Channel Status Register
  3525. #endif
  3526. // -------- UDPHS_DMANXTDSC : (UDPHS_DMA Offset: 0x0) UDPHS DMA Next Descriptor Address Register --------
  3527. #define AT91C_UDPHS_NXT_DSC_ADD (0xFFFFFFF << 4) // (UDPHS_DMA) next Channel Descriptor
  3528. // -------- UDPHS_DMAADDRESS : (UDPHS_DMA Offset: 0x4) UDPHS DMA Channel Address Register --------
  3529. #define AT91C_UDPHS_BUFF_ADD (0x0 << 0) // (UDPHS_DMA) starting address of a DMA Channel transfer
  3530. // -------- UDPHS_DMACONTROL : (UDPHS_DMA Offset: 0x8) UDPHS DMA Channel Control Register --------
  3531. #define AT91C_UDPHS_CHANN_ENB (0x1 << 0) // (UDPHS_DMA) Channel Enabled
  3532. #define AT91C_UDPHS_LDNXT_DSC (0x1 << 1) // (UDPHS_DMA) Load Next Channel Transfer Descriptor Enable
  3533. #define AT91C_UDPHS_END_TR_EN (0x1 << 2) // (UDPHS_DMA) Buffer Close Input Enable
  3534. #define AT91C_UDPHS_END_B_EN (0x1 << 3) // (UDPHS_DMA) End of DMA Buffer Packet Validation
  3535. #define AT91C_UDPHS_END_TR_IT (0x1 << 4) // (UDPHS_DMA) End Of Transfer Interrupt Enable
  3536. #define AT91C_UDPHS_END_BUFFIT (0x1 << 5) // (UDPHS_DMA) End Of Channel Buffer Interrupt Enable
  3537. #define AT91C_UDPHS_DESC_LD_IT (0x1 << 6) // (UDPHS_DMA) Descriptor Loaded Interrupt Enable
  3538. #define AT91C_UDPHS_BURST_LCK (0x1 << 7) // (UDPHS_DMA) Burst Lock Enable
  3539. #define AT91C_UDPHS_BUFF_LENGTH (0xFFFF << 16) // (UDPHS_DMA) Buffer Byte Length (write only)
  3540. // -------- UDPHS_DMASTATUS : (UDPHS_DMA Offset: 0xc) UDPHS DMA Channelx Status Register --------
  3541. #define AT91C_UDPHS_CHANN_ACT (0x1 << 1) // (UDPHS_DMA)
  3542. #define AT91C_UDPHS_END_TR_ST (0x1 << 4) // (UDPHS_DMA)
  3543. #define AT91C_UDPHS_END_BF_ST (0x1 << 5) // (UDPHS_DMA)
  3544. #define AT91C_UDPHS_DESC_LDST (0x1 << 6) // (UDPHS_DMA)
  3545. #define AT91C_UDPHS_BUFF_COUNT (0xFFFF << 16) // (UDPHS_DMA)
  3546. // *****************************************************************************
  3547. // SOFTWARE API DEFINITION FOR UDPHS High Speed Device Interface
  3548. // *****************************************************************************
  3549. #ifndef __ASSEMBLY__
  3550. typedef struct _AT91S_UDPHS {
  3551. AT91_REG UDPHS_CTRL; // UDPHS Control Register
  3552. AT91_REG UDPHS_FNUM; // UDPHS Frame Number Register
  3553. AT91_REG Reserved0[2]; //
  3554. AT91_REG UDPHS_IEN; // UDPHS Interrupt Enable Register
  3555. AT91_REG UDPHS_INTSTA; // UDPHS Interrupt Status Register
  3556. AT91_REG UDPHS_CLRINT; // UDPHS Clear Interrupt Register
  3557. AT91_REG UDPHS_EPTRST; // UDPHS Endpoints Reset Register
  3558. AT91_REG Reserved1[44]; //
  3559. AT91_REG UDPHS_TSTSOFCNT; // UDPHS Test SOF Counter Register
  3560. AT91_REG UDPHS_TSTCNTA; // UDPHS Test A Counter Register
  3561. AT91_REG UDPHS_TSTCNTB; // UDPHS Test B Counter Register
  3562. AT91_REG UDPHS_TSTMODREG; // UDPHS Test Mode Register
  3563. AT91_REG UDPHS_TST; // UDPHS Test Register
  3564. AT91_REG Reserved2[2]; //
  3565. AT91_REG UDPHS_RIPPADDRSIZE; // UDPHS PADDRSIZE Register
  3566. AT91_REG UDPHS_RIPNAME1; // UDPHS Name1 Register
  3567. AT91_REG UDPHS_RIPNAME2; // UDPHS Name2 Register
  3568. AT91_REG UDPHS_IPFEATURES; // UDPHS Features Register
  3569. AT91_REG UDPHS_IPVERSION; // UDPHS Version Register
  3570. AT91S_UDPHS_EPT UDPHS_EPT[7]; // UDPHS Endpoint struct
  3571. AT91_REG Reserved3[72]; //
  3572. AT91S_UDPHS_DMA UDPHS_DMA[6]; // UDPHS DMA channel struct (not use [0])
  3573. } AT91S_UDPHS, *AT91PS_UDPHS;
  3574. #else
  3575. #define UDPHS_CTRL (AT91_CAST(AT91_REG *) 0x00000000) // (UDPHS_CTRL) UDPHS Control Register
  3576. #define UDPHS_FNUM (AT91_CAST(AT91_REG *) 0x00000004) // (UDPHS_FNUM) UDPHS Frame Number Register
  3577. #define UDPHS_IEN (AT91_CAST(AT91_REG *) 0x00000010) // (UDPHS_IEN) UDPHS Interrupt Enable Register
  3578. #define UDPHS_INTSTA (AT91_CAST(AT91_REG *) 0x00000014) // (UDPHS_INTSTA) UDPHS Interrupt Status Register
  3579. #define UDPHS_CLRINT (AT91_CAST(AT91_REG *) 0x00000018) // (UDPHS_CLRINT) UDPHS Clear Interrupt Register
  3580. #define UDPHS_EPTRST (AT91_CAST(AT91_REG *) 0x0000001C) // (UDPHS_EPTRST) UDPHS Endpoints Reset Register
  3581. #define UDPHS_TSTSOFCNT (AT91_CAST(AT91_REG *) 0x000000D0) // (UDPHS_TSTSOFCNT) UDPHS Test SOF Counter Register
  3582. #define UDPHS_TSTCNTA (AT91_CAST(AT91_REG *) 0x000000D4) // (UDPHS_TSTCNTA) UDPHS Test A Counter Register
  3583. #define UDPHS_TSTCNTB (AT91_CAST(AT91_REG *) 0x000000D8) // (UDPHS_TSTCNTB) UDPHS Test B Counter Register
  3584. #define UDPHS_TSTMODREG (AT91_CAST(AT91_REG *) 0x000000DC) // (UDPHS_TSTMODREG) UDPHS Test Mode Register
  3585. #define UDPHS_TST (AT91_CAST(AT91_REG *) 0x000000E0) // (UDPHS_TST) UDPHS Test Register
  3586. #define UDPHS_RIPPADDRSIZE (AT91_CAST(AT91_REG *) 0x000000EC) // (UDPHS_RIPPADDRSIZE) UDPHS PADDRSIZE Register
  3587. #define UDPHS_RIPNAME1 (AT91_CAST(AT91_REG *) 0x000000F0) // (UDPHS_RIPNAME1) UDPHS Name1 Register
  3588. #define UDPHS_RIPNAME2 (AT91_CAST(AT91_REG *) 0x000000F4) // (UDPHS_RIPNAME2) UDPHS Name2 Register
  3589. #define UDPHS_IPFEATURES (AT91_CAST(AT91_REG *) 0x000000F8) // (UDPHS_IPFEATURES) UDPHS Features Register
  3590. #define UDPHS_IPVERSION (AT91_CAST(AT91_REG *) 0x000000FC) // (UDPHS_IPVERSION) UDPHS Version Register
  3591. #endif
  3592. // -------- UDPHS_CTRL : (UDPHS Offset: 0x0) UDPHS Control Register --------
  3593. #define AT91C_UDPHS_DEV_ADDR (0x7F << 0) // (UDPHS) UDPHS Address
  3594. #define AT91C_UDPHS_FADDR_EN (0x1 << 7) // (UDPHS) Function Address Enable
  3595. #define AT91C_UDPHS_EN_UDPHS (0x1 << 8) // (UDPHS) UDPHS Enable
  3596. #define AT91C_UDPHS_DETACH (0x1 << 9) // (UDPHS) Detach Command
  3597. #define AT91C_UDPHS_REWAKEUP (0x1 << 10) // (UDPHS) Send Remote Wake Up
  3598. #define AT91C_UDPHS_PULLD_DIS (0x1 << 11) // (UDPHS) PullDown Disable
  3599. // -------- UDPHS_FNUM : (UDPHS Offset: 0x4) UDPHS Frame Number Register --------
  3600. #define AT91C_UDPHS_MICRO_FRAME_NUM (0x7 << 0) // (UDPHS) Micro Frame Number
  3601. #define AT91C_UDPHS_FRAME_NUMBER (0x7FF << 3) // (UDPHS) Frame Number as defined in the Packet Field Formats
  3602. #define AT91C_UDPHS_FNUM_ERR (0x1 << 31) // (UDPHS) Frame Number CRC Error
  3603. // -------- UDPHS_IEN : (UDPHS Offset: 0x10) UDPHS Interrupt Enable Register --------
  3604. #define AT91C_UDPHS_DET_SUSPD (0x1 << 1) // (UDPHS) Suspend Interrupt Enable/Clear/Status
  3605. #define AT91C_UDPHS_MICRO_SOF (0x1 << 2) // (UDPHS) Micro-SOF Interrupt Enable/Clear/Status
  3606. #define AT91C_UDPHS_IEN_SOF (0x1 << 3) // (UDPHS) SOF Interrupt Enable/Clear/Status
  3607. #define AT91C_UDPHS_ENDRESET (0x1 << 4) // (UDPHS) End Of Reset Interrupt Enable/Clear/Status
  3608. #define AT91C_UDPHS_WAKE_UP (0x1 << 5) // (UDPHS) Wake Up CPU Interrupt Enable/Clear/Status
  3609. #define AT91C_UDPHS_ENDOFRSM (0x1 << 6) // (UDPHS) End Of Resume Interrupt Enable/Clear/Status
  3610. #define AT91C_UDPHS_UPSTR_RES (0x1 << 7) // (UDPHS) Upstream Resume Interrupt Enable/Clear/Status
  3611. #define AT91C_UDPHS_EPT_INT_0 (0x1 << 8) // (UDPHS) Endpoint 0 Interrupt Enable/Status
  3612. #define AT91C_UDPHS_EPT_INT_1 (0x1 << 9) // (UDPHS) Endpoint 1 Interrupt Enable/Status
  3613. #define AT91C_UDPHS_EPT_INT_2 (0x1 << 10) // (UDPHS) Endpoint 2 Interrupt Enable/Status
  3614. #define AT91C_UDPHS_EPT_INT_3 (0x1 << 11) // (UDPHS) Endpoint 3 Interrupt Enable/Status
  3615. #define AT91C_UDPHS_EPT_INT_4 (0x1 << 12) // (UDPHS) Endpoint 4 Interrupt Enable/Status
  3616. #define AT91C_UDPHS_EPT_INT_5 (0x1 << 13) // (UDPHS) Endpoint 5 Interrupt Enable/Status
  3617. #define AT91C_UDPHS_EPT_INT_6 (0x1 << 14) // (UDPHS) Endpoint 6 Interrupt Enable/Status
  3618. #define AT91C_UDPHS_DMA_INT_1 (0x1 << 25) // (UDPHS) DMA Channel 1 Interrupt Enable/Status
  3619. #define AT91C_UDPHS_DMA_INT_2 (0x1 << 26) // (UDPHS) DMA Channel 2 Interrupt Enable/Status
  3620. #define AT91C_UDPHS_DMA_INT_3 (0x1 << 27) // (UDPHS) DMA Channel 3 Interrupt Enable/Status
  3621. #define AT91C_UDPHS_DMA_INT_4 (0x1 << 28) // (UDPHS) DMA Channel 4 Interrupt Enable/Status
  3622. #define AT91C_UDPHS_DMA_INT_5 (0x1 << 29) // (UDPHS) DMA Channel 5 Interrupt Enable/Status
  3623. #define AT91C_UDPHS_DMA_INT_6 (0x1 << 30) // (UDPHS) DMA Channel 6 Interrupt Enable/Status
  3624. // -------- UDPHS_INTSTA : (UDPHS Offset: 0x14) UDPHS Interrupt Status Register --------
  3625. #define AT91C_UDPHS_SPEED (0x1 << 0) // (UDPHS) Speed Status
  3626. // -------- UDPHS_CLRINT : (UDPHS Offset: 0x18) UDPHS Clear Interrupt Register --------
  3627. // -------- UDPHS_EPTRST : (UDPHS Offset: 0x1c) UDPHS Endpoints Reset Register --------
  3628. #define AT91C_UDPHS_RST_EPT_0 (0x1 << 0) // (UDPHS) Endpoint Reset 0
  3629. #define AT91C_UDPHS_RST_EPT_1 (0x1 << 1) // (UDPHS) Endpoint Reset 1
  3630. #define AT91C_UDPHS_RST_EPT_2 (0x1 << 2) // (UDPHS) Endpoint Reset 2
  3631. #define AT91C_UDPHS_RST_EPT_3 (0x1 << 3) // (UDPHS) Endpoint Reset 3
  3632. #define AT91C_UDPHS_RST_EPT_4 (0x1 << 4) // (UDPHS) Endpoint Reset 4
  3633. #define AT91C_UDPHS_RST_EPT_5 (0x1 << 5) // (UDPHS) Endpoint Reset 5
  3634. #define AT91C_UDPHS_RST_EPT_6 (0x1 << 6) // (UDPHS) Endpoint Reset 6
  3635. // -------- UDPHS_TSTSOFCNT : (UDPHS Offset: 0xd0) UDPHS Test SOF Counter Register --------
  3636. #define AT91C_UDPHS_SOFCNTMAX (0x3 << 0) // (UDPHS) SOF Counter Max Value
  3637. #define AT91C_UDPHS_SOFCTLOAD (0x1 << 7) // (UDPHS) SOF Counter Load
  3638. // -------- UDPHS_TSTCNTA : (UDPHS Offset: 0xd4) UDPHS Test A Counter Register --------
  3639. #define AT91C_UDPHS_CNTAMAX (0x7FFF << 0) // (UDPHS) A Counter Max Value
  3640. #define AT91C_UDPHS_CNTALOAD (0x1 << 15) // (UDPHS) A Counter Load
  3641. // -------- UDPHS_TSTCNTB : (UDPHS Offset: 0xd8) UDPHS Test B Counter Register --------
  3642. #define AT91C_UDPHS_CNTBMAX (0x7FFF << 0) // (UDPHS) B Counter Max Value
  3643. #define AT91C_UDPHS_CNTBLOAD (0x1 << 15) // (UDPHS) B Counter Load
  3644. // -------- UDPHS_TSTMODREG : (UDPHS Offset: 0xdc) UDPHS Test Mode Register --------
  3645. #define AT91C_UDPHS_TSTMODE (0x1F << 1) // (UDPHS) UDPHS Core TestModeReg
  3646. // -------- UDPHS_TST : (UDPHS Offset: 0xe0) UDPHS Test Register --------
  3647. #define AT91C_UDPHS_SPEED_CFG (0x3 << 0) // (UDPHS) Speed Configuration
  3648. #define AT91C_UDPHS_SPEED_CFG_NM (0x0) // (UDPHS) Normal Mode
  3649. #define AT91C_UDPHS_SPEED_CFG_RS (0x1) // (UDPHS) Reserved
  3650. #define AT91C_UDPHS_SPEED_CFG_HS (0x2) // (UDPHS) Force High Speed
  3651. #define AT91C_UDPHS_SPEED_CFG_FS (0x3) // (UDPHS) Force Full-Speed
  3652. #define AT91C_UDPHS_TST_J (0x1 << 2) // (UDPHS) TestJMode
  3653. #define AT91C_UDPHS_TST_K (0x1 << 3) // (UDPHS) TestKMode
  3654. #define AT91C_UDPHS_TST_PKT (0x1 << 4) // (UDPHS) TestPacketMode
  3655. #define AT91C_UDPHS_OPMODE2 (0x1 << 5) // (UDPHS) OpMode2
  3656. // -------- UDPHS_RIPPADDRSIZE : (UDPHS Offset: 0xec) UDPHS PADDRSIZE Register --------
  3657. #define AT91C_UDPHS_IPPADDRSIZE (0x0 << 0) // (UDPHS) 2^UDPHSDEV_PADDR_SIZE
  3658. // -------- UDPHS_RIPNAME1 : (UDPHS Offset: 0xf0) UDPHS Name Register --------
  3659. #define AT91C_UDPHS_IPNAME1 (0x0 << 0) // (UDPHS) ASCII string HUSB
  3660. // -------- UDPHS_RIPNAME2 : (UDPHS Offset: 0xf4) UDPHS Name Register --------
  3661. #define AT91C_UDPHS_IPNAME2 (0x0 << 0) // (UDPHS) ASCII string 2DEV
  3662. // -------- UDPHS_IPFEATURES : (UDPHS Offset: 0xf8) UDPHS Features Register --------
  3663. #define AT91C_UDPHS_EPT_NBR_MAX (0xF << 0) // (UDPHS) Max Number of Endpoints
  3664. #define AT91C_UDPHS_DMA_CHANNEL_NBR (0x7 << 4) // (UDPHS) Number of DMA Channels
  3665. #define AT91C_UDPHS_DMA_B_SIZ (0x1 << 7) // (UDPHS) DMA Buffer Size
  3666. #define AT91C_UDPHS_DMA_FIFO_WORD_DEPTH (0xF << 8) // (UDPHS) DMA FIFO Depth in words
  3667. #define AT91C_UDPHS_FIFO_MAX_SIZE (0x7 << 12) // (UDPHS) DPRAM size
  3668. #define AT91C_UDPHS_BW_DPRAM (0x1 << 15) // (UDPHS) DPRAM byte write capability
  3669. #define AT91C_UDPHS_DATAB16_8 (0x1 << 16) // (UDPHS) UTMI DataBus16_8
  3670. #define AT91C_UDPHS_ISO_EPT_1 (0x1 << 17) // (UDPHS) Endpoint 1 High Bandwidth Isochronous Capability
  3671. #define AT91C_UDPHS_ISO_EPT_2 (0x1 << 18) // (UDPHS) Endpoint 2 High Bandwidth Isochronous Capability
  3672. #define AT91C_UDPHS_ISO_EPT_5 (0x1 << 21) // (UDPHS) Endpoint 5 High Bandwidth Isochronous Capability
  3673. #define AT91C_UDPHS_ISO_EPT_6 (0x1 << 22) // (UDPHS) Endpoint 6 High Bandwidth Isochronous Capability
  3674. // -------- UDPHS_IPVERSION : (UDPHS Offset: 0xfc) UDPHS Version Register --------
  3675. #define AT91C_UDPHS_VERSION_NUM (0xFFFF << 0) // (UDPHS) Give the IP version
  3676. #define AT91C_UDPHS_METAL_FIX_NUM (0x7 << 16) // (UDPHS) Give the number of metal fixes
  3677. // *****************************************************************************
  3678. // SOFTWARE API DEFINITION FOR HDMA Channel structure
  3679. // *****************************************************************************
  3680. #ifndef __ASSEMBLY__
  3681. #else
  3682. #define HDMA_SADDR (AT91_CAST(AT91_REG *) 0x00000000) // (HDMA_SADDR) HDMA Channel Source Address Register
  3683. #define HDMA_DADDR (AT91_CAST(AT91_REG *) 0x00000004) // (HDMA_DADDR) HDMA Channel Destination Address Register
  3684. #define HDMA_DSCR (AT91_CAST(AT91_REG *) 0x00000008) // (HDMA_DSCR) HDMA Channel Descriptor Address Register
  3685. #define HDMA_CTRLA (AT91_CAST(AT91_REG *) 0x0000000C) // (HDMA_CTRLA) HDMA Channel Control A Register
  3686. #define HDMA_CTRLB (AT91_CAST(AT91_REG *) 0x00000010) // (HDMA_CTRLB) HDMA Channel Control B Register
  3687. #define HDMA_CFG (AT91_CAST(AT91_REG *) 0x00000014) // (HDMA_CFG) HDMA Channel Configuration Register
  3688. #define HDMA_SPIP (AT91_CAST(AT91_REG *) 0x00000018) // (HDMA_SPIP) HDMA Channel Source Picture in Picture Configuration Register
  3689. #define HDMA_DPIP (AT91_CAST(AT91_REG *) 0x0000001C) // (HDMA_DPIP) HDMA Channel Destination Picture in Picture Configuration Register
  3690. #define HDMA_BDSCR (AT91_CAST(AT91_REG *) 0x00000020) // (HDMA_BDSCR) HDMA Reserved
  3691. #define HDMA_CADDR (AT91_CAST(AT91_REG *) 0x00000024) // (HDMA_CADDR) HDMA Reserved
  3692. #endif
  3693. // -------- HDMA_SADDR : (HDMA_CH Offset: 0x0) --------
  3694. #define AT91C_SADDR (0x0 << 0) // (HDMA_CH)
  3695. // -------- HDMA_DADDR : (HDMA_CH Offset: 0x4) --------
  3696. #define AT91C_DADDR (0x0 << 0) // (HDMA_CH)
  3697. // -------- HDMA_DSCR : (HDMA_CH Offset: 0x8) --------
  3698. #define AT91C_HDMA_DSCR_IF (0x3 << 0) // (HDMA_CH) Select AHB-Lite Interface for current channel
  3699. #define AT91C_HDMA_DSCR_IF_0 (0x0) // (HDMA_CH) The Buffer Transfer descriptor is fetched via AHB-Lite Interface 0.
  3700. #define AT91C_HDMA_DSCR_IF_1 (0x1) // (HDMA_CH) The Buffer Transfer descriptor is fetched via AHB-Lite Interface 1.
  3701. #define AT91C_HDMA_DSCR_IF_2 (0x2) // (HDMA_CH) The Buffer Transfer descriptor is fetched via AHB-Lite Interface 2.
  3702. #define AT91C_HDMA_DSCR_IF_3 (0x3) // (HDMA_CH) The Buffer Transfer descriptor is fetched via AHB-Lite Interface 3.
  3703. #define AT91C_HDMA_DSCR (0x3FFFFFFF << 2) // (HDMA_CH) Buffer Transfer descriptor address. This address is word aligned.
  3704. // -------- HDMA_CTRLA : (HDMA_CH Offset: 0xc) --------
  3705. #define AT91C_HDMA_BTSIZE (0xFFFF << 0) // (HDMA_CH) Buffer Transfer Size.
  3706. #define AT91C_HDMA_SCSIZE (0x7 << 16) // (HDMA_CH) Source Chunk Transfer Size.
  3707. #define AT91C_HDMA_SCSIZE_1 (0x0 << 16) // (HDMA_CH) 1.
  3708. #define AT91C_HDMA_SCSIZE_4 (0x1 << 16) // (HDMA_CH) 4.
  3709. #define AT91C_HDMA_SCSIZE_8 (0x2 << 16) // (HDMA_CH) 8.
  3710. #define AT91C_HDMA_SCSIZE_16 (0x3 << 16) // (HDMA_CH) 16.
  3711. #define AT91C_HDMA_SCSIZE_32 (0x4 << 16) // (HDMA_CH) 32.
  3712. #define AT91C_HDMA_SCSIZE_64 (0x5 << 16) // (HDMA_CH) 64.
  3713. #define AT91C_HDMA_SCSIZE_128 (0x6 << 16) // (HDMA_CH) 128.
  3714. #define AT91C_HDMA_SCSIZE_256 (0x7 << 16) // (HDMA_CH) 256.
  3715. #define AT91C_HDMA_DCSIZE (0x7 << 20) // (HDMA_CH) Destination Chunk Transfer Size
  3716. #define AT91C_HDMA_DCSIZE_1 (0x0 << 20) // (HDMA_CH) 1.
  3717. #define AT91C_HDMA_DCSIZE_4 (0x1 << 20) // (HDMA_CH) 4.
  3718. #define AT91C_HDMA_DCSIZE_8 (0x2 << 20) // (HDMA_CH) 8.
  3719. #define AT91C_HDMA_DCSIZE_16 (0x3 << 20) // (HDMA_CH) 16.
  3720. #define AT91C_HDMA_DCSIZE_32 (0x4 << 20) // (HDMA_CH) 32.
  3721. #define AT91C_HDMA_DCSIZE_64 (0x5 << 20) // (HDMA_CH) 64.
  3722. #define AT91C_HDMA_DCSIZE_128 (0x6 << 20) // (HDMA_CH) 128.
  3723. #define AT91C_HDMA_DCSIZE_256 (0x7 << 20) // (HDMA_CH) 256.
  3724. #define AT91C_HDMA_SRC_WIDTH (0x3 << 24) // (HDMA_CH) Source Single Transfer Size
  3725. #define AT91C_HDMA_SRC_WIDTH_BYTE (0x0 << 24) // (HDMA_CH) BYTE.
  3726. #define AT91C_HDMA_SRC_WIDTH_HALFWORD (0x1 << 24) // (HDMA_CH) HALF-WORD.
  3727. #define AT91C_HDMA_SRC_WIDTH_WORD (0x2 << 24) // (HDMA_CH) WORD.
  3728. #define AT91C_HDMA_DST_WIDTH (0x3 << 28) // (HDMA_CH) Destination Single Transfer Size
  3729. #define AT91C_HDMA_DST_WIDTH_BYTE (0x0 << 28) // (HDMA_CH) BYTE.
  3730. #define AT91C_HDMA_DST_WIDTH_HALFWORD (0x1 << 28) // (HDMA_CH) HALF-WORD.
  3731. #define AT91C_HDMA_DST_WIDTH_WORD (0x2 << 28) // (HDMA_CH) WORD.
  3732. #define AT91C_HDMA_DONE (0x1 << 31) // (HDMA_CH)
  3733. // -------- HDMA_CTRLB : (HDMA_CH Offset: 0x10) --------
  3734. #define AT91C_HDMA_SIF (0x3 << 0) // (HDMA_CH) Source Interface Selection Field.
  3735. #define AT91C_HDMA_SIF_0 (0x0) // (HDMA_CH) The Source Transfer is done via AHB-Lite Interface 0.
  3736. #define AT91C_HDMA_SIF_1 (0x1) // (HDMA_CH) The Source Transfer is done via AHB-Lite Interface 1.
  3737. #define AT91C_HDMA_SIF_2 (0x2) // (HDMA_CH) The Source Transfer is done via AHB-Lite Interface 2.
  3738. #define AT91C_HDMA_SIF_3 (0x3) // (HDMA_CH) The Source Transfer is done via AHB-Lite Interface 3.
  3739. #define AT91C_HDMA_DIF (0x3 << 4) // (HDMA_CH) Destination Interface Selection Field.
  3740. #define AT91C_HDMA_DIF_0 (0x0 << 4) // (HDMA_CH) The Destination Transfer is done via AHB-Lite Interface 0.
  3741. #define AT91C_HDMA_DIF_1 (0x1 << 4) // (HDMA_CH) The Destination Transfer is done via AHB-Lite Interface 1.
  3742. #define AT91C_HDMA_DIF_2 (0x2 << 4) // (HDMA_CH) The Destination Transfer is done via AHB-Lite Interface 2.
  3743. #define AT91C_HDMA_DIF_3 (0x3 << 4) // (HDMA_CH) The Destination Transfer is done via AHB-Lite Interface 3.
  3744. #define AT91C_HDMA_SRC_PIP (0x1 << 8) // (HDMA_CH) Source Picture-in-Picture Mode
  3745. #define AT91C_HDMA_SRC_PIP_DISABLE (0x0 << 8) // (HDMA_CH) Source Picture-in-Picture mode is disabled.
  3746. #define AT91C_HDMA_SRC_PIP_ENABLE (0x1 << 8) // (HDMA_CH) Source Picture-in-Picture mode is enabled.
  3747. #define AT91C_HDMA_DST_PIP (0x1 << 12) // (HDMA_CH) Destination Picture-in-Picture Mode
  3748. #define AT91C_HDMA_DST_PIP_DISABLE (0x0 << 12) // (HDMA_CH) Destination Picture-in-Picture mode is disabled.
  3749. #define AT91C_HDMA_DST_PIP_ENABLE (0x1 << 12) // (HDMA_CH) Destination Picture-in-Picture mode is enabled.
  3750. #define AT91C_HDMA_SRC_DSCR (0x1 << 16) // (HDMA_CH) Source Buffer Descriptor Fetch operation
  3751. #define AT91C_HDMA_SRC_DSCR_FETCH_FROM_MEM (0x0 << 16) // (HDMA_CH) Source address is updated when the descriptor is fetched from the memory.
  3752. #define AT91C_HDMA_SRC_DSCR_FETCH_DISABLE (0x1 << 16) // (HDMA_CH) Buffer Descriptor Fetch operation is disabled for the Source.
  3753. #define AT91C_HDMA_DST_DSCR (0x1 << 20) // (HDMA_CH) Destination Buffer Descriptor operation
  3754. #define AT91C_HDMA_DST_DSCR_FETCH_FROM_MEM (0x0 << 20) // (HDMA_CH) Destination address is updated when the descriptor is fetched from the memory.
  3755. #define AT91C_HDMA_DST_DSCR_FETCH_DISABLE (0x1 << 20) // (HDMA_CH) Buffer Descriptor Fetch operation is disabled for the destination.
  3756. #define AT91C_HDMA_FC (0x7 << 21) // (HDMA_CH) This field defines which devices controls the size of the buffer transfer, also referred as to the Flow Controller.
  3757. #define AT91C_HDMA_FC_MEM2MEM (0x0 << 21) // (HDMA_CH) Memory-to-Memory (DMA Controller).
  3758. #define AT91C_HDMA_FC_MEM2PER (0x1 << 21) // (HDMA_CH) Memory-to-Peripheral (DMA Controller).
  3759. #define AT91C_HDMA_FC_PER2MEM (0x2 << 21) // (HDMA_CH) Peripheral-to-Memory (DMA Controller).
  3760. #define AT91C_HDMA_FC_PER2PER (0x3 << 21) // (HDMA_CH) Peripheral-to-Peripheral (DMA Controller).
  3761. #define AT91C_HDMA_FC_PER2MEM_PER (0x4 << 21) // (HDMA_CH) Peripheral-to-Memory (Peripheral).
  3762. #define AT91C_HDMA_FC_MEM2PER_PER (0x5 << 21) // (HDMA_CH) Memory-to-Peripheral (Peripheral).
  3763. #define AT91C_HDMA_FC_PER2PER_PER (0x6 << 21) // (HDMA_CH) Peripheral-to-Peripheral (Source Peripheral).
  3764. #define AT91C_HDMA_SRC_ADDRESS_MODE (0x3 << 24) // (HDMA_CH) Type of addressing mode
  3765. #define AT91C_HDMA_SRC_ADDRESS_MODE_INCR (0x0 << 24) // (HDMA_CH) Incrementing Mode.
  3766. #define AT91C_HDMA_SRC_ADDRESS_MODE_DECR (0x1 << 24) // (HDMA_CH) Decrementing Mode.
  3767. #define AT91C_HDMA_SRC_ADDRESS_MODE_FIXED (0x2 << 24) // (HDMA_CH) Fixed Mode.
  3768. #define AT91C_HDMA_DST_ADDRESS_MODE (0x3 << 28) // (HDMA_CH) Type of addressing mode
  3769. #define AT91C_HDMA_DST_ADDRESS_MODE_INCR (0x0 << 28) // (HDMA_CH) Incrementing Mode.
  3770. #define AT91C_HDMA_DST_ADDRESS_MODE_DECR (0x1 << 28) // (HDMA_CH) Decrementing Mode.
  3771. #define AT91C_HDMA_DST_ADDRESS_MODE_FIXED (0x2 << 28) // (HDMA_CH) Fixed Mode.
  3772. #define AT91C_HDMA_AUTO (0x1 << 31) // (HDMA_CH) Automatic multiple buffer transfer enable
  3773. #define AT91C_HDMA_AUTO_DISABLE (0x0 << 31) // (HDMA_CH) Automatic multiple buffer transfer is disabled.
  3774. #define AT91C_HDMA_AUTO_ENABLE (0x1 << 31) // (HDMA_CH) Automatic multiple buffer transfer is enabled. This enables replay mode or contiguous mode when several buffers are transferred.
  3775. // -------- HDMA_CFG : (HDMA_CH Offset: 0x14) --------
  3776. #define AT91C_HDMA_SRC_PER (0xF << 0) // (HDMA_CH) Channel Source Request is associated with peripheral identifier coded SRC_PER handshaking interface.
  3777. #define AT91C_HDMA_SRC_PER_0 (0x0) // (HDMA_CH) HW Handshaking Interface number 0.
  3778. #define AT91C_HDMA_SRC_PER_1 (0x1) // (HDMA_CH) HW Handshaking Interface number 1.
  3779. #define AT91C_HDMA_SRC_PER_2 (0x2) // (HDMA_CH) HW Handshaking Interface number 2.
  3780. #define AT91C_HDMA_SRC_PER_3 (0x3) // (HDMA_CH) HW Handshaking Interface number 3.
  3781. #define AT91C_HDMA_SRC_PER_4 (0x4) // (HDMA_CH) HW Handshaking Interface number 4.
  3782. #define AT91C_HDMA_SRC_PER_5 (0x5) // (HDMA_CH) HW Handshaking Interface number 5.
  3783. #define AT91C_HDMA_SRC_PER_6 (0x6) // (HDMA_CH) HW Handshaking Interface number 6.
  3784. #define AT91C_HDMA_SRC_PER_7 (0x7) // (HDMA_CH) HW Handshaking Interface number 7.
  3785. #define AT91C_HDMA_SRC_PER_8 (0x8) // (HDMA_CH) HW Handshaking Interface number 8.
  3786. #define AT91C_HDMA_SRC_PER_9 (0x9) // (HDMA_CH) HW Handshaking Interface number 9.
  3787. #define AT91C_HDMA_SRC_PER_10 (0xA) // (HDMA_CH) HW Handshaking Interface number 10.
  3788. #define AT91C_HDMA_SRC_PER_11 (0xB) // (HDMA_CH) HW Handshaking Interface number 11.
  3789. #define AT91C_HDMA_SRC_PER_12 (0xC) // (HDMA_CH) HW Handshaking Interface number 12.
  3790. #define AT91C_HDMA_SRC_PER_13 (0xD) // (HDMA_CH) HW Handshaking Interface number 13.
  3791. #define AT91C_HDMA_SRC_PER_14 (0xE) // (HDMA_CH) HW Handshaking Interface number 14.
  3792. #define AT91C_HDMA_SRC_PER_15 (0xF) // (HDMA_CH) HW Handshaking Interface number 15.
  3793. #define AT91C_HDMA_DST_PER (0xF << 4) // (HDMA_CH) Channel Destination Request is associated with peripheral identifier coded DST_PER handshaking interface.
  3794. #define AT91C_HDMA_DST_PER_0 (0x0 << 4) // (HDMA_CH) HW Handshaking Interface number 0.
  3795. #define AT91C_HDMA_DST_PER_1 (0x1 << 4) // (HDMA_CH) HW Handshaking Interface number 1.
  3796. #define AT91C_HDMA_DST_PER_2 (0x2 << 4) // (HDMA_CH) HW Handshaking Interface number 2.
  3797. #define AT91C_HDMA_DST_PER_3 (0x3 << 4) // (HDMA_CH) HW Handshaking Interface number 3.
  3798. #define AT91C_HDMA_DST_PER_4 (0x4 << 4) // (HDMA_CH) HW Handshaking Interface number 4.
  3799. #define AT91C_HDMA_DST_PER_5 (0x5 << 4) // (HDMA_CH) HW Handshaking Interface number 5.
  3800. #define AT91C_HDMA_DST_PER_6 (0x6 << 4) // (HDMA_CH) HW Handshaking Interface number 6.
  3801. #define AT91C_HDMA_DST_PER_7 (0x7 << 4) // (HDMA_CH) HW Handshaking Interface number 7.
  3802. #define AT91C_HDMA_DST_PER_8 (0x8 << 4) // (HDMA_CH) HW Handshaking Interface number 8.
  3803. #define AT91C_HDMA_DST_PER_9 (0x9 << 4) // (HDMA_CH) HW Handshaking Interface number 9.
  3804. #define AT91C_HDMA_DST_PER_10 (0xA << 4) // (HDMA_CH) HW Handshaking Interface number 10.
  3805. #define AT91C_HDMA_DST_PER_11 (0xB << 4) // (HDMA_CH) HW Handshaking Interface number 11.
  3806. #define AT91C_HDMA_DST_PER_12 (0xC << 4) // (HDMA_CH) HW Handshaking Interface number 12.
  3807. #define AT91C_HDMA_DST_PER_13 (0xD << 4) // (HDMA_CH) HW Handshaking Interface number 13.
  3808. #define AT91C_HDMA_DST_PER_14 (0xE << 4) // (HDMA_CH) HW Handshaking Interface number 14.
  3809. #define AT91C_HDMA_DST_PER_15 (0xF << 4) // (HDMA_CH) HW Handshaking Interface number 15.
  3810. #define AT91C_HDMA_SRC_REP (0x1 << 8) // (HDMA_CH) Source Replay Mode
  3811. #define AT91C_HDMA_SRC_REP_CONTIGUOUS_ADDR (0x0 << 8) // (HDMA_CH) When automatic mode is activated, source address is contiguous between two buffers.
  3812. #define AT91C_HDMA_SRC_REP_RELOAD_ADDR (0x1 << 8) // (HDMA_CH) When automatic mode is activated, the source address and the control register are reloaded from previous transfer..
  3813. #define AT91C_HDMA_SRC_H2SEL (0x1 << 9) // (HDMA_CH) Source Handshaking Mode
  3814. #define AT91C_HDMA_SRC_H2SEL_SW (0x0 << 9) // (HDMA_CH) Software handshaking interface is used to trigger a transfer request.
  3815. #define AT91C_HDMA_SRC_H2SEL_HW (0x1 << 9) // (HDMA_CH) Hardware handshaking interface is used to trigger a transfer request.
  3816. #define AT91C_HDMA_DST_REP (0x1 << 12) // (HDMA_CH) Destination Replay Mode
  3817. #define AT91C_HDMA_DST_REP_CONTIGUOUS_ADDR (0x0 << 12) // (HDMA_CH) When automatic mode is activated, destination address is contiguous between two buffers.
  3818. #define AT91C_HDMA_DST_REP_RELOAD_ADDR (0x1 << 12) // (HDMA_CH) When automatic mode is activated, the destination address and the control register are reloaded from previous transfer..
  3819. #define AT91C_HDMA_DST_H2SEL (0x1 << 13) // (HDMA_CH) Destination Handshaking Mode
  3820. #define AT91C_HDMA_DST_H2SEL_SW (0x0 << 13) // (HDMA_CH) Software handshaking interface is used to trigger a transfer request.
  3821. #define AT91C_HDMA_DST_H2SEL_HW (0x1 << 13) // (HDMA_CH) Hardware handshaking interface is used to trigger a transfer request.
  3822. #define AT91C_HDMA_SOD (0x1 << 16) // (HDMA_CH) STOP ON DONE
  3823. #define AT91C_HDMA_SOD_DISABLE (0x0 << 16) // (HDMA_CH) STOP ON DONE disabled, the descriptor fetch operation ignores DONE Field of CTRLA register.
  3824. #define AT91C_HDMA_SOD_ENABLE (0x1 << 16) // (HDMA_CH) STOP ON DONE activated, the DMAC module is automatically disabled if DONE FIELD is set to 1.
  3825. #define AT91C_HDMA_LOCK_IF (0x1 << 20) // (HDMA_CH) Interface Lock
  3826. #define AT91C_HDMA_LOCK_IF_DISABLE (0x0 << 20) // (HDMA_CH) Interface Lock capability is disabled.
  3827. #define AT91C_HDMA_LOCK_IF_ENABLE (0x1 << 20) // (HDMA_CH) Interface Lock capability is enabled.
  3828. #define AT91C_HDMA_LOCK_B (0x1 << 21) // (HDMA_CH) AHB Bus Lock
  3829. #define AT91C_HDMA_LOCK_B_DISABLE (0x0 << 21) // (HDMA_CH) AHB Bus Locking capability is disabled.
  3830. #define AT91C_HDMA_LOCK_B_ENABLE (0x1 << 21) // (HDMA_CH) AHB Bus Locking capability is enabled.
  3831. #define AT91C_HDMA_LOCK_IF_L (0x1 << 22) // (HDMA_CH) Master Interface Arbiter Lock
  3832. #define AT91C_HDMA_LOCK_IF_L_CHUNK (0x0 << 22) // (HDMA_CH) The Master Interface Arbiter is locked by the channel x for a chunk transfer.
  3833. #define AT91C_HDMA_LOCK_IF_L_BUFFER (0x1 << 22) // (HDMA_CH) The Master Interface Arbiter is locked by the channel x for a buffer transfer.
  3834. #define AT91C_HDMA_AHB_PROT (0x7 << 24) // (HDMA_CH) AHB Prot
  3835. #define AT91C_HDMA_FIFOCFG (0x3 << 28) // (HDMA_CH) FIFO Request Configuration
  3836. #define AT91C_HDMA_FIFOCFG_LARGESTBURST (0x0 << 28) // (HDMA_CH) The largest defined length AHB burst is performed on the destination AHB interface.
  3837. #define AT91C_HDMA_FIFOCFG_HALFFIFO (0x1 << 28) // (HDMA_CH) When half fifo size is available/filled a source/destination request is serviced.
  3838. #define AT91C_HDMA_FIFOCFG_ENOUGHSPACE (0x2 << 28) // (HDMA_CH) When there is enough space/data available to perfom a single AHB access then the request is serviced.
  3839. // -------- HDMA_SPIP : (HDMA_CH Offset: 0x18) --------
  3840. #define AT91C_SPIP_HOLE (0xFFFF << 0) // (HDMA_CH) This field indicates the value to add to the address when the programmable boundary has been reached.
  3841. #define AT91C_SPIP_BOUNDARY (0x3FF << 16) // (HDMA_CH) This field indicates the number of source transfers to perform before the automatic address increment operation.
  3842. // -------- HDMA_DPIP : (HDMA_CH Offset: 0x1c) --------
  3843. #define AT91C_DPIP_HOLE (0xFFFF << 0) // (HDMA_CH) This field indicates the value to add to the address when the programmable boundary has been reached.
  3844. #define AT91C_DPIP_BOUNDARY (0x3FF << 16) // (HDMA_CH) This field indicates the number of source transfers to perform before the automatic address increment operation.
  3845. // -------- HDMA_BDSCR : (HDMA_CH Offset: 0x20) --------
  3846. // -------- HDMA_CADDR : (HDMA_CH Offset: 0x24) --------
  3847. // *****************************************************************************
  3848. // SOFTWARE API DEFINITION FOR HDMA controller
  3849. // *****************************************************************************
  3850. #ifndef __ASSEMBLY__
  3851. #else
  3852. #define HDMA_GCFG (AT91_CAST(AT91_REG *) 0x00000000) // (HDMA_GCFG) HDMA Global Configuration Register
  3853. #define HDMA_EN (AT91_CAST(AT91_REG *) 0x00000004) // (HDMA_EN) HDMA Controller Enable Register
  3854. #define HDMA_SREQ (AT91_CAST(AT91_REG *) 0x00000008) // (HDMA_SREQ) HDMA Software Single Request Register
  3855. #define HDMA_CREQ (AT91_CAST(AT91_REG *) 0x0000000C) // (HDMA_CREQ) HDMA Software Chunk Transfer Request Register
  3856. #define HDMA_LAST (AT91_CAST(AT91_REG *) 0x00000010) // (HDMA_LAST) HDMA Software Last Transfer Flag Register
  3857. #define HDMA_SYNC (AT91_CAST(AT91_REG *) 0x00000014) // (HDMA_SYNC) HDMA Request Synchronization Register
  3858. #define HDMA_EBCIER (AT91_CAST(AT91_REG *) 0x00000018) // (HDMA_EBCIER) HDMA Error, Chained Buffer transfer completed and Buffer transfer completed Interrupt Enable register
  3859. #define HDMA_EBCIDR (AT91_CAST(AT91_REG *) 0x0000001C) // (HDMA_EBCIDR) HDMA Error, Chained Buffer transfer completed and Buffer transfer completed Interrupt Disable register
  3860. #define HDMA_EBCIMR (AT91_CAST(AT91_REG *) 0x00000020) // (HDMA_EBCIMR) HDMA Error, Chained Buffer transfer completed and Buffer transfer completed Mask Register
  3861. #define HDMA_EBCISR (AT91_CAST(AT91_REG *) 0x00000024) // (HDMA_EBCISR) HDMA Error, Chained Buffer transfer completed and Buffer transfer completed Status Register
  3862. #define HDMA_CHER (AT91_CAST(AT91_REG *) 0x00000028) // (HDMA_CHER) HDMA Channel Handler Enable Register
  3863. #define HDMA_CHDR (AT91_CAST(AT91_REG *) 0x0000002C) // (HDMA_CHDR) HDMA Channel Handler Disable Register
  3864. #define HDMA_CHSR (AT91_CAST(AT91_REG *) 0x00000030) // (HDMA_CHSR) HDMA Channel Handler Status Register
  3865. #define HDMA_RSVD0 (AT91_CAST(AT91_REG *) 0x00000034) // (HDMA_RSVD0) HDMA Reserved
  3866. #define HDMA_RSVD1 (AT91_CAST(AT91_REG *) 0x00000038) // (HDMA_RSVD1) HDMA Reserved
  3867. #define HDMA_ADDRSIZE (AT91_CAST(AT91_REG *) 0x000001EC) // (HDMA_ADDRSIZE) HDMA ADDRSIZE REGISTER
  3868. #define HDMA_IPNAME1 (AT91_CAST(AT91_REG *) 0x000001F0) // (HDMA_IPNAME1) HDMA IPNAME1 REGISTER
  3869. #define HDMA_IPNAME2 (AT91_CAST(AT91_REG *) 0x000001F4) // (HDMA_IPNAME2) HDMA IPNAME2 REGISTER
  3870. #define HDMA_FEATURES (AT91_CAST(AT91_REG *) 0x000001F8) // (HDMA_FEATURES) HDMA FEATURES REGISTER
  3871. #define HDMA_VER (AT91_CAST(AT91_REG *) 0x000001FC) // (HDMA_VER) HDMA VERSION REGISTER
  3872. #endif
  3873. // -------- HDMA_GCFG : (HDMA Offset: 0x0) --------
  3874. #define AT91C_HDMA_IF0_BIGEND (0x1 << 0) // (HDMA) AHB-Lite Interface 0 endian mode.
  3875. #define AT91C_HDMA_IF0_BIGEND_IS_LITTLE_ENDIAN (0x0) // (HDMA) AHB-Lite Interface 0 is little endian.
  3876. #define AT91C_HDMA_IF0_BIGEND_IS_BIG_ENDIAN (0x1) // (HDMA) AHB-Lite Interface 0 is big endian.
  3877. #define AT91C_HDMA_IF1_BIGEND (0x1 << 1) // (HDMA) AHB-Lite Interface 1 endian mode.
  3878. #define AT91C_HDMA_IF1_BIGEND_IS_LITTLE_ENDIAN (0x0 << 1) // (HDMA) AHB-Lite Interface 1 is little endian.
  3879. #define AT91C_HDMA_IF1_BIGEND_IS_BIG_ENDIAN (0x1 << 1) // (HDMA) AHB-Lite Interface 1 is big endian.
  3880. #define AT91C_HDMA_IF2_BIGEND (0x1 << 2) // (HDMA) AHB-Lite Interface 2 endian mode.
  3881. #define AT91C_HDMA_IF2_BIGEND_IS_LITTLE_ENDIAN (0x0 << 2) // (HDMA) AHB-Lite Interface 2 is little endian.
  3882. #define AT91C_HDMA_IF2_BIGEND_IS_BIG_ENDIAN (0x1 << 2) // (HDMA) AHB-Lite Interface 2 is big endian.
  3883. #define AT91C_HDMA_IF3_BIGEND (0x1 << 3) // (HDMA) AHB-Lite Interface 3 endian mode.
  3884. #define AT91C_HDMA_IF3_BIGEND_IS_LITTLE_ENDIAN (0x0 << 3) // (HDMA) AHB-Lite Interface 3 is little endian.
  3885. #define AT91C_HDMA_IF3_BIGEND_IS_BIG_ENDIAN (0x1 << 3) // (HDMA) AHB-Lite Interface 3 is big endian.
  3886. #define AT91C_HDMA_ARB_CFG (0x1 << 4) // (HDMA) Arbiter mode.
  3887. #define AT91C_HDMA_ARB_CFG_FIXED (0x0 << 4) // (HDMA) Fixed priority arbiter.
  3888. #define AT91C_HDMA_ARB_CFG_ROUND_ROBIN (0x1 << 4) // (HDMA) Modified round robin arbiter.
  3889. // -------- HDMA_EN : (HDMA Offset: 0x4) --------
  3890. #define AT91C_HDMA_ENABLE (0x1 << 0) // (HDMA)
  3891. #define AT91C_HDMA_ENABLE_DISABLE (0x0) // (HDMA) Disables HDMA.
  3892. #define AT91C_HDMA_ENABLE_ENABLE (0x1) // (HDMA) Enables HDMA.
  3893. // -------- HDMA_SREQ : (HDMA Offset: 0x8) --------
  3894. #define AT91C_HDMA_SSREQ0 (0x1 << 0) // (HDMA) Request a source single transfer on channel 0
  3895. #define AT91C_HDMA_SSREQ0_0 (0x0) // (HDMA) No effect.
  3896. #define AT91C_HDMA_SSREQ0_1 (0x1) // (HDMA) Request a source single transfer on channel 0.
  3897. #define AT91C_HDMA_DSREQ0 (0x1 << 1) // (HDMA) Request a destination single transfer on channel 0
  3898. #define AT91C_HDMA_DSREQ0_0 (0x0 << 1) // (HDMA) No effect.
  3899. #define AT91C_HDMA_DSREQ0_1 (0x1 << 1) // (HDMA) Request a destination single transfer on channel 0.
  3900. #define AT91C_HDMA_SSREQ1 (0x1 << 2) // (HDMA) Request a source single transfer on channel 1
  3901. #define AT91C_HDMA_SSREQ1_0 (0x0 << 2) // (HDMA) No effect.
  3902. #define AT91C_HDMA_SSREQ1_1 (0x1 << 2) // (HDMA) Request a source single transfer on channel 1.
  3903. #define AT91C_HDMA_DSREQ1 (0x1 << 3) // (HDMA) Request a destination single transfer on channel 1
  3904. #define AT91C_HDMA_DSREQ1_0 (0x0 << 3) // (HDMA) No effect.
  3905. #define AT91C_HDMA_DSREQ1_1 (0x1 << 3) // (HDMA) Request a destination single transfer on channel 1.
  3906. #define AT91C_HDMA_SSREQ2 (0x1 << 4) // (HDMA) Request a source single transfer on channel 2
  3907. #define AT91C_HDMA_SSREQ2_0 (0x0 << 4) // (HDMA) No effect.
  3908. #define AT91C_HDMA_SSREQ2_1 (0x1 << 4) // (HDMA) Request a source single transfer on channel 2.
  3909. #define AT91C_HDMA_DSREQ2 (0x1 << 5) // (HDMA) Request a destination single transfer on channel 2
  3910. #define AT91C_HDMA_DSREQ2_0 (0x0 << 5) // (HDMA) No effect.
  3911. #define AT91C_HDMA_DSREQ2_1 (0x1 << 5) // (HDMA) Request a destination single transfer on channel 2.
  3912. #define AT91C_HDMA_SSREQ3 (0x1 << 6) // (HDMA) Request a source single transfer on channel 3
  3913. #define AT91C_HDMA_SSREQ3_0 (0x0 << 6) // (HDMA) No effect.
  3914. #define AT91C_HDMA_SSREQ3_1 (0x1 << 6) // (HDMA) Request a source single transfer on channel 3.
  3915. #define AT91C_HDMA_DSREQ3 (0x1 << 7) // (HDMA) Request a destination single transfer on channel 3
  3916. #define AT91C_HDMA_DSREQ3_0 (0x0 << 7) // (HDMA) No effect.
  3917. #define AT91C_HDMA_DSREQ3_1 (0x1 << 7) // (HDMA) Request a destination single transfer on channel 3.
  3918. #define AT91C_HDMA_SSREQ4 (0x1 << 8) // (HDMA) Request a source single transfer on channel 4
  3919. #define AT91C_HDMA_SSREQ4_0 (0x0 << 8) // (HDMA) No effect.
  3920. #define AT91C_HDMA_SSREQ4_1 (0x1 << 8) // (HDMA) Request a source single transfer on channel 4.
  3921. #define AT91C_HDMA_DSREQ4 (0x1 << 9) // (HDMA) Request a destination single transfer on channel 4
  3922. #define AT91C_HDMA_DSREQ4_0 (0x0 << 9) // (HDMA) No effect.
  3923. #define AT91C_HDMA_DSREQ4_1 (0x1 << 9) // (HDMA) Request a destination single transfer on channel 4.
  3924. #define AT91C_HDMA_SSREQ5 (0x1 << 10) // (HDMA) Request a source single transfer on channel 5
  3925. #define AT91C_HDMA_SSREQ5_0 (0x0 << 10) // (HDMA) No effect.
  3926. #define AT91C_HDMA_SSREQ5_1 (0x1 << 10) // (HDMA) Request a source single transfer on channel 5.
  3927. #define AT91C_HDMA_DSREQ6 (0x1 << 11) // (HDMA) Request a destination single transfer on channel 5
  3928. #define AT91C_HDMA_DSREQ6_0 (0x0 << 11) // (HDMA) No effect.
  3929. #define AT91C_HDMA_DSREQ6_1 (0x1 << 11) // (HDMA) Request a destination single transfer on channel 5.
  3930. #define AT91C_HDMA_SSREQ6 (0x1 << 12) // (HDMA) Request a source single transfer on channel 6
  3931. #define AT91C_HDMA_SSREQ6_0 (0x0 << 12) // (HDMA) No effect.
  3932. #define AT91C_HDMA_SSREQ6_1 (0x1 << 12) // (HDMA) Request a source single transfer on channel 6.
  3933. #define AT91C_HDMA_SSREQ7 (0x1 << 14) // (HDMA) Request a source single transfer on channel 7
  3934. #define AT91C_HDMA_SSREQ7_0 (0x0 << 14) // (HDMA) No effect.
  3935. #define AT91C_HDMA_SSREQ7_1 (0x1 << 14) // (HDMA) Request a source single transfer on channel 7.
  3936. #define AT91C_HDMA_DSREQ7 (0x1 << 15) // (HDMA) Request a destination single transfer on channel 7
  3937. #define AT91C_HDMA_DSREQ7_0 (0x0 << 15) // (HDMA) No effect.
  3938. #define AT91C_HDMA_DSREQ7_1 (0x1 << 15) // (HDMA) Request a destination single transfer on channel 7.
  3939. // -------- HDMA_CREQ : (HDMA Offset: 0xc) --------
  3940. #define AT91C_HDMA_SCREQ0 (0x1 << 0) // (HDMA) Request a source chunk transfer on channel 0
  3941. #define AT91C_HDMA_SCREQ0_0 (0x0) // (HDMA) No effect.
  3942. #define AT91C_HDMA_SCREQ0_1 (0x1) // (HDMA) Request a source chunk transfer on channel 0.
  3943. #define AT91C_HDMA_DCREQ0 (0x1 << 1) // (HDMA) Request a destination chunk transfer on channel 0
  3944. #define AT91C_HDMA_DCREQ0_0 (0x0 << 1) // (HDMA) No effect.
  3945. #define AT91C_HDMA_DCREQ0_1 (0x1 << 1) // (HDMA) Request a destination chunk transfer on channel 0.
  3946. #define AT91C_HDMA_SCREQ1 (0x1 << 2) // (HDMA) Request a source chunk transfer on channel 1
  3947. #define AT91C_HDMA_SCREQ1_0 (0x0 << 2) // (HDMA) No effect.
  3948. #define AT91C_HDMA_SCREQ1_1 (0x1 << 2) // (HDMA) Request a source chunk transfer on channel 1.
  3949. #define AT91C_HDMA_DCREQ1 (0x1 << 3) // (HDMA) Request a destination chunk transfer on channel 1
  3950. #define AT91C_HDMA_DCREQ1_0 (0x0 << 3) // (HDMA) No effect.
  3951. #define AT91C_HDMA_DCREQ1_1 (0x1 << 3) // (HDMA) Request a destination chunk transfer on channel 1.
  3952. #define AT91C_HDMA_SCREQ2 (0x1 << 4) // (HDMA) Request a source chunk transfer on channel 2
  3953. #define AT91C_HDMA_SCREQ2_0 (0x0 << 4) // (HDMA) No effect.
  3954. #define AT91C_HDMA_SCREQ2_1 (0x1 << 4) // (HDMA) Request a source chunk transfer on channel 2.
  3955. #define AT91C_HDMA_DCREQ2 (0x1 << 5) // (HDMA) Request a destination chunk transfer on channel 2
  3956. #define AT91C_HDMA_DCREQ2_0 (0x0 << 5) // (HDMA) No effect.
  3957. #define AT91C_HDMA_DCREQ2_1 (0x1 << 5) // (HDMA) Request a destination chunk transfer on channel 2.
  3958. #define AT91C_HDMA_SCREQ3 (0x1 << 6) // (HDMA) Request a source chunk transfer on channel 3
  3959. #define AT91C_HDMA_SCREQ3_0 (0x0 << 6) // (HDMA) No effect.
  3960. #define AT91C_HDMA_SCREQ3_1 (0x1 << 6) // (HDMA) Request a source chunk transfer on channel 3.
  3961. #define AT91C_HDMA_DCREQ3 (0x1 << 7) // (HDMA) Request a destination chunk transfer on channel 3
  3962. #define AT91C_HDMA_DCREQ3_0 (0x0 << 7) // (HDMA) No effect.
  3963. #define AT91C_HDMA_DCREQ3_1 (0x1 << 7) // (HDMA) Request a destination chunk transfer on channel 3.
  3964. #define AT91C_HDMA_SCREQ4 (0x1 << 8) // (HDMA) Request a source chunk transfer on channel 4
  3965. #define AT91C_HDMA_SCREQ4_0 (0x0 << 8) // (HDMA) No effect.
  3966. #define AT91C_HDMA_SCREQ4_1 (0x1 << 8) // (HDMA) Request a source chunk transfer on channel 4.
  3967. #define AT91C_HDMA_DCREQ4 (0x1 << 9) // (HDMA) Request a destination chunk transfer on channel 4
  3968. #define AT91C_HDMA_DCREQ4_0 (0x0 << 9) // (HDMA) No effect.
  3969. #define AT91C_HDMA_DCREQ4_1 (0x1 << 9) // (HDMA) Request a destination chunk transfer on channel 4.
  3970. #define AT91C_HDMA_SCREQ5 (0x1 << 10) // (HDMA) Request a source chunk transfer on channel 5
  3971. #define AT91C_HDMA_SCREQ5_0 (0x0 << 10) // (HDMA) No effect.
  3972. #define AT91C_HDMA_SCREQ5_1 (0x1 << 10) // (HDMA) Request a source chunk transfer on channel 5.
  3973. #define AT91C_HDMA_DCREQ6 (0x1 << 11) // (HDMA) Request a destination chunk transfer on channel 5
  3974. #define AT91C_HDMA_DCREQ6_0 (0x0 << 11) // (HDMA) No effect.
  3975. #define AT91C_HDMA_DCREQ6_1 (0x1 << 11) // (HDMA) Request a destination chunk transfer on channel 5.
  3976. #define AT91C_HDMA_SCREQ6 (0x1 << 12) // (HDMA) Request a source chunk transfer on channel 6
  3977. #define AT91C_HDMA_SCREQ6_0 (0x0 << 12) // (HDMA) No effect.
  3978. #define AT91C_HDMA_SCREQ6_1 (0x1 << 12) // (HDMA) Request a source chunk transfer on channel 6.
  3979. #define AT91C_HDMA_SCREQ7 (0x1 << 14) // (HDMA) Request a source chunk transfer on channel 7
  3980. #define AT91C_HDMA_SCREQ7_0 (0x0 << 14) // (HDMA) No effect.
  3981. #define AT91C_HDMA_SCREQ7_1 (0x1 << 14) // (HDMA) Request a source chunk transfer on channel 7.
  3982. #define AT91C_HDMA_DCREQ7 (0x1 << 15) // (HDMA) Request a destination chunk transfer on channel 7
  3983. #define AT91C_HDMA_DCREQ7_0 (0x0 << 15) // (HDMA) No effect.
  3984. #define AT91C_HDMA_DCREQ7_1 (0x1 << 15) // (HDMA) Request a destination chunk transfer on channel 7.
  3985. // -------- HDMA_LAST : (HDMA Offset: 0x10) --------
  3986. #define AT91C_HDMA_SLAST0 (0x1 << 0) // (HDMA) Indicates that this source request is the last transfer of the buffer on channel 0
  3987. #define AT91C_HDMA_SLAST0_0 (0x0) // (HDMA) No effect.
  3988. #define AT91C_HDMA_SLAST0_1 (0x1) // (HDMA) Writing one to SLASTx prior to writing one to SSREQx or SCREQx indicates that this source request is the last transfer of the buffer on channel 0.
  3989. #define AT91C_HDMA_DLAST0 (0x1 << 1) // (HDMA) Indicates that this destination request is the last transfer of the buffer on channel 0
  3990. #define AT91C_HDMA_DLAST0_0 (0x0 << 1) // (HDMA) No effect.
  3991. #define AT91C_HDMA_DLAST0_1 (0x1 << 1) // (HDMA) Writing one to DLASTx prior to writing one to DSREQx or DCREQx indicates that this destination request is the last transfer of the buffer on channel 0.
  3992. #define AT91C_HDMA_SLAST1 (0x1 << 2) // (HDMA) Indicates that this source request is the last transfer of the buffer on channel 1
  3993. #define AT91C_HDMA_SLAST1_0 (0x0 << 2) // (HDMA) No effect.
  3994. #define AT91C_HDMA_SLAST1_1 (0x1 << 2) // (HDMA) Writing one to SLASTx prior to writing one to SSREQx or SCREQx indicates that this source request is the last transfer of the buffer on channel 1.
  3995. #define AT91C_HDMA_DLAST1 (0x1 << 3) // (HDMA) Indicates that this destination request is the last transfer of the buffer on channel 1
  3996. #define AT91C_HDMA_DLAST1_0 (0x0 << 3) // (HDMA) No effect.
  3997. #define AT91C_HDMA_DLAST1_1 (0x1 << 3) // (HDMA) Writing one to DLASTx prior to writing one to DSREQx or DCREQx indicates that this destination request is the last transfer of the buffer on channel 1.
  3998. #define AT91C_HDMA_SLAST2 (0x1 << 4) // (HDMA) Indicates that this source request is the last transfer of the buffer on channel 2
  3999. #define AT91C_HDMA_SLAST2_0 (0x0 << 4) // (HDMA) No effect.
  4000. #define AT91C_HDMA_SLAST2_1 (0x1 << 4) // (HDMA) Writing one to SLASTx prior to writing one to SSREQx or SCREQx indicates that this source request is the last transfer of the buffer on channel 2.
  4001. #define AT91C_HDMA_DLAST2 (0x1 << 5) // (HDMA) Indicates that this destination request is the last transfer of the buffer on channel 2
  4002. #define AT91C_HDMA_DLAST2_0 (0x0 << 5) // (HDMA) No effect.
  4003. #define AT91C_HDMA_DLAST2_1 (0x1 << 5) // (HDMA) Writing one to DLASTx prior to writing one to DSREQx or DCREQx indicates that this destination request is the last transfer of the buffer on channel 2.
  4004. #define AT91C_HDMA_SLAST3 (0x1 << 6) // (HDMA) Indicates that this source request is the last transfer of the buffer on channel 3
  4005. #define AT91C_HDMA_SLAST3_0 (0x0 << 6) // (HDMA) No effect.
  4006. #define AT91C_HDMA_SLAST3_1 (0x1 << 6) // (HDMA) Writing one to SLASTx prior to writing one to SSREQx or SCREQx indicates that this source request is the last transfer of the buffer on channel 3.
  4007. #define AT91C_HDMA_DLAST3 (0x1 << 7) // (HDMA) Indicates that this destination request is the last transfer of the buffer on channel 3
  4008. #define AT91C_HDMA_DLAST3_0 (0x0 << 7) // (HDMA) No effect.
  4009. #define AT91C_HDMA_DLAST3_1 (0x1 << 7) // (HDMA) Writing one to DLASTx prior to writing one to DSREQx or DCREQx indicates that this destination request is the last transfer of the buffer on channel 3.
  4010. #define AT91C_HDMA_SLAST4 (0x1 << 8) // (HDMA) Indicates that this source request is the last transfer of the buffer on channel 4
  4011. #define AT91C_HDMA_SLAST4_0 (0x0 << 8) // (HDMA) No effect.
  4012. #define AT91C_HDMA_SLAST4_1 (0x1 << 8) // (HDMA) Writing one to SLASTx prior to writing one to SSREQx or SCREQx indicates that this source request is the last transfer of the buffer on channel 4.
  4013. #define AT91C_HDMA_DLAST4 (0x1 << 9) // (HDMA) Indicates that this destination request is the last transfer of the buffer on channel 4
  4014. #define AT91C_HDMA_DLAST4_0 (0x0 << 9) // (HDMA) No effect.
  4015. #define AT91C_HDMA_DLAST4_1 (0x1 << 9) // (HDMA) Writing one to DLASTx prior to writing one to DSREQx or DCREQx indicates that this destination request is the last transfer of the buffer on channel 4.
  4016. #define AT91C_HDMA_SLAST5 (0x1 << 10) // (HDMA) Indicates that this source request is the last transfer of the buffer on channel 5
  4017. #define AT91C_HDMA_SLAST5_0 (0x0 << 10) // (HDMA) No effect.
  4018. #define AT91C_HDMA_SLAST5_1 (0x1 << 10) // (HDMA) Writing one to SLASTx prior to writing one to SSREQx or SCREQx indicates that this source request is the last transfer of the buffer on channel 5.
  4019. #define AT91C_HDMA_DLAST6 (0x1 << 11) // (HDMA) Indicates that this destination request is the last transfer of the buffer on channel 5
  4020. #define AT91C_HDMA_DLAST6_0 (0x0 << 11) // (HDMA) No effect.
  4021. #define AT91C_HDMA_DLAST6_1 (0x1 << 11) // (HDMA) Writing one to DLASTx prior to writing one to DSREQx or DCREQx indicates that this destination request is the last transfer of the buffer on channel 5.
  4022. #define AT91C_HDMA_SLAST6 (0x1 << 12) // (HDMA) Indicates that this source request is the last transfer of the buffer on channel 6
  4023. #define AT91C_HDMA_SLAST6_0 (0x0 << 12) // (HDMA) No effect.
  4024. #define AT91C_HDMA_SLAST6_1 (0x1 << 12) // (HDMA) Writing one to SLASTx prior to writing one to SSREQx or SCREQx indicates that this source request is the last transfer of the buffer on channel 6.
  4025. #define AT91C_HDMA_SLAST7 (0x1 << 14) // (HDMA) Indicates that this source request is the last transfer of the buffer on channel 7
  4026. #define AT91C_HDMA_SLAST7_0 (0x0 << 14) // (HDMA) No effect.
  4027. #define AT91C_HDMA_SLAST7_1 (0x1 << 14) // (HDMA) Writing one to SLASTx prior to writing one to SSREQx or SCREQx indicates that this source request is the last transfer of the buffer on channel 7.
  4028. #define AT91C_HDMA_DLAST7 (0x1 << 15) // (HDMA) Indicates that this destination request is the last transfer of the buffer on channel 7
  4029. #define AT91C_HDMA_DLAST7_0 (0x0 << 15) // (HDMA) No effect.
  4030. #define AT91C_HDMA_DLAST7_1 (0x1 << 15) // (HDMA) Writing one to DLASTx prior to writing one to DSREQx or DCREQx indicates that this destination request is the last transfer of the buffer on channel 7.
  4031. // -------- HDMA_SYNC : (HDMA Offset: 0x14) --------
  4032. #define AT91C_SYNC_REQ (0xFFFF << 0) // (HDMA)
  4033. // -------- HDMA_EBCIER : (HDMA Offset: 0x18) Buffer Transfer Completed/Chained Buffer Transfer Completed/Access Error Interrupt Enable Register --------
  4034. #define AT91C_HDMA_BTC0 (0x1 << 0) // (HDMA) Buffer Transfer Completed Interrupt Enable/Disable/Status Register
  4035. #define AT91C_HDMA_BTC1 (0x1 << 1) // (HDMA) Buffer Transfer Completed Interrupt Enable/Disable/Status Register
  4036. #define AT91C_HDMA_BTC2 (0x1 << 2) // (HDMA) Buffer Transfer Completed Interrupt Enable/Disable/Status Register
  4037. #define AT91C_HDMA_BTC3 (0x1 << 3) // (HDMA) Buffer Transfer Completed Interrupt Enable/Disable/Status Register
  4038. #define AT91C_HDMA_BTC4 (0x1 << 4) // (HDMA) Buffer Transfer Completed Interrupt Enable/Disable/Status Register
  4039. #define AT91C_HDMA_BTC5 (0x1 << 5) // (HDMA) Buffer Transfer Completed Interrupt Enable/Disable/Status Register
  4040. #define AT91C_HDMA_BTC6 (0x1 << 6) // (HDMA) Buffer Transfer Completed Interrupt Enable/Disable/Status Register
  4041. #define AT91C_HDMA_BTC7 (0x1 << 7) // (HDMA) Buffer Transfer Completed Interrupt Enable/Disable/Status Register
  4042. #define AT91C_HDMA_CBTC0 (0x1 << 8) // (HDMA) Chained Buffer Transfer Completed Interrupt Enable/Disable/Status Register
  4043. #define AT91C_HDMA_CBTC1 (0x1 << 9) // (HDMA) Chained Buffer Transfer Completed Interrupt Enable/Disable/Status Register
  4044. #define AT91C_HDMA_CBTC2 (0x1 << 10) // (HDMA) Chained Buffer Transfer Completed Interrupt Enable/Disable/Status Register
  4045. #define AT91C_HDMA_CBTC3 (0x1 << 11) // (HDMA) Chained Buffer Transfer Completed Interrupt Enable/Disable/Status Register
  4046. #define AT91C_HDMA_CBTC4 (0x1 << 12) // (HDMA) Chained Buffer Transfer Completed Interrupt Enable/Disable/Status Register
  4047. #define AT91C_HDMA_CBTC5 (0x1 << 13) // (HDMA) Chained Buffer Transfer Completed Interrupt Enable/Disable/Status Register
  4048. #define AT91C_HDMA_CBTC6 (0x1 << 14) // (HDMA) Chained Buffer Transfer Completed Interrupt Enable/Disable/Status Register
  4049. #define AT91C_HDMA_CBTC7 (0x1 << 15) // (HDMA) Chained Buffer Transfer Completed Interrupt Enable/Disable/Status Register
  4050. #define AT91C_HDMA_ERR0 (0x1 << 16) // (HDMA) Access HDMA_Error Interrupt Enable/Disable/Status Register
  4051. #define AT91C_HDMA_ERR1 (0x1 << 17) // (HDMA) Access HDMA_Error Interrupt Enable/Disable/Status Register
  4052. #define AT91C_HDMA_ERR2 (0x1 << 18) // (HDMA) Access HDMA_Error Interrupt Enable/Disable/Status Register
  4053. #define AT91C_HDMA_ERR3 (0x1 << 19) // (HDMA) Access HDMA_Error Interrupt Enable/Disable/Status Register
  4054. #define AT91C_HDMA_ERR4 (0x1 << 20) // (HDMA) Access HDMA_Error Interrupt Enable/Disable/Status Register
  4055. #define AT91C_HDMA_ERR5 (0x1 << 21) // (HDMA) Access HDMA_Error Interrupt Enable/Disable/Status Register
  4056. #define AT91C_HDMA_ERR6 (0x1 << 22) // (HDMA) Access HDMA_Error Interrupt Enable/Disable/Status Register
  4057. #define AT91C_HDMA_ERR7 (0x1 << 23) // (HDMA) Access HDMA_Error Interrupt Enable/Disable/Status Register
  4058. // -------- HDMA_EBCIDR : (HDMA Offset: 0x1c) --------
  4059. // -------- HDMA_EBCIMR : (HDMA Offset: 0x20) --------
  4060. // -------- HDMA_EBCISR : (HDMA Offset: 0x24) --------
  4061. // -------- HDMA_CHER : (HDMA Offset: 0x28) --------
  4062. #define AT91C_HDMA_ENA0 (0x1 << 0) // (HDMA) When set, channel 0 enabled.
  4063. #define AT91C_HDMA_ENA0_0 (0x0) // (HDMA) No effect.
  4064. #define AT91C_HDMA_ENA0_1 (0x1) // (HDMA) Channel 0 enabled.
  4065. #define AT91C_HDMA_ENA1 (0x1 << 1) // (HDMA) When set, channel 1 enabled.
  4066. #define AT91C_HDMA_ENA1_0 (0x0 << 1) // (HDMA) No effect.
  4067. #define AT91C_HDMA_ENA1_1 (0x1 << 1) // (HDMA) Channel 1 enabled.
  4068. #define AT91C_HDMA_ENA2 (0x1 << 2) // (HDMA) When set, channel 2 enabled.
  4069. #define AT91C_HDMA_ENA2_0 (0x0 << 2) // (HDMA) No effect.
  4070. #define AT91C_HDMA_ENA2_1 (0x1 << 2) // (HDMA) Channel 2 enabled.
  4071. #define AT91C_HDMA_ENA3 (0x1 << 3) // (HDMA) When set, channel 3 enabled.
  4072. #define AT91C_HDMA_ENA3_0 (0x0 << 3) // (HDMA) No effect.
  4073. #define AT91C_HDMA_ENA3_1 (0x1 << 3) // (HDMA) Channel 3 enabled.
  4074. #define AT91C_HDMA_ENA4 (0x1 << 4) // (HDMA) When set, channel 4 enabled.
  4075. #define AT91C_HDMA_ENA4_0 (0x0 << 4) // (HDMA) No effect.
  4076. #define AT91C_HDMA_ENA4_1 (0x1 << 4) // (HDMA) Channel 4 enabled.
  4077. #define AT91C_HDMA_ENA5 (0x1 << 5) // (HDMA) When set, channel 5 enabled.
  4078. #define AT91C_HDMA_ENA5_0 (0x0 << 5) // (HDMA) No effect.
  4079. #define AT91C_HDMA_ENA5_1 (0x1 << 5) // (HDMA) Channel 5 enabled.
  4080. #define AT91C_HDMA_ENA6 (0x1 << 6) // (HDMA) When set, channel 6 enabled.
  4081. #define AT91C_HDMA_ENA6_0 (0x0 << 6) // (HDMA) No effect.
  4082. #define AT91C_HDMA_ENA6_1 (0x1 << 6) // (HDMA) Channel 6 enabled.
  4083. #define AT91C_HDMA_ENA7 (0x1 << 7) // (HDMA) When set, channel 7 enabled.
  4084. #define AT91C_HDMA_ENA7_0 (0x0 << 7) // (HDMA) No effect.
  4085. #define AT91C_HDMA_ENA7_1 (0x1 << 7) // (HDMA) Channel 7 enabled.
  4086. #define AT91C_HDMA_SUSP0 (0x1 << 8) // (HDMA) When set, channel 0 freezed and its current context.
  4087. #define AT91C_HDMA_SUSP0_0 (0x0 << 8) // (HDMA) No effect.
  4088. #define AT91C_HDMA_SUSP0_1 (0x1 << 8) // (HDMA) Channel 0 freezed.
  4089. #define AT91C_HDMA_SUSP1 (0x1 << 9) // (HDMA) When set, channel 1 freezed and its current context.
  4090. #define AT91C_HDMA_SUSP1_0 (0x0 << 9) // (HDMA) No effect.
  4091. #define AT91C_HDMA_SUSP1_1 (0x1 << 9) // (HDMA) Channel 1 freezed.
  4092. #define AT91C_HDMA_SUSP2 (0x1 << 10) // (HDMA) When set, channel 2 freezed and its current context.
  4093. #define AT91C_HDMA_SUSP2_0 (0x0 << 10) // (HDMA) No effect.
  4094. #define AT91C_HDMA_SUSP2_1 (0x1 << 10) // (HDMA) Channel 2 freezed.
  4095. #define AT91C_HDMA_SUSP3 (0x1 << 11) // (HDMA) When set, channel 3 freezed and its current context.
  4096. #define AT91C_HDMA_SUSP3_0 (0x0 << 11) // (HDMA) No effect.
  4097. #define AT91C_HDMA_SUSP3_1 (0x1 << 11) // (HDMA) Channel 3 freezed.
  4098. #define AT91C_HDMA_SUSP4 (0x1 << 12) // (HDMA) When set, channel 4 freezed and its current context.
  4099. #define AT91C_HDMA_SUSP4_0 (0x0 << 12) // (HDMA) No effect.
  4100. #define AT91C_HDMA_SUSP4_1 (0x1 << 12) // (HDMA) Channel 4 freezed.
  4101. #define AT91C_HDMA_SUSP5 (0x1 << 13) // (HDMA) When set, channel 5 freezed and its current context.
  4102. #define AT91C_HDMA_SUSP5_0 (0x0 << 13) // (HDMA) No effect.
  4103. #define AT91C_HDMA_SUSP5_1 (0x1 << 13) // (HDMA) Channel 5 freezed.
  4104. #define AT91C_HDMA_SUSP6 (0x1 << 14) // (HDMA) When set, channel 6 freezed and its current context.
  4105. #define AT91C_HDMA_SUSP6_0 (0x0 << 14) // (HDMA) No effect.
  4106. #define AT91C_HDMA_SUSP6_1 (0x1 << 14) // (HDMA) Channel 6 freezed.
  4107. #define AT91C_HDMA_SUSP7 (0x1 << 15) // (HDMA) When set, channel 7 freezed and its current context.
  4108. #define AT91C_HDMA_SUSP7_0 (0x0 << 15) // (HDMA) No effect.
  4109. #define AT91C_HDMA_SUSP7_1 (0x1 << 15) // (HDMA) Channel 7 freezed.
  4110. #define AT91C_HDMA_KEEP0 (0x1 << 24) // (HDMA) When set, it resumes the channel 0 from an automatic stall state.
  4111. #define AT91C_HDMA_KEEP0_0 (0x0 << 24) // (HDMA) No effect.
  4112. #define AT91C_HDMA_KEEP0_1 (0x1 << 24) // (HDMA) Resumes the channel 0.
  4113. #define AT91C_HDMA_KEEP1 (0x1 << 25) // (HDMA) When set, it resumes the channel 1 from an automatic stall state.
  4114. #define AT91C_HDMA_KEEP1_0 (0x0 << 25) // (HDMA) No effect.
  4115. #define AT91C_HDMA_KEEP1_1 (0x1 << 25) // (HDMA) Resumes the channel 1.
  4116. #define AT91C_HDMA_KEEP2 (0x1 << 26) // (HDMA) When set, it resumes the channel 2 from an automatic stall state.
  4117. #define AT91C_HDMA_KEEP2_0 (0x0 << 26) // (HDMA) No effect.
  4118. #define AT91C_HDMA_KEEP2_1 (0x1 << 26) // (HDMA) Resumes the channel 2.
  4119. #define AT91C_HDMA_KEEP3 (0x1 << 27) // (HDMA) When set, it resumes the channel 3 from an automatic stall state.
  4120. #define AT91C_HDMA_KEEP3_0 (0x0 << 27) // (HDMA) No effect.
  4121. #define AT91C_HDMA_KEEP3_1 (0x1 << 27) // (HDMA) Resumes the channel 3.
  4122. #define AT91C_HDMA_KEEP4 (0x1 << 28) // (HDMA) When set, it resumes the channel 4 from an automatic stall state.
  4123. #define AT91C_HDMA_KEEP4_0 (0x0 << 28) // (HDMA) No effect.
  4124. #define AT91C_HDMA_KEEP4_1 (0x1 << 28) // (HDMA) Resumes the channel 4.
  4125. #define AT91C_HDMA_KEEP5 (0x1 << 29) // (HDMA) When set, it resumes the channel 5 from an automatic stall state.
  4126. #define AT91C_HDMA_KEEP5_0 (0x0 << 29) // (HDMA) No effect.
  4127. #define AT91C_HDMA_KEEP5_1 (0x1 << 29) // (HDMA) Resumes the channel 5.
  4128. #define AT91C_HDMA_KEEP6 (0x1 << 30) // (HDMA) When set, it resumes the channel 6 from an automatic stall state.
  4129. #define AT91C_HDMA_KEEP6_0 (0x0 << 30) // (HDMA) No effect.
  4130. #define AT91C_HDMA_KEEP6_1 (0x1 << 30) // (HDMA) Resumes the channel 6.
  4131. #define AT91C_HDMA_KEEP7 (0x1 << 31) // (HDMA) When set, it resumes the channel 7 from an automatic stall state.
  4132. #define AT91C_HDMA_KEEP7_0 (0x0 << 31) // (HDMA) No effect.
  4133. #define AT91C_HDMA_KEEP7_1 (0x1 << 31) // (HDMA) Resumes the channel 7.
  4134. // -------- HDMA_CHDR : (HDMA Offset: 0x2c) --------
  4135. #define AT91C_HDMA_DIS0 (0x1 << 0) // (HDMA) Write one to this field to disable the channel 0.
  4136. #define AT91C_HDMA_DIS0_0 (0x0) // (HDMA) No effect.
  4137. #define AT91C_HDMA_DIS0_1 (0x1) // (HDMA) Disables the channel 0.
  4138. #define AT91C_HDMA_DIS1 (0x1 << 1) // (HDMA) Write one to this field to disable the channel 1.
  4139. #define AT91C_HDMA_DIS1_0 (0x0 << 1) // (HDMA) No effect.
  4140. #define AT91C_HDMA_DIS1_1 (0x1 << 1) // (HDMA) Disables the channel 1.
  4141. #define AT91C_HDMA_DIS2 (0x1 << 2) // (HDMA) Write one to this field to disable the channel 2.
  4142. #define AT91C_HDMA_DIS2_0 (0x0 << 2) // (HDMA) No effect.
  4143. #define AT91C_HDMA_DIS2_1 (0x1 << 2) // (HDMA) Disables the channel 2.
  4144. #define AT91C_HDMA_DIS3 (0x1 << 3) // (HDMA) Write one to this field to disable the channel 3.
  4145. #define AT91C_HDMA_DIS3_0 (0x0 << 3) // (HDMA) No effect.
  4146. #define AT91C_HDMA_DIS3_1 (0x1 << 3) // (HDMA) Disables the channel 3.
  4147. #define AT91C_HDMA_DIS4 (0x1 << 4) // (HDMA) Write one to this field to disable the channel 4.
  4148. #define AT91C_HDMA_DIS4_0 (0x0 << 4) // (HDMA) No effect.
  4149. #define AT91C_HDMA_DIS4_1 (0x1 << 4) // (HDMA) Disables the channel 4.
  4150. #define AT91C_HDMA_DIS5 (0x1 << 5) // (HDMA) Write one to this field to disable the channel 5.
  4151. #define AT91C_HDMA_DIS5_0 (0x0 << 5) // (HDMA) No effect.
  4152. #define AT91C_HDMA_DIS5_1 (0x1 << 5) // (HDMA) Disables the channel 5.
  4153. #define AT91C_HDMA_DIS6 (0x1 << 6) // (HDMA) Write one to this field to disable the channel 6.
  4154. #define AT91C_HDMA_DIS6_0 (0x0 << 6) // (HDMA) No effect.
  4155. #define AT91C_HDMA_DIS6_1 (0x1 << 6) // (HDMA) Disables the channel 6.
  4156. #define AT91C_HDMA_DIS7 (0x1 << 7) // (HDMA) Write one to this field to disable the channel 7.
  4157. #define AT91C_HDMA_DIS7_0 (0x0 << 7) // (HDMA) No effect.
  4158. #define AT91C_HDMA_DIS7_1 (0x1 << 7) // (HDMA) Disables the channel 7.
  4159. #define AT91C_HDMA_RES0 (0x1 << 8) // (HDMA) Write one to this field to resume the channel 0 transfer restoring its context.
  4160. #define AT91C_HDMA_RES0_0 (0x0 << 8) // (HDMA) No effect.
  4161. #define AT91C_HDMA_RES0_1 (0x1 << 8) // (HDMA) Resumes the channel 0.
  4162. #define AT91C_HDMA_RES1 (0x1 << 9) // (HDMA) Write one to this field to resume the channel 1 transfer restoring its context.
  4163. #define AT91C_HDMA_RES1_0 (0x0 << 9) // (HDMA) No effect.
  4164. #define AT91C_HDMA_RES1_1 (0x1 << 9) // (HDMA) Resumes the channel 1.
  4165. #define AT91C_HDMA_RES2 (0x1 << 10) // (HDMA) Write one to this field to resume the channel 2 transfer restoring its context.
  4166. #define AT91C_HDMA_RES2_0 (0x0 << 10) // (HDMA) No effect.
  4167. #define AT91C_HDMA_RES2_1 (0x1 << 10) // (HDMA) Resumes the channel 2.
  4168. #define AT91C_HDMA_RES3 (0x1 << 11) // (HDMA) Write one to this field to resume the channel 3 transfer restoring its context.
  4169. #define AT91C_HDMA_RES3_0 (0x0 << 11) // (HDMA) No effect.
  4170. #define AT91C_HDMA_RES3_1 (0x1 << 11) // (HDMA) Resumes the channel 3.
  4171. #define AT91C_HDMA_RES4 (0x1 << 12) // (HDMA) Write one to this field to resume the channel 4 transfer restoring its context.
  4172. #define AT91C_HDMA_RES4_0 (0x0 << 12) // (HDMA) No effect.
  4173. #define AT91C_HDMA_RES4_1 (0x1 << 12) // (HDMA) Resumes the channel 4.
  4174. #define AT91C_HDMA_RES5 (0x1 << 13) // (HDMA) Write one to this field to resume the channel 5 transfer restoring its context.
  4175. #define AT91C_HDMA_RES5_0 (0x0 << 13) // (HDMA) No effect.
  4176. #define AT91C_HDMA_RES5_1 (0x1 << 13) // (HDMA) Resumes the channel 5.
  4177. #define AT91C_HDMA_RES6 (0x1 << 14) // (HDMA) Write one to this field to resume the channel 6 transfer restoring its context.
  4178. #define AT91C_HDMA_RES6_0 (0x0 << 14) // (HDMA) No effect.
  4179. #define AT91C_HDMA_RES6_1 (0x1 << 14) // (HDMA) Resumes the channel 6.
  4180. #define AT91C_HDMA_RES7 (0x1 << 15) // (HDMA) Write one to this field to resume the channel 7 transfer restoring its context.
  4181. #define AT91C_HDMA_RES7_0 (0x0 << 15) // (HDMA) No effect.
  4182. #define AT91C_HDMA_RES7_1 (0x1 << 15) // (HDMA) Resumes the channel 7.
  4183. // -------- HDMA_CHSR : (HDMA Offset: 0x30) --------
  4184. #define AT91C_HDMA_EMPT0 (0x1 << 16) // (HDMA) When set, channel 0 is empty.
  4185. #define AT91C_HDMA_EMPT0_0 (0x0 << 16) // (HDMA) No effect.
  4186. #define AT91C_HDMA_EMPT0_1 (0x1 << 16) // (HDMA) Channel 0 empty.
  4187. #define AT91C_HDMA_EMPT1 (0x1 << 17) // (HDMA) When set, channel 1 is empty.
  4188. #define AT91C_HDMA_EMPT1_0 (0x0 << 17) // (HDMA) No effect.
  4189. #define AT91C_HDMA_EMPT1_1 (0x1 << 17) // (HDMA) Channel 1 empty.
  4190. #define AT91C_HDMA_EMPT2 (0x1 << 18) // (HDMA) When set, channel 2 is empty.
  4191. #define AT91C_HDMA_EMPT2_0 (0x0 << 18) // (HDMA) No effect.
  4192. #define AT91C_HDMA_EMPT2_1 (0x1 << 18) // (HDMA) Channel 2 empty.
  4193. #define AT91C_HDMA_EMPT3 (0x1 << 19) // (HDMA) When set, channel 3 is empty.
  4194. #define AT91C_HDMA_EMPT3_0 (0x0 << 19) // (HDMA) No effect.
  4195. #define AT91C_HDMA_EMPT3_1 (0x1 << 19) // (HDMA) Channel 3 empty.
  4196. #define AT91C_HDMA_EMPT4 (0x1 << 20) // (HDMA) When set, channel 4 is empty.
  4197. #define AT91C_HDMA_EMPT4_0 (0x0 << 20) // (HDMA) No effect.
  4198. #define AT91C_HDMA_EMPT4_1 (0x1 << 20) // (HDMA) Channel 4 empty.
  4199. #define AT91C_HDMA_EMPT5 (0x1 << 21) // (HDMA) When set, channel 5 is empty.
  4200. #define AT91C_HDMA_EMPT5_0 (0x0 << 21) // (HDMA) No effect.
  4201. #define AT91C_HDMA_EMPT5_1 (0x1 << 21) // (HDMA) Channel 5 empty.
  4202. #define AT91C_HDMA_EMPT6 (0x1 << 22) // (HDMA) When set, channel 6 is empty.
  4203. #define AT91C_HDMA_EMPT6_0 (0x0 << 22) // (HDMA) No effect.
  4204. #define AT91C_HDMA_EMPT6_1 (0x1 << 22) // (HDMA) Channel 6 empty.
  4205. #define AT91C_HDMA_EMPT7 (0x1 << 23) // (HDMA) When set, channel 7 is empty.
  4206. #define AT91C_HDMA_EMPT7_0 (0x0 << 23) // (HDMA) No effect.
  4207. #define AT91C_HDMA_EMPT7_1 (0x1 << 23) // (HDMA) Channel 7 empty.
  4208. #define AT91C_HDMA_STAL0 (0x1 << 24) // (HDMA) When set, channel 0 is stalled.
  4209. #define AT91C_HDMA_STAL0_0 (0x0 << 24) // (HDMA) No effect.
  4210. #define AT91C_HDMA_STAL0_1 (0x1 << 24) // (HDMA) Channel 0 stalled.
  4211. #define AT91C_HDMA_STAL1 (0x1 << 25) // (HDMA) When set, channel 1 is stalled.
  4212. #define AT91C_HDMA_STAL1_0 (0x0 << 25) // (HDMA) No effect.
  4213. #define AT91C_HDMA_STAL1_1 (0x1 << 25) // (HDMA) Channel 1 stalled.
  4214. #define AT91C_HDMA_STAL2 (0x1 << 26) // (HDMA) When set, channel 2 is stalled.
  4215. #define AT91C_HDMA_STAL2_0 (0x0 << 26) // (HDMA) No effect.
  4216. #define AT91C_HDMA_STAL2_1 (0x1 << 26) // (HDMA) Channel 2 stalled.
  4217. #define AT91C_HDMA_STAL3 (0x1 << 27) // (HDMA) When set, channel 3 is stalled.
  4218. #define AT91C_HDMA_STAL3_0 (0x0 << 27) // (HDMA) No effect.
  4219. #define AT91C_HDMA_STAL3_1 (0x1 << 27) // (HDMA) Channel 3 stalled.
  4220. #define AT91C_HDMA_STAL4 (0x1 << 28) // (HDMA) When set, channel 4 is stalled.
  4221. #define AT91C_HDMA_STAL4_0 (0x0 << 28) // (HDMA) No effect.
  4222. #define AT91C_HDMA_STAL4_1 (0x1 << 28) // (HDMA) Channel 4 stalled.
  4223. #define AT91C_HDMA_STAL5 (0x1 << 29) // (HDMA) When set, channel 5 is stalled.
  4224. #define AT91C_HDMA_STAL5_0 (0x0 << 29) // (HDMA) No effect.
  4225. #define AT91C_HDMA_STAL5_1 (0x1 << 29) // (HDMA) Channel 5 stalled.
  4226. #define AT91C_HDMA_STAL6 (0x1 << 30) // (HDMA) When set, channel 6 is stalled.
  4227. #define AT91C_HDMA_STAL6_0 (0x0 << 30) // (HDMA) No effect.
  4228. #define AT91C_HDMA_STAL6_1 (0x1 << 30) // (HDMA) Channel 6 stalled.
  4229. #define AT91C_HDMA_STAL7 (0x1 << 31) // (HDMA) When set, channel 7 is stalled.
  4230. #define AT91C_HDMA_STAL7_0 (0x0 << 31) // (HDMA) No effect.
  4231. #define AT91C_HDMA_STAL7_1 (0x1 << 31) // (HDMA) Channel 7 stalled.
  4232. // -------- HDMA_RSVD : (HDMA Offset: 0x34) --------
  4233. // -------- HDMA_RSVD : (HDMA Offset: 0x38) --------
  4234. // -------- HDMA_VER : (HDMA Offset: 0x1fc) --------
  4235. // *****************************************************************************
  4236. // REGISTER ADDRESS DEFINITION FOR AT91SAM3U4
  4237. // *****************************************************************************
  4238. // ========== Register definition for SYS peripheral ==========
  4239. #define AT91C_SYS_GPBR (AT91_CAST(AT91_REG *) 0x400E1290) // (SYS) General Purpose Register
  4240. // ========== Register definition for HSMC4_CS0 peripheral ==========
  4241. #define AT91C_CS0_MODE (AT91_CAST(AT91_REG *) 0x400E0080) // (HSMC4_CS0) Mode Register
  4242. #define AT91C_CS0_PULSE (AT91_CAST(AT91_REG *) 0x400E0074) // (HSMC4_CS0) Pulse Register
  4243. #define AT91C_CS0_CYCLE (AT91_CAST(AT91_REG *) 0x400E0078) // (HSMC4_CS0) Cycle Register
  4244. #define AT91C_CS0_TIMINGS (AT91_CAST(AT91_REG *) 0x400E007C) // (HSMC4_CS0) Timmings Register
  4245. #define AT91C_CS0_SETUP (AT91_CAST(AT91_REG *) 0x400E0070) // (HSMC4_CS0) Setup Register
  4246. // ========== Register definition for HSMC4_CS1 peripheral ==========
  4247. #define AT91C_CS1_CYCLE (AT91_CAST(AT91_REG *) 0x400E008C) // (HSMC4_CS1) Cycle Register
  4248. #define AT91C_CS1_PULSE (AT91_CAST(AT91_REG *) 0x400E0088) // (HSMC4_CS1) Pulse Register
  4249. #define AT91C_CS1_MODE (AT91_CAST(AT91_REG *) 0x400E0094) // (HSMC4_CS1) Mode Register
  4250. #define AT91C_CS1_SETUP (AT91_CAST(AT91_REG *) 0x400E0084) // (HSMC4_CS1) Setup Register
  4251. #define AT91C_CS1_TIMINGS (AT91_CAST(AT91_REG *) 0x400E0090) // (HSMC4_CS1) Timmings Register
  4252. // ========== Register definition for HSMC4_CS2 peripheral ==========
  4253. #define AT91C_CS2_PULSE (AT91_CAST(AT91_REG *) 0x400E009C) // (HSMC4_CS2) Pulse Register
  4254. #define AT91C_CS2_TIMINGS (AT91_CAST(AT91_REG *) 0x400E00A4) // (HSMC4_CS2) Timmings Register
  4255. #define AT91C_CS2_CYCLE (AT91_CAST(AT91_REG *) 0x400E00A0) // (HSMC4_CS2) Cycle Register
  4256. #define AT91C_CS2_MODE (AT91_CAST(AT91_REG *) 0x400E00A8) // (HSMC4_CS2) Mode Register
  4257. #define AT91C_CS2_SETUP (AT91_CAST(AT91_REG *) 0x400E0098) // (HSMC4_CS2) Setup Register
  4258. // ========== Register definition for HSMC4_CS3 peripheral ==========
  4259. #define AT91C_CS3_MODE (AT91_CAST(AT91_REG *) 0x400E00BC) // (HSMC4_CS3) Mode Register
  4260. #define AT91C_CS3_TIMINGS (AT91_CAST(AT91_REG *) 0x400E00B8) // (HSMC4_CS3) Timmings Register
  4261. #define AT91C_CS3_SETUP (AT91_CAST(AT91_REG *) 0x400E00AC) // (HSMC4_CS3) Setup Register
  4262. #define AT91C_CS3_CYCLE (AT91_CAST(AT91_REG *) 0x400E00B4) // (HSMC4_CS3) Cycle Register
  4263. #define AT91C_CS3_PULSE (AT91_CAST(AT91_REG *) 0x400E00B0) // (HSMC4_CS3) Pulse Register
  4264. // ========== Register definition for HSMC4_NFC peripheral ==========
  4265. #define AT91C_NFC_MODE (AT91_CAST(AT91_REG *) 0x400E010C) // (HSMC4_NFC) Mode Register
  4266. #define AT91C_NFC_CYCLE (AT91_CAST(AT91_REG *) 0x400E0104) // (HSMC4_NFC) Cycle Register
  4267. #define AT91C_NFC_PULSE (AT91_CAST(AT91_REG *) 0x400E0100) // (HSMC4_NFC) Pulse Register
  4268. #define AT91C_NFC_SETUP (AT91_CAST(AT91_REG *) 0x400E00FC) // (HSMC4_NFC) Setup Register
  4269. #define AT91C_NFC_TIMINGS (AT91_CAST(AT91_REG *) 0x400E0108) // (HSMC4_NFC) Timmings Register
  4270. // ========== Register definition for HSMC4 peripheral ==========
  4271. #define AT91C_HSMC4_IPNAME1 (AT91_CAST(AT91_REG *) 0x400E01F0) // (HSMC4) Write Protection Status Register
  4272. #define AT91C_HSMC4_ECCPR6 (AT91_CAST(AT91_REG *) 0x400E0048) // (HSMC4) ECC Parity register 6
  4273. #define AT91C_HSMC4_ADDRSIZE (AT91_CAST(AT91_REG *) 0x400E01EC) // (HSMC4) Write Protection Status Register
  4274. #define AT91C_HSMC4_ECCPR11 (AT91_CAST(AT91_REG *) 0x400E005C) // (HSMC4) ECC Parity register 11
  4275. #define AT91C_HSMC4_SR (AT91_CAST(AT91_REG *) 0x400E0008) // (HSMC4) Status Register
  4276. #define AT91C_HSMC4_IMR (AT91_CAST(AT91_REG *) 0x400E0014) // (HSMC4) Interrupt Mask Register
  4277. #define AT91C_HSMC4_WPSR (AT91_CAST(AT91_REG *) 0x400E01E8) // (HSMC4) Write Protection Status Register
  4278. #define AT91C_HSMC4_BANK (AT91_CAST(AT91_REG *) 0x400E001C) // (HSMC4) Bank Register
  4279. #define AT91C_HSMC4_ECCPR8 (AT91_CAST(AT91_REG *) 0x400E0050) // (HSMC4) ECC Parity register 8
  4280. #define AT91C_HSMC4_WPCR (AT91_CAST(AT91_REG *) 0x400E01E4) // (HSMC4) Write Protection Control register
  4281. #define AT91C_HSMC4_ECCPR2 (AT91_CAST(AT91_REG *) 0x400E0038) // (HSMC4) ECC Parity register 2
  4282. #define AT91C_HSMC4_ECCPR1 (AT91_CAST(AT91_REG *) 0x400E0030) // (HSMC4) ECC Parity register 1
  4283. #define AT91C_HSMC4_ECCSR2 (AT91_CAST(AT91_REG *) 0x400E0034) // (HSMC4) ECC Status register 2
  4284. #define AT91C_HSMC4_OCMS (AT91_CAST(AT91_REG *) 0x400E0110) // (HSMC4) OCMS MODE register
  4285. #define AT91C_HSMC4_ECCPR9 (AT91_CAST(AT91_REG *) 0x400E0054) // (HSMC4) ECC Parity register 9
  4286. #define AT91C_HSMC4_DUMMY (AT91_CAST(AT91_REG *) 0x400E0200) // (HSMC4) This rtegister was created only ti have AHB constants
  4287. #define AT91C_HSMC4_ECCPR5 (AT91_CAST(AT91_REG *) 0x400E0044) // (HSMC4) ECC Parity register 5
  4288. #define AT91C_HSMC4_ECCCR (AT91_CAST(AT91_REG *) 0x400E0020) // (HSMC4) ECC reset register
  4289. #define AT91C_HSMC4_KEY2 (AT91_CAST(AT91_REG *) 0x400E0118) // (HSMC4) KEY2 Register
  4290. #define AT91C_HSMC4_IER (AT91_CAST(AT91_REG *) 0x400E000C) // (HSMC4) Interrupt Enable Register
  4291. #define AT91C_HSMC4_ECCSR1 (AT91_CAST(AT91_REG *) 0x400E0028) // (HSMC4) ECC Status register 1
  4292. #define AT91C_HSMC4_IDR (AT91_CAST(AT91_REG *) 0x400E0010) // (HSMC4) Interrupt Disable Register
  4293. #define AT91C_HSMC4_ECCPR0 (AT91_CAST(AT91_REG *) 0x400E002C) // (HSMC4) ECC Parity register 0
  4294. #define AT91C_HSMC4_FEATURES (AT91_CAST(AT91_REG *) 0x400E01F8) // (HSMC4) Write Protection Status Register
  4295. #define AT91C_HSMC4_ECCPR7 (AT91_CAST(AT91_REG *) 0x400E004C) // (HSMC4) ECC Parity register 7
  4296. #define AT91C_HSMC4_ECCPR12 (AT91_CAST(AT91_REG *) 0x400E0060) // (HSMC4) ECC Parity register 12
  4297. #define AT91C_HSMC4_ECCPR10 (AT91_CAST(AT91_REG *) 0x400E0058) // (HSMC4) ECC Parity register 10
  4298. #define AT91C_HSMC4_KEY1 (AT91_CAST(AT91_REG *) 0x400E0114) // (HSMC4) KEY1 Register
  4299. #define AT91C_HSMC4_VER (AT91_CAST(AT91_REG *) 0x400E01FC) // (HSMC4) HSMC4 Version Register
  4300. #define AT91C_HSMC4_Eccpr15 (AT91_CAST(AT91_REG *) 0x400E006C) // (HSMC4) ECC Parity register 15
  4301. #define AT91C_HSMC4_ECCPR4 (AT91_CAST(AT91_REG *) 0x400E0040) // (HSMC4) ECC Parity register 4
  4302. #define AT91C_HSMC4_IPNAME2 (AT91_CAST(AT91_REG *) 0x400E01F4) // (HSMC4) Write Protection Status Register
  4303. #define AT91C_HSMC4_ECCCMD (AT91_CAST(AT91_REG *) 0x400E0024) // (HSMC4) ECC Page size register
  4304. #define AT91C_HSMC4_ADDR (AT91_CAST(AT91_REG *) 0x400E0018) // (HSMC4) Address Cycle Zero Register
  4305. #define AT91C_HSMC4_ECCPR3 (AT91_CAST(AT91_REG *) 0x400E003C) // (HSMC4) ECC Parity register 3
  4306. #define AT91C_HSMC4_CFG (AT91_CAST(AT91_REG *) 0x400E0000) // (HSMC4) Configuration Register
  4307. #define AT91C_HSMC4_CTRL (AT91_CAST(AT91_REG *) 0x400E0004) // (HSMC4) Control Register
  4308. #define AT91C_HSMC4_ECCPR13 (AT91_CAST(AT91_REG *) 0x400E0064) // (HSMC4) ECC Parity register 13
  4309. #define AT91C_HSMC4_ECCPR14 (AT91_CAST(AT91_REG *) 0x400E0068) // (HSMC4) ECC Parity register 14
  4310. // ========== Register definition for MATRIX peripheral ==========
  4311. #define AT91C_MATRIX_SFR2 (AT91_CAST(AT91_REG *) 0x400E0318) // (MATRIX) Special Function Register 2
  4312. #define AT91C_MATRIX_SFR3 (AT91_CAST(AT91_REG *) 0x400E031C) // (MATRIX) Special Function Register 3
  4313. #define AT91C_MATRIX_SCFG8 (AT91_CAST(AT91_REG *) 0x400E0260) // (MATRIX) Slave Configuration Register 8
  4314. #define AT91C_MATRIX_MCFG2 (AT91_CAST(AT91_REG *) 0x400E0208) // (MATRIX) Master Configuration Register 2
  4315. #define AT91C_MATRIX_MCFG7 (AT91_CAST(AT91_REG *) 0x400E021C) // (MATRIX) Master Configuration Register 7
  4316. #define AT91C_MATRIX_SCFG3 (AT91_CAST(AT91_REG *) 0x400E024C) // (MATRIX) Slave Configuration Register 3
  4317. #define AT91C_MATRIX_SCFG0 (AT91_CAST(AT91_REG *) 0x400E0240) // (MATRIX) Slave Configuration Register 0
  4318. #define AT91C_MATRIX_SFR12 (AT91_CAST(AT91_REG *) 0x400E0340) // (MATRIX) Special Function Register 12
  4319. #define AT91C_MATRIX_SCFG1 (AT91_CAST(AT91_REG *) 0x400E0244) // (MATRIX) Slave Configuration Register 1
  4320. #define AT91C_MATRIX_SFR8 (AT91_CAST(AT91_REG *) 0x400E0330) // (MATRIX) Special Function Register 8
  4321. #define AT91C_MATRIX_VER (AT91_CAST(AT91_REG *) 0x400E03FC) // (MATRIX) HMATRIX2 VERSION REGISTER
  4322. #define AT91C_MATRIX_SFR13 (AT91_CAST(AT91_REG *) 0x400E0344) // (MATRIX) Special Function Register 13
  4323. #define AT91C_MATRIX_SFR5 (AT91_CAST(AT91_REG *) 0x400E0324) // (MATRIX) Special Function Register 5
  4324. #define AT91C_MATRIX_MCFG0 (AT91_CAST(AT91_REG *) 0x400E0200) // (MATRIX) Master Configuration Register 0 : ARM I and D
  4325. #define AT91C_MATRIX_SCFG6 (AT91_CAST(AT91_REG *) 0x400E0258) // (MATRIX) Slave Configuration Register 6
  4326. #define AT91C_MATRIX_SFR14 (AT91_CAST(AT91_REG *) 0x400E0348) // (MATRIX) Special Function Register 14
  4327. #define AT91C_MATRIX_SFR1 (AT91_CAST(AT91_REG *) 0x400E0314) // (MATRIX) Special Function Register 1
  4328. #define AT91C_MATRIX_SFR15 (AT91_CAST(AT91_REG *) 0x400E034C) // (MATRIX) Special Function Register 15
  4329. #define AT91C_MATRIX_SFR6 (AT91_CAST(AT91_REG *) 0x400E0328) // (MATRIX) Special Function Register 6
  4330. #define AT91C_MATRIX_SFR11 (AT91_CAST(AT91_REG *) 0x400E033C) // (MATRIX) Special Function Register 11
  4331. #define AT91C_MATRIX_IPNAME2 (AT91_CAST(AT91_REG *) 0x400E03F4) // (MATRIX) HMATRIX2 IPNAME2 REGISTER
  4332. #define AT91C_MATRIX_ADDRSIZE (AT91_CAST(AT91_REG *) 0x400E03EC) // (MATRIX) HMATRIX2 ADDRSIZE REGISTER
  4333. #define AT91C_MATRIX_MCFG5 (AT91_CAST(AT91_REG *) 0x400E0214) // (MATRIX) Master Configuration Register 5
  4334. #define AT91C_MATRIX_SFR9 (AT91_CAST(AT91_REG *) 0x400E0334) // (MATRIX) Special Function Register 9
  4335. #define AT91C_MATRIX_MCFG3 (AT91_CAST(AT91_REG *) 0x400E020C) // (MATRIX) Master Configuration Register 3
  4336. #define AT91C_MATRIX_SCFG4 (AT91_CAST(AT91_REG *) 0x400E0250) // (MATRIX) Slave Configuration Register 4
  4337. #define AT91C_MATRIX_MCFG1 (AT91_CAST(AT91_REG *) 0x400E0204) // (MATRIX) Master Configuration Register 1 : ARM S
  4338. #define AT91C_MATRIX_SCFG7 (AT91_CAST(AT91_REG *) 0x400E025C) // (MATRIX) Slave Configuration Register 5
  4339. #define AT91C_MATRIX_SFR10 (AT91_CAST(AT91_REG *) 0x400E0338) // (MATRIX) Special Function Register 10
  4340. #define AT91C_MATRIX_SCFG2 (AT91_CAST(AT91_REG *) 0x400E0248) // (MATRIX) Slave Configuration Register 2
  4341. #define AT91C_MATRIX_SFR7 (AT91_CAST(AT91_REG *) 0x400E032C) // (MATRIX) Special Function Register 7
  4342. #define AT91C_MATRIX_IPNAME1 (AT91_CAST(AT91_REG *) 0x400E03F0) // (MATRIX) HMATRIX2 IPNAME1 REGISTER
  4343. #define AT91C_MATRIX_MCFG4 (AT91_CAST(AT91_REG *) 0x400E0210) // (MATRIX) Master Configuration Register 4
  4344. #define AT91C_MATRIX_SFR0 (AT91_CAST(AT91_REG *) 0x400E0310) // (MATRIX) Special Function Register 0
  4345. #define AT91C_MATRIX_FEATURES (AT91_CAST(AT91_REG *) 0x400E03F8) // (MATRIX) HMATRIX2 FEATURES REGISTER
  4346. #define AT91C_MATRIX_SCFG5 (AT91_CAST(AT91_REG *) 0x400E0254) // (MATRIX) Slave Configuration Register 5
  4347. #define AT91C_MATRIX_MCFG6 (AT91_CAST(AT91_REG *) 0x400E0218) // (MATRIX) Master Configuration Register 6
  4348. #define AT91C_MATRIX_SCFG9 (AT91_CAST(AT91_REG *) 0x400E0264) // (MATRIX) Slave Configuration Register 9
  4349. #define AT91C_MATRIX_SFR4 (AT91_CAST(AT91_REG *) 0x400E0320) // (MATRIX) Special Function Register 4
  4350. // ========== Register definition for NVIC peripheral ==========
  4351. #define AT91C_NVIC_MMAR (AT91_CAST(AT91_REG *) 0xE000ED34) // (NVIC) Mem Manage Address Register
  4352. #define AT91C_NVIC_STIR (AT91_CAST(AT91_REG *) 0xE000EF00) // (NVIC) Software Trigger Interrupt Register
  4353. #define AT91C_NVIC_MMFR2 (AT91_CAST(AT91_REG *) 0xE000ED58) // (NVIC) Memory Model Feature register2
  4354. #define AT91C_NVIC_CPUID (AT91_CAST(AT91_REG *) 0xE000ED00) // (NVIC) CPUID Base Register
  4355. #define AT91C_NVIC_DFSR (AT91_CAST(AT91_REG *) 0xE000ED30) // (NVIC) Debug Fault Status Register
  4356. #define AT91C_NVIC_HAND4PR (AT91_CAST(AT91_REG *) 0xE000ED18) // (NVIC) System Handlers 4-7 Priority Register
  4357. #define AT91C_NVIC_HFSR (AT91_CAST(AT91_REG *) 0xE000ED2C) // (NVIC) Hard Fault Status Register
  4358. #define AT91C_NVIC_PID6 (AT91_CAST(AT91_REG *) 0xE000EFD8) // (NVIC) Peripheral identification register
  4359. #define AT91C_NVIC_PFR0 (AT91_CAST(AT91_REG *) 0xE000ED40) // (NVIC) Processor Feature register0
  4360. #define AT91C_NVIC_VTOFFR (AT91_CAST(AT91_REG *) 0xE000ED08) // (NVIC) Vector Table Offset Register
  4361. #define AT91C_NVIC_ISPR (AT91_CAST(AT91_REG *) 0xE000E200) // (NVIC) Set Pending Register
  4362. #define AT91C_NVIC_PID0 (AT91_CAST(AT91_REG *) 0xE000EFE0) // (NVIC) Peripheral identification register b7:0
  4363. #define AT91C_NVIC_PID7 (AT91_CAST(AT91_REG *) 0xE000EFDC) // (NVIC) Peripheral identification register
  4364. #define AT91C_NVIC_STICKRVR (AT91_CAST(AT91_REG *) 0xE000E014) // (NVIC) SysTick Reload Value Register
  4365. #define AT91C_NVIC_PID2 (AT91_CAST(AT91_REG *) 0xE000EFE8) // (NVIC) Peripheral identification register b23:16
  4366. #define AT91C_NVIC_ISAR0 (AT91_CAST(AT91_REG *) 0xE000ED60) // (NVIC) ISA Feature register0
  4367. #define AT91C_NVIC_SCR (AT91_CAST(AT91_REG *) 0xE000ED10) // (NVIC) System Control Register
  4368. #define AT91C_NVIC_PID4 (AT91_CAST(AT91_REG *) 0xE000EFD0) // (NVIC) Peripheral identification register
  4369. #define AT91C_NVIC_ISAR2 (AT91_CAST(AT91_REG *) 0xE000ED68) // (NVIC) ISA Feature register2
  4370. #define AT91C_NVIC_ISER (AT91_CAST(AT91_REG *) 0xE000E100) // (NVIC) Set Enable Register
  4371. #define AT91C_NVIC_IPR (AT91_CAST(AT91_REG *) 0xE000E400) // (NVIC) Interrupt Mask Register
  4372. #define AT91C_NVIC_AIRCR (AT91_CAST(AT91_REG *) 0xE000ED0C) // (NVIC) Application Interrupt/Reset Control Reg
  4373. #define AT91C_NVIC_CID2 (AT91_CAST(AT91_REG *) 0xE000EFF8) // (NVIC) Component identification register b23:16
  4374. #define AT91C_NVIC_ICPR (AT91_CAST(AT91_REG *) 0xE000E280) // (NVIC) Clear Pending Register
  4375. #define AT91C_NVIC_CID3 (AT91_CAST(AT91_REG *) 0xE000EFFC) // (NVIC) Component identification register b31:24
  4376. #define AT91C_NVIC_CFSR (AT91_CAST(AT91_REG *) 0xE000ED28) // (NVIC) Configurable Fault Status Register
  4377. #define AT91C_NVIC_AFR0 (AT91_CAST(AT91_REG *) 0xE000ED4C) // (NVIC) Auxiliary Feature register0
  4378. #define AT91C_NVIC_ICSR (AT91_CAST(AT91_REG *) 0xE000ED04) // (NVIC) Interrupt Control State Register
  4379. #define AT91C_NVIC_CCR (AT91_CAST(AT91_REG *) 0xE000ED14) // (NVIC) Configuration Control Register
  4380. #define AT91C_NVIC_CID0 (AT91_CAST(AT91_REG *) 0xE000EFF0) // (NVIC) Component identification register b7:0
  4381. #define AT91C_NVIC_ISAR1 (AT91_CAST(AT91_REG *) 0xE000ED64) // (NVIC) ISA Feature register1
  4382. #define AT91C_NVIC_STICKCVR (AT91_CAST(AT91_REG *) 0xE000E018) // (NVIC) SysTick Current Value Register
  4383. #define AT91C_NVIC_STICKCSR (AT91_CAST(AT91_REG *) 0xE000E010) // (NVIC) SysTick Control and Status Register
  4384. #define AT91C_NVIC_CID1 (AT91_CAST(AT91_REG *) 0xE000EFF4) // (NVIC) Component identification register b15:8
  4385. #define AT91C_NVIC_DFR0 (AT91_CAST(AT91_REG *) 0xE000ED48) // (NVIC) Debug Feature register0
  4386. #define AT91C_NVIC_MMFR3 (AT91_CAST(AT91_REG *) 0xE000ED5C) // (NVIC) Memory Model Feature register3
  4387. #define AT91C_NVIC_MMFR0 (AT91_CAST(AT91_REG *) 0xE000ED50) // (NVIC) Memory Model Feature register0
  4388. #define AT91C_NVIC_STICKCALVR (AT91_CAST(AT91_REG *) 0xE000E01C) // (NVIC) SysTick Calibration Value Register
  4389. #define AT91C_NVIC_PID1 (AT91_CAST(AT91_REG *) 0xE000EFE4) // (NVIC) Peripheral identification register b15:8
  4390. #define AT91C_NVIC_HAND12PR (AT91_CAST(AT91_REG *) 0xE000ED20) // (NVIC) System Handlers 12-15 Priority Register
  4391. #define AT91C_NVIC_MMFR1 (AT91_CAST(AT91_REG *) 0xE000ED54) // (NVIC) Memory Model Feature register1
  4392. #define AT91C_NVIC_AFSR (AT91_CAST(AT91_REG *) 0xE000ED3C) // (NVIC) Auxiliary Fault Status Register
  4393. #define AT91C_NVIC_HANDCSR (AT91_CAST(AT91_REG *) 0xE000ED24) // (NVIC) System Handler Control and State Register
  4394. #define AT91C_NVIC_ISAR4 (AT91_CAST(AT91_REG *) 0xE000ED70) // (NVIC) ISA Feature register4
  4395. #define AT91C_NVIC_ABR (AT91_CAST(AT91_REG *) 0xE000E300) // (NVIC) Active Bit Register
  4396. #define AT91C_NVIC_PFR1 (AT91_CAST(AT91_REG *) 0xE000ED44) // (NVIC) Processor Feature register1
  4397. #define AT91C_NVIC_PID5 (AT91_CAST(AT91_REG *) 0xE000EFD4) // (NVIC) Peripheral identification register
  4398. #define AT91C_NVIC_ICTR (AT91_CAST(AT91_REG *) 0xE000E004) // (NVIC) Interrupt Control Type Register
  4399. #define AT91C_NVIC_ICER (AT91_CAST(AT91_REG *) 0xE000E180) // (NVIC) Clear enable Register
  4400. #define AT91C_NVIC_PID3 (AT91_CAST(AT91_REG *) 0xE000EFEC) // (NVIC) Peripheral identification register b31:24
  4401. #define AT91C_NVIC_ISAR3 (AT91_CAST(AT91_REG *) 0xE000ED6C) // (NVIC) ISA Feature register3
  4402. #define AT91C_NVIC_HAND8PR (AT91_CAST(AT91_REG *) 0xE000ED1C) // (NVIC) System Handlers 8-11 Priority Register
  4403. #define AT91C_NVIC_BFAR (AT91_CAST(AT91_REG *) 0xE000ED38) // (NVIC) Bus Fault Address Register
  4404. // ========== Register definition for MPU peripheral ==========
  4405. #define AT91C_MPU_REG_BASE_ADDR3 (AT91_CAST(AT91_REG *) 0xE000EDB4) // (MPU) MPU Region Base Address Register alias 3
  4406. #define AT91C_MPU_REG_NB (AT91_CAST(AT91_REG *) 0xE000ED98) // (MPU) MPU Region Number Register
  4407. #define AT91C_MPU_ATTR_SIZE1 (AT91_CAST(AT91_REG *) 0xE000EDA8) // (MPU) MPU Attribute and Size Register alias 1
  4408. #define AT91C_MPU_REG_BASE_ADDR1 (AT91_CAST(AT91_REG *) 0xE000EDA4) // (MPU) MPU Region Base Address Register alias 1
  4409. #define AT91C_MPU_ATTR_SIZE3 (AT91_CAST(AT91_REG *) 0xE000EDB8) // (MPU) MPU Attribute and Size Register alias 3
  4410. #define AT91C_MPU_CTRL (AT91_CAST(AT91_REG *) 0xE000ED94) // (MPU) MPU Control Register
  4411. #define AT91C_MPU_ATTR_SIZE2 (AT91_CAST(AT91_REG *) 0xE000EDB0) // (MPU) MPU Attribute and Size Register alias 2
  4412. #define AT91C_MPU_REG_BASE_ADDR (AT91_CAST(AT91_REG *) 0xE000ED9C) // (MPU) MPU Region Base Address Register
  4413. #define AT91C_MPU_REG_BASE_ADDR2 (AT91_CAST(AT91_REG *) 0xE000EDAC) // (MPU) MPU Region Base Address Register alias 2
  4414. #define AT91C_MPU_ATTR_SIZE (AT91_CAST(AT91_REG *) 0xE000EDA0) // (MPU) MPU Attribute and Size Register
  4415. #define AT91C_MPU_TYPE (AT91_CAST(AT91_REG *) 0xE000ED90) // (MPU) MPU Type Register
  4416. // ========== Register definition for CM3 peripheral ==========
  4417. #define AT91C_CM3_SHCSR (AT91_CAST(AT91_REG *) 0xE000ED24) // (CM3) System Handler Control and State Register
  4418. #define AT91C_CM3_CCR (AT91_CAST(AT91_REG *) 0xE000ED14) // (CM3) Configuration Control Register
  4419. #define AT91C_CM3_ICSR (AT91_CAST(AT91_REG *) 0xE000ED04) // (CM3) Interrupt Control State Register
  4420. #define AT91C_CM3_CPUID (AT91_CAST(AT91_REG *) 0xE000ED00) // (CM3) CPU ID Base Register
  4421. #define AT91C_CM3_SCR (AT91_CAST(AT91_REG *) 0xE000ED10) // (CM3) System Controller Register
  4422. #define AT91C_CM3_AIRCR (AT91_CAST(AT91_REG *) 0xE000ED0C) // (CM3) Application Interrupt and Reset Control Register
  4423. #define AT91C_CM3_SHPR (AT91_CAST(AT91_REG *) 0xE000ED18) // (CM3) System Handler Priority Register
  4424. #define AT91C_CM3_VTOR (AT91_CAST(AT91_REG *) 0xE000ED08) // (CM3) Vector Table Offset Register
  4425. // ========== Register definition for PDC_DBGU peripheral ==========
  4426. #define AT91C_DBGU_TPR (AT91_CAST(AT91_REG *) 0x400E0708) // (PDC_DBGU) Transmit Pointer Register
  4427. #define AT91C_DBGU_PTCR (AT91_CAST(AT91_REG *) 0x400E0720) // (PDC_DBGU) PDC Transfer Control Register
  4428. #define AT91C_DBGU_TNCR (AT91_CAST(AT91_REG *) 0x400E071C) // (PDC_DBGU) Transmit Next Counter Register
  4429. #define AT91C_DBGU_PTSR (AT91_CAST(AT91_REG *) 0x400E0724) // (PDC_DBGU) PDC Transfer Status Register
  4430. #define AT91C_DBGU_RNCR (AT91_CAST(AT91_REG *) 0x400E0714) // (PDC_DBGU) Receive Next Counter Register
  4431. #define AT91C_DBGU_RPR (AT91_CAST(AT91_REG *) 0x400E0700) // (PDC_DBGU) Receive Pointer Register
  4432. #define AT91C_DBGU_TCR (AT91_CAST(AT91_REG *) 0x400E070C) // (PDC_DBGU) Transmit Counter Register
  4433. #define AT91C_DBGU_RNPR (AT91_CAST(AT91_REG *) 0x400E0710) // (PDC_DBGU) Receive Next Pointer Register
  4434. #define AT91C_DBGU_TNPR (AT91_CAST(AT91_REG *) 0x400E0718) // (PDC_DBGU) Transmit Next Pointer Register
  4435. #define AT91C_DBGU_RCR (AT91_CAST(AT91_REG *) 0x400E0704) // (PDC_DBGU) Receive Counter Register
  4436. // ========== Register definition for DBGU peripheral ==========
  4437. #define AT91C_DBGU_CR (AT91_CAST(AT91_REG *) 0x400E0600) // (DBGU) Control Register
  4438. #define AT91C_DBGU_IDR (AT91_CAST(AT91_REG *) 0x400E060C) // (DBGU) Interrupt Disable Register
  4439. #define AT91C_DBGU_CIDR (AT91_CAST(AT91_REG *) 0x400E0740) // (DBGU) Chip ID Register
  4440. #define AT91C_DBGU_IPNAME2 (AT91_CAST(AT91_REG *) 0x400E06F4) // (DBGU) DBGU IPNAME2 REGISTER
  4441. #define AT91C_DBGU_FEATURES (AT91_CAST(AT91_REG *) 0x400E06F8) // (DBGU) DBGU FEATURES REGISTER
  4442. #define AT91C_DBGU_FNTR (AT91_CAST(AT91_REG *) 0x400E0648) // (DBGU) Force NTRST Register
  4443. #define AT91C_DBGU_RHR (AT91_CAST(AT91_REG *) 0x400E0618) // (DBGU) Receiver Holding Register
  4444. #define AT91C_DBGU_THR (AT91_CAST(AT91_REG *) 0x400E061C) // (DBGU) Transmitter Holding Register
  4445. #define AT91C_DBGU_ADDRSIZE (AT91_CAST(AT91_REG *) 0x400E06EC) // (DBGU) DBGU ADDRSIZE REGISTER
  4446. #define AT91C_DBGU_MR (AT91_CAST(AT91_REG *) 0x400E0604) // (DBGU) Mode Register
  4447. #define AT91C_DBGU_IER (AT91_CAST(AT91_REG *) 0x400E0608) // (DBGU) Interrupt Enable Register
  4448. #define AT91C_DBGU_BRGR (AT91_CAST(AT91_REG *) 0x400E0620) // (DBGU) Baud Rate Generator Register
  4449. #define AT91C_DBGU_CSR (AT91_CAST(AT91_REG *) 0x400E0614) // (DBGU) Channel Status Register
  4450. #define AT91C_DBGU_VER (AT91_CAST(AT91_REG *) 0x400E06FC) // (DBGU) DBGU VERSION REGISTER
  4451. #define AT91C_DBGU_IMR (AT91_CAST(AT91_REG *) 0x400E0610) // (DBGU) Interrupt Mask Register
  4452. #define AT91C_DBGU_IPNAME1 (AT91_CAST(AT91_REG *) 0x400E06F0) // (DBGU) DBGU IPNAME1 REGISTER
  4453. #define AT91C_DBGU_EXID (AT91_CAST(AT91_REG *) 0x400E0744) // (DBGU) Chip ID Extension Register
  4454. // ========== Register definition for PIOA peripheral ==========
  4455. #define AT91C_PIOA_PDR (AT91_CAST(AT91_REG *) 0x400E0C04) // (PIOA) PIO Disable Register
  4456. #define AT91C_PIOA_FRLHSR (AT91_CAST(AT91_REG *) 0x400E0CD8) // (PIOA) Fall/Rise - Low/High Status Register
  4457. #define AT91C_PIOA_KIMR (AT91_CAST(AT91_REG *) 0x400E0D38) // (PIOA) Keypad Controller Interrupt Mask Register
  4458. #define AT91C_PIOA_LSR (AT91_CAST(AT91_REG *) 0x400E0CC4) // (PIOA) Level Select Register
  4459. #define AT91C_PIOA_IFSR (AT91_CAST(AT91_REG *) 0x400E0C28) // (PIOA) Input Filter Status Register
  4460. #define AT91C_PIOA_KKRR (AT91_CAST(AT91_REG *) 0x400E0D44) // (PIOA) Keypad Controller Key Release Register
  4461. #define AT91C_PIOA_ODR (AT91_CAST(AT91_REG *) 0x400E0C14) // (PIOA) Output Disable Registerr
  4462. #define AT91C_PIOA_SCIFSR (AT91_CAST(AT91_REG *) 0x400E0C80) // (PIOA) System Clock Glitch Input Filter Select Register
  4463. #define AT91C_PIOA_PER (AT91_CAST(AT91_REG *) 0x400E0C00) // (PIOA) PIO Enable Register
  4464. #define AT91C_PIOA_VER (AT91_CAST(AT91_REG *) 0x400E0CFC) // (PIOA) PIO VERSION REGISTER
  4465. #define AT91C_PIOA_OWSR (AT91_CAST(AT91_REG *) 0x400E0CA8) // (PIOA) Output Write Status Register
  4466. #define AT91C_PIOA_KSR (AT91_CAST(AT91_REG *) 0x400E0D3C) // (PIOA) Keypad Controller Status Register
  4467. #define AT91C_PIOA_IMR (AT91_CAST(AT91_REG *) 0x400E0C48) // (PIOA) Interrupt Mask Register
  4468. #define AT91C_PIOA_OWDR (AT91_CAST(AT91_REG *) 0x400E0CA4) // (PIOA) Output Write Disable Register
  4469. #define AT91C_PIOA_MDSR (AT91_CAST(AT91_REG *) 0x400E0C58) // (PIOA) Multi-driver Status Register
  4470. #define AT91C_PIOA_IFDR (AT91_CAST(AT91_REG *) 0x400E0C24) // (PIOA) Input Filter Disable Register
  4471. #define AT91C_PIOA_AIMDR (AT91_CAST(AT91_REG *) 0x400E0CB4) // (PIOA) Additional Interrupt Modes Disables Register
  4472. #define AT91C_PIOA_CODR (AT91_CAST(AT91_REG *) 0x400E0C34) // (PIOA) Clear Output Data Register
  4473. #define AT91C_PIOA_SCDR (AT91_CAST(AT91_REG *) 0x400E0C8C) // (PIOA) Slow Clock Divider Debouncing Register
  4474. #define AT91C_PIOA_KIER (AT91_CAST(AT91_REG *) 0x400E0D30) // (PIOA) Keypad Controller Interrupt Enable Register
  4475. #define AT91C_PIOA_REHLSR (AT91_CAST(AT91_REG *) 0x400E0CD4) // (PIOA) Rising Edge/ High Level Select Register
  4476. #define AT91C_PIOA_ISR (AT91_CAST(AT91_REG *) 0x400E0C4C) // (PIOA) Interrupt Status Register
  4477. #define PIOA_ISR (AT91_CAST(AT91_REG *) 0x400E0C4C) // (PIOA) Interrupt Status Register
  4478. #define AT91C_PIOA_ESR (AT91_CAST(AT91_REG *) 0x400E0CC0) // (PIOA) Edge Select Register
  4479. #define AT91C_PIOA_PPUDR (AT91_CAST(AT91_REG *) 0x400E0C60) // (PIOA) Pull-up Disable Register
  4480. #define AT91C_PIOA_MDDR (AT91_CAST(AT91_REG *) 0x400E0C54) // (PIOA) Multi-driver Disable Register
  4481. #define AT91C_PIOA_PSR (AT91_CAST(AT91_REG *) 0x400E0C08) // (PIOA) PIO Status Register
  4482. #define AT91C_PIOA_PDSR (AT91_CAST(AT91_REG *) 0x400E0C3C) // (PIOA) Pin Data Status Register
  4483. #define AT91C_PIOA_IFDGSR (AT91_CAST(AT91_REG *) 0x400E0C88) // (PIOA) Glitch or Debouncing Input Filter Clock Selection Status Register
  4484. #define AT91C_PIOA_FELLSR (AT91_CAST(AT91_REG *) 0x400E0CD0) // (PIOA) Falling Edge/Low Level Select Register
  4485. #define AT91C_PIOA_PPUSR (AT91_CAST(AT91_REG *) 0x400E0C68) // (PIOA) Pull-up Status Register
  4486. #define AT91C_PIOA_OER (AT91_CAST(AT91_REG *) 0x400E0C10) // (PIOA) Output Enable Register
  4487. #define AT91C_PIOA_OSR (AT91_CAST(AT91_REG *) 0x400E0C18) // (PIOA) Output Status Register
  4488. #define AT91C_PIOA_KKPR (AT91_CAST(AT91_REG *) 0x400E0D40) // (PIOA) Keypad Controller Key Press Register
  4489. #define AT91C_PIOA_AIMMR (AT91_CAST(AT91_REG *) 0x400E0CB8) // (PIOA) Additional Interrupt Modes Mask Register
  4490. #define AT91C_PIOA_KRCR (AT91_CAST(AT91_REG *) 0x400E0D24) // (PIOA) Keypad Controller Row Column Register
  4491. #define AT91C_PIOA_IER (AT91_CAST(AT91_REG *) 0x400E0C40) // (PIOA) Interrupt Enable Register
  4492. #define AT91C_PIOA_KER (AT91_CAST(AT91_REG *) 0x400E0D20) // (PIOA) Keypad Controller Enable Register
  4493. #define AT91C_PIOA_PPUER (AT91_CAST(AT91_REG *) 0x400E0C64) // (PIOA) Pull-up Enable Register
  4494. #define AT91C_PIOA_KIDR (AT91_CAST(AT91_REG *) 0x400E0D34) // (PIOA) Keypad Controller Interrupt Disable Register
  4495. #define AT91C_PIOA_ABSR (AT91_CAST(AT91_REG *) 0x400E0C70) // (PIOA) Peripheral AB Select Register
  4496. #define AT91C_PIOA_LOCKSR (AT91_CAST(AT91_REG *) 0x400E0CE0) // (PIOA) Lock Status Register
  4497. #define AT91C_PIOA_DIFSR (AT91_CAST(AT91_REG *) 0x400E0C84) // (PIOA) Debouncing Input Filter Select Register
  4498. #define AT91C_PIOA_MDER (AT91_CAST(AT91_REG *) 0x400E0C50) // (PIOA) Multi-driver Enable Register
  4499. #define AT91C_PIOA_AIMER (AT91_CAST(AT91_REG *) 0x400E0CB0) // (PIOA) Additional Interrupt Modes Enable Register
  4500. #define AT91C_PIOA_ELSR (AT91_CAST(AT91_REG *) 0x400E0CC8) // (PIOA) Edge/Level Status Register
  4501. #define AT91C_PIOA_IFER (AT91_CAST(AT91_REG *) 0x400E0C20) // (PIOA) Input Filter Enable Register
  4502. #define AT91C_PIOA_KDR (AT91_CAST(AT91_REG *) 0x400E0D28) // (PIOA) Keypad Controller Debouncing Register
  4503. #define AT91C_PIOA_IDR (AT91_CAST(AT91_REG *) 0x400E0C44) // (PIOA) Interrupt Disable Register
  4504. #define AT91C_PIOA_OWER (AT91_CAST(AT91_REG *) 0x400E0CA0) // (PIOA) Output Write Enable Register
  4505. #define AT91C_PIOA_ODSR (AT91_CAST(AT91_REG *) 0x400E0C38) // (PIOA) Output Data Status Register
  4506. #define AT91C_PIOA_SODR (AT91_CAST(AT91_REG *) 0x400E0C30) // (PIOA) Set Output Data Register
  4507. // ========== Register definition for PIOB peripheral ==========
  4508. #define AT91C_PIOB_KIDR (AT91_CAST(AT91_REG *) 0x400E0F34) // (PIOB) Keypad Controller Interrupt Disable Register
  4509. #define AT91C_PIOB_OWSR (AT91_CAST(AT91_REG *) 0x400E0EA8) // (PIOB) Output Write Status Register
  4510. #define AT91C_PIOB_PSR (AT91_CAST(AT91_REG *) 0x400E0E08) // (PIOB) PIO Status Register
  4511. #define AT91C_PIOB_MDER (AT91_CAST(AT91_REG *) 0x400E0E50) // (PIOB) Multi-driver Enable Register
  4512. #define AT91C_PIOB_ODR (AT91_CAST(AT91_REG *) 0x400E0E14) // (PIOB) Output Disable Registerr
  4513. #define AT91C_PIOB_IDR (AT91_CAST(AT91_REG *) 0x400E0E44) // (PIOB) Interrupt Disable Register
  4514. #define AT91C_PIOB_AIMER (AT91_CAST(AT91_REG *) 0x400E0EB0) // (PIOB) Additional Interrupt Modes Enable Register
  4515. #define AT91C_PIOB_DIFSR (AT91_CAST(AT91_REG *) 0x400E0E84) // (PIOB) Debouncing Input Filter Select Register
  4516. #define AT91C_PIOB_PDR (AT91_CAST(AT91_REG *) 0x400E0E04) // (PIOB) PIO Disable Register
  4517. #define AT91C_PIOB_REHLSR (AT91_CAST(AT91_REG *) 0x400E0ED4) // (PIOB) Rising Edge/ High Level Select Register
  4518. #define AT91C_PIOB_PDSR (AT91_CAST(AT91_REG *) 0x400E0E3C) // (PIOB) Pin Data Status Register
  4519. #define AT91C_PIOB_PPUDR (AT91_CAST(AT91_REG *) 0x400E0E60) // (PIOB) Pull-up Disable Register
  4520. #define AT91C_PIOB_LSR (AT91_CAST(AT91_REG *) 0x400E0EC4) // (PIOB) Level Select Register
  4521. #define AT91C_PIOB_OWDR (AT91_CAST(AT91_REG *) 0x400E0EA4) // (PIOB) Output Write Disable Register
  4522. #define AT91C_PIOB_FELLSR (AT91_CAST(AT91_REG *) 0x400E0ED0) // (PIOB) Falling Edge/Low Level Select Register
  4523. #define AT91C_PIOB_IFER (AT91_CAST(AT91_REG *) 0x400E0E20) // (PIOB) Input Filter Enable Register
  4524. #define AT91C_PIOB_ABSR (AT91_CAST(AT91_REG *) 0x400E0E70) // (PIOB) Peripheral AB Select Register
  4525. #define AT91C_PIOB_KIMR (AT91_CAST(AT91_REG *) 0x400E0F38) // (PIOB) Keypad Controller Interrupt Mask Register
  4526. #define AT91C_PIOB_KKPR (AT91_CAST(AT91_REG *) 0x400E0F40) // (PIOB) Keypad Controller Key Press Register
  4527. #define AT91C_PIOB_FRLHSR (AT91_CAST(AT91_REG *) 0x400E0ED8) // (PIOB) Fall/Rise - Low/High Status Register
  4528. #define AT91C_PIOB_AIMDR (AT91_CAST(AT91_REG *) 0x400E0EB4) // (PIOB) Additional Interrupt Modes Disables Register
  4529. #define AT91C_PIOB_SCIFSR (AT91_CAST(AT91_REG *) 0x400E0E80) // (PIOB) System Clock Glitch Input Filter Select Register
  4530. #define AT91C_PIOB_VER (AT91_CAST(AT91_REG *) 0x400E0EFC) // (PIOB) PIO VERSION REGISTER
  4531. #define AT91C_PIOB_PER (AT91_CAST(AT91_REG *) 0x400E0E00) // (PIOB) PIO Enable Register
  4532. #define AT91C_PIOB_ELSR (AT91_CAST(AT91_REG *) 0x400E0EC8) // (PIOB) Edge/Level Status Register
  4533. #define AT91C_PIOB_IMR (AT91_CAST(AT91_REG *) 0x400E0E48) // (PIOB) Interrupt Mask Register
  4534. #define AT91C_PIOB_PPUSR (AT91_CAST(AT91_REG *) 0x400E0E68) // (PIOB) Pull-up Status Register
  4535. #define AT91C_PIOB_SCDR (AT91_CAST(AT91_REG *) 0x400E0E8C) // (PIOB) Slow Clock Divider Debouncing Register
  4536. #define AT91C_PIOB_KSR (AT91_CAST(AT91_REG *) 0x400E0F3C) // (PIOB) Keypad Controller Status Register
  4537. #define AT91C_PIOB_IFDGSR (AT91_CAST(AT91_REG *) 0x400E0E88) // (PIOB) Glitch or Debouncing Input Filter Clock Selection Status Register
  4538. #define AT91C_PIOB_ESR (AT91_CAST(AT91_REG *) 0x400E0EC0) // (PIOB) Edge Select Register
  4539. #define AT91C_PIOB_ODSR (AT91_CAST(AT91_REG *) 0x400E0E38) // (PIOB) Output Data Status Register
  4540. #define AT91C_PIOB_IFDR (AT91_CAST(AT91_REG *) 0x400E0E24) // (PIOB) Input Filter Disable Register
  4541. #define AT91C_PIOB_SODR (AT91_CAST(AT91_REG *) 0x400E0E30) // (PIOB) Set Output Data Register
  4542. #define AT91C_PIOB_IER (AT91_CAST(AT91_REG *) 0x400E0E40) // (PIOB) Interrupt Enable Register
  4543. #define AT91C_PIOB_MDSR (AT91_CAST(AT91_REG *) 0x400E0E58) // (PIOB) Multi-driver Status Register
  4544. #define AT91C_PIOB_ISR (AT91_CAST(AT91_REG *) 0x400E0E4C) // (PIOB) Interrupt Status Register
  4545. #define PIOB_ISR (AT91_CAST(AT91_REG *) 0x400E0E4C) // (PIOB) Interrupt Status Register
  4546. #define AT91C_PIOB_IFSR (AT91_CAST(AT91_REG *) 0x400E0E28) // (PIOB) Input Filter Status Register
  4547. #define AT91C_PIOB_KER (AT91_CAST(AT91_REG *) 0x400E0F20) // (PIOB) Keypad Controller Enable Register
  4548. #define AT91C_PIOB_KKRR (AT91_CAST(AT91_REG *) 0x400E0F44) // (PIOB) Keypad Controller Key Release Register
  4549. #define AT91C_PIOB_PPUER (AT91_CAST(AT91_REG *) 0x400E0E64) // (PIOB) Pull-up Enable Register
  4550. #define AT91C_PIOB_LOCKSR (AT91_CAST(AT91_REG *) 0x400E0EE0) // (PIOB) Lock Status Register
  4551. #define AT91C_PIOB_OWER (AT91_CAST(AT91_REG *) 0x400E0EA0) // (PIOB) Output Write Enable Register
  4552. #define AT91C_PIOB_KIER (AT91_CAST(AT91_REG *) 0x400E0F30) // (PIOB) Keypad Controller Interrupt Enable Register
  4553. #define AT91C_PIOB_MDDR (AT91_CAST(AT91_REG *) 0x400E0E54) // (PIOB) Multi-driver Disable Register
  4554. #define AT91C_PIOB_KRCR (AT91_CAST(AT91_REG *) 0x400E0F24) // (PIOB) Keypad Controller Row Column Register
  4555. #define AT91C_PIOB_CODR (AT91_CAST(AT91_REG *) 0x400E0E34) // (PIOB) Clear Output Data Register
  4556. #define AT91C_PIOB_KDR (AT91_CAST(AT91_REG *) 0x400E0F28) // (PIOB) Keypad Controller Debouncing Register
  4557. #define AT91C_PIOB_AIMMR (AT91_CAST(AT91_REG *) 0x400E0EB8) // (PIOB) Additional Interrupt Modes Mask Register
  4558. #define AT91C_PIOB_OER (AT91_CAST(AT91_REG *) 0x400E0E10) // (PIOB) Output Enable Register
  4559. #define AT91C_PIOB_OSR (AT91_CAST(AT91_REG *) 0x400E0E18) // (PIOB) Output Status Register
  4560. // ========== Register definition for PIOC peripheral ==========
  4561. #define AT91C_PIOC_FELLSR (AT91_CAST(AT91_REG *) 0x400E10D0) // (PIOC) Falling Edge/Low Level Select Register
  4562. #define AT91C_PIOC_FRLHSR (AT91_CAST(AT91_REG *) 0x400E10D8) // (PIOC) Fall/Rise - Low/High Status Register
  4563. #define AT91C_PIOC_MDDR (AT91_CAST(AT91_REG *) 0x400E1054) // (PIOC) Multi-driver Disable Register
  4564. #define AT91C_PIOC_IFDGSR (AT91_CAST(AT91_REG *) 0x400E1088) // (PIOC) Glitch or Debouncing Input Filter Clock Selection Status Register
  4565. #define AT91C_PIOC_ABSR (AT91_CAST(AT91_REG *) 0x400E1070) // (PIOC) Peripheral AB Select Register
  4566. #define AT91C_PIOC_KIMR (AT91_CAST(AT91_REG *) 0x400E1138) // (PIOC) Keypad Controller Interrupt Mask Register
  4567. #define AT91C_PIOC_KRCR (AT91_CAST(AT91_REG *) 0x400E1124) // (PIOC) Keypad Controller Row Column Register
  4568. #define AT91C_PIOC_ODSR (AT91_CAST(AT91_REG *) 0x400E1038) // (PIOC) Output Data Status Register
  4569. #define AT91C_PIOC_OSR (AT91_CAST(AT91_REG *) 0x400E1018) // (PIOC) Output Status Register
  4570. #define AT91C_PIOC_IFER (AT91_CAST(AT91_REG *) 0x400E1020) // (PIOC) Input Filter Enable Register
  4571. #define AT91C_PIOC_KKPR (AT91_CAST(AT91_REG *) 0x400E1140) // (PIOC) Keypad Controller Key Press Register
  4572. #define AT91C_PIOC_MDSR (AT91_CAST(AT91_REG *) 0x400E1058) // (PIOC) Multi-driver Status Register
  4573. #define AT91C_PIOC_IFDR (AT91_CAST(AT91_REG *) 0x400E1024) // (PIOC) Input Filter Disable Register
  4574. #define AT91C_PIOC_MDER (AT91_CAST(AT91_REG *) 0x400E1050) // (PIOC) Multi-driver Enable Register
  4575. #define AT91C_PIOC_SCDR (AT91_CAST(AT91_REG *) 0x400E108C) // (PIOC) Slow Clock Divider Debouncing Register
  4576. #define AT91C_PIOC_SCIFSR (AT91_CAST(AT91_REG *) 0x400E1080) // (PIOC) System Clock Glitch Input Filter Select Register
  4577. #define AT91C_PIOC_IER (AT91_CAST(AT91_REG *) 0x400E1040) // (PIOC) Interrupt Enable Register
  4578. #define AT91C_PIOC_KDR (AT91_CAST(AT91_REG *) 0x400E1128) // (PIOC) Keypad Controller Debouncing Register
  4579. #define AT91C_PIOC_OWDR (AT91_CAST(AT91_REG *) 0x400E10A4) // (PIOC) Output Write Disable Register
  4580. #define AT91C_PIOC_IFSR (AT91_CAST(AT91_REG *) 0x400E1028) // (PIOC) Input Filter Status Register
  4581. #define AT91C_PIOC_ISR (AT91_CAST(AT91_REG *) 0x400E104C) // (PIOC) Interrupt Status Register
  4582. #define PIOC_ISR (AT91_CAST(AT91_REG *) 0x400E104C) // (PIOC) Interrupt Status Register
  4583. #define AT91C_PIOC_PPUDR (AT91_CAST(AT91_REG *) 0x400E1060) // (PIOC) Pull-up Disable Register
  4584. #define AT91C_PIOC_PDSR (AT91_CAST(AT91_REG *) 0x400E103C) // (PIOC) Pin Data Status Register
  4585. #define AT91C_PIOC_KKRR (AT91_CAST(AT91_REG *) 0x400E1144) // (PIOC) Keypad Controller Key Release Register
  4586. #define AT91C_PIOC_AIMDR (AT91_CAST(AT91_REG *) 0x400E10B4) // (PIOC) Additional Interrupt Modes Disables Register
  4587. #define AT91C_PIOC_LSR (AT91_CAST(AT91_REG *) 0x400E10C4) // (PIOC) Level Select Register
  4588. #define AT91C_PIOC_PPUER (AT91_CAST(AT91_REG *) 0x400E1064) // (PIOC) Pull-up Enable Register
  4589. #define AT91C_PIOC_AIMER (AT91_CAST(AT91_REG *) 0x400E10B0) // (PIOC) Additional Interrupt Modes Enable Register
  4590. #define AT91C_PIOC_OER (AT91_CAST(AT91_REG *) 0x400E1010) // (PIOC) Output Enable Register
  4591. #define AT91C_PIOC_CODR (AT91_CAST(AT91_REG *) 0x400E1034) // (PIOC) Clear Output Data Register
  4592. #define AT91C_PIOC_AIMMR (AT91_CAST(AT91_REG *) 0x400E10B8) // (PIOC) Additional Interrupt Modes Mask Register
  4593. #define AT91C_PIOC_OWER (AT91_CAST(AT91_REG *) 0x400E10A0) // (PIOC) Output Write Enable Register
  4594. #define AT91C_PIOC_VER (AT91_CAST(AT91_REG *) 0x400E10FC) // (PIOC) PIO VERSION REGISTER
  4595. #define AT91C_PIOC_IMR (AT91_CAST(AT91_REG *) 0x400E1048) // (PIOC) Interrupt Mask Register
  4596. #define AT91C_PIOC_PPUSR (AT91_CAST(AT91_REG *) 0x400E1068) // (PIOC) Pull-up Status Register
  4597. #define AT91C_PIOC_IDR (AT91_CAST(AT91_REG *) 0x400E1044) // (PIOC) Interrupt Disable Register
  4598. #define AT91C_PIOC_DIFSR (AT91_CAST(AT91_REG *) 0x400E1084) // (PIOC) Debouncing Input Filter Select Register
  4599. #define AT91C_PIOC_KIDR (AT91_CAST(AT91_REG *) 0x400E1134) // (PIOC) Keypad Controller Interrupt Disable Register
  4600. #define AT91C_PIOC_KSR (AT91_CAST(AT91_REG *) 0x400E113C) // (PIOC) Keypad Controller Status Register
  4601. #define AT91C_PIOC_REHLSR (AT91_CAST(AT91_REG *) 0x400E10D4) // (PIOC) Rising Edge/ High Level Select Register
  4602. #define AT91C_PIOC_ESR (AT91_CAST(AT91_REG *) 0x400E10C0) // (PIOC) Edge Select Register
  4603. #define AT91C_PIOC_KIER (AT91_CAST(AT91_REG *) 0x400E1130) // (PIOC) Keypad Controller Interrupt Enable Register
  4604. #define AT91C_PIOC_ELSR (AT91_CAST(AT91_REG *) 0x400E10C8) // (PIOC) Edge/Level Status Register
  4605. #define AT91C_PIOC_SODR (AT91_CAST(AT91_REG *) 0x400E1030) // (PIOC) Set Output Data Register
  4606. #define AT91C_PIOC_PSR (AT91_CAST(AT91_REG *) 0x400E1008) // (PIOC) PIO Status Register
  4607. #define AT91C_PIOC_KER (AT91_CAST(AT91_REG *) 0x400E1120) // (PIOC) Keypad Controller Enable Register
  4608. #define AT91C_PIOC_ODR (AT91_CAST(AT91_REG *) 0x400E1014) // (PIOC) Output Disable Registerr
  4609. #define AT91C_PIOC_OWSR (AT91_CAST(AT91_REG *) 0x400E10A8) // (PIOC) Output Write Status Register
  4610. #define AT91C_PIOC_PDR (AT91_CAST(AT91_REG *) 0x400E1004) // (PIOC) PIO Disable Register
  4611. #define AT91C_PIOC_LOCKSR (AT91_CAST(AT91_REG *) 0x400E10E0) // (PIOC) Lock Status Register
  4612. #define AT91C_PIOC_PER (AT91_CAST(AT91_REG *) 0x400E1000) // (PIOC) PIO Enable Register
  4613. // ========== Register definition for PMC peripheral ==========
  4614. #define AT91C_PMC_PLLAR (AT91_CAST(AT91_REG *) 0x400E0428) // (PMC) PLL Register
  4615. #define AT91C_PMC_UCKR (AT91_CAST(AT91_REG *) 0x400E041C) // (PMC) UTMI Clock Configuration Register
  4616. #define AT91C_PMC_FSMR (AT91_CAST(AT91_REG *) 0x400E0470) // (PMC) Fast Startup Mode Register
  4617. #define AT91C_PMC_MCKR (AT91_CAST(AT91_REG *) 0x400E0430) // (PMC) Master Clock Register
  4618. #define AT91C_PMC_SCER (AT91_CAST(AT91_REG *) 0x400E0400) // (PMC) System Clock Enable Register
  4619. #define AT91C_PMC_PCSR (AT91_CAST(AT91_REG *) 0x400E0418) // (PMC) Peripheral Clock Status Register
  4620. #define AT91C_PMC_MCFR (AT91_CAST(AT91_REG *) 0x400E0424) // (PMC) Main Clock Frequency Register
  4621. #define AT91C_PMC_FOCR (AT91_CAST(AT91_REG *) 0x400E0478) // (PMC) Fault Output Clear Register
  4622. #define AT91C_PMC_FSPR (AT91_CAST(AT91_REG *) 0x400E0474) // (PMC) Fast Startup Polarity Register
  4623. #define AT91C_PMC_SCSR (AT91_CAST(AT91_REG *) 0x400E0408) // (PMC) System Clock Status Register
  4624. #define AT91C_PMC_IDR (AT91_CAST(AT91_REG *) 0x400E0464) // (PMC) Interrupt Disable Register
  4625. #define AT91C_PMC_VER (AT91_CAST(AT91_REG *) 0x400E04FC) // (PMC) APMC VERSION REGISTER
  4626. #define AT91C_PMC_IMR (AT91_CAST(AT91_REG *) 0x400E046C) // (PMC) Interrupt Mask Register
  4627. #define AT91C_PMC_IPNAME2 (AT91_CAST(AT91_REG *) 0x400E04F4) // (PMC) PMC IPNAME2 REGISTER
  4628. #define AT91C_PMC_SCDR (AT91_CAST(AT91_REG *) 0x400E0404) // (PMC) System Clock Disable Register
  4629. #define AT91C_PMC_PCKR (AT91_CAST(AT91_REG *) 0x400E0440) // (PMC) Programmable Clock Register
  4630. #define AT91C_PMC_ADDRSIZE (AT91_CAST(AT91_REG *) 0x400E04EC) // (PMC) PMC ADDRSIZE REGISTER
  4631. #define AT91C_PMC_PCDR (AT91_CAST(AT91_REG *) 0x400E0414) // (PMC) Peripheral Clock Disable Register
  4632. #define AT91C_PMC_MOR (AT91_CAST(AT91_REG *) 0x400E0420) // (PMC) Main Oscillator Register
  4633. #define AT91C_PMC_SR (AT91_CAST(AT91_REG *) 0x400E0468) // (PMC) Status Register
  4634. #define AT91C_PMC_IER (AT91_CAST(AT91_REG *) 0x400E0460) // (PMC) Interrupt Enable Register
  4635. #define AT91C_PMC_IPNAME1 (AT91_CAST(AT91_REG *) 0x400E04F0) // (PMC) PMC IPNAME1 REGISTER
  4636. #define AT91C_PMC_PCER (AT91_CAST(AT91_REG *) 0x400E0410) // (PMC) Peripheral Clock Enable Register
  4637. #define AT91C_PMC_FEATURES (AT91_CAST(AT91_REG *) 0x400E04F8) // (PMC) PMC FEATURES REGISTER
  4638. // ========== Register definition for CKGR peripheral ==========
  4639. #define AT91C_CKGR_PLLAR (AT91_CAST(AT91_REG *) 0x400E0428) // (CKGR) PLL Register
  4640. #define AT91C_CKGR_UCKR (AT91_CAST(AT91_REG *) 0x400E041C) // (CKGR) UTMI Clock Configuration Register
  4641. #define AT91C_CKGR_MOR (AT91_CAST(AT91_REG *) 0x400E0420) // (CKGR) Main Oscillator Register
  4642. #define AT91C_CKGR_MCFR (AT91_CAST(AT91_REG *) 0x400E0424) // (CKGR) Main Clock Frequency Register
  4643. // ========== Register definition for RSTC peripheral ==========
  4644. #define AT91C_RSTC_VER (AT91_CAST(AT91_REG *) 0x400E12FC) // (RSTC) Version Register
  4645. #define AT91C_RSTC_RCR (AT91_CAST(AT91_REG *) 0x400E1200) // (RSTC) Reset Control Register
  4646. #define AT91C_RSTC_RMR (AT91_CAST(AT91_REG *) 0x400E1208) // (RSTC) Reset Mode Register
  4647. #define AT91C_RSTC_RSR (AT91_CAST(AT91_REG *) 0x400E1204) // (RSTC) Reset Status Register
  4648. // ========== Register definition for SUPC peripheral ==========
  4649. #define AT91C_SUPC_CR (AT91_CAST(AT91_REG *) 0x400E1210) // (SUPC) Supply Controller Control Register
  4650. #define AT91C_SUPC_SMMR (AT91_CAST(AT91_REG *) 0x400E1214) // (SUPC) Supply Controller Supply Monitor Mode Register
  4651. #define AT91C_SUPC_MR (AT91_CAST(AT91_REG *) 0x400E1218) // (SUPC) Supply Controller Mode Register
  4652. #define AT91C_SUPC_WUMR (AT91_CAST(AT91_REG *) 0x400E121C) // (SUPC) Supply Controller Wake Up Mode Register
  4653. #define AT91C_SUPC_WUIR (AT91_CAST(AT91_REG *) 0x400E1220) // (SUPC) Supply Controller Wake Up Inputs Register
  4654. #define AT91C_SUPC_SR (AT91_CAST(AT91_REG *) 0x400E1224) // (SUPC) Supply Controller Status Register
  4655. // ========== Register definition for RTTC peripheral ==========
  4656. #define AT91C_RTTC_RTVR (AT91_CAST(AT91_REG *) 0x400E1238) // (RTTC) Real-time Value Register
  4657. #define AT91C_RTTC_RTAR (AT91_CAST(AT91_REG *) 0x400E1234) // (RTTC) Real-time Alarm Register
  4658. #define AT91C_RTTC_RTMR (AT91_CAST(AT91_REG *) 0x400E1230) // (RTTC) Real-time Mode Register
  4659. #define AT91C_RTTC_RTSR (AT91_CAST(AT91_REG *) 0x400E123C) // (RTTC) Real-time Status Register
  4660. // ========== Register definition for WDTC peripheral ==========
  4661. #define AT91C_WDTC_WDSR (AT91_CAST(AT91_REG *) 0x400E1258) // (WDTC) Watchdog Status Register
  4662. #define AT91C_WDTC_WDMR (AT91_CAST(AT91_REG *) 0x400E1254) // (WDTC) Watchdog Mode Register
  4663. #define AT91C_WDTC_WDCR (AT91_CAST(AT91_REG *) 0x400E1250) // (WDTC) Watchdog Control Register
  4664. // ========== Register definition for RTC peripheral ==========
  4665. #define AT91C_RTC_IMR (AT91_CAST(AT91_REG *) 0x400E1288) // (RTC) Interrupt Mask Register
  4666. #define AT91C_RTC_SCCR (AT91_CAST(AT91_REG *) 0x400E127C) // (RTC) Status Clear Command Register
  4667. #define AT91C_RTC_CALR (AT91_CAST(AT91_REG *) 0x400E126C) // (RTC) Calendar Register
  4668. #define AT91C_RTC_MR (AT91_CAST(AT91_REG *) 0x400E1264) // (RTC) Mode Register
  4669. #define AT91C_RTC_TIMR (AT91_CAST(AT91_REG *) 0x400E1268) // (RTC) Time Register
  4670. #define AT91C_RTC_CALALR (AT91_CAST(AT91_REG *) 0x400E1274) // (RTC) Calendar Alarm Register
  4671. #define AT91C_RTC_VER (AT91_CAST(AT91_REG *) 0x400E128C) // (RTC) Valid Entry Register
  4672. #define AT91C_RTC_CR (AT91_CAST(AT91_REG *) 0x400E1260) // (RTC) Control Register
  4673. #define AT91C_RTC_IDR (AT91_CAST(AT91_REG *) 0x400E1284) // (RTC) Interrupt Disable Register
  4674. #define AT91C_RTC_TIMALR (AT91_CAST(AT91_REG *) 0x400E1270) // (RTC) Time Alarm Register
  4675. #define AT91C_RTC_IER (AT91_CAST(AT91_REG *) 0x400E1280) // (RTC) Interrupt Enable Register
  4676. #define AT91C_RTC_SR (AT91_CAST(AT91_REG *) 0x400E1278) // (RTC) Status Register
  4677. // ========== Register definition for ADC0 peripheral ==========
  4678. #define AT91C_ADC0_IPNAME2 (AT91_CAST(AT91_REG *) 0x400AC0F4) // (ADC0) ADC IPNAME2 REGISTER
  4679. #define AT91C_ADC0_ADDRSIZE (AT91_CAST(AT91_REG *) 0x400AC0EC) // (ADC0) ADC ADDRSIZE REGISTER
  4680. #define AT91C_ADC0_IDR (AT91_CAST(AT91_REG *) 0x400AC028) // (ADC0) ADC Interrupt Disable Register
  4681. #define AT91C_ADC0_CHSR (AT91_CAST(AT91_REG *) 0x400AC018) // (ADC0) ADC Channel Status Register
  4682. #define AT91C_ADC0_FEATURES (AT91_CAST(AT91_REG *) 0x400AC0F8) // (ADC0) ADC FEATURES REGISTER
  4683. #define AT91C_ADC0_CDR0 (AT91_CAST(AT91_REG *) 0x400AC030) // (ADC0) ADC Channel Data Register 0
  4684. #define AT91C_ADC0_LCDR (AT91_CAST(AT91_REG *) 0x400AC020) // (ADC0) ADC Last Converted Data Register
  4685. #define AT91C_ADC0_EMR (AT91_CAST(AT91_REG *) 0x400AC068) // (ADC0) Extended Mode Register
  4686. #define AT91C_ADC0_CDR3 (AT91_CAST(AT91_REG *) 0x400AC03C) // (ADC0) ADC Channel Data Register 3
  4687. #define AT91C_ADC0_CDR7 (AT91_CAST(AT91_REG *) 0x400AC04C) // (ADC0) ADC Channel Data Register 7
  4688. #define AT91C_ADC0_SR (AT91_CAST(AT91_REG *) 0x400AC01C) // (ADC0) ADC Status Register
  4689. #define AT91C_ADC0_ACR (AT91_CAST(AT91_REG *) 0x400AC064) // (ADC0) Analog Control Register
  4690. #define AT91C_ADC0_CDR5 (AT91_CAST(AT91_REG *) 0x400AC044) // (ADC0) ADC Channel Data Register 5
  4691. #define AT91C_ADC0_IPNAME1 (AT91_CAST(AT91_REG *) 0x400AC0F0) // (ADC0) ADC IPNAME1 REGISTER
  4692. #define AT91C_ADC0_CDR6 (AT91_CAST(AT91_REG *) 0x400AC048) // (ADC0) ADC Channel Data Register 6
  4693. #define AT91C_ADC0_MR (AT91_CAST(AT91_REG *) 0x400AC004) // (ADC0) ADC Mode Register
  4694. #define AT91C_ADC0_CDR1 (AT91_CAST(AT91_REG *) 0x400AC034) // (ADC0) ADC Channel Data Register 1
  4695. #define AT91C_ADC0_CDR2 (AT91_CAST(AT91_REG *) 0x400AC038) // (ADC0) ADC Channel Data Register 2
  4696. #define AT91C_ADC0_CDR4 (AT91_CAST(AT91_REG *) 0x400AC040) // (ADC0) ADC Channel Data Register 4
  4697. #define AT91C_ADC0_CHER (AT91_CAST(AT91_REG *) 0x400AC010) // (ADC0) ADC Channel Enable Register
  4698. #define AT91C_ADC0_VER (AT91_CAST(AT91_REG *) 0x400AC0FC) // (ADC0) ADC VERSION REGISTER
  4699. #define AT91C_ADC0_CHDR (AT91_CAST(AT91_REG *) 0x400AC014) // (ADC0) ADC Channel Disable Register
  4700. #define AT91C_ADC0_CR (AT91_CAST(AT91_REG *) 0x400AC000) // (ADC0) ADC Control Register
  4701. #define AT91C_ADC0_IMR (AT91_CAST(AT91_REG *) 0x400AC02C) // (ADC0) ADC Interrupt Mask Register
  4702. #define AT91C_ADC0_IER (AT91_CAST(AT91_REG *) 0x400AC024) // (ADC0) ADC Interrupt Enable Register
  4703. // ========== Register definition for ADC12B peripheral ==========
  4704. #define AT91C_ADC12B_CR (AT91_CAST(AT91_REG *) 0x400A8000) // (ADC12B) Control Register
  4705. #define AT91C_ADC12B_MR (AT91_CAST(AT91_REG *) 0x400A8004) // (ADC12B) Mode Register
  4706. #define AT91C_ADC12B_CHER (AT91_CAST(AT91_REG *) 0x400A8010) // (ADC12B) Channel Enable Register
  4707. #define AT91C_ADC12B_CHDR (AT91_CAST(AT91_REG *) 0x400A8014) // (ADC12B) Channel Disable Register
  4708. #define AT91C_ADC12B_CHSR (AT91_CAST(AT91_REG *) 0x400A8018) // (ADC12B) Channel Status Register
  4709. #define AT91C_ADC12B_SR (AT91_CAST(AT91_REG *) 0x400A801C) // (ADC12B) Status Register
  4710. #define AT91C_ADC12B_LCDR (AT91_CAST(AT91_REG *) 0x400A8020) // (ADC12B) Last Converted Data Register
  4711. #define AT91C_ADC12B_IER (AT91_CAST(AT91_REG *) 0x400A8024) // (ADC12B) Interrupt Enable Register
  4712. #define AT91C_ADC12B_IDR (AT91_CAST(AT91_REG *) 0x400A8028) // (ADC12B) Interrupt Disable Register
  4713. #define AT91C_ADC12B_IMR (AT91_CAST(AT91_REG *) 0x400A802C) // (ADC12B) Interrupt Mask Register
  4714. #define AT91C_ADC12B_CDR (AT91_CAST(AT91_REG *) 0x400A8030) // (ADC12B) Channel Data Register
  4715. #define AT91C_ADC12B_ACR (AT91_CAST(AT91_REG *) 0x400A8064) // (ADC12B) Analog Control Register
  4716. #define AT91C_ADC12B_EMR (AT91_CAST(AT91_REG *) 0x400A8068) // (ADC12B) Extended Mode Register
  4717. // ========== Register definition for TC0 peripheral ==========
  4718. #define AT91C_TC0_IER (AT91_CAST(AT91_REG *) 0x40080024) // (TC0) Interrupt Enable Register
  4719. #define AT91C_TC0_CV (AT91_CAST(AT91_REG *) 0x40080010) // (TC0) Counter Value
  4720. #define AT91C_TC0_RA (AT91_CAST(AT91_REG *) 0x40080014) // (TC0) Register A
  4721. #define AT91C_TC0_RB (AT91_CAST(AT91_REG *) 0x40080018) // (TC0) Register B
  4722. #define AT91C_TC0_IDR (AT91_CAST(AT91_REG *) 0x40080028) // (TC0) Interrupt Disable Register
  4723. #define AT91C_TC0_SR (AT91_CAST(AT91_REG *) 0x40080020) // (TC0) Status Register
  4724. #define AT91C_TC0_IMR (AT91_CAST(AT91_REG *) 0x4008002C) // (TC0) Interrupt Mask Register
  4725. #define AT91C_TC0_CMR (AT91_CAST(AT91_REG *) 0x40080004) // (TC0) Channel Mode Register (Capture Mode / Waveform Mode)
  4726. #define AT91C_TC0_RC (AT91_CAST(AT91_REG *) 0x4008001C) // (TC0) Register C
  4727. #define AT91C_TC0_CCR (AT91_CAST(AT91_REG *) 0x40080000) // (TC0) Channel Control Register
  4728. // ========== Register definition for TC1 peripheral ==========
  4729. #define AT91C_TC1_SR (AT91_CAST(AT91_REG *) 0x40080060) // (TC1) Status Register
  4730. #define AT91C_TC1_RA (AT91_CAST(AT91_REG *) 0x40080054) // (TC1) Register A
  4731. #define AT91C_TC1_IER (AT91_CAST(AT91_REG *) 0x40080064) // (TC1) Interrupt Enable Register
  4732. #define AT91C_TC1_RB (AT91_CAST(AT91_REG *) 0x40080058) // (TC1) Register B
  4733. #define AT91C_TC1_IDR (AT91_CAST(AT91_REG *) 0x40080068) // (TC1) Interrupt Disable Register
  4734. #define AT91C_TC1_CCR (AT91_CAST(AT91_REG *) 0x40080040) // (TC1) Channel Control Register
  4735. #define AT91C_TC1_IMR (AT91_CAST(AT91_REG *) 0x4008006C) // (TC1) Interrupt Mask Register
  4736. #define AT91C_TC1_RC (AT91_CAST(AT91_REG *) 0x4008005C) // (TC1) Register C
  4737. #define AT91C_TC1_CMR (AT91_CAST(AT91_REG *) 0x40080044) // (TC1) Channel Mode Register (Capture Mode / Waveform Mode)
  4738. #define AT91C_TC1_CV (AT91_CAST(AT91_REG *) 0x40080050) // (TC1) Counter Value
  4739. // ========== Register definition for TC2 peripheral ==========
  4740. #define AT91C_TC2_RA (AT91_CAST(AT91_REG *) 0x40080094) // (TC2) Register A
  4741. #define AT91C_TC2_RB (AT91_CAST(AT91_REG *) 0x40080098) // (TC2) Register B
  4742. #define AT91C_TC2_CMR (AT91_CAST(AT91_REG *) 0x40080084) // (TC2) Channel Mode Register (Capture Mode / Waveform Mode)
  4743. #define AT91C_TC2_SR (AT91_CAST(AT91_REG *) 0x400800A0) // (TC2) Status Register
  4744. #define AT91C_TC2_CCR (AT91_CAST(AT91_REG *) 0x40080080) // (TC2) Channel Control Register
  4745. #define AT91C_TC2_IMR (AT91_CAST(AT91_REG *) 0x400800AC) // (TC2) Interrupt Mask Register
  4746. #define AT91C_TC2_CV (AT91_CAST(AT91_REG *) 0x40080090) // (TC2) Counter Value
  4747. #define AT91C_TC2_RC (AT91_CAST(AT91_REG *) 0x4008009C) // (TC2) Register C
  4748. #define AT91C_TC2_IER (AT91_CAST(AT91_REG *) 0x400800A4) // (TC2) Interrupt Enable Register
  4749. #define AT91C_TC2_IDR (AT91_CAST(AT91_REG *) 0x400800A8) // (TC2) Interrupt Disable Register
  4750. // ========== Register definition for TCB0 peripheral ==========
  4751. #define AT91C_TCB0_BCR (AT91_CAST(AT91_REG *) 0x400800C0) // (TCB0) TC Block Control Register
  4752. #define AT91C_TCB0_IPNAME2 (AT91_CAST(AT91_REG *) 0x400800F4) // (TCB0) TC IPNAME2 REGISTER
  4753. #define AT91C_TCB0_IPNAME1 (AT91_CAST(AT91_REG *) 0x400800F0) // (TCB0) TC IPNAME1 REGISTER
  4754. #define AT91C_TCB0_ADDRSIZE (AT91_CAST(AT91_REG *) 0x400800EC) // (TCB0) TC ADDRSIZE REGISTER
  4755. #define AT91C_TCB0_FEATURES (AT91_CAST(AT91_REG *) 0x400800F8) // (TCB0) TC FEATURES REGISTER
  4756. #define AT91C_TCB0_BMR (AT91_CAST(AT91_REG *) 0x400800C4) // (TCB0) TC Block Mode Register
  4757. #define AT91C_TCB0_VER (AT91_CAST(AT91_REG *) 0x400800FC) // (TCB0) Version Register
  4758. // ========== Register definition for TCB1 peripheral ==========
  4759. #define AT91C_TCB1_BCR (AT91_CAST(AT91_REG *) 0x40080100) // (TCB1) TC Block Control Register
  4760. #define AT91C_TCB1_VER (AT91_CAST(AT91_REG *) 0x4008013C) // (TCB1) Version Register
  4761. #define AT91C_TCB1_FEATURES (AT91_CAST(AT91_REG *) 0x40080138) // (TCB1) TC FEATURES REGISTER
  4762. #define AT91C_TCB1_IPNAME2 (AT91_CAST(AT91_REG *) 0x40080134) // (TCB1) TC IPNAME2 REGISTER
  4763. #define AT91C_TCB1_BMR (AT91_CAST(AT91_REG *) 0x40080104) // (TCB1) TC Block Mode Register
  4764. #define AT91C_TCB1_ADDRSIZE (AT91_CAST(AT91_REG *) 0x4008012C) // (TCB1) TC ADDRSIZE REGISTER
  4765. #define AT91C_TCB1_IPNAME1 (AT91_CAST(AT91_REG *) 0x40080130) // (TCB1) TC IPNAME1 REGISTER
  4766. // ========== Register definition for TCB2 peripheral ==========
  4767. #define AT91C_TCB2_FEATURES (AT91_CAST(AT91_REG *) 0x40080178) // (TCB2) TC FEATURES REGISTER
  4768. #define AT91C_TCB2_VER (AT91_CAST(AT91_REG *) 0x4008017C) // (TCB2) Version Register
  4769. #define AT91C_TCB2_ADDRSIZE (AT91_CAST(AT91_REG *) 0x4008016C) // (TCB2) TC ADDRSIZE REGISTER
  4770. #define AT91C_TCB2_IPNAME1 (AT91_CAST(AT91_REG *) 0x40080170) // (TCB2) TC IPNAME1 REGISTER
  4771. #define AT91C_TCB2_IPNAME2 (AT91_CAST(AT91_REG *) 0x40080174) // (TCB2) TC IPNAME2 REGISTER
  4772. #define AT91C_TCB2_BMR (AT91_CAST(AT91_REG *) 0x40080144) // (TCB2) TC Block Mode Register
  4773. #define AT91C_TCB2_BCR (AT91_CAST(AT91_REG *) 0x40080140) // (TCB2) TC Block Control Register
  4774. // ========== Register definition for EFC0 peripheral ==========
  4775. #define AT91C_EFC0_FCR (AT91_CAST(AT91_REG *) 0x400E0804) // (EFC0) EFC Flash Command Register
  4776. #define AT91C_EFC0_FRR (AT91_CAST(AT91_REG *) 0x400E080C) // (EFC0) EFC Flash Result Register
  4777. #define AT91C_EFC0_FMR (AT91_CAST(AT91_REG *) 0x400E0800) // (EFC0) EFC Flash Mode Register
  4778. #define AT91C_EFC0_FSR (AT91_CAST(AT91_REG *) 0x400E0808) // (EFC0) EFC Flash Status Register
  4779. #define AT91C_EFC0_FVR (AT91_CAST(AT91_REG *) 0x400E0814) // (EFC0) EFC Flash Version Register
  4780. // ========== Register definition for EFC1 peripheral ==========
  4781. #define AT91C_EFC1_FMR (AT91_CAST(AT91_REG *) 0x400E0A00) // (EFC1) EFC Flash Mode Register
  4782. #define AT91C_EFC1_FVR (AT91_CAST(AT91_REG *) 0x400E0A14) // (EFC1) EFC Flash Version Register
  4783. #define AT91C_EFC1_FSR (AT91_CAST(AT91_REG *) 0x400E0A08) // (EFC1) EFC Flash Status Register
  4784. #define AT91C_EFC1_FCR (AT91_CAST(AT91_REG *) 0x400E0A04) // (EFC1) EFC Flash Command Register
  4785. #define AT91C_EFC1_FRR (AT91_CAST(AT91_REG *) 0x400E0A0C) // (EFC1) EFC Flash Result Register
  4786. // ========== Register definition for MCI0 peripheral ==========
  4787. #define AT91C_MCI0_DMA (AT91_CAST(AT91_REG *) 0x40000050) // (MCI0) MCI DMA Configuration Register
  4788. #define AT91C_MCI0_SDCR (AT91_CAST(AT91_REG *) 0x4000000C) // (MCI0) MCI SD/SDIO Card Register
  4789. #define AT91C_MCI0_IPNAME1 (AT91_CAST(AT91_REG *) 0x400000F0) // (MCI0) MCI IPNAME1 REGISTER
  4790. #define AT91C_MCI0_CSTOR (AT91_CAST(AT91_REG *) 0x4000001C) // (MCI0) MCI Completion Signal Timeout Register
  4791. #define AT91C_MCI0_RDR (AT91_CAST(AT91_REG *) 0x40000030) // (MCI0) MCI Receive Data Register
  4792. #define AT91C_MCI0_CMDR (AT91_CAST(AT91_REG *) 0x40000014) // (MCI0) MCI Command Register
  4793. #define AT91C_MCI0_IDR (AT91_CAST(AT91_REG *) 0x40000048) // (MCI0) MCI Interrupt Disable Register
  4794. #define AT91C_MCI0_ADDRSIZE (AT91_CAST(AT91_REG *) 0x400000EC) // (MCI0) MCI ADDRSIZE REGISTER
  4795. #define AT91C_MCI0_WPCR (AT91_CAST(AT91_REG *) 0x400000E4) // (MCI0) MCI Write Protection Control Register
  4796. #define AT91C_MCI0_RSPR (AT91_CAST(AT91_REG *) 0x40000020) // (MCI0) MCI Response Register
  4797. #define AT91C_MCI0_IPNAME2 (AT91_CAST(AT91_REG *) 0x400000F4) // (MCI0) MCI IPNAME2 REGISTER
  4798. #define AT91C_MCI0_CR (AT91_CAST(AT91_REG *) 0x40000000) // (MCI0) MCI Control Register
  4799. #define AT91C_MCI0_IMR (AT91_CAST(AT91_REG *) 0x4000004C) // (MCI0) MCI Interrupt Mask Register
  4800. #define AT91C_MCI0_WPSR (AT91_CAST(AT91_REG *) 0x400000E8) // (MCI0) MCI Write Protection Status Register
  4801. #define AT91C_MCI0_DTOR (AT91_CAST(AT91_REG *) 0x40000008) // (MCI0) MCI Data Timeout Register
  4802. #define AT91C_MCI0_MR (AT91_CAST(AT91_REG *) 0x40000004) // (MCI0) MCI Mode Register
  4803. #define AT91C_MCI0_SR (AT91_CAST(AT91_REG *) 0x40000040) // (MCI0) MCI Status Register
  4804. #define AT91C_MCI0_IER (AT91_CAST(AT91_REG *) 0x40000044) // (MCI0) MCI Interrupt Enable Register
  4805. #define AT91C_MCI0_VER (AT91_CAST(AT91_REG *) 0x400000FC) // (MCI0) MCI VERSION REGISTER
  4806. #define AT91C_MCI0_FEATURES (AT91_CAST(AT91_REG *) 0x400000F8) // (MCI0) MCI FEATURES REGISTER
  4807. #define AT91C_MCI0_BLKR (AT91_CAST(AT91_REG *) 0x40000018) // (MCI0) MCI Block Register
  4808. #define AT91C_MCI0_ARGR (AT91_CAST(AT91_REG *) 0x40000010) // (MCI0) MCI Argument Register
  4809. #define AT91C_MCI0_FIFO (AT91_CAST(AT91_REG *) 0x40000200) // (MCI0) MCI FIFO Aperture Register
  4810. #define AT91C_MCI0_TDR (AT91_CAST(AT91_REG *) 0x40000034) // (MCI0) MCI Transmit Data Register
  4811. #define AT91C_MCI0_CFG (AT91_CAST(AT91_REG *) 0x40000054) // (MCI0) MCI Configuration Register
  4812. // ========== Register definition for PDC_TWI0 peripheral ==========
  4813. #define AT91C_TWI0_TNCR (AT91_CAST(AT91_REG *) 0x4008411C) // (PDC_TWI0) Transmit Next Counter Register
  4814. #define AT91C_TWI0_PTCR (AT91_CAST(AT91_REG *) 0x40084120) // (PDC_TWI0) PDC Transfer Control Register
  4815. #define AT91C_TWI0_PTSR (AT91_CAST(AT91_REG *) 0x40084124) // (PDC_TWI0) PDC Transfer Status Register
  4816. #define AT91C_TWI0_RCR (AT91_CAST(AT91_REG *) 0x40084104) // (PDC_TWI0) Receive Counter Register
  4817. #define AT91C_TWI0_TNPR (AT91_CAST(AT91_REG *) 0x40084118) // (PDC_TWI0) Transmit Next Pointer Register
  4818. #define AT91C_TWI0_RNPR (AT91_CAST(AT91_REG *) 0x40084110) // (PDC_TWI0) Receive Next Pointer Register
  4819. #define AT91C_TWI0_RPR (AT91_CAST(AT91_REG *) 0x40084100) // (PDC_TWI0) Receive Pointer Register
  4820. #define AT91C_TWI0_RNCR (AT91_CAST(AT91_REG *) 0x40084114) // (PDC_TWI0) Receive Next Counter Register
  4821. #define AT91C_TWI0_TPR (AT91_CAST(AT91_REG *) 0x40084108) // (PDC_TWI0) Transmit Pointer Register
  4822. #define AT91C_TWI0_TCR (AT91_CAST(AT91_REG *) 0x4008410C) // (PDC_TWI0) Transmit Counter Register
  4823. // ========== Register definition for PDC_TWI1 peripheral ==========
  4824. #define AT91C_TWI1_TNCR (AT91_CAST(AT91_REG *) 0x4008811C) // (PDC_TWI1) Transmit Next Counter Register
  4825. #define AT91C_TWI1_PTCR (AT91_CAST(AT91_REG *) 0x40088120) // (PDC_TWI1) PDC Transfer Control Register
  4826. #define AT91C_TWI1_RNCR (AT91_CAST(AT91_REG *) 0x40088114) // (PDC_TWI1) Receive Next Counter Register
  4827. #define AT91C_TWI1_RCR (AT91_CAST(AT91_REG *) 0x40088104) // (PDC_TWI1) Receive Counter Register
  4828. #define AT91C_TWI1_RPR (AT91_CAST(AT91_REG *) 0x40088100) // (PDC_TWI1) Receive Pointer Register
  4829. #define AT91C_TWI1_TNPR (AT91_CAST(AT91_REG *) 0x40088118) // (PDC_TWI1) Transmit Next Pointer Register
  4830. #define AT91C_TWI1_RNPR (AT91_CAST(AT91_REG *) 0x40088110) // (PDC_TWI1) Receive Next Pointer Register
  4831. #define AT91C_TWI1_TCR (AT91_CAST(AT91_REG *) 0x4008810C) // (PDC_TWI1) Transmit Counter Register
  4832. #define AT91C_TWI1_TPR (AT91_CAST(AT91_REG *) 0x40088108) // (PDC_TWI1) Transmit Pointer Register
  4833. #define AT91C_TWI1_PTSR (AT91_CAST(AT91_REG *) 0x40088124) // (PDC_TWI1) PDC Transfer Status Register
  4834. // ========== Register definition for TWI0 peripheral ==========
  4835. #define AT91C_TWI0_FEATURES (AT91_CAST(AT91_REG *) 0x400840F8) // (TWI0) TWI FEATURES REGISTER
  4836. #define AT91C_TWI0_IPNAME1 (AT91_CAST(AT91_REG *) 0x400840F0) // (TWI0) TWI IPNAME1 REGISTER
  4837. #define AT91C_TWI0_SMR (AT91_CAST(AT91_REG *) 0x40084008) // (TWI0) Slave Mode Register
  4838. #define AT91C_TWI0_MMR (AT91_CAST(AT91_REG *) 0x40084004) // (TWI0) Master Mode Register
  4839. #define AT91C_TWI0_SR (AT91_CAST(AT91_REG *) 0x40084020) // (TWI0) Status Register
  4840. #define AT91C_TWI0_IPNAME2 (AT91_CAST(AT91_REG *) 0x400840F4) // (TWI0) TWI IPNAME2 REGISTER
  4841. #define AT91C_TWI0_CR (AT91_CAST(AT91_REG *) 0x40084000) // (TWI0) Control Register
  4842. #define AT91C_TWI0_IER (AT91_CAST(AT91_REG *) 0x40084024) // (TWI0) Interrupt Enable Register
  4843. #define AT91C_TWI0_RHR (AT91_CAST(AT91_REG *) 0x40084030) // (TWI0) Receive Holding Register
  4844. #define AT91C_TWI0_ADDRSIZE (AT91_CAST(AT91_REG *) 0x400840EC) // (TWI0) TWI ADDRSIZE REGISTER
  4845. #define AT91C_TWI0_THR (AT91_CAST(AT91_REG *) 0x40084034) // (TWI0) Transmit Holding Register
  4846. #define AT91C_TWI0_VER (AT91_CAST(AT91_REG *) 0x400840FC) // (TWI0) Version Register
  4847. #define AT91C_TWI0_IADR (AT91_CAST(AT91_REG *) 0x4008400C) // (TWI0) Internal Address Register
  4848. #define AT91C_TWI0_IMR (AT91_CAST(AT91_REG *) 0x4008402C) // (TWI0) Interrupt Mask Register
  4849. #define AT91C_TWI0_CWGR (AT91_CAST(AT91_REG *) 0x40084010) // (TWI0) Clock Waveform Generator Register
  4850. #define AT91C_TWI0_IDR (AT91_CAST(AT91_REG *) 0x40084028) // (TWI0) Interrupt Disable Register
  4851. // ========== Register definition for TWI1 peripheral ==========
  4852. #define AT91C_TWI1_VER (AT91_CAST(AT91_REG *) 0x400880FC) // (TWI1) Version Register
  4853. #define AT91C_TWI1_IDR (AT91_CAST(AT91_REG *) 0x40088028) // (TWI1) Interrupt Disable Register
  4854. #define AT91C_TWI1_IPNAME2 (AT91_CAST(AT91_REG *) 0x400880F4) // (TWI1) TWI IPNAME2 REGISTER
  4855. #define AT91C_TWI1_CWGR (AT91_CAST(AT91_REG *) 0x40088010) // (TWI1) Clock Waveform Generator Register
  4856. #define AT91C_TWI1_CR (AT91_CAST(AT91_REG *) 0x40088000) // (TWI1) Control Register
  4857. #define AT91C_TWI1_ADDRSIZE (AT91_CAST(AT91_REG *) 0x400880EC) // (TWI1) TWI ADDRSIZE REGISTER
  4858. #define AT91C_TWI1_IADR (AT91_CAST(AT91_REG *) 0x4008800C) // (TWI1) Internal Address Register
  4859. #define AT91C_TWI1_IER (AT91_CAST(AT91_REG *) 0x40088024) // (TWI1) Interrupt Enable Register
  4860. #define AT91C_TWI1_SMR (AT91_CAST(AT91_REG *) 0x40088008) // (TWI1) Slave Mode Register
  4861. #define AT91C_TWI1_RHR (AT91_CAST(AT91_REG *) 0x40088030) // (TWI1) Receive Holding Register
  4862. #define AT91C_TWI1_FEATURES (AT91_CAST(AT91_REG *) 0x400880F8) // (TWI1) TWI FEATURES REGISTER
  4863. #define AT91C_TWI1_IMR (AT91_CAST(AT91_REG *) 0x4008802C) // (TWI1) Interrupt Mask Register
  4864. #define AT91C_TWI1_SR (AT91_CAST(AT91_REG *) 0x40088020) // (TWI1) Status Register
  4865. #define AT91C_TWI1_THR (AT91_CAST(AT91_REG *) 0x40088034) // (TWI1) Transmit Holding Register
  4866. #define AT91C_TWI1_MMR (AT91_CAST(AT91_REG *) 0x40088004) // (TWI1) Master Mode Register
  4867. #define AT91C_TWI1_IPNAME1 (AT91_CAST(AT91_REG *) 0x400880F0) // (TWI1) TWI IPNAME1 REGISTER
  4868. // ========== Register definition for PDC_US0 peripheral ==========
  4869. #define AT91C_US0_RNCR (AT91_CAST(AT91_REG *) 0x40090114) // (PDC_US0) Receive Next Counter Register
  4870. #define AT91C_US0_TNPR (AT91_CAST(AT91_REG *) 0x40090118) // (PDC_US0) Transmit Next Pointer Register
  4871. #define AT91C_US0_TPR (AT91_CAST(AT91_REG *) 0x40090108) // (PDC_US0) Transmit Pointer Register
  4872. #define AT91C_US0_RCR (AT91_CAST(AT91_REG *) 0x40090104) // (PDC_US0) Receive Counter Register
  4873. #define AT91C_US0_RNPR (AT91_CAST(AT91_REG *) 0x40090110) // (PDC_US0) Receive Next Pointer Register
  4874. #define AT91C_US0_TNCR (AT91_CAST(AT91_REG *) 0x4009011C) // (PDC_US0) Transmit Next Counter Register
  4875. #define AT91C_US0_PTSR (AT91_CAST(AT91_REG *) 0x40090124) // (PDC_US0) PDC Transfer Status Register
  4876. #define AT91C_US0_RPR (AT91_CAST(AT91_REG *) 0x40090100) // (PDC_US0) Receive Pointer Register
  4877. #define AT91C_US0_PTCR (AT91_CAST(AT91_REG *) 0x40090120) // (PDC_US0) PDC Transfer Control Register
  4878. #define AT91C_US0_TCR (AT91_CAST(AT91_REG *) 0x4009010C) // (PDC_US0) Transmit Counter Register
  4879. // ========== Register definition for US0 peripheral ==========
  4880. #define AT91C_US0_NER (AT91_CAST(AT91_REG *) 0x40090044) // (US0) Nb Errors Register
  4881. #define AT91C_US0_RHR (AT91_CAST(AT91_REG *) 0x40090018) // (US0) Receiver Holding Register
  4882. #define AT91C_US0_IPNAME1 (AT91_CAST(AT91_REG *) 0x400900F0) // (US0) US IPNAME1 REGISTER
  4883. #define AT91C_US0_MR (AT91_CAST(AT91_REG *) 0x40090004) // (US0) Mode Register
  4884. #define AT91C_US0_RTOR (AT91_CAST(AT91_REG *) 0x40090024) // (US0) Receiver Time-out Register
  4885. #define AT91C_US0_IF (AT91_CAST(AT91_REG *) 0x4009004C) // (US0) IRDA_FILTER Register
  4886. #define AT91C_US0_ADDRSIZE (AT91_CAST(AT91_REG *) 0x400900EC) // (US0) US ADDRSIZE REGISTER
  4887. #define AT91C_US0_IDR (AT91_CAST(AT91_REG *) 0x4009000C) // (US0) Interrupt Disable Register
  4888. #define AT91C_US0_IMR (AT91_CAST(AT91_REG *) 0x40090010) // (US0) Interrupt Mask Register
  4889. #define AT91C_US0_IER (AT91_CAST(AT91_REG *) 0x40090008) // (US0) Interrupt Enable Register
  4890. #define AT91C_US0_TTGR (AT91_CAST(AT91_REG *) 0x40090028) // (US0) Transmitter Time-guard Register
  4891. #define AT91C_US0_IPNAME2 (AT91_CAST(AT91_REG *) 0x400900F4) // (US0) US IPNAME2 REGISTER
  4892. #define AT91C_US0_FIDI (AT91_CAST(AT91_REG *) 0x40090040) // (US0) FI_DI_Ratio Register
  4893. #define AT91C_US0_CR (AT91_CAST(AT91_REG *) 0x40090000) // (US0) Control Register
  4894. #define AT91C_US0_BRGR (AT91_CAST(AT91_REG *) 0x40090020) // (US0) Baud Rate Generator Register
  4895. #define AT91C_US0_MAN (AT91_CAST(AT91_REG *) 0x40090050) // (US0) Manchester Encoder Decoder Register
  4896. #define AT91C_US0_VER (AT91_CAST(AT91_REG *) 0x400900FC) // (US0) VERSION Register
  4897. #define AT91C_US0_FEATURES (AT91_CAST(AT91_REG *) 0x400900F8) // (US0) US FEATURES REGISTER
  4898. #define AT91C_US0_CSR (AT91_CAST(AT91_REG *) 0x40090014) // (US0) Channel Status Register
  4899. #define AT91C_US0_THR (AT91_CAST(AT91_REG *) 0x4009001C) // (US0) Transmitter Holding Register
  4900. // ========== Register definition for PDC_US1 peripheral ==========
  4901. #define AT91C_US1_TNPR (AT91_CAST(AT91_REG *) 0x40094118) // (PDC_US1) Transmit Next Pointer Register
  4902. #define AT91C_US1_TPR (AT91_CAST(AT91_REG *) 0x40094108) // (PDC_US1) Transmit Pointer Register
  4903. #define AT91C_US1_RNCR (AT91_CAST(AT91_REG *) 0x40094114) // (PDC_US1) Receive Next Counter Register
  4904. #define AT91C_US1_TNCR (AT91_CAST(AT91_REG *) 0x4009411C) // (PDC_US1) Transmit Next Counter Register
  4905. #define AT91C_US1_RNPR (AT91_CAST(AT91_REG *) 0x40094110) // (PDC_US1) Receive Next Pointer Register
  4906. #define AT91C_US1_TCR (AT91_CAST(AT91_REG *) 0x4009410C) // (PDC_US1) Transmit Counter Register
  4907. #define AT91C_US1_PTSR (AT91_CAST(AT91_REG *) 0x40094124) // (PDC_US1) PDC Transfer Status Register
  4908. #define AT91C_US1_RCR (AT91_CAST(AT91_REG *) 0x40094104) // (PDC_US1) Receive Counter Register
  4909. #define AT91C_US1_RPR (AT91_CAST(AT91_REG *) 0x40094100) // (PDC_US1) Receive Pointer Register
  4910. #define AT91C_US1_PTCR (AT91_CAST(AT91_REG *) 0x40094120) // (PDC_US1) PDC Transfer Control Register
  4911. // ========== Register definition for US1 peripheral ==========
  4912. #define AT91C_US1_IMR (AT91_CAST(AT91_REG *) 0x40094010) // (US1) Interrupt Mask Register
  4913. #define AT91C_US1_RTOR (AT91_CAST(AT91_REG *) 0x40094024) // (US1) Receiver Time-out Register
  4914. #define AT91C_US1_RHR (AT91_CAST(AT91_REG *) 0x40094018) // (US1) Receiver Holding Register
  4915. #define AT91C_US1_IPNAME1 (AT91_CAST(AT91_REG *) 0x400940F0) // (US1) US IPNAME1 REGISTER
  4916. #define AT91C_US1_VER (AT91_CAST(AT91_REG *) 0x400940FC) // (US1) VERSION Register
  4917. #define AT91C_US1_MR (AT91_CAST(AT91_REG *) 0x40094004) // (US1) Mode Register
  4918. #define AT91C_US1_FEATURES (AT91_CAST(AT91_REG *) 0x400940F8) // (US1) US FEATURES REGISTER
  4919. #define AT91C_US1_NER (AT91_CAST(AT91_REG *) 0x40094044) // (US1) Nb Errors Register
  4920. #define AT91C_US1_IPNAME2 (AT91_CAST(AT91_REG *) 0x400940F4) // (US1) US IPNAME2 REGISTER
  4921. #define AT91C_US1_CR (AT91_CAST(AT91_REG *) 0x40094000) // (US1) Control Register
  4922. #define AT91C_US1_BRGR (AT91_CAST(AT91_REG *) 0x40094020) // (US1) Baud Rate Generator Register
  4923. #define AT91C_US1_IF (AT91_CAST(AT91_REG *) 0x4009404C) // (US1) IRDA_FILTER Register
  4924. #define AT91C_US1_IER (AT91_CAST(AT91_REG *) 0x40094008) // (US1) Interrupt Enable Register
  4925. #define AT91C_US1_TTGR (AT91_CAST(AT91_REG *) 0x40094028) // (US1) Transmitter Time-guard Register
  4926. #define AT91C_US1_FIDI (AT91_CAST(AT91_REG *) 0x40094040) // (US1) FI_DI_Ratio Register
  4927. #define AT91C_US1_MAN (AT91_CAST(AT91_REG *) 0x40094050) // (US1) Manchester Encoder Decoder Register
  4928. #define AT91C_US1_ADDRSIZE (AT91_CAST(AT91_REG *) 0x400940EC) // (US1) US ADDRSIZE REGISTER
  4929. #define AT91C_US1_CSR (AT91_CAST(AT91_REG *) 0x40094014) // (US1) Channel Status Register
  4930. #define AT91C_US1_THR (AT91_CAST(AT91_REG *) 0x4009401C) // (US1) Transmitter Holding Register
  4931. #define AT91C_US1_IDR (AT91_CAST(AT91_REG *) 0x4009400C) // (US1) Interrupt Disable Register
  4932. // ========== Register definition for PDC_US2 peripheral ==========
  4933. #define AT91C_US2_RPR (AT91_CAST(AT91_REG *) 0x40098100) // (PDC_US2) Receive Pointer Register
  4934. #define AT91C_US2_TPR (AT91_CAST(AT91_REG *) 0x40098108) // (PDC_US2) Transmit Pointer Register
  4935. #define AT91C_US2_TCR (AT91_CAST(AT91_REG *) 0x4009810C) // (PDC_US2) Transmit Counter Register
  4936. #define AT91C_US2_PTSR (AT91_CAST(AT91_REG *) 0x40098124) // (PDC_US2) PDC Transfer Status Register
  4937. #define AT91C_US2_PTCR (AT91_CAST(AT91_REG *) 0x40098120) // (PDC_US2) PDC Transfer Control Register
  4938. #define AT91C_US2_RNPR (AT91_CAST(AT91_REG *) 0x40098110) // (PDC_US2) Receive Next Pointer Register
  4939. #define AT91C_US2_TNCR (AT91_CAST(AT91_REG *) 0x4009811C) // (PDC_US2) Transmit Next Counter Register
  4940. #define AT91C_US2_RNCR (AT91_CAST(AT91_REG *) 0x40098114) // (PDC_US2) Receive Next Counter Register
  4941. #define AT91C_US2_TNPR (AT91_CAST(AT91_REG *) 0x40098118) // (PDC_US2) Transmit Next Pointer Register
  4942. #define AT91C_US2_RCR (AT91_CAST(AT91_REG *) 0x40098104) // (PDC_US2) Receive Counter Register
  4943. // ========== Register definition for US2 peripheral ==========
  4944. #define AT91C_US2_MAN (AT91_CAST(AT91_REG *) 0x40098050) // (US2) Manchester Encoder Decoder Register
  4945. #define AT91C_US2_ADDRSIZE (AT91_CAST(AT91_REG *) 0x400980EC) // (US2) US ADDRSIZE REGISTER
  4946. #define AT91C_US2_MR (AT91_CAST(AT91_REG *) 0x40098004) // (US2) Mode Register
  4947. #define AT91C_US2_IPNAME1 (AT91_CAST(AT91_REG *) 0x400980F0) // (US2) US IPNAME1 REGISTER
  4948. #define AT91C_US2_IF (AT91_CAST(AT91_REG *) 0x4009804C) // (US2) IRDA_FILTER Register
  4949. #define AT91C_US2_BRGR (AT91_CAST(AT91_REG *) 0x40098020) // (US2) Baud Rate Generator Register
  4950. #define AT91C_US2_FIDI (AT91_CAST(AT91_REG *) 0x40098040) // (US2) FI_DI_Ratio Register
  4951. #define AT91C_US2_IER (AT91_CAST(AT91_REG *) 0x40098008) // (US2) Interrupt Enable Register
  4952. #define AT91C_US2_RTOR (AT91_CAST(AT91_REG *) 0x40098024) // (US2) Receiver Time-out Register
  4953. #define AT91C_US2_CR (AT91_CAST(AT91_REG *) 0x40098000) // (US2) Control Register
  4954. #define AT91C_US2_THR (AT91_CAST(AT91_REG *) 0x4009801C) // (US2) Transmitter Holding Register
  4955. #define AT91C_US2_CSR (AT91_CAST(AT91_REG *) 0x40098014) // (US2) Channel Status Register
  4956. #define AT91C_US2_VER (AT91_CAST(AT91_REG *) 0x400980FC) // (US2) VERSION Register
  4957. #define AT91C_US2_FEATURES (AT91_CAST(AT91_REG *) 0x400980F8) // (US2) US FEATURES REGISTER
  4958. #define AT91C_US2_IDR (AT91_CAST(AT91_REG *) 0x4009800C) // (US2) Interrupt Disable Register
  4959. #define AT91C_US2_TTGR (AT91_CAST(AT91_REG *) 0x40098028) // (US2) Transmitter Time-guard Register
  4960. #define AT91C_US2_IPNAME2 (AT91_CAST(AT91_REG *) 0x400980F4) // (US2) US IPNAME2 REGISTER
  4961. #define AT91C_US2_RHR (AT91_CAST(AT91_REG *) 0x40098018) // (US2) Receiver Holding Register
  4962. #define AT91C_US2_NER (AT91_CAST(AT91_REG *) 0x40098044) // (US2) Nb Errors Register
  4963. #define AT91C_US2_IMR (AT91_CAST(AT91_REG *) 0x40098010) // (US2) Interrupt Mask Register
  4964. // ========== Register definition for PDC_US3 peripheral ==========
  4965. #define AT91C_US3_TPR (AT91_CAST(AT91_REG *) 0x4009C108) // (PDC_US3) Transmit Pointer Register
  4966. #define AT91C_US3_PTCR (AT91_CAST(AT91_REG *) 0x4009C120) // (PDC_US3) PDC Transfer Control Register
  4967. #define AT91C_US3_TCR (AT91_CAST(AT91_REG *) 0x4009C10C) // (PDC_US3) Transmit Counter Register
  4968. #define AT91C_US3_RCR (AT91_CAST(AT91_REG *) 0x4009C104) // (PDC_US3) Receive Counter Register
  4969. #define AT91C_US3_RNCR (AT91_CAST(AT91_REG *) 0x4009C114) // (PDC_US3) Receive Next Counter Register
  4970. #define AT91C_US3_RNPR (AT91_CAST(AT91_REG *) 0x4009C110) // (PDC_US3) Receive Next Pointer Register
  4971. #define AT91C_US3_RPR (AT91_CAST(AT91_REG *) 0x4009C100) // (PDC_US3) Receive Pointer Register
  4972. #define AT91C_US3_PTSR (AT91_CAST(AT91_REG *) 0x4009C124) // (PDC_US3) PDC Transfer Status Register
  4973. #define AT91C_US3_TNCR (AT91_CAST(AT91_REG *) 0x4009C11C) // (PDC_US3) Transmit Next Counter Register
  4974. #define AT91C_US3_TNPR (AT91_CAST(AT91_REG *) 0x4009C118) // (PDC_US3) Transmit Next Pointer Register
  4975. // ========== Register definition for US3 peripheral ==========
  4976. #define AT91C_US3_MAN (AT91_CAST(AT91_REG *) 0x4009C050) // (US3) Manchester Encoder Decoder Register
  4977. #define AT91C_US3_CSR (AT91_CAST(AT91_REG *) 0x4009C014) // (US3) Channel Status Register
  4978. #define AT91C_US3_BRGR (AT91_CAST(AT91_REG *) 0x4009C020) // (US3) Baud Rate Generator Register
  4979. #define AT91C_US3_IPNAME2 (AT91_CAST(AT91_REG *) 0x4009C0F4) // (US3) US IPNAME2 REGISTER
  4980. #define AT91C_US3_RTOR (AT91_CAST(AT91_REG *) 0x4009C024) // (US3) Receiver Time-out Register
  4981. #define AT91C_US3_ADDRSIZE (AT91_CAST(AT91_REG *) 0x4009C0EC) // (US3) US ADDRSIZE REGISTER
  4982. #define AT91C_US3_CR (AT91_CAST(AT91_REG *) 0x4009C000) // (US3) Control Register
  4983. #define AT91C_US3_IF (AT91_CAST(AT91_REG *) 0x4009C04C) // (US3) IRDA_FILTER Register
  4984. #define AT91C_US3_FEATURES (AT91_CAST(AT91_REG *) 0x4009C0F8) // (US3) US FEATURES REGISTER
  4985. #define AT91C_US3_VER (AT91_CAST(AT91_REG *) 0x4009C0FC) // (US3) VERSION Register
  4986. #define AT91C_US3_RHR (AT91_CAST(AT91_REG *) 0x4009C018) // (US3) Receiver Holding Register
  4987. #define AT91C_US3_TTGR (AT91_CAST(AT91_REG *) 0x4009C028) // (US3) Transmitter Time-guard Register
  4988. #define AT91C_US3_NER (AT91_CAST(AT91_REG *) 0x4009C044) // (US3) Nb Errors Register
  4989. #define AT91C_US3_IMR (AT91_CAST(AT91_REG *) 0x4009C010) // (US3) Interrupt Mask Register
  4990. #define AT91C_US3_THR (AT91_CAST(AT91_REG *) 0x4009C01C) // (US3) Transmitter Holding Register
  4991. #define AT91C_US3_IDR (AT91_CAST(AT91_REG *) 0x4009C00C) // (US3) Interrupt Disable Register
  4992. #define AT91C_US3_MR (AT91_CAST(AT91_REG *) 0x4009C004) // (US3) Mode Register
  4993. #define AT91C_US3_IER (AT91_CAST(AT91_REG *) 0x4009C008) // (US3) Interrupt Enable Register
  4994. #define AT91C_US3_FIDI (AT91_CAST(AT91_REG *) 0x4009C040) // (US3) FI_DI_Ratio Register
  4995. #define AT91C_US3_IPNAME1 (AT91_CAST(AT91_REG *) 0x4009C0F0) // (US3) US IPNAME1 REGISTER
  4996. // ========== Register definition for PDC_SSC0 peripheral ==========
  4997. #define AT91C_SSC0_RNCR (AT91_CAST(AT91_REG *) 0x40004114) // (PDC_SSC0) Receive Next Counter Register
  4998. #define AT91C_SSC0_TPR (AT91_CAST(AT91_REG *) 0x40004108) // (PDC_SSC0) Transmit Pointer Register
  4999. #define AT91C_SSC0_TCR (AT91_CAST(AT91_REG *) 0x4000410C) // (PDC_SSC0) Transmit Counter Register
  5000. #define AT91C_SSC0_PTCR (AT91_CAST(AT91_REG *) 0x40004120) // (PDC_SSC0) PDC Transfer Control Register
  5001. #define AT91C_SSC0_TNPR (AT91_CAST(AT91_REG *) 0x40004118) // (PDC_SSC0) Transmit Next Pointer Register
  5002. #define AT91C_SSC0_RPR (AT91_CAST(AT91_REG *) 0x40004100) // (PDC_SSC0) Receive Pointer Register
  5003. #define AT91C_SSC0_TNCR (AT91_CAST(AT91_REG *) 0x4000411C) // (PDC_SSC0) Transmit Next Counter Register
  5004. #define AT91C_SSC0_RNPR (AT91_CAST(AT91_REG *) 0x40004110) // (PDC_SSC0) Receive Next Pointer Register
  5005. #define AT91C_SSC0_RCR (AT91_CAST(AT91_REG *) 0x40004104) // (PDC_SSC0) Receive Counter Register
  5006. #define AT91C_SSC0_PTSR (AT91_CAST(AT91_REG *) 0x40004124) // (PDC_SSC0) PDC Transfer Status Register
  5007. // ========== Register definition for SSC0 peripheral ==========
  5008. #define AT91C_SSC0_FEATURES (AT91_CAST(AT91_REG *) 0x400040F8) // (SSC0) SSC FEATURES REGISTER
  5009. #define AT91C_SSC0_IPNAME1 (AT91_CAST(AT91_REG *) 0x400040F0) // (SSC0) SSC IPNAME1 REGISTER
  5010. #define AT91C_SSC0_CR (AT91_CAST(AT91_REG *) 0x40004000) // (SSC0) Control Register
  5011. #define AT91C_SSC0_ADDRSIZE (AT91_CAST(AT91_REG *) 0x400040EC) // (SSC0) SSC ADDRSIZE REGISTER
  5012. #define AT91C_SSC0_RHR (AT91_CAST(AT91_REG *) 0x40004020) // (SSC0) Receive Holding Register
  5013. #define AT91C_SSC0_VER (AT91_CAST(AT91_REG *) 0x400040FC) // (SSC0) Version Register
  5014. #define AT91C_SSC0_TSHR (AT91_CAST(AT91_REG *) 0x40004034) // (SSC0) Transmit Sync Holding Register
  5015. #define AT91C_SSC0_RFMR (AT91_CAST(AT91_REG *) 0x40004014) // (SSC0) Receive Frame Mode Register
  5016. #define AT91C_SSC0_IDR (AT91_CAST(AT91_REG *) 0x40004048) // (SSC0) Interrupt Disable Register
  5017. #define AT91C_SSC0_TFMR (AT91_CAST(AT91_REG *) 0x4000401C) // (SSC0) Transmit Frame Mode Register
  5018. #define AT91C_SSC0_RSHR (AT91_CAST(AT91_REG *) 0x40004030) // (SSC0) Receive Sync Holding Register
  5019. #define AT91C_SSC0_TCMR (AT91_CAST(AT91_REG *) 0x40004018) // (SSC0) Transmit Clock Mode Register
  5020. #define AT91C_SSC0_RCMR (AT91_CAST(AT91_REG *) 0x40004010) // (SSC0) Receive Clock ModeRegister
  5021. #define AT91C_SSC0_SR (AT91_CAST(AT91_REG *) 0x40004040) // (SSC0) Status Register
  5022. #define AT91C_SSC0_IPNAME2 (AT91_CAST(AT91_REG *) 0x400040F4) // (SSC0) SSC IPNAME2 REGISTER
  5023. #define AT91C_SSC0_THR (AT91_CAST(AT91_REG *) 0x40004024) // (SSC0) Transmit Holding Register
  5024. #define AT91C_SSC0_CMR (AT91_CAST(AT91_REG *) 0x40004004) // (SSC0) Clock Mode Register
  5025. #define AT91C_SSC0_IER (AT91_CAST(AT91_REG *) 0x40004044) // (SSC0) Interrupt Enable Register
  5026. #define AT91C_SSC0_IMR (AT91_CAST(AT91_REG *) 0x4000404C) // (SSC0) Interrupt Mask Register
  5027. // ========== Register definition for PDC_PWMC peripheral ==========
  5028. #define AT91C_PWMC_TNCR (AT91_CAST(AT91_REG *) 0x4008C11C) // (PDC_PWMC) Transmit Next Counter Register
  5029. #define AT91C_PWMC_TPR (AT91_CAST(AT91_REG *) 0x4008C108) // (PDC_PWMC) Transmit Pointer Register
  5030. #define AT91C_PWMC_RPR (AT91_CAST(AT91_REG *) 0x4008C100) // (PDC_PWMC) Receive Pointer Register
  5031. #define AT91C_PWMC_TCR (AT91_CAST(AT91_REG *) 0x4008C10C) // (PDC_PWMC) Transmit Counter Register
  5032. #define AT91C_PWMC_PTSR (AT91_CAST(AT91_REG *) 0x4008C124) // (PDC_PWMC) PDC Transfer Status Register
  5033. #define AT91C_PWMC_RNPR (AT91_CAST(AT91_REG *) 0x4008C110) // (PDC_PWMC) Receive Next Pointer Register
  5034. #define AT91C_PWMC_RCR (AT91_CAST(AT91_REG *) 0x4008C104) // (PDC_PWMC) Receive Counter Register
  5035. #define AT91C_PWMC_RNCR (AT91_CAST(AT91_REG *) 0x4008C114) // (PDC_PWMC) Receive Next Counter Register
  5036. #define AT91C_PWMC_PTCR (AT91_CAST(AT91_REG *) 0x4008C120) // (PDC_PWMC) PDC Transfer Control Register
  5037. #define AT91C_PWMC_TNPR (AT91_CAST(AT91_REG *) 0x4008C118) // (PDC_PWMC) Transmit Next Pointer Register
  5038. // ========== Register definition for PWMC_CH0 peripheral ==========
  5039. #define AT91C_PWMC_CH0_DTR (AT91_CAST(AT91_REG *) 0x4008C218) // (PWMC_CH0) Channel Dead Time Value Register
  5040. #define AT91C_PWMC_CH0_CMR (AT91_CAST(AT91_REG *) 0x4008C200) // (PWMC_CH0) Channel Mode Register
  5041. #define AT91C_PWMC_CH0_CCNTR (AT91_CAST(AT91_REG *) 0x4008C214) // (PWMC_CH0) Channel Counter Register
  5042. #define AT91C_PWMC_CH0_CPRDR (AT91_CAST(AT91_REG *) 0x4008C20C) // (PWMC_CH0) Channel Period Register
  5043. #define AT91C_PWMC_CH0_DTUPDR (AT91_CAST(AT91_REG *) 0x4008C21C) // (PWMC_CH0) Channel Dead Time Update Value Register
  5044. #define AT91C_PWMC_CH0_CPRDUPDR (AT91_CAST(AT91_REG *) 0x4008C210) // (PWMC_CH0) Channel Period Update Register
  5045. #define AT91C_PWMC_CH0_CDTYUPDR (AT91_CAST(AT91_REG *) 0x4008C208) // (PWMC_CH0) Channel Duty Cycle Update Register
  5046. #define AT91C_PWMC_CH0_CDTYR (AT91_CAST(AT91_REG *) 0x4008C204) // (PWMC_CH0) Channel Duty Cycle Register
  5047. // ========== Register definition for PWMC_CH1 peripheral ==========
  5048. #define AT91C_PWMC_CH1_CCNTR (AT91_CAST(AT91_REG *) 0x4008C234) // (PWMC_CH1) Channel Counter Register
  5049. #define AT91C_PWMC_CH1_DTR (AT91_CAST(AT91_REG *) 0x4008C238) // (PWMC_CH1) Channel Dead Time Value Register
  5050. #define AT91C_PWMC_CH1_CDTYUPDR (AT91_CAST(AT91_REG *) 0x4008C228) // (PWMC_CH1) Channel Duty Cycle Update Register
  5051. #define AT91C_PWMC_CH1_DTUPDR (AT91_CAST(AT91_REG *) 0x4008C23C) // (PWMC_CH1) Channel Dead Time Update Value Register
  5052. #define AT91C_PWMC_CH1_CDTYR (AT91_CAST(AT91_REG *) 0x4008C224) // (PWMC_CH1) Channel Duty Cycle Register
  5053. #define AT91C_PWMC_CH1_CPRDR (AT91_CAST(AT91_REG *) 0x4008C22C) // (PWMC_CH1) Channel Period Register
  5054. #define AT91C_PWMC_CH1_CPRDUPDR (AT91_CAST(AT91_REG *) 0x4008C230) // (PWMC_CH1) Channel Period Update Register
  5055. #define AT91C_PWMC_CH1_CMR (AT91_CAST(AT91_REG *) 0x4008C220) // (PWMC_CH1) Channel Mode Register
  5056. // ========== Register definition for PWMC_CH2 peripheral ==========
  5057. #define AT91C_PWMC_CH2_CDTYR (AT91_CAST(AT91_REG *) 0x4008C244) // (PWMC_CH2) Channel Duty Cycle Register
  5058. #define AT91C_PWMC_CH2_DTUPDR (AT91_CAST(AT91_REG *) 0x4008C25C) // (PWMC_CH2) Channel Dead Time Update Value Register
  5059. #define AT91C_PWMC_CH2_CCNTR (AT91_CAST(AT91_REG *) 0x4008C254) // (PWMC_CH2) Channel Counter Register
  5060. #define AT91C_PWMC_CH2_CMR (AT91_CAST(AT91_REG *) 0x4008C240) // (PWMC_CH2) Channel Mode Register
  5061. #define AT91C_PWMC_CH2_CPRDR (AT91_CAST(AT91_REG *) 0x4008C24C) // (PWMC_CH2) Channel Period Register
  5062. #define AT91C_PWMC_CH2_CPRDUPDR (AT91_CAST(AT91_REG *) 0x4008C250) // (PWMC_CH2) Channel Period Update Register
  5063. #define AT91C_PWMC_CH2_CDTYUPDR (AT91_CAST(AT91_REG *) 0x4008C248) // (PWMC_CH2) Channel Duty Cycle Update Register
  5064. #define AT91C_PWMC_CH2_DTR (AT91_CAST(AT91_REG *) 0x4008C258) // (PWMC_CH2) Channel Dead Time Value Register
  5065. // ========== Register definition for PWMC_CH3 peripheral ==========
  5066. #define AT91C_PWMC_CH3_CPRDUPDR (AT91_CAST(AT91_REG *) 0x4008C270) // (PWMC_CH3) Channel Period Update Register
  5067. #define AT91C_PWMC_CH3_DTR (AT91_CAST(AT91_REG *) 0x4008C278) // (PWMC_CH3) Channel Dead Time Value Register
  5068. #define AT91C_PWMC_CH3_CDTYR (AT91_CAST(AT91_REG *) 0x4008C264) // (PWMC_CH3) Channel Duty Cycle Register
  5069. #define AT91C_PWMC_CH3_DTUPDR (AT91_CAST(AT91_REG *) 0x4008C27C) // (PWMC_CH3) Channel Dead Time Update Value Register
  5070. #define AT91C_PWMC_CH3_CDTYUPDR (AT91_CAST(AT91_REG *) 0x4008C268) // (PWMC_CH3) Channel Duty Cycle Update Register
  5071. #define AT91C_PWMC_CH3_CCNTR (AT91_CAST(AT91_REG *) 0x4008C274) // (PWMC_CH3) Channel Counter Register
  5072. #define AT91C_PWMC_CH3_CMR (AT91_CAST(AT91_REG *) 0x4008C260) // (PWMC_CH3) Channel Mode Register
  5073. #define AT91C_PWMC_CH3_CPRDR (AT91_CAST(AT91_REG *) 0x4008C26C) // (PWMC_CH3) Channel Period Register
  5074. // ========== Register definition for PWMC peripheral ==========
  5075. #define AT91C_PWMC_CMP6MUPD (AT91_CAST(AT91_REG *) 0x4008C19C) // (PWMC) PWM Comparison Mode 6 Update Register
  5076. #define AT91C_PWMC_ISR1 (AT91_CAST(AT91_REG *) 0x4008C01C) // (PWMC) PWMC Interrupt Status Register 1
  5077. #define AT91C_PWMC_CMP5V (AT91_CAST(AT91_REG *) 0x4008C180) // (PWMC) PWM Comparison Value 5 Register
  5078. #define AT91C_PWMC_CMP4MUPD (AT91_CAST(AT91_REG *) 0x4008C17C) // (PWMC) PWM Comparison Mode 4 Update Register
  5079. #define AT91C_PWMC_FMR (AT91_CAST(AT91_REG *) 0x4008C05C) // (PWMC) PWM Fault Mode Register
  5080. #define AT91C_PWMC_CMP6V (AT91_CAST(AT91_REG *) 0x4008C190) // (PWMC) PWM Comparison Value 6 Register
  5081. #define AT91C_PWMC_EL4MR (AT91_CAST(AT91_REG *) 0x4008C08C) // (PWMC) PWM Event Line 4 Mode Register
  5082. #define AT91C_PWMC_UPCR (AT91_CAST(AT91_REG *) 0x4008C028) // (PWMC) PWM Update Control Register
  5083. #define AT91C_PWMC_CMP1VUPD (AT91_CAST(AT91_REG *) 0x4008C144) // (PWMC) PWM Comparison Value 1 Update Register
  5084. #define AT91C_PWMC_CMP0M (AT91_CAST(AT91_REG *) 0x4008C138) // (PWMC) PWM Comparison Mode 0 Register
  5085. #define AT91C_PWMC_CMP5VUPD (AT91_CAST(AT91_REG *) 0x4008C184) // (PWMC) PWM Comparison Value 5 Update Register
  5086. #define AT91C_PWMC_FPER3 (AT91_CAST(AT91_REG *) 0x4008C074) // (PWMC) PWM Fault Protection Enable Register 3
  5087. #define AT91C_PWMC_OSCUPD (AT91_CAST(AT91_REG *) 0x4008C058) // (PWMC) PWM Output Selection Clear Update Register
  5088. #define AT91C_PWMC_FPER1 (AT91_CAST(AT91_REG *) 0x4008C06C) // (PWMC) PWM Fault Protection Enable Register 1
  5089. #define AT91C_PWMC_SCUPUPD (AT91_CAST(AT91_REG *) 0x4008C030) // (PWMC) PWM Update Period Update Register
  5090. #define AT91C_PWMC_DIS (AT91_CAST(AT91_REG *) 0x4008C008) // (PWMC) PWMC Disable Register
  5091. #define AT91C_PWMC_IER1 (AT91_CAST(AT91_REG *) 0x4008C010) // (PWMC) PWMC Interrupt Enable Register 1
  5092. #define AT91C_PWMC_IMR2 (AT91_CAST(AT91_REG *) 0x4008C03C) // (PWMC) PWMC Interrupt Mask Register 2
  5093. #define AT91C_PWMC_CMP0V (AT91_CAST(AT91_REG *) 0x4008C130) // (PWMC) PWM Comparison Value 0 Register
  5094. #define AT91C_PWMC_SR (AT91_CAST(AT91_REG *) 0x4008C00C) // (PWMC) PWMC Status Register
  5095. #define AT91C_PWMC_CMP4M (AT91_CAST(AT91_REG *) 0x4008C178) // (PWMC) PWM Comparison Mode 4 Register
  5096. #define AT91C_PWMC_CMP3M (AT91_CAST(AT91_REG *) 0x4008C168) // (PWMC) PWM Comparison Mode 3 Register
  5097. #define AT91C_PWMC_IER2 (AT91_CAST(AT91_REG *) 0x4008C034) // (PWMC) PWMC Interrupt Enable Register 2
  5098. #define AT91C_PWMC_CMP3VUPD (AT91_CAST(AT91_REG *) 0x4008C164) // (PWMC) PWM Comparison Value 3 Update Register
  5099. #define AT91C_PWMC_CMP2M (AT91_CAST(AT91_REG *) 0x4008C158) // (PWMC) PWM Comparison Mode 2 Register
  5100. #define AT91C_PWMC_IDR2 (AT91_CAST(AT91_REG *) 0x4008C038) // (PWMC) PWMC Interrupt Disable Register 2
  5101. #define AT91C_PWMC_EL2MR (AT91_CAST(AT91_REG *) 0x4008C084) // (PWMC) PWM Event Line 2 Mode Register
  5102. #define AT91C_PWMC_CMP7V (AT91_CAST(AT91_REG *) 0x4008C1A0) // (PWMC) PWM Comparison Value 7 Register
  5103. #define AT91C_PWMC_CMP1M (AT91_CAST(AT91_REG *) 0x4008C148) // (PWMC) PWM Comparison Mode 1 Register
  5104. #define AT91C_PWMC_CMP0VUPD (AT91_CAST(AT91_REG *) 0x4008C134) // (PWMC) PWM Comparison Value 0 Update Register
  5105. #define AT91C_PWMC_WPSR (AT91_CAST(AT91_REG *) 0x4008C0E8) // (PWMC) PWM Write Protection Status Register
  5106. #define AT91C_PWMC_CMP6VUPD (AT91_CAST(AT91_REG *) 0x4008C194) // (PWMC) PWM Comparison Value 6 Update Register
  5107. #define AT91C_PWMC_CMP1MUPD (AT91_CAST(AT91_REG *) 0x4008C14C) // (PWMC) PWM Comparison Mode 1 Update Register
  5108. #define AT91C_PWMC_CMP1V (AT91_CAST(AT91_REG *) 0x4008C140) // (PWMC) PWM Comparison Value 1 Register
  5109. #define AT91C_PWMC_FCR (AT91_CAST(AT91_REG *) 0x4008C064) // (PWMC) PWM Fault Mode Clear Register
  5110. #define AT91C_PWMC_VER (AT91_CAST(AT91_REG *) 0x4008C0FC) // (PWMC) PWMC Version Register
  5111. #define AT91C_PWMC_EL1MR (AT91_CAST(AT91_REG *) 0x4008C080) // (PWMC) PWM Event Line 1 Mode Register
  5112. #define AT91C_PWMC_EL6MR (AT91_CAST(AT91_REG *) 0x4008C094) // (PWMC) PWM Event Line 6 Mode Register
  5113. #define AT91C_PWMC_ISR2 (AT91_CAST(AT91_REG *) 0x4008C040) // (PWMC) PWMC Interrupt Status Register 2
  5114. #define AT91C_PWMC_CMP4VUPD (AT91_CAST(AT91_REG *) 0x4008C174) // (PWMC) PWM Comparison Value 4 Update Register
  5115. #define AT91C_PWMC_CMP5MUPD (AT91_CAST(AT91_REG *) 0x4008C18C) // (PWMC) PWM Comparison Mode 5 Update Register
  5116. #define AT91C_PWMC_OS (AT91_CAST(AT91_REG *) 0x4008C048) // (PWMC) PWM Output Selection Register
  5117. #define AT91C_PWMC_FPV (AT91_CAST(AT91_REG *) 0x4008C068) // (PWMC) PWM Fault Protection Value Register
  5118. #define AT91C_PWMC_FPER2 (AT91_CAST(AT91_REG *) 0x4008C070) // (PWMC) PWM Fault Protection Enable Register 2
  5119. #define AT91C_PWMC_EL7MR (AT91_CAST(AT91_REG *) 0x4008C098) // (PWMC) PWM Event Line 7 Mode Register
  5120. #define AT91C_PWMC_OSSUPD (AT91_CAST(AT91_REG *) 0x4008C054) // (PWMC) PWM Output Selection Set Update Register
  5121. #define AT91C_PWMC_FEATURES (AT91_CAST(AT91_REG *) 0x4008C0F8) // (PWMC) PWMC FEATURES REGISTER
  5122. #define AT91C_PWMC_CMP2V (AT91_CAST(AT91_REG *) 0x4008C150) // (PWMC) PWM Comparison Value 2 Register
  5123. #define AT91C_PWMC_FSR (AT91_CAST(AT91_REG *) 0x4008C060) // (PWMC) PWM Fault Mode Status Register
  5124. #define AT91C_PWMC_ADDRSIZE (AT91_CAST(AT91_REG *) 0x4008C0EC) // (PWMC) PWMC ADDRSIZE REGISTER
  5125. #define AT91C_PWMC_OSC (AT91_CAST(AT91_REG *) 0x4008C050) // (PWMC) PWM Output Selection Clear Register
  5126. #define AT91C_PWMC_SCUP (AT91_CAST(AT91_REG *) 0x4008C02C) // (PWMC) PWM Update Period Register
  5127. #define AT91C_PWMC_CMP7MUPD (AT91_CAST(AT91_REG *) 0x4008C1AC) // (PWMC) PWM Comparison Mode 7 Update Register
  5128. #define AT91C_PWMC_CMP2VUPD (AT91_CAST(AT91_REG *) 0x4008C154) // (PWMC) PWM Comparison Value 2 Update Register
  5129. #define AT91C_PWMC_FPER4 (AT91_CAST(AT91_REG *) 0x4008C078) // (PWMC) PWM Fault Protection Enable Register 4
  5130. #define AT91C_PWMC_IMR1 (AT91_CAST(AT91_REG *) 0x4008C018) // (PWMC) PWMC Interrupt Mask Register 1
  5131. #define AT91C_PWMC_EL3MR (AT91_CAST(AT91_REG *) 0x4008C088) // (PWMC) PWM Event Line 3 Mode Register
  5132. #define AT91C_PWMC_CMP3V (AT91_CAST(AT91_REG *) 0x4008C160) // (PWMC) PWM Comparison Value 3 Register
  5133. #define AT91C_PWMC_IPNAME1 (AT91_CAST(AT91_REG *) 0x4008C0F0) // (PWMC) PWMC IPNAME1 REGISTER
  5134. #define AT91C_PWMC_OSS (AT91_CAST(AT91_REG *) 0x4008C04C) // (PWMC) PWM Output Selection Set Register
  5135. #define AT91C_PWMC_CMP0MUPD (AT91_CAST(AT91_REG *) 0x4008C13C) // (PWMC) PWM Comparison Mode 0 Update Register
  5136. #define AT91C_PWMC_CMP2MUPD (AT91_CAST(AT91_REG *) 0x4008C15C) // (PWMC) PWM Comparison Mode 2 Update Register
  5137. #define AT91C_PWMC_CMP4V (AT91_CAST(AT91_REG *) 0x4008C170) // (PWMC) PWM Comparison Value 4 Register
  5138. #define AT91C_PWMC_ENA (AT91_CAST(AT91_REG *) 0x4008C004) // (PWMC) PWMC Enable Register
  5139. #define AT91C_PWMC_CMP3MUPD (AT91_CAST(AT91_REG *) 0x4008C16C) // (PWMC) PWM Comparison Mode 3 Update Register
  5140. #define AT91C_PWMC_EL0MR (AT91_CAST(AT91_REG *) 0x4008C07C) // (PWMC) PWM Event Line 0 Mode Register
  5141. #define AT91C_PWMC_OOV (AT91_CAST(AT91_REG *) 0x4008C044) // (PWMC) PWM Output Override Value Register
  5142. #define AT91C_PWMC_WPCR (AT91_CAST(AT91_REG *) 0x4008C0E4) // (PWMC) PWM Write Protection Enable Register
  5143. #define AT91C_PWMC_CMP7M (AT91_CAST(AT91_REG *) 0x4008C1A8) // (PWMC) PWM Comparison Mode 7 Register
  5144. #define AT91C_PWMC_CMP6M (AT91_CAST(AT91_REG *) 0x4008C198) // (PWMC) PWM Comparison Mode 6 Register
  5145. #define AT91C_PWMC_CMP5M (AT91_CAST(AT91_REG *) 0x4008C188) // (PWMC) PWM Comparison Mode 5 Register
  5146. #define AT91C_PWMC_IPNAME2 (AT91_CAST(AT91_REG *) 0x4008C0F4) // (PWMC) PWMC IPNAME2 REGISTER
  5147. #define AT91C_PWMC_CMP7VUPD (AT91_CAST(AT91_REG *) 0x4008C1A4) // (PWMC) PWM Comparison Value 7 Update Register
  5148. #define AT91C_PWMC_SYNC (AT91_CAST(AT91_REG *) 0x4008C020) // (PWMC) PWM Synchronized Channels Register
  5149. #define AT91C_PWMC_MR (AT91_CAST(AT91_REG *) 0x4008C000) // (PWMC) PWMC Mode Register
  5150. #define AT91C_PWMC_IDR1 (AT91_CAST(AT91_REG *) 0x4008C014) // (PWMC) PWMC Interrupt Disable Register 1
  5151. #define AT91C_PWMC_EL5MR (AT91_CAST(AT91_REG *) 0x4008C090) // (PWMC) PWM Event Line 5 Mode Register
  5152. // ========== Register definition for SPI0 peripheral ==========
  5153. #define AT91C_SPI0_ADDRSIZE (AT91_CAST(AT91_REG *) 0x400080EC) // (SPI0) SPI ADDRSIZE REGISTER
  5154. #define AT91C_SPI0_RDR (AT91_CAST(AT91_REG *) 0x40008008) // (SPI0) Receive Data Register
  5155. #define AT91C_SPI0_FEATURES (AT91_CAST(AT91_REG *) 0x400080F8) // (SPI0) SPI FEATURES REGISTER
  5156. #define AT91C_SPI0_CR (AT91_CAST(AT91_REG *) 0x40008000) // (SPI0) Control Register
  5157. #define AT91C_SPI0_IPNAME1 (AT91_CAST(AT91_REG *) 0x400080F0) // (SPI0) SPI IPNAME1 REGISTER
  5158. #define AT91C_SPI0_VER (AT91_CAST(AT91_REG *) 0x400080FC) // (SPI0) Version Register
  5159. #define AT91C_SPI0_IDR (AT91_CAST(AT91_REG *) 0x40008018) // (SPI0) Interrupt Disable Register
  5160. #define AT91C_SPI0_TDR (AT91_CAST(AT91_REG *) 0x4000800C) // (SPI0) Transmit Data Register
  5161. #define AT91C_SPI0_MR (AT91_CAST(AT91_REG *) 0x40008004) // (SPI0) Mode Register
  5162. #define AT91C_SPI0_IER (AT91_CAST(AT91_REG *) 0x40008014) // (SPI0) Interrupt Enable Register
  5163. #define AT91C_SPI0_IMR (AT91_CAST(AT91_REG *) 0x4000801C) // (SPI0) Interrupt Mask Register
  5164. #define AT91C_SPI0_IPNAME2 (AT91_CAST(AT91_REG *) 0x400080F4) // (SPI0) SPI IPNAME2 REGISTER
  5165. #define AT91C_SPI0_CSR (AT91_CAST(AT91_REG *) 0x40008030) // (SPI0) Chip Select Register
  5166. #define AT91C_SPI0_SR (AT91_CAST(AT91_REG *) 0x40008010) // (SPI0) Status Register
  5167. // ========== Register definition for UDPHS_EPTFIFO peripheral ==========
  5168. #define AT91C_UDPHS_EPTFIFO_READEPT6 (AT91_CAST(AT91_REG *) 0x201E0000) // (UDPHS_EPTFIFO) FIFO Endpoint Data Register 6
  5169. #define AT91C_UDPHS_EPTFIFO_READEPT2 (AT91_CAST(AT91_REG *) 0x201A0000) // (UDPHS_EPTFIFO) FIFO Endpoint Data Register 2
  5170. #define AT91C_UDPHS_EPTFIFO_READEPT1 (AT91_CAST(AT91_REG *) 0x20190000) // (UDPHS_EPTFIFO) FIFO Endpoint Data Register 1
  5171. #define AT91C_UDPHS_EPTFIFO_READEPT0 (AT91_CAST(AT91_REG *) 0x20180000) // (UDPHS_EPTFIFO) FIFO Endpoint Data Register 0
  5172. #define AT91C_UDPHS_EPTFIFO_READEPT5 (AT91_CAST(AT91_REG *) 0x201D0000) // (UDPHS_EPTFIFO) FIFO Endpoint Data Register 5
  5173. #define AT91C_UDPHS_EPTFIFO_READEPT4 (AT91_CAST(AT91_REG *) 0x201C0000) // (UDPHS_EPTFIFO) FIFO Endpoint Data Register 4
  5174. #define AT91C_UDPHS_EPTFIFO_READEPT3 (AT91_CAST(AT91_REG *) 0x201B0000) // (UDPHS_EPTFIFO) FIFO Endpoint Data Register 3
  5175. // ========== Register definition for UDPHS_EPT_0 peripheral ==========
  5176. #define AT91C_UDPHS_EPT_0_EPTCTL (AT91_CAST(AT91_REG *) 0x400A410C) // (UDPHS_EPT_0) UDPHS Endpoint Control Register
  5177. #define AT91C_UDPHS_EPT_0_EPTSTA (AT91_CAST(AT91_REG *) 0x400A411C) // (UDPHS_EPT_0) UDPHS Endpoint Status Register
  5178. #define AT91C_UDPHS_EPT_0_EPTCLRSTA (AT91_CAST(AT91_REG *) 0x400A4118) // (UDPHS_EPT_0) UDPHS Endpoint Clear Status Register
  5179. #define AT91C_UDPHS_EPT_0_EPTCTLDIS (AT91_CAST(AT91_REG *) 0x400A4108) // (UDPHS_EPT_0) UDPHS Endpoint Control Disable Register
  5180. #define AT91C_UDPHS_EPT_0_EPTCFG (AT91_CAST(AT91_REG *) 0x400A4100) // (UDPHS_EPT_0) UDPHS Endpoint Config Register
  5181. #define AT91C_UDPHS_EPT_0_EPTSETSTA (AT91_CAST(AT91_REG *) 0x400A4114) // (UDPHS_EPT_0) UDPHS Endpoint Set Status Register
  5182. #define AT91C_UDPHS_EPT_0_EPTCTLENB (AT91_CAST(AT91_REG *) 0x400A4104) // (UDPHS_EPT_0) UDPHS Endpoint Control Enable Register
  5183. // ========== Register definition for UDPHS_EPT_1 peripheral ==========
  5184. #define AT91C_UDPHS_EPT_1_EPTSTA (AT91_CAST(AT91_REG *) 0x400A413C) // (UDPHS_EPT_1) UDPHS Endpoint Status Register
  5185. #define AT91C_UDPHS_EPT_1_EPTSETSTA (AT91_CAST(AT91_REG *) 0x400A4134) // (UDPHS_EPT_1) UDPHS Endpoint Set Status Register
  5186. #define AT91C_UDPHS_EPT_1_EPTCTL (AT91_CAST(AT91_REG *) 0x400A412C) // (UDPHS_EPT_1) UDPHS Endpoint Control Register
  5187. #define AT91C_UDPHS_EPT_1_EPTCFG (AT91_CAST(AT91_REG *) 0x400A4120) // (UDPHS_EPT_1) UDPHS Endpoint Config Register
  5188. #define AT91C_UDPHS_EPT_1_EPTCTLDIS (AT91_CAST(AT91_REG *) 0x400A4128) // (UDPHS_EPT_1) UDPHS Endpoint Control Disable Register
  5189. #define AT91C_UDPHS_EPT_1_EPTCLRSTA (AT91_CAST(AT91_REG *) 0x400A4138) // (UDPHS_EPT_1) UDPHS Endpoint Clear Status Register
  5190. #define AT91C_UDPHS_EPT_1_EPTCTLENB (AT91_CAST(AT91_REG *) 0x400A4124) // (UDPHS_EPT_1) UDPHS Endpoint Control Enable Register
  5191. // ========== Register definition for UDPHS_EPT_2 peripheral ==========
  5192. #define AT91C_UDPHS_EPT_2_EPTCTLENB (AT91_CAST(AT91_REG *) 0x400A4144) // (UDPHS_EPT_2) UDPHS Endpoint Control Enable Register
  5193. #define AT91C_UDPHS_EPT_2_EPTCLRSTA (AT91_CAST(AT91_REG *) 0x400A4158) // (UDPHS_EPT_2) UDPHS Endpoint Clear Status Register
  5194. #define AT91C_UDPHS_EPT_2_EPTCFG (AT91_CAST(AT91_REG *) 0x400A4140) // (UDPHS_EPT_2) UDPHS Endpoint Config Register
  5195. #define AT91C_UDPHS_EPT_2_EPTCTL (AT91_CAST(AT91_REG *) 0x400A414C) // (UDPHS_EPT_2) UDPHS Endpoint Control Register
  5196. #define AT91C_UDPHS_EPT_2_EPTSETSTA (AT91_CAST(AT91_REG *) 0x400A4154) // (UDPHS_EPT_2) UDPHS Endpoint Set Status Register
  5197. #define AT91C_UDPHS_EPT_2_EPTSTA (AT91_CAST(AT91_REG *) 0x400A415C) // (UDPHS_EPT_2) UDPHS Endpoint Status Register
  5198. #define AT91C_UDPHS_EPT_2_EPTCTLDIS (AT91_CAST(AT91_REG *) 0x400A4148) // (UDPHS_EPT_2) UDPHS Endpoint Control Disable Register
  5199. // ========== Register definition for UDPHS_EPT_3 peripheral ==========
  5200. #define AT91C_UDPHS_EPT_3_EPTCTLDIS (AT91_CAST(AT91_REG *) 0x400A4168) // (UDPHS_EPT_3) UDPHS Endpoint Control Disable Register
  5201. #define AT91C_UDPHS_EPT_3_EPTCTLENB (AT91_CAST(AT91_REG *) 0x400A4164) // (UDPHS_EPT_3) UDPHS Endpoint Control Enable Register
  5202. #define AT91C_UDPHS_EPT_3_EPTSETSTA (AT91_CAST(AT91_REG *) 0x400A4174) // (UDPHS_EPT_3) UDPHS Endpoint Set Status Register
  5203. #define AT91C_UDPHS_EPT_3_EPTCLRSTA (AT91_CAST(AT91_REG *) 0x400A4178) // (UDPHS_EPT_3) UDPHS Endpoint Clear Status Register
  5204. #define AT91C_UDPHS_EPT_3_EPTCFG (AT91_CAST(AT91_REG *) 0x400A4160) // (UDPHS_EPT_3) UDPHS Endpoint Config Register
  5205. #define AT91C_UDPHS_EPT_3_EPTSTA (AT91_CAST(AT91_REG *) 0x400A417C) // (UDPHS_EPT_3) UDPHS Endpoint Status Register
  5206. #define AT91C_UDPHS_EPT_3_EPTCTL (AT91_CAST(AT91_REG *) 0x400A416C) // (UDPHS_EPT_3) UDPHS Endpoint Control Register
  5207. // ========== Register definition for UDPHS_EPT_4 peripheral ==========
  5208. #define AT91C_UDPHS_EPT_4_EPTSETSTA (AT91_CAST(AT91_REG *) 0x400A4194) // (UDPHS_EPT_4) UDPHS Endpoint Set Status Register
  5209. #define AT91C_UDPHS_EPT_4_EPTCTLDIS (AT91_CAST(AT91_REG *) 0x400A4188) // (UDPHS_EPT_4) UDPHS Endpoint Control Disable Register
  5210. #define AT91C_UDPHS_EPT_4_EPTCTL (AT91_CAST(AT91_REG *) 0x400A418C) // (UDPHS_EPT_4) UDPHS Endpoint Control Register
  5211. #define AT91C_UDPHS_EPT_4_EPTCFG (AT91_CAST(AT91_REG *) 0x400A4180) // (UDPHS_EPT_4) UDPHS Endpoint Config Register
  5212. #define AT91C_UDPHS_EPT_4_EPTCTLENB (AT91_CAST(AT91_REG *) 0x400A4184) // (UDPHS_EPT_4) UDPHS Endpoint Control Enable Register
  5213. #define AT91C_UDPHS_EPT_4_EPTSTA (AT91_CAST(AT91_REG *) 0x400A419C) // (UDPHS_EPT_4) UDPHS Endpoint Status Register
  5214. #define AT91C_UDPHS_EPT_4_EPTCLRSTA (AT91_CAST(AT91_REG *) 0x400A4198) // (UDPHS_EPT_4) UDPHS Endpoint Clear Status Register
  5215. // ========== Register definition for UDPHS_EPT_5 peripheral ==========
  5216. #define AT91C_UDPHS_EPT_5_EPTCFG (AT91_CAST(AT91_REG *) 0x400A41A0) // (UDPHS_EPT_5) UDPHS Endpoint Config Register
  5217. #define AT91C_UDPHS_EPT_5_EPTCTL (AT91_CAST(AT91_REG *) 0x400A41AC) // (UDPHS_EPT_5) UDPHS Endpoint Control Register
  5218. #define AT91C_UDPHS_EPT_5_EPTCTLENB (AT91_CAST(AT91_REG *) 0x400A41A4) // (UDPHS_EPT_5) UDPHS Endpoint Control Enable Register
  5219. #define AT91C_UDPHS_EPT_5_EPTSTA (AT91_CAST(AT91_REG *) 0x400A41BC) // (UDPHS_EPT_5) UDPHS Endpoint Status Register
  5220. #define AT91C_UDPHS_EPT_5_EPTSETSTA (AT91_CAST(AT91_REG *) 0x400A41B4) // (UDPHS_EPT_5) UDPHS Endpoint Set Status Register
  5221. #define AT91C_UDPHS_EPT_5_EPTCTLDIS (AT91_CAST(AT91_REG *) 0x400A41A8) // (UDPHS_EPT_5) UDPHS Endpoint Control Disable Register
  5222. #define AT91C_UDPHS_EPT_5_EPTCLRSTA (AT91_CAST(AT91_REG *) 0x400A41B8) // (UDPHS_EPT_5) UDPHS Endpoint Clear Status Register
  5223. // ========== Register definition for UDPHS_EPT_6 peripheral ==========
  5224. #define AT91C_UDPHS_EPT_6_EPTCLRSTA (AT91_CAST(AT91_REG *) 0x400A41D8) // (UDPHS_EPT_6) UDPHS Endpoint Clear Status Register
  5225. #define AT91C_UDPHS_EPT_6_EPTCTL (AT91_CAST(AT91_REG *) 0x400A41CC) // (UDPHS_EPT_6) UDPHS Endpoint Control Register
  5226. #define AT91C_UDPHS_EPT_6_EPTCFG (AT91_CAST(AT91_REG *) 0x400A41C0) // (UDPHS_EPT_6) UDPHS Endpoint Config Register
  5227. #define AT91C_UDPHS_EPT_6_EPTCTLDIS (AT91_CAST(AT91_REG *) 0x400A41C8) // (UDPHS_EPT_6) UDPHS Endpoint Control Disable Register
  5228. #define AT91C_UDPHS_EPT_6_EPTSTA (AT91_CAST(AT91_REG *) 0x400A41DC) // (UDPHS_EPT_6) UDPHS Endpoint Status Register
  5229. #define AT91C_UDPHS_EPT_6_EPTCTLENB (AT91_CAST(AT91_REG *) 0x400A41C4) // (UDPHS_EPT_6) UDPHS Endpoint Control Enable Register
  5230. #define AT91C_UDPHS_EPT_6_EPTSETSTA (AT91_CAST(AT91_REG *) 0x400A41D4) // (UDPHS_EPT_6) UDPHS Endpoint Set Status Register
  5231. // ========== Register definition for UDPHS_DMA_1 peripheral ==========
  5232. #define AT91C_UDPHS_DMA_1_DMASTATUS (AT91_CAST(AT91_REG *) 0x400A431C) // (UDPHS_DMA_1) UDPHS DMA Channel Status Register
  5233. #define AT91C_UDPHS_DMA_1_DMACONTROL (AT91_CAST(AT91_REG *) 0x400A4318) // (UDPHS_DMA_1) UDPHS DMA Channel Control Register
  5234. #define AT91C_UDPHS_DMA_1_DMANXTDSC (AT91_CAST(AT91_REG *) 0x400A4310) // (UDPHS_DMA_1) UDPHS DMA Channel Next Descriptor Address
  5235. #define AT91C_UDPHS_DMA_1_DMAADDRESS (AT91_CAST(AT91_REG *) 0x400A4314) // (UDPHS_DMA_1) UDPHS DMA Channel Address Register
  5236. // ========== Register definition for UDPHS_DMA_2 peripheral ==========
  5237. #define AT91C_UDPHS_DMA_2_DMASTATUS (AT91_CAST(AT91_REG *) 0x400A432C) // (UDPHS_DMA_2) UDPHS DMA Channel Status Register
  5238. #define AT91C_UDPHS_DMA_2_DMANXTDSC (AT91_CAST(AT91_REG *) 0x400A4320) // (UDPHS_DMA_2) UDPHS DMA Channel Next Descriptor Address
  5239. #define AT91C_UDPHS_DMA_2_DMACONTROL (AT91_CAST(AT91_REG *) 0x400A4328) // (UDPHS_DMA_2) UDPHS DMA Channel Control Register
  5240. #define AT91C_UDPHS_DMA_2_DMAADDRESS (AT91_CAST(AT91_REG *) 0x400A4324) // (UDPHS_DMA_2) UDPHS DMA Channel Address Register
  5241. // ========== Register definition for UDPHS_DMA_3 peripheral ==========
  5242. #define AT91C_UDPHS_DMA_3_DMACONTROL (AT91_CAST(AT91_REG *) 0x400A4338) // (UDPHS_DMA_3) UDPHS DMA Channel Control Register
  5243. #define AT91C_UDPHS_DMA_3_DMANXTDSC (AT91_CAST(AT91_REG *) 0x400A4330) // (UDPHS_DMA_3) UDPHS DMA Channel Next Descriptor Address
  5244. #define AT91C_UDPHS_DMA_3_DMASTATUS (AT91_CAST(AT91_REG *) 0x400A433C) // (UDPHS_DMA_3) UDPHS DMA Channel Status Register
  5245. #define AT91C_UDPHS_DMA_3_DMAADDRESS (AT91_CAST(AT91_REG *) 0x400A4334) // (UDPHS_DMA_3) UDPHS DMA Channel Address Register
  5246. // ========== Register definition for UDPHS_DMA_4 peripheral ==========
  5247. #define AT91C_UDPHS_DMA_4_DMAADDRESS (AT91_CAST(AT91_REG *) 0x400A4344) // (UDPHS_DMA_4) UDPHS DMA Channel Address Register
  5248. #define AT91C_UDPHS_DMA_4_DMANXTDSC (AT91_CAST(AT91_REG *) 0x400A4340) // (UDPHS_DMA_4) UDPHS DMA Channel Next Descriptor Address
  5249. #define AT91C_UDPHS_DMA_4_DMASTATUS (AT91_CAST(AT91_REG *) 0x400A434C) // (UDPHS_DMA_4) UDPHS DMA Channel Status Register
  5250. #define AT91C_UDPHS_DMA_4_DMACONTROL (AT91_CAST(AT91_REG *) 0x400A4348) // (UDPHS_DMA_4) UDPHS DMA Channel Control Register
  5251. // ========== Register definition for UDPHS_DMA_5 peripheral ==========
  5252. #define AT91C_UDPHS_DMA_5_DMACONTROL (AT91_CAST(AT91_REG *) 0x400A4358) // (UDPHS_DMA_5) UDPHS DMA Channel Control Register
  5253. #define AT91C_UDPHS_DMA_5_DMAADDRESS (AT91_CAST(AT91_REG *) 0x400A4354) // (UDPHS_DMA_5) UDPHS DMA Channel Address Register
  5254. #define AT91C_UDPHS_DMA_5_DMANXTDSC (AT91_CAST(AT91_REG *) 0x400A4350) // (UDPHS_DMA_5) UDPHS DMA Channel Next Descriptor Address
  5255. #define AT91C_UDPHS_DMA_5_DMASTATUS (AT91_CAST(AT91_REG *) 0x400A435C) // (UDPHS_DMA_5) UDPHS DMA Channel Status Register
  5256. // ========== Register definition for UDPHS_DMA_6 peripheral ==========
  5257. #define AT91C_UDPHS_DMA_6_DMASTATUS (AT91_CAST(AT91_REG *) 0x400A436C) // (UDPHS_DMA_6) UDPHS DMA Channel Status Register
  5258. #define AT91C_UDPHS_DMA_6_DMACONTROL (AT91_CAST(AT91_REG *) 0x400A4368) // (UDPHS_DMA_6) UDPHS DMA Channel Control Register
  5259. #define AT91C_UDPHS_DMA_6_DMANXTDSC (AT91_CAST(AT91_REG *) 0x400A4360) // (UDPHS_DMA_6) UDPHS DMA Channel Next Descriptor Address
  5260. #define AT91C_UDPHS_DMA_6_DMAADDRESS (AT91_CAST(AT91_REG *) 0x400A4364) // (UDPHS_DMA_6) UDPHS DMA Channel Address Register
  5261. // ========== Register definition for UDPHS peripheral ==========
  5262. #define AT91C_UDPHS_EPTRST (AT91_CAST(AT91_REG *) 0x400A401C) // (UDPHS) UDPHS Endpoints Reset Register
  5263. #define AT91C_UDPHS_IEN (AT91_CAST(AT91_REG *) 0x400A4010) // (UDPHS) UDPHS Interrupt Enable Register
  5264. #define AT91C_UDPHS_TSTCNTB (AT91_CAST(AT91_REG *) 0x400A40D8) // (UDPHS) UDPHS Test B Counter Register
  5265. #define AT91C_UDPHS_RIPNAME2 (AT91_CAST(AT91_REG *) 0x400A40F4) // (UDPHS) UDPHS Name2 Register
  5266. #define AT91C_UDPHS_RIPPADDRSIZE (AT91_CAST(AT91_REG *) 0x400A40EC) // (UDPHS) UDPHS PADDRSIZE Register
  5267. #define AT91C_UDPHS_TSTMODREG (AT91_CAST(AT91_REG *) 0x400A40DC) // (UDPHS) UDPHS Test Mode Register
  5268. #define AT91C_UDPHS_TST (AT91_CAST(AT91_REG *) 0x400A40E0) // (UDPHS) UDPHS Test Register
  5269. #define AT91C_UDPHS_TSTSOFCNT (AT91_CAST(AT91_REG *) 0x400A40D0) // (UDPHS) UDPHS Test SOF Counter Register
  5270. #define AT91C_UDPHS_FNUM (AT91_CAST(AT91_REG *) 0x400A4004) // (UDPHS) UDPHS Frame Number Register
  5271. #define AT91C_UDPHS_TSTCNTA (AT91_CAST(AT91_REG *) 0x400A40D4) // (UDPHS) UDPHS Test A Counter Register
  5272. #define AT91C_UDPHS_INTSTA (AT91_CAST(AT91_REG *) 0x400A4014) // (UDPHS) UDPHS Interrupt Status Register
  5273. #define AT91C_UDPHS_IPFEATURES (AT91_CAST(AT91_REG *) 0x400A40F8) // (UDPHS) UDPHS Features Register
  5274. #define AT91C_UDPHS_CLRINT (AT91_CAST(AT91_REG *) 0x400A4018) // (UDPHS) UDPHS Clear Interrupt Register
  5275. #define AT91C_UDPHS_RIPNAME1 (AT91_CAST(AT91_REG *) 0x400A40F0) // (UDPHS) UDPHS Name1 Register
  5276. #define AT91C_UDPHS_CTRL (AT91_CAST(AT91_REG *) 0x400A4000) // (UDPHS) UDPHS Control Register
  5277. #define AT91C_UDPHS_IPVERSION (AT91_CAST(AT91_REG *) 0x400A40FC) // (UDPHS) UDPHS Version Register
  5278. // ========== Register definition for HDMA_CH_0 peripheral ==========
  5279. #define AT91C_HDMA_CH_0_CADDR (AT91_CAST(AT91_REG *) 0x400B0060) // (HDMA_CH_0) HDMA Reserved
  5280. #define AT91C_HDMA_CH_0_DADDR (AT91_CAST(AT91_REG *) 0x400B0040) // (HDMA_CH_0) HDMA Channel Destination Address Register
  5281. #define AT91C_HDMA_CH_0_BDSCR (AT91_CAST(AT91_REG *) 0x400B005C) // (HDMA_CH_0) HDMA Reserved
  5282. #define AT91C_HDMA_CH_0_CFG (AT91_CAST(AT91_REG *) 0x400B0050) // (HDMA_CH_0) HDMA Channel Configuration Register
  5283. #define AT91C_HDMA_CH_0_CTRLB (AT91_CAST(AT91_REG *) 0x400B004C) // (HDMA_CH_0) HDMA Channel Control B Register
  5284. #define AT91C_HDMA_CH_0_CTRLA (AT91_CAST(AT91_REG *) 0x400B0048) // (HDMA_CH_0) HDMA Channel Control A Register
  5285. #define AT91C_HDMA_CH_0_DSCR (AT91_CAST(AT91_REG *) 0x400B0044) // (HDMA_CH_0) HDMA Channel Descriptor Address Register
  5286. #define AT91C_HDMA_CH_0_SADDR (AT91_CAST(AT91_REG *) 0x400B003C) // (HDMA_CH_0) HDMA Channel Source Address Register
  5287. #define AT91C_HDMA_CH_0_DPIP (AT91_CAST(AT91_REG *) 0x400B0058) // (HDMA_CH_0) HDMA Channel Destination Picture in Picture Configuration Register
  5288. #define AT91C_HDMA_CH_0_SPIP (AT91_CAST(AT91_REG *) 0x400B0054) // (HDMA_CH_0) HDMA Channel Source Picture in Picture Configuration Register
  5289. // ========== Register definition for HDMA_CH_1 peripheral ==========
  5290. #define AT91C_HDMA_CH_1_DSCR (AT91_CAST(AT91_REG *) 0x400B006C) // (HDMA_CH_1) HDMA Channel Descriptor Address Register
  5291. #define AT91C_HDMA_CH_1_BDSCR (AT91_CAST(AT91_REG *) 0x400B0084) // (HDMA_CH_1) HDMA Reserved
  5292. #define AT91C_HDMA_CH_1_CTRLB (AT91_CAST(AT91_REG *) 0x400B0074) // (HDMA_CH_1) HDMA Channel Control B Register
  5293. #define AT91C_HDMA_CH_1_SPIP (AT91_CAST(AT91_REG *) 0x400B007C) // (HDMA_CH_1) HDMA Channel Source Picture in Picture Configuration Register
  5294. #define AT91C_HDMA_CH_1_SADDR (AT91_CAST(AT91_REG *) 0x400B0064) // (HDMA_CH_1) HDMA Channel Source Address Register
  5295. #define AT91C_HDMA_CH_1_DPIP (AT91_CAST(AT91_REG *) 0x400B0080) // (HDMA_CH_1) HDMA Channel Destination Picture in Picture Configuration Register
  5296. #define AT91C_HDMA_CH_1_CFG (AT91_CAST(AT91_REG *) 0x400B0078) // (HDMA_CH_1) HDMA Channel Configuration Register
  5297. #define AT91C_HDMA_CH_1_DADDR (AT91_CAST(AT91_REG *) 0x400B0068) // (HDMA_CH_1) HDMA Channel Destination Address Register
  5298. #define AT91C_HDMA_CH_1_CADDR (AT91_CAST(AT91_REG *) 0x400B0088) // (HDMA_CH_1) HDMA Reserved
  5299. #define AT91C_HDMA_CH_1_CTRLA (AT91_CAST(AT91_REG *) 0x400B0070) // (HDMA_CH_1) HDMA Channel Control A Register
  5300. // ========== Register definition for HDMA_CH_2 peripheral ==========
  5301. #define AT91C_HDMA_CH_2_BDSCR (AT91_CAST(AT91_REG *) 0x400B00AC) // (HDMA_CH_2) HDMA Reserved
  5302. #define AT91C_HDMA_CH_2_CTRLB (AT91_CAST(AT91_REG *) 0x400B009C) // (HDMA_CH_2) HDMA Channel Control B Register
  5303. #define AT91C_HDMA_CH_2_CADDR (AT91_CAST(AT91_REG *) 0x400B00B0) // (HDMA_CH_2) HDMA Reserved
  5304. #define AT91C_HDMA_CH_2_CFG (AT91_CAST(AT91_REG *) 0x400B00A0) // (HDMA_CH_2) HDMA Channel Configuration Register
  5305. #define AT91C_HDMA_CH_2_CTRLA (AT91_CAST(AT91_REG *) 0x400B0098) // (HDMA_CH_2) HDMA Channel Control A Register
  5306. #define AT91C_HDMA_CH_2_SADDR (AT91_CAST(AT91_REG *) 0x400B008C) // (HDMA_CH_2) HDMA Channel Source Address Register
  5307. #define AT91C_HDMA_CH_2_DPIP (AT91_CAST(AT91_REG *) 0x400B00A8) // (HDMA_CH_2) HDMA Channel Destination Picture in Picture Configuration Register
  5308. #define AT91C_HDMA_CH_2_DADDR (AT91_CAST(AT91_REG *) 0x400B0090) // (HDMA_CH_2) HDMA Channel Destination Address Register
  5309. #define AT91C_HDMA_CH_2_SPIP (AT91_CAST(AT91_REG *) 0x400B00A4) // (HDMA_CH_2) HDMA Channel Source Picture in Picture Configuration Register
  5310. #define AT91C_HDMA_CH_2_DSCR (AT91_CAST(AT91_REG *) 0x400B0094) // (HDMA_CH_2) HDMA Channel Descriptor Address Register
  5311. // ========== Register definition for HDMA_CH_3 peripheral ==========
  5312. #define AT91C_HDMA_CH_3_DSCR (AT91_CAST(AT91_REG *) 0x400B00BC) // (HDMA_CH_3) HDMA Channel Descriptor Address Register
  5313. #define AT91C_HDMA_CH_3_SADDR (AT91_CAST(AT91_REG *) 0x400B00B4) // (HDMA_CH_3) HDMA Channel Source Address Register
  5314. #define AT91C_HDMA_CH_3_BDSCR (AT91_CAST(AT91_REG *) 0x400B00D4) // (HDMA_CH_3) HDMA Reserved
  5315. #define AT91C_HDMA_CH_3_CTRLA (AT91_CAST(AT91_REG *) 0x400B00C0) // (HDMA_CH_3) HDMA Channel Control A Register
  5316. #define AT91C_HDMA_CH_3_DPIP (AT91_CAST(AT91_REG *) 0x400B00D0) // (HDMA_CH_3) HDMA Channel Destination Picture in Picture Configuration Register
  5317. #define AT91C_HDMA_CH_3_CTRLB (AT91_CAST(AT91_REG *) 0x400B00C4) // (HDMA_CH_3) HDMA Channel Control B Register
  5318. #define AT91C_HDMA_CH_3_SPIP (AT91_CAST(AT91_REG *) 0x400B00CC) // (HDMA_CH_3) HDMA Channel Source Picture in Picture Configuration Register
  5319. #define AT91C_HDMA_CH_3_CFG (AT91_CAST(AT91_REG *) 0x400B00C8) // (HDMA_CH_3) HDMA Channel Configuration Register
  5320. #define AT91C_HDMA_CH_3_CADDR (AT91_CAST(AT91_REG *) 0x400B00D8) // (HDMA_CH_3) HDMA Reserved
  5321. #define AT91C_HDMA_CH_3_DADDR (AT91_CAST(AT91_REG *) 0x400B00B8) // (HDMA_CH_3) HDMA Channel Destination Address Register
  5322. // ========== Register definition for HDMA peripheral ==========
  5323. #define AT91C_HDMA_SYNC (AT91_CAST(AT91_REG *) 0x400B0014) // (HDMA) HDMA Request Synchronization Register
  5324. #define AT91C_HDMA_VER (AT91_CAST(AT91_REG *) 0x400B01FC) // (HDMA) HDMA VERSION REGISTER
  5325. #define AT91C_HDMA_RSVD0 (AT91_CAST(AT91_REG *) 0x400B0034) // (HDMA) HDMA Reserved
  5326. #define AT91C_HDMA_CHSR (AT91_CAST(AT91_REG *) 0x400B0030) // (HDMA) HDMA Channel Handler Status Register
  5327. #define AT91C_HDMA_IPNAME2 (AT91_CAST(AT91_REG *) 0x400B01F4) // (HDMA) HDMA IPNAME2 REGISTER
  5328. #define AT91C_HDMA_EBCIMR (AT91_CAST(AT91_REG *) 0x400B0020) // (HDMA) HDMA Error, Chained Buffer transfer completed and Buffer transfer completed Mask Register
  5329. #define AT91C_HDMA_CHDR (AT91_CAST(AT91_REG *) 0x400B002C) // (HDMA) HDMA Channel Handler Disable Register
  5330. #define AT91C_HDMA_EN (AT91_CAST(AT91_REG *) 0x400B0004) // (HDMA) HDMA Controller Enable Register
  5331. #define AT91C_HDMA_GCFG (AT91_CAST(AT91_REG *) 0x400B0000) // (HDMA) HDMA Global Configuration Register
  5332. #define AT91C_HDMA_IPNAME1 (AT91_CAST(AT91_REG *) 0x400B01F0) // (HDMA) HDMA IPNAME1 REGISTER
  5333. #define AT91C_HDMA_LAST (AT91_CAST(AT91_REG *) 0x400B0010) // (HDMA) HDMA Software Last Transfer Flag Register
  5334. #define AT91C_HDMA_FEATURES (AT91_CAST(AT91_REG *) 0x400B01F8) // (HDMA) HDMA FEATURES REGISTER
  5335. #define AT91C_HDMA_CREQ (AT91_CAST(AT91_REG *) 0x400B000C) // (HDMA) HDMA Software Chunk Transfer Request Register
  5336. #define AT91C_HDMA_EBCIER (AT91_CAST(AT91_REG *) 0x400B0018) // (HDMA) HDMA Error, Chained Buffer transfer completed and Buffer transfer completed Interrupt Enable register
  5337. #define AT91C_HDMA_CHER (AT91_CAST(AT91_REG *) 0x400B0028) // (HDMA) HDMA Channel Handler Enable Register
  5338. #define AT91C_HDMA_ADDRSIZE (AT91_CAST(AT91_REG *) 0x400B01EC) // (HDMA) HDMA ADDRSIZE REGISTER
  5339. #define AT91C_HDMA_EBCISR (AT91_CAST(AT91_REG *) 0x400B0024) // (HDMA) HDMA Error, Chained Buffer transfer completed and Buffer transfer completed Status Register
  5340. #define AT91C_HDMA_SREQ (AT91_CAST(AT91_REG *) 0x400B0008) // (HDMA) HDMA Software Single Request Register
  5341. #define AT91C_HDMA_EBCIDR (AT91_CAST(AT91_REG *) 0x400B001C) // (HDMA) HDMA Error, Chained Buffer transfer completed and Buffer transfer completed Interrupt Disable register
  5342. #define AT91C_HDMA_RSVD1 (AT91_CAST(AT91_REG *) 0x400B0038) // (HDMA) HDMA Reserved
  5343. // *****************************************************************************
  5344. // PIO DEFINITIONS FOR AT91SAM3U4
  5345. // *****************************************************************************
  5346. #define AT91C_PIO_PA0 (1 << 0) // Pin Controlled by PA0
  5347. #define AT91C_PA0_TIOB0 (AT91C_PIO_PA0) //
  5348. #define AT91C_PA0_SPI0_NPCS1 (AT91C_PIO_PA0) //
  5349. #define AT91C_PIO_PA1 (1 << 1) // Pin Controlled by PA1
  5350. #define AT91C_PA1_TIOA0 (AT91C_PIO_PA1) //
  5351. #define AT91C_PA1_SPI0_NPCS2 (AT91C_PIO_PA1) //
  5352. #define AT91C_PIO_PA10 (1 << 10) // Pin Controlled by PA10
  5353. #define AT91C_PA10_TWCK0 (AT91C_PIO_PA10) //
  5354. #define AT91C_PA10_PWML3 (AT91C_PIO_PA10) //
  5355. #define AT91C_PIO_PA11 (1 << 11) // Pin Controlled by PA11
  5356. #define AT91C_PA11_DRXD (AT91C_PIO_PA11) //
  5357. #define AT91C_PIO_PA12 (1 << 12) // Pin Controlled by PA12
  5358. #define AT91C_PA12_DTXD (AT91C_PIO_PA12) //
  5359. #define AT91C_PIO_PA13 (1 << 13) // Pin Controlled by PA13
  5360. #define AT91C_PA13_SPI0_MISO (AT91C_PIO_PA13) //
  5361. #define AT91C_PIO_PA14 (1 << 14) // Pin Controlled by PA14
  5362. #define AT91C_PA14_SPI0_MOSI (AT91C_PIO_PA14) //
  5363. #define AT91C_PIO_PA15 (1 << 15) // Pin Controlled by PA15
  5364. #define AT91C_PA15_SPI0_SPCK (AT91C_PIO_PA15) //
  5365. #define AT91C_PA15_PWMH2 (AT91C_PIO_PA15) //
  5366. #define AT91C_PIO_PA16 (1 << 16) // Pin Controlled by PA16
  5367. #define AT91C_PA16_SPI0_NPCS0 (AT91C_PIO_PA16) //
  5368. #define AT91C_PA16_NCS1 (AT91C_PIO_PA16) //
  5369. #define AT91C_PIO_PA17 (1 << 17) // Pin Controlled by PA17
  5370. #define AT91C_PA17_SCK0 (AT91C_PIO_PA17) //
  5371. #define AT91C_PIO_PA18 (1 << 18) // Pin Controlled by PA18
  5372. #define AT91C_PA18_TXD0 (AT91C_PIO_PA18) //
  5373. #define AT91C_PIO_PA19 (1 << 19) // Pin Controlled by PA19
  5374. #define AT91C_PA19_RXD0 (AT91C_PIO_PA19) //
  5375. #define AT91C_PA19_SPI0_NPCS3 (AT91C_PIO_PA19) //
  5376. #define AT91C_PIO_PA2 (1 << 2) // Pin Controlled by PA2
  5377. #define AT91C_PA2_TCLK0 (AT91C_PIO_PA2) //
  5378. #define AT91C_PA2_ADTRG1 (AT91C_PIO_PA2) //
  5379. #define AT91C_PIO_PA20 (1 << 20) // Pin Controlled by PA20
  5380. #define AT91C_PA20_TXD1 (AT91C_PIO_PA20) //
  5381. #define AT91C_PA20_PWMH3 (AT91C_PIO_PA20) //
  5382. #define AT91C_PIO_PA21 (1 << 21) // Pin Controlled by PA21
  5383. #define AT91C_PA21_RXD1 (AT91C_PIO_PA21) //
  5384. #define AT91C_PA21_PCK0 (AT91C_PIO_PA21) //
  5385. #define AT91C_PIO_PA22 (1 << 22) // Pin Controlled by PA22
  5386. #define AT91C_PA22_TXD2 (AT91C_PIO_PA22) //
  5387. #define AT91C_PA22_RTS1 (AT91C_PIO_PA22) //
  5388. #define AT91C_PIO_PA23 (1 << 23) // Pin Controlled by PA23
  5389. #define AT91C_PA23_RXD2 (AT91C_PIO_PA23) //
  5390. #define AT91C_PA23_CTS1 (AT91C_PIO_PA23) //
  5391. #define AT91C_PIO_PA24 (1 << 24) // Pin Controlled by PA24
  5392. #define AT91C_PA24_TWD1 (AT91C_PIO_PA24) //
  5393. #define AT91C_PA24_SCK1 (AT91C_PIO_PA24) //
  5394. #define AT91C_PIO_PA25 (1 << 25) // Pin Controlled by PA25
  5395. #define AT91C_PA25_TWCK1 (AT91C_PIO_PA25) //
  5396. #define AT91C_PA25_SCK2 (AT91C_PIO_PA25) //
  5397. #define AT91C_PIO_PA26 (1 << 26) // Pin Controlled by PA26
  5398. #define AT91C_PA26_TD0 (AT91C_PIO_PA26) //
  5399. #define AT91C_PA26_TCLK2 (AT91C_PIO_PA26) //
  5400. #define AT91C_PIO_PA27 (1 << 27) // Pin Controlled by PA27
  5401. #define AT91C_PA27_RD0 (AT91C_PIO_PA27) //
  5402. #define AT91C_PA27_PCK0 (AT91C_PIO_PA27) //
  5403. #define AT91C_PIO_PA28 (1 << 28) // Pin Controlled by PA28
  5404. #define AT91C_PA28_TK0 (AT91C_PIO_PA28) //
  5405. #define AT91C_PA28_PWMH0 (AT91C_PIO_PA28) //
  5406. #define AT91C_PIO_PA29 (1 << 29) // Pin Controlled by PA29
  5407. #define AT91C_PA29_RK0 (AT91C_PIO_PA29) //
  5408. #define AT91C_PA29_PWMH1 (AT91C_PIO_PA29) //
  5409. #define AT91C_PIO_PA3 (1 << 3) // Pin Controlled by PA3
  5410. #define AT91C_PA3_MCI0_CK (AT91C_PIO_PA3) //
  5411. #define AT91C_PA3_PCK1 (AT91C_PIO_PA3) //
  5412. #define AT91C_PIO_PA30 (1 << 30) // Pin Controlled by PA30
  5413. #define AT91C_PA30_TF0 (AT91C_PIO_PA30) //
  5414. #define AT91C_PA30_TIOA2 (AT91C_PIO_PA30) //
  5415. #define AT91C_PIO_PA31 (1 << 31) // Pin Controlled by PA31
  5416. #define AT91C_PA31_RF0 (AT91C_PIO_PA31) //
  5417. #define AT91C_PA31_TIOB2 (AT91C_PIO_PA31) //
  5418. #define AT91C_PIO_PA4 (1 << 4) // Pin Controlled by PA4
  5419. #define AT91C_PA4_MCI0_CDA (AT91C_PIO_PA4) //
  5420. #define AT91C_PA4_PWMH0 (AT91C_PIO_PA4) //
  5421. #define AT91C_PIO_PA5 (1 << 5) // Pin Controlled by PA5
  5422. #define AT91C_PA5_MCI0_DA0 (AT91C_PIO_PA5) //
  5423. #define AT91C_PA5_PWMH1 (AT91C_PIO_PA5) //
  5424. #define AT91C_PIO_PA6 (1 << 6) // Pin Controlled by PA6
  5425. #define AT91C_PA6_MCI0_DA1 (AT91C_PIO_PA6) //
  5426. #define AT91C_PA6_PWMH2 (AT91C_PIO_PA6) //
  5427. #define AT91C_PIO_PA7 (1 << 7) // Pin Controlled by PA7
  5428. #define AT91C_PA7_MCI0_DA2 (AT91C_PIO_PA7) //
  5429. #define AT91C_PA7_PWML0 (AT91C_PIO_PA7) //
  5430. #define AT91C_PIO_PA8 (1 << 8) // Pin Controlled by PA8
  5431. #define AT91C_PA8_MCI0_DA3 (AT91C_PIO_PA8) //
  5432. #define AT91C_PA8_PWML1 (AT91C_PIO_PA8) //
  5433. #define AT91C_PIO_PA9 (1 << 9) // Pin Controlled by PA9
  5434. #define AT91C_PA9_TWD0 (AT91C_PIO_PA9) //
  5435. #define AT91C_PA9_PWML2 (AT91C_PIO_PA9) //
  5436. #define AT91C_PIO_PB0 (1 << 0) // Pin Controlled by PB0
  5437. #define AT91C_PB0_PWMH0 (AT91C_PIO_PB0) //
  5438. #define AT91C_PB0_A2 (AT91C_PIO_PB0) //
  5439. #define AT91C_PIO_PB1 (1 << 1) // Pin Controlled by PB1
  5440. #define AT91C_PB1_PWMH1 (AT91C_PIO_PB1) //
  5441. #define AT91C_PB1_A3 (AT91C_PIO_PB1) //
  5442. #define AT91C_PIO_PB10 (1 << 10) // Pin Controlled by PB10
  5443. #define AT91C_PB10_D1 (AT91C_PIO_PB10) //
  5444. #define AT91C_PB10_DSR0 (AT91C_PIO_PB10) //
  5445. #define AT91C_PIO_PB11 (1 << 11) // Pin Controlled by PB11
  5446. #define AT91C_PB11_D2 (AT91C_PIO_PB11) //
  5447. #define AT91C_PB11_DCD0 (AT91C_PIO_PB11) //
  5448. #define AT91C_PIO_PB12 (1 << 12) // Pin Controlled by PB12
  5449. #define AT91C_PB12_D3 (AT91C_PIO_PB12) //
  5450. #define AT91C_PB12_RI0 (AT91C_PIO_PB12) //
  5451. #define AT91C_PIO_PB13 (1 << 13) // Pin Controlled by PB13
  5452. #define AT91C_PB13_D4 (AT91C_PIO_PB13) //
  5453. #define AT91C_PB13_PWMH0 (AT91C_PIO_PB13) //
  5454. #define AT91C_PIO_PB14 (1 << 14) // Pin Controlled by PB14
  5455. #define AT91C_PB14_D5 (AT91C_PIO_PB14) //
  5456. #define AT91C_PB14_PWMH1 (AT91C_PIO_PB14) //
  5457. #define AT91C_PIO_PB15 (1 << 15) // Pin Controlled by PB15
  5458. #define AT91C_PB15_D6 (AT91C_PIO_PB15) //
  5459. #define AT91C_PB15_PWMH2 (AT91C_PIO_PB15) //
  5460. #define AT91C_PIO_PB16 (1 << 16) // Pin Controlled by PB16
  5461. #define AT91C_PB16_D7 (AT91C_PIO_PB16) //
  5462. #define AT91C_PB16_PWMH3 (AT91C_PIO_PB16) //
  5463. #define AT91C_PIO_PB17 (1 << 17) // Pin Controlled by PB17
  5464. #define AT91C_PB17_NANDOE (AT91C_PIO_PB17) //
  5465. #define AT91C_PB17_PWML0 (AT91C_PIO_PB17) //
  5466. #define AT91C_PIO_PB18 (1 << 18) // Pin Controlled by PB18
  5467. #define AT91C_PB18_NANDWE (AT91C_PIO_PB18) //
  5468. #define AT91C_PB18_PWML1 (AT91C_PIO_PB18) //
  5469. #define AT91C_PIO_PB19 (1 << 19) // Pin Controlled by PB19
  5470. #define AT91C_PB19_NRD (AT91C_PIO_PB19) //
  5471. #define AT91C_PB19_PWML2 (AT91C_PIO_PB19) //
  5472. #define AT91C_PIO_PB2 (1 << 2) // Pin Controlled by PB2
  5473. #define AT91C_PB2_PWMH2 (AT91C_PIO_PB2) //
  5474. #define AT91C_PB2_A4 (AT91C_PIO_PB2) //
  5475. #define AT91C_PIO_PB20 (1 << 20) // Pin Controlled by PB20
  5476. #define AT91C_PB20_NCS0 (AT91C_PIO_PB20) //
  5477. #define AT91C_PB20_PWML3 (AT91C_PIO_PB20) //
  5478. #define AT91C_PIO_PB21 (1 << 21) // Pin Controlled by PB21
  5479. #define AT91C_PB21_A21_NANDALE (AT91C_PIO_PB21) //
  5480. #define AT91C_PB21_RTS2 (AT91C_PIO_PB21) //
  5481. #define AT91C_PIO_PB22 (1 << 22) // Pin Controlled by PB22
  5482. #define AT91C_PB22_A22_NANDCLE (AT91C_PIO_PB22) //
  5483. #define AT91C_PB22_CTS2 (AT91C_PIO_PB22) //
  5484. #define AT91C_PIO_PB23 (1 << 23) // Pin Controlled by PB23
  5485. #define AT91C_PB23_NWR0_NWE (AT91C_PIO_PB23) //
  5486. #define AT91C_PB23_PCK2 (AT91C_PIO_PB23) //
  5487. #define AT91C_PIO_PB24 (1 << 24) // Pin Controlled by PB24
  5488. #define AT91C_PB24_NANDRDY (AT91C_PIO_PB24) //
  5489. #define AT91C_PB24_PCK1 (AT91C_PIO_PB24) //
  5490. #define AT91C_PIO_PB25 (1 << 25) // Pin Controlled by PB25
  5491. #define AT91C_PB25_D8 (AT91C_PIO_PB25) //
  5492. #define AT91C_PB25_PWML0 (AT91C_PIO_PB25) //
  5493. #define AT91C_PIO_PB26 (1 << 26) // Pin Controlled by PB26
  5494. #define AT91C_PB26_D9 (AT91C_PIO_PB26) //
  5495. #define AT91C_PB26_PWML1 (AT91C_PIO_PB26) //
  5496. #define AT91C_PIO_PB27 (1 << 27) // Pin Controlled by PB27
  5497. #define AT91C_PB27_D10 (AT91C_PIO_PB27) //
  5498. #define AT91C_PB27_PWML2 (AT91C_PIO_PB27) //
  5499. #define AT91C_PIO_PB28 (1 << 28) // Pin Controlled by PB28
  5500. #define AT91C_PB28_D11 (AT91C_PIO_PB28) //
  5501. #define AT91C_PB28_PWML3 (AT91C_PIO_PB28) //
  5502. #define AT91C_PIO_PB29 (1 << 29) // Pin Controlled by PB29
  5503. #define AT91C_PB29_D12 (AT91C_PIO_PB29) //
  5504. #define AT91C_PIO_PB3 (1 << 3) // Pin Controlled by PB3
  5505. #define AT91C_PB3_PWMH3 (AT91C_PIO_PB3) //
  5506. #define AT91C_PB3_A5 (AT91C_PIO_PB3) //
  5507. #define AT91C_PIO_PB30 (1 << 30) // Pin Controlled by PB30
  5508. #define AT91C_PB30_D13 (AT91C_PIO_PB30) //
  5509. #define AT91C_PIO_PB31 (1 << 31) // Pin Controlled by PB31
  5510. #define AT91C_PB31_D14 (AT91C_PIO_PB31) //
  5511. #define AT91C_PIO_PB4 (1 << 4) // Pin Controlled by PB4
  5512. #define AT91C_PB4_TCLK1 (AT91C_PIO_PB4) //
  5513. #define AT91C_PB4_A6 (AT91C_PIO_PB4) //
  5514. #define AT91C_PIO_PB5 (1 << 5) // Pin Controlled by PB5
  5515. #define AT91C_PB5_TIOA1 (AT91C_PIO_PB5) //
  5516. #define AT91C_PB5_A7 (AT91C_PIO_PB5) //
  5517. #define AT91C_PIO_PB6 (1 << 6) // Pin Controlled by PB6
  5518. #define AT91C_PB6_TIOB1 (AT91C_PIO_PB6) //
  5519. #define AT91C_PB6_D15 (AT91C_PIO_PB6) //
  5520. #define AT91C_PIO_PB7 (1 << 7) // Pin Controlled by PB7
  5521. #define AT91C_PB7_RTS0 (AT91C_PIO_PB7) //
  5522. #define AT91C_PB7_A0_NBS0 (AT91C_PIO_PB7) //
  5523. #define AT91C_PIO_PB8 (1 << 8) // Pin Controlled by PB8
  5524. #define AT91C_PB8_CTS0 (AT91C_PIO_PB8) //
  5525. #define AT91C_PB8_A1 (AT91C_PIO_PB8) //
  5526. #define AT91C_PIO_PB9 (1 << 9) // Pin Controlled by PB9
  5527. #define AT91C_PB9_D0 (AT91C_PIO_PB9) //
  5528. #define AT91C_PB9_DTR0 (AT91C_PIO_PB9) //
  5529. #define AT91C_PIO_PC0 (1 << 0) // Pin Controlled by PC0
  5530. #define AT91C_PC0_A2 (AT91C_PIO_PC0) //
  5531. #define AT91C_PIO_PC1 (1 << 1) // Pin Controlled by PC1
  5532. #define AT91C_PC1_A3 (AT91C_PIO_PC1) //
  5533. #define AT91C_PIO_PC10 (1 << 10) // Pin Controlled by PC10
  5534. #define AT91C_PC10_A12 (AT91C_PIO_PC10) //
  5535. #define AT91C_PC10_CTS3 (AT91C_PIO_PC10) //
  5536. #define AT91C_PIO_PC11 (1 << 11) // Pin Controlled by PC11
  5537. #define AT91C_PC11_A13 (AT91C_PIO_PC11) //
  5538. #define AT91C_PC11_RTS3 (AT91C_PIO_PC11) //
  5539. #define AT91C_PIO_PC12 (1 << 12) // Pin Controlled by PC12
  5540. #define AT91C_PC12_NCS1 (AT91C_PIO_PC12) //
  5541. #define AT91C_PC12_TXD3 (AT91C_PIO_PC12) //
  5542. #define AT91C_PIO_PC13 (1 << 13) // Pin Controlled by PC13
  5543. #define AT91C_PC13_A2 (AT91C_PIO_PC13) //
  5544. #define AT91C_PC13_RXD3 (AT91C_PIO_PC13) //
  5545. #define AT91C_PIO_PC14 (1 << 14) // Pin Controlled by PC14
  5546. #define AT91C_PC14_A3 (AT91C_PIO_PC14) //
  5547. #define AT91C_PC14_SPI0_NPCS2 (AT91C_PIO_PC14) //
  5548. #define AT91C_PIO_PC15 (1 << 15) // Pin Controlled by PC15
  5549. #define AT91C_PC15_NWR1_NBS1 (AT91C_PIO_PC15) //
  5550. #define AT91C_PIO_PC16 (1 << 16) // Pin Controlled by PC16
  5551. #define AT91C_PC16_NCS2 (AT91C_PIO_PC16) //
  5552. #define AT91C_PC16_PWML3 (AT91C_PIO_PC16) //
  5553. #define AT91C_PIO_PC17 (1 << 17) // Pin Controlled by PC17
  5554. #define AT91C_PC17_NCS3 (AT91C_PIO_PC17) //
  5555. #define AT91C_PC17_A24 (AT91C_PIO_PC17) //
  5556. #define AT91C_PIO_PC18 (1 << 18) // Pin Controlled by PC18
  5557. #define AT91C_PC18_NWAIT (AT91C_PIO_PC18) //
  5558. #define AT91C_PIO_PC19 (1 << 19) // Pin Controlled by PC19
  5559. #define AT91C_PC19_SCK3 (AT91C_PIO_PC19) //
  5560. #define AT91C_PC19_NPCS1 (AT91C_PIO_PC19) //
  5561. #define AT91C_PIO_PC2 (1 << 2) // Pin Controlled by PC2
  5562. #define AT91C_PC2_A4 (AT91C_PIO_PC2) //
  5563. #define AT91C_PIO_PC20 (1 << 20) // Pin Controlled by PC20
  5564. #define AT91C_PC20_A14 (AT91C_PIO_PC20) //
  5565. #define AT91C_PIO_PC21 (1 << 21) // Pin Controlled by PC21
  5566. #define AT91C_PC21_A15 (AT91C_PIO_PC21) //
  5567. #define AT91C_PIO_PC22 (1 << 22) // Pin Controlled by PC22
  5568. #define AT91C_PC22_A16 (AT91C_PIO_PC22) //
  5569. #define AT91C_PIO_PC23 (1 << 23) // Pin Controlled by PC23
  5570. #define AT91C_PC23_A17 (AT91C_PIO_PC23) //
  5571. #define AT91C_PIO_PC24 (1 << 24) // Pin Controlled by PC24
  5572. #define AT91C_PC24_A18 (AT91C_PIO_PC24) //
  5573. #define AT91C_PC24_PWMH0 (AT91C_PIO_PC24) //
  5574. #define AT91C_PIO_PC25 (1 << 25) // Pin Controlled by PC25
  5575. #define AT91C_PC25_A19 (AT91C_PIO_PC25) //
  5576. #define AT91C_PC25_PWMH1 (AT91C_PIO_PC25) //
  5577. #define AT91C_PIO_PC26 (1 << 26) // Pin Controlled by PC26
  5578. #define AT91C_PC26_A20 (AT91C_PIO_PC26) //
  5579. #define AT91C_PC26_PWMH2 (AT91C_PIO_PC26) //
  5580. #define AT91C_PIO_PC27 (1 << 27) // Pin Controlled by PC27
  5581. #define AT91C_PC27_A23 (AT91C_PIO_PC27) //
  5582. #define AT91C_PC27_PWMH3 (AT91C_PIO_PC27) //
  5583. #define AT91C_PIO_PC28 (1 << 28) // Pin Controlled by PC28
  5584. #define AT91C_PC28_A24 (AT91C_PIO_PC28) //
  5585. #define AT91C_PC28_MCI0_DA4 (AT91C_PIO_PC28) //
  5586. #define AT91C_PIO_PC29 (1 << 29) // Pin Controlled by PC29
  5587. #define AT91C_PC29_PWML0 (AT91C_PIO_PC29) //
  5588. #define AT91C_PC29_MCI0_DA5 (AT91C_PIO_PC29) //
  5589. #define AT91C_PIO_PC3 (1 << 3) // Pin Controlled by PC3
  5590. #define AT91C_PC3_A5 (AT91C_PIO_PC3) //
  5591. #define AT91C_PC3_SPI0_NPCS1 (AT91C_PIO_PC3) //
  5592. #define AT91C_PIO_PC30 (1 << 30) // Pin Controlled by PC30
  5593. #define AT91C_PC30_PWML1 (AT91C_PIO_PC30) //
  5594. #define AT91C_PC30_MCI0_DA6 (AT91C_PIO_PC30) //
  5595. #define AT91C_PIO_PC31 (1 << 31) // Pin Controlled by PC31
  5596. #define AT91C_PC31_PWML2 (AT91C_PIO_PC31) //
  5597. #define AT91C_PC31_MCI0_DA7 (AT91C_PIO_PC31) //
  5598. #define AT91C_PIO_PC4 (1 << 4) // Pin Controlled by PC4
  5599. #define AT91C_PC4_A6 (AT91C_PIO_PC4) //
  5600. #define AT91C_PC4_SPI0_NPCS2 (AT91C_PIO_PC4) //
  5601. #define AT91C_PIO_PC5 (1 << 5) // Pin Controlled by PC5
  5602. #define AT91C_PC5_A7 (AT91C_PIO_PC5) //
  5603. #define AT91C_PC5_SPI0_NPCS3 (AT91C_PIO_PC5) //
  5604. #define AT91C_PIO_PC6 (1 << 6) // Pin Controlled by PC6
  5605. #define AT91C_PC6_A8 (AT91C_PIO_PC6) //
  5606. #define AT91C_PC6_PWML0 (AT91C_PIO_PC6) //
  5607. #define AT91C_PIO_PC7 (1 << 7) // Pin Controlled by PC7
  5608. #define AT91C_PC7_A9 (AT91C_PIO_PC7) //
  5609. #define AT91C_PC7_PWML1 (AT91C_PIO_PC7) //
  5610. #define AT91C_PIO_PC8 (1 << 8) // Pin Controlled by PC8
  5611. #define AT91C_PC8_A10 (AT91C_PIO_PC8) //
  5612. #define AT91C_PC8_PWML2 (AT91C_PIO_PC8) //
  5613. #define AT91C_PIO_PC9 (1 << 9) // Pin Controlled by PC9
  5614. #define AT91C_PC9_A11 (AT91C_PIO_PC9) //
  5615. #define AT91C_PC9_PWML3 (AT91C_PIO_PC9) //
  5616. // *****************************************************************************
  5617. // PERIPHERAL ID DEFINITIONS FOR AT91SAM3U4
  5618. // *****************************************************************************
  5619. #define AT91C_ID_SUPC ( 0) // SUPPLY CONTROLLER
  5620. #define AT91C_ID_RSTC ( 1) // RESET CONTROLLER
  5621. #define AT91C_ID_RTC ( 2) // REAL TIME CLOCK
  5622. #define AT91C_ID_RTT ( 3) // REAL TIME TIMER
  5623. #define AT91C_ID_WDG ( 4) // WATCHDOG TIMER
  5624. #define AT91C_ID_PMC ( 5) // PMC
  5625. #define AT91C_ID_EFC0 ( 6) // EFC0
  5626. #define AT91C_ID_EFC1 ( 7) // EFC1
  5627. #define AT91C_ID_DBGU ( 8) // DBGU
  5628. #define AT91C_ID_HSMC4 ( 9) // HSMC4
  5629. #define AT91C_ID_PIOA (10) // Parallel IO Controller A
  5630. #define AT91C_ID_PIOB (11) // Parallel IO Controller B
  5631. #define AT91C_ID_PIOC (12) // Parallel IO Controller C
  5632. #define AT91C_ID_US0 (13) // USART 0
  5633. #define AT91C_ID_US1 (14) // USART 1
  5634. #define AT91C_ID_US2 (15) // USART 2
  5635. #define AT91C_ID_US3 (16) // USART 3
  5636. #define AT91C_ID_MCI0 (17) // Multimedia Card Interface
  5637. #define AT91C_ID_TWI0 (18) // TWI 0
  5638. #define AT91C_ID_TWI1 (19) // TWI 1
  5639. #define AT91C_ID_SPI0 (20) // Serial Peripheral Interface
  5640. #define AT91C_ID_SSC0 (21) // Serial Synchronous Controller 0
  5641. #define AT91C_ID_TC0 (22) // Timer Counter 0
  5642. #define AT91C_ID_TC1 (23) // Timer Counter 1
  5643. #define AT91C_ID_TC2 (24) // Timer Counter 2
  5644. #define AT91C_ID_PWMC (25) // Pulse Width Modulation Controller
  5645. #define AT91C_ID_ADC12B (26) // 12-bit ADC Controller (ADC12B)
  5646. #define AT91C_ID_ADC (27) // 10-bit ADC Controller (ADC)
  5647. #define AT91C_ID_HDMA (28) // HDMA
  5648. #define AT91C_ID_UDPHS (29) // USB Device High Speed
  5649. #define AT91C_ALL_INT (0x3FFFFFFF) // ALL VALID INTERRUPTS
  5650. // *****************************************************************************
  5651. // BASE ADDRESS DEFINITIONS FOR AT91SAM3U4
  5652. // *****************************************************************************
  5653. #define AT91C_BASE_SYS (AT91_CAST(AT91PS_SYS) 0x400E0000) // (SYS) Base Address
  5654. #define AT91C_BASE_HSMC4_CS0 (AT91_CAST(AT91PS_HSMC4_CS) 0x400E0070) // (HSMC4_CS0) Base Address
  5655. #define AT91C_BASE_HSMC4_CS1 (AT91_CAST(AT91PS_HSMC4_CS) 0x400E0084) // (HSMC4_CS1) Base Address
  5656. #define AT91C_BASE_HSMC4_CS2 (AT91_CAST(AT91PS_HSMC4_CS) 0x400E0098) // (HSMC4_CS2) Base Address
  5657. #define AT91C_BASE_HSMC4_CS3 (AT91_CAST(AT91PS_HSMC4_CS) 0x400E00AC) // (HSMC4_CS3) Base Address
  5658. #define AT91C_BASE_HSMC4_NFC (AT91_CAST(AT91PS_HSMC4_CS) 0x400E00FC) // (HSMC4_NFC) Base Address
  5659. #define AT91C_BASE_HSMC4 (AT91_CAST(AT91PS_HSMC4) 0x400E0000) // (HSMC4) Base Address
  5660. #define AT91C_BASE_MATRIX (AT91_CAST(AT91PS_HMATRIX2) 0x400E0200) // (MATRIX) Base Address
  5661. #define AT91C_BASE_NVIC (AT91_CAST(AT91PS_NVIC) 0xE000E000) // (NVIC) Base Address
  5662. #define AT91C_BASE_MPU (AT91_CAST(AT91PS_MPU) 0xE000ED90) // (MPU) Base Address
  5663. #define AT91C_BASE_CM3 (AT91_CAST(AT91PS_CM3) 0xE000ED00) // (CM3) Base Address
  5664. #define AT91C_BASE_PDC_DBGU (AT91_CAST(AT91PS_PDC) 0x400E0700) // (PDC_DBGU) Base Address
  5665. #define AT91C_BASE_DBGU ( 0x400E0600) // (DBGU) Base Address
  5666. #define AT91C_BASE_PIOA (AT91_CAST(AT91PS_PIO) 0x400E0C00) // (PIOA) Base Address
  5667. #define AT91C_BASE_PIOB (AT91_CAST(AT91PS_PIO) 0x400E0E00) // (PIOB) Base Address
  5668. #define AT91C_BASE_PIOC (AT91_CAST(AT91PS_PIO) 0x400E1000) // (PIOC) Base Address
  5669. #define AT91C_BASE_PMC (AT91_CAST(AT91PS_PMC) 0x400E0400) // (PMC) Base Address
  5670. #define AT91C_BASE_CKGR (AT91_CAST(AT91PS_CKGR) 0x400E041C) // (CKGR) Base Address
  5671. #define AT91C_BASE_RSTC (AT91_CAST(AT91PS_RSTC) 0x400E1200) // (RSTC) Base Address
  5672. #define AT91C_BASE_SUPC (AT91_CAST(AT91PS_SUPC) 0x400E1210) // (SUPC) Base Address
  5673. #define AT91C_BASE_RTTC (AT91_CAST(AT91PS_RTTC) 0x400E1230) // (RTTC) Base Address
  5674. #define AT91C_BASE_WDTC (AT91_CAST(AT91PS_WDTC) 0x400E1250) // (WDTC) Base Address
  5675. #define AT91C_BASE_RTC (AT91_CAST(AT91PS_RTC) 0x400E1260) // (RTC) Base Address
  5676. #define AT91C_BASE_ADC0 (AT91_CAST(AT91PS_ADC) 0x400AC000) // (ADC0) Base Address
  5677. #define AT91C_BASE_ADC12B (AT91_CAST(AT91PS_ADC12B ) 0x400A8000) // (ADC12B ) Base Address
  5678. #define AT91C_BASE_TC0 (AT91_CAST(AT91PS_TC) 0x40080000) // (TC0) Base Address
  5679. #define AT91C_BASE_TC1 (AT91_CAST(AT91PS_TC) 0x40080040) // (TC1) Base Address
  5680. #define AT91C_BASE_TC2 (AT91_CAST(AT91PS_TC) 0x40080080) // (TC2) Base Address
  5681. #define AT91C_BASE_TCB0 (AT91_CAST(AT91PS_TCB) 0x40080000) // (TCB0) Base Address
  5682. #define AT91C_BASE_TCB1 (AT91_CAST(AT91PS_TCB) 0x40080040) // (TCB1) Base Address
  5683. #define AT91C_BASE_TCB2 (AT91_CAST(AT91PS_TCB) 0x40080080) // (TCB2) Base Address
  5684. #define AT91C_BASE_EFC0 (AT91_CAST(AT91PS_EFC) 0x400E0800) // (EFC0) Base Address
  5685. #define AT91C_BASE_EFC1 (AT91_CAST(AT91PS_EFC) 0x400E0A00) // (EFC1) Base Address
  5686. #define AT91C_BASE_MCI0 (AT91_CAST(AT91PS_MCI) 0x40000000) // (MCI0) Base Address
  5687. #define AT91C_BASE_PDC_TWI0 (AT91_CAST(AT91PS_PDC) 0x40084100) // (PDC_TWI0) Base Address
  5688. #define AT91C_BASE_PDC_TWI1 (AT91_CAST(AT91PS_PDC) 0x40088100) // (PDC_TWI1) Base Address
  5689. #define AT91C_BASE_TWI0 (AT91_CAST(AT91PS_TWI) 0x40084000) // (TWI0) Base Address
  5690. #define AT91C_BASE_TWI1 (AT91_CAST(AT91PS_TWI) 0x40088000) // (TWI1) Base Address
  5691. #define AT91C_BASE_PDC_US0 (AT91_CAST(AT91PS_PDC) 0x40090100) // (PDC_US0) Base Address
  5692. #define AT91C_BASE_US0 (AT91_CAST(AT91PS_USART) 0x40090000) // (US0) Base Address
  5693. #define AT91C_BASE_PDC_US1 (AT91_CAST(AT91PS_PDC) 0x40094100) // (PDC_US1) Base Address
  5694. #define AT91C_BASE_US1 (AT91_CAST(AT91PS_USART) 0x40094000) // (US1) Base Address
  5695. #define AT91C_BASE_PDC_US2 (AT91_CAST(AT91PS_PDC) 0x40098100) // (PDC_US2) Base Address
  5696. #define AT91C_BASE_US2 (AT91_CAST(AT91PS_USART) 0x40098000) // (US2) Base Address
  5697. #define AT91C_BASE_PDC_US3 (AT91_CAST(AT91PS_PDC) 0x4009C100) // (PDC_US3) Base Address
  5698. #define AT91C_BASE_US3 (AT91_CAST(AT91PS_USART) 0x4009C000) // (US3) Base Address
  5699. #define AT91C_BASE_PDC_SSC0 (AT91_CAST(AT91PS_PDC) 0x40004100) // (PDC_SSC0) Base Address
  5700. #define AT91C_BASE_SSC0 (AT91_CAST(AT91PS_SSC) 0x40004000) // (SSC0) Base Address
  5701. #define AT91C_BASE_PDC_PWMC (AT91_CAST(AT91PS_PDC) 0x4008C100) // (PDC_PWMC) Base Address
  5702. #define AT91C_BASE_PWMC_CH0 (AT91_CAST(AT91PS_PWMC_CH) 0x4008C200) // (PWMC_CH0) Base Address
  5703. #define AT91C_BASE_PWMC_CH1 (AT91_CAST(AT91PS_PWMC_CH) 0x4008C220) // (PWMC_CH1) Base Address
  5704. #define AT91C_BASE_PWMC_CH2 (AT91_CAST(AT91PS_PWMC_CH) 0x4008C240) // (PWMC_CH2) Base Address
  5705. #define AT91C_BASE_PWMC_CH3 (AT91_CAST(AT91PS_PWMC_CH) 0x4008C260) // (PWMC_CH3) Base Address
  5706. #define AT91C_BASE_PWMC (AT91_CAST(AT91PS_PWMC) 0x4008C000) // (PWMC) Base Address
  5707. #define AT91C_BASE_SPI0 (AT91_CAST(AT91PS_SPI) 0x40008000) // (SPI0) Base Address
  5708. #define AT91C_BASE_UDPHS_EPTFIFO (AT91_CAST(AT91PS_UDPHS_EPTFIFO) 0x20180000) // (UDPHS_EPTFIFO) Base Address
  5709. #define AT91C_BASE_UDPHS_EPT_0 (AT91_CAST(AT91PS_UDPHS_EPT) 0x400A4100) // (UDPHS_EPT_0) Base Address
  5710. #define AT91C_BASE_UDPHS_EPT_1 (AT91_CAST(AT91PS_UDPHS_EPT) 0x400A4120) // (UDPHS_EPT_1) Base Address
  5711. #define AT91C_BASE_UDPHS_EPT_2 (AT91_CAST(AT91PS_UDPHS_EPT) 0x400A4140) // (UDPHS_EPT_2) Base Address
  5712. #define AT91C_BASE_UDPHS_EPT_3 (AT91_CAST(AT91PS_UDPHS_EPT) 0x400A4160) // (UDPHS_EPT_3) Base Address
  5713. #define AT91C_BASE_UDPHS_EPT_4 (AT91_CAST(AT91PS_UDPHS_EPT) 0x400A4180) // (UDPHS_EPT_4) Base Address
  5714. #define AT91C_BASE_UDPHS_EPT_5 (AT91_CAST(AT91PS_UDPHS_EPT) 0x400A41A0) // (UDPHS_EPT_5) Base Address
  5715. #define AT91C_BASE_UDPHS_EPT_6 (AT91_CAST(AT91PS_UDPHS_EPT) 0x400A41C0) // (UDPHS_EPT_6) Base Address
  5716. #define AT91C_BASE_UDPHS_DMA_1 (AT91_CAST(AT91PS_UDPHS_DMA) 0x400A4310) // (UDPHS_DMA_1) Base Address
  5717. #define AT91C_BASE_UDPHS_DMA_2 (AT91_CAST(AT91PS_UDPHS_DMA) 0x400A4320) // (UDPHS_DMA_2) Base Address
  5718. #define AT91C_BASE_UDPHS_DMA_3 (AT91_CAST(AT91PS_UDPHS_DMA) 0x400A4330) // (UDPHS_DMA_3) Base Address
  5719. #define AT91C_BASE_UDPHS_DMA_4 (AT91_CAST(AT91PS_UDPHS_DMA) 0x400A4340) // (UDPHS_DMA_4) Base Address
  5720. #define AT91C_BASE_UDPHS_DMA_5 (AT91_CAST(AT91PS_UDPHS_DMA) 0x400A4350) // (UDPHS_DMA_5) Base Address
  5721. #define AT91C_BASE_UDPHS_DMA_6 (AT91_CAST(AT91PS_UDPHS_DMA) 0x400A4360) // (UDPHS_DMA_6) Base Address
  5722. #define AT91C_BASE_UDPHS (AT91_CAST(AT91PS_UDPHS) 0x400A4000) // (UDPHS) Base Address
  5723. #define AT91C_BASE_HDMA_CH_0 (AT91_CAST(AT91PS_HDMA_CH) 0x400B003C) // (HDMA_CH_0) Base Address
  5724. #define AT91C_BASE_HDMA_CH_1 (AT91_CAST(AT91PS_HDMA_CH) 0x400B0064) // (HDMA_CH_1) Base Address
  5725. #define AT91C_BASE_HDMA_CH_2 (AT91_CAST(AT91PS_HDMA_CH) 0x400B008C) // (HDMA_CH_2) Base Address
  5726. #define AT91C_BASE_HDMA_CH_3 (AT91_CAST(AT91PS_HDMA_CH) 0x400B00B4) // (HDMA_CH_3) Base Address
  5727. #define AT91C_BASE_HDMA (AT91_CAST(AT91PS_HDMA) 0x400B0000) // (HDMA) Base Address
  5728. // *****************************************************************************
  5729. // MEMORY MAPPING DEFINITIONS FOR AT91SAM3U4
  5730. // *****************************************************************************
  5731. // ITCM
  5732. #define AT91C_ITCM (0x00100000) // Maximum ITCM Area base address
  5733. #define AT91C_ITCM_SIZE (0x00010000) // Maximum ITCM Area size in byte (64 Kbytes)
  5734. // DTCM
  5735. #define AT91C_DTCM (0x00200000) // Maximum DTCM Area base address
  5736. #define AT91C_DTCM_SIZE (0x00010000) // Maximum DTCM Area size in byte (64 Kbytes)
  5737. // IRAM
  5738. #define AT91C_IRAM (0x20000000) // Maximum Internal SRAM base address
  5739. #define AT91C_IRAM_SIZE (0x00008000) // Maximum Internal SRAM size in byte (32 Kbytes)
  5740. // IRAM_MIN
  5741. #define AT91C_IRAM_MIN (0x00300000) // Minimum Internal RAM base address
  5742. #define AT91C_IRAM_MIN_SIZE (0x00004000) // Minimum Internal RAM size in byte (16 Kbytes)
  5743. // IROM
  5744. #define AT91C_IROM (0x00180000) // Internal ROM base address
  5745. #define AT91C_IROM_SIZE (0x00008000) // Internal ROM size in byte (32 Kbytes)
  5746. // IFLASH0
  5747. #define AT91C_IFLASH0 (0x00080000) // Maximum IFLASH Area : 128Kbyte base address
  5748. #define AT91C_IFLASH0_SIZE (0x00020000) // Maximum IFLASH Area : 128Kbyte size in byte (128 Kbytes)
  5749. #define AT91C_IFLASH0_PAGE_SIZE (256) // Maximum IFLASH Area : 128Kbyte Page Size: 256 bytes
  5750. #define AT91C_IFLASH0_LOCK_REGION_SIZE (8192) // Maximum IFLASH Area : 128Kbyte Lock Region Size: 8 Kbytes
  5751. #define AT91C_IFLASH0_NB_OF_PAGES (512) // Maximum IFLASH Area : 128Kbyte Number of Pages: 512 bytes
  5752. #define AT91C_IFLASH0_NB_OF_LOCK_BITS (16) // Maximum IFLASH Area : 128Kbyte Number of Lock Bits: 16 bytes
  5753. // IFLASH1
  5754. #define AT91C_IFLASH1 (0x00100000) // Maximum IFLASH Area : 128Kbyte base address
  5755. #define AT91C_IFLASH1_SIZE (0x00020000) // Maximum IFLASH Area : 128Kbyte size in byte (128 Kbytes)
  5756. #define AT91C_IFLASH1_PAGE_SIZE (256) // Maximum IFLASH Area : 128Kbyte Page Size: 256 bytes
  5757. #define AT91C_IFLASH1_LOCK_REGION_SIZE (8192) // Maximum IFLASH Area : 128Kbyte Lock Region Size: 8 Kbytes
  5758. #define AT91C_IFLASH1_NB_OF_PAGES (512) // Maximum IFLASH Area : 128Kbyte Number of Pages: 512 bytes
  5759. #define AT91C_IFLASH1_NB_OF_LOCK_BITS (16) // Maximum IFLASH Area : 128Kbyte Number of Lock Bits: 16 bytes
  5760. // EBI_CS0
  5761. #define AT91C_EBI_CS0 (0x10000000) // EBI Chip Select 0 base address
  5762. #define AT91C_EBI_CS0_SIZE (0x10000000) // EBI Chip Select 0 size in byte (262144 Kbytes)
  5763. // EBI_CS1
  5764. #define AT91C_EBI_CS1 (0x20000000) // EBI Chip Select 1 base address
  5765. #define AT91C_EBI_CS1_SIZE (0x10000000) // EBI Chip Select 1 size in byte (262144 Kbytes)
  5766. // EBI_SDRAM
  5767. #define AT91C_EBI_SDRAM (0x20000000) // SDRAM on EBI Chip Select 1 base address
  5768. #define AT91C_EBI_SDRAM_SIZE (0x10000000) // SDRAM on EBI Chip Select 1 size in byte (262144 Kbytes)
  5769. // EBI_SDRAM_16BIT
  5770. #define AT91C_EBI_SDRAM_16BIT (0x20000000) // SDRAM on EBI Chip Select 1 base address
  5771. #define AT91C_EBI_SDRAM_16BIT_SIZE (0x02000000) // SDRAM on EBI Chip Select 1 size in byte (32768 Kbytes)
  5772. // EBI_SDRAM_32BIT
  5773. #define AT91C_EBI_SDRAM_32BIT (0x20000000) // SDRAM on EBI Chip Select 1 base address
  5774. #define AT91C_EBI_SDRAM_32BIT_SIZE (0x04000000) // SDRAM on EBI Chip Select 1 size in byte (65536 Kbytes)
  5775. // EBI_CS2
  5776. #define AT91C_EBI_CS2 (0x30000000) // EBI Chip Select 2 base address
  5777. #define AT91C_EBI_CS2_SIZE (0x10000000) // EBI Chip Select 2 size in byte (262144 Kbytes)
  5778. // EBI_CS3
  5779. #define AT91C_EBI_CS3 (0x40000000) // EBI Chip Select 3 base address
  5780. #define AT91C_EBI_CS3_SIZE (0x10000000) // EBI Chip Select 3 size in byte (262144 Kbytes)
  5781. // EBI_SM
  5782. #define AT91C_EBI_SM (0x40000000) // NANDFLASH on EBI Chip Select 3 base address
  5783. #define AT91C_EBI_SM_SIZE (0x10000000) // NANDFLASH on EBI Chip Select 3 size in byte (262144 Kbytes)
  5784. // EBI_CS4
  5785. #define AT91C_EBI_CS4 (0x50000000) // EBI Chip Select 4 base address
  5786. #define AT91C_EBI_CS4_SIZE (0x10000000) // EBI Chip Select 4 size in byte (262144 Kbytes)
  5787. // EBI_CF0
  5788. #define AT91C_EBI_CF0 (0x50000000) // CompactFlash 0 on EBI Chip Select 4 base address
  5789. #define AT91C_EBI_CF0_SIZE (0x10000000) // CompactFlash 0 on EBI Chip Select 4 size in byte (262144 Kbytes)
  5790. // EBI_CS5
  5791. #define AT91C_EBI_CS5 (0x60000000) // EBI Chip Select 5 base address
  5792. #define AT91C_EBI_CS5_SIZE (0x10000000) // EBI Chip Select 5 size in byte (262144 Kbytes)
  5793. // EBI_CF1
  5794. #define AT91C_EBI_CF1 (0x60000000) // CompactFlash 1 on EBIChip Select 5 base address
  5795. #define AT91C_EBI_CF1_SIZE (0x10000000) // CompactFlash 1 on EBIChip Select 5 size in byte (262144 Kbytes)
  5796. /// Interrupt source
  5797. typedef enum IRQn
  5798. {
  5799. /****** Cortex-M3 Processor Exceptions Numbers ***************************************************/
  5800. NonMaskableInt_IRQn = -14, /*!< 2 Non Maskable Interrupt */
  5801. MemoryManagement_IRQn = -12, /*!< 4 Cortex-M3 Memory Management Interrupt */
  5802. BusFault_IRQn = -11, /*!< 5 Cortex-M3 Bus Fault Interrupt */
  5803. UsageFault_IRQn = -10, /*!< 6 Cortex-M3 Usage Fault Interrupt */
  5804. SVCall_IRQn = -5, /*!< 11 Cortex-M3 SV Call Interrupt */
  5805. DebugMonitor_IRQn = -4, /*!< 12 Cortex-M3 Debug Monitor Interrupt */
  5806. PendSV_IRQn = -2, /*!< 14 Cortex-M3 Pend SV Interrupt */
  5807. SysTick_IRQn = -1, /*!< 15 Cortex-M3 System Tick Interrupt */
  5808. /****** AT91SAM3U4 specific Interrupt Numbers *********************************************************/
  5809. IROn_SUPC = AT91C_ID_SUPC , // SUPPLY CONTROLLER
  5810. IROn_RSTC = AT91C_ID_RSTC , // RESET CONTROLLER
  5811. IROn_RTC = AT91C_ID_RTC , // REAL TIME CLOCK
  5812. IROn_RTT = AT91C_ID_RTT , // REAL TIME TIMER
  5813. IROn_WDG = AT91C_ID_WDG , // WATCHDOG TIMER
  5814. IROn_PMC = AT91C_ID_PMC , // PMC
  5815. IROn_EFC0 = AT91C_ID_EFC0 , // EFC0
  5816. IROn_EFC1 = AT91C_ID_EFC1 , // EFC1
  5817. IROn_DBGU = AT91C_ID_DBGU , // DBGU
  5818. IROn_HSMC4 = AT91C_ID_HSMC4, // HSMC4
  5819. IROn_PIOA = AT91C_ID_PIOA , // Parallel IO Controller A
  5820. IROn_PIOB = AT91C_ID_PIOB , // Parallel IO Controller B
  5821. IROn_PIOC = AT91C_ID_PIOC , // Parallel IO Controller C
  5822. IROn_US0 = AT91C_ID_US0 , // USART 0
  5823. IROn_US1 = AT91C_ID_US1 , // USART 1
  5824. IROn_US2 = AT91C_ID_US2 , // USART 2
  5825. IROn_US3 = AT91C_ID_US3 , // USART 3
  5826. IROn_MCI0 = AT91C_ID_MCI0 , // Multimedia Card Interface
  5827. IROn_TWI0 = AT91C_ID_TWI0 , // TWI 0
  5828. IROn_TWI1 = AT91C_ID_TWI1 , // TWI 1
  5829. IROn_SPI0 = AT91C_ID_SPI0 , // Serial Peripheral Interface
  5830. IROn_SSC0 = AT91C_ID_SSC0 , // Serial Synchronous Controller 0
  5831. IROn_TC0 = AT91C_ID_TC0 , // Timer Counter 0
  5832. IROn_TC1 = AT91C_ID_TC1 , // Timer Counter 1
  5833. IROn_TC2 = AT91C_ID_TC2 , // Timer Counter 2
  5834. IROn_PWMC = AT91C_ID_PWMC , // Pulse Width Modulation Controller
  5835. IROn_ADCC0 = AT91C_ID_ADCC0, // ADC controller0
  5836. IROn_ADCC1 = AT91C_ID_ADCC1, // ADC controller1
  5837. IROn_HDMA = AT91C_ID_HDMA , // HDMA
  5838. IROn_UDPHS = AT91C_ID_UDPHS, // USB Device High Speed
  5839. IRQn_MAX // Total number of interrupts
  5840. } IRQn_Type;
  5841. #endif