pfc-r8a7795.c 202 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234
  1. /*
  2. * R8A7795 ES2.0+ processor support - PFC hardware block.
  3. *
  4. * Copyright (C) 2015-2017 Renesas Electronics Corporation
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; version 2 of the License.
  9. */
  10. #include <linux/kernel.h>
  11. #include <linux/sys_soc.h>
  12. #include "core.h"
  13. #include "sh_pfc.h"
  14. #define CFG_FLAGS (SH_PFC_PIN_CFG_DRIVE_STRENGTH | \
  15. SH_PFC_PIN_CFG_PULL_UP | \
  16. SH_PFC_PIN_CFG_PULL_DOWN)
  17. #define CPU_ALL_PORT(fn, sfx) \
  18. PORT_GP_CFG_16(0, fn, sfx, CFG_FLAGS), \
  19. PORT_GP_CFG_29(1, fn, sfx, CFG_FLAGS), \
  20. PORT_GP_CFG_15(2, fn, sfx, CFG_FLAGS), \
  21. PORT_GP_CFG_12(3, fn, sfx, CFG_FLAGS | SH_PFC_PIN_CFG_IO_VOLTAGE), \
  22. PORT_GP_CFG_1(3, 12, fn, sfx, CFG_FLAGS), \
  23. PORT_GP_CFG_1(3, 13, fn, sfx, CFG_FLAGS), \
  24. PORT_GP_CFG_1(3, 14, fn, sfx, CFG_FLAGS), \
  25. PORT_GP_CFG_1(3, 15, fn, sfx, CFG_FLAGS), \
  26. PORT_GP_CFG_18(4, fn, sfx, CFG_FLAGS | SH_PFC_PIN_CFG_IO_VOLTAGE), \
  27. PORT_GP_CFG_26(5, fn, sfx, CFG_FLAGS), \
  28. PORT_GP_CFG_32(6, fn, sfx, CFG_FLAGS), \
  29. PORT_GP_CFG_4(7, fn, sfx, CFG_FLAGS)
  30. /*
  31. * F_() : just information
  32. * FM() : macro for FN_xxx / xxx_MARK
  33. */
  34. /* GPSR0 */
  35. #define GPSR0_15 F_(D15, IP7_11_8)
  36. #define GPSR0_14 F_(D14, IP7_7_4)
  37. #define GPSR0_13 F_(D13, IP7_3_0)
  38. #define GPSR0_12 F_(D12, IP6_31_28)
  39. #define GPSR0_11 F_(D11, IP6_27_24)
  40. #define GPSR0_10 F_(D10, IP6_23_20)
  41. #define GPSR0_9 F_(D9, IP6_19_16)
  42. #define GPSR0_8 F_(D8, IP6_15_12)
  43. #define GPSR0_7 F_(D7, IP6_11_8)
  44. #define GPSR0_6 F_(D6, IP6_7_4)
  45. #define GPSR0_5 F_(D5, IP6_3_0)
  46. #define GPSR0_4 F_(D4, IP5_31_28)
  47. #define GPSR0_3 F_(D3, IP5_27_24)
  48. #define GPSR0_2 F_(D2, IP5_23_20)
  49. #define GPSR0_1 F_(D1, IP5_19_16)
  50. #define GPSR0_0 F_(D0, IP5_15_12)
  51. /* GPSR1 */
  52. #define GPSR1_28 FM(CLKOUT)
  53. #define GPSR1_27 F_(EX_WAIT0_A, IP5_11_8)
  54. #define GPSR1_26 F_(WE1_N, IP5_7_4)
  55. #define GPSR1_25 F_(WE0_N, IP5_3_0)
  56. #define GPSR1_24 F_(RD_WR_N, IP4_31_28)
  57. #define GPSR1_23 F_(RD_N, IP4_27_24)
  58. #define GPSR1_22 F_(BS_N, IP4_23_20)
  59. #define GPSR1_21 F_(CS1_N, IP4_19_16)
  60. #define GPSR1_20 F_(CS0_N, IP4_15_12)
  61. #define GPSR1_19 F_(A19, IP4_11_8)
  62. #define GPSR1_18 F_(A18, IP4_7_4)
  63. #define GPSR1_17 F_(A17, IP4_3_0)
  64. #define GPSR1_16 F_(A16, IP3_31_28)
  65. #define GPSR1_15 F_(A15, IP3_27_24)
  66. #define GPSR1_14 F_(A14, IP3_23_20)
  67. #define GPSR1_13 F_(A13, IP3_19_16)
  68. #define GPSR1_12 F_(A12, IP3_15_12)
  69. #define GPSR1_11 F_(A11, IP3_11_8)
  70. #define GPSR1_10 F_(A10, IP3_7_4)
  71. #define GPSR1_9 F_(A9, IP3_3_0)
  72. #define GPSR1_8 F_(A8, IP2_31_28)
  73. #define GPSR1_7 F_(A7, IP2_27_24)
  74. #define GPSR1_6 F_(A6, IP2_23_20)
  75. #define GPSR1_5 F_(A5, IP2_19_16)
  76. #define GPSR1_4 F_(A4, IP2_15_12)
  77. #define GPSR1_3 F_(A3, IP2_11_8)
  78. #define GPSR1_2 F_(A2, IP2_7_4)
  79. #define GPSR1_1 F_(A1, IP2_3_0)
  80. #define GPSR1_0 F_(A0, IP1_31_28)
  81. /* GPSR2 */
  82. #define GPSR2_14 F_(AVB_AVTP_CAPTURE_A, IP0_23_20)
  83. #define GPSR2_13 F_(AVB_AVTP_MATCH_A, IP0_19_16)
  84. #define GPSR2_12 F_(AVB_LINK, IP0_15_12)
  85. #define GPSR2_11 F_(AVB_PHY_INT, IP0_11_8)
  86. #define GPSR2_10 F_(AVB_MAGIC, IP0_7_4)
  87. #define GPSR2_9 F_(AVB_MDC, IP0_3_0)
  88. #define GPSR2_8 F_(PWM2_A, IP1_27_24)
  89. #define GPSR2_7 F_(PWM1_A, IP1_23_20)
  90. #define GPSR2_6 F_(PWM0, IP1_19_16)
  91. #define GPSR2_5 F_(IRQ5, IP1_15_12)
  92. #define GPSR2_4 F_(IRQ4, IP1_11_8)
  93. #define GPSR2_3 F_(IRQ3, IP1_7_4)
  94. #define GPSR2_2 F_(IRQ2, IP1_3_0)
  95. #define GPSR2_1 F_(IRQ1, IP0_31_28)
  96. #define GPSR2_0 F_(IRQ0, IP0_27_24)
  97. /* GPSR3 */
  98. #define GPSR3_15 F_(SD1_WP, IP11_23_20)
  99. #define GPSR3_14 F_(SD1_CD, IP11_19_16)
  100. #define GPSR3_13 F_(SD0_WP, IP11_15_12)
  101. #define GPSR3_12 F_(SD0_CD, IP11_11_8)
  102. #define GPSR3_11 F_(SD1_DAT3, IP8_31_28)
  103. #define GPSR3_10 F_(SD1_DAT2, IP8_27_24)
  104. #define GPSR3_9 F_(SD1_DAT1, IP8_23_20)
  105. #define GPSR3_8 F_(SD1_DAT0, IP8_19_16)
  106. #define GPSR3_7 F_(SD1_CMD, IP8_15_12)
  107. #define GPSR3_6 F_(SD1_CLK, IP8_11_8)
  108. #define GPSR3_5 F_(SD0_DAT3, IP8_7_4)
  109. #define GPSR3_4 F_(SD0_DAT2, IP8_3_0)
  110. #define GPSR3_3 F_(SD0_DAT1, IP7_31_28)
  111. #define GPSR3_2 F_(SD0_DAT0, IP7_27_24)
  112. #define GPSR3_1 F_(SD0_CMD, IP7_23_20)
  113. #define GPSR3_0 F_(SD0_CLK, IP7_19_16)
  114. /* GPSR4 */
  115. #define GPSR4_17 F_(SD3_DS, IP11_7_4)
  116. #define GPSR4_16 F_(SD3_DAT7, IP11_3_0)
  117. #define GPSR4_15 F_(SD3_DAT6, IP10_31_28)
  118. #define GPSR4_14 F_(SD3_DAT5, IP10_27_24)
  119. #define GPSR4_13 F_(SD3_DAT4, IP10_23_20)
  120. #define GPSR4_12 F_(SD3_DAT3, IP10_19_16)
  121. #define GPSR4_11 F_(SD3_DAT2, IP10_15_12)
  122. #define GPSR4_10 F_(SD3_DAT1, IP10_11_8)
  123. #define GPSR4_9 F_(SD3_DAT0, IP10_7_4)
  124. #define GPSR4_8 F_(SD3_CMD, IP10_3_0)
  125. #define GPSR4_7 F_(SD3_CLK, IP9_31_28)
  126. #define GPSR4_6 F_(SD2_DS, IP9_27_24)
  127. #define GPSR4_5 F_(SD2_DAT3, IP9_23_20)
  128. #define GPSR4_4 F_(SD2_DAT2, IP9_19_16)
  129. #define GPSR4_3 F_(SD2_DAT1, IP9_15_12)
  130. #define GPSR4_2 F_(SD2_DAT0, IP9_11_8)
  131. #define GPSR4_1 F_(SD2_CMD, IP9_7_4)
  132. #define GPSR4_0 F_(SD2_CLK, IP9_3_0)
  133. /* GPSR5 */
  134. #define GPSR5_25 F_(MLB_DAT, IP14_19_16)
  135. #define GPSR5_24 F_(MLB_SIG, IP14_15_12)
  136. #define GPSR5_23 F_(MLB_CLK, IP14_11_8)
  137. #define GPSR5_22 FM(MSIOF0_RXD)
  138. #define GPSR5_21 F_(MSIOF0_SS2, IP14_7_4)
  139. #define GPSR5_20 FM(MSIOF0_TXD)
  140. #define GPSR5_19 F_(MSIOF0_SS1, IP14_3_0)
  141. #define GPSR5_18 F_(MSIOF0_SYNC, IP13_31_28)
  142. #define GPSR5_17 FM(MSIOF0_SCK)
  143. #define GPSR5_16 F_(HRTS0_N, IP13_27_24)
  144. #define GPSR5_15 F_(HCTS0_N, IP13_23_20)
  145. #define GPSR5_14 F_(HTX0, IP13_19_16)
  146. #define GPSR5_13 F_(HRX0, IP13_15_12)
  147. #define GPSR5_12 F_(HSCK0, IP13_11_8)
  148. #define GPSR5_11 F_(RX2_A, IP13_7_4)
  149. #define GPSR5_10 F_(TX2_A, IP13_3_0)
  150. #define GPSR5_9 F_(SCK2, IP12_31_28)
  151. #define GPSR5_8 F_(RTS1_N, IP12_27_24)
  152. #define GPSR5_7 F_(CTS1_N, IP12_23_20)
  153. #define GPSR5_6 F_(TX1_A, IP12_19_16)
  154. #define GPSR5_5 F_(RX1_A, IP12_15_12)
  155. #define GPSR5_4 F_(RTS0_N, IP12_11_8)
  156. #define GPSR5_3 F_(CTS0_N, IP12_7_4)
  157. #define GPSR5_2 F_(TX0, IP12_3_0)
  158. #define GPSR5_1 F_(RX0, IP11_31_28)
  159. #define GPSR5_0 F_(SCK0, IP11_27_24)
  160. /* GPSR6 */
  161. #define GPSR6_31 F_(USB2_CH3_OVC, IP18_7_4)
  162. #define GPSR6_30 F_(USB2_CH3_PWEN, IP18_3_0)
  163. #define GPSR6_29 F_(USB30_OVC, IP17_31_28)
  164. #define GPSR6_28 F_(USB30_PWEN, IP17_27_24)
  165. #define GPSR6_27 F_(USB1_OVC, IP17_23_20)
  166. #define GPSR6_26 F_(USB1_PWEN, IP17_19_16)
  167. #define GPSR6_25 F_(USB0_OVC, IP17_15_12)
  168. #define GPSR6_24 F_(USB0_PWEN, IP17_11_8)
  169. #define GPSR6_23 F_(AUDIO_CLKB_B, IP17_7_4)
  170. #define GPSR6_22 F_(AUDIO_CLKA_A, IP17_3_0)
  171. #define GPSR6_21 F_(SSI_SDATA9_A, IP16_31_28)
  172. #define GPSR6_20 F_(SSI_SDATA8, IP16_27_24)
  173. #define GPSR6_19 F_(SSI_SDATA7, IP16_23_20)
  174. #define GPSR6_18 F_(SSI_WS78, IP16_19_16)
  175. #define GPSR6_17 F_(SSI_SCK78, IP16_15_12)
  176. #define GPSR6_16 F_(SSI_SDATA6, IP16_11_8)
  177. #define GPSR6_15 F_(SSI_WS6, IP16_7_4)
  178. #define GPSR6_14 F_(SSI_SCK6, IP16_3_0)
  179. #define GPSR6_13 FM(SSI_SDATA5)
  180. #define GPSR6_12 FM(SSI_WS5)
  181. #define GPSR6_11 FM(SSI_SCK5)
  182. #define GPSR6_10 F_(SSI_SDATA4, IP15_31_28)
  183. #define GPSR6_9 F_(SSI_WS4, IP15_27_24)
  184. #define GPSR6_8 F_(SSI_SCK4, IP15_23_20)
  185. #define GPSR6_7 F_(SSI_SDATA3, IP15_19_16)
  186. #define GPSR6_6 F_(SSI_WS349, IP15_15_12)
  187. #define GPSR6_5 F_(SSI_SCK349, IP15_11_8)
  188. #define GPSR6_4 F_(SSI_SDATA2_A, IP15_7_4)
  189. #define GPSR6_3 F_(SSI_SDATA1_A, IP15_3_0)
  190. #define GPSR6_2 F_(SSI_SDATA0, IP14_31_28)
  191. #define GPSR6_1 F_(SSI_WS01239, IP14_27_24)
  192. #define GPSR6_0 F_(SSI_SCK01239, IP14_23_20)
  193. /* GPSR7 */
  194. #define GPSR7_3 FM(HDMI1_CEC)
  195. #define GPSR7_2 FM(HDMI0_CEC)
  196. #define GPSR7_1 FM(AVS2)
  197. #define GPSR7_0 FM(AVS1)
  198. /* IPSRx */ /* 0 */ /* 1 */ /* 2 */ /* 3 */ /* 4 */ /* 5 */ /* 6 */ /* 7 */ /* 8 */ /* 9 */ /* A */ /* B */ /* C - F */
  199. #define IP0_3_0 FM(AVB_MDC) F_(0, 0) FM(MSIOF2_SS2_C) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  200. #define IP0_7_4 FM(AVB_MAGIC) F_(0, 0) FM(MSIOF2_SS1_C) FM(SCK4_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  201. #define IP0_11_8 FM(AVB_PHY_INT) F_(0, 0) FM(MSIOF2_SYNC_C) FM(RX4_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  202. #define IP0_15_12 FM(AVB_LINK) F_(0, 0) FM(MSIOF2_SCK_C) FM(TX4_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  203. #define IP0_19_16 FM(AVB_AVTP_MATCH_A) F_(0, 0) FM(MSIOF2_RXD_C) FM(CTS4_N_A) F_(0, 0) FM(FSCLKST2_N_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  204. #define IP0_23_20 FM(AVB_AVTP_CAPTURE_A) F_(0, 0) FM(MSIOF2_TXD_C) FM(RTS4_N_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  205. #define IP0_27_24 FM(IRQ0) FM(QPOLB) F_(0, 0) FM(DU_CDE) FM(VI4_DATA0_B) FM(CAN0_TX_B) FM(CANFD0_TX_B) FM(MSIOF3_SS2_E) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  206. #define IP0_31_28 FM(IRQ1) FM(QPOLA) F_(0, 0) FM(DU_DISP) FM(VI4_DATA1_B) FM(CAN0_RX_B) FM(CANFD0_RX_B) FM(MSIOF3_SS1_E) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  207. #define IP1_3_0 FM(IRQ2) FM(QCPV_QDE) F_(0, 0) FM(DU_EXODDF_DU_ODDF_DISP_CDE) FM(VI4_DATA2_B) F_(0, 0) F_(0, 0) FM(MSIOF3_SYNC_E) F_(0, 0) FM(PWM3_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  208. #define IP1_7_4 FM(IRQ3) FM(QSTVB_QVE) F_(0, 0) FM(DU_DOTCLKOUT1) FM(VI4_DATA3_B) F_(0, 0) F_(0, 0) FM(MSIOF3_SCK_E) F_(0, 0) FM(PWM4_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  209. #define IP1_11_8 FM(IRQ4) FM(QSTH_QHS) F_(0, 0) FM(DU_EXHSYNC_DU_HSYNC) FM(VI4_DATA4_B) F_(0, 0) F_(0, 0) FM(MSIOF3_RXD_E) F_(0, 0) FM(PWM5_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  210. #define IP1_15_12 FM(IRQ5) FM(QSTB_QHE) F_(0, 0) FM(DU_EXVSYNC_DU_VSYNC) FM(VI4_DATA5_B) FM(FSCLKST2_N_B) F_(0, 0) FM(MSIOF3_TXD_E) F_(0, 0) FM(PWM6_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  211. #define IP1_19_16 FM(PWM0) FM(AVB_AVTP_PPS)F_(0, 0) F_(0, 0) FM(VI4_DATA6_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) FM(IECLK_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  212. #define IP1_23_20 FM(PWM1_A) F_(0, 0) F_(0, 0) FM(HRX3_D) FM(VI4_DATA7_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) FM(IERX_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  213. #define IP1_27_24 FM(PWM2_A) F_(0, 0) F_(0, 0) FM(HTX3_D) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) FM(IETX_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  214. #define IP1_31_28 FM(A0) FM(LCDOUT16) FM(MSIOF3_SYNC_B) F_(0, 0) FM(VI4_DATA8) F_(0, 0) FM(DU_DB0) F_(0, 0) F_(0, 0) FM(PWM3_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  215. #define IP2_3_0 FM(A1) FM(LCDOUT17) FM(MSIOF3_TXD_B) F_(0, 0) FM(VI4_DATA9) F_(0, 0) FM(DU_DB1) F_(0, 0) F_(0, 0) FM(PWM4_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  216. #define IP2_7_4 FM(A2) FM(LCDOUT18) FM(MSIOF3_SCK_B) F_(0, 0) FM(VI4_DATA10) F_(0, 0) FM(DU_DB2) F_(0, 0) F_(0, 0) FM(PWM5_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  217. #define IP2_11_8 FM(A3) FM(LCDOUT19) FM(MSIOF3_RXD_B) F_(0, 0) FM(VI4_DATA11) F_(0, 0) FM(DU_DB3) F_(0, 0) F_(0, 0) FM(PWM6_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  218. /* IPSRx */ /* 0 */ /* 1 */ /* 2 */ /* 3 */ /* 4 */ /* 5 */ /* 6 */ /* 7 */ /* 8 */ /* 9 */ /* A */ /* B */ /* C - F */
  219. #define IP2_15_12 FM(A4) FM(LCDOUT20) FM(MSIOF3_SS1_B) F_(0, 0) FM(VI4_DATA12) FM(VI5_DATA12) FM(DU_DB4) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  220. #define IP2_19_16 FM(A5) FM(LCDOUT21) FM(MSIOF3_SS2_B) FM(SCK4_B) FM(VI4_DATA13) FM(VI5_DATA13) FM(DU_DB5) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  221. #define IP2_23_20 FM(A6) FM(LCDOUT22) FM(MSIOF2_SS1_A) FM(RX4_B) FM(VI4_DATA14) FM(VI5_DATA14) FM(DU_DB6) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  222. #define IP2_27_24 FM(A7) FM(LCDOUT23) FM(MSIOF2_SS2_A) FM(TX4_B) FM(VI4_DATA15) FM(VI5_DATA15) FM(DU_DB7) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  223. #define IP2_31_28 FM(A8) FM(RX3_B) FM(MSIOF2_SYNC_A) FM(HRX4_B) F_(0, 0) F_(0, 0) F_(0, 0) FM(SDA6_A) FM(AVB_AVTP_MATCH_B) FM(PWM1_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  224. #define IP3_3_0 FM(A9) F_(0, 0) FM(MSIOF2_SCK_A) FM(CTS4_N_B) F_(0, 0) FM(VI5_VSYNC_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  225. #define IP3_7_4 FM(A10) F_(0, 0) FM(MSIOF2_RXD_A) FM(RTS4_N_B) F_(0, 0) FM(VI5_HSYNC_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  226. #define IP3_11_8 FM(A11) FM(TX3_B) FM(MSIOF2_TXD_A) FM(HTX4_B) FM(HSCK4) FM(VI5_FIELD) F_(0, 0) FM(SCL6_A) FM(AVB_AVTP_CAPTURE_B) FM(PWM2_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  227. #define IP3_15_12 FM(A12) FM(LCDOUT12) FM(MSIOF3_SCK_C) F_(0, 0) FM(HRX4_A) FM(VI5_DATA8) FM(DU_DG4) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  228. #define IP3_19_16 FM(A13) FM(LCDOUT13) FM(MSIOF3_SYNC_C) F_(0, 0) FM(HTX4_A) FM(VI5_DATA9) FM(DU_DG5) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  229. #define IP3_23_20 FM(A14) FM(LCDOUT14) FM(MSIOF3_RXD_C) F_(0, 0) FM(HCTS4_N) FM(VI5_DATA10) FM(DU_DG6) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  230. #define IP3_27_24 FM(A15) FM(LCDOUT15) FM(MSIOF3_TXD_C) F_(0, 0) FM(HRTS4_N) FM(VI5_DATA11) FM(DU_DG7) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  231. #define IP3_31_28 FM(A16) FM(LCDOUT8) F_(0, 0) F_(0, 0) FM(VI4_FIELD) F_(0, 0) FM(DU_DG0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  232. #define IP4_3_0 FM(A17) FM(LCDOUT9) F_(0, 0) F_(0, 0) FM(VI4_VSYNC_N) F_(0, 0) FM(DU_DG1) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  233. #define IP4_7_4 FM(A18) FM(LCDOUT10) F_(0, 0) F_(0, 0) FM(VI4_HSYNC_N) F_(0, 0) FM(DU_DG2) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  234. #define IP4_11_8 FM(A19) FM(LCDOUT11) F_(0, 0) F_(0, 0) FM(VI4_CLKENB) F_(0, 0) FM(DU_DG3) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  235. #define IP4_15_12 FM(CS0_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) FM(VI5_CLKENB) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  236. #define IP4_19_16 FM(CS1_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) FM(VI5_CLK) F_(0, 0) FM(EX_WAIT0_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  237. #define IP4_23_20 FM(BS_N) FM(QSTVA_QVS) FM(MSIOF3_SCK_D) FM(SCK3) FM(HSCK3) F_(0, 0) F_(0, 0) F_(0, 0) FM(CAN1_TX) FM(CANFD1_TX) FM(IETX_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  238. #define IP4_27_24 FM(RD_N) F_(0, 0) FM(MSIOF3_SYNC_D) FM(RX3_A) FM(HRX3_A) F_(0, 0) F_(0, 0) F_(0, 0) FM(CAN0_TX_A) FM(CANFD0_TX_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  239. #define IP4_31_28 FM(RD_WR_N) F_(0, 0) FM(MSIOF3_RXD_D) FM(TX3_A) FM(HTX3_A) F_(0, 0) F_(0, 0) F_(0, 0) FM(CAN0_RX_A) FM(CANFD0_RX_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  240. #define IP5_3_0 FM(WE0_N) F_(0, 0) FM(MSIOF3_TXD_D) FM(CTS3_N) FM(HCTS3_N) F_(0, 0) F_(0, 0) FM(SCL6_B) FM(CAN_CLK) F_(0, 0) FM(IECLK_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  241. #define IP5_7_4 FM(WE1_N) F_(0, 0) FM(MSIOF3_SS1_D) FM(RTS3_N) FM(HRTS3_N) F_(0, 0) F_(0, 0) FM(SDA6_B) FM(CAN1_RX) FM(CANFD1_RX) FM(IERX_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  242. #define IP5_11_8 FM(EX_WAIT0_A) FM(QCLK) F_(0, 0) F_(0, 0) FM(VI4_CLK) F_(0, 0) FM(DU_DOTCLKOUT0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  243. #define IP5_15_12 FM(D0) FM(MSIOF2_SS1_B)FM(MSIOF3_SCK_A) F_(0, 0) FM(VI4_DATA16) FM(VI5_DATA0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  244. #define IP5_19_16 FM(D1) FM(MSIOF2_SS2_B)FM(MSIOF3_SYNC_A) F_(0, 0) FM(VI4_DATA17) FM(VI5_DATA1) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  245. #define IP5_23_20 FM(D2) F_(0, 0) FM(MSIOF3_RXD_A) F_(0, 0) FM(VI4_DATA18) FM(VI5_DATA2) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  246. #define IP5_27_24 FM(D3) F_(0, 0) FM(MSIOF3_TXD_A) F_(0, 0) FM(VI4_DATA19) FM(VI5_DATA3) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  247. #define IP5_31_28 FM(D4) FM(MSIOF2_SCK_B)F_(0, 0) F_(0, 0) FM(VI4_DATA20) FM(VI5_DATA4) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  248. #define IP6_3_0 FM(D5) FM(MSIOF2_SYNC_B)F_(0, 0) F_(0, 0) FM(VI4_DATA21) FM(VI5_DATA5) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  249. #define IP6_7_4 FM(D6) FM(MSIOF2_RXD_B)F_(0, 0) F_(0, 0) FM(VI4_DATA22) FM(VI5_DATA6) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  250. #define IP6_11_8 FM(D7) FM(MSIOF2_TXD_B)F_(0, 0) F_(0, 0) FM(VI4_DATA23) FM(VI5_DATA7) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  251. #define IP6_15_12 FM(D8) FM(LCDOUT0) FM(MSIOF2_SCK_D) FM(SCK4_C) FM(VI4_DATA0_A) F_(0, 0) FM(DU_DR0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  252. #define IP6_19_16 FM(D9) FM(LCDOUT1) FM(MSIOF2_SYNC_D) F_(0, 0) FM(VI4_DATA1_A) F_(0, 0) FM(DU_DR1) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  253. #define IP6_23_20 FM(D10) FM(LCDOUT2) FM(MSIOF2_RXD_D) FM(HRX3_B) FM(VI4_DATA2_A) FM(CTS4_N_C) FM(DU_DR2) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  254. #define IP6_27_24 FM(D11) FM(LCDOUT3) FM(MSIOF2_TXD_D) FM(HTX3_B) FM(VI4_DATA3_A) FM(RTS4_N_C) FM(DU_DR3) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  255. #define IP6_31_28 FM(D12) FM(LCDOUT4) FM(MSIOF2_SS1_D) FM(RX4_C) FM(VI4_DATA4_A) F_(0, 0) FM(DU_DR4) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  256. #define IP7_3_0 FM(D13) FM(LCDOUT5) FM(MSIOF2_SS2_D) FM(TX4_C) FM(VI4_DATA5_A) F_(0, 0) FM(DU_DR5) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  257. #define IP7_7_4 FM(D14) FM(LCDOUT6) FM(MSIOF3_SS1_A) FM(HRX3_C) FM(VI4_DATA6_A) F_(0, 0) FM(DU_DR6) FM(SCL6_C) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  258. #define IP7_11_8 FM(D15) FM(LCDOUT7) FM(MSIOF3_SS2_A) FM(HTX3_C) FM(VI4_DATA7_A) F_(0, 0) FM(DU_DR7) FM(SDA6_C) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  259. #define IP7_19_16 FM(SD0_CLK) F_(0, 0) FM(MSIOF1_SCK_E) F_(0, 0) F_(0, 0) F_(0, 0) FM(STP_OPWM_0_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  260. /* IPSRx */ /* 0 */ /* 1 */ /* 2 */ /* 3 */ /* 4 */ /* 5 */ /* 6 */ /* 7 */ /* 8 */ /* 9 */ /* A */ /* B */ /* C - F */
  261. #define IP7_23_20 FM(SD0_CMD) F_(0, 0) FM(MSIOF1_SYNC_E) F_(0, 0) F_(0, 0) F_(0, 0) FM(STP_IVCXO27_0_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  262. #define IP7_27_24 FM(SD0_DAT0) F_(0, 0) FM(MSIOF1_RXD_E) F_(0, 0) F_(0, 0) FM(TS_SCK0_B) FM(STP_ISCLK_0_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  263. #define IP7_31_28 FM(SD0_DAT1) F_(0, 0) FM(MSIOF1_TXD_E) F_(0, 0) F_(0, 0) FM(TS_SPSYNC0_B)FM(STP_ISSYNC_0_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  264. #define IP8_3_0 FM(SD0_DAT2) F_(0, 0) FM(MSIOF1_SS1_E) F_(0, 0) F_(0, 0) FM(TS_SDAT0_B) FM(STP_ISD_0_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  265. #define IP8_7_4 FM(SD0_DAT3) F_(0, 0) FM(MSIOF1_SS2_E) F_(0, 0) F_(0, 0) FM(TS_SDEN0_B) FM(STP_ISEN_0_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  266. #define IP8_11_8 FM(SD1_CLK) F_(0, 0) FM(MSIOF1_SCK_G) F_(0, 0) F_(0, 0) FM(SIM0_CLK_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  267. #define IP8_15_12 FM(SD1_CMD) F_(0, 0) FM(MSIOF1_SYNC_G) FM(NFCE_N_B) F_(0, 0) FM(SIM0_D_A) FM(STP_IVCXO27_1_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  268. #define IP8_19_16 FM(SD1_DAT0) FM(SD2_DAT4) FM(MSIOF1_RXD_G) FM(NFWP_N_B) F_(0, 0) FM(TS_SCK1_B) FM(STP_ISCLK_1_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  269. #define IP8_23_20 FM(SD1_DAT1) FM(SD2_DAT5) FM(MSIOF1_TXD_G) FM(NFDATA14_B) F_(0, 0) FM(TS_SPSYNC1_B)FM(STP_ISSYNC_1_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  270. #define IP8_27_24 FM(SD1_DAT2) FM(SD2_DAT6) FM(MSIOF1_SS1_G) FM(NFDATA15_B) F_(0, 0) FM(TS_SDAT1_B) FM(STP_ISD_1_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  271. #define IP8_31_28 FM(SD1_DAT3) FM(SD2_DAT7) FM(MSIOF1_SS2_G) FM(NFRB_N_B) F_(0, 0) FM(TS_SDEN1_B) FM(STP_ISEN_1_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  272. #define IP9_3_0 FM(SD2_CLK) F_(0, 0) FM(NFDATA8) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  273. #define IP9_7_4 FM(SD2_CMD) F_(0, 0) FM(NFDATA9) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  274. #define IP9_11_8 FM(SD2_DAT0) F_(0, 0) FM(NFDATA10) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  275. #define IP9_15_12 FM(SD2_DAT1) F_(0, 0) FM(NFDATA11) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  276. #define IP9_19_16 FM(SD2_DAT2) F_(0, 0) FM(NFDATA12) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  277. #define IP9_23_20 FM(SD2_DAT3) F_(0, 0) FM(NFDATA13) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  278. #define IP9_27_24 FM(SD2_DS) F_(0, 0) FM(NFALE) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) FM(SATA_DEVSLP_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  279. #define IP9_31_28 FM(SD3_CLK) F_(0, 0) FM(NFWE_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  280. #define IP10_3_0 FM(SD3_CMD) F_(0, 0) FM(NFRE_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  281. #define IP10_7_4 FM(SD3_DAT0) F_(0, 0) FM(NFDATA0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  282. #define IP10_11_8 FM(SD3_DAT1) F_(0, 0) FM(NFDATA1) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  283. #define IP10_15_12 FM(SD3_DAT2) F_(0, 0) FM(NFDATA2) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  284. #define IP10_19_16 FM(SD3_DAT3) F_(0, 0) FM(NFDATA3) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  285. #define IP10_23_20 FM(SD3_DAT4) FM(SD2_CD_A) FM(NFDATA4) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  286. #define IP10_27_24 FM(SD3_DAT5) FM(SD2_WP_A) FM(NFDATA5) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  287. #define IP10_31_28 FM(SD3_DAT6) FM(SD3_CD) FM(NFDATA6) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  288. #define IP11_3_0 FM(SD3_DAT7) FM(SD3_WP) FM(NFDATA7) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  289. #define IP11_7_4 FM(SD3_DS) F_(0, 0) FM(NFCLE) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  290. #define IP11_11_8 FM(SD0_CD) F_(0, 0) FM(NFDATA14_A) F_(0, 0) FM(SCL2_B) FM(SIM0_RST_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  291. /* IPSRx */ /* 0 */ /* 1 */ /* 2 */ /* 3 */ /* 4 */ /* 5 */ /* 6 */ /* 7 */ /* 8 */ /* 9 */ /* A */ /* B */ /* C - F */
  292. #define IP11_15_12 FM(SD0_WP) F_(0, 0) FM(NFDATA15_A) F_(0, 0) FM(SDA2_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  293. #define IP11_19_16 FM(SD1_CD) F_(0, 0) FM(NFRB_N_A) F_(0, 0) F_(0, 0) FM(SIM0_CLK_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  294. #define IP11_23_20 FM(SD1_WP) F_(0, 0) FM(NFCE_N_A) F_(0, 0) F_(0, 0) FM(SIM0_D_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  295. #define IP11_27_24 FM(SCK0) FM(HSCK1_B) FM(MSIOF1_SS2_B) FM(AUDIO_CLKC_B) FM(SDA2_A) FM(SIM0_RST_B) FM(STP_OPWM_0_C) FM(RIF0_CLK_B) F_(0, 0) FM(ADICHS2) FM(SCK5_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  296. #define IP11_31_28 FM(RX0) FM(HRX1_B) F_(0, 0) F_(0, 0) F_(0, 0) FM(TS_SCK0_C) FM(STP_ISCLK_0_C) FM(RIF0_D0_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  297. #define IP12_3_0 FM(TX0) FM(HTX1_B) F_(0, 0) F_(0, 0) F_(0, 0) FM(TS_SPSYNC0_C)FM(STP_ISSYNC_0_C) FM(RIF0_D1_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  298. #define IP12_7_4 FM(CTS0_N) FM(HCTS1_N_B) FM(MSIOF1_SYNC_B) F_(0, 0) F_(0, 0) FM(TS_SPSYNC1_C)FM(STP_ISSYNC_1_C) FM(RIF1_SYNC_B) FM(AUDIO_CLKOUT_C) FM(ADICS_SAMP) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  299. #define IP12_11_8 FM(RTS0_N) FM(HRTS1_N_B) FM(MSIOF1_SS1_B) FM(AUDIO_CLKA_B) FM(SCL2_A) F_(0, 0) FM(STP_IVCXO27_1_C) FM(RIF0_SYNC_B) F_(0, 0) FM(ADICHS1) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  300. #define IP12_15_12 FM(RX1_A) FM(HRX1_A) F_(0, 0) F_(0, 0) F_(0, 0) FM(TS_SDAT0_C) FM(STP_ISD_0_C) FM(RIF1_CLK_C) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  301. #define IP12_19_16 FM(TX1_A) FM(HTX1_A) F_(0, 0) F_(0, 0) F_(0, 0) FM(TS_SDEN0_C) FM(STP_ISEN_0_C) FM(RIF1_D0_C) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  302. #define IP12_23_20 FM(CTS1_N) FM(HCTS1_N_A) FM(MSIOF1_RXD_B) F_(0, 0) F_(0, 0) FM(TS_SDEN1_C) FM(STP_ISEN_1_C) FM(RIF1_D0_B) F_(0, 0) FM(ADIDATA) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  303. #define IP12_27_24 FM(RTS1_N) FM(HRTS1_N_A) FM(MSIOF1_TXD_B) F_(0, 0) F_(0, 0) FM(TS_SDAT1_C) FM(STP_ISD_1_C) FM(RIF1_D1_B) F_(0, 0) FM(ADICHS0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  304. #define IP12_31_28 FM(SCK2) FM(SCIF_CLK_B) FM(MSIOF1_SCK_B) F_(0, 0) F_(0, 0) FM(TS_SCK1_C) FM(STP_ISCLK_1_C) FM(RIF1_CLK_B) F_(0, 0) FM(ADICLK) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  305. #define IP13_3_0 FM(TX2_A) F_(0, 0) F_(0, 0) FM(SD2_CD_B) FM(SCL1_A) F_(0, 0) FM(FMCLK_A) FM(RIF1_D1_C) F_(0, 0) FM(FSO_CFE_0_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  306. #define IP13_7_4 FM(RX2_A) F_(0, 0) F_(0, 0) FM(SD2_WP_B) FM(SDA1_A) F_(0, 0) FM(FMIN_A) FM(RIF1_SYNC_C) F_(0, 0) FM(FSO_CFE_1_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  307. #define IP13_11_8 FM(HSCK0) F_(0, 0) FM(MSIOF1_SCK_D) FM(AUDIO_CLKB_A) FM(SSI_SDATA1_B)FM(TS_SCK0_D) FM(STP_ISCLK_0_D) FM(RIF0_CLK_C) F_(0, 0) F_(0, 0) FM(RX5_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  308. #define IP13_15_12 FM(HRX0) F_(0, 0) FM(MSIOF1_RXD_D) F_(0, 0) FM(SSI_SDATA2_B)FM(TS_SDEN0_D) FM(STP_ISEN_0_D) FM(RIF0_D0_C) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  309. #define IP13_19_16 FM(HTX0) F_(0, 0) FM(MSIOF1_TXD_D) F_(0, 0) FM(SSI_SDATA9_B)FM(TS_SDAT0_D) FM(STP_ISD_0_D) FM(RIF0_D1_C) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  310. #define IP13_23_20 FM(HCTS0_N) FM(RX2_B) FM(MSIOF1_SYNC_D) F_(0, 0) FM(SSI_SCK9_A) FM(TS_SPSYNC0_D)FM(STP_ISSYNC_0_D) FM(RIF0_SYNC_C) FM(AUDIO_CLKOUT1_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  311. #define IP13_27_24 FM(HRTS0_N) FM(TX2_B) FM(MSIOF1_SS1_D) F_(0, 0) FM(SSI_WS9_A) F_(0, 0) FM(STP_IVCXO27_0_D) FM(BPFCLK_A) FM(AUDIO_CLKOUT2_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  312. #define IP13_31_28 FM(MSIOF0_SYNC) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) FM(AUDIO_CLKOUT_A) F_(0, 0) FM(TX5_B) F_(0, 0) F_(0, 0) FM(BPFCLK_D) F_(0, 0) F_(0, 0)
  313. #define IP14_3_0 FM(MSIOF0_SS1) FM(RX5_A) FM(NFWP_N_A) FM(AUDIO_CLKA_C) FM(SSI_SCK2_A) F_(0, 0) FM(STP_IVCXO27_0_C) F_(0, 0) FM(AUDIO_CLKOUT3_A) F_(0, 0) FM(TCLK1_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  314. #define IP14_7_4 FM(MSIOF0_SS2) FM(TX5_A) FM(MSIOF1_SS2_D) FM(AUDIO_CLKC_A) FM(SSI_WS2_A) F_(0, 0) FM(STP_OPWM_0_D) F_(0, 0) FM(AUDIO_CLKOUT_D) F_(0, 0) FM(SPEEDIN_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  315. #define IP14_11_8 FM(MLB_CLK) F_(0, 0) FM(MSIOF1_SCK_F) F_(0, 0) FM(SCL1_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  316. #define IP14_15_12 FM(MLB_SIG) FM(RX1_B) FM(MSIOF1_SYNC_F) F_(0, 0) FM(SDA1_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  317. #define IP14_19_16 FM(MLB_DAT) FM(TX1_B) FM(MSIOF1_RXD_F) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  318. #define IP14_23_20 FM(SSI_SCK01239) F_(0, 0) FM(MSIOF1_TXD_F) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  319. #define IP14_27_24 FM(SSI_WS01239) F_(0, 0) FM(MSIOF1_SS1_F) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  320. /* IPSRx */ /* 0 */ /* 1 */ /* 2 */ /* 3 */ /* 4 */ /* 5 */ /* 6 */ /* 7 */ /* 8 */ /* 9 */ /* A */ /* B */ /* C - F */
  321. #define IP14_31_28 FM(SSI_SDATA0) F_(0, 0) FM(MSIOF1_SS2_F) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  322. #define IP15_3_0 FM(SSI_SDATA1_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  323. #define IP15_7_4 FM(SSI_SDATA2_A) F_(0, 0) F_(0, 0) F_(0, 0) FM(SSI_SCK1_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  324. #define IP15_11_8 FM(SSI_SCK349) F_(0, 0) FM(MSIOF1_SS1_A) F_(0, 0) F_(0, 0) F_(0, 0) FM(STP_OPWM_0_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  325. #define IP15_15_12 FM(SSI_WS349) FM(HCTS2_N_A) FM(MSIOF1_SS2_A) F_(0, 0) F_(0, 0) F_(0, 0) FM(STP_IVCXO27_0_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  326. #define IP15_19_16 FM(SSI_SDATA3) FM(HRTS2_N_A) FM(MSIOF1_TXD_A) F_(0, 0) F_(0, 0) FM(TS_SCK0_A) FM(STP_ISCLK_0_A) FM(RIF0_D1_A) FM(RIF2_D0_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  327. #define IP15_23_20 FM(SSI_SCK4) FM(HRX2_A) FM(MSIOF1_SCK_A) F_(0, 0) F_(0, 0) FM(TS_SDAT0_A) FM(STP_ISD_0_A) FM(RIF0_CLK_A) FM(RIF2_CLK_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  328. #define IP15_27_24 FM(SSI_WS4) FM(HTX2_A) FM(MSIOF1_SYNC_A) F_(0, 0) F_(0, 0) FM(TS_SDEN0_A) FM(STP_ISEN_0_A) FM(RIF0_SYNC_A) FM(RIF2_SYNC_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  329. #define IP15_31_28 FM(SSI_SDATA4) FM(HSCK2_A) FM(MSIOF1_RXD_A) F_(0, 0) F_(0, 0) FM(TS_SPSYNC0_A)FM(STP_ISSYNC_0_A) FM(RIF0_D0_A) FM(RIF2_D1_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  330. #define IP16_3_0 FM(SSI_SCK6) FM(USB2_PWEN) F_(0, 0) FM(SIM0_RST_D) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  331. #define IP16_7_4 FM(SSI_WS6) FM(USB2_OVC) F_(0, 0) FM(SIM0_D_D) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  332. #define IP16_11_8 FM(SSI_SDATA6) F_(0, 0) F_(0, 0) FM(SIM0_CLK_D) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) FM(SATA_DEVSLP_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  333. #define IP16_15_12 FM(SSI_SCK78) FM(HRX2_B) FM(MSIOF1_SCK_C) F_(0, 0) F_(0, 0) FM(TS_SCK1_A) FM(STP_ISCLK_1_A) FM(RIF1_CLK_A) FM(RIF3_CLK_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  334. #define IP16_19_16 FM(SSI_WS78) FM(HTX2_B) FM(MSIOF1_SYNC_C) F_(0, 0) F_(0, 0) FM(TS_SDAT1_A) FM(STP_ISD_1_A) FM(RIF1_SYNC_A) FM(RIF3_SYNC_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  335. #define IP16_23_20 FM(SSI_SDATA7) FM(HCTS2_N_B) FM(MSIOF1_RXD_C) F_(0, 0) F_(0, 0) FM(TS_SDEN1_A) FM(STP_ISEN_1_A) FM(RIF1_D0_A) FM(RIF3_D0_A) F_(0, 0) FM(TCLK2_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  336. #define IP16_27_24 FM(SSI_SDATA8) FM(HRTS2_N_B) FM(MSIOF1_TXD_C) F_(0, 0) F_(0, 0) FM(TS_SPSYNC1_A)FM(STP_ISSYNC_1_A) FM(RIF1_D1_A) FM(RIF3_D1_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  337. #define IP16_31_28 FM(SSI_SDATA9_A) FM(HSCK2_B) FM(MSIOF1_SS1_C) FM(HSCK1_A) FM(SSI_WS1_B) FM(SCK1) FM(STP_IVCXO27_1_A) FM(SCK5_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  338. #define IP17_3_0 FM(AUDIO_CLKA_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) FM(CC5_OSCOUT) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  339. #define IP17_7_4 FM(AUDIO_CLKB_B) FM(SCIF_CLK_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) FM(STP_IVCXO27_1_D) FM(REMOCON_A) F_(0, 0) F_(0, 0) FM(TCLK1_A) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  340. #define IP17_11_8 FM(USB0_PWEN) F_(0, 0) F_(0, 0) FM(SIM0_RST_C) F_(0, 0) FM(TS_SCK1_D) FM(STP_ISCLK_1_D) FM(BPFCLK_B) FM(RIF3_CLK_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) FM(HSCK2_C) F_(0, 0) F_(0, 0)
  341. #define IP17_15_12 FM(USB0_OVC) F_(0, 0) F_(0, 0) FM(SIM0_D_C) F_(0, 0) FM(TS_SDAT1_D) FM(STP_ISD_1_D) F_(0, 0) FM(RIF3_SYNC_B) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) FM(HRX2_C) F_(0, 0) F_(0, 0)
  342. #define IP17_19_16 FM(USB1_PWEN) F_(0, 0) F_(0, 0) FM(SIM0_CLK_C) FM(SSI_SCK1_A) FM(TS_SCK0_E) FM(STP_ISCLK_0_E) FM(FMCLK_B) FM(RIF2_CLK_B) F_(0, 0) FM(SPEEDIN_A) F_(0, 0) F_(0, 0) FM(HTX2_C) F_(0, 0) F_(0, 0)
  343. #define IP17_23_20 FM(USB1_OVC) F_(0, 0) FM(MSIOF1_SS2_C) F_(0, 0) FM(SSI_WS1_A) FM(TS_SDAT0_E) FM(STP_ISD_0_E) FM(FMIN_B) FM(RIF2_SYNC_B) F_(0, 0) FM(REMOCON_B) F_(0, 0) F_(0, 0) FM(HCTS2_N_C) F_(0, 0) F_(0, 0)
  344. #define IP17_27_24 FM(USB30_PWEN) F_(0, 0) F_(0, 0) FM(AUDIO_CLKOUT_B) FM(SSI_SCK2_B) FM(TS_SDEN1_D) FM(STP_ISEN_1_D) FM(STP_OPWM_0_E)FM(RIF3_D0_B) F_(0, 0) FM(TCLK2_B) FM(TPU0TO0) FM(BPFCLK_C) FM(HRTS2_N_C) F_(0, 0) F_(0, 0)
  345. #define IP17_31_28 FM(USB30_OVC) F_(0, 0) F_(0, 0) FM(AUDIO_CLKOUT1_B) FM(SSI_WS2_B) FM(TS_SPSYNC1_D)FM(STP_ISSYNC_1_D) FM(STP_IVCXO27_0_E)FM(RIF3_D1_B) F_(0, 0) FM(FSO_TOE_N) FM(TPU0TO1) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  346. #define IP18_3_0 FM(USB2_CH3_PWEN) F_(0, 0) F_(0, 0) FM(AUDIO_CLKOUT2_B) FM(SSI_SCK9_B) FM(TS_SDEN0_E) FM(STP_ISEN_0_E) F_(0, 0) FM(RIF2_D0_B) F_(0, 0) F_(0, 0) FM(TPU0TO2) FM(FMCLK_C) FM(FMCLK_D) F_(0, 0) F_(0, 0)
  347. #define IP18_7_4 FM(USB2_CH3_OVC) F_(0, 0) F_(0, 0) FM(AUDIO_CLKOUT3_B) FM(SSI_WS9_B) FM(TS_SPSYNC0_E)FM(STP_ISSYNC_0_E) F_(0, 0) FM(RIF2_D1_B) F_(0, 0) F_(0, 0) FM(TPU0TO3) FM(FMIN_C) FM(FMIN_D) F_(0, 0) F_(0, 0)
  348. #define PINMUX_GPSR \
  349. \
  350. GPSR6_31 \
  351. GPSR6_30 \
  352. GPSR6_29 \
  353. GPSR1_28 GPSR6_28 \
  354. GPSR1_27 GPSR6_27 \
  355. GPSR1_26 GPSR6_26 \
  356. GPSR1_25 GPSR5_25 GPSR6_25 \
  357. GPSR1_24 GPSR5_24 GPSR6_24 \
  358. GPSR1_23 GPSR5_23 GPSR6_23 \
  359. GPSR1_22 GPSR5_22 GPSR6_22 \
  360. GPSR1_21 GPSR5_21 GPSR6_21 \
  361. GPSR1_20 GPSR5_20 GPSR6_20 \
  362. GPSR1_19 GPSR5_19 GPSR6_19 \
  363. GPSR1_18 GPSR5_18 GPSR6_18 \
  364. GPSR1_17 GPSR4_17 GPSR5_17 GPSR6_17 \
  365. GPSR1_16 GPSR4_16 GPSR5_16 GPSR6_16 \
  366. GPSR0_15 GPSR1_15 GPSR3_15 GPSR4_15 GPSR5_15 GPSR6_15 \
  367. GPSR0_14 GPSR1_14 GPSR2_14 GPSR3_14 GPSR4_14 GPSR5_14 GPSR6_14 \
  368. GPSR0_13 GPSR1_13 GPSR2_13 GPSR3_13 GPSR4_13 GPSR5_13 GPSR6_13 \
  369. GPSR0_12 GPSR1_12 GPSR2_12 GPSR3_12 GPSR4_12 GPSR5_12 GPSR6_12 \
  370. GPSR0_11 GPSR1_11 GPSR2_11 GPSR3_11 GPSR4_11 GPSR5_11 GPSR6_11 \
  371. GPSR0_10 GPSR1_10 GPSR2_10 GPSR3_10 GPSR4_10 GPSR5_10 GPSR6_10 \
  372. GPSR0_9 GPSR1_9 GPSR2_9 GPSR3_9 GPSR4_9 GPSR5_9 GPSR6_9 \
  373. GPSR0_8 GPSR1_8 GPSR2_8 GPSR3_8 GPSR4_8 GPSR5_8 GPSR6_8 \
  374. GPSR0_7 GPSR1_7 GPSR2_7 GPSR3_7 GPSR4_7 GPSR5_7 GPSR6_7 \
  375. GPSR0_6 GPSR1_6 GPSR2_6 GPSR3_6 GPSR4_6 GPSR5_6 GPSR6_6 \
  376. GPSR0_5 GPSR1_5 GPSR2_5 GPSR3_5 GPSR4_5 GPSR5_5 GPSR6_5 \
  377. GPSR0_4 GPSR1_4 GPSR2_4 GPSR3_4 GPSR4_4 GPSR5_4 GPSR6_4 \
  378. GPSR0_3 GPSR1_3 GPSR2_3 GPSR3_3 GPSR4_3 GPSR5_3 GPSR6_3 GPSR7_3 \
  379. GPSR0_2 GPSR1_2 GPSR2_2 GPSR3_2 GPSR4_2 GPSR5_2 GPSR6_2 GPSR7_2 \
  380. GPSR0_1 GPSR1_1 GPSR2_1 GPSR3_1 GPSR4_1 GPSR5_1 GPSR6_1 GPSR7_1 \
  381. GPSR0_0 GPSR1_0 GPSR2_0 GPSR3_0 GPSR4_0 GPSR5_0 GPSR6_0 GPSR7_0
  382. #define PINMUX_IPSR \
  383. \
  384. FM(IP0_3_0) IP0_3_0 FM(IP1_3_0) IP1_3_0 FM(IP2_3_0) IP2_3_0 FM(IP3_3_0) IP3_3_0 \
  385. FM(IP0_7_4) IP0_7_4 FM(IP1_7_4) IP1_7_4 FM(IP2_7_4) IP2_7_4 FM(IP3_7_4) IP3_7_4 \
  386. FM(IP0_11_8) IP0_11_8 FM(IP1_11_8) IP1_11_8 FM(IP2_11_8) IP2_11_8 FM(IP3_11_8) IP3_11_8 \
  387. FM(IP0_15_12) IP0_15_12 FM(IP1_15_12) IP1_15_12 FM(IP2_15_12) IP2_15_12 FM(IP3_15_12) IP3_15_12 \
  388. FM(IP0_19_16) IP0_19_16 FM(IP1_19_16) IP1_19_16 FM(IP2_19_16) IP2_19_16 FM(IP3_19_16) IP3_19_16 \
  389. FM(IP0_23_20) IP0_23_20 FM(IP1_23_20) IP1_23_20 FM(IP2_23_20) IP2_23_20 FM(IP3_23_20) IP3_23_20 \
  390. FM(IP0_27_24) IP0_27_24 FM(IP1_27_24) IP1_27_24 FM(IP2_27_24) IP2_27_24 FM(IP3_27_24) IP3_27_24 \
  391. FM(IP0_31_28) IP0_31_28 FM(IP1_31_28) IP1_31_28 FM(IP2_31_28) IP2_31_28 FM(IP3_31_28) IP3_31_28 \
  392. \
  393. FM(IP4_3_0) IP4_3_0 FM(IP5_3_0) IP5_3_0 FM(IP6_3_0) IP6_3_0 FM(IP7_3_0) IP7_3_0 \
  394. FM(IP4_7_4) IP4_7_4 FM(IP5_7_4) IP5_7_4 FM(IP6_7_4) IP6_7_4 FM(IP7_7_4) IP7_7_4 \
  395. FM(IP4_11_8) IP4_11_8 FM(IP5_11_8) IP5_11_8 FM(IP6_11_8) IP6_11_8 FM(IP7_11_8) IP7_11_8 \
  396. FM(IP4_15_12) IP4_15_12 FM(IP5_15_12) IP5_15_12 FM(IP6_15_12) IP6_15_12 \
  397. FM(IP4_19_16) IP4_19_16 FM(IP5_19_16) IP5_19_16 FM(IP6_19_16) IP6_19_16 FM(IP7_19_16) IP7_19_16 \
  398. FM(IP4_23_20) IP4_23_20 FM(IP5_23_20) IP5_23_20 FM(IP6_23_20) IP6_23_20 FM(IP7_23_20) IP7_23_20 \
  399. FM(IP4_27_24) IP4_27_24 FM(IP5_27_24) IP5_27_24 FM(IP6_27_24) IP6_27_24 FM(IP7_27_24) IP7_27_24 \
  400. FM(IP4_31_28) IP4_31_28 FM(IP5_31_28) IP5_31_28 FM(IP6_31_28) IP6_31_28 FM(IP7_31_28) IP7_31_28 \
  401. \
  402. FM(IP8_3_0) IP8_3_0 FM(IP9_3_0) IP9_3_0 FM(IP10_3_0) IP10_3_0 FM(IP11_3_0) IP11_3_0 \
  403. FM(IP8_7_4) IP8_7_4 FM(IP9_7_4) IP9_7_4 FM(IP10_7_4) IP10_7_4 FM(IP11_7_4) IP11_7_4 \
  404. FM(IP8_11_8) IP8_11_8 FM(IP9_11_8) IP9_11_8 FM(IP10_11_8) IP10_11_8 FM(IP11_11_8) IP11_11_8 \
  405. FM(IP8_15_12) IP8_15_12 FM(IP9_15_12) IP9_15_12 FM(IP10_15_12) IP10_15_12 FM(IP11_15_12) IP11_15_12 \
  406. FM(IP8_19_16) IP8_19_16 FM(IP9_19_16) IP9_19_16 FM(IP10_19_16) IP10_19_16 FM(IP11_19_16) IP11_19_16 \
  407. FM(IP8_23_20) IP8_23_20 FM(IP9_23_20) IP9_23_20 FM(IP10_23_20) IP10_23_20 FM(IP11_23_20) IP11_23_20 \
  408. FM(IP8_27_24) IP8_27_24 FM(IP9_27_24) IP9_27_24 FM(IP10_27_24) IP10_27_24 FM(IP11_27_24) IP11_27_24 \
  409. FM(IP8_31_28) IP8_31_28 FM(IP9_31_28) IP9_31_28 FM(IP10_31_28) IP10_31_28 FM(IP11_31_28) IP11_31_28 \
  410. \
  411. FM(IP12_3_0) IP12_3_0 FM(IP13_3_0) IP13_3_0 FM(IP14_3_0) IP14_3_0 FM(IP15_3_0) IP15_3_0 \
  412. FM(IP12_7_4) IP12_7_4 FM(IP13_7_4) IP13_7_4 FM(IP14_7_4) IP14_7_4 FM(IP15_7_4) IP15_7_4 \
  413. FM(IP12_11_8) IP12_11_8 FM(IP13_11_8) IP13_11_8 FM(IP14_11_8) IP14_11_8 FM(IP15_11_8) IP15_11_8 \
  414. FM(IP12_15_12) IP12_15_12 FM(IP13_15_12) IP13_15_12 FM(IP14_15_12) IP14_15_12 FM(IP15_15_12) IP15_15_12 \
  415. FM(IP12_19_16) IP12_19_16 FM(IP13_19_16) IP13_19_16 FM(IP14_19_16) IP14_19_16 FM(IP15_19_16) IP15_19_16 \
  416. FM(IP12_23_20) IP12_23_20 FM(IP13_23_20) IP13_23_20 FM(IP14_23_20) IP14_23_20 FM(IP15_23_20) IP15_23_20 \
  417. FM(IP12_27_24) IP12_27_24 FM(IP13_27_24) IP13_27_24 FM(IP14_27_24) IP14_27_24 FM(IP15_27_24) IP15_27_24 \
  418. FM(IP12_31_28) IP12_31_28 FM(IP13_31_28) IP13_31_28 FM(IP14_31_28) IP14_31_28 FM(IP15_31_28) IP15_31_28 \
  419. \
  420. FM(IP16_3_0) IP16_3_0 FM(IP17_3_0) IP17_3_0 FM(IP18_3_0) IP18_3_0 \
  421. FM(IP16_7_4) IP16_7_4 FM(IP17_7_4) IP17_7_4 FM(IP18_7_4) IP18_7_4 \
  422. FM(IP16_11_8) IP16_11_8 FM(IP17_11_8) IP17_11_8 \
  423. FM(IP16_15_12) IP16_15_12 FM(IP17_15_12) IP17_15_12 \
  424. FM(IP16_19_16) IP16_19_16 FM(IP17_19_16) IP17_19_16 \
  425. FM(IP16_23_20) IP16_23_20 FM(IP17_23_20) IP17_23_20 \
  426. FM(IP16_27_24) IP16_27_24 FM(IP17_27_24) IP17_27_24 \
  427. FM(IP16_31_28) IP16_31_28 FM(IP17_31_28) IP17_31_28
  428. /* MOD_SEL0 */ /* 0 */ /* 1 */ /* 2 */ /* 3 */ /* 4 */ /* 5 */ /* 6 */ /* 7 */
  429. #define MOD_SEL0_31_30_29 FM(SEL_MSIOF3_0) FM(SEL_MSIOF3_1) FM(SEL_MSIOF3_2) FM(SEL_MSIOF3_3) FM(SEL_MSIOF3_4) F_(0, 0) F_(0, 0) F_(0, 0)
  430. #define MOD_SEL0_28_27 FM(SEL_MSIOF2_0) FM(SEL_MSIOF2_1) FM(SEL_MSIOF2_2) FM(SEL_MSIOF2_3)
  431. #define MOD_SEL0_26_25_24 FM(SEL_MSIOF1_0) FM(SEL_MSIOF1_1) FM(SEL_MSIOF1_2) FM(SEL_MSIOF1_3) FM(SEL_MSIOF1_4) FM(SEL_MSIOF1_5) FM(SEL_MSIOF1_6) F_(0, 0)
  432. #define MOD_SEL0_23 FM(SEL_LBSC_0) FM(SEL_LBSC_1)
  433. #define MOD_SEL0_22 FM(SEL_IEBUS_0) FM(SEL_IEBUS_1)
  434. #define MOD_SEL0_21 FM(SEL_I2C2_0) FM(SEL_I2C2_1)
  435. #define MOD_SEL0_20 FM(SEL_I2C1_0) FM(SEL_I2C1_1)
  436. #define MOD_SEL0_19 FM(SEL_HSCIF4_0) FM(SEL_HSCIF4_1)
  437. #define MOD_SEL0_18_17 FM(SEL_HSCIF3_0) FM(SEL_HSCIF3_1) FM(SEL_HSCIF3_2) FM(SEL_HSCIF3_3)
  438. #define MOD_SEL0_16 FM(SEL_HSCIF1_0) FM(SEL_HSCIF1_1)
  439. #define MOD_SEL0_14_13 FM(SEL_HSCIF2_0) FM(SEL_HSCIF2_1) FM(SEL_HSCIF2_2) F_(0, 0)
  440. #define MOD_SEL0_12 FM(SEL_ETHERAVB_0) FM(SEL_ETHERAVB_1)
  441. #define MOD_SEL0_11 FM(SEL_DRIF3_0) FM(SEL_DRIF3_1)
  442. #define MOD_SEL0_10 FM(SEL_DRIF2_0) FM(SEL_DRIF2_1)
  443. #define MOD_SEL0_9_8 FM(SEL_DRIF1_0) FM(SEL_DRIF1_1) FM(SEL_DRIF1_2) F_(0, 0)
  444. #define MOD_SEL0_7_6 FM(SEL_DRIF0_0) FM(SEL_DRIF0_1) FM(SEL_DRIF0_2) F_(0, 0)
  445. #define MOD_SEL0_5 FM(SEL_CANFD0_0) FM(SEL_CANFD0_1)
  446. #define MOD_SEL0_4_3 FM(SEL_ADG_A_0) FM(SEL_ADG_A_1) FM(SEL_ADG_A_2) FM(SEL_ADG_A_3)
  447. /* MOD_SEL1 */ /* 0 */ /* 1 */ /* 2 */ /* 3 */ /* 4 */ /* 5 */ /* 6 */ /* 7 */
  448. #define MOD_SEL1_31_30 FM(SEL_TSIF1_0) FM(SEL_TSIF1_1) FM(SEL_TSIF1_2) FM(SEL_TSIF1_3)
  449. #define MOD_SEL1_29_28_27 FM(SEL_TSIF0_0) FM(SEL_TSIF0_1) FM(SEL_TSIF0_2) FM(SEL_TSIF0_3) FM(SEL_TSIF0_4) F_(0, 0) F_(0, 0) F_(0, 0)
  450. #define MOD_SEL1_26 FM(SEL_TIMER_TMU1_0) FM(SEL_TIMER_TMU1_1)
  451. #define MOD_SEL1_25_24 FM(SEL_SSP1_1_0) FM(SEL_SSP1_1_1) FM(SEL_SSP1_1_2) FM(SEL_SSP1_1_3)
  452. #define MOD_SEL1_23_22_21 FM(SEL_SSP1_0_0) FM(SEL_SSP1_0_1) FM(SEL_SSP1_0_2) FM(SEL_SSP1_0_3) FM(SEL_SSP1_0_4) F_(0, 0) F_(0, 0) F_(0, 0)
  453. #define MOD_SEL1_20 FM(SEL_SSI1_0) FM(SEL_SSI1_1)
  454. #define MOD_SEL1_19 FM(SEL_SPEED_PULSE_0) FM(SEL_SPEED_PULSE_1)
  455. #define MOD_SEL1_18_17 FM(SEL_SIMCARD_0) FM(SEL_SIMCARD_1) FM(SEL_SIMCARD_2) FM(SEL_SIMCARD_3)
  456. #define MOD_SEL1_16 FM(SEL_SDHI2_0) FM(SEL_SDHI2_1)
  457. #define MOD_SEL1_15_14 FM(SEL_SCIF4_0) FM(SEL_SCIF4_1) FM(SEL_SCIF4_2) F_(0, 0)
  458. #define MOD_SEL1_13 FM(SEL_SCIF3_0) FM(SEL_SCIF3_1)
  459. #define MOD_SEL1_12 FM(SEL_SCIF2_0) FM(SEL_SCIF2_1)
  460. #define MOD_SEL1_11 FM(SEL_SCIF1_0) FM(SEL_SCIF1_1)
  461. #define MOD_SEL1_10 FM(SEL_SCIF_0) FM(SEL_SCIF_1)
  462. #define MOD_SEL1_9 FM(SEL_REMOCON_0) FM(SEL_REMOCON_1)
  463. #define MOD_SEL1_6 FM(SEL_RCAN0_0) FM(SEL_RCAN0_1)
  464. #define MOD_SEL1_5 FM(SEL_PWM6_0) FM(SEL_PWM6_1)
  465. #define MOD_SEL1_4 FM(SEL_PWM5_0) FM(SEL_PWM5_1)
  466. #define MOD_SEL1_3 FM(SEL_PWM4_0) FM(SEL_PWM4_1)
  467. #define MOD_SEL1_2 FM(SEL_PWM3_0) FM(SEL_PWM3_1)
  468. #define MOD_SEL1_1 FM(SEL_PWM2_0) FM(SEL_PWM2_1)
  469. #define MOD_SEL1_0 FM(SEL_PWM1_0) FM(SEL_PWM1_1)
  470. /* MOD_SEL2 */ /* 0 */ /* 1 */ /* 2 */ /* 3 */
  471. #define MOD_SEL2_31 FM(I2C_SEL_5_0) FM(I2C_SEL_5_1)
  472. #define MOD_SEL2_30 FM(I2C_SEL_3_0) FM(I2C_SEL_3_1)
  473. #define MOD_SEL2_29 FM(I2C_SEL_0_0) FM(I2C_SEL_0_1)
  474. #define MOD_SEL2_28_27 FM(SEL_FM_0) FM(SEL_FM_1) FM(SEL_FM_2) FM(SEL_FM_3)
  475. #define MOD_SEL2_26 FM(SEL_SCIF5_0) FM(SEL_SCIF5_1)
  476. #define MOD_SEL2_25_24_23 FM(SEL_I2C6_0) FM(SEL_I2C6_1) FM(SEL_I2C6_2) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  477. #define MOD_SEL2_21 FM(SEL_SSI2_0) FM(SEL_SSI2_1)
  478. #define MOD_SEL2_20 FM(SEL_SSI9_0) FM(SEL_SSI9_1)
  479. #define MOD_SEL2_19 FM(SEL_TIMER_TMU2_0) FM(SEL_TIMER_TMU2_1)
  480. #define MOD_SEL2_18 FM(SEL_ADG_B_0) FM(SEL_ADG_B_1)
  481. #define MOD_SEL2_17 FM(SEL_ADG_C_0) FM(SEL_ADG_C_1)
  482. #define MOD_SEL2_0 FM(SEL_VIN4_0) FM(SEL_VIN4_1)
  483. #define PINMUX_MOD_SELS \
  484. \
  485. MOD_SEL0_31_30_29 MOD_SEL1_31_30 MOD_SEL2_31 \
  486. MOD_SEL2_30 \
  487. MOD_SEL1_29_28_27 MOD_SEL2_29 \
  488. MOD_SEL0_28_27 MOD_SEL2_28_27 \
  489. MOD_SEL0_26_25_24 MOD_SEL1_26 MOD_SEL2_26 \
  490. MOD_SEL1_25_24 MOD_SEL2_25_24_23 \
  491. MOD_SEL0_23 MOD_SEL1_23_22_21 \
  492. MOD_SEL0_22 \
  493. MOD_SEL0_21 MOD_SEL2_21 \
  494. MOD_SEL0_20 MOD_SEL1_20 MOD_SEL2_20 \
  495. MOD_SEL0_19 MOD_SEL1_19 MOD_SEL2_19 \
  496. MOD_SEL0_18_17 MOD_SEL1_18_17 MOD_SEL2_18 \
  497. MOD_SEL2_17 \
  498. MOD_SEL0_16 MOD_SEL1_16 \
  499. MOD_SEL1_15_14 \
  500. MOD_SEL0_14_13 \
  501. MOD_SEL1_13 \
  502. MOD_SEL0_12 MOD_SEL1_12 \
  503. MOD_SEL0_11 MOD_SEL1_11 \
  504. MOD_SEL0_10 MOD_SEL1_10 \
  505. MOD_SEL0_9_8 MOD_SEL1_9 \
  506. MOD_SEL0_7_6 \
  507. MOD_SEL1_6 \
  508. MOD_SEL0_5 MOD_SEL1_5 \
  509. MOD_SEL0_4_3 MOD_SEL1_4 \
  510. MOD_SEL1_3 \
  511. MOD_SEL1_2 \
  512. MOD_SEL1_1 \
  513. MOD_SEL1_0 MOD_SEL2_0
  514. /*
  515. * These pins are not able to be muxed but have other properties
  516. * that can be set, such as drive-strength or pull-up/pull-down enable.
  517. */
  518. #define PINMUX_STATIC \
  519. FM(QSPI0_SPCLK) FM(QSPI0_SSL) FM(QSPI0_MOSI_IO0) FM(QSPI0_MISO_IO1) \
  520. FM(QSPI0_IO2) FM(QSPI0_IO3) \
  521. FM(QSPI1_SPCLK) FM(QSPI1_SSL) FM(QSPI1_MOSI_IO0) FM(QSPI1_MISO_IO1) \
  522. FM(QSPI1_IO2) FM(QSPI1_IO3) \
  523. FM(RPC_INT) FM(RPC_WP) FM(RPC_RESET) \
  524. FM(AVB_TX_CTL) FM(AVB_TXC) FM(AVB_TD0) FM(AVB_TD1) FM(AVB_TD2) FM(AVB_TD3) \
  525. FM(AVB_RX_CTL) FM(AVB_RXC) FM(AVB_RD0) FM(AVB_RD1) FM(AVB_RD2) FM(AVB_RD3) \
  526. FM(AVB_TXCREFCLK) FM(AVB_MDIO) \
  527. FM(PRESETOUT) \
  528. FM(DU_DOTCLKIN0) FM(DU_DOTCLKIN1) FM(DU_DOTCLKIN2) FM(DU_DOTCLKIN3) \
  529. FM(TMS) FM(TDO) FM(ASEBRK) FM(MLB_REF) FM(TDI) FM(TCK) FM(TRST) FM(EXTALR)
  530. enum {
  531. PINMUX_RESERVED = 0,
  532. PINMUX_DATA_BEGIN,
  533. GP_ALL(DATA),
  534. PINMUX_DATA_END,
  535. #define F_(x, y)
  536. #define FM(x) FN_##x,
  537. PINMUX_FUNCTION_BEGIN,
  538. GP_ALL(FN),
  539. PINMUX_GPSR
  540. PINMUX_IPSR
  541. PINMUX_MOD_SELS
  542. PINMUX_FUNCTION_END,
  543. #undef F_
  544. #undef FM
  545. #define F_(x, y)
  546. #define FM(x) x##_MARK,
  547. PINMUX_MARK_BEGIN,
  548. PINMUX_GPSR
  549. PINMUX_IPSR
  550. PINMUX_MOD_SELS
  551. PINMUX_STATIC
  552. PINMUX_MARK_END,
  553. #undef F_
  554. #undef FM
  555. };
  556. static const u16 pinmux_data[] = {
  557. PINMUX_DATA_GP_ALL(),
  558. PINMUX_SINGLE(AVS1),
  559. PINMUX_SINGLE(AVS2),
  560. PINMUX_SINGLE(CLKOUT),
  561. PINMUX_SINGLE(HDMI0_CEC),
  562. PINMUX_SINGLE(HDMI1_CEC),
  563. PINMUX_SINGLE(I2C_SEL_0_1),
  564. PINMUX_SINGLE(I2C_SEL_3_1),
  565. PINMUX_SINGLE(I2C_SEL_5_1),
  566. PINMUX_SINGLE(MSIOF0_RXD),
  567. PINMUX_SINGLE(MSIOF0_SCK),
  568. PINMUX_SINGLE(MSIOF0_TXD),
  569. PINMUX_SINGLE(SSI_SCK5),
  570. PINMUX_SINGLE(SSI_SDATA5),
  571. PINMUX_SINGLE(SSI_WS5),
  572. /* IPSR0 */
  573. PINMUX_IPSR_GPSR(IP0_3_0, AVB_MDC),
  574. PINMUX_IPSR_MSEL(IP0_3_0, MSIOF2_SS2_C, SEL_MSIOF2_2),
  575. PINMUX_IPSR_GPSR(IP0_7_4, AVB_MAGIC),
  576. PINMUX_IPSR_MSEL(IP0_7_4, MSIOF2_SS1_C, SEL_MSIOF2_2),
  577. PINMUX_IPSR_MSEL(IP0_7_4, SCK4_A, SEL_SCIF4_0),
  578. PINMUX_IPSR_GPSR(IP0_11_8, AVB_PHY_INT),
  579. PINMUX_IPSR_MSEL(IP0_11_8, MSIOF2_SYNC_C, SEL_MSIOF2_2),
  580. PINMUX_IPSR_MSEL(IP0_11_8, RX4_A, SEL_SCIF4_0),
  581. PINMUX_IPSR_GPSR(IP0_15_12, AVB_LINK),
  582. PINMUX_IPSR_MSEL(IP0_15_12, MSIOF2_SCK_C, SEL_MSIOF2_2),
  583. PINMUX_IPSR_MSEL(IP0_15_12, TX4_A, SEL_SCIF4_0),
  584. PINMUX_IPSR_MSEL(IP0_19_16, AVB_AVTP_MATCH_A, SEL_ETHERAVB_0),
  585. PINMUX_IPSR_MSEL(IP0_19_16, MSIOF2_RXD_C, SEL_MSIOF2_2),
  586. PINMUX_IPSR_MSEL(IP0_19_16, CTS4_N_A, SEL_SCIF4_0),
  587. PINMUX_IPSR_GPSR(IP0_19_16, FSCLKST2_N_A),
  588. PINMUX_IPSR_MSEL(IP0_23_20, AVB_AVTP_CAPTURE_A, SEL_ETHERAVB_0),
  589. PINMUX_IPSR_MSEL(IP0_23_20, MSIOF2_TXD_C, SEL_MSIOF2_2),
  590. PINMUX_IPSR_MSEL(IP0_23_20, RTS4_N_A, SEL_SCIF4_0),
  591. PINMUX_IPSR_GPSR(IP0_27_24, IRQ0),
  592. PINMUX_IPSR_GPSR(IP0_27_24, QPOLB),
  593. PINMUX_IPSR_GPSR(IP0_27_24, DU_CDE),
  594. PINMUX_IPSR_MSEL(IP0_27_24, VI4_DATA0_B, SEL_VIN4_1),
  595. PINMUX_IPSR_MSEL(IP0_27_24, CAN0_TX_B, SEL_RCAN0_1),
  596. PINMUX_IPSR_MSEL(IP0_27_24, CANFD0_TX_B, SEL_CANFD0_1),
  597. PINMUX_IPSR_MSEL(IP0_27_24, MSIOF3_SS2_E, SEL_MSIOF3_4),
  598. PINMUX_IPSR_GPSR(IP0_31_28, IRQ1),
  599. PINMUX_IPSR_GPSR(IP0_31_28, QPOLA),
  600. PINMUX_IPSR_GPSR(IP0_31_28, DU_DISP),
  601. PINMUX_IPSR_MSEL(IP0_31_28, VI4_DATA1_B, SEL_VIN4_1),
  602. PINMUX_IPSR_MSEL(IP0_31_28, CAN0_RX_B, SEL_RCAN0_1),
  603. PINMUX_IPSR_MSEL(IP0_31_28, CANFD0_RX_B, SEL_CANFD0_1),
  604. PINMUX_IPSR_MSEL(IP0_31_28, MSIOF3_SS1_E, SEL_MSIOF3_4),
  605. /* IPSR1 */
  606. PINMUX_IPSR_GPSR(IP1_3_0, IRQ2),
  607. PINMUX_IPSR_GPSR(IP1_3_0, QCPV_QDE),
  608. PINMUX_IPSR_GPSR(IP1_3_0, DU_EXODDF_DU_ODDF_DISP_CDE),
  609. PINMUX_IPSR_MSEL(IP1_3_0, VI4_DATA2_B, SEL_VIN4_1),
  610. PINMUX_IPSR_MSEL(IP1_3_0, PWM3_B, SEL_PWM3_1),
  611. PINMUX_IPSR_MSEL(IP1_3_0, MSIOF3_SYNC_E, SEL_MSIOF3_4),
  612. PINMUX_IPSR_GPSR(IP1_7_4, IRQ3),
  613. PINMUX_IPSR_GPSR(IP1_7_4, QSTVB_QVE),
  614. PINMUX_IPSR_GPSR(IP1_7_4, DU_DOTCLKOUT1),
  615. PINMUX_IPSR_MSEL(IP1_7_4, VI4_DATA3_B, SEL_VIN4_1),
  616. PINMUX_IPSR_MSEL(IP1_7_4, PWM4_B, SEL_PWM4_1),
  617. PINMUX_IPSR_MSEL(IP1_7_4, MSIOF3_SCK_E, SEL_MSIOF3_4),
  618. PINMUX_IPSR_GPSR(IP1_11_8, IRQ4),
  619. PINMUX_IPSR_GPSR(IP1_11_8, QSTH_QHS),
  620. PINMUX_IPSR_GPSR(IP1_11_8, DU_EXHSYNC_DU_HSYNC),
  621. PINMUX_IPSR_MSEL(IP1_11_8, VI4_DATA4_B, SEL_VIN4_1),
  622. PINMUX_IPSR_MSEL(IP1_11_8, PWM5_B, SEL_PWM5_1),
  623. PINMUX_IPSR_MSEL(IP1_11_8, MSIOF3_RXD_E, SEL_MSIOF3_4),
  624. PINMUX_IPSR_GPSR(IP1_15_12, IRQ5),
  625. PINMUX_IPSR_GPSR(IP1_15_12, QSTB_QHE),
  626. PINMUX_IPSR_GPSR(IP1_15_12, DU_EXVSYNC_DU_VSYNC),
  627. PINMUX_IPSR_MSEL(IP1_15_12, VI4_DATA5_B, SEL_VIN4_1),
  628. PINMUX_IPSR_MSEL(IP1_15_12, PWM6_B, SEL_PWM6_1),
  629. PINMUX_IPSR_GPSR(IP1_15_12, FSCLKST2_N_B),
  630. PINMUX_IPSR_MSEL(IP1_15_12, MSIOF3_TXD_E, SEL_MSIOF3_4),
  631. PINMUX_IPSR_GPSR(IP1_19_16, PWM0),
  632. PINMUX_IPSR_GPSR(IP1_19_16, AVB_AVTP_PPS),
  633. PINMUX_IPSR_MSEL(IP1_19_16, VI4_DATA6_B, SEL_VIN4_1),
  634. PINMUX_IPSR_MSEL(IP1_19_16, IECLK_B, SEL_IEBUS_1),
  635. PINMUX_IPSR_MSEL(IP1_23_20, PWM1_A, SEL_PWM1_0),
  636. PINMUX_IPSR_MSEL(IP1_23_20, HRX3_D, SEL_HSCIF3_3),
  637. PINMUX_IPSR_MSEL(IP1_23_20, VI4_DATA7_B, SEL_VIN4_1),
  638. PINMUX_IPSR_MSEL(IP1_23_20, IERX_B, SEL_IEBUS_1),
  639. PINMUX_IPSR_MSEL(IP1_27_24, PWM2_A, SEL_PWM2_0),
  640. PINMUX_IPSR_MSEL(IP1_27_24, HTX3_D, SEL_HSCIF3_3),
  641. PINMUX_IPSR_MSEL(IP1_27_24, IETX_B, SEL_IEBUS_1),
  642. PINMUX_IPSR_GPSR(IP1_31_28, A0),
  643. PINMUX_IPSR_GPSR(IP1_31_28, LCDOUT16),
  644. PINMUX_IPSR_MSEL(IP1_31_28, MSIOF3_SYNC_B, SEL_MSIOF3_1),
  645. PINMUX_IPSR_GPSR(IP1_31_28, VI4_DATA8),
  646. PINMUX_IPSR_GPSR(IP1_31_28, DU_DB0),
  647. PINMUX_IPSR_MSEL(IP1_31_28, PWM3_A, SEL_PWM3_0),
  648. /* IPSR2 */
  649. PINMUX_IPSR_GPSR(IP2_3_0, A1),
  650. PINMUX_IPSR_GPSR(IP2_3_0, LCDOUT17),
  651. PINMUX_IPSR_MSEL(IP2_3_0, MSIOF3_TXD_B, SEL_MSIOF3_1),
  652. PINMUX_IPSR_GPSR(IP2_3_0, VI4_DATA9),
  653. PINMUX_IPSR_GPSR(IP2_3_0, DU_DB1),
  654. PINMUX_IPSR_MSEL(IP2_3_0, PWM4_A, SEL_PWM4_0),
  655. PINMUX_IPSR_GPSR(IP2_7_4, A2),
  656. PINMUX_IPSR_GPSR(IP2_7_4, LCDOUT18),
  657. PINMUX_IPSR_MSEL(IP2_7_4, MSIOF3_SCK_B, SEL_MSIOF3_1),
  658. PINMUX_IPSR_GPSR(IP2_7_4, VI4_DATA10),
  659. PINMUX_IPSR_GPSR(IP2_7_4, DU_DB2),
  660. PINMUX_IPSR_MSEL(IP2_7_4, PWM5_A, SEL_PWM5_0),
  661. PINMUX_IPSR_GPSR(IP2_11_8, A3),
  662. PINMUX_IPSR_GPSR(IP2_11_8, LCDOUT19),
  663. PINMUX_IPSR_MSEL(IP2_11_8, MSIOF3_RXD_B, SEL_MSIOF3_1),
  664. PINMUX_IPSR_GPSR(IP2_11_8, VI4_DATA11),
  665. PINMUX_IPSR_GPSR(IP2_11_8, DU_DB3),
  666. PINMUX_IPSR_MSEL(IP2_11_8, PWM6_A, SEL_PWM6_0),
  667. PINMUX_IPSR_GPSR(IP2_15_12, A4),
  668. PINMUX_IPSR_GPSR(IP2_15_12, LCDOUT20),
  669. PINMUX_IPSR_MSEL(IP2_15_12, MSIOF3_SS1_B, SEL_MSIOF3_1),
  670. PINMUX_IPSR_GPSR(IP2_15_12, VI4_DATA12),
  671. PINMUX_IPSR_GPSR(IP2_15_12, VI5_DATA12),
  672. PINMUX_IPSR_GPSR(IP2_15_12, DU_DB4),
  673. PINMUX_IPSR_GPSR(IP2_19_16, A5),
  674. PINMUX_IPSR_GPSR(IP2_19_16, LCDOUT21),
  675. PINMUX_IPSR_MSEL(IP2_19_16, MSIOF3_SS2_B, SEL_MSIOF3_1),
  676. PINMUX_IPSR_MSEL(IP2_19_16, SCK4_B, SEL_SCIF4_1),
  677. PINMUX_IPSR_GPSR(IP2_19_16, VI4_DATA13),
  678. PINMUX_IPSR_GPSR(IP2_19_16, VI5_DATA13),
  679. PINMUX_IPSR_GPSR(IP2_19_16, DU_DB5),
  680. PINMUX_IPSR_GPSR(IP2_23_20, A6),
  681. PINMUX_IPSR_GPSR(IP2_23_20, LCDOUT22),
  682. PINMUX_IPSR_MSEL(IP2_23_20, MSIOF2_SS1_A, SEL_MSIOF2_0),
  683. PINMUX_IPSR_MSEL(IP2_23_20, RX4_B, SEL_SCIF4_1),
  684. PINMUX_IPSR_GPSR(IP2_23_20, VI4_DATA14),
  685. PINMUX_IPSR_GPSR(IP2_23_20, VI5_DATA14),
  686. PINMUX_IPSR_GPSR(IP2_23_20, DU_DB6),
  687. PINMUX_IPSR_GPSR(IP2_27_24, A7),
  688. PINMUX_IPSR_GPSR(IP2_27_24, LCDOUT23),
  689. PINMUX_IPSR_MSEL(IP2_27_24, MSIOF2_SS2_A, SEL_MSIOF2_0),
  690. PINMUX_IPSR_MSEL(IP2_27_24, TX4_B, SEL_SCIF4_1),
  691. PINMUX_IPSR_GPSR(IP2_27_24, VI4_DATA15),
  692. PINMUX_IPSR_GPSR(IP2_27_24, VI5_DATA15),
  693. PINMUX_IPSR_GPSR(IP2_27_24, DU_DB7),
  694. PINMUX_IPSR_GPSR(IP2_31_28, A8),
  695. PINMUX_IPSR_MSEL(IP2_31_28, RX3_B, SEL_SCIF3_1),
  696. PINMUX_IPSR_MSEL(IP2_31_28, MSIOF2_SYNC_A, SEL_MSIOF2_0),
  697. PINMUX_IPSR_MSEL(IP2_31_28, HRX4_B, SEL_HSCIF4_1),
  698. PINMUX_IPSR_MSEL(IP2_31_28, SDA6_A, SEL_I2C6_0),
  699. PINMUX_IPSR_MSEL(IP2_31_28, AVB_AVTP_MATCH_B, SEL_ETHERAVB_1),
  700. PINMUX_IPSR_MSEL(IP2_31_28, PWM1_B, SEL_PWM1_1),
  701. /* IPSR3 */
  702. PINMUX_IPSR_GPSR(IP3_3_0, A9),
  703. PINMUX_IPSR_MSEL(IP3_3_0, MSIOF2_SCK_A, SEL_MSIOF2_0),
  704. PINMUX_IPSR_MSEL(IP3_3_0, CTS4_N_B, SEL_SCIF4_1),
  705. PINMUX_IPSR_GPSR(IP3_3_0, VI5_VSYNC_N),
  706. PINMUX_IPSR_GPSR(IP3_7_4, A10),
  707. PINMUX_IPSR_MSEL(IP3_7_4, MSIOF2_RXD_A, SEL_MSIOF2_0),
  708. PINMUX_IPSR_MSEL(IP3_7_4, RTS4_N_B, SEL_SCIF4_1),
  709. PINMUX_IPSR_GPSR(IP3_7_4, VI5_HSYNC_N),
  710. PINMUX_IPSR_GPSR(IP3_11_8, A11),
  711. PINMUX_IPSR_MSEL(IP3_11_8, TX3_B, SEL_SCIF3_1),
  712. PINMUX_IPSR_MSEL(IP3_11_8, MSIOF2_TXD_A, SEL_MSIOF2_0),
  713. PINMUX_IPSR_MSEL(IP3_11_8, HTX4_B, SEL_HSCIF4_1),
  714. PINMUX_IPSR_GPSR(IP3_11_8, HSCK4),
  715. PINMUX_IPSR_GPSR(IP3_11_8, VI5_FIELD),
  716. PINMUX_IPSR_MSEL(IP3_11_8, SCL6_A, SEL_I2C6_0),
  717. PINMUX_IPSR_MSEL(IP3_11_8, AVB_AVTP_CAPTURE_B, SEL_ETHERAVB_1),
  718. PINMUX_IPSR_MSEL(IP3_11_8, PWM2_B, SEL_PWM2_1),
  719. PINMUX_IPSR_GPSR(IP3_15_12, A12),
  720. PINMUX_IPSR_GPSR(IP3_15_12, LCDOUT12),
  721. PINMUX_IPSR_MSEL(IP3_15_12, MSIOF3_SCK_C, SEL_MSIOF3_2),
  722. PINMUX_IPSR_MSEL(IP3_15_12, HRX4_A, SEL_HSCIF4_0),
  723. PINMUX_IPSR_GPSR(IP3_15_12, VI5_DATA8),
  724. PINMUX_IPSR_GPSR(IP3_15_12, DU_DG4),
  725. PINMUX_IPSR_GPSR(IP3_19_16, A13),
  726. PINMUX_IPSR_GPSR(IP3_19_16, LCDOUT13),
  727. PINMUX_IPSR_MSEL(IP3_19_16, MSIOF3_SYNC_C, SEL_MSIOF3_2),
  728. PINMUX_IPSR_MSEL(IP3_19_16, HTX4_A, SEL_HSCIF4_0),
  729. PINMUX_IPSR_GPSR(IP3_19_16, VI5_DATA9),
  730. PINMUX_IPSR_GPSR(IP3_19_16, DU_DG5),
  731. PINMUX_IPSR_GPSR(IP3_23_20, A14),
  732. PINMUX_IPSR_GPSR(IP3_23_20, LCDOUT14),
  733. PINMUX_IPSR_MSEL(IP3_23_20, MSIOF3_RXD_C, SEL_MSIOF3_2),
  734. PINMUX_IPSR_GPSR(IP3_23_20, HCTS4_N),
  735. PINMUX_IPSR_GPSR(IP3_23_20, VI5_DATA10),
  736. PINMUX_IPSR_GPSR(IP3_23_20, DU_DG6),
  737. PINMUX_IPSR_GPSR(IP3_27_24, A15),
  738. PINMUX_IPSR_GPSR(IP3_27_24, LCDOUT15),
  739. PINMUX_IPSR_MSEL(IP3_27_24, MSIOF3_TXD_C, SEL_MSIOF3_2),
  740. PINMUX_IPSR_GPSR(IP3_27_24, HRTS4_N),
  741. PINMUX_IPSR_GPSR(IP3_27_24, VI5_DATA11),
  742. PINMUX_IPSR_GPSR(IP3_27_24, DU_DG7),
  743. PINMUX_IPSR_GPSR(IP3_31_28, A16),
  744. PINMUX_IPSR_GPSR(IP3_31_28, LCDOUT8),
  745. PINMUX_IPSR_GPSR(IP3_31_28, VI4_FIELD),
  746. PINMUX_IPSR_GPSR(IP3_31_28, DU_DG0),
  747. /* IPSR4 */
  748. PINMUX_IPSR_GPSR(IP4_3_0, A17),
  749. PINMUX_IPSR_GPSR(IP4_3_0, LCDOUT9),
  750. PINMUX_IPSR_GPSR(IP4_3_0, VI4_VSYNC_N),
  751. PINMUX_IPSR_GPSR(IP4_3_0, DU_DG1),
  752. PINMUX_IPSR_GPSR(IP4_7_4, A18),
  753. PINMUX_IPSR_GPSR(IP4_7_4, LCDOUT10),
  754. PINMUX_IPSR_GPSR(IP4_7_4, VI4_HSYNC_N),
  755. PINMUX_IPSR_GPSR(IP4_7_4, DU_DG2),
  756. PINMUX_IPSR_GPSR(IP4_11_8, A19),
  757. PINMUX_IPSR_GPSR(IP4_11_8, LCDOUT11),
  758. PINMUX_IPSR_GPSR(IP4_11_8, VI4_CLKENB),
  759. PINMUX_IPSR_GPSR(IP4_11_8, DU_DG3),
  760. PINMUX_IPSR_GPSR(IP4_15_12, CS0_N),
  761. PINMUX_IPSR_GPSR(IP4_15_12, VI5_CLKENB),
  762. PINMUX_IPSR_GPSR(IP4_19_16, CS1_N),
  763. PINMUX_IPSR_GPSR(IP4_19_16, VI5_CLK),
  764. PINMUX_IPSR_MSEL(IP4_19_16, EX_WAIT0_B, SEL_LBSC_1),
  765. PINMUX_IPSR_GPSR(IP4_23_20, BS_N),
  766. PINMUX_IPSR_GPSR(IP4_23_20, QSTVA_QVS),
  767. PINMUX_IPSR_MSEL(IP4_23_20, MSIOF3_SCK_D, SEL_MSIOF3_3),
  768. PINMUX_IPSR_GPSR(IP4_23_20, SCK3),
  769. PINMUX_IPSR_GPSR(IP4_23_20, HSCK3),
  770. PINMUX_IPSR_GPSR(IP4_23_20, CAN1_TX),
  771. PINMUX_IPSR_GPSR(IP4_23_20, CANFD1_TX),
  772. PINMUX_IPSR_MSEL(IP4_23_20, IETX_A, SEL_IEBUS_0),
  773. PINMUX_IPSR_GPSR(IP4_27_24, RD_N),
  774. PINMUX_IPSR_MSEL(IP4_27_24, MSIOF3_SYNC_D, SEL_MSIOF3_3),
  775. PINMUX_IPSR_MSEL(IP4_27_24, RX3_A, SEL_SCIF3_0),
  776. PINMUX_IPSR_MSEL(IP4_27_24, HRX3_A, SEL_HSCIF3_0),
  777. PINMUX_IPSR_MSEL(IP4_27_24, CAN0_TX_A, SEL_RCAN0_0),
  778. PINMUX_IPSR_MSEL(IP4_27_24, CANFD0_TX_A, SEL_CANFD0_0),
  779. PINMUX_IPSR_GPSR(IP4_31_28, RD_WR_N),
  780. PINMUX_IPSR_MSEL(IP4_31_28, MSIOF3_RXD_D, SEL_MSIOF3_3),
  781. PINMUX_IPSR_MSEL(IP4_31_28, TX3_A, SEL_SCIF3_0),
  782. PINMUX_IPSR_MSEL(IP4_31_28, HTX3_A, SEL_HSCIF3_0),
  783. PINMUX_IPSR_MSEL(IP4_31_28, CAN0_RX_A, SEL_RCAN0_0),
  784. PINMUX_IPSR_MSEL(IP4_31_28, CANFD0_RX_A, SEL_CANFD0_0),
  785. /* IPSR5 */
  786. PINMUX_IPSR_GPSR(IP5_3_0, WE0_N),
  787. PINMUX_IPSR_MSEL(IP5_3_0, MSIOF3_TXD_D, SEL_MSIOF3_3),
  788. PINMUX_IPSR_GPSR(IP5_3_0, CTS3_N),
  789. PINMUX_IPSR_GPSR(IP5_3_0, HCTS3_N),
  790. PINMUX_IPSR_MSEL(IP5_3_0, SCL6_B, SEL_I2C6_1),
  791. PINMUX_IPSR_GPSR(IP5_3_0, CAN_CLK),
  792. PINMUX_IPSR_MSEL(IP5_3_0, IECLK_A, SEL_IEBUS_0),
  793. PINMUX_IPSR_GPSR(IP5_7_4, WE1_N),
  794. PINMUX_IPSR_MSEL(IP5_7_4, MSIOF3_SS1_D, SEL_MSIOF3_3),
  795. PINMUX_IPSR_GPSR(IP5_7_4, RTS3_N),
  796. PINMUX_IPSR_GPSR(IP5_7_4, HRTS3_N),
  797. PINMUX_IPSR_MSEL(IP5_7_4, SDA6_B, SEL_I2C6_1),
  798. PINMUX_IPSR_GPSR(IP5_7_4, CAN1_RX),
  799. PINMUX_IPSR_GPSR(IP5_7_4, CANFD1_RX),
  800. PINMUX_IPSR_MSEL(IP5_7_4, IERX_A, SEL_IEBUS_0),
  801. PINMUX_IPSR_MSEL(IP5_11_8, EX_WAIT0_A, SEL_LBSC_0),
  802. PINMUX_IPSR_GPSR(IP5_11_8, QCLK),
  803. PINMUX_IPSR_GPSR(IP5_11_8, VI4_CLK),
  804. PINMUX_IPSR_GPSR(IP5_11_8, DU_DOTCLKOUT0),
  805. PINMUX_IPSR_GPSR(IP5_15_12, D0),
  806. PINMUX_IPSR_MSEL(IP5_15_12, MSIOF2_SS1_B, SEL_MSIOF2_1),
  807. PINMUX_IPSR_MSEL(IP5_15_12, MSIOF3_SCK_A, SEL_MSIOF3_0),
  808. PINMUX_IPSR_GPSR(IP5_15_12, VI4_DATA16),
  809. PINMUX_IPSR_GPSR(IP5_15_12, VI5_DATA0),
  810. PINMUX_IPSR_GPSR(IP5_19_16, D1),
  811. PINMUX_IPSR_MSEL(IP5_19_16, MSIOF2_SS2_B, SEL_MSIOF2_1),
  812. PINMUX_IPSR_MSEL(IP5_19_16, MSIOF3_SYNC_A, SEL_MSIOF3_0),
  813. PINMUX_IPSR_GPSR(IP5_19_16, VI4_DATA17),
  814. PINMUX_IPSR_GPSR(IP5_19_16, VI5_DATA1),
  815. PINMUX_IPSR_GPSR(IP5_23_20, D2),
  816. PINMUX_IPSR_MSEL(IP5_23_20, MSIOF3_RXD_A, SEL_MSIOF3_0),
  817. PINMUX_IPSR_GPSR(IP5_23_20, VI4_DATA18),
  818. PINMUX_IPSR_GPSR(IP5_23_20, VI5_DATA2),
  819. PINMUX_IPSR_GPSR(IP5_27_24, D3),
  820. PINMUX_IPSR_MSEL(IP5_27_24, MSIOF3_TXD_A, SEL_MSIOF3_0),
  821. PINMUX_IPSR_GPSR(IP5_27_24, VI4_DATA19),
  822. PINMUX_IPSR_GPSR(IP5_27_24, VI5_DATA3),
  823. PINMUX_IPSR_GPSR(IP5_31_28, D4),
  824. PINMUX_IPSR_MSEL(IP5_31_28, MSIOF2_SCK_B, SEL_MSIOF2_1),
  825. PINMUX_IPSR_GPSR(IP5_31_28, VI4_DATA20),
  826. PINMUX_IPSR_GPSR(IP5_31_28, VI5_DATA4),
  827. /* IPSR6 */
  828. PINMUX_IPSR_GPSR(IP6_3_0, D5),
  829. PINMUX_IPSR_MSEL(IP6_3_0, MSIOF2_SYNC_B, SEL_MSIOF2_1),
  830. PINMUX_IPSR_GPSR(IP6_3_0, VI4_DATA21),
  831. PINMUX_IPSR_GPSR(IP6_3_0, VI5_DATA5),
  832. PINMUX_IPSR_GPSR(IP6_7_4, D6),
  833. PINMUX_IPSR_MSEL(IP6_7_4, MSIOF2_RXD_B, SEL_MSIOF2_1),
  834. PINMUX_IPSR_GPSR(IP6_7_4, VI4_DATA22),
  835. PINMUX_IPSR_GPSR(IP6_7_4, VI5_DATA6),
  836. PINMUX_IPSR_GPSR(IP6_11_8, D7),
  837. PINMUX_IPSR_MSEL(IP6_11_8, MSIOF2_TXD_B, SEL_MSIOF2_1),
  838. PINMUX_IPSR_GPSR(IP6_11_8, VI4_DATA23),
  839. PINMUX_IPSR_GPSR(IP6_11_8, VI5_DATA7),
  840. PINMUX_IPSR_GPSR(IP6_15_12, D8),
  841. PINMUX_IPSR_GPSR(IP6_15_12, LCDOUT0),
  842. PINMUX_IPSR_MSEL(IP6_15_12, MSIOF2_SCK_D, SEL_MSIOF2_3),
  843. PINMUX_IPSR_MSEL(IP6_15_12, SCK4_C, SEL_SCIF4_2),
  844. PINMUX_IPSR_MSEL(IP6_15_12, VI4_DATA0_A, SEL_VIN4_0),
  845. PINMUX_IPSR_GPSR(IP6_15_12, DU_DR0),
  846. PINMUX_IPSR_GPSR(IP6_19_16, D9),
  847. PINMUX_IPSR_GPSR(IP6_19_16, LCDOUT1),
  848. PINMUX_IPSR_MSEL(IP6_19_16, MSIOF2_SYNC_D, SEL_MSIOF2_3),
  849. PINMUX_IPSR_MSEL(IP6_19_16, VI4_DATA1_A, SEL_VIN4_0),
  850. PINMUX_IPSR_GPSR(IP6_19_16, DU_DR1),
  851. PINMUX_IPSR_GPSR(IP6_23_20, D10),
  852. PINMUX_IPSR_GPSR(IP6_23_20, LCDOUT2),
  853. PINMUX_IPSR_MSEL(IP6_23_20, MSIOF2_RXD_D, SEL_MSIOF2_3),
  854. PINMUX_IPSR_MSEL(IP6_23_20, HRX3_B, SEL_HSCIF3_1),
  855. PINMUX_IPSR_MSEL(IP6_23_20, VI4_DATA2_A, SEL_VIN4_0),
  856. PINMUX_IPSR_MSEL(IP6_23_20, CTS4_N_C, SEL_SCIF4_2),
  857. PINMUX_IPSR_GPSR(IP6_23_20, DU_DR2),
  858. PINMUX_IPSR_GPSR(IP6_27_24, D11),
  859. PINMUX_IPSR_GPSR(IP6_27_24, LCDOUT3),
  860. PINMUX_IPSR_MSEL(IP6_27_24, MSIOF2_TXD_D, SEL_MSIOF2_3),
  861. PINMUX_IPSR_MSEL(IP6_27_24, HTX3_B, SEL_HSCIF3_1),
  862. PINMUX_IPSR_MSEL(IP6_27_24, VI4_DATA3_A, SEL_VIN4_0),
  863. PINMUX_IPSR_MSEL(IP6_27_24, RTS4_N_C, SEL_SCIF4_2),
  864. PINMUX_IPSR_GPSR(IP6_27_24, DU_DR3),
  865. PINMUX_IPSR_GPSR(IP6_31_28, D12),
  866. PINMUX_IPSR_GPSR(IP6_31_28, LCDOUT4),
  867. PINMUX_IPSR_MSEL(IP6_31_28, MSIOF2_SS1_D, SEL_MSIOF2_3),
  868. PINMUX_IPSR_MSEL(IP6_31_28, RX4_C, SEL_SCIF4_2),
  869. PINMUX_IPSR_MSEL(IP6_31_28, VI4_DATA4_A, SEL_VIN4_0),
  870. PINMUX_IPSR_GPSR(IP6_31_28, DU_DR4),
  871. /* IPSR7 */
  872. PINMUX_IPSR_GPSR(IP7_3_0, D13),
  873. PINMUX_IPSR_GPSR(IP7_3_0, LCDOUT5),
  874. PINMUX_IPSR_MSEL(IP7_3_0, MSIOF2_SS2_D, SEL_MSIOF2_3),
  875. PINMUX_IPSR_MSEL(IP7_3_0, TX4_C, SEL_SCIF4_2),
  876. PINMUX_IPSR_MSEL(IP7_3_0, VI4_DATA5_A, SEL_VIN4_0),
  877. PINMUX_IPSR_GPSR(IP7_3_0, DU_DR5),
  878. PINMUX_IPSR_GPSR(IP7_7_4, D14),
  879. PINMUX_IPSR_GPSR(IP7_7_4, LCDOUT6),
  880. PINMUX_IPSR_MSEL(IP7_7_4, MSIOF3_SS1_A, SEL_MSIOF3_0),
  881. PINMUX_IPSR_MSEL(IP7_7_4, HRX3_C, SEL_HSCIF3_2),
  882. PINMUX_IPSR_MSEL(IP7_7_4, VI4_DATA6_A, SEL_VIN4_0),
  883. PINMUX_IPSR_GPSR(IP7_7_4, DU_DR6),
  884. PINMUX_IPSR_MSEL(IP7_7_4, SCL6_C, SEL_I2C6_2),
  885. PINMUX_IPSR_GPSR(IP7_11_8, D15),
  886. PINMUX_IPSR_GPSR(IP7_11_8, LCDOUT7),
  887. PINMUX_IPSR_MSEL(IP7_11_8, MSIOF3_SS2_A, SEL_MSIOF3_0),
  888. PINMUX_IPSR_MSEL(IP7_11_8, HTX3_C, SEL_HSCIF3_2),
  889. PINMUX_IPSR_MSEL(IP7_11_8, VI4_DATA7_A, SEL_VIN4_0),
  890. PINMUX_IPSR_GPSR(IP7_11_8, DU_DR7),
  891. PINMUX_IPSR_MSEL(IP7_11_8, SDA6_C, SEL_I2C6_2),
  892. PINMUX_IPSR_GPSR(IP7_19_16, SD0_CLK),
  893. PINMUX_IPSR_MSEL(IP7_19_16, MSIOF1_SCK_E, SEL_MSIOF1_4),
  894. PINMUX_IPSR_MSEL(IP7_19_16, STP_OPWM_0_B, SEL_SSP1_0_1),
  895. PINMUX_IPSR_GPSR(IP7_23_20, SD0_CMD),
  896. PINMUX_IPSR_MSEL(IP7_23_20, MSIOF1_SYNC_E, SEL_MSIOF1_4),
  897. PINMUX_IPSR_MSEL(IP7_23_20, STP_IVCXO27_0_B, SEL_SSP1_0_1),
  898. PINMUX_IPSR_GPSR(IP7_27_24, SD0_DAT0),
  899. PINMUX_IPSR_MSEL(IP7_27_24, MSIOF1_RXD_E, SEL_MSIOF1_4),
  900. PINMUX_IPSR_MSEL(IP7_27_24, TS_SCK0_B, SEL_TSIF0_1),
  901. PINMUX_IPSR_MSEL(IP7_27_24, STP_ISCLK_0_B, SEL_SSP1_0_1),
  902. PINMUX_IPSR_GPSR(IP7_31_28, SD0_DAT1),
  903. PINMUX_IPSR_MSEL(IP7_31_28, MSIOF1_TXD_E, SEL_MSIOF1_4),
  904. PINMUX_IPSR_MSEL(IP7_31_28, TS_SPSYNC0_B, SEL_TSIF0_1),
  905. PINMUX_IPSR_MSEL(IP7_31_28, STP_ISSYNC_0_B, SEL_SSP1_0_1),
  906. /* IPSR8 */
  907. PINMUX_IPSR_GPSR(IP8_3_0, SD0_DAT2),
  908. PINMUX_IPSR_MSEL(IP8_3_0, MSIOF1_SS1_E, SEL_MSIOF1_4),
  909. PINMUX_IPSR_MSEL(IP8_3_0, TS_SDAT0_B, SEL_TSIF0_1),
  910. PINMUX_IPSR_MSEL(IP8_3_0, STP_ISD_0_B, SEL_SSP1_0_1),
  911. PINMUX_IPSR_GPSR(IP8_7_4, SD0_DAT3),
  912. PINMUX_IPSR_MSEL(IP8_7_4, MSIOF1_SS2_E, SEL_MSIOF1_4),
  913. PINMUX_IPSR_MSEL(IP8_7_4, TS_SDEN0_B, SEL_TSIF0_1),
  914. PINMUX_IPSR_MSEL(IP8_7_4, STP_ISEN_0_B, SEL_SSP1_0_1),
  915. PINMUX_IPSR_GPSR(IP8_11_8, SD1_CLK),
  916. PINMUX_IPSR_MSEL(IP8_11_8, MSIOF1_SCK_G, SEL_MSIOF1_6),
  917. PINMUX_IPSR_MSEL(IP8_11_8, SIM0_CLK_A, SEL_SIMCARD_0),
  918. PINMUX_IPSR_GPSR(IP8_15_12, SD1_CMD),
  919. PINMUX_IPSR_MSEL(IP8_15_12, MSIOF1_SYNC_G, SEL_MSIOF1_6),
  920. PINMUX_IPSR_GPSR(IP8_15_12, NFCE_N_B),
  921. PINMUX_IPSR_MSEL(IP8_15_12, SIM0_D_A, SEL_SIMCARD_0),
  922. PINMUX_IPSR_MSEL(IP8_15_12, STP_IVCXO27_1_B, SEL_SSP1_1_1),
  923. PINMUX_IPSR_GPSR(IP8_19_16, SD1_DAT0),
  924. PINMUX_IPSR_GPSR(IP8_19_16, SD2_DAT4),
  925. PINMUX_IPSR_MSEL(IP8_19_16, MSIOF1_RXD_G, SEL_MSIOF1_6),
  926. PINMUX_IPSR_GPSR(IP8_19_16, NFWP_N_B),
  927. PINMUX_IPSR_MSEL(IP8_19_16, TS_SCK1_B, SEL_TSIF1_1),
  928. PINMUX_IPSR_MSEL(IP8_19_16, STP_ISCLK_1_B, SEL_SSP1_1_1),
  929. PINMUX_IPSR_GPSR(IP8_23_20, SD1_DAT1),
  930. PINMUX_IPSR_GPSR(IP8_23_20, SD2_DAT5),
  931. PINMUX_IPSR_MSEL(IP8_23_20, MSIOF1_TXD_G, SEL_MSIOF1_6),
  932. PINMUX_IPSR_GPSR(IP8_23_20, NFDATA14_B),
  933. PINMUX_IPSR_MSEL(IP8_23_20, TS_SPSYNC1_B, SEL_TSIF1_1),
  934. PINMUX_IPSR_MSEL(IP8_23_20, STP_ISSYNC_1_B, SEL_SSP1_1_1),
  935. PINMUX_IPSR_GPSR(IP8_27_24, SD1_DAT2),
  936. PINMUX_IPSR_GPSR(IP8_27_24, SD2_DAT6),
  937. PINMUX_IPSR_MSEL(IP8_27_24, MSIOF1_SS1_G, SEL_MSIOF1_6),
  938. PINMUX_IPSR_GPSR(IP8_27_24, NFDATA15_B),
  939. PINMUX_IPSR_MSEL(IP8_27_24, TS_SDAT1_B, SEL_TSIF1_1),
  940. PINMUX_IPSR_MSEL(IP8_27_24, STP_ISD_1_B, SEL_SSP1_1_1),
  941. PINMUX_IPSR_GPSR(IP8_31_28, SD1_DAT3),
  942. PINMUX_IPSR_GPSR(IP8_31_28, SD2_DAT7),
  943. PINMUX_IPSR_MSEL(IP8_31_28, MSIOF1_SS2_G, SEL_MSIOF1_6),
  944. PINMUX_IPSR_GPSR(IP8_31_28, NFRB_N_B),
  945. PINMUX_IPSR_MSEL(IP8_31_28, TS_SDEN1_B, SEL_TSIF1_1),
  946. PINMUX_IPSR_MSEL(IP8_31_28, STP_ISEN_1_B, SEL_SSP1_1_1),
  947. /* IPSR9 */
  948. PINMUX_IPSR_GPSR(IP9_3_0, SD2_CLK),
  949. PINMUX_IPSR_GPSR(IP9_3_0, NFDATA8),
  950. PINMUX_IPSR_GPSR(IP9_7_4, SD2_CMD),
  951. PINMUX_IPSR_GPSR(IP9_7_4, NFDATA9),
  952. PINMUX_IPSR_GPSR(IP9_11_8, SD2_DAT0),
  953. PINMUX_IPSR_GPSR(IP9_11_8, NFDATA10),
  954. PINMUX_IPSR_GPSR(IP9_15_12, SD2_DAT1),
  955. PINMUX_IPSR_GPSR(IP9_15_12, NFDATA11),
  956. PINMUX_IPSR_GPSR(IP9_19_16, SD2_DAT2),
  957. PINMUX_IPSR_GPSR(IP9_19_16, NFDATA12),
  958. PINMUX_IPSR_GPSR(IP9_23_20, SD2_DAT3),
  959. PINMUX_IPSR_GPSR(IP9_23_20, NFDATA13),
  960. PINMUX_IPSR_GPSR(IP9_27_24, SD2_DS),
  961. PINMUX_IPSR_GPSR(IP9_27_24, NFALE),
  962. PINMUX_IPSR_GPSR(IP9_27_24, SATA_DEVSLP_B),
  963. PINMUX_IPSR_GPSR(IP9_31_28, SD3_CLK),
  964. PINMUX_IPSR_GPSR(IP9_31_28, NFWE_N),
  965. /* IPSR10 */
  966. PINMUX_IPSR_GPSR(IP10_3_0, SD3_CMD),
  967. PINMUX_IPSR_GPSR(IP10_3_0, NFRE_N),
  968. PINMUX_IPSR_GPSR(IP10_7_4, SD3_DAT0),
  969. PINMUX_IPSR_GPSR(IP10_7_4, NFDATA0),
  970. PINMUX_IPSR_GPSR(IP10_11_8, SD3_DAT1),
  971. PINMUX_IPSR_GPSR(IP10_11_8, NFDATA1),
  972. PINMUX_IPSR_GPSR(IP10_15_12, SD3_DAT2),
  973. PINMUX_IPSR_GPSR(IP10_15_12, NFDATA2),
  974. PINMUX_IPSR_GPSR(IP10_19_16, SD3_DAT3),
  975. PINMUX_IPSR_GPSR(IP10_19_16, NFDATA3),
  976. PINMUX_IPSR_GPSR(IP10_23_20, SD3_DAT4),
  977. PINMUX_IPSR_MSEL(IP10_23_20, SD2_CD_A, SEL_SDHI2_0),
  978. PINMUX_IPSR_GPSR(IP10_23_20, NFDATA4),
  979. PINMUX_IPSR_GPSR(IP10_27_24, SD3_DAT5),
  980. PINMUX_IPSR_MSEL(IP10_27_24, SD2_WP_A, SEL_SDHI2_0),
  981. PINMUX_IPSR_GPSR(IP10_27_24, NFDATA5),
  982. PINMUX_IPSR_GPSR(IP10_31_28, SD3_DAT6),
  983. PINMUX_IPSR_GPSR(IP10_31_28, SD3_CD),
  984. PINMUX_IPSR_GPSR(IP10_31_28, NFDATA6),
  985. /* IPSR11 */
  986. PINMUX_IPSR_GPSR(IP11_3_0, SD3_DAT7),
  987. PINMUX_IPSR_GPSR(IP11_3_0, SD3_WP),
  988. PINMUX_IPSR_GPSR(IP11_3_0, NFDATA7),
  989. PINMUX_IPSR_GPSR(IP11_7_4, SD3_DS),
  990. PINMUX_IPSR_GPSR(IP11_7_4, NFCLE),
  991. PINMUX_IPSR_GPSR(IP11_11_8, SD0_CD),
  992. PINMUX_IPSR_MSEL(IP11_11_8, SCL2_B, SEL_I2C2_1),
  993. PINMUX_IPSR_MSEL(IP11_11_8, SIM0_RST_A, SEL_SIMCARD_0),
  994. PINMUX_IPSR_GPSR(IP11_15_12, SD0_WP),
  995. PINMUX_IPSR_MSEL(IP11_15_12, SDA2_B, SEL_I2C2_1),
  996. PINMUX_IPSR_GPSR(IP11_19_16, SD1_CD),
  997. PINMUX_IPSR_MSEL(IP11_19_16, SIM0_CLK_B, SEL_SIMCARD_1),
  998. PINMUX_IPSR_GPSR(IP11_23_20, SD1_WP),
  999. PINMUX_IPSR_MSEL(IP11_23_20, SIM0_D_B, SEL_SIMCARD_1),
  1000. PINMUX_IPSR_GPSR(IP11_27_24, SCK0),
  1001. PINMUX_IPSR_MSEL(IP11_27_24, HSCK1_B, SEL_HSCIF1_1),
  1002. PINMUX_IPSR_MSEL(IP11_27_24, MSIOF1_SS2_B, SEL_MSIOF1_1),
  1003. PINMUX_IPSR_MSEL(IP11_27_24, AUDIO_CLKC_B, SEL_ADG_C_1),
  1004. PINMUX_IPSR_MSEL(IP11_27_24, SDA2_A, SEL_I2C2_0),
  1005. PINMUX_IPSR_MSEL(IP11_27_24, SIM0_RST_B, SEL_SIMCARD_1),
  1006. PINMUX_IPSR_MSEL(IP11_27_24, STP_OPWM_0_C, SEL_SSP1_0_2),
  1007. PINMUX_IPSR_MSEL(IP11_27_24, RIF0_CLK_B, SEL_DRIF0_1),
  1008. PINMUX_IPSR_GPSR(IP11_27_24, ADICHS2),
  1009. PINMUX_IPSR_MSEL(IP11_27_24, SCK5_B, SEL_SCIF5_1),
  1010. PINMUX_IPSR_GPSR(IP11_31_28, RX0),
  1011. PINMUX_IPSR_MSEL(IP11_31_28, HRX1_B, SEL_HSCIF1_1),
  1012. PINMUX_IPSR_MSEL(IP11_31_28, TS_SCK0_C, SEL_TSIF0_2),
  1013. PINMUX_IPSR_MSEL(IP11_31_28, STP_ISCLK_0_C, SEL_SSP1_0_2),
  1014. PINMUX_IPSR_MSEL(IP11_31_28, RIF0_D0_B, SEL_DRIF0_1),
  1015. /* IPSR12 */
  1016. PINMUX_IPSR_GPSR(IP12_3_0, TX0),
  1017. PINMUX_IPSR_MSEL(IP12_3_0, HTX1_B, SEL_HSCIF1_1),
  1018. PINMUX_IPSR_MSEL(IP12_3_0, TS_SPSYNC0_C, SEL_TSIF0_2),
  1019. PINMUX_IPSR_MSEL(IP12_3_0, STP_ISSYNC_0_C, SEL_SSP1_0_2),
  1020. PINMUX_IPSR_MSEL(IP12_3_0, RIF0_D1_B, SEL_DRIF0_1),
  1021. PINMUX_IPSR_GPSR(IP12_7_4, CTS0_N),
  1022. PINMUX_IPSR_MSEL(IP12_7_4, HCTS1_N_B, SEL_HSCIF1_1),
  1023. PINMUX_IPSR_MSEL(IP12_7_4, MSIOF1_SYNC_B, SEL_MSIOF1_1),
  1024. PINMUX_IPSR_MSEL(IP12_7_4, TS_SPSYNC1_C, SEL_TSIF1_2),
  1025. PINMUX_IPSR_MSEL(IP12_7_4, STP_ISSYNC_1_C, SEL_SSP1_1_2),
  1026. PINMUX_IPSR_MSEL(IP12_7_4, RIF1_SYNC_B, SEL_DRIF1_1),
  1027. PINMUX_IPSR_GPSR(IP12_7_4, AUDIO_CLKOUT_C),
  1028. PINMUX_IPSR_GPSR(IP12_7_4, ADICS_SAMP),
  1029. PINMUX_IPSR_GPSR(IP12_11_8, RTS0_N),
  1030. PINMUX_IPSR_MSEL(IP12_11_8, HRTS1_N_B, SEL_HSCIF1_1),
  1031. PINMUX_IPSR_MSEL(IP12_11_8, MSIOF1_SS1_B, SEL_MSIOF1_1),
  1032. PINMUX_IPSR_MSEL(IP12_11_8, AUDIO_CLKA_B, SEL_ADG_A_1),
  1033. PINMUX_IPSR_MSEL(IP12_11_8, SCL2_A, SEL_I2C2_0),
  1034. PINMUX_IPSR_MSEL(IP12_11_8, STP_IVCXO27_1_C, SEL_SSP1_1_2),
  1035. PINMUX_IPSR_MSEL(IP12_11_8, RIF0_SYNC_B, SEL_DRIF0_1),
  1036. PINMUX_IPSR_GPSR(IP12_11_8, ADICHS1),
  1037. PINMUX_IPSR_MSEL(IP12_15_12, RX1_A, SEL_SCIF1_0),
  1038. PINMUX_IPSR_MSEL(IP12_15_12, HRX1_A, SEL_HSCIF1_0),
  1039. PINMUX_IPSR_MSEL(IP12_15_12, TS_SDAT0_C, SEL_TSIF0_2),
  1040. PINMUX_IPSR_MSEL(IP12_15_12, STP_ISD_0_C, SEL_SSP1_0_2),
  1041. PINMUX_IPSR_MSEL(IP12_15_12, RIF1_CLK_C, SEL_DRIF1_2),
  1042. PINMUX_IPSR_MSEL(IP12_19_16, TX1_A, SEL_SCIF1_0),
  1043. PINMUX_IPSR_MSEL(IP12_19_16, HTX1_A, SEL_HSCIF1_0),
  1044. PINMUX_IPSR_MSEL(IP12_19_16, TS_SDEN0_C, SEL_TSIF0_2),
  1045. PINMUX_IPSR_MSEL(IP12_19_16, STP_ISEN_0_C, SEL_SSP1_0_2),
  1046. PINMUX_IPSR_MSEL(IP12_19_16, RIF1_D0_C, SEL_DRIF1_2),
  1047. PINMUX_IPSR_GPSR(IP12_23_20, CTS1_N),
  1048. PINMUX_IPSR_MSEL(IP12_23_20, HCTS1_N_A, SEL_HSCIF1_0),
  1049. PINMUX_IPSR_MSEL(IP12_23_20, MSIOF1_RXD_B, SEL_MSIOF1_1),
  1050. PINMUX_IPSR_MSEL(IP12_23_20, TS_SDEN1_C, SEL_TSIF1_2),
  1051. PINMUX_IPSR_MSEL(IP12_23_20, STP_ISEN_1_C, SEL_SSP1_1_2),
  1052. PINMUX_IPSR_MSEL(IP12_23_20, RIF1_D0_B, SEL_DRIF1_1),
  1053. PINMUX_IPSR_GPSR(IP12_23_20, ADIDATA),
  1054. PINMUX_IPSR_GPSR(IP12_27_24, RTS1_N),
  1055. PINMUX_IPSR_MSEL(IP12_27_24, HRTS1_N_A, SEL_HSCIF1_0),
  1056. PINMUX_IPSR_MSEL(IP12_27_24, MSIOF1_TXD_B, SEL_MSIOF1_1),
  1057. PINMUX_IPSR_MSEL(IP12_27_24, TS_SDAT1_C, SEL_TSIF1_2),
  1058. PINMUX_IPSR_MSEL(IP12_27_24, STP_ISD_1_C, SEL_SSP1_1_2),
  1059. PINMUX_IPSR_MSEL(IP12_27_24, RIF1_D1_B, SEL_DRIF1_1),
  1060. PINMUX_IPSR_GPSR(IP12_27_24, ADICHS0),
  1061. PINMUX_IPSR_GPSR(IP12_31_28, SCK2),
  1062. PINMUX_IPSR_MSEL(IP12_31_28, SCIF_CLK_B, SEL_SCIF_1),
  1063. PINMUX_IPSR_MSEL(IP12_31_28, MSIOF1_SCK_B, SEL_MSIOF1_1),
  1064. PINMUX_IPSR_MSEL(IP12_31_28, TS_SCK1_C, SEL_TSIF1_2),
  1065. PINMUX_IPSR_MSEL(IP12_31_28, STP_ISCLK_1_C, SEL_SSP1_1_2),
  1066. PINMUX_IPSR_MSEL(IP12_31_28, RIF1_CLK_B, SEL_DRIF1_1),
  1067. PINMUX_IPSR_GPSR(IP12_31_28, ADICLK),
  1068. /* IPSR13 */
  1069. PINMUX_IPSR_MSEL(IP13_3_0, TX2_A, SEL_SCIF2_0),
  1070. PINMUX_IPSR_MSEL(IP13_3_0, SD2_CD_B, SEL_SDHI2_1),
  1071. PINMUX_IPSR_MSEL(IP13_3_0, SCL1_A, SEL_I2C1_0),
  1072. PINMUX_IPSR_MSEL(IP13_3_0, FMCLK_A, SEL_FM_0),
  1073. PINMUX_IPSR_MSEL(IP13_3_0, RIF1_D1_C, SEL_DRIF1_2),
  1074. PINMUX_IPSR_GPSR(IP13_3_0, FSO_CFE_0_N),
  1075. PINMUX_IPSR_MSEL(IP13_7_4, RX2_A, SEL_SCIF2_0),
  1076. PINMUX_IPSR_MSEL(IP13_7_4, SD2_WP_B, SEL_SDHI2_1),
  1077. PINMUX_IPSR_MSEL(IP13_7_4, SDA1_A, SEL_I2C1_0),
  1078. PINMUX_IPSR_MSEL(IP13_7_4, FMIN_A, SEL_FM_0),
  1079. PINMUX_IPSR_MSEL(IP13_7_4, RIF1_SYNC_C, SEL_DRIF1_2),
  1080. PINMUX_IPSR_GPSR(IP13_7_4, FSO_CFE_1_N),
  1081. PINMUX_IPSR_GPSR(IP13_11_8, HSCK0),
  1082. PINMUX_IPSR_MSEL(IP13_11_8, MSIOF1_SCK_D, SEL_MSIOF1_3),
  1083. PINMUX_IPSR_MSEL(IP13_11_8, AUDIO_CLKB_A, SEL_ADG_B_0),
  1084. PINMUX_IPSR_MSEL(IP13_11_8, SSI_SDATA1_B, SEL_SSI1_1),
  1085. PINMUX_IPSR_MSEL(IP13_11_8, TS_SCK0_D, SEL_TSIF0_3),
  1086. PINMUX_IPSR_MSEL(IP13_11_8, STP_ISCLK_0_D, SEL_SSP1_0_3),
  1087. PINMUX_IPSR_MSEL(IP13_11_8, RIF0_CLK_C, SEL_DRIF0_2),
  1088. PINMUX_IPSR_MSEL(IP13_11_8, RX5_B, SEL_SCIF5_1),
  1089. PINMUX_IPSR_GPSR(IP13_15_12, HRX0),
  1090. PINMUX_IPSR_MSEL(IP13_15_12, MSIOF1_RXD_D, SEL_MSIOF1_3),
  1091. PINMUX_IPSR_MSEL(IP13_15_12, SSI_SDATA2_B, SEL_SSI2_1),
  1092. PINMUX_IPSR_MSEL(IP13_15_12, TS_SDEN0_D, SEL_TSIF0_3),
  1093. PINMUX_IPSR_MSEL(IP13_15_12, STP_ISEN_0_D, SEL_SSP1_0_3),
  1094. PINMUX_IPSR_MSEL(IP13_15_12, RIF0_D0_C, SEL_DRIF0_2),
  1095. PINMUX_IPSR_GPSR(IP13_19_16, HTX0),
  1096. PINMUX_IPSR_MSEL(IP13_19_16, MSIOF1_TXD_D, SEL_MSIOF1_3),
  1097. PINMUX_IPSR_MSEL(IP13_19_16, SSI_SDATA9_B, SEL_SSI9_1),
  1098. PINMUX_IPSR_MSEL(IP13_19_16, TS_SDAT0_D, SEL_TSIF0_3),
  1099. PINMUX_IPSR_MSEL(IP13_19_16, STP_ISD_0_D, SEL_SSP1_0_3),
  1100. PINMUX_IPSR_MSEL(IP13_19_16, RIF0_D1_C, SEL_DRIF0_2),
  1101. PINMUX_IPSR_GPSR(IP13_23_20, HCTS0_N),
  1102. PINMUX_IPSR_MSEL(IP13_23_20, RX2_B, SEL_SCIF2_1),
  1103. PINMUX_IPSR_MSEL(IP13_23_20, MSIOF1_SYNC_D, SEL_MSIOF1_3),
  1104. PINMUX_IPSR_MSEL(IP13_23_20, SSI_SCK9_A, SEL_SSI9_0),
  1105. PINMUX_IPSR_MSEL(IP13_23_20, TS_SPSYNC0_D, SEL_TSIF0_3),
  1106. PINMUX_IPSR_MSEL(IP13_23_20, STP_ISSYNC_0_D, SEL_SSP1_0_3),
  1107. PINMUX_IPSR_MSEL(IP13_23_20, RIF0_SYNC_C, SEL_DRIF0_2),
  1108. PINMUX_IPSR_GPSR(IP13_23_20, AUDIO_CLKOUT1_A),
  1109. PINMUX_IPSR_GPSR(IP13_27_24, HRTS0_N),
  1110. PINMUX_IPSR_MSEL(IP13_27_24, TX2_B, SEL_SCIF2_1),
  1111. PINMUX_IPSR_MSEL(IP13_27_24, MSIOF1_SS1_D, SEL_MSIOF1_3),
  1112. PINMUX_IPSR_MSEL(IP13_27_24, SSI_WS9_A, SEL_SSI9_0),
  1113. PINMUX_IPSR_MSEL(IP13_27_24, STP_IVCXO27_0_D, SEL_SSP1_0_3),
  1114. PINMUX_IPSR_MSEL(IP13_27_24, BPFCLK_A, SEL_FM_0),
  1115. PINMUX_IPSR_GPSR(IP13_27_24, AUDIO_CLKOUT2_A),
  1116. PINMUX_IPSR_GPSR(IP13_31_28, MSIOF0_SYNC),
  1117. PINMUX_IPSR_GPSR(IP13_31_28, AUDIO_CLKOUT_A),
  1118. PINMUX_IPSR_MSEL(IP13_31_28, TX5_B, SEL_SCIF5_1),
  1119. PINMUX_IPSR_MSEL(IP13_31_28, BPFCLK_D, SEL_FM_3),
  1120. /* IPSR14 */
  1121. PINMUX_IPSR_GPSR(IP14_3_0, MSIOF0_SS1),
  1122. PINMUX_IPSR_MSEL(IP14_3_0, RX5_A, SEL_SCIF5_0),
  1123. PINMUX_IPSR_GPSR(IP14_3_0, NFWP_N_A),
  1124. PINMUX_IPSR_MSEL(IP14_3_0, AUDIO_CLKA_C, SEL_ADG_A_2),
  1125. PINMUX_IPSR_MSEL(IP14_3_0, SSI_SCK2_A, SEL_SSI2_0),
  1126. PINMUX_IPSR_MSEL(IP14_3_0, STP_IVCXO27_0_C, SEL_SSP1_0_2),
  1127. PINMUX_IPSR_GPSR(IP14_3_0, AUDIO_CLKOUT3_A),
  1128. PINMUX_IPSR_MSEL(IP14_3_0, TCLK1_B, SEL_TIMER_TMU1_1),
  1129. PINMUX_IPSR_GPSR(IP14_7_4, MSIOF0_SS2),
  1130. PINMUX_IPSR_MSEL(IP14_7_4, TX5_A, SEL_SCIF5_0),
  1131. PINMUX_IPSR_MSEL(IP14_7_4, MSIOF1_SS2_D, SEL_MSIOF1_3),
  1132. PINMUX_IPSR_MSEL(IP14_7_4, AUDIO_CLKC_A, SEL_ADG_C_0),
  1133. PINMUX_IPSR_MSEL(IP14_7_4, SSI_WS2_A, SEL_SSI2_0),
  1134. PINMUX_IPSR_MSEL(IP14_7_4, STP_OPWM_0_D, SEL_SSP1_0_3),
  1135. PINMUX_IPSR_GPSR(IP14_7_4, AUDIO_CLKOUT_D),
  1136. PINMUX_IPSR_MSEL(IP14_7_4, SPEEDIN_B, SEL_SPEED_PULSE_1),
  1137. PINMUX_IPSR_GPSR(IP14_11_8, MLB_CLK),
  1138. PINMUX_IPSR_MSEL(IP14_11_8, MSIOF1_SCK_F, SEL_MSIOF1_5),
  1139. PINMUX_IPSR_MSEL(IP14_11_8, SCL1_B, SEL_I2C1_1),
  1140. PINMUX_IPSR_GPSR(IP14_15_12, MLB_SIG),
  1141. PINMUX_IPSR_MSEL(IP14_15_12, RX1_B, SEL_SCIF1_1),
  1142. PINMUX_IPSR_MSEL(IP14_15_12, MSIOF1_SYNC_F, SEL_MSIOF1_5),
  1143. PINMUX_IPSR_MSEL(IP14_15_12, SDA1_B, SEL_I2C1_1),
  1144. PINMUX_IPSR_GPSR(IP14_19_16, MLB_DAT),
  1145. PINMUX_IPSR_MSEL(IP14_19_16, TX1_B, SEL_SCIF1_1),
  1146. PINMUX_IPSR_MSEL(IP14_19_16, MSIOF1_RXD_F, SEL_MSIOF1_5),
  1147. PINMUX_IPSR_GPSR(IP14_23_20, SSI_SCK01239),
  1148. PINMUX_IPSR_MSEL(IP14_23_20, MSIOF1_TXD_F, SEL_MSIOF1_5),
  1149. PINMUX_IPSR_GPSR(IP14_27_24, SSI_WS01239),
  1150. PINMUX_IPSR_MSEL(IP14_27_24, MSIOF1_SS1_F, SEL_MSIOF1_5),
  1151. PINMUX_IPSR_GPSR(IP14_31_28, SSI_SDATA0),
  1152. PINMUX_IPSR_MSEL(IP14_31_28, MSIOF1_SS2_F, SEL_MSIOF1_5),
  1153. /* IPSR15 */
  1154. PINMUX_IPSR_MSEL(IP15_3_0, SSI_SDATA1_A, SEL_SSI1_0),
  1155. PINMUX_IPSR_MSEL(IP15_7_4, SSI_SDATA2_A, SEL_SSI2_0),
  1156. PINMUX_IPSR_MSEL(IP15_7_4, SSI_SCK1_B, SEL_SSI1_1),
  1157. PINMUX_IPSR_GPSR(IP15_11_8, SSI_SCK349),
  1158. PINMUX_IPSR_MSEL(IP15_11_8, MSIOF1_SS1_A, SEL_MSIOF1_0),
  1159. PINMUX_IPSR_MSEL(IP15_11_8, STP_OPWM_0_A, SEL_SSP1_0_0),
  1160. PINMUX_IPSR_GPSR(IP15_15_12, SSI_WS349),
  1161. PINMUX_IPSR_MSEL(IP15_15_12, HCTS2_N_A, SEL_HSCIF2_0),
  1162. PINMUX_IPSR_MSEL(IP15_15_12, MSIOF1_SS2_A, SEL_MSIOF1_0),
  1163. PINMUX_IPSR_MSEL(IP15_15_12, STP_IVCXO27_0_A, SEL_SSP1_0_0),
  1164. PINMUX_IPSR_GPSR(IP15_19_16, SSI_SDATA3),
  1165. PINMUX_IPSR_MSEL(IP15_19_16, HRTS2_N_A, SEL_HSCIF2_0),
  1166. PINMUX_IPSR_MSEL(IP15_19_16, MSIOF1_TXD_A, SEL_MSIOF1_0),
  1167. PINMUX_IPSR_MSEL(IP15_19_16, TS_SCK0_A, SEL_TSIF0_0),
  1168. PINMUX_IPSR_MSEL(IP15_19_16, STP_ISCLK_0_A, SEL_SSP1_0_0),
  1169. PINMUX_IPSR_MSEL(IP15_19_16, RIF0_D1_A, SEL_DRIF0_0),
  1170. PINMUX_IPSR_MSEL(IP15_19_16, RIF2_D0_A, SEL_DRIF2_0),
  1171. PINMUX_IPSR_GPSR(IP15_23_20, SSI_SCK4),
  1172. PINMUX_IPSR_MSEL(IP15_23_20, HRX2_A, SEL_HSCIF2_0),
  1173. PINMUX_IPSR_MSEL(IP15_23_20, MSIOF1_SCK_A, SEL_MSIOF1_0),
  1174. PINMUX_IPSR_MSEL(IP15_23_20, TS_SDAT0_A, SEL_TSIF0_0),
  1175. PINMUX_IPSR_MSEL(IP15_23_20, STP_ISD_0_A, SEL_SSP1_0_0),
  1176. PINMUX_IPSR_MSEL(IP15_23_20, RIF0_CLK_A, SEL_DRIF0_0),
  1177. PINMUX_IPSR_MSEL(IP15_23_20, RIF2_CLK_A, SEL_DRIF2_0),
  1178. PINMUX_IPSR_GPSR(IP15_27_24, SSI_WS4),
  1179. PINMUX_IPSR_MSEL(IP15_27_24, HTX2_A, SEL_HSCIF2_0),
  1180. PINMUX_IPSR_MSEL(IP15_27_24, MSIOF1_SYNC_A, SEL_MSIOF1_0),
  1181. PINMUX_IPSR_MSEL(IP15_27_24, TS_SDEN0_A, SEL_TSIF0_0),
  1182. PINMUX_IPSR_MSEL(IP15_27_24, STP_ISEN_0_A, SEL_SSP1_0_0),
  1183. PINMUX_IPSR_MSEL(IP15_27_24, RIF0_SYNC_A, SEL_DRIF0_0),
  1184. PINMUX_IPSR_MSEL(IP15_27_24, RIF2_SYNC_A, SEL_DRIF2_0),
  1185. PINMUX_IPSR_GPSR(IP15_31_28, SSI_SDATA4),
  1186. PINMUX_IPSR_MSEL(IP15_31_28, HSCK2_A, SEL_HSCIF2_0),
  1187. PINMUX_IPSR_MSEL(IP15_31_28, MSIOF1_RXD_A, SEL_MSIOF1_0),
  1188. PINMUX_IPSR_MSEL(IP15_31_28, TS_SPSYNC0_A, SEL_TSIF0_0),
  1189. PINMUX_IPSR_MSEL(IP15_31_28, STP_ISSYNC_0_A, SEL_SSP1_0_0),
  1190. PINMUX_IPSR_MSEL(IP15_31_28, RIF0_D0_A, SEL_DRIF0_0),
  1191. PINMUX_IPSR_MSEL(IP15_31_28, RIF2_D1_A, SEL_DRIF2_0),
  1192. /* IPSR16 */
  1193. PINMUX_IPSR_GPSR(IP16_3_0, SSI_SCK6),
  1194. PINMUX_IPSR_GPSR(IP16_3_0, USB2_PWEN),
  1195. PINMUX_IPSR_MSEL(IP16_3_0, SIM0_RST_D, SEL_SIMCARD_3),
  1196. PINMUX_IPSR_GPSR(IP16_7_4, SSI_WS6),
  1197. PINMUX_IPSR_GPSR(IP16_7_4, USB2_OVC),
  1198. PINMUX_IPSR_MSEL(IP16_7_4, SIM0_D_D, SEL_SIMCARD_3),
  1199. PINMUX_IPSR_GPSR(IP16_11_8, SSI_SDATA6),
  1200. PINMUX_IPSR_MSEL(IP16_11_8, SIM0_CLK_D, SEL_SIMCARD_3),
  1201. PINMUX_IPSR_GPSR(IP16_11_8, SATA_DEVSLP_A),
  1202. PINMUX_IPSR_GPSR(IP16_15_12, SSI_SCK78),
  1203. PINMUX_IPSR_MSEL(IP16_15_12, HRX2_B, SEL_HSCIF2_1),
  1204. PINMUX_IPSR_MSEL(IP16_15_12, MSIOF1_SCK_C, SEL_MSIOF1_2),
  1205. PINMUX_IPSR_MSEL(IP16_15_12, TS_SCK1_A, SEL_TSIF1_0),
  1206. PINMUX_IPSR_MSEL(IP16_15_12, STP_ISCLK_1_A, SEL_SSP1_1_0),
  1207. PINMUX_IPSR_MSEL(IP16_15_12, RIF1_CLK_A, SEL_DRIF1_0),
  1208. PINMUX_IPSR_MSEL(IP16_15_12, RIF3_CLK_A, SEL_DRIF3_0),
  1209. PINMUX_IPSR_GPSR(IP16_19_16, SSI_WS78),
  1210. PINMUX_IPSR_MSEL(IP16_19_16, HTX2_B, SEL_HSCIF2_1),
  1211. PINMUX_IPSR_MSEL(IP16_19_16, MSIOF1_SYNC_C, SEL_MSIOF1_2),
  1212. PINMUX_IPSR_MSEL(IP16_19_16, TS_SDAT1_A, SEL_TSIF1_0),
  1213. PINMUX_IPSR_MSEL(IP16_19_16, STP_ISD_1_A, SEL_SSP1_1_0),
  1214. PINMUX_IPSR_MSEL(IP16_19_16, RIF1_SYNC_A, SEL_DRIF1_0),
  1215. PINMUX_IPSR_MSEL(IP16_19_16, RIF3_SYNC_A, SEL_DRIF3_0),
  1216. PINMUX_IPSR_GPSR(IP16_23_20, SSI_SDATA7),
  1217. PINMUX_IPSR_MSEL(IP16_23_20, HCTS2_N_B, SEL_HSCIF2_1),
  1218. PINMUX_IPSR_MSEL(IP16_23_20, MSIOF1_RXD_C, SEL_MSIOF1_2),
  1219. PINMUX_IPSR_MSEL(IP16_23_20, TS_SDEN1_A, SEL_TSIF1_0),
  1220. PINMUX_IPSR_MSEL(IP16_23_20, STP_ISEN_1_A, SEL_SSP1_1_0),
  1221. PINMUX_IPSR_MSEL(IP16_23_20, RIF1_D0_A, SEL_DRIF1_0),
  1222. PINMUX_IPSR_MSEL(IP16_23_20, RIF3_D0_A, SEL_DRIF3_0),
  1223. PINMUX_IPSR_MSEL(IP16_23_20, TCLK2_A, SEL_TIMER_TMU2_0),
  1224. PINMUX_IPSR_GPSR(IP16_27_24, SSI_SDATA8),
  1225. PINMUX_IPSR_MSEL(IP16_27_24, HRTS2_N_B, SEL_HSCIF2_1),
  1226. PINMUX_IPSR_MSEL(IP16_27_24, MSIOF1_TXD_C, SEL_MSIOF1_2),
  1227. PINMUX_IPSR_MSEL(IP16_27_24, TS_SPSYNC1_A, SEL_TSIF1_0),
  1228. PINMUX_IPSR_MSEL(IP16_27_24, STP_ISSYNC_1_A, SEL_SSP1_1_0),
  1229. PINMUX_IPSR_MSEL(IP16_27_24, RIF1_D1_A, SEL_DRIF1_0),
  1230. PINMUX_IPSR_MSEL(IP16_27_24, RIF3_D1_A, SEL_DRIF3_0),
  1231. PINMUX_IPSR_MSEL(IP16_31_28, SSI_SDATA9_A, SEL_SSI9_0),
  1232. PINMUX_IPSR_MSEL(IP16_31_28, HSCK2_B, SEL_HSCIF2_1),
  1233. PINMUX_IPSR_MSEL(IP16_31_28, MSIOF1_SS1_C, SEL_MSIOF1_2),
  1234. PINMUX_IPSR_MSEL(IP16_31_28, HSCK1_A, SEL_HSCIF1_0),
  1235. PINMUX_IPSR_MSEL(IP16_31_28, SSI_WS1_B, SEL_SSI1_1),
  1236. PINMUX_IPSR_GPSR(IP16_31_28, SCK1),
  1237. PINMUX_IPSR_MSEL(IP16_31_28, STP_IVCXO27_1_A, SEL_SSP1_1_0),
  1238. PINMUX_IPSR_MSEL(IP16_31_28, SCK5_A, SEL_SCIF5_0),
  1239. /* IPSR17 */
  1240. PINMUX_IPSR_MSEL(IP17_3_0, AUDIO_CLKA_A, SEL_ADG_A_0),
  1241. PINMUX_IPSR_GPSR(IP17_3_0, CC5_OSCOUT),
  1242. PINMUX_IPSR_MSEL(IP17_7_4, AUDIO_CLKB_B, SEL_ADG_B_1),
  1243. PINMUX_IPSR_MSEL(IP17_7_4, SCIF_CLK_A, SEL_SCIF_0),
  1244. PINMUX_IPSR_MSEL(IP17_7_4, STP_IVCXO27_1_D, SEL_SSP1_1_3),
  1245. PINMUX_IPSR_MSEL(IP17_7_4, REMOCON_A, SEL_REMOCON_0),
  1246. PINMUX_IPSR_MSEL(IP17_7_4, TCLK1_A, SEL_TIMER_TMU1_0),
  1247. PINMUX_IPSR_GPSR(IP17_11_8, USB0_PWEN),
  1248. PINMUX_IPSR_MSEL(IP17_11_8, SIM0_RST_C, SEL_SIMCARD_2),
  1249. PINMUX_IPSR_MSEL(IP17_11_8, TS_SCK1_D, SEL_TSIF1_3),
  1250. PINMUX_IPSR_MSEL(IP17_11_8, STP_ISCLK_1_D, SEL_SSP1_1_3),
  1251. PINMUX_IPSR_MSEL(IP17_11_8, BPFCLK_B, SEL_FM_1),
  1252. PINMUX_IPSR_MSEL(IP17_11_8, RIF3_CLK_B, SEL_DRIF3_1),
  1253. PINMUX_IPSR_MSEL(IP17_11_8, HSCK2_C, SEL_HSCIF2_2),
  1254. PINMUX_IPSR_GPSR(IP17_15_12, USB0_OVC),
  1255. PINMUX_IPSR_MSEL(IP17_15_12, SIM0_D_C, SEL_SIMCARD_2),
  1256. PINMUX_IPSR_MSEL(IP17_15_12, TS_SDAT1_D, SEL_TSIF1_3),
  1257. PINMUX_IPSR_MSEL(IP17_15_12, STP_ISD_1_D, SEL_SSP1_1_3),
  1258. PINMUX_IPSR_MSEL(IP17_15_12, RIF3_SYNC_B, SEL_DRIF3_1),
  1259. PINMUX_IPSR_MSEL(IP17_15_12, HRX2_C, SEL_HSCIF2_2),
  1260. PINMUX_IPSR_GPSR(IP17_19_16, USB1_PWEN),
  1261. PINMUX_IPSR_MSEL(IP17_19_16, SIM0_CLK_C, SEL_SIMCARD_2),
  1262. PINMUX_IPSR_MSEL(IP17_19_16, SSI_SCK1_A, SEL_SSI1_0),
  1263. PINMUX_IPSR_MSEL(IP17_19_16, TS_SCK0_E, SEL_TSIF0_4),
  1264. PINMUX_IPSR_MSEL(IP17_19_16, STP_ISCLK_0_E, SEL_SSP1_0_4),
  1265. PINMUX_IPSR_MSEL(IP17_19_16, FMCLK_B, SEL_FM_1),
  1266. PINMUX_IPSR_MSEL(IP17_19_16, RIF2_CLK_B, SEL_DRIF2_1),
  1267. PINMUX_IPSR_MSEL(IP17_19_16, SPEEDIN_A, SEL_SPEED_PULSE_0),
  1268. PINMUX_IPSR_MSEL(IP17_19_16, HTX2_C, SEL_HSCIF2_2),
  1269. PINMUX_IPSR_GPSR(IP17_23_20, USB1_OVC),
  1270. PINMUX_IPSR_MSEL(IP17_23_20, MSIOF1_SS2_C, SEL_MSIOF1_2),
  1271. PINMUX_IPSR_MSEL(IP17_23_20, SSI_WS1_A, SEL_SSI1_0),
  1272. PINMUX_IPSR_MSEL(IP17_23_20, TS_SDAT0_E, SEL_TSIF0_4),
  1273. PINMUX_IPSR_MSEL(IP17_23_20, STP_ISD_0_E, SEL_SSP1_0_4),
  1274. PINMUX_IPSR_MSEL(IP17_23_20, FMIN_B, SEL_FM_1),
  1275. PINMUX_IPSR_MSEL(IP17_23_20, RIF2_SYNC_B, SEL_DRIF2_1),
  1276. PINMUX_IPSR_MSEL(IP17_23_20, REMOCON_B, SEL_REMOCON_1),
  1277. PINMUX_IPSR_MSEL(IP17_23_20, HCTS2_N_C, SEL_HSCIF2_2),
  1278. PINMUX_IPSR_GPSR(IP17_27_24, USB30_PWEN),
  1279. PINMUX_IPSR_GPSR(IP17_27_24, AUDIO_CLKOUT_B),
  1280. PINMUX_IPSR_MSEL(IP17_27_24, SSI_SCK2_B, SEL_SSI2_1),
  1281. PINMUX_IPSR_MSEL(IP17_27_24, TS_SDEN1_D, SEL_TSIF1_3),
  1282. PINMUX_IPSR_MSEL(IP17_27_24, STP_ISEN_1_D, SEL_SSP1_1_3),
  1283. PINMUX_IPSR_MSEL(IP17_27_24, STP_OPWM_0_E, SEL_SSP1_0_4),
  1284. PINMUX_IPSR_MSEL(IP17_27_24, RIF3_D0_B, SEL_DRIF3_1),
  1285. PINMUX_IPSR_MSEL(IP17_27_24, TCLK2_B, SEL_TIMER_TMU2_1),
  1286. PINMUX_IPSR_GPSR(IP17_27_24, TPU0TO0),
  1287. PINMUX_IPSR_MSEL(IP17_27_24, BPFCLK_C, SEL_FM_2),
  1288. PINMUX_IPSR_MSEL(IP17_27_24, HRTS2_N_C, SEL_HSCIF2_2),
  1289. PINMUX_IPSR_GPSR(IP17_31_28, USB30_OVC),
  1290. PINMUX_IPSR_GPSR(IP17_31_28, AUDIO_CLKOUT1_B),
  1291. PINMUX_IPSR_MSEL(IP17_31_28, SSI_WS2_B, SEL_SSI2_1),
  1292. PINMUX_IPSR_MSEL(IP17_31_28, TS_SPSYNC1_D, SEL_TSIF1_3),
  1293. PINMUX_IPSR_MSEL(IP17_31_28, STP_ISSYNC_1_D, SEL_SSP1_1_3),
  1294. PINMUX_IPSR_MSEL(IP17_31_28, STP_IVCXO27_0_E, SEL_SSP1_0_4),
  1295. PINMUX_IPSR_MSEL(IP17_31_28, RIF3_D1_B, SEL_DRIF3_1),
  1296. PINMUX_IPSR_GPSR(IP17_31_28, FSO_TOE_N),
  1297. PINMUX_IPSR_GPSR(IP17_31_28, TPU0TO1),
  1298. /* IPSR18 */
  1299. PINMUX_IPSR_GPSR(IP18_3_0, USB2_CH3_PWEN),
  1300. PINMUX_IPSR_GPSR(IP18_3_0, AUDIO_CLKOUT2_B),
  1301. PINMUX_IPSR_MSEL(IP18_3_0, SSI_SCK9_B, SEL_SSI9_1),
  1302. PINMUX_IPSR_MSEL(IP18_3_0, TS_SDEN0_E, SEL_TSIF0_4),
  1303. PINMUX_IPSR_MSEL(IP18_3_0, STP_ISEN_0_E, SEL_SSP1_0_4),
  1304. PINMUX_IPSR_MSEL(IP18_3_0, RIF2_D0_B, SEL_DRIF2_1),
  1305. PINMUX_IPSR_GPSR(IP18_3_0, TPU0TO2),
  1306. PINMUX_IPSR_MSEL(IP18_3_0, FMCLK_C, SEL_FM_2),
  1307. PINMUX_IPSR_MSEL(IP18_3_0, FMCLK_D, SEL_FM_3),
  1308. PINMUX_IPSR_GPSR(IP18_7_4, USB2_CH3_OVC),
  1309. PINMUX_IPSR_GPSR(IP18_7_4, AUDIO_CLKOUT3_B),
  1310. PINMUX_IPSR_MSEL(IP18_7_4, SSI_WS9_B, SEL_SSI9_1),
  1311. PINMUX_IPSR_MSEL(IP18_7_4, TS_SPSYNC0_E, SEL_TSIF0_4),
  1312. PINMUX_IPSR_MSEL(IP18_7_4, STP_ISSYNC_0_E, SEL_SSP1_0_4),
  1313. PINMUX_IPSR_MSEL(IP18_7_4, RIF2_D1_B, SEL_DRIF2_1),
  1314. PINMUX_IPSR_GPSR(IP18_7_4, TPU0TO3),
  1315. PINMUX_IPSR_MSEL(IP18_7_4, FMIN_C, SEL_FM_2),
  1316. PINMUX_IPSR_MSEL(IP18_7_4, FMIN_D, SEL_FM_3),
  1317. /*
  1318. * Static pins can not be muxed between different functions but
  1319. * still need mark entries in the pinmux list. Add each static
  1320. * pin to the list without an associated function. The sh-pfc
  1321. * core will do the right thing and skip trying to mux the pin
  1322. * while still applying configuration to it.
  1323. */
  1324. #define FM(x) PINMUX_DATA(x##_MARK, 0),
  1325. PINMUX_STATIC
  1326. #undef FM
  1327. };
  1328. /*
  1329. * R8A7795 has 8 banks with 32 GPIOs in each => 256 GPIOs.
  1330. * Physical layout rows: A - AW, cols: 1 - 39.
  1331. */
  1332. #define ROW_GROUP_A(r) ('Z' - 'A' + 1 + (r))
  1333. #define PIN_NUMBER(r, c) (((r) - 'A') * 39 + (c) + 300)
  1334. #define PIN_A_NUMBER(r, c) PIN_NUMBER(ROW_GROUP_A(r), c)
  1335. #define PIN_NONE U16_MAX
  1336. static const struct sh_pfc_pin pinmux_pins[] = {
  1337. PINMUX_GPIO_GP_ALL(),
  1338. /*
  1339. * Pins not associated with a GPIO port.
  1340. *
  1341. * The pin positions are different between different r8a7795
  1342. * packages, all that is needed for the pfc driver is a unique
  1343. * number for each pin. To this end use the pin layout from
  1344. * R-Car H3SiP to calculate a unique number for each pin.
  1345. */
  1346. SH_PFC_PIN_NAMED_CFG('A', 8, AVB_TX_CTL, CFG_FLAGS),
  1347. SH_PFC_PIN_NAMED_CFG('A', 9, AVB_MDIO, CFG_FLAGS),
  1348. SH_PFC_PIN_NAMED_CFG('A', 12, AVB_TXCREFCLK, CFG_FLAGS),
  1349. SH_PFC_PIN_NAMED_CFG('A', 13, AVB_RD0, CFG_FLAGS),
  1350. SH_PFC_PIN_NAMED_CFG('A', 14, AVB_RD2, CFG_FLAGS),
  1351. SH_PFC_PIN_NAMED_CFG('A', 16, AVB_RX_CTL, CFG_FLAGS),
  1352. SH_PFC_PIN_NAMED_CFG('A', 17, AVB_TD2, CFG_FLAGS),
  1353. SH_PFC_PIN_NAMED_CFG('A', 18, AVB_TD0, CFG_FLAGS),
  1354. SH_PFC_PIN_NAMED_CFG('A', 19, AVB_TXC, CFG_FLAGS),
  1355. SH_PFC_PIN_NAMED_CFG('B', 13, AVB_RD1, CFG_FLAGS),
  1356. SH_PFC_PIN_NAMED_CFG('B', 14, AVB_RD3, CFG_FLAGS),
  1357. SH_PFC_PIN_NAMED_CFG('B', 17, AVB_TD3, CFG_FLAGS),
  1358. SH_PFC_PIN_NAMED_CFG('B', 18, AVB_TD1, CFG_FLAGS),
  1359. SH_PFC_PIN_NAMED_CFG('B', 19, AVB_RXC, CFG_FLAGS),
  1360. SH_PFC_PIN_NAMED_CFG('C', 1, PRESETOUT#, CFG_FLAGS),
  1361. SH_PFC_PIN_NAMED_CFG('H', 37, MLB_REF, CFG_FLAGS),
  1362. SH_PFC_PIN_NAMED_CFG('V', 3, QSPI1_SPCLK, CFG_FLAGS),
  1363. SH_PFC_PIN_NAMED_CFG('V', 5, QSPI1_SSL, CFG_FLAGS),
  1364. SH_PFC_PIN_NAMED_CFG('V', 6, RPC_WP#, CFG_FLAGS),
  1365. SH_PFC_PIN_NAMED_CFG('V', 7, RPC_RESET#, CFG_FLAGS),
  1366. SH_PFC_PIN_NAMED_CFG('W', 3, QSPI0_SPCLK, CFG_FLAGS),
  1367. SH_PFC_PIN_NAMED_CFG('Y', 3, QSPI0_SSL, CFG_FLAGS),
  1368. SH_PFC_PIN_NAMED_CFG('Y', 6, QSPI0_IO2, CFG_FLAGS),
  1369. SH_PFC_PIN_NAMED_CFG('Y', 7, RPC_INT#, CFG_FLAGS),
  1370. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('B'), 4, QSPI0_MISO_IO1, CFG_FLAGS),
  1371. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('B'), 6, QSPI0_IO3, CFG_FLAGS),
  1372. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('C'), 3, QSPI1_IO3, CFG_FLAGS),
  1373. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('C'), 5, QSPI0_MOSI_IO0, CFG_FLAGS),
  1374. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('C'), 7, QSPI1_MOSI_IO0, CFG_FLAGS),
  1375. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('D'), 38, FSCLKST#, CFG_FLAGS),
  1376. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('D'), 39, EXTALR, SH_PFC_PIN_CFG_PULL_UP | SH_PFC_PIN_CFG_PULL_DOWN),
  1377. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('E'), 4, QSPI1_IO2, CFG_FLAGS),
  1378. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('E'), 5, QSPI1_MISO_IO1, CFG_FLAGS),
  1379. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('P'), 7, DU_DOTCLKIN0, CFG_FLAGS),
  1380. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('P'), 8, DU_DOTCLKIN1, CFG_FLAGS),
  1381. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('R'), 7, DU_DOTCLKIN2, CFG_FLAGS),
  1382. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('R'), 8, DU_DOTCLKIN3, CFG_FLAGS),
  1383. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('R'), 26, TRST#, SH_PFC_PIN_CFG_PULL_UP | SH_PFC_PIN_CFG_PULL_DOWN),
  1384. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('R'), 29, TDI, SH_PFC_PIN_CFG_PULL_UP | SH_PFC_PIN_CFG_PULL_DOWN),
  1385. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('R'), 30, TMS, CFG_FLAGS),
  1386. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('T'), 27, TCK, SH_PFC_PIN_CFG_PULL_UP | SH_PFC_PIN_CFG_PULL_DOWN),
  1387. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('T'), 28, TDO, SH_PFC_PIN_CFG_DRIVE_STRENGTH),
  1388. SH_PFC_PIN_NAMED_CFG(ROW_GROUP_A('T'), 30, ASEBRK, CFG_FLAGS),
  1389. };
  1390. /* - AUDIO CLOCK ------------------------------------------------------------ */
  1391. static const unsigned int audio_clk_a_a_pins[] = {
  1392. /* CLK A */
  1393. RCAR_GP_PIN(6, 22),
  1394. };
  1395. static const unsigned int audio_clk_a_a_mux[] = {
  1396. AUDIO_CLKA_A_MARK,
  1397. };
  1398. static const unsigned int audio_clk_a_b_pins[] = {
  1399. /* CLK A */
  1400. RCAR_GP_PIN(5, 4),
  1401. };
  1402. static const unsigned int audio_clk_a_b_mux[] = {
  1403. AUDIO_CLKA_B_MARK,
  1404. };
  1405. static const unsigned int audio_clk_a_c_pins[] = {
  1406. /* CLK A */
  1407. RCAR_GP_PIN(5, 19),
  1408. };
  1409. static const unsigned int audio_clk_a_c_mux[] = {
  1410. AUDIO_CLKA_C_MARK,
  1411. };
  1412. static const unsigned int audio_clk_b_a_pins[] = {
  1413. /* CLK B */
  1414. RCAR_GP_PIN(5, 12),
  1415. };
  1416. static const unsigned int audio_clk_b_a_mux[] = {
  1417. AUDIO_CLKB_A_MARK,
  1418. };
  1419. static const unsigned int audio_clk_b_b_pins[] = {
  1420. /* CLK B */
  1421. RCAR_GP_PIN(6, 23),
  1422. };
  1423. static const unsigned int audio_clk_b_b_mux[] = {
  1424. AUDIO_CLKB_B_MARK,
  1425. };
  1426. static const unsigned int audio_clk_c_a_pins[] = {
  1427. /* CLK C */
  1428. RCAR_GP_PIN(5, 21),
  1429. };
  1430. static const unsigned int audio_clk_c_a_mux[] = {
  1431. AUDIO_CLKC_A_MARK,
  1432. };
  1433. static const unsigned int audio_clk_c_b_pins[] = {
  1434. /* CLK C */
  1435. RCAR_GP_PIN(5, 0),
  1436. };
  1437. static const unsigned int audio_clk_c_b_mux[] = {
  1438. AUDIO_CLKC_B_MARK,
  1439. };
  1440. static const unsigned int audio_clkout_a_pins[] = {
  1441. /* CLKOUT */
  1442. RCAR_GP_PIN(5, 18),
  1443. };
  1444. static const unsigned int audio_clkout_a_mux[] = {
  1445. AUDIO_CLKOUT_A_MARK,
  1446. };
  1447. static const unsigned int audio_clkout_b_pins[] = {
  1448. /* CLKOUT */
  1449. RCAR_GP_PIN(6, 28),
  1450. };
  1451. static const unsigned int audio_clkout_b_mux[] = {
  1452. AUDIO_CLKOUT_B_MARK,
  1453. };
  1454. static const unsigned int audio_clkout_c_pins[] = {
  1455. /* CLKOUT */
  1456. RCAR_GP_PIN(5, 3),
  1457. };
  1458. static const unsigned int audio_clkout_c_mux[] = {
  1459. AUDIO_CLKOUT_C_MARK,
  1460. };
  1461. static const unsigned int audio_clkout_d_pins[] = {
  1462. /* CLKOUT */
  1463. RCAR_GP_PIN(5, 21),
  1464. };
  1465. static const unsigned int audio_clkout_d_mux[] = {
  1466. AUDIO_CLKOUT_D_MARK,
  1467. };
  1468. static const unsigned int audio_clkout1_a_pins[] = {
  1469. /* CLKOUT1 */
  1470. RCAR_GP_PIN(5, 15),
  1471. };
  1472. static const unsigned int audio_clkout1_a_mux[] = {
  1473. AUDIO_CLKOUT1_A_MARK,
  1474. };
  1475. static const unsigned int audio_clkout1_b_pins[] = {
  1476. /* CLKOUT1 */
  1477. RCAR_GP_PIN(6, 29),
  1478. };
  1479. static const unsigned int audio_clkout1_b_mux[] = {
  1480. AUDIO_CLKOUT1_B_MARK,
  1481. };
  1482. static const unsigned int audio_clkout2_a_pins[] = {
  1483. /* CLKOUT2 */
  1484. RCAR_GP_PIN(5, 16),
  1485. };
  1486. static const unsigned int audio_clkout2_a_mux[] = {
  1487. AUDIO_CLKOUT2_A_MARK,
  1488. };
  1489. static const unsigned int audio_clkout2_b_pins[] = {
  1490. /* CLKOUT2 */
  1491. RCAR_GP_PIN(6, 30),
  1492. };
  1493. static const unsigned int audio_clkout2_b_mux[] = {
  1494. AUDIO_CLKOUT2_B_MARK,
  1495. };
  1496. static const unsigned int audio_clkout3_a_pins[] = {
  1497. /* CLKOUT3 */
  1498. RCAR_GP_PIN(5, 19),
  1499. };
  1500. static const unsigned int audio_clkout3_a_mux[] = {
  1501. AUDIO_CLKOUT3_A_MARK,
  1502. };
  1503. static const unsigned int audio_clkout3_b_pins[] = {
  1504. /* CLKOUT3 */
  1505. RCAR_GP_PIN(6, 31),
  1506. };
  1507. static const unsigned int audio_clkout3_b_mux[] = {
  1508. AUDIO_CLKOUT3_B_MARK,
  1509. };
  1510. /* - EtherAVB --------------------------------------------------------------- */
  1511. static const unsigned int avb_link_pins[] = {
  1512. /* AVB_LINK */
  1513. RCAR_GP_PIN(2, 12),
  1514. };
  1515. static const unsigned int avb_link_mux[] = {
  1516. AVB_LINK_MARK,
  1517. };
  1518. static const unsigned int avb_magic_pins[] = {
  1519. /* AVB_MAGIC_ */
  1520. RCAR_GP_PIN(2, 10),
  1521. };
  1522. static const unsigned int avb_magic_mux[] = {
  1523. AVB_MAGIC_MARK,
  1524. };
  1525. static const unsigned int avb_phy_int_pins[] = {
  1526. /* AVB_PHY_INT */
  1527. RCAR_GP_PIN(2, 11),
  1528. };
  1529. static const unsigned int avb_phy_int_mux[] = {
  1530. AVB_PHY_INT_MARK,
  1531. };
  1532. static const unsigned int avb_mdio_pins[] = {
  1533. /* AVB_MDC, AVB_MDIO */
  1534. RCAR_GP_PIN(2, 9), PIN_NUMBER('A', 9),
  1535. };
  1536. static const unsigned int avb_mdio_mux[] = {
  1537. AVB_MDC_MARK, AVB_MDIO_MARK,
  1538. };
  1539. static const unsigned int avb_mii_pins[] = {
  1540. /*
  1541. * AVB_TX_CTL, AVB_TXC, AVB_TD0,
  1542. * AVB_TD1, AVB_TD2, AVB_TD3,
  1543. * AVB_RX_CTL, AVB_RXC, AVB_RD0,
  1544. * AVB_RD1, AVB_RD2, AVB_RD3,
  1545. * AVB_TXCREFCLK
  1546. */
  1547. PIN_NUMBER('A', 8), PIN_NUMBER('A', 19), PIN_NUMBER('A', 18),
  1548. PIN_NUMBER('B', 18), PIN_NUMBER('A', 17), PIN_NUMBER('B', 17),
  1549. PIN_NUMBER('A', 16), PIN_NUMBER('B', 19), PIN_NUMBER('A', 13),
  1550. PIN_NUMBER('B', 13), PIN_NUMBER('A', 14), PIN_NUMBER('B', 14),
  1551. PIN_NUMBER('A', 12),
  1552. };
  1553. static const unsigned int avb_mii_mux[] = {
  1554. AVB_TX_CTL_MARK, AVB_TXC_MARK, AVB_TD0_MARK,
  1555. AVB_TD1_MARK, AVB_TD2_MARK, AVB_TD3_MARK,
  1556. AVB_RX_CTL_MARK, AVB_RXC_MARK, AVB_RD0_MARK,
  1557. AVB_RD1_MARK, AVB_RD2_MARK, AVB_RD3_MARK,
  1558. AVB_TXCREFCLK_MARK,
  1559. };
  1560. static const unsigned int avb_avtp_pps_pins[] = {
  1561. /* AVB_AVTP_PPS */
  1562. RCAR_GP_PIN(2, 6),
  1563. };
  1564. static const unsigned int avb_avtp_pps_mux[] = {
  1565. AVB_AVTP_PPS_MARK,
  1566. };
  1567. static const unsigned int avb_avtp_match_a_pins[] = {
  1568. /* AVB_AVTP_MATCH_A */
  1569. RCAR_GP_PIN(2, 13),
  1570. };
  1571. static const unsigned int avb_avtp_match_a_mux[] = {
  1572. AVB_AVTP_MATCH_A_MARK,
  1573. };
  1574. static const unsigned int avb_avtp_capture_a_pins[] = {
  1575. /* AVB_AVTP_CAPTURE_A */
  1576. RCAR_GP_PIN(2, 14),
  1577. };
  1578. static const unsigned int avb_avtp_capture_a_mux[] = {
  1579. AVB_AVTP_CAPTURE_A_MARK,
  1580. };
  1581. static const unsigned int avb_avtp_match_b_pins[] = {
  1582. /* AVB_AVTP_MATCH_B */
  1583. RCAR_GP_PIN(1, 8),
  1584. };
  1585. static const unsigned int avb_avtp_match_b_mux[] = {
  1586. AVB_AVTP_MATCH_B_MARK,
  1587. };
  1588. static const unsigned int avb_avtp_capture_b_pins[] = {
  1589. /* AVB_AVTP_CAPTURE_B */
  1590. RCAR_GP_PIN(1, 11),
  1591. };
  1592. static const unsigned int avb_avtp_capture_b_mux[] = {
  1593. AVB_AVTP_CAPTURE_B_MARK,
  1594. };
  1595. /* - CAN ------------------------------------------------------------------ */
  1596. static const unsigned int can0_data_a_pins[] = {
  1597. /* TX, RX */
  1598. RCAR_GP_PIN(1, 23), RCAR_GP_PIN(1, 24),
  1599. };
  1600. static const unsigned int can0_data_a_mux[] = {
  1601. CAN0_TX_A_MARK, CAN0_RX_A_MARK,
  1602. };
  1603. static const unsigned int can0_data_b_pins[] = {
  1604. /* TX, RX */
  1605. RCAR_GP_PIN(2, 0), RCAR_GP_PIN(2, 1),
  1606. };
  1607. static const unsigned int can0_data_b_mux[] = {
  1608. CAN0_TX_B_MARK, CAN0_RX_B_MARK,
  1609. };
  1610. static const unsigned int can1_data_pins[] = {
  1611. /* TX, RX */
  1612. RCAR_GP_PIN(1, 22), RCAR_GP_PIN(1, 26),
  1613. };
  1614. static const unsigned int can1_data_mux[] = {
  1615. CAN1_TX_MARK, CAN1_RX_MARK,
  1616. };
  1617. /* - CAN Clock -------------------------------------------------------------- */
  1618. static const unsigned int can_clk_pins[] = {
  1619. /* CLK */
  1620. RCAR_GP_PIN(1, 25),
  1621. };
  1622. static const unsigned int can_clk_mux[] = {
  1623. CAN_CLK_MARK,
  1624. };
  1625. /* - CAN FD --------------------------------------------------------------- */
  1626. static const unsigned int canfd0_data_a_pins[] = {
  1627. /* TX, RX */
  1628. RCAR_GP_PIN(1, 23), RCAR_GP_PIN(1, 24),
  1629. };
  1630. static const unsigned int canfd0_data_a_mux[] = {
  1631. CANFD0_TX_A_MARK, CANFD0_RX_A_MARK,
  1632. };
  1633. static const unsigned int canfd0_data_b_pins[] = {
  1634. /* TX, RX */
  1635. RCAR_GP_PIN(2, 0), RCAR_GP_PIN(2, 1),
  1636. };
  1637. static const unsigned int canfd0_data_b_mux[] = {
  1638. CANFD0_TX_B_MARK, CANFD0_RX_B_MARK,
  1639. };
  1640. static const unsigned int canfd1_data_pins[] = {
  1641. /* TX, RX */
  1642. RCAR_GP_PIN(1, 22), RCAR_GP_PIN(1, 26),
  1643. };
  1644. static const unsigned int canfd1_data_mux[] = {
  1645. CANFD1_TX_MARK, CANFD1_RX_MARK,
  1646. };
  1647. /* - DRIF0 --------------------------------------------------------------- */
  1648. static const unsigned int drif0_ctrl_a_pins[] = {
  1649. /* CLK, SYNC */
  1650. RCAR_GP_PIN(6, 8), RCAR_GP_PIN(6, 9),
  1651. };
  1652. static const unsigned int drif0_ctrl_a_mux[] = {
  1653. RIF0_CLK_A_MARK, RIF0_SYNC_A_MARK,
  1654. };
  1655. static const unsigned int drif0_data0_a_pins[] = {
  1656. /* D0 */
  1657. RCAR_GP_PIN(6, 10),
  1658. };
  1659. static const unsigned int drif0_data0_a_mux[] = {
  1660. RIF0_D0_A_MARK,
  1661. };
  1662. static const unsigned int drif0_data1_a_pins[] = {
  1663. /* D1 */
  1664. RCAR_GP_PIN(6, 7),
  1665. };
  1666. static const unsigned int drif0_data1_a_mux[] = {
  1667. RIF0_D1_A_MARK,
  1668. };
  1669. static const unsigned int drif0_ctrl_b_pins[] = {
  1670. /* CLK, SYNC */
  1671. RCAR_GP_PIN(5, 0), RCAR_GP_PIN(5, 4),
  1672. };
  1673. static const unsigned int drif0_ctrl_b_mux[] = {
  1674. RIF0_CLK_B_MARK, RIF0_SYNC_B_MARK,
  1675. };
  1676. static const unsigned int drif0_data0_b_pins[] = {
  1677. /* D0 */
  1678. RCAR_GP_PIN(5, 1),
  1679. };
  1680. static const unsigned int drif0_data0_b_mux[] = {
  1681. RIF0_D0_B_MARK,
  1682. };
  1683. static const unsigned int drif0_data1_b_pins[] = {
  1684. /* D1 */
  1685. RCAR_GP_PIN(5, 2),
  1686. };
  1687. static const unsigned int drif0_data1_b_mux[] = {
  1688. RIF0_D1_B_MARK,
  1689. };
  1690. static const unsigned int drif0_ctrl_c_pins[] = {
  1691. /* CLK, SYNC */
  1692. RCAR_GP_PIN(5, 12), RCAR_GP_PIN(5, 15),
  1693. };
  1694. static const unsigned int drif0_ctrl_c_mux[] = {
  1695. RIF0_CLK_C_MARK, RIF0_SYNC_C_MARK,
  1696. };
  1697. static const unsigned int drif0_data0_c_pins[] = {
  1698. /* D0 */
  1699. RCAR_GP_PIN(5, 13),
  1700. };
  1701. static const unsigned int drif0_data0_c_mux[] = {
  1702. RIF0_D0_C_MARK,
  1703. };
  1704. static const unsigned int drif0_data1_c_pins[] = {
  1705. /* D1 */
  1706. RCAR_GP_PIN(5, 14),
  1707. };
  1708. static const unsigned int drif0_data1_c_mux[] = {
  1709. RIF0_D1_C_MARK,
  1710. };
  1711. /* - DRIF1 --------------------------------------------------------------- */
  1712. static const unsigned int drif1_ctrl_a_pins[] = {
  1713. /* CLK, SYNC */
  1714. RCAR_GP_PIN(6, 17), RCAR_GP_PIN(6, 18),
  1715. };
  1716. static const unsigned int drif1_ctrl_a_mux[] = {
  1717. RIF1_CLK_A_MARK, RIF1_SYNC_A_MARK,
  1718. };
  1719. static const unsigned int drif1_data0_a_pins[] = {
  1720. /* D0 */
  1721. RCAR_GP_PIN(6, 19),
  1722. };
  1723. static const unsigned int drif1_data0_a_mux[] = {
  1724. RIF1_D0_A_MARK,
  1725. };
  1726. static const unsigned int drif1_data1_a_pins[] = {
  1727. /* D1 */
  1728. RCAR_GP_PIN(6, 20),
  1729. };
  1730. static const unsigned int drif1_data1_a_mux[] = {
  1731. RIF1_D1_A_MARK,
  1732. };
  1733. static const unsigned int drif1_ctrl_b_pins[] = {
  1734. /* CLK, SYNC */
  1735. RCAR_GP_PIN(5, 9), RCAR_GP_PIN(5, 3),
  1736. };
  1737. static const unsigned int drif1_ctrl_b_mux[] = {
  1738. RIF1_CLK_B_MARK, RIF1_SYNC_B_MARK,
  1739. };
  1740. static const unsigned int drif1_data0_b_pins[] = {
  1741. /* D0 */
  1742. RCAR_GP_PIN(5, 7),
  1743. };
  1744. static const unsigned int drif1_data0_b_mux[] = {
  1745. RIF1_D0_B_MARK,
  1746. };
  1747. static const unsigned int drif1_data1_b_pins[] = {
  1748. /* D1 */
  1749. RCAR_GP_PIN(5, 8),
  1750. };
  1751. static const unsigned int drif1_data1_b_mux[] = {
  1752. RIF1_D1_B_MARK,
  1753. };
  1754. static const unsigned int drif1_ctrl_c_pins[] = {
  1755. /* CLK, SYNC */
  1756. RCAR_GP_PIN(5, 5), RCAR_GP_PIN(5, 11),
  1757. };
  1758. static const unsigned int drif1_ctrl_c_mux[] = {
  1759. RIF1_CLK_C_MARK, RIF1_SYNC_C_MARK,
  1760. };
  1761. static const unsigned int drif1_data0_c_pins[] = {
  1762. /* D0 */
  1763. RCAR_GP_PIN(5, 6),
  1764. };
  1765. static const unsigned int drif1_data0_c_mux[] = {
  1766. RIF1_D0_C_MARK,
  1767. };
  1768. static const unsigned int drif1_data1_c_pins[] = {
  1769. /* D1 */
  1770. RCAR_GP_PIN(5, 10),
  1771. };
  1772. static const unsigned int drif1_data1_c_mux[] = {
  1773. RIF1_D1_C_MARK,
  1774. };
  1775. /* - DRIF2 --------------------------------------------------------------- */
  1776. static const unsigned int drif2_ctrl_a_pins[] = {
  1777. /* CLK, SYNC */
  1778. RCAR_GP_PIN(6, 8), RCAR_GP_PIN(6, 9),
  1779. };
  1780. static const unsigned int drif2_ctrl_a_mux[] = {
  1781. RIF2_CLK_A_MARK, RIF2_SYNC_A_MARK,
  1782. };
  1783. static const unsigned int drif2_data0_a_pins[] = {
  1784. /* D0 */
  1785. RCAR_GP_PIN(6, 7),
  1786. };
  1787. static const unsigned int drif2_data0_a_mux[] = {
  1788. RIF2_D0_A_MARK,
  1789. };
  1790. static const unsigned int drif2_data1_a_pins[] = {
  1791. /* D1 */
  1792. RCAR_GP_PIN(6, 10),
  1793. };
  1794. static const unsigned int drif2_data1_a_mux[] = {
  1795. RIF2_D1_A_MARK,
  1796. };
  1797. static const unsigned int drif2_ctrl_b_pins[] = {
  1798. /* CLK, SYNC */
  1799. RCAR_GP_PIN(6, 26), RCAR_GP_PIN(6, 27),
  1800. };
  1801. static const unsigned int drif2_ctrl_b_mux[] = {
  1802. RIF2_CLK_B_MARK, RIF2_SYNC_B_MARK,
  1803. };
  1804. static const unsigned int drif2_data0_b_pins[] = {
  1805. /* D0 */
  1806. RCAR_GP_PIN(6, 30),
  1807. };
  1808. static const unsigned int drif2_data0_b_mux[] = {
  1809. RIF2_D0_B_MARK,
  1810. };
  1811. static const unsigned int drif2_data1_b_pins[] = {
  1812. /* D1 */
  1813. RCAR_GP_PIN(6, 31),
  1814. };
  1815. static const unsigned int drif2_data1_b_mux[] = {
  1816. RIF2_D1_B_MARK,
  1817. };
  1818. /* - DRIF3 --------------------------------------------------------------- */
  1819. static const unsigned int drif3_ctrl_a_pins[] = {
  1820. /* CLK, SYNC */
  1821. RCAR_GP_PIN(6, 17), RCAR_GP_PIN(6, 18),
  1822. };
  1823. static const unsigned int drif3_ctrl_a_mux[] = {
  1824. RIF3_CLK_A_MARK, RIF3_SYNC_A_MARK,
  1825. };
  1826. static const unsigned int drif3_data0_a_pins[] = {
  1827. /* D0 */
  1828. RCAR_GP_PIN(6, 19),
  1829. };
  1830. static const unsigned int drif3_data0_a_mux[] = {
  1831. RIF3_D0_A_MARK,
  1832. };
  1833. static const unsigned int drif3_data1_a_pins[] = {
  1834. /* D1 */
  1835. RCAR_GP_PIN(6, 20),
  1836. };
  1837. static const unsigned int drif3_data1_a_mux[] = {
  1838. RIF3_D1_A_MARK,
  1839. };
  1840. static const unsigned int drif3_ctrl_b_pins[] = {
  1841. /* CLK, SYNC */
  1842. RCAR_GP_PIN(6, 24), RCAR_GP_PIN(6, 25),
  1843. };
  1844. static const unsigned int drif3_ctrl_b_mux[] = {
  1845. RIF3_CLK_B_MARK, RIF3_SYNC_B_MARK,
  1846. };
  1847. static const unsigned int drif3_data0_b_pins[] = {
  1848. /* D0 */
  1849. RCAR_GP_PIN(6, 28),
  1850. };
  1851. static const unsigned int drif3_data0_b_mux[] = {
  1852. RIF3_D0_B_MARK,
  1853. };
  1854. static const unsigned int drif3_data1_b_pins[] = {
  1855. /* D1 */
  1856. RCAR_GP_PIN(6, 29),
  1857. };
  1858. static const unsigned int drif3_data1_b_mux[] = {
  1859. RIF3_D1_B_MARK,
  1860. };
  1861. /* - DU --------------------------------------------------------------------- */
  1862. static const unsigned int du_rgb666_pins[] = {
  1863. /* R[7:2], G[7:2], B[7:2] */
  1864. RCAR_GP_PIN(0, 15), RCAR_GP_PIN(0, 14), RCAR_GP_PIN(0, 13),
  1865. RCAR_GP_PIN(0, 12), RCAR_GP_PIN(0, 11), RCAR_GP_PIN(0, 10),
  1866. RCAR_GP_PIN(1, 15), RCAR_GP_PIN(1, 14), RCAR_GP_PIN(1, 13),
  1867. RCAR_GP_PIN(1, 12), RCAR_GP_PIN(1, 19), RCAR_GP_PIN(1, 18),
  1868. RCAR_GP_PIN(1, 7), RCAR_GP_PIN(1, 6), RCAR_GP_PIN(1, 5),
  1869. RCAR_GP_PIN(1, 4), RCAR_GP_PIN(1, 3), RCAR_GP_PIN(1, 2),
  1870. };
  1871. static const unsigned int du_rgb666_mux[] = {
  1872. DU_DR7_MARK, DU_DR6_MARK, DU_DR5_MARK, DU_DR4_MARK,
  1873. DU_DR3_MARK, DU_DR2_MARK,
  1874. DU_DG7_MARK, DU_DG6_MARK, DU_DG5_MARK, DU_DG4_MARK,
  1875. DU_DG3_MARK, DU_DG2_MARK,
  1876. DU_DB7_MARK, DU_DB6_MARK, DU_DB5_MARK, DU_DB4_MARK,
  1877. DU_DB3_MARK, DU_DB2_MARK,
  1878. };
  1879. static const unsigned int du_rgb888_pins[] = {
  1880. /* R[7:0], G[7:0], B[7:0] */
  1881. RCAR_GP_PIN(0, 15), RCAR_GP_PIN(0, 14), RCAR_GP_PIN(0, 13),
  1882. RCAR_GP_PIN(0, 12), RCAR_GP_PIN(0, 11), RCAR_GP_PIN(0, 10),
  1883. RCAR_GP_PIN(0, 9), RCAR_GP_PIN(0, 8),
  1884. RCAR_GP_PIN(1, 15), RCAR_GP_PIN(1, 14), RCAR_GP_PIN(1, 13),
  1885. RCAR_GP_PIN(1, 12), RCAR_GP_PIN(1, 19), RCAR_GP_PIN(1, 18),
  1886. RCAR_GP_PIN(1, 17), RCAR_GP_PIN(1, 16),
  1887. RCAR_GP_PIN(1, 7), RCAR_GP_PIN(1, 6), RCAR_GP_PIN(1, 5),
  1888. RCAR_GP_PIN(1, 4), RCAR_GP_PIN(1, 3), RCAR_GP_PIN(1, 2),
  1889. RCAR_GP_PIN(1, 1), RCAR_GP_PIN(1, 0),
  1890. };
  1891. static const unsigned int du_rgb888_mux[] = {
  1892. DU_DR7_MARK, DU_DR6_MARK, DU_DR5_MARK, DU_DR4_MARK,
  1893. DU_DR3_MARK, DU_DR2_MARK, DU_DR1_MARK, DU_DR0_MARK,
  1894. DU_DG7_MARK, DU_DG6_MARK, DU_DG5_MARK, DU_DG4_MARK,
  1895. DU_DG3_MARK, DU_DG2_MARK, DU_DG1_MARK, DU_DG0_MARK,
  1896. DU_DB7_MARK, DU_DB6_MARK, DU_DB5_MARK, DU_DB4_MARK,
  1897. DU_DB3_MARK, DU_DB2_MARK, DU_DB1_MARK, DU_DB0_MARK,
  1898. };
  1899. static const unsigned int du_clk_out_0_pins[] = {
  1900. /* CLKOUT */
  1901. RCAR_GP_PIN(1, 27),
  1902. };
  1903. static const unsigned int du_clk_out_0_mux[] = {
  1904. DU_DOTCLKOUT0_MARK
  1905. };
  1906. static const unsigned int du_clk_out_1_pins[] = {
  1907. /* CLKOUT */
  1908. RCAR_GP_PIN(2, 3),
  1909. };
  1910. static const unsigned int du_clk_out_1_mux[] = {
  1911. DU_DOTCLKOUT1_MARK
  1912. };
  1913. static const unsigned int du_sync_pins[] = {
  1914. /* EXVSYNC/VSYNC, EXHSYNC/HSYNC */
  1915. RCAR_GP_PIN(2, 5), RCAR_GP_PIN(2, 4),
  1916. };
  1917. static const unsigned int du_sync_mux[] = {
  1918. DU_EXVSYNC_DU_VSYNC_MARK, DU_EXHSYNC_DU_HSYNC_MARK
  1919. };
  1920. static const unsigned int du_oddf_pins[] = {
  1921. /* EXDISP/EXODDF/EXCDE */
  1922. RCAR_GP_PIN(2, 2),
  1923. };
  1924. static const unsigned int du_oddf_mux[] = {
  1925. DU_EXODDF_DU_ODDF_DISP_CDE_MARK,
  1926. };
  1927. static const unsigned int du_cde_pins[] = {
  1928. /* CDE */
  1929. RCAR_GP_PIN(2, 0),
  1930. };
  1931. static const unsigned int du_cde_mux[] = {
  1932. DU_CDE_MARK,
  1933. };
  1934. static const unsigned int du_disp_pins[] = {
  1935. /* DISP */
  1936. RCAR_GP_PIN(2, 1),
  1937. };
  1938. static const unsigned int du_disp_mux[] = {
  1939. DU_DISP_MARK,
  1940. };
  1941. /* - HDMI ------------------------------------------------------------------- */
  1942. static const unsigned int hdmi0_cec_pins[] = {
  1943. /* HDMI0_CEC */
  1944. RCAR_GP_PIN(7, 2),
  1945. };
  1946. static const unsigned int hdmi0_cec_mux[] = {
  1947. HDMI0_CEC_MARK,
  1948. };
  1949. static const unsigned int hdmi1_cec_pins[] = {
  1950. /* HDMI1_CEC */
  1951. RCAR_GP_PIN(7, 3),
  1952. };
  1953. static const unsigned int hdmi1_cec_mux[] = {
  1954. HDMI1_CEC_MARK,
  1955. };
  1956. /* - HSCIF0 ----------------------------------------------------------------- */
  1957. static const unsigned int hscif0_data_pins[] = {
  1958. /* RX, TX */
  1959. RCAR_GP_PIN(5, 13), RCAR_GP_PIN(5, 14),
  1960. };
  1961. static const unsigned int hscif0_data_mux[] = {
  1962. HRX0_MARK, HTX0_MARK,
  1963. };
  1964. static const unsigned int hscif0_clk_pins[] = {
  1965. /* SCK */
  1966. RCAR_GP_PIN(5, 12),
  1967. };
  1968. static const unsigned int hscif0_clk_mux[] = {
  1969. HSCK0_MARK,
  1970. };
  1971. static const unsigned int hscif0_ctrl_pins[] = {
  1972. /* RTS, CTS */
  1973. RCAR_GP_PIN(5, 16), RCAR_GP_PIN(5, 15),
  1974. };
  1975. static const unsigned int hscif0_ctrl_mux[] = {
  1976. HRTS0_N_MARK, HCTS0_N_MARK,
  1977. };
  1978. /* - HSCIF1 ----------------------------------------------------------------- */
  1979. static const unsigned int hscif1_data_a_pins[] = {
  1980. /* RX, TX */
  1981. RCAR_GP_PIN(5, 5), RCAR_GP_PIN(5, 6),
  1982. };
  1983. static const unsigned int hscif1_data_a_mux[] = {
  1984. HRX1_A_MARK, HTX1_A_MARK,
  1985. };
  1986. static const unsigned int hscif1_clk_a_pins[] = {
  1987. /* SCK */
  1988. RCAR_GP_PIN(6, 21),
  1989. };
  1990. static const unsigned int hscif1_clk_a_mux[] = {
  1991. HSCK1_A_MARK,
  1992. };
  1993. static const unsigned int hscif1_ctrl_a_pins[] = {
  1994. /* RTS, CTS */
  1995. RCAR_GP_PIN(5, 8), RCAR_GP_PIN(5, 7),
  1996. };
  1997. static const unsigned int hscif1_ctrl_a_mux[] = {
  1998. HRTS1_N_A_MARK, HCTS1_N_A_MARK,
  1999. };
  2000. static const unsigned int hscif1_data_b_pins[] = {
  2001. /* RX, TX */
  2002. RCAR_GP_PIN(5, 1), RCAR_GP_PIN(5, 2),
  2003. };
  2004. static const unsigned int hscif1_data_b_mux[] = {
  2005. HRX1_B_MARK, HTX1_B_MARK,
  2006. };
  2007. static const unsigned int hscif1_clk_b_pins[] = {
  2008. /* SCK */
  2009. RCAR_GP_PIN(5, 0),
  2010. };
  2011. static const unsigned int hscif1_clk_b_mux[] = {
  2012. HSCK1_B_MARK,
  2013. };
  2014. static const unsigned int hscif1_ctrl_b_pins[] = {
  2015. /* RTS, CTS */
  2016. RCAR_GP_PIN(5, 4), RCAR_GP_PIN(5, 3),
  2017. };
  2018. static const unsigned int hscif1_ctrl_b_mux[] = {
  2019. HRTS1_N_B_MARK, HCTS1_N_B_MARK,
  2020. };
  2021. /* - HSCIF2 ----------------------------------------------------------------- */
  2022. static const unsigned int hscif2_data_a_pins[] = {
  2023. /* RX, TX */
  2024. RCAR_GP_PIN(6, 8), RCAR_GP_PIN(6, 9),
  2025. };
  2026. static const unsigned int hscif2_data_a_mux[] = {
  2027. HRX2_A_MARK, HTX2_A_MARK,
  2028. };
  2029. static const unsigned int hscif2_clk_a_pins[] = {
  2030. /* SCK */
  2031. RCAR_GP_PIN(6, 10),
  2032. };
  2033. static const unsigned int hscif2_clk_a_mux[] = {
  2034. HSCK2_A_MARK,
  2035. };
  2036. static const unsigned int hscif2_ctrl_a_pins[] = {
  2037. /* RTS, CTS */
  2038. RCAR_GP_PIN(6, 7), RCAR_GP_PIN(6, 6),
  2039. };
  2040. static const unsigned int hscif2_ctrl_a_mux[] = {
  2041. HRTS2_N_A_MARK, HCTS2_N_A_MARK,
  2042. };
  2043. static const unsigned int hscif2_data_b_pins[] = {
  2044. /* RX, TX */
  2045. RCAR_GP_PIN(6, 17), RCAR_GP_PIN(6, 18),
  2046. };
  2047. static const unsigned int hscif2_data_b_mux[] = {
  2048. HRX2_B_MARK, HTX2_B_MARK,
  2049. };
  2050. static const unsigned int hscif2_clk_b_pins[] = {
  2051. /* SCK */
  2052. RCAR_GP_PIN(6, 21),
  2053. };
  2054. static const unsigned int hscif2_clk_b_mux[] = {
  2055. HSCK2_B_MARK,
  2056. };
  2057. static const unsigned int hscif2_ctrl_b_pins[] = {
  2058. /* RTS, CTS */
  2059. RCAR_GP_PIN(6, 20), RCAR_GP_PIN(6, 19),
  2060. };
  2061. static const unsigned int hscif2_ctrl_b_mux[] = {
  2062. HRTS2_N_B_MARK, HCTS2_N_B_MARK,
  2063. };
  2064. static const unsigned int hscif2_data_c_pins[] = {
  2065. /* RX, TX */
  2066. RCAR_GP_PIN(6, 25), RCAR_GP_PIN(6, 26),
  2067. };
  2068. static const unsigned int hscif2_data_c_mux[] = {
  2069. HRX2_C_MARK, HTX2_C_MARK,
  2070. };
  2071. static const unsigned int hscif2_clk_c_pins[] = {
  2072. /* SCK */
  2073. RCAR_GP_PIN(6, 24),
  2074. };
  2075. static const unsigned int hscif2_clk_c_mux[] = {
  2076. HSCK2_C_MARK,
  2077. };
  2078. static const unsigned int hscif2_ctrl_c_pins[] = {
  2079. /* RTS, CTS */
  2080. RCAR_GP_PIN(6, 28), RCAR_GP_PIN(6, 27),
  2081. };
  2082. static const unsigned int hscif2_ctrl_c_mux[] = {
  2083. HRTS2_N_C_MARK, HCTS2_N_C_MARK,
  2084. };
  2085. /* - HSCIF3 ----------------------------------------------------------------- */
  2086. static const unsigned int hscif3_data_a_pins[] = {
  2087. /* RX, TX */
  2088. RCAR_GP_PIN(1, 23), RCAR_GP_PIN(1, 24),
  2089. };
  2090. static const unsigned int hscif3_data_a_mux[] = {
  2091. HRX3_A_MARK, HTX3_A_MARK,
  2092. };
  2093. static const unsigned int hscif3_clk_pins[] = {
  2094. /* SCK */
  2095. RCAR_GP_PIN(1, 22),
  2096. };
  2097. static const unsigned int hscif3_clk_mux[] = {
  2098. HSCK3_MARK,
  2099. };
  2100. static const unsigned int hscif3_ctrl_pins[] = {
  2101. /* RTS, CTS */
  2102. RCAR_GP_PIN(1, 26), RCAR_GP_PIN(1, 25),
  2103. };
  2104. static const unsigned int hscif3_ctrl_mux[] = {
  2105. HRTS3_N_MARK, HCTS3_N_MARK,
  2106. };
  2107. static const unsigned int hscif3_data_b_pins[] = {
  2108. /* RX, TX */
  2109. RCAR_GP_PIN(0, 10), RCAR_GP_PIN(0, 11),
  2110. };
  2111. static const unsigned int hscif3_data_b_mux[] = {
  2112. HRX3_B_MARK, HTX3_B_MARK,
  2113. };
  2114. static const unsigned int hscif3_data_c_pins[] = {
  2115. /* RX, TX */
  2116. RCAR_GP_PIN(0, 14), RCAR_GP_PIN(0, 15),
  2117. };
  2118. static const unsigned int hscif3_data_c_mux[] = {
  2119. HRX3_C_MARK, HTX3_C_MARK,
  2120. };
  2121. static const unsigned int hscif3_data_d_pins[] = {
  2122. /* RX, TX */
  2123. RCAR_GP_PIN(2, 7), RCAR_GP_PIN(2, 8),
  2124. };
  2125. static const unsigned int hscif3_data_d_mux[] = {
  2126. HRX3_D_MARK, HTX3_D_MARK,
  2127. };
  2128. /* - HSCIF4 ----------------------------------------------------------------- */
  2129. static const unsigned int hscif4_data_a_pins[] = {
  2130. /* RX, TX */
  2131. RCAR_GP_PIN(1, 12), RCAR_GP_PIN(1, 13),
  2132. };
  2133. static const unsigned int hscif4_data_a_mux[] = {
  2134. HRX4_A_MARK, HTX4_A_MARK,
  2135. };
  2136. static const unsigned int hscif4_clk_pins[] = {
  2137. /* SCK */
  2138. RCAR_GP_PIN(1, 11),
  2139. };
  2140. static const unsigned int hscif4_clk_mux[] = {
  2141. HSCK4_MARK,
  2142. };
  2143. static const unsigned int hscif4_ctrl_pins[] = {
  2144. /* RTS, CTS */
  2145. RCAR_GP_PIN(1, 15), RCAR_GP_PIN(1, 14),
  2146. };
  2147. static const unsigned int hscif4_ctrl_mux[] = {
  2148. HRTS4_N_MARK, HCTS4_N_MARK,
  2149. };
  2150. static const unsigned int hscif4_data_b_pins[] = {
  2151. /* RX, TX */
  2152. RCAR_GP_PIN(1, 8), RCAR_GP_PIN(1, 11),
  2153. };
  2154. static const unsigned int hscif4_data_b_mux[] = {
  2155. HRX4_B_MARK, HTX4_B_MARK,
  2156. };
  2157. /* - I2C -------------------------------------------------------------------- */
  2158. static const unsigned int i2c1_a_pins[] = {
  2159. /* SDA, SCL */
  2160. RCAR_GP_PIN(5, 11), RCAR_GP_PIN(5, 10),
  2161. };
  2162. static const unsigned int i2c1_a_mux[] = {
  2163. SDA1_A_MARK, SCL1_A_MARK,
  2164. };
  2165. static const unsigned int i2c1_b_pins[] = {
  2166. /* SDA, SCL */
  2167. RCAR_GP_PIN(5, 24), RCAR_GP_PIN(5, 23),
  2168. };
  2169. static const unsigned int i2c1_b_mux[] = {
  2170. SDA1_B_MARK, SCL1_B_MARK,
  2171. };
  2172. static const unsigned int i2c2_a_pins[] = {
  2173. /* SDA, SCL */
  2174. RCAR_GP_PIN(5, 0), RCAR_GP_PIN(5, 4),
  2175. };
  2176. static const unsigned int i2c2_a_mux[] = {
  2177. SDA2_A_MARK, SCL2_A_MARK,
  2178. };
  2179. static const unsigned int i2c2_b_pins[] = {
  2180. /* SDA, SCL */
  2181. RCAR_GP_PIN(3, 13), RCAR_GP_PIN(3, 12),
  2182. };
  2183. static const unsigned int i2c2_b_mux[] = {
  2184. SDA2_B_MARK, SCL2_B_MARK,
  2185. };
  2186. static const unsigned int i2c6_a_pins[] = {
  2187. /* SDA, SCL */
  2188. RCAR_GP_PIN(1, 8), RCAR_GP_PIN(1, 11),
  2189. };
  2190. static const unsigned int i2c6_a_mux[] = {
  2191. SDA6_A_MARK, SCL6_A_MARK,
  2192. };
  2193. static const unsigned int i2c6_b_pins[] = {
  2194. /* SDA, SCL */
  2195. RCAR_GP_PIN(1, 26), RCAR_GP_PIN(1, 25),
  2196. };
  2197. static const unsigned int i2c6_b_mux[] = {
  2198. SDA6_B_MARK, SCL6_B_MARK,
  2199. };
  2200. static const unsigned int i2c6_c_pins[] = {
  2201. /* SDA, SCL */
  2202. RCAR_GP_PIN(0, 15), RCAR_GP_PIN(0, 14),
  2203. };
  2204. static const unsigned int i2c6_c_mux[] = {
  2205. SDA6_C_MARK, SCL6_C_MARK,
  2206. };
  2207. /* - INTC-EX ---------------------------------------------------------------- */
  2208. static const unsigned int intc_ex_irq0_pins[] = {
  2209. /* IRQ0 */
  2210. RCAR_GP_PIN(2, 0),
  2211. };
  2212. static const unsigned int intc_ex_irq0_mux[] = {
  2213. IRQ0_MARK,
  2214. };
  2215. static const unsigned int intc_ex_irq1_pins[] = {
  2216. /* IRQ1 */
  2217. RCAR_GP_PIN(2, 1),
  2218. };
  2219. static const unsigned int intc_ex_irq1_mux[] = {
  2220. IRQ1_MARK,
  2221. };
  2222. static const unsigned int intc_ex_irq2_pins[] = {
  2223. /* IRQ2 */
  2224. RCAR_GP_PIN(2, 2),
  2225. };
  2226. static const unsigned int intc_ex_irq2_mux[] = {
  2227. IRQ2_MARK,
  2228. };
  2229. static const unsigned int intc_ex_irq3_pins[] = {
  2230. /* IRQ3 */
  2231. RCAR_GP_PIN(2, 3),
  2232. };
  2233. static const unsigned int intc_ex_irq3_mux[] = {
  2234. IRQ3_MARK,
  2235. };
  2236. static const unsigned int intc_ex_irq4_pins[] = {
  2237. /* IRQ4 */
  2238. RCAR_GP_PIN(2, 4),
  2239. };
  2240. static const unsigned int intc_ex_irq4_mux[] = {
  2241. IRQ4_MARK,
  2242. };
  2243. static const unsigned int intc_ex_irq5_pins[] = {
  2244. /* IRQ5 */
  2245. RCAR_GP_PIN(2, 5),
  2246. };
  2247. static const unsigned int intc_ex_irq5_mux[] = {
  2248. IRQ5_MARK,
  2249. };
  2250. /* - MSIOF0 ----------------------------------------------------------------- */
  2251. static const unsigned int msiof0_clk_pins[] = {
  2252. /* SCK */
  2253. RCAR_GP_PIN(5, 17),
  2254. };
  2255. static const unsigned int msiof0_clk_mux[] = {
  2256. MSIOF0_SCK_MARK,
  2257. };
  2258. static const unsigned int msiof0_sync_pins[] = {
  2259. /* SYNC */
  2260. RCAR_GP_PIN(5, 18),
  2261. };
  2262. static const unsigned int msiof0_sync_mux[] = {
  2263. MSIOF0_SYNC_MARK,
  2264. };
  2265. static const unsigned int msiof0_ss1_pins[] = {
  2266. /* SS1 */
  2267. RCAR_GP_PIN(5, 19),
  2268. };
  2269. static const unsigned int msiof0_ss1_mux[] = {
  2270. MSIOF0_SS1_MARK,
  2271. };
  2272. static const unsigned int msiof0_ss2_pins[] = {
  2273. /* SS2 */
  2274. RCAR_GP_PIN(5, 21),
  2275. };
  2276. static const unsigned int msiof0_ss2_mux[] = {
  2277. MSIOF0_SS2_MARK,
  2278. };
  2279. static const unsigned int msiof0_txd_pins[] = {
  2280. /* TXD */
  2281. RCAR_GP_PIN(5, 20),
  2282. };
  2283. static const unsigned int msiof0_txd_mux[] = {
  2284. MSIOF0_TXD_MARK,
  2285. };
  2286. static const unsigned int msiof0_rxd_pins[] = {
  2287. /* RXD */
  2288. RCAR_GP_PIN(5, 22),
  2289. };
  2290. static const unsigned int msiof0_rxd_mux[] = {
  2291. MSIOF0_RXD_MARK,
  2292. };
  2293. /* - MSIOF1 ----------------------------------------------------------------- */
  2294. static const unsigned int msiof1_clk_a_pins[] = {
  2295. /* SCK */
  2296. RCAR_GP_PIN(6, 8),
  2297. };
  2298. static const unsigned int msiof1_clk_a_mux[] = {
  2299. MSIOF1_SCK_A_MARK,
  2300. };
  2301. static const unsigned int msiof1_sync_a_pins[] = {
  2302. /* SYNC */
  2303. RCAR_GP_PIN(6, 9),
  2304. };
  2305. static const unsigned int msiof1_sync_a_mux[] = {
  2306. MSIOF1_SYNC_A_MARK,
  2307. };
  2308. static const unsigned int msiof1_ss1_a_pins[] = {
  2309. /* SS1 */
  2310. RCAR_GP_PIN(6, 5),
  2311. };
  2312. static const unsigned int msiof1_ss1_a_mux[] = {
  2313. MSIOF1_SS1_A_MARK,
  2314. };
  2315. static const unsigned int msiof1_ss2_a_pins[] = {
  2316. /* SS2 */
  2317. RCAR_GP_PIN(6, 6),
  2318. };
  2319. static const unsigned int msiof1_ss2_a_mux[] = {
  2320. MSIOF1_SS2_A_MARK,
  2321. };
  2322. static const unsigned int msiof1_txd_a_pins[] = {
  2323. /* TXD */
  2324. RCAR_GP_PIN(6, 7),
  2325. };
  2326. static const unsigned int msiof1_txd_a_mux[] = {
  2327. MSIOF1_TXD_A_MARK,
  2328. };
  2329. static const unsigned int msiof1_rxd_a_pins[] = {
  2330. /* RXD */
  2331. RCAR_GP_PIN(6, 10),
  2332. };
  2333. static const unsigned int msiof1_rxd_a_mux[] = {
  2334. MSIOF1_RXD_A_MARK,
  2335. };
  2336. static const unsigned int msiof1_clk_b_pins[] = {
  2337. /* SCK */
  2338. RCAR_GP_PIN(5, 9),
  2339. };
  2340. static const unsigned int msiof1_clk_b_mux[] = {
  2341. MSIOF1_SCK_B_MARK,
  2342. };
  2343. static const unsigned int msiof1_sync_b_pins[] = {
  2344. /* SYNC */
  2345. RCAR_GP_PIN(5, 3),
  2346. };
  2347. static const unsigned int msiof1_sync_b_mux[] = {
  2348. MSIOF1_SYNC_B_MARK,
  2349. };
  2350. static const unsigned int msiof1_ss1_b_pins[] = {
  2351. /* SS1 */
  2352. RCAR_GP_PIN(5, 4),
  2353. };
  2354. static const unsigned int msiof1_ss1_b_mux[] = {
  2355. MSIOF1_SS1_B_MARK,
  2356. };
  2357. static const unsigned int msiof1_ss2_b_pins[] = {
  2358. /* SS2 */
  2359. RCAR_GP_PIN(5, 0),
  2360. };
  2361. static const unsigned int msiof1_ss2_b_mux[] = {
  2362. MSIOF1_SS2_B_MARK,
  2363. };
  2364. static const unsigned int msiof1_txd_b_pins[] = {
  2365. /* TXD */
  2366. RCAR_GP_PIN(5, 8),
  2367. };
  2368. static const unsigned int msiof1_txd_b_mux[] = {
  2369. MSIOF1_TXD_B_MARK,
  2370. };
  2371. static const unsigned int msiof1_rxd_b_pins[] = {
  2372. /* RXD */
  2373. RCAR_GP_PIN(5, 7),
  2374. };
  2375. static const unsigned int msiof1_rxd_b_mux[] = {
  2376. MSIOF1_RXD_B_MARK,
  2377. };
  2378. static const unsigned int msiof1_clk_c_pins[] = {
  2379. /* SCK */
  2380. RCAR_GP_PIN(6, 17),
  2381. };
  2382. static const unsigned int msiof1_clk_c_mux[] = {
  2383. MSIOF1_SCK_C_MARK,
  2384. };
  2385. static const unsigned int msiof1_sync_c_pins[] = {
  2386. /* SYNC */
  2387. RCAR_GP_PIN(6, 18),
  2388. };
  2389. static const unsigned int msiof1_sync_c_mux[] = {
  2390. MSIOF1_SYNC_C_MARK,
  2391. };
  2392. static const unsigned int msiof1_ss1_c_pins[] = {
  2393. /* SS1 */
  2394. RCAR_GP_PIN(6, 21),
  2395. };
  2396. static const unsigned int msiof1_ss1_c_mux[] = {
  2397. MSIOF1_SS1_C_MARK,
  2398. };
  2399. static const unsigned int msiof1_ss2_c_pins[] = {
  2400. /* SS2 */
  2401. RCAR_GP_PIN(6, 27),
  2402. };
  2403. static const unsigned int msiof1_ss2_c_mux[] = {
  2404. MSIOF1_SS2_C_MARK,
  2405. };
  2406. static const unsigned int msiof1_txd_c_pins[] = {
  2407. /* TXD */
  2408. RCAR_GP_PIN(6, 20),
  2409. };
  2410. static const unsigned int msiof1_txd_c_mux[] = {
  2411. MSIOF1_TXD_C_MARK,
  2412. };
  2413. static const unsigned int msiof1_rxd_c_pins[] = {
  2414. /* RXD */
  2415. RCAR_GP_PIN(6, 19),
  2416. };
  2417. static const unsigned int msiof1_rxd_c_mux[] = {
  2418. MSIOF1_RXD_C_MARK,
  2419. };
  2420. static const unsigned int msiof1_clk_d_pins[] = {
  2421. /* SCK */
  2422. RCAR_GP_PIN(5, 12),
  2423. };
  2424. static const unsigned int msiof1_clk_d_mux[] = {
  2425. MSIOF1_SCK_D_MARK,
  2426. };
  2427. static const unsigned int msiof1_sync_d_pins[] = {
  2428. /* SYNC */
  2429. RCAR_GP_PIN(5, 15),
  2430. };
  2431. static const unsigned int msiof1_sync_d_mux[] = {
  2432. MSIOF1_SYNC_D_MARK,
  2433. };
  2434. static const unsigned int msiof1_ss1_d_pins[] = {
  2435. /* SS1 */
  2436. RCAR_GP_PIN(5, 16),
  2437. };
  2438. static const unsigned int msiof1_ss1_d_mux[] = {
  2439. MSIOF1_SS1_D_MARK,
  2440. };
  2441. static const unsigned int msiof1_ss2_d_pins[] = {
  2442. /* SS2 */
  2443. RCAR_GP_PIN(5, 21),
  2444. };
  2445. static const unsigned int msiof1_ss2_d_mux[] = {
  2446. MSIOF1_SS2_D_MARK,
  2447. };
  2448. static const unsigned int msiof1_txd_d_pins[] = {
  2449. /* TXD */
  2450. RCAR_GP_PIN(5, 14),
  2451. };
  2452. static const unsigned int msiof1_txd_d_mux[] = {
  2453. MSIOF1_TXD_D_MARK,
  2454. };
  2455. static const unsigned int msiof1_rxd_d_pins[] = {
  2456. /* RXD */
  2457. RCAR_GP_PIN(5, 13),
  2458. };
  2459. static const unsigned int msiof1_rxd_d_mux[] = {
  2460. MSIOF1_RXD_D_MARK,
  2461. };
  2462. static const unsigned int msiof1_clk_e_pins[] = {
  2463. /* SCK */
  2464. RCAR_GP_PIN(3, 0),
  2465. };
  2466. static const unsigned int msiof1_clk_e_mux[] = {
  2467. MSIOF1_SCK_E_MARK,
  2468. };
  2469. static const unsigned int msiof1_sync_e_pins[] = {
  2470. /* SYNC */
  2471. RCAR_GP_PIN(3, 1),
  2472. };
  2473. static const unsigned int msiof1_sync_e_mux[] = {
  2474. MSIOF1_SYNC_E_MARK,
  2475. };
  2476. static const unsigned int msiof1_ss1_e_pins[] = {
  2477. /* SS1 */
  2478. RCAR_GP_PIN(3, 4),
  2479. };
  2480. static const unsigned int msiof1_ss1_e_mux[] = {
  2481. MSIOF1_SS1_E_MARK,
  2482. };
  2483. static const unsigned int msiof1_ss2_e_pins[] = {
  2484. /* SS2 */
  2485. RCAR_GP_PIN(3, 5),
  2486. };
  2487. static const unsigned int msiof1_ss2_e_mux[] = {
  2488. MSIOF1_SS2_E_MARK,
  2489. };
  2490. static const unsigned int msiof1_txd_e_pins[] = {
  2491. /* TXD */
  2492. RCAR_GP_PIN(3, 3),
  2493. };
  2494. static const unsigned int msiof1_txd_e_mux[] = {
  2495. MSIOF1_TXD_E_MARK,
  2496. };
  2497. static const unsigned int msiof1_rxd_e_pins[] = {
  2498. /* RXD */
  2499. RCAR_GP_PIN(3, 2),
  2500. };
  2501. static const unsigned int msiof1_rxd_e_mux[] = {
  2502. MSIOF1_RXD_E_MARK,
  2503. };
  2504. static const unsigned int msiof1_clk_f_pins[] = {
  2505. /* SCK */
  2506. RCAR_GP_PIN(5, 23),
  2507. };
  2508. static const unsigned int msiof1_clk_f_mux[] = {
  2509. MSIOF1_SCK_F_MARK,
  2510. };
  2511. static const unsigned int msiof1_sync_f_pins[] = {
  2512. /* SYNC */
  2513. RCAR_GP_PIN(5, 24),
  2514. };
  2515. static const unsigned int msiof1_sync_f_mux[] = {
  2516. MSIOF1_SYNC_F_MARK,
  2517. };
  2518. static const unsigned int msiof1_ss1_f_pins[] = {
  2519. /* SS1 */
  2520. RCAR_GP_PIN(6, 1),
  2521. };
  2522. static const unsigned int msiof1_ss1_f_mux[] = {
  2523. MSIOF1_SS1_F_MARK,
  2524. };
  2525. static const unsigned int msiof1_ss2_f_pins[] = {
  2526. /* SS2 */
  2527. RCAR_GP_PIN(6, 2),
  2528. };
  2529. static const unsigned int msiof1_ss2_f_mux[] = {
  2530. MSIOF1_SS2_F_MARK,
  2531. };
  2532. static const unsigned int msiof1_txd_f_pins[] = {
  2533. /* TXD */
  2534. RCAR_GP_PIN(6, 0),
  2535. };
  2536. static const unsigned int msiof1_txd_f_mux[] = {
  2537. MSIOF1_TXD_F_MARK,
  2538. };
  2539. static const unsigned int msiof1_rxd_f_pins[] = {
  2540. /* RXD */
  2541. RCAR_GP_PIN(5, 25),
  2542. };
  2543. static const unsigned int msiof1_rxd_f_mux[] = {
  2544. MSIOF1_RXD_F_MARK,
  2545. };
  2546. static const unsigned int msiof1_clk_g_pins[] = {
  2547. /* SCK */
  2548. RCAR_GP_PIN(3, 6),
  2549. };
  2550. static const unsigned int msiof1_clk_g_mux[] = {
  2551. MSIOF1_SCK_G_MARK,
  2552. };
  2553. static const unsigned int msiof1_sync_g_pins[] = {
  2554. /* SYNC */
  2555. RCAR_GP_PIN(3, 7),
  2556. };
  2557. static const unsigned int msiof1_sync_g_mux[] = {
  2558. MSIOF1_SYNC_G_MARK,
  2559. };
  2560. static const unsigned int msiof1_ss1_g_pins[] = {
  2561. /* SS1 */
  2562. RCAR_GP_PIN(3, 10),
  2563. };
  2564. static const unsigned int msiof1_ss1_g_mux[] = {
  2565. MSIOF1_SS1_G_MARK,
  2566. };
  2567. static const unsigned int msiof1_ss2_g_pins[] = {
  2568. /* SS2 */
  2569. RCAR_GP_PIN(3, 11),
  2570. };
  2571. static const unsigned int msiof1_ss2_g_mux[] = {
  2572. MSIOF1_SS2_G_MARK,
  2573. };
  2574. static const unsigned int msiof1_txd_g_pins[] = {
  2575. /* TXD */
  2576. RCAR_GP_PIN(3, 9),
  2577. };
  2578. static const unsigned int msiof1_txd_g_mux[] = {
  2579. MSIOF1_TXD_G_MARK,
  2580. };
  2581. static const unsigned int msiof1_rxd_g_pins[] = {
  2582. /* RXD */
  2583. RCAR_GP_PIN(3, 8),
  2584. };
  2585. static const unsigned int msiof1_rxd_g_mux[] = {
  2586. MSIOF1_RXD_G_MARK,
  2587. };
  2588. /* - MSIOF2 ----------------------------------------------------------------- */
  2589. static const unsigned int msiof2_clk_a_pins[] = {
  2590. /* SCK */
  2591. RCAR_GP_PIN(1, 9),
  2592. };
  2593. static const unsigned int msiof2_clk_a_mux[] = {
  2594. MSIOF2_SCK_A_MARK,
  2595. };
  2596. static const unsigned int msiof2_sync_a_pins[] = {
  2597. /* SYNC */
  2598. RCAR_GP_PIN(1, 8),
  2599. };
  2600. static const unsigned int msiof2_sync_a_mux[] = {
  2601. MSIOF2_SYNC_A_MARK,
  2602. };
  2603. static const unsigned int msiof2_ss1_a_pins[] = {
  2604. /* SS1 */
  2605. RCAR_GP_PIN(1, 6),
  2606. };
  2607. static const unsigned int msiof2_ss1_a_mux[] = {
  2608. MSIOF2_SS1_A_MARK,
  2609. };
  2610. static const unsigned int msiof2_ss2_a_pins[] = {
  2611. /* SS2 */
  2612. RCAR_GP_PIN(1, 7),
  2613. };
  2614. static const unsigned int msiof2_ss2_a_mux[] = {
  2615. MSIOF2_SS2_A_MARK,
  2616. };
  2617. static const unsigned int msiof2_txd_a_pins[] = {
  2618. /* TXD */
  2619. RCAR_GP_PIN(1, 11),
  2620. };
  2621. static const unsigned int msiof2_txd_a_mux[] = {
  2622. MSIOF2_TXD_A_MARK,
  2623. };
  2624. static const unsigned int msiof2_rxd_a_pins[] = {
  2625. /* RXD */
  2626. RCAR_GP_PIN(1, 10),
  2627. };
  2628. static const unsigned int msiof2_rxd_a_mux[] = {
  2629. MSIOF2_RXD_A_MARK,
  2630. };
  2631. static const unsigned int msiof2_clk_b_pins[] = {
  2632. /* SCK */
  2633. RCAR_GP_PIN(0, 4),
  2634. };
  2635. static const unsigned int msiof2_clk_b_mux[] = {
  2636. MSIOF2_SCK_B_MARK,
  2637. };
  2638. static const unsigned int msiof2_sync_b_pins[] = {
  2639. /* SYNC */
  2640. RCAR_GP_PIN(0, 5),
  2641. };
  2642. static const unsigned int msiof2_sync_b_mux[] = {
  2643. MSIOF2_SYNC_B_MARK,
  2644. };
  2645. static const unsigned int msiof2_ss1_b_pins[] = {
  2646. /* SS1 */
  2647. RCAR_GP_PIN(0, 0),
  2648. };
  2649. static const unsigned int msiof2_ss1_b_mux[] = {
  2650. MSIOF2_SS1_B_MARK,
  2651. };
  2652. static const unsigned int msiof2_ss2_b_pins[] = {
  2653. /* SS2 */
  2654. RCAR_GP_PIN(0, 1),
  2655. };
  2656. static const unsigned int msiof2_ss2_b_mux[] = {
  2657. MSIOF2_SS2_B_MARK,
  2658. };
  2659. static const unsigned int msiof2_txd_b_pins[] = {
  2660. /* TXD */
  2661. RCAR_GP_PIN(0, 7),
  2662. };
  2663. static const unsigned int msiof2_txd_b_mux[] = {
  2664. MSIOF2_TXD_B_MARK,
  2665. };
  2666. static const unsigned int msiof2_rxd_b_pins[] = {
  2667. /* RXD */
  2668. RCAR_GP_PIN(0, 6),
  2669. };
  2670. static const unsigned int msiof2_rxd_b_mux[] = {
  2671. MSIOF2_RXD_B_MARK,
  2672. };
  2673. static const unsigned int msiof2_clk_c_pins[] = {
  2674. /* SCK */
  2675. RCAR_GP_PIN(2, 12),
  2676. };
  2677. static const unsigned int msiof2_clk_c_mux[] = {
  2678. MSIOF2_SCK_C_MARK,
  2679. };
  2680. static const unsigned int msiof2_sync_c_pins[] = {
  2681. /* SYNC */
  2682. RCAR_GP_PIN(2, 11),
  2683. };
  2684. static const unsigned int msiof2_sync_c_mux[] = {
  2685. MSIOF2_SYNC_C_MARK,
  2686. };
  2687. static const unsigned int msiof2_ss1_c_pins[] = {
  2688. /* SS1 */
  2689. RCAR_GP_PIN(2, 10),
  2690. };
  2691. static const unsigned int msiof2_ss1_c_mux[] = {
  2692. MSIOF2_SS1_C_MARK,
  2693. };
  2694. static const unsigned int msiof2_ss2_c_pins[] = {
  2695. /* SS2 */
  2696. RCAR_GP_PIN(2, 9),
  2697. };
  2698. static const unsigned int msiof2_ss2_c_mux[] = {
  2699. MSIOF2_SS2_C_MARK,
  2700. };
  2701. static const unsigned int msiof2_txd_c_pins[] = {
  2702. /* TXD */
  2703. RCAR_GP_PIN(2, 14),
  2704. };
  2705. static const unsigned int msiof2_txd_c_mux[] = {
  2706. MSIOF2_TXD_C_MARK,
  2707. };
  2708. static const unsigned int msiof2_rxd_c_pins[] = {
  2709. /* RXD */
  2710. RCAR_GP_PIN(2, 13),
  2711. };
  2712. static const unsigned int msiof2_rxd_c_mux[] = {
  2713. MSIOF2_RXD_C_MARK,
  2714. };
  2715. static const unsigned int msiof2_clk_d_pins[] = {
  2716. /* SCK */
  2717. RCAR_GP_PIN(0, 8),
  2718. };
  2719. static const unsigned int msiof2_clk_d_mux[] = {
  2720. MSIOF2_SCK_D_MARK,
  2721. };
  2722. static const unsigned int msiof2_sync_d_pins[] = {
  2723. /* SYNC */
  2724. RCAR_GP_PIN(0, 9),
  2725. };
  2726. static const unsigned int msiof2_sync_d_mux[] = {
  2727. MSIOF2_SYNC_D_MARK,
  2728. };
  2729. static const unsigned int msiof2_ss1_d_pins[] = {
  2730. /* SS1 */
  2731. RCAR_GP_PIN(0, 12),
  2732. };
  2733. static const unsigned int msiof2_ss1_d_mux[] = {
  2734. MSIOF2_SS1_D_MARK,
  2735. };
  2736. static const unsigned int msiof2_ss2_d_pins[] = {
  2737. /* SS2 */
  2738. RCAR_GP_PIN(0, 13),
  2739. };
  2740. static const unsigned int msiof2_ss2_d_mux[] = {
  2741. MSIOF2_SS2_D_MARK,
  2742. };
  2743. static const unsigned int msiof2_txd_d_pins[] = {
  2744. /* TXD */
  2745. RCAR_GP_PIN(0, 11),
  2746. };
  2747. static const unsigned int msiof2_txd_d_mux[] = {
  2748. MSIOF2_TXD_D_MARK,
  2749. };
  2750. static const unsigned int msiof2_rxd_d_pins[] = {
  2751. /* RXD */
  2752. RCAR_GP_PIN(0, 10),
  2753. };
  2754. static const unsigned int msiof2_rxd_d_mux[] = {
  2755. MSIOF2_RXD_D_MARK,
  2756. };
  2757. /* - MSIOF3 ----------------------------------------------------------------- */
  2758. static const unsigned int msiof3_clk_a_pins[] = {
  2759. /* SCK */
  2760. RCAR_GP_PIN(0, 0),
  2761. };
  2762. static const unsigned int msiof3_clk_a_mux[] = {
  2763. MSIOF3_SCK_A_MARK,
  2764. };
  2765. static const unsigned int msiof3_sync_a_pins[] = {
  2766. /* SYNC */
  2767. RCAR_GP_PIN(0, 1),
  2768. };
  2769. static const unsigned int msiof3_sync_a_mux[] = {
  2770. MSIOF3_SYNC_A_MARK,
  2771. };
  2772. static const unsigned int msiof3_ss1_a_pins[] = {
  2773. /* SS1 */
  2774. RCAR_GP_PIN(0, 14),
  2775. };
  2776. static const unsigned int msiof3_ss1_a_mux[] = {
  2777. MSIOF3_SS1_A_MARK,
  2778. };
  2779. static const unsigned int msiof3_ss2_a_pins[] = {
  2780. /* SS2 */
  2781. RCAR_GP_PIN(0, 15),
  2782. };
  2783. static const unsigned int msiof3_ss2_a_mux[] = {
  2784. MSIOF3_SS2_A_MARK,
  2785. };
  2786. static const unsigned int msiof3_txd_a_pins[] = {
  2787. /* TXD */
  2788. RCAR_GP_PIN(0, 3),
  2789. };
  2790. static const unsigned int msiof3_txd_a_mux[] = {
  2791. MSIOF3_TXD_A_MARK,
  2792. };
  2793. static const unsigned int msiof3_rxd_a_pins[] = {
  2794. /* RXD */
  2795. RCAR_GP_PIN(0, 2),
  2796. };
  2797. static const unsigned int msiof3_rxd_a_mux[] = {
  2798. MSIOF3_RXD_A_MARK,
  2799. };
  2800. static const unsigned int msiof3_clk_b_pins[] = {
  2801. /* SCK */
  2802. RCAR_GP_PIN(1, 2),
  2803. };
  2804. static const unsigned int msiof3_clk_b_mux[] = {
  2805. MSIOF3_SCK_B_MARK,
  2806. };
  2807. static const unsigned int msiof3_sync_b_pins[] = {
  2808. /* SYNC */
  2809. RCAR_GP_PIN(1, 0),
  2810. };
  2811. static const unsigned int msiof3_sync_b_mux[] = {
  2812. MSIOF3_SYNC_B_MARK,
  2813. };
  2814. static const unsigned int msiof3_ss1_b_pins[] = {
  2815. /* SS1 */
  2816. RCAR_GP_PIN(1, 4),
  2817. };
  2818. static const unsigned int msiof3_ss1_b_mux[] = {
  2819. MSIOF3_SS1_B_MARK,
  2820. };
  2821. static const unsigned int msiof3_ss2_b_pins[] = {
  2822. /* SS2 */
  2823. RCAR_GP_PIN(1, 5),
  2824. };
  2825. static const unsigned int msiof3_ss2_b_mux[] = {
  2826. MSIOF3_SS2_B_MARK,
  2827. };
  2828. static const unsigned int msiof3_txd_b_pins[] = {
  2829. /* TXD */
  2830. RCAR_GP_PIN(1, 1),
  2831. };
  2832. static const unsigned int msiof3_txd_b_mux[] = {
  2833. MSIOF3_TXD_B_MARK,
  2834. };
  2835. static const unsigned int msiof3_rxd_b_pins[] = {
  2836. /* RXD */
  2837. RCAR_GP_PIN(1, 3),
  2838. };
  2839. static const unsigned int msiof3_rxd_b_mux[] = {
  2840. MSIOF3_RXD_B_MARK,
  2841. };
  2842. static const unsigned int msiof3_clk_c_pins[] = {
  2843. /* SCK */
  2844. RCAR_GP_PIN(1, 12),
  2845. };
  2846. static const unsigned int msiof3_clk_c_mux[] = {
  2847. MSIOF3_SCK_C_MARK,
  2848. };
  2849. static const unsigned int msiof3_sync_c_pins[] = {
  2850. /* SYNC */
  2851. RCAR_GP_PIN(1, 13),
  2852. };
  2853. static const unsigned int msiof3_sync_c_mux[] = {
  2854. MSIOF3_SYNC_C_MARK,
  2855. };
  2856. static const unsigned int msiof3_txd_c_pins[] = {
  2857. /* TXD */
  2858. RCAR_GP_PIN(1, 15),
  2859. };
  2860. static const unsigned int msiof3_txd_c_mux[] = {
  2861. MSIOF3_TXD_C_MARK,
  2862. };
  2863. static const unsigned int msiof3_rxd_c_pins[] = {
  2864. /* RXD */
  2865. RCAR_GP_PIN(1, 14),
  2866. };
  2867. static const unsigned int msiof3_rxd_c_mux[] = {
  2868. MSIOF3_RXD_C_MARK,
  2869. };
  2870. static const unsigned int msiof3_clk_d_pins[] = {
  2871. /* SCK */
  2872. RCAR_GP_PIN(1, 22),
  2873. };
  2874. static const unsigned int msiof3_clk_d_mux[] = {
  2875. MSIOF3_SCK_D_MARK,
  2876. };
  2877. static const unsigned int msiof3_sync_d_pins[] = {
  2878. /* SYNC */
  2879. RCAR_GP_PIN(1, 23),
  2880. };
  2881. static const unsigned int msiof3_sync_d_mux[] = {
  2882. MSIOF3_SYNC_D_MARK,
  2883. };
  2884. static const unsigned int msiof3_ss1_d_pins[] = {
  2885. /* SS1 */
  2886. RCAR_GP_PIN(1, 26),
  2887. };
  2888. static const unsigned int msiof3_ss1_d_mux[] = {
  2889. MSIOF3_SS1_D_MARK,
  2890. };
  2891. static const unsigned int msiof3_txd_d_pins[] = {
  2892. /* TXD */
  2893. RCAR_GP_PIN(1, 25),
  2894. };
  2895. static const unsigned int msiof3_txd_d_mux[] = {
  2896. MSIOF3_TXD_D_MARK,
  2897. };
  2898. static const unsigned int msiof3_rxd_d_pins[] = {
  2899. /* RXD */
  2900. RCAR_GP_PIN(1, 24),
  2901. };
  2902. static const unsigned int msiof3_rxd_d_mux[] = {
  2903. MSIOF3_RXD_D_MARK,
  2904. };
  2905. static const unsigned int msiof3_clk_e_pins[] = {
  2906. /* SCK */
  2907. RCAR_GP_PIN(2, 3),
  2908. };
  2909. static const unsigned int msiof3_clk_e_mux[] = {
  2910. MSIOF3_SCK_E_MARK,
  2911. };
  2912. static const unsigned int msiof3_sync_e_pins[] = {
  2913. /* SYNC */
  2914. RCAR_GP_PIN(2, 2),
  2915. };
  2916. static const unsigned int msiof3_sync_e_mux[] = {
  2917. MSIOF3_SYNC_E_MARK,
  2918. };
  2919. static const unsigned int msiof3_ss1_e_pins[] = {
  2920. /* SS1 */
  2921. RCAR_GP_PIN(2, 1),
  2922. };
  2923. static const unsigned int msiof3_ss1_e_mux[] = {
  2924. MSIOF3_SS1_E_MARK,
  2925. };
  2926. static const unsigned int msiof3_ss2_e_pins[] = {
  2927. /* SS2 */
  2928. RCAR_GP_PIN(2, 0),
  2929. };
  2930. static const unsigned int msiof3_ss2_e_mux[] = {
  2931. MSIOF3_SS2_E_MARK,
  2932. };
  2933. static const unsigned int msiof3_txd_e_pins[] = {
  2934. /* TXD */
  2935. RCAR_GP_PIN(2, 5),
  2936. };
  2937. static const unsigned int msiof3_txd_e_mux[] = {
  2938. MSIOF3_TXD_E_MARK,
  2939. };
  2940. static const unsigned int msiof3_rxd_e_pins[] = {
  2941. /* RXD */
  2942. RCAR_GP_PIN(2, 4),
  2943. };
  2944. static const unsigned int msiof3_rxd_e_mux[] = {
  2945. MSIOF3_RXD_E_MARK,
  2946. };
  2947. /* - PWM0 --------------------------------------------------------------------*/
  2948. static const unsigned int pwm0_pins[] = {
  2949. /* PWM */
  2950. RCAR_GP_PIN(2, 6),
  2951. };
  2952. static const unsigned int pwm0_mux[] = {
  2953. PWM0_MARK,
  2954. };
  2955. /* - PWM1 --------------------------------------------------------------------*/
  2956. static const unsigned int pwm1_a_pins[] = {
  2957. /* PWM */
  2958. RCAR_GP_PIN(2, 7),
  2959. };
  2960. static const unsigned int pwm1_a_mux[] = {
  2961. PWM1_A_MARK,
  2962. };
  2963. static const unsigned int pwm1_b_pins[] = {
  2964. /* PWM */
  2965. RCAR_GP_PIN(1, 8),
  2966. };
  2967. static const unsigned int pwm1_b_mux[] = {
  2968. PWM1_B_MARK,
  2969. };
  2970. /* - PWM2 --------------------------------------------------------------------*/
  2971. static const unsigned int pwm2_a_pins[] = {
  2972. /* PWM */
  2973. RCAR_GP_PIN(2, 8),
  2974. };
  2975. static const unsigned int pwm2_a_mux[] = {
  2976. PWM2_A_MARK,
  2977. };
  2978. static const unsigned int pwm2_b_pins[] = {
  2979. /* PWM */
  2980. RCAR_GP_PIN(1, 11),
  2981. };
  2982. static const unsigned int pwm2_b_mux[] = {
  2983. PWM2_B_MARK,
  2984. };
  2985. /* - PWM3 --------------------------------------------------------------------*/
  2986. static const unsigned int pwm3_a_pins[] = {
  2987. /* PWM */
  2988. RCAR_GP_PIN(1, 0),
  2989. };
  2990. static const unsigned int pwm3_a_mux[] = {
  2991. PWM3_A_MARK,
  2992. };
  2993. static const unsigned int pwm3_b_pins[] = {
  2994. /* PWM */
  2995. RCAR_GP_PIN(2, 2),
  2996. };
  2997. static const unsigned int pwm3_b_mux[] = {
  2998. PWM3_B_MARK,
  2999. };
  3000. /* - PWM4 --------------------------------------------------------------------*/
  3001. static const unsigned int pwm4_a_pins[] = {
  3002. /* PWM */
  3003. RCAR_GP_PIN(1, 1),
  3004. };
  3005. static const unsigned int pwm4_a_mux[] = {
  3006. PWM4_A_MARK,
  3007. };
  3008. static const unsigned int pwm4_b_pins[] = {
  3009. /* PWM */
  3010. RCAR_GP_PIN(2, 3),
  3011. };
  3012. static const unsigned int pwm4_b_mux[] = {
  3013. PWM4_B_MARK,
  3014. };
  3015. /* - PWM5 --------------------------------------------------------------------*/
  3016. static const unsigned int pwm5_a_pins[] = {
  3017. /* PWM */
  3018. RCAR_GP_PIN(1, 2),
  3019. };
  3020. static const unsigned int pwm5_a_mux[] = {
  3021. PWM5_A_MARK,
  3022. };
  3023. static const unsigned int pwm5_b_pins[] = {
  3024. /* PWM */
  3025. RCAR_GP_PIN(2, 4),
  3026. };
  3027. static const unsigned int pwm5_b_mux[] = {
  3028. PWM5_B_MARK,
  3029. };
  3030. /* - PWM6 --------------------------------------------------------------------*/
  3031. static const unsigned int pwm6_a_pins[] = {
  3032. /* PWM */
  3033. RCAR_GP_PIN(1, 3),
  3034. };
  3035. static const unsigned int pwm6_a_mux[] = {
  3036. PWM6_A_MARK,
  3037. };
  3038. static const unsigned int pwm6_b_pins[] = {
  3039. /* PWM */
  3040. RCAR_GP_PIN(2, 5),
  3041. };
  3042. static const unsigned int pwm6_b_mux[] = {
  3043. PWM6_B_MARK,
  3044. };
  3045. /* - SATA --------------------------------------------------------------------*/
  3046. static const unsigned int sata0_devslp_a_pins[] = {
  3047. /* DEVSLP */
  3048. RCAR_GP_PIN(6, 16),
  3049. };
  3050. static const unsigned int sata0_devslp_a_mux[] = {
  3051. SATA_DEVSLP_A_MARK,
  3052. };
  3053. static const unsigned int sata0_devslp_b_pins[] = {
  3054. /* DEVSLP */
  3055. RCAR_GP_PIN(4, 6),
  3056. };
  3057. static const unsigned int sata0_devslp_b_mux[] = {
  3058. SATA_DEVSLP_B_MARK,
  3059. };
  3060. /* - SCIF0 ------------------------------------------------------------------ */
  3061. static const unsigned int scif0_data_pins[] = {
  3062. /* RX, TX */
  3063. RCAR_GP_PIN(5, 1), RCAR_GP_PIN(5, 2),
  3064. };
  3065. static const unsigned int scif0_data_mux[] = {
  3066. RX0_MARK, TX0_MARK,
  3067. };
  3068. static const unsigned int scif0_clk_pins[] = {
  3069. /* SCK */
  3070. RCAR_GP_PIN(5, 0),
  3071. };
  3072. static const unsigned int scif0_clk_mux[] = {
  3073. SCK0_MARK,
  3074. };
  3075. static const unsigned int scif0_ctrl_pins[] = {
  3076. /* RTS, CTS */
  3077. RCAR_GP_PIN(5, 4), RCAR_GP_PIN(5, 3),
  3078. };
  3079. static const unsigned int scif0_ctrl_mux[] = {
  3080. RTS0_N_MARK, CTS0_N_MARK,
  3081. };
  3082. /* - SCIF1 ------------------------------------------------------------------ */
  3083. static const unsigned int scif1_data_a_pins[] = {
  3084. /* RX, TX */
  3085. RCAR_GP_PIN(5, 5), RCAR_GP_PIN(5, 6),
  3086. };
  3087. static const unsigned int scif1_data_a_mux[] = {
  3088. RX1_A_MARK, TX1_A_MARK,
  3089. };
  3090. static const unsigned int scif1_clk_pins[] = {
  3091. /* SCK */
  3092. RCAR_GP_PIN(6, 21),
  3093. };
  3094. static const unsigned int scif1_clk_mux[] = {
  3095. SCK1_MARK,
  3096. };
  3097. static const unsigned int scif1_ctrl_pins[] = {
  3098. /* RTS, CTS */
  3099. RCAR_GP_PIN(5, 8), RCAR_GP_PIN(5, 7),
  3100. };
  3101. static const unsigned int scif1_ctrl_mux[] = {
  3102. RTS1_N_MARK, CTS1_N_MARK,
  3103. };
  3104. static const unsigned int scif1_data_b_pins[] = {
  3105. /* RX, TX */
  3106. RCAR_GP_PIN(5, 24), RCAR_GP_PIN(5, 25),
  3107. };
  3108. static const unsigned int scif1_data_b_mux[] = {
  3109. RX1_B_MARK, TX1_B_MARK,
  3110. };
  3111. /* - SCIF2 ------------------------------------------------------------------ */
  3112. static const unsigned int scif2_data_a_pins[] = {
  3113. /* RX, TX */
  3114. RCAR_GP_PIN(5, 11), RCAR_GP_PIN(5, 10),
  3115. };
  3116. static const unsigned int scif2_data_a_mux[] = {
  3117. RX2_A_MARK, TX2_A_MARK,
  3118. };
  3119. static const unsigned int scif2_clk_pins[] = {
  3120. /* SCK */
  3121. RCAR_GP_PIN(5, 9),
  3122. };
  3123. static const unsigned int scif2_clk_mux[] = {
  3124. SCK2_MARK,
  3125. };
  3126. static const unsigned int scif2_data_b_pins[] = {
  3127. /* RX, TX */
  3128. RCAR_GP_PIN(5, 15), RCAR_GP_PIN(5, 16),
  3129. };
  3130. static const unsigned int scif2_data_b_mux[] = {
  3131. RX2_B_MARK, TX2_B_MARK,
  3132. };
  3133. /* - SCIF3 ------------------------------------------------------------------ */
  3134. static const unsigned int scif3_data_a_pins[] = {
  3135. /* RX, TX */
  3136. RCAR_GP_PIN(1, 23), RCAR_GP_PIN(1, 24),
  3137. };
  3138. static const unsigned int scif3_data_a_mux[] = {
  3139. RX3_A_MARK, TX3_A_MARK,
  3140. };
  3141. static const unsigned int scif3_clk_pins[] = {
  3142. /* SCK */
  3143. RCAR_GP_PIN(1, 22),
  3144. };
  3145. static const unsigned int scif3_clk_mux[] = {
  3146. SCK3_MARK,
  3147. };
  3148. static const unsigned int scif3_ctrl_pins[] = {
  3149. /* RTS, CTS */
  3150. RCAR_GP_PIN(1, 26), RCAR_GP_PIN(1, 25),
  3151. };
  3152. static const unsigned int scif3_ctrl_mux[] = {
  3153. RTS3_N_MARK, CTS3_N_MARK,
  3154. };
  3155. static const unsigned int scif3_data_b_pins[] = {
  3156. /* RX, TX */
  3157. RCAR_GP_PIN(1, 8), RCAR_GP_PIN(1, 11),
  3158. };
  3159. static const unsigned int scif3_data_b_mux[] = {
  3160. RX3_B_MARK, TX3_B_MARK,
  3161. };
  3162. /* - SCIF4 ------------------------------------------------------------------ */
  3163. static const unsigned int scif4_data_a_pins[] = {
  3164. /* RX, TX */
  3165. RCAR_GP_PIN(2, 11), RCAR_GP_PIN(2, 12),
  3166. };
  3167. static const unsigned int scif4_data_a_mux[] = {
  3168. RX4_A_MARK, TX4_A_MARK,
  3169. };
  3170. static const unsigned int scif4_clk_a_pins[] = {
  3171. /* SCK */
  3172. RCAR_GP_PIN(2, 10),
  3173. };
  3174. static const unsigned int scif4_clk_a_mux[] = {
  3175. SCK4_A_MARK,
  3176. };
  3177. static const unsigned int scif4_ctrl_a_pins[] = {
  3178. /* RTS, CTS */
  3179. RCAR_GP_PIN(2, 14), RCAR_GP_PIN(2, 13),
  3180. };
  3181. static const unsigned int scif4_ctrl_a_mux[] = {
  3182. RTS4_N_A_MARK, CTS4_N_A_MARK,
  3183. };
  3184. static const unsigned int scif4_data_b_pins[] = {
  3185. /* RX, TX */
  3186. RCAR_GP_PIN(1, 6), RCAR_GP_PIN(1, 7),
  3187. };
  3188. static const unsigned int scif4_data_b_mux[] = {
  3189. RX4_B_MARK, TX4_B_MARK,
  3190. };
  3191. static const unsigned int scif4_clk_b_pins[] = {
  3192. /* SCK */
  3193. RCAR_GP_PIN(1, 5),
  3194. };
  3195. static const unsigned int scif4_clk_b_mux[] = {
  3196. SCK4_B_MARK,
  3197. };
  3198. static const unsigned int scif4_ctrl_b_pins[] = {
  3199. /* RTS, CTS */
  3200. RCAR_GP_PIN(1, 10), RCAR_GP_PIN(1, 9),
  3201. };
  3202. static const unsigned int scif4_ctrl_b_mux[] = {
  3203. RTS4_N_B_MARK, CTS4_N_B_MARK,
  3204. };
  3205. static const unsigned int scif4_data_c_pins[] = {
  3206. /* RX, TX */
  3207. RCAR_GP_PIN(0, 12), RCAR_GP_PIN(0, 13),
  3208. };
  3209. static const unsigned int scif4_data_c_mux[] = {
  3210. RX4_C_MARK, TX4_C_MARK,
  3211. };
  3212. static const unsigned int scif4_clk_c_pins[] = {
  3213. /* SCK */
  3214. RCAR_GP_PIN(0, 8),
  3215. };
  3216. static const unsigned int scif4_clk_c_mux[] = {
  3217. SCK4_C_MARK,
  3218. };
  3219. static const unsigned int scif4_ctrl_c_pins[] = {
  3220. /* RTS, CTS */
  3221. RCAR_GP_PIN(0, 11), RCAR_GP_PIN(0, 10),
  3222. };
  3223. static const unsigned int scif4_ctrl_c_mux[] = {
  3224. RTS4_N_C_MARK, CTS4_N_C_MARK,
  3225. };
  3226. /* - SCIF5 ------------------------------------------------------------------ */
  3227. static const unsigned int scif5_data_a_pins[] = {
  3228. /* RX, TX */
  3229. RCAR_GP_PIN(5, 19), RCAR_GP_PIN(5, 21),
  3230. };
  3231. static const unsigned int scif5_data_a_mux[] = {
  3232. RX5_A_MARK, TX5_A_MARK,
  3233. };
  3234. static const unsigned int scif5_clk_a_pins[] = {
  3235. /* SCK */
  3236. RCAR_GP_PIN(6, 21),
  3237. };
  3238. static const unsigned int scif5_clk_a_mux[] = {
  3239. SCK5_A_MARK,
  3240. };
  3241. static const unsigned int scif5_data_b_pins[] = {
  3242. /* RX, TX */
  3243. RCAR_GP_PIN(5, 12), RCAR_GP_PIN(5, 18),
  3244. };
  3245. static const unsigned int scif5_data_b_mux[] = {
  3246. RX5_B_MARK, TX5_B_MARK,
  3247. };
  3248. static const unsigned int scif5_clk_b_pins[] = {
  3249. /* SCK */
  3250. RCAR_GP_PIN(5, 0),
  3251. };
  3252. static const unsigned int scif5_clk_b_mux[] = {
  3253. SCK5_B_MARK,
  3254. };
  3255. /* - SCIF Clock ------------------------------------------------------------- */
  3256. static const unsigned int scif_clk_a_pins[] = {
  3257. /* SCIF_CLK */
  3258. RCAR_GP_PIN(6, 23),
  3259. };
  3260. static const unsigned int scif_clk_a_mux[] = {
  3261. SCIF_CLK_A_MARK,
  3262. };
  3263. static const unsigned int scif_clk_b_pins[] = {
  3264. /* SCIF_CLK */
  3265. RCAR_GP_PIN(5, 9),
  3266. };
  3267. static const unsigned int scif_clk_b_mux[] = {
  3268. SCIF_CLK_B_MARK,
  3269. };
  3270. /* - SDHI0 ------------------------------------------------------------------ */
  3271. static const unsigned int sdhi0_data1_pins[] = {
  3272. /* D0 */
  3273. RCAR_GP_PIN(3, 2),
  3274. };
  3275. static const unsigned int sdhi0_data1_mux[] = {
  3276. SD0_DAT0_MARK,
  3277. };
  3278. static const unsigned int sdhi0_data4_pins[] = {
  3279. /* D[0:3] */
  3280. RCAR_GP_PIN(3, 2), RCAR_GP_PIN(3, 3),
  3281. RCAR_GP_PIN(3, 4), RCAR_GP_PIN(3, 5),
  3282. };
  3283. static const unsigned int sdhi0_data4_mux[] = {
  3284. SD0_DAT0_MARK, SD0_DAT1_MARK,
  3285. SD0_DAT2_MARK, SD0_DAT3_MARK,
  3286. };
  3287. static const unsigned int sdhi0_ctrl_pins[] = {
  3288. /* CLK, CMD */
  3289. RCAR_GP_PIN(3, 0), RCAR_GP_PIN(3, 1),
  3290. };
  3291. static const unsigned int sdhi0_ctrl_mux[] = {
  3292. SD0_CLK_MARK, SD0_CMD_MARK,
  3293. };
  3294. static const unsigned int sdhi0_cd_pins[] = {
  3295. /* CD */
  3296. RCAR_GP_PIN(3, 12),
  3297. };
  3298. static const unsigned int sdhi0_cd_mux[] = {
  3299. SD0_CD_MARK,
  3300. };
  3301. static const unsigned int sdhi0_wp_pins[] = {
  3302. /* WP */
  3303. RCAR_GP_PIN(3, 13),
  3304. };
  3305. static const unsigned int sdhi0_wp_mux[] = {
  3306. SD0_WP_MARK,
  3307. };
  3308. /* - SDHI1 ------------------------------------------------------------------ */
  3309. static const unsigned int sdhi1_data1_pins[] = {
  3310. /* D0 */
  3311. RCAR_GP_PIN(3, 8),
  3312. };
  3313. static const unsigned int sdhi1_data1_mux[] = {
  3314. SD1_DAT0_MARK,
  3315. };
  3316. static const unsigned int sdhi1_data4_pins[] = {
  3317. /* D[0:3] */
  3318. RCAR_GP_PIN(3, 8), RCAR_GP_PIN(3, 9),
  3319. RCAR_GP_PIN(3, 10), RCAR_GP_PIN(3, 11),
  3320. };
  3321. static const unsigned int sdhi1_data4_mux[] = {
  3322. SD1_DAT0_MARK, SD1_DAT1_MARK,
  3323. SD1_DAT2_MARK, SD1_DAT3_MARK,
  3324. };
  3325. static const unsigned int sdhi1_ctrl_pins[] = {
  3326. /* CLK, CMD */
  3327. RCAR_GP_PIN(3, 6), RCAR_GP_PIN(3, 7),
  3328. };
  3329. static const unsigned int sdhi1_ctrl_mux[] = {
  3330. SD1_CLK_MARK, SD1_CMD_MARK,
  3331. };
  3332. static const unsigned int sdhi1_cd_pins[] = {
  3333. /* CD */
  3334. RCAR_GP_PIN(3, 14),
  3335. };
  3336. static const unsigned int sdhi1_cd_mux[] = {
  3337. SD1_CD_MARK,
  3338. };
  3339. static const unsigned int sdhi1_wp_pins[] = {
  3340. /* WP */
  3341. RCAR_GP_PIN(3, 15),
  3342. };
  3343. static const unsigned int sdhi1_wp_mux[] = {
  3344. SD1_WP_MARK,
  3345. };
  3346. /* - SDHI2 ------------------------------------------------------------------ */
  3347. static const unsigned int sdhi2_data1_pins[] = {
  3348. /* D0 */
  3349. RCAR_GP_PIN(4, 2),
  3350. };
  3351. static const unsigned int sdhi2_data1_mux[] = {
  3352. SD2_DAT0_MARK,
  3353. };
  3354. static const unsigned int sdhi2_data4_pins[] = {
  3355. /* D[0:3] */
  3356. RCAR_GP_PIN(4, 2), RCAR_GP_PIN(4, 3),
  3357. RCAR_GP_PIN(4, 4), RCAR_GP_PIN(4, 5),
  3358. };
  3359. static const unsigned int sdhi2_data4_mux[] = {
  3360. SD2_DAT0_MARK, SD2_DAT1_MARK,
  3361. SD2_DAT2_MARK, SD2_DAT3_MARK,
  3362. };
  3363. static const unsigned int sdhi2_data8_pins[] = {
  3364. /* D[0:7] */
  3365. RCAR_GP_PIN(4, 2), RCAR_GP_PIN(4, 3),
  3366. RCAR_GP_PIN(4, 4), RCAR_GP_PIN(4, 5),
  3367. RCAR_GP_PIN(3, 8), RCAR_GP_PIN(3, 9),
  3368. RCAR_GP_PIN(3, 10), RCAR_GP_PIN(3, 11),
  3369. };
  3370. static const unsigned int sdhi2_data8_mux[] = {
  3371. SD2_DAT0_MARK, SD2_DAT1_MARK,
  3372. SD2_DAT2_MARK, SD2_DAT3_MARK,
  3373. SD2_DAT4_MARK, SD2_DAT5_MARK,
  3374. SD2_DAT6_MARK, SD2_DAT7_MARK,
  3375. };
  3376. static const unsigned int sdhi2_ctrl_pins[] = {
  3377. /* CLK, CMD */
  3378. RCAR_GP_PIN(4, 0), RCAR_GP_PIN(4, 1),
  3379. };
  3380. static const unsigned int sdhi2_ctrl_mux[] = {
  3381. SD2_CLK_MARK, SD2_CMD_MARK,
  3382. };
  3383. static const unsigned int sdhi2_cd_a_pins[] = {
  3384. /* CD */
  3385. RCAR_GP_PIN(4, 13),
  3386. };
  3387. static const unsigned int sdhi2_cd_a_mux[] = {
  3388. SD2_CD_A_MARK,
  3389. };
  3390. static const unsigned int sdhi2_cd_b_pins[] = {
  3391. /* CD */
  3392. RCAR_GP_PIN(5, 10),
  3393. };
  3394. static const unsigned int sdhi2_cd_b_mux[] = {
  3395. SD2_CD_B_MARK,
  3396. };
  3397. static const unsigned int sdhi2_wp_a_pins[] = {
  3398. /* WP */
  3399. RCAR_GP_PIN(4, 14),
  3400. };
  3401. static const unsigned int sdhi2_wp_a_mux[] = {
  3402. SD2_WP_A_MARK,
  3403. };
  3404. static const unsigned int sdhi2_wp_b_pins[] = {
  3405. /* WP */
  3406. RCAR_GP_PIN(5, 11),
  3407. };
  3408. static const unsigned int sdhi2_wp_b_mux[] = {
  3409. SD2_WP_B_MARK,
  3410. };
  3411. static const unsigned int sdhi2_ds_pins[] = {
  3412. /* DS */
  3413. RCAR_GP_PIN(4, 6),
  3414. };
  3415. static const unsigned int sdhi2_ds_mux[] = {
  3416. SD2_DS_MARK,
  3417. };
  3418. /* - SDHI3 ------------------------------------------------------------------ */
  3419. static const unsigned int sdhi3_data1_pins[] = {
  3420. /* D0 */
  3421. RCAR_GP_PIN(4, 9),
  3422. };
  3423. static const unsigned int sdhi3_data1_mux[] = {
  3424. SD3_DAT0_MARK,
  3425. };
  3426. static const unsigned int sdhi3_data4_pins[] = {
  3427. /* D[0:3] */
  3428. RCAR_GP_PIN(4, 9), RCAR_GP_PIN(4, 10),
  3429. RCAR_GP_PIN(4, 11), RCAR_GP_PIN(4, 12),
  3430. };
  3431. static const unsigned int sdhi3_data4_mux[] = {
  3432. SD3_DAT0_MARK, SD3_DAT1_MARK,
  3433. SD3_DAT2_MARK, SD3_DAT3_MARK,
  3434. };
  3435. static const unsigned int sdhi3_data8_pins[] = {
  3436. /* D[0:7] */
  3437. RCAR_GP_PIN(4, 9), RCAR_GP_PIN(4, 10),
  3438. RCAR_GP_PIN(4, 11), RCAR_GP_PIN(4, 12),
  3439. RCAR_GP_PIN(4, 13), RCAR_GP_PIN(4, 14),
  3440. RCAR_GP_PIN(4, 15), RCAR_GP_PIN(4, 16),
  3441. };
  3442. static const unsigned int sdhi3_data8_mux[] = {
  3443. SD3_DAT0_MARK, SD3_DAT1_MARK,
  3444. SD3_DAT2_MARK, SD3_DAT3_MARK,
  3445. SD3_DAT4_MARK, SD3_DAT5_MARK,
  3446. SD3_DAT6_MARK, SD3_DAT7_MARK,
  3447. };
  3448. static const unsigned int sdhi3_ctrl_pins[] = {
  3449. /* CLK, CMD */
  3450. RCAR_GP_PIN(4, 7), RCAR_GP_PIN(4, 8),
  3451. };
  3452. static const unsigned int sdhi3_ctrl_mux[] = {
  3453. SD3_CLK_MARK, SD3_CMD_MARK,
  3454. };
  3455. static const unsigned int sdhi3_cd_pins[] = {
  3456. /* CD */
  3457. RCAR_GP_PIN(4, 15),
  3458. };
  3459. static const unsigned int sdhi3_cd_mux[] = {
  3460. SD3_CD_MARK,
  3461. };
  3462. static const unsigned int sdhi3_wp_pins[] = {
  3463. /* WP */
  3464. RCAR_GP_PIN(4, 16),
  3465. };
  3466. static const unsigned int sdhi3_wp_mux[] = {
  3467. SD3_WP_MARK,
  3468. };
  3469. static const unsigned int sdhi3_ds_pins[] = {
  3470. /* DS */
  3471. RCAR_GP_PIN(4, 17),
  3472. };
  3473. static const unsigned int sdhi3_ds_mux[] = {
  3474. SD3_DS_MARK,
  3475. };
  3476. /* - SSI -------------------------------------------------------------------- */
  3477. static const unsigned int ssi0_data_pins[] = {
  3478. /* SDATA */
  3479. RCAR_GP_PIN(6, 2),
  3480. };
  3481. static const unsigned int ssi0_data_mux[] = {
  3482. SSI_SDATA0_MARK,
  3483. };
  3484. static const unsigned int ssi01239_ctrl_pins[] = {
  3485. /* SCK, WS */
  3486. RCAR_GP_PIN(6, 0), RCAR_GP_PIN(6, 1),
  3487. };
  3488. static const unsigned int ssi01239_ctrl_mux[] = {
  3489. SSI_SCK01239_MARK, SSI_WS01239_MARK,
  3490. };
  3491. static const unsigned int ssi1_data_a_pins[] = {
  3492. /* SDATA */
  3493. RCAR_GP_PIN(6, 3),
  3494. };
  3495. static const unsigned int ssi1_data_a_mux[] = {
  3496. SSI_SDATA1_A_MARK,
  3497. };
  3498. static const unsigned int ssi1_data_b_pins[] = {
  3499. /* SDATA */
  3500. RCAR_GP_PIN(5, 12),
  3501. };
  3502. static const unsigned int ssi1_data_b_mux[] = {
  3503. SSI_SDATA1_B_MARK,
  3504. };
  3505. static const unsigned int ssi1_ctrl_a_pins[] = {
  3506. /* SCK, WS */
  3507. RCAR_GP_PIN(6, 26), RCAR_GP_PIN(6, 27),
  3508. };
  3509. static const unsigned int ssi1_ctrl_a_mux[] = {
  3510. SSI_SCK1_A_MARK, SSI_WS1_A_MARK,
  3511. };
  3512. static const unsigned int ssi1_ctrl_b_pins[] = {
  3513. /* SCK, WS */
  3514. RCAR_GP_PIN(6, 4), RCAR_GP_PIN(6, 21),
  3515. };
  3516. static const unsigned int ssi1_ctrl_b_mux[] = {
  3517. SSI_SCK1_B_MARK, SSI_WS1_B_MARK,
  3518. };
  3519. static const unsigned int ssi2_data_a_pins[] = {
  3520. /* SDATA */
  3521. RCAR_GP_PIN(6, 4),
  3522. };
  3523. static const unsigned int ssi2_data_a_mux[] = {
  3524. SSI_SDATA2_A_MARK,
  3525. };
  3526. static const unsigned int ssi2_data_b_pins[] = {
  3527. /* SDATA */
  3528. RCAR_GP_PIN(5, 13),
  3529. };
  3530. static const unsigned int ssi2_data_b_mux[] = {
  3531. SSI_SDATA2_B_MARK,
  3532. };
  3533. static const unsigned int ssi2_ctrl_a_pins[] = {
  3534. /* SCK, WS */
  3535. RCAR_GP_PIN(5, 19), RCAR_GP_PIN(5, 21),
  3536. };
  3537. static const unsigned int ssi2_ctrl_a_mux[] = {
  3538. SSI_SCK2_A_MARK, SSI_WS2_A_MARK,
  3539. };
  3540. static const unsigned int ssi2_ctrl_b_pins[] = {
  3541. /* SCK, WS */
  3542. RCAR_GP_PIN(6, 28), RCAR_GP_PIN(6, 29),
  3543. };
  3544. static const unsigned int ssi2_ctrl_b_mux[] = {
  3545. SSI_SCK2_B_MARK, SSI_WS2_B_MARK,
  3546. };
  3547. static const unsigned int ssi3_data_pins[] = {
  3548. /* SDATA */
  3549. RCAR_GP_PIN(6, 7),
  3550. };
  3551. static const unsigned int ssi3_data_mux[] = {
  3552. SSI_SDATA3_MARK,
  3553. };
  3554. static const unsigned int ssi349_ctrl_pins[] = {
  3555. /* SCK, WS */
  3556. RCAR_GP_PIN(6, 5), RCAR_GP_PIN(6, 6),
  3557. };
  3558. static const unsigned int ssi349_ctrl_mux[] = {
  3559. SSI_SCK349_MARK, SSI_WS349_MARK,
  3560. };
  3561. static const unsigned int ssi4_data_pins[] = {
  3562. /* SDATA */
  3563. RCAR_GP_PIN(6, 10),
  3564. };
  3565. static const unsigned int ssi4_data_mux[] = {
  3566. SSI_SDATA4_MARK,
  3567. };
  3568. static const unsigned int ssi4_ctrl_pins[] = {
  3569. /* SCK, WS */
  3570. RCAR_GP_PIN(6, 8), RCAR_GP_PIN(6, 9),
  3571. };
  3572. static const unsigned int ssi4_ctrl_mux[] = {
  3573. SSI_SCK4_MARK, SSI_WS4_MARK,
  3574. };
  3575. static const unsigned int ssi5_data_pins[] = {
  3576. /* SDATA */
  3577. RCAR_GP_PIN(6, 13),
  3578. };
  3579. static const unsigned int ssi5_data_mux[] = {
  3580. SSI_SDATA5_MARK,
  3581. };
  3582. static const unsigned int ssi5_ctrl_pins[] = {
  3583. /* SCK, WS */
  3584. RCAR_GP_PIN(6, 11), RCAR_GP_PIN(6, 12),
  3585. };
  3586. static const unsigned int ssi5_ctrl_mux[] = {
  3587. SSI_SCK5_MARK, SSI_WS5_MARK,
  3588. };
  3589. static const unsigned int ssi6_data_pins[] = {
  3590. /* SDATA */
  3591. RCAR_GP_PIN(6, 16),
  3592. };
  3593. static const unsigned int ssi6_data_mux[] = {
  3594. SSI_SDATA6_MARK,
  3595. };
  3596. static const unsigned int ssi6_ctrl_pins[] = {
  3597. /* SCK, WS */
  3598. RCAR_GP_PIN(6, 14), RCAR_GP_PIN(6, 15),
  3599. };
  3600. static const unsigned int ssi6_ctrl_mux[] = {
  3601. SSI_SCK6_MARK, SSI_WS6_MARK,
  3602. };
  3603. static const unsigned int ssi7_data_pins[] = {
  3604. /* SDATA */
  3605. RCAR_GP_PIN(6, 19),
  3606. };
  3607. static const unsigned int ssi7_data_mux[] = {
  3608. SSI_SDATA7_MARK,
  3609. };
  3610. static const unsigned int ssi78_ctrl_pins[] = {
  3611. /* SCK, WS */
  3612. RCAR_GP_PIN(6, 17), RCAR_GP_PIN(6, 18),
  3613. };
  3614. static const unsigned int ssi78_ctrl_mux[] = {
  3615. SSI_SCK78_MARK, SSI_WS78_MARK,
  3616. };
  3617. static const unsigned int ssi8_data_pins[] = {
  3618. /* SDATA */
  3619. RCAR_GP_PIN(6, 20),
  3620. };
  3621. static const unsigned int ssi8_data_mux[] = {
  3622. SSI_SDATA8_MARK,
  3623. };
  3624. static const unsigned int ssi9_data_a_pins[] = {
  3625. /* SDATA */
  3626. RCAR_GP_PIN(6, 21),
  3627. };
  3628. static const unsigned int ssi9_data_a_mux[] = {
  3629. SSI_SDATA9_A_MARK,
  3630. };
  3631. static const unsigned int ssi9_data_b_pins[] = {
  3632. /* SDATA */
  3633. RCAR_GP_PIN(5, 14),
  3634. };
  3635. static const unsigned int ssi9_data_b_mux[] = {
  3636. SSI_SDATA9_B_MARK,
  3637. };
  3638. static const unsigned int ssi9_ctrl_a_pins[] = {
  3639. /* SCK, WS */
  3640. RCAR_GP_PIN(5, 15), RCAR_GP_PIN(5, 16),
  3641. };
  3642. static const unsigned int ssi9_ctrl_a_mux[] = {
  3643. SSI_SCK9_A_MARK, SSI_WS9_A_MARK,
  3644. };
  3645. static const unsigned int ssi9_ctrl_b_pins[] = {
  3646. /* SCK, WS */
  3647. RCAR_GP_PIN(6, 30), RCAR_GP_PIN(6, 31),
  3648. };
  3649. static const unsigned int ssi9_ctrl_b_mux[] = {
  3650. SSI_SCK9_B_MARK, SSI_WS9_B_MARK,
  3651. };
  3652. /* - TMU -------------------------------------------------------------------- */
  3653. static const unsigned int tmu_tclk1_a_pins[] = {
  3654. /* TCLK */
  3655. RCAR_GP_PIN(6, 23),
  3656. };
  3657. static const unsigned int tmu_tclk1_a_mux[] = {
  3658. TCLK1_A_MARK,
  3659. };
  3660. static const unsigned int tmu_tclk1_b_pins[] = {
  3661. /* TCLK */
  3662. RCAR_GP_PIN(5, 19),
  3663. };
  3664. static const unsigned int tmu_tclk1_b_mux[] = {
  3665. TCLK1_B_MARK,
  3666. };
  3667. static const unsigned int tmu_tclk2_a_pins[] = {
  3668. /* TCLK */
  3669. RCAR_GP_PIN(6, 19),
  3670. };
  3671. static const unsigned int tmu_tclk2_a_mux[] = {
  3672. TCLK2_A_MARK,
  3673. };
  3674. static const unsigned int tmu_tclk2_b_pins[] = {
  3675. /* TCLK */
  3676. RCAR_GP_PIN(6, 28),
  3677. };
  3678. static const unsigned int tmu_tclk2_b_mux[] = {
  3679. TCLK2_B_MARK,
  3680. };
  3681. /* - USB0 ------------------------------------------------------------------- */
  3682. static const unsigned int usb0_pins[] = {
  3683. /* PWEN, OVC */
  3684. RCAR_GP_PIN(6, 24), RCAR_GP_PIN(6, 25),
  3685. };
  3686. static const unsigned int usb0_mux[] = {
  3687. USB0_PWEN_MARK, USB0_OVC_MARK,
  3688. };
  3689. /* - USB1 ------------------------------------------------------------------- */
  3690. static const unsigned int usb1_pins[] = {
  3691. /* PWEN, OVC */
  3692. RCAR_GP_PIN(6, 26), RCAR_GP_PIN(6, 27),
  3693. };
  3694. static const unsigned int usb1_mux[] = {
  3695. USB1_PWEN_MARK, USB1_OVC_MARK,
  3696. };
  3697. /* - USB2 ------------------------------------------------------------------- */
  3698. static const unsigned int usb2_pins[] = {
  3699. /* PWEN, OVC */
  3700. RCAR_GP_PIN(6, 14), RCAR_GP_PIN(6, 15),
  3701. };
  3702. static const unsigned int usb2_mux[] = {
  3703. USB2_PWEN_MARK, USB2_OVC_MARK,
  3704. };
  3705. /* - USB2_CH3 --------------------------------------------------------------- */
  3706. static const unsigned int usb2_ch3_pins[] = {
  3707. /* PWEN, OVC */
  3708. RCAR_GP_PIN(6, 30), RCAR_GP_PIN(6, 31),
  3709. };
  3710. static const unsigned int usb2_ch3_mux[] = {
  3711. USB2_CH3_PWEN_MARK, USB2_CH3_OVC_MARK,
  3712. };
  3713. /* - USB30 ------------------------------------------------------------------ */
  3714. static const unsigned int usb30_pins[] = {
  3715. /* PWEN, OVC */
  3716. RCAR_GP_PIN(6, 28), RCAR_GP_PIN(6, 29),
  3717. };
  3718. static const unsigned int usb30_mux[] = {
  3719. USB30_PWEN_MARK, USB30_OVC_MARK,
  3720. };
  3721. /* - VIN4 ------------------------------------------------------------------- */
  3722. static const unsigned int vin4_data18_a_pins[] = {
  3723. RCAR_GP_PIN(0, 10), RCAR_GP_PIN(0, 11),
  3724. RCAR_GP_PIN(0, 12), RCAR_GP_PIN(0, 13),
  3725. RCAR_GP_PIN(0, 14), RCAR_GP_PIN(0, 15),
  3726. RCAR_GP_PIN(1, 2), RCAR_GP_PIN(1, 3),
  3727. RCAR_GP_PIN(1, 4), RCAR_GP_PIN(1, 5),
  3728. RCAR_GP_PIN(1, 6), RCAR_GP_PIN(1, 7),
  3729. RCAR_GP_PIN(0, 2), RCAR_GP_PIN(0, 3),
  3730. RCAR_GP_PIN(0, 4), RCAR_GP_PIN(0, 5),
  3731. RCAR_GP_PIN(0, 6), RCAR_GP_PIN(0, 7),
  3732. };
  3733. static const unsigned int vin4_data18_a_mux[] = {
  3734. VI4_DATA2_A_MARK, VI4_DATA3_A_MARK,
  3735. VI4_DATA4_A_MARK, VI4_DATA5_A_MARK,
  3736. VI4_DATA6_A_MARK, VI4_DATA7_A_MARK,
  3737. VI4_DATA10_MARK, VI4_DATA11_MARK,
  3738. VI4_DATA12_MARK, VI4_DATA13_MARK,
  3739. VI4_DATA14_MARK, VI4_DATA15_MARK,
  3740. VI4_DATA18_MARK, VI4_DATA19_MARK,
  3741. VI4_DATA20_MARK, VI4_DATA21_MARK,
  3742. VI4_DATA22_MARK, VI4_DATA23_MARK,
  3743. };
  3744. static const unsigned int vin4_data18_b_pins[] = {
  3745. RCAR_GP_PIN(2, 2), RCAR_GP_PIN(2, 3),
  3746. RCAR_GP_PIN(2, 4), RCAR_GP_PIN(2, 5),
  3747. RCAR_GP_PIN(2, 6), RCAR_GP_PIN(2, 7),
  3748. RCAR_GP_PIN(1, 2), RCAR_GP_PIN(1, 3),
  3749. RCAR_GP_PIN(1, 4), RCAR_GP_PIN(1, 5),
  3750. RCAR_GP_PIN(1, 6), RCAR_GP_PIN(1, 7),
  3751. RCAR_GP_PIN(0, 2), RCAR_GP_PIN(0, 3),
  3752. RCAR_GP_PIN(0, 4), RCAR_GP_PIN(0, 5),
  3753. RCAR_GP_PIN(0, 6), RCAR_GP_PIN(0, 7),
  3754. };
  3755. static const unsigned int vin4_data18_b_mux[] = {
  3756. VI4_DATA2_B_MARK, VI4_DATA3_B_MARK,
  3757. VI4_DATA4_B_MARK, VI4_DATA5_B_MARK,
  3758. VI4_DATA6_B_MARK, VI4_DATA7_B_MARK,
  3759. VI4_DATA10_MARK, VI4_DATA11_MARK,
  3760. VI4_DATA12_MARK, VI4_DATA13_MARK,
  3761. VI4_DATA14_MARK, VI4_DATA15_MARK,
  3762. VI4_DATA18_MARK, VI4_DATA19_MARK,
  3763. VI4_DATA20_MARK, VI4_DATA21_MARK,
  3764. VI4_DATA22_MARK, VI4_DATA23_MARK,
  3765. };
  3766. static const union vin_data vin4_data_a_pins = {
  3767. .data24 = {
  3768. RCAR_GP_PIN(0, 8), RCAR_GP_PIN(0, 9),
  3769. RCAR_GP_PIN(0, 10), RCAR_GP_PIN(0, 11),
  3770. RCAR_GP_PIN(0, 12), RCAR_GP_PIN(0, 13),
  3771. RCAR_GP_PIN(0, 14), RCAR_GP_PIN(0, 15),
  3772. RCAR_GP_PIN(1, 0), RCAR_GP_PIN(1, 1),
  3773. RCAR_GP_PIN(1, 2), RCAR_GP_PIN(1, 3),
  3774. RCAR_GP_PIN(1, 4), RCAR_GP_PIN(1, 5),
  3775. RCAR_GP_PIN(1, 6), RCAR_GP_PIN(1, 7),
  3776. RCAR_GP_PIN(0, 0), RCAR_GP_PIN(0, 1),
  3777. RCAR_GP_PIN(0, 2), RCAR_GP_PIN(0, 3),
  3778. RCAR_GP_PIN(0, 4), RCAR_GP_PIN(0, 5),
  3779. RCAR_GP_PIN(0, 6), RCAR_GP_PIN(0, 7),
  3780. },
  3781. };
  3782. static const union vin_data vin4_data_a_mux = {
  3783. .data24 = {
  3784. VI4_DATA0_A_MARK, VI4_DATA1_A_MARK,
  3785. VI4_DATA2_A_MARK, VI4_DATA3_A_MARK,
  3786. VI4_DATA4_A_MARK, VI4_DATA5_A_MARK,
  3787. VI4_DATA6_A_MARK, VI4_DATA7_A_MARK,
  3788. VI4_DATA8_MARK, VI4_DATA9_MARK,
  3789. VI4_DATA10_MARK, VI4_DATA11_MARK,
  3790. VI4_DATA12_MARK, VI4_DATA13_MARK,
  3791. VI4_DATA14_MARK, VI4_DATA15_MARK,
  3792. VI4_DATA16_MARK, VI4_DATA17_MARK,
  3793. VI4_DATA18_MARK, VI4_DATA19_MARK,
  3794. VI4_DATA20_MARK, VI4_DATA21_MARK,
  3795. VI4_DATA22_MARK, VI4_DATA23_MARK,
  3796. },
  3797. };
  3798. static const union vin_data vin4_data_b_pins = {
  3799. .data24 = {
  3800. RCAR_GP_PIN(2, 0), RCAR_GP_PIN(2, 1),
  3801. RCAR_GP_PIN(2, 2), RCAR_GP_PIN(2, 3),
  3802. RCAR_GP_PIN(2, 4), RCAR_GP_PIN(2, 5),
  3803. RCAR_GP_PIN(2, 6), RCAR_GP_PIN(2, 7),
  3804. RCAR_GP_PIN(1, 0), RCAR_GP_PIN(1, 1),
  3805. RCAR_GP_PIN(1, 2), RCAR_GP_PIN(1, 3),
  3806. RCAR_GP_PIN(1, 4), RCAR_GP_PIN(1, 5),
  3807. RCAR_GP_PIN(1, 6), RCAR_GP_PIN(1, 7),
  3808. RCAR_GP_PIN(0, 0), RCAR_GP_PIN(0, 1),
  3809. RCAR_GP_PIN(0, 2), RCAR_GP_PIN(0, 3),
  3810. RCAR_GP_PIN(0, 4), RCAR_GP_PIN(0, 5),
  3811. RCAR_GP_PIN(0, 6), RCAR_GP_PIN(0, 7),
  3812. },
  3813. };
  3814. static const union vin_data vin4_data_b_mux = {
  3815. .data24 = {
  3816. VI4_DATA0_B_MARK, VI4_DATA1_B_MARK,
  3817. VI4_DATA2_B_MARK, VI4_DATA3_B_MARK,
  3818. VI4_DATA4_B_MARK, VI4_DATA5_B_MARK,
  3819. VI4_DATA6_B_MARK, VI4_DATA7_B_MARK,
  3820. VI4_DATA8_MARK, VI4_DATA9_MARK,
  3821. VI4_DATA10_MARK, VI4_DATA11_MARK,
  3822. VI4_DATA12_MARK, VI4_DATA13_MARK,
  3823. VI4_DATA14_MARK, VI4_DATA15_MARK,
  3824. VI4_DATA16_MARK, VI4_DATA17_MARK,
  3825. VI4_DATA18_MARK, VI4_DATA19_MARK,
  3826. VI4_DATA20_MARK, VI4_DATA21_MARK,
  3827. VI4_DATA22_MARK, VI4_DATA23_MARK,
  3828. },
  3829. };
  3830. static const unsigned int vin4_sync_pins[] = {
  3831. /* HSYNC#, VSYNC# */
  3832. RCAR_GP_PIN(1, 18), RCAR_GP_PIN(1, 17),
  3833. };
  3834. static const unsigned int vin4_sync_mux[] = {
  3835. VI4_HSYNC_N_MARK, VI4_VSYNC_N_MARK,
  3836. };
  3837. static const unsigned int vin4_field_pins[] = {
  3838. /* FIELD */
  3839. RCAR_GP_PIN(1, 16),
  3840. };
  3841. static const unsigned int vin4_field_mux[] = {
  3842. VI4_FIELD_MARK,
  3843. };
  3844. static const unsigned int vin4_clkenb_pins[] = {
  3845. /* CLKENB */
  3846. RCAR_GP_PIN(1, 19),
  3847. };
  3848. static const unsigned int vin4_clkenb_mux[] = {
  3849. VI4_CLKENB_MARK,
  3850. };
  3851. static const unsigned int vin4_clk_pins[] = {
  3852. /* CLK */
  3853. RCAR_GP_PIN(1, 27),
  3854. };
  3855. static const unsigned int vin4_clk_mux[] = {
  3856. VI4_CLK_MARK,
  3857. };
  3858. /* - VIN5 ------------------------------------------------------------------- */
  3859. static const unsigned int vin5_data8_pins[] = {
  3860. RCAR_GP_PIN(0, 0), RCAR_GP_PIN(0, 1),
  3861. RCAR_GP_PIN(0, 2), RCAR_GP_PIN(0, 3),
  3862. RCAR_GP_PIN(0, 4), RCAR_GP_PIN(0, 5),
  3863. RCAR_GP_PIN(0, 6), RCAR_GP_PIN(0, 7),
  3864. };
  3865. static const unsigned int vin5_data8_mux[] = {
  3866. VI5_DATA0_MARK, VI5_DATA1_MARK,
  3867. VI5_DATA2_MARK, VI5_DATA3_MARK,
  3868. VI5_DATA4_MARK, VI5_DATA5_MARK,
  3869. VI5_DATA6_MARK, VI5_DATA7_MARK,
  3870. };
  3871. static const unsigned int vin5_data10_pins[] = {
  3872. RCAR_GP_PIN(0, 0), RCAR_GP_PIN(0, 1),
  3873. RCAR_GP_PIN(0, 2), RCAR_GP_PIN(0, 3),
  3874. RCAR_GP_PIN(0, 4), RCAR_GP_PIN(0, 5),
  3875. RCAR_GP_PIN(0, 6), RCAR_GP_PIN(0, 7),
  3876. RCAR_GP_PIN(1, 12), RCAR_GP_PIN(1, 13),
  3877. };
  3878. static const unsigned int vin5_data10_mux[] = {
  3879. VI5_DATA0_MARK, VI5_DATA1_MARK,
  3880. VI5_DATA2_MARK, VI5_DATA3_MARK,
  3881. VI5_DATA4_MARK, VI5_DATA5_MARK,
  3882. VI5_DATA6_MARK, VI5_DATA7_MARK,
  3883. VI5_DATA8_MARK, VI5_DATA9_MARK,
  3884. };
  3885. static const unsigned int vin5_data12_pins[] = {
  3886. RCAR_GP_PIN(0, 0), RCAR_GP_PIN(0, 1),
  3887. RCAR_GP_PIN(0, 2), RCAR_GP_PIN(0, 3),
  3888. RCAR_GP_PIN(0, 4), RCAR_GP_PIN(0, 5),
  3889. RCAR_GP_PIN(0, 6), RCAR_GP_PIN(0, 7),
  3890. RCAR_GP_PIN(1, 12), RCAR_GP_PIN(1, 13),
  3891. RCAR_GP_PIN(1, 14), RCAR_GP_PIN(1, 15),
  3892. };
  3893. static const unsigned int vin5_data12_mux[] = {
  3894. VI5_DATA0_MARK, VI5_DATA1_MARK,
  3895. VI5_DATA2_MARK, VI5_DATA3_MARK,
  3896. VI5_DATA4_MARK, VI5_DATA5_MARK,
  3897. VI5_DATA6_MARK, VI5_DATA7_MARK,
  3898. VI5_DATA8_MARK, VI5_DATA9_MARK,
  3899. VI5_DATA10_MARK, VI5_DATA11_MARK,
  3900. };
  3901. static const unsigned int vin5_data16_pins[] = {
  3902. RCAR_GP_PIN(0, 0), RCAR_GP_PIN(0, 1),
  3903. RCAR_GP_PIN(0, 2), RCAR_GP_PIN(0, 3),
  3904. RCAR_GP_PIN(0, 4), RCAR_GP_PIN(0, 5),
  3905. RCAR_GP_PIN(0, 6), RCAR_GP_PIN(0, 7),
  3906. RCAR_GP_PIN(1, 12), RCAR_GP_PIN(1, 13),
  3907. RCAR_GP_PIN(1, 14), RCAR_GP_PIN(1, 15),
  3908. RCAR_GP_PIN(1, 4), RCAR_GP_PIN(1, 5),
  3909. RCAR_GP_PIN(1, 6), RCAR_GP_PIN(1, 7),
  3910. };
  3911. static const unsigned int vin5_data16_mux[] = {
  3912. VI5_DATA0_MARK, VI5_DATA1_MARK,
  3913. VI5_DATA2_MARK, VI5_DATA3_MARK,
  3914. VI5_DATA4_MARK, VI5_DATA5_MARK,
  3915. VI5_DATA6_MARK, VI5_DATA7_MARK,
  3916. VI5_DATA8_MARK, VI5_DATA9_MARK,
  3917. VI5_DATA10_MARK, VI5_DATA11_MARK,
  3918. VI5_DATA12_MARK, VI5_DATA13_MARK,
  3919. VI5_DATA14_MARK, VI5_DATA15_MARK,
  3920. };
  3921. static const unsigned int vin5_sync_pins[] = {
  3922. /* HSYNC#, VSYNC# */
  3923. RCAR_GP_PIN(1, 10), RCAR_GP_PIN(1, 9),
  3924. };
  3925. static const unsigned int vin5_sync_mux[] = {
  3926. VI5_HSYNC_N_MARK, VI5_VSYNC_N_MARK,
  3927. };
  3928. static const unsigned int vin5_field_pins[] = {
  3929. RCAR_GP_PIN(1, 11),
  3930. };
  3931. static const unsigned int vin5_field_mux[] = {
  3932. /* FIELD */
  3933. VI5_FIELD_MARK,
  3934. };
  3935. static const unsigned int vin5_clkenb_pins[] = {
  3936. RCAR_GP_PIN(1, 20),
  3937. };
  3938. static const unsigned int vin5_clkenb_mux[] = {
  3939. /* CLKENB */
  3940. VI5_CLKENB_MARK,
  3941. };
  3942. static const unsigned int vin5_clk_pins[] = {
  3943. RCAR_GP_PIN(1, 21),
  3944. };
  3945. static const unsigned int vin5_clk_mux[] = {
  3946. /* CLK */
  3947. VI5_CLK_MARK,
  3948. };
  3949. static const struct sh_pfc_pin_group pinmux_groups[] = {
  3950. SH_PFC_PIN_GROUP(audio_clk_a_a),
  3951. SH_PFC_PIN_GROUP(audio_clk_a_b),
  3952. SH_PFC_PIN_GROUP(audio_clk_a_c),
  3953. SH_PFC_PIN_GROUP(audio_clk_b_a),
  3954. SH_PFC_PIN_GROUP(audio_clk_b_b),
  3955. SH_PFC_PIN_GROUP(audio_clk_c_a),
  3956. SH_PFC_PIN_GROUP(audio_clk_c_b),
  3957. SH_PFC_PIN_GROUP(audio_clkout_a),
  3958. SH_PFC_PIN_GROUP(audio_clkout_b),
  3959. SH_PFC_PIN_GROUP(audio_clkout_c),
  3960. SH_PFC_PIN_GROUP(audio_clkout_d),
  3961. SH_PFC_PIN_GROUP(audio_clkout1_a),
  3962. SH_PFC_PIN_GROUP(audio_clkout1_b),
  3963. SH_PFC_PIN_GROUP(audio_clkout2_a),
  3964. SH_PFC_PIN_GROUP(audio_clkout2_b),
  3965. SH_PFC_PIN_GROUP(audio_clkout3_a),
  3966. SH_PFC_PIN_GROUP(audio_clkout3_b),
  3967. SH_PFC_PIN_GROUP(avb_link),
  3968. SH_PFC_PIN_GROUP(avb_magic),
  3969. SH_PFC_PIN_GROUP(avb_phy_int),
  3970. SH_PFC_PIN_GROUP_ALIAS(avb_mdc, avb_mdio), /* Deprecated */
  3971. SH_PFC_PIN_GROUP(avb_mdio),
  3972. SH_PFC_PIN_GROUP(avb_mii),
  3973. SH_PFC_PIN_GROUP(avb_avtp_pps),
  3974. SH_PFC_PIN_GROUP(avb_avtp_match_a),
  3975. SH_PFC_PIN_GROUP(avb_avtp_capture_a),
  3976. SH_PFC_PIN_GROUP(avb_avtp_match_b),
  3977. SH_PFC_PIN_GROUP(avb_avtp_capture_b),
  3978. SH_PFC_PIN_GROUP(can0_data_a),
  3979. SH_PFC_PIN_GROUP(can0_data_b),
  3980. SH_PFC_PIN_GROUP(can1_data),
  3981. SH_PFC_PIN_GROUP(can_clk),
  3982. SH_PFC_PIN_GROUP(canfd0_data_a),
  3983. SH_PFC_PIN_GROUP(canfd0_data_b),
  3984. SH_PFC_PIN_GROUP(canfd1_data),
  3985. SH_PFC_PIN_GROUP(drif0_ctrl_a),
  3986. SH_PFC_PIN_GROUP(drif0_data0_a),
  3987. SH_PFC_PIN_GROUP(drif0_data1_a),
  3988. SH_PFC_PIN_GROUP(drif0_ctrl_b),
  3989. SH_PFC_PIN_GROUP(drif0_data0_b),
  3990. SH_PFC_PIN_GROUP(drif0_data1_b),
  3991. SH_PFC_PIN_GROUP(drif0_ctrl_c),
  3992. SH_PFC_PIN_GROUP(drif0_data0_c),
  3993. SH_PFC_PIN_GROUP(drif0_data1_c),
  3994. SH_PFC_PIN_GROUP(drif1_ctrl_a),
  3995. SH_PFC_PIN_GROUP(drif1_data0_a),
  3996. SH_PFC_PIN_GROUP(drif1_data1_a),
  3997. SH_PFC_PIN_GROUP(drif1_ctrl_b),
  3998. SH_PFC_PIN_GROUP(drif1_data0_b),
  3999. SH_PFC_PIN_GROUP(drif1_data1_b),
  4000. SH_PFC_PIN_GROUP(drif1_ctrl_c),
  4001. SH_PFC_PIN_GROUP(drif1_data0_c),
  4002. SH_PFC_PIN_GROUP(drif1_data1_c),
  4003. SH_PFC_PIN_GROUP(drif2_ctrl_a),
  4004. SH_PFC_PIN_GROUP(drif2_data0_a),
  4005. SH_PFC_PIN_GROUP(drif2_data1_a),
  4006. SH_PFC_PIN_GROUP(drif2_ctrl_b),
  4007. SH_PFC_PIN_GROUP(drif2_data0_b),
  4008. SH_PFC_PIN_GROUP(drif2_data1_b),
  4009. SH_PFC_PIN_GROUP(drif3_ctrl_a),
  4010. SH_PFC_PIN_GROUP(drif3_data0_a),
  4011. SH_PFC_PIN_GROUP(drif3_data1_a),
  4012. SH_PFC_PIN_GROUP(drif3_ctrl_b),
  4013. SH_PFC_PIN_GROUP(drif3_data0_b),
  4014. SH_PFC_PIN_GROUP(drif3_data1_b),
  4015. SH_PFC_PIN_GROUP(du_rgb666),
  4016. SH_PFC_PIN_GROUP(du_rgb888),
  4017. SH_PFC_PIN_GROUP(du_clk_out_0),
  4018. SH_PFC_PIN_GROUP(du_clk_out_1),
  4019. SH_PFC_PIN_GROUP(du_sync),
  4020. SH_PFC_PIN_GROUP(du_oddf),
  4021. SH_PFC_PIN_GROUP(du_cde),
  4022. SH_PFC_PIN_GROUP(du_disp),
  4023. SH_PFC_PIN_GROUP(hdmi0_cec),
  4024. SH_PFC_PIN_GROUP(hdmi1_cec),
  4025. SH_PFC_PIN_GROUP(hscif0_data),
  4026. SH_PFC_PIN_GROUP(hscif0_clk),
  4027. SH_PFC_PIN_GROUP(hscif0_ctrl),
  4028. SH_PFC_PIN_GROUP(hscif1_data_a),
  4029. SH_PFC_PIN_GROUP(hscif1_clk_a),
  4030. SH_PFC_PIN_GROUP(hscif1_ctrl_a),
  4031. SH_PFC_PIN_GROUP(hscif1_data_b),
  4032. SH_PFC_PIN_GROUP(hscif1_clk_b),
  4033. SH_PFC_PIN_GROUP(hscif1_ctrl_b),
  4034. SH_PFC_PIN_GROUP(hscif2_data_a),
  4035. SH_PFC_PIN_GROUP(hscif2_clk_a),
  4036. SH_PFC_PIN_GROUP(hscif2_ctrl_a),
  4037. SH_PFC_PIN_GROUP(hscif2_data_b),
  4038. SH_PFC_PIN_GROUP(hscif2_clk_b),
  4039. SH_PFC_PIN_GROUP(hscif2_ctrl_b),
  4040. SH_PFC_PIN_GROUP(hscif2_data_c),
  4041. SH_PFC_PIN_GROUP(hscif2_clk_c),
  4042. SH_PFC_PIN_GROUP(hscif2_ctrl_c),
  4043. SH_PFC_PIN_GROUP(hscif3_data_a),
  4044. SH_PFC_PIN_GROUP(hscif3_clk),
  4045. SH_PFC_PIN_GROUP(hscif3_ctrl),
  4046. SH_PFC_PIN_GROUP(hscif3_data_b),
  4047. SH_PFC_PIN_GROUP(hscif3_data_c),
  4048. SH_PFC_PIN_GROUP(hscif3_data_d),
  4049. SH_PFC_PIN_GROUP(hscif4_data_a),
  4050. SH_PFC_PIN_GROUP(hscif4_clk),
  4051. SH_PFC_PIN_GROUP(hscif4_ctrl),
  4052. SH_PFC_PIN_GROUP(hscif4_data_b),
  4053. SH_PFC_PIN_GROUP(i2c1_a),
  4054. SH_PFC_PIN_GROUP(i2c1_b),
  4055. SH_PFC_PIN_GROUP(i2c2_a),
  4056. SH_PFC_PIN_GROUP(i2c2_b),
  4057. SH_PFC_PIN_GROUP(i2c6_a),
  4058. SH_PFC_PIN_GROUP(i2c6_b),
  4059. SH_PFC_PIN_GROUP(i2c6_c),
  4060. SH_PFC_PIN_GROUP(intc_ex_irq0),
  4061. SH_PFC_PIN_GROUP(intc_ex_irq1),
  4062. SH_PFC_PIN_GROUP(intc_ex_irq2),
  4063. SH_PFC_PIN_GROUP(intc_ex_irq3),
  4064. SH_PFC_PIN_GROUP(intc_ex_irq4),
  4065. SH_PFC_PIN_GROUP(intc_ex_irq5),
  4066. SH_PFC_PIN_GROUP(msiof0_clk),
  4067. SH_PFC_PIN_GROUP(msiof0_sync),
  4068. SH_PFC_PIN_GROUP(msiof0_ss1),
  4069. SH_PFC_PIN_GROUP(msiof0_ss2),
  4070. SH_PFC_PIN_GROUP(msiof0_txd),
  4071. SH_PFC_PIN_GROUP(msiof0_rxd),
  4072. SH_PFC_PIN_GROUP(msiof1_clk_a),
  4073. SH_PFC_PIN_GROUP(msiof1_sync_a),
  4074. SH_PFC_PIN_GROUP(msiof1_ss1_a),
  4075. SH_PFC_PIN_GROUP(msiof1_ss2_a),
  4076. SH_PFC_PIN_GROUP(msiof1_txd_a),
  4077. SH_PFC_PIN_GROUP(msiof1_rxd_a),
  4078. SH_PFC_PIN_GROUP(msiof1_clk_b),
  4079. SH_PFC_PIN_GROUP(msiof1_sync_b),
  4080. SH_PFC_PIN_GROUP(msiof1_ss1_b),
  4081. SH_PFC_PIN_GROUP(msiof1_ss2_b),
  4082. SH_PFC_PIN_GROUP(msiof1_txd_b),
  4083. SH_PFC_PIN_GROUP(msiof1_rxd_b),
  4084. SH_PFC_PIN_GROUP(msiof1_clk_c),
  4085. SH_PFC_PIN_GROUP(msiof1_sync_c),
  4086. SH_PFC_PIN_GROUP(msiof1_ss1_c),
  4087. SH_PFC_PIN_GROUP(msiof1_ss2_c),
  4088. SH_PFC_PIN_GROUP(msiof1_txd_c),
  4089. SH_PFC_PIN_GROUP(msiof1_rxd_c),
  4090. SH_PFC_PIN_GROUP(msiof1_clk_d),
  4091. SH_PFC_PIN_GROUP(msiof1_sync_d),
  4092. SH_PFC_PIN_GROUP(msiof1_ss1_d),
  4093. SH_PFC_PIN_GROUP(msiof1_ss2_d),
  4094. SH_PFC_PIN_GROUP(msiof1_txd_d),
  4095. SH_PFC_PIN_GROUP(msiof1_rxd_d),
  4096. SH_PFC_PIN_GROUP(msiof1_clk_e),
  4097. SH_PFC_PIN_GROUP(msiof1_sync_e),
  4098. SH_PFC_PIN_GROUP(msiof1_ss1_e),
  4099. SH_PFC_PIN_GROUP(msiof1_ss2_e),
  4100. SH_PFC_PIN_GROUP(msiof1_txd_e),
  4101. SH_PFC_PIN_GROUP(msiof1_rxd_e),
  4102. SH_PFC_PIN_GROUP(msiof1_clk_f),
  4103. SH_PFC_PIN_GROUP(msiof1_sync_f),
  4104. SH_PFC_PIN_GROUP(msiof1_ss1_f),
  4105. SH_PFC_PIN_GROUP(msiof1_ss2_f),
  4106. SH_PFC_PIN_GROUP(msiof1_txd_f),
  4107. SH_PFC_PIN_GROUP(msiof1_rxd_f),
  4108. SH_PFC_PIN_GROUP(msiof1_clk_g),
  4109. SH_PFC_PIN_GROUP(msiof1_sync_g),
  4110. SH_PFC_PIN_GROUP(msiof1_ss1_g),
  4111. SH_PFC_PIN_GROUP(msiof1_ss2_g),
  4112. SH_PFC_PIN_GROUP(msiof1_txd_g),
  4113. SH_PFC_PIN_GROUP(msiof1_rxd_g),
  4114. SH_PFC_PIN_GROUP(msiof2_clk_a),
  4115. SH_PFC_PIN_GROUP(msiof2_sync_a),
  4116. SH_PFC_PIN_GROUP(msiof2_ss1_a),
  4117. SH_PFC_PIN_GROUP(msiof2_ss2_a),
  4118. SH_PFC_PIN_GROUP(msiof2_txd_a),
  4119. SH_PFC_PIN_GROUP(msiof2_rxd_a),
  4120. SH_PFC_PIN_GROUP(msiof2_clk_b),
  4121. SH_PFC_PIN_GROUP(msiof2_sync_b),
  4122. SH_PFC_PIN_GROUP(msiof2_ss1_b),
  4123. SH_PFC_PIN_GROUP(msiof2_ss2_b),
  4124. SH_PFC_PIN_GROUP(msiof2_txd_b),
  4125. SH_PFC_PIN_GROUP(msiof2_rxd_b),
  4126. SH_PFC_PIN_GROUP(msiof2_clk_c),
  4127. SH_PFC_PIN_GROUP(msiof2_sync_c),
  4128. SH_PFC_PIN_GROUP(msiof2_ss1_c),
  4129. SH_PFC_PIN_GROUP(msiof2_ss2_c),
  4130. SH_PFC_PIN_GROUP(msiof2_txd_c),
  4131. SH_PFC_PIN_GROUP(msiof2_rxd_c),
  4132. SH_PFC_PIN_GROUP(msiof2_clk_d),
  4133. SH_PFC_PIN_GROUP(msiof2_sync_d),
  4134. SH_PFC_PIN_GROUP(msiof2_ss1_d),
  4135. SH_PFC_PIN_GROUP(msiof2_ss2_d),
  4136. SH_PFC_PIN_GROUP(msiof2_txd_d),
  4137. SH_PFC_PIN_GROUP(msiof2_rxd_d),
  4138. SH_PFC_PIN_GROUP(msiof3_clk_a),
  4139. SH_PFC_PIN_GROUP(msiof3_sync_a),
  4140. SH_PFC_PIN_GROUP(msiof3_ss1_a),
  4141. SH_PFC_PIN_GROUP(msiof3_ss2_a),
  4142. SH_PFC_PIN_GROUP(msiof3_txd_a),
  4143. SH_PFC_PIN_GROUP(msiof3_rxd_a),
  4144. SH_PFC_PIN_GROUP(msiof3_clk_b),
  4145. SH_PFC_PIN_GROUP(msiof3_sync_b),
  4146. SH_PFC_PIN_GROUP(msiof3_ss1_b),
  4147. SH_PFC_PIN_GROUP(msiof3_ss2_b),
  4148. SH_PFC_PIN_GROUP(msiof3_txd_b),
  4149. SH_PFC_PIN_GROUP(msiof3_rxd_b),
  4150. SH_PFC_PIN_GROUP(msiof3_clk_c),
  4151. SH_PFC_PIN_GROUP(msiof3_sync_c),
  4152. SH_PFC_PIN_GROUP(msiof3_txd_c),
  4153. SH_PFC_PIN_GROUP(msiof3_rxd_c),
  4154. SH_PFC_PIN_GROUP(msiof3_clk_d),
  4155. SH_PFC_PIN_GROUP(msiof3_sync_d),
  4156. SH_PFC_PIN_GROUP(msiof3_ss1_d),
  4157. SH_PFC_PIN_GROUP(msiof3_txd_d),
  4158. SH_PFC_PIN_GROUP(msiof3_rxd_d),
  4159. SH_PFC_PIN_GROUP(msiof3_clk_e),
  4160. SH_PFC_PIN_GROUP(msiof3_sync_e),
  4161. SH_PFC_PIN_GROUP(msiof3_ss1_e),
  4162. SH_PFC_PIN_GROUP(msiof3_ss2_e),
  4163. SH_PFC_PIN_GROUP(msiof3_txd_e),
  4164. SH_PFC_PIN_GROUP(msiof3_rxd_e),
  4165. SH_PFC_PIN_GROUP(pwm0),
  4166. SH_PFC_PIN_GROUP(pwm1_a),
  4167. SH_PFC_PIN_GROUP(pwm1_b),
  4168. SH_PFC_PIN_GROUP(pwm2_a),
  4169. SH_PFC_PIN_GROUP(pwm2_b),
  4170. SH_PFC_PIN_GROUP(pwm3_a),
  4171. SH_PFC_PIN_GROUP(pwm3_b),
  4172. SH_PFC_PIN_GROUP(pwm4_a),
  4173. SH_PFC_PIN_GROUP(pwm4_b),
  4174. SH_PFC_PIN_GROUP(pwm5_a),
  4175. SH_PFC_PIN_GROUP(pwm5_b),
  4176. SH_PFC_PIN_GROUP(pwm6_a),
  4177. SH_PFC_PIN_GROUP(pwm6_b),
  4178. SH_PFC_PIN_GROUP(sata0_devslp_a),
  4179. SH_PFC_PIN_GROUP(sata0_devslp_b),
  4180. SH_PFC_PIN_GROUP(scif0_data),
  4181. SH_PFC_PIN_GROUP(scif0_clk),
  4182. SH_PFC_PIN_GROUP(scif0_ctrl),
  4183. SH_PFC_PIN_GROUP(scif1_data_a),
  4184. SH_PFC_PIN_GROUP(scif1_clk),
  4185. SH_PFC_PIN_GROUP(scif1_ctrl),
  4186. SH_PFC_PIN_GROUP(scif1_data_b),
  4187. SH_PFC_PIN_GROUP(scif2_data_a),
  4188. SH_PFC_PIN_GROUP(scif2_clk),
  4189. SH_PFC_PIN_GROUP(scif2_data_b),
  4190. SH_PFC_PIN_GROUP(scif3_data_a),
  4191. SH_PFC_PIN_GROUP(scif3_clk),
  4192. SH_PFC_PIN_GROUP(scif3_ctrl),
  4193. SH_PFC_PIN_GROUP(scif3_data_b),
  4194. SH_PFC_PIN_GROUP(scif4_data_a),
  4195. SH_PFC_PIN_GROUP(scif4_clk_a),
  4196. SH_PFC_PIN_GROUP(scif4_ctrl_a),
  4197. SH_PFC_PIN_GROUP(scif4_data_b),
  4198. SH_PFC_PIN_GROUP(scif4_clk_b),
  4199. SH_PFC_PIN_GROUP(scif4_ctrl_b),
  4200. SH_PFC_PIN_GROUP(scif4_data_c),
  4201. SH_PFC_PIN_GROUP(scif4_clk_c),
  4202. SH_PFC_PIN_GROUP(scif4_ctrl_c),
  4203. SH_PFC_PIN_GROUP(scif5_data_a),
  4204. SH_PFC_PIN_GROUP(scif5_clk_a),
  4205. SH_PFC_PIN_GROUP(scif5_data_b),
  4206. SH_PFC_PIN_GROUP(scif5_clk_b),
  4207. SH_PFC_PIN_GROUP(scif_clk_a),
  4208. SH_PFC_PIN_GROUP(scif_clk_b),
  4209. SH_PFC_PIN_GROUP(sdhi0_data1),
  4210. SH_PFC_PIN_GROUP(sdhi0_data4),
  4211. SH_PFC_PIN_GROUP(sdhi0_ctrl),
  4212. SH_PFC_PIN_GROUP(sdhi0_cd),
  4213. SH_PFC_PIN_GROUP(sdhi0_wp),
  4214. SH_PFC_PIN_GROUP(sdhi1_data1),
  4215. SH_PFC_PIN_GROUP(sdhi1_data4),
  4216. SH_PFC_PIN_GROUP(sdhi1_ctrl),
  4217. SH_PFC_PIN_GROUP(sdhi1_cd),
  4218. SH_PFC_PIN_GROUP(sdhi1_wp),
  4219. SH_PFC_PIN_GROUP(sdhi2_data1),
  4220. SH_PFC_PIN_GROUP(sdhi2_data4),
  4221. SH_PFC_PIN_GROUP(sdhi2_data8),
  4222. SH_PFC_PIN_GROUP(sdhi2_ctrl),
  4223. SH_PFC_PIN_GROUP(sdhi2_cd_a),
  4224. SH_PFC_PIN_GROUP(sdhi2_wp_a),
  4225. SH_PFC_PIN_GROUP(sdhi2_cd_b),
  4226. SH_PFC_PIN_GROUP(sdhi2_wp_b),
  4227. SH_PFC_PIN_GROUP(sdhi2_ds),
  4228. SH_PFC_PIN_GROUP(sdhi3_data1),
  4229. SH_PFC_PIN_GROUP(sdhi3_data4),
  4230. SH_PFC_PIN_GROUP(sdhi3_data8),
  4231. SH_PFC_PIN_GROUP(sdhi3_ctrl),
  4232. SH_PFC_PIN_GROUP(sdhi3_cd),
  4233. SH_PFC_PIN_GROUP(sdhi3_wp),
  4234. SH_PFC_PIN_GROUP(sdhi3_ds),
  4235. SH_PFC_PIN_GROUP(ssi0_data),
  4236. SH_PFC_PIN_GROUP(ssi01239_ctrl),
  4237. SH_PFC_PIN_GROUP(ssi1_data_a),
  4238. SH_PFC_PIN_GROUP(ssi1_data_b),
  4239. SH_PFC_PIN_GROUP(ssi1_ctrl_a),
  4240. SH_PFC_PIN_GROUP(ssi1_ctrl_b),
  4241. SH_PFC_PIN_GROUP(ssi2_data_a),
  4242. SH_PFC_PIN_GROUP(ssi2_data_b),
  4243. SH_PFC_PIN_GROUP(ssi2_ctrl_a),
  4244. SH_PFC_PIN_GROUP(ssi2_ctrl_b),
  4245. SH_PFC_PIN_GROUP(ssi3_data),
  4246. SH_PFC_PIN_GROUP(ssi349_ctrl),
  4247. SH_PFC_PIN_GROUP(ssi4_data),
  4248. SH_PFC_PIN_GROUP(ssi4_ctrl),
  4249. SH_PFC_PIN_GROUP(ssi5_data),
  4250. SH_PFC_PIN_GROUP(ssi5_ctrl),
  4251. SH_PFC_PIN_GROUP(ssi6_data),
  4252. SH_PFC_PIN_GROUP(ssi6_ctrl),
  4253. SH_PFC_PIN_GROUP(ssi7_data),
  4254. SH_PFC_PIN_GROUP(ssi78_ctrl),
  4255. SH_PFC_PIN_GROUP(ssi8_data),
  4256. SH_PFC_PIN_GROUP(ssi9_data_a),
  4257. SH_PFC_PIN_GROUP(ssi9_data_b),
  4258. SH_PFC_PIN_GROUP(ssi9_ctrl_a),
  4259. SH_PFC_PIN_GROUP(ssi9_ctrl_b),
  4260. SH_PFC_PIN_GROUP(tmu_tclk1_a),
  4261. SH_PFC_PIN_GROUP(tmu_tclk1_b),
  4262. SH_PFC_PIN_GROUP(tmu_tclk2_a),
  4263. SH_PFC_PIN_GROUP(tmu_tclk2_b),
  4264. SH_PFC_PIN_GROUP(usb0),
  4265. SH_PFC_PIN_GROUP(usb1),
  4266. SH_PFC_PIN_GROUP(usb2),
  4267. SH_PFC_PIN_GROUP(usb2_ch3),
  4268. SH_PFC_PIN_GROUP(usb30),
  4269. VIN_DATA_PIN_GROUP(vin4_data_a, 8),
  4270. VIN_DATA_PIN_GROUP(vin4_data_a, 10),
  4271. VIN_DATA_PIN_GROUP(vin4_data_a, 12),
  4272. VIN_DATA_PIN_GROUP(vin4_data_a, 16),
  4273. SH_PFC_PIN_GROUP(vin4_data18_a),
  4274. VIN_DATA_PIN_GROUP(vin4_data_a, 20),
  4275. VIN_DATA_PIN_GROUP(vin4_data_a, 24),
  4276. VIN_DATA_PIN_GROUP(vin4_data_b, 8),
  4277. VIN_DATA_PIN_GROUP(vin4_data_b, 10),
  4278. VIN_DATA_PIN_GROUP(vin4_data_b, 12),
  4279. VIN_DATA_PIN_GROUP(vin4_data_b, 16),
  4280. SH_PFC_PIN_GROUP(vin4_data18_b),
  4281. VIN_DATA_PIN_GROUP(vin4_data_b, 20),
  4282. VIN_DATA_PIN_GROUP(vin4_data_b, 24),
  4283. SH_PFC_PIN_GROUP(vin4_sync),
  4284. SH_PFC_PIN_GROUP(vin4_field),
  4285. SH_PFC_PIN_GROUP(vin4_clkenb),
  4286. SH_PFC_PIN_GROUP(vin4_clk),
  4287. SH_PFC_PIN_GROUP(vin5_data8),
  4288. SH_PFC_PIN_GROUP(vin5_data10),
  4289. SH_PFC_PIN_GROUP(vin5_data12),
  4290. SH_PFC_PIN_GROUP(vin5_data16),
  4291. SH_PFC_PIN_GROUP(vin5_sync),
  4292. SH_PFC_PIN_GROUP(vin5_field),
  4293. SH_PFC_PIN_GROUP(vin5_clkenb),
  4294. SH_PFC_PIN_GROUP(vin5_clk),
  4295. };
  4296. static const char * const audio_clk_groups[] = {
  4297. "audio_clk_a_a",
  4298. "audio_clk_a_b",
  4299. "audio_clk_a_c",
  4300. "audio_clk_b_a",
  4301. "audio_clk_b_b",
  4302. "audio_clk_c_a",
  4303. "audio_clk_c_b",
  4304. "audio_clkout_a",
  4305. "audio_clkout_b",
  4306. "audio_clkout_c",
  4307. "audio_clkout_d",
  4308. "audio_clkout1_a",
  4309. "audio_clkout1_b",
  4310. "audio_clkout2_a",
  4311. "audio_clkout2_b",
  4312. "audio_clkout3_a",
  4313. "audio_clkout3_b",
  4314. };
  4315. static const char * const avb_groups[] = {
  4316. "avb_link",
  4317. "avb_magic",
  4318. "avb_phy_int",
  4319. "avb_mdc", /* Deprecated, please use "avb_mdio" instead */
  4320. "avb_mdio",
  4321. "avb_mii",
  4322. "avb_avtp_pps",
  4323. "avb_avtp_match_a",
  4324. "avb_avtp_capture_a",
  4325. "avb_avtp_match_b",
  4326. "avb_avtp_capture_b",
  4327. };
  4328. static const char * const can0_groups[] = {
  4329. "can0_data_a",
  4330. "can0_data_b",
  4331. };
  4332. static const char * const can1_groups[] = {
  4333. "can1_data",
  4334. };
  4335. static const char * const can_clk_groups[] = {
  4336. "can_clk",
  4337. };
  4338. static const char * const canfd0_groups[] = {
  4339. "canfd0_data_a",
  4340. "canfd0_data_b",
  4341. };
  4342. static const char * const canfd1_groups[] = {
  4343. "canfd1_data",
  4344. };
  4345. static const char * const drif0_groups[] = {
  4346. "drif0_ctrl_a",
  4347. "drif0_data0_a",
  4348. "drif0_data1_a",
  4349. "drif0_ctrl_b",
  4350. "drif0_data0_b",
  4351. "drif0_data1_b",
  4352. "drif0_ctrl_c",
  4353. "drif0_data0_c",
  4354. "drif0_data1_c",
  4355. };
  4356. static const char * const drif1_groups[] = {
  4357. "drif1_ctrl_a",
  4358. "drif1_data0_a",
  4359. "drif1_data1_a",
  4360. "drif1_ctrl_b",
  4361. "drif1_data0_b",
  4362. "drif1_data1_b",
  4363. "drif1_ctrl_c",
  4364. "drif1_data0_c",
  4365. "drif1_data1_c",
  4366. };
  4367. static const char * const drif2_groups[] = {
  4368. "drif2_ctrl_a",
  4369. "drif2_data0_a",
  4370. "drif2_data1_a",
  4371. "drif2_ctrl_b",
  4372. "drif2_data0_b",
  4373. "drif2_data1_b",
  4374. };
  4375. static const char * const drif3_groups[] = {
  4376. "drif3_ctrl_a",
  4377. "drif3_data0_a",
  4378. "drif3_data1_a",
  4379. "drif3_ctrl_b",
  4380. "drif3_data0_b",
  4381. "drif3_data1_b",
  4382. };
  4383. static const char * const du_groups[] = {
  4384. "du_rgb666",
  4385. "du_rgb888",
  4386. "du_clk_out_0",
  4387. "du_clk_out_1",
  4388. "du_sync",
  4389. "du_oddf",
  4390. "du_cde",
  4391. "du_disp",
  4392. };
  4393. static const char * const hdmi0_groups[] = {
  4394. "hdmi0_cec",
  4395. };
  4396. static const char * const hdmi1_groups[] = {
  4397. "hdmi1_cec",
  4398. };
  4399. static const char * const hscif0_groups[] = {
  4400. "hscif0_data",
  4401. "hscif0_clk",
  4402. "hscif0_ctrl",
  4403. };
  4404. static const char * const hscif1_groups[] = {
  4405. "hscif1_data_a",
  4406. "hscif1_clk_a",
  4407. "hscif1_ctrl_a",
  4408. "hscif1_data_b",
  4409. "hscif1_clk_b",
  4410. "hscif1_ctrl_b",
  4411. };
  4412. static const char * const hscif2_groups[] = {
  4413. "hscif2_data_a",
  4414. "hscif2_clk_a",
  4415. "hscif2_ctrl_a",
  4416. "hscif2_data_b",
  4417. "hscif2_clk_b",
  4418. "hscif2_ctrl_b",
  4419. "hscif2_data_c",
  4420. "hscif2_clk_c",
  4421. "hscif2_ctrl_c",
  4422. };
  4423. static const char * const hscif3_groups[] = {
  4424. "hscif3_data_a",
  4425. "hscif3_clk",
  4426. "hscif3_ctrl",
  4427. "hscif3_data_b",
  4428. "hscif3_data_c",
  4429. "hscif3_data_d",
  4430. };
  4431. static const char * const hscif4_groups[] = {
  4432. "hscif4_data_a",
  4433. "hscif4_clk",
  4434. "hscif4_ctrl",
  4435. "hscif4_data_b",
  4436. };
  4437. static const char * const i2c1_groups[] = {
  4438. "i2c1_a",
  4439. "i2c1_b",
  4440. };
  4441. static const char * const i2c2_groups[] = {
  4442. "i2c2_a",
  4443. "i2c2_b",
  4444. };
  4445. static const char * const i2c6_groups[] = {
  4446. "i2c6_a",
  4447. "i2c6_b",
  4448. "i2c6_c",
  4449. };
  4450. static const char * const intc_ex_groups[] = {
  4451. "intc_ex_irq0",
  4452. "intc_ex_irq1",
  4453. "intc_ex_irq2",
  4454. "intc_ex_irq3",
  4455. "intc_ex_irq4",
  4456. "intc_ex_irq5",
  4457. };
  4458. static const char * const msiof0_groups[] = {
  4459. "msiof0_clk",
  4460. "msiof0_sync",
  4461. "msiof0_ss1",
  4462. "msiof0_ss2",
  4463. "msiof0_txd",
  4464. "msiof0_rxd",
  4465. };
  4466. static const char * const msiof1_groups[] = {
  4467. "msiof1_clk_a",
  4468. "msiof1_sync_a",
  4469. "msiof1_ss1_a",
  4470. "msiof1_ss2_a",
  4471. "msiof1_txd_a",
  4472. "msiof1_rxd_a",
  4473. "msiof1_clk_b",
  4474. "msiof1_sync_b",
  4475. "msiof1_ss1_b",
  4476. "msiof1_ss2_b",
  4477. "msiof1_txd_b",
  4478. "msiof1_rxd_b",
  4479. "msiof1_clk_c",
  4480. "msiof1_sync_c",
  4481. "msiof1_ss1_c",
  4482. "msiof1_ss2_c",
  4483. "msiof1_txd_c",
  4484. "msiof1_rxd_c",
  4485. "msiof1_clk_d",
  4486. "msiof1_sync_d",
  4487. "msiof1_ss1_d",
  4488. "msiof1_ss2_d",
  4489. "msiof1_txd_d",
  4490. "msiof1_rxd_d",
  4491. "msiof1_clk_e",
  4492. "msiof1_sync_e",
  4493. "msiof1_ss1_e",
  4494. "msiof1_ss2_e",
  4495. "msiof1_txd_e",
  4496. "msiof1_rxd_e",
  4497. "msiof1_clk_f",
  4498. "msiof1_sync_f",
  4499. "msiof1_ss1_f",
  4500. "msiof1_ss2_f",
  4501. "msiof1_txd_f",
  4502. "msiof1_rxd_f",
  4503. "msiof1_clk_g",
  4504. "msiof1_sync_g",
  4505. "msiof1_ss1_g",
  4506. "msiof1_ss2_g",
  4507. "msiof1_txd_g",
  4508. "msiof1_rxd_g",
  4509. };
  4510. static const char * const msiof2_groups[] = {
  4511. "msiof2_clk_a",
  4512. "msiof2_sync_a",
  4513. "msiof2_ss1_a",
  4514. "msiof2_ss2_a",
  4515. "msiof2_txd_a",
  4516. "msiof2_rxd_a",
  4517. "msiof2_clk_b",
  4518. "msiof2_sync_b",
  4519. "msiof2_ss1_b",
  4520. "msiof2_ss2_b",
  4521. "msiof2_txd_b",
  4522. "msiof2_rxd_b",
  4523. "msiof2_clk_c",
  4524. "msiof2_sync_c",
  4525. "msiof2_ss1_c",
  4526. "msiof2_ss2_c",
  4527. "msiof2_txd_c",
  4528. "msiof2_rxd_c",
  4529. "msiof2_clk_d",
  4530. "msiof2_sync_d",
  4531. "msiof2_ss1_d",
  4532. "msiof2_ss2_d",
  4533. "msiof2_txd_d",
  4534. "msiof2_rxd_d",
  4535. };
  4536. static const char * const msiof3_groups[] = {
  4537. "msiof3_clk_a",
  4538. "msiof3_sync_a",
  4539. "msiof3_ss1_a",
  4540. "msiof3_ss2_a",
  4541. "msiof3_txd_a",
  4542. "msiof3_rxd_a",
  4543. "msiof3_clk_b",
  4544. "msiof3_sync_b",
  4545. "msiof3_ss1_b",
  4546. "msiof3_ss2_b",
  4547. "msiof3_txd_b",
  4548. "msiof3_rxd_b",
  4549. "msiof3_clk_c",
  4550. "msiof3_sync_c",
  4551. "msiof3_txd_c",
  4552. "msiof3_rxd_c",
  4553. "msiof3_clk_d",
  4554. "msiof3_sync_d",
  4555. "msiof3_ss1_d",
  4556. "msiof3_txd_d",
  4557. "msiof3_rxd_d",
  4558. "msiof3_clk_e",
  4559. "msiof3_sync_e",
  4560. "msiof3_ss1_e",
  4561. "msiof3_ss2_e",
  4562. "msiof3_txd_e",
  4563. "msiof3_rxd_e",
  4564. };
  4565. static const char * const pwm0_groups[] = {
  4566. "pwm0",
  4567. };
  4568. static const char * const pwm1_groups[] = {
  4569. "pwm1_a",
  4570. "pwm1_b",
  4571. };
  4572. static const char * const pwm2_groups[] = {
  4573. "pwm2_a",
  4574. "pwm2_b",
  4575. };
  4576. static const char * const pwm3_groups[] = {
  4577. "pwm3_a",
  4578. "pwm3_b",
  4579. };
  4580. static const char * const pwm4_groups[] = {
  4581. "pwm4_a",
  4582. "pwm4_b",
  4583. };
  4584. static const char * const pwm5_groups[] = {
  4585. "pwm5_a",
  4586. "pwm5_b",
  4587. };
  4588. static const char * const pwm6_groups[] = {
  4589. "pwm6_a",
  4590. "pwm6_b",
  4591. };
  4592. static const char * const sata0_groups[] = {
  4593. "sata0_devslp_a",
  4594. "sata0_devslp_b",
  4595. };
  4596. static const char * const scif0_groups[] = {
  4597. "scif0_data",
  4598. "scif0_clk",
  4599. "scif0_ctrl",
  4600. };
  4601. static const char * const scif1_groups[] = {
  4602. "scif1_data_a",
  4603. "scif1_clk",
  4604. "scif1_ctrl",
  4605. "scif1_data_b",
  4606. };
  4607. static const char * const scif2_groups[] = {
  4608. "scif2_data_a",
  4609. "scif2_clk",
  4610. "scif2_data_b",
  4611. };
  4612. static const char * const scif3_groups[] = {
  4613. "scif3_data_a",
  4614. "scif3_clk",
  4615. "scif3_ctrl",
  4616. "scif3_data_b",
  4617. };
  4618. static const char * const scif4_groups[] = {
  4619. "scif4_data_a",
  4620. "scif4_clk_a",
  4621. "scif4_ctrl_a",
  4622. "scif4_data_b",
  4623. "scif4_clk_b",
  4624. "scif4_ctrl_b",
  4625. "scif4_data_c",
  4626. "scif4_clk_c",
  4627. "scif4_ctrl_c",
  4628. };
  4629. static const char * const scif5_groups[] = {
  4630. "scif5_data_a",
  4631. "scif5_clk_a",
  4632. "scif5_data_b",
  4633. "scif5_clk_b",
  4634. };
  4635. static const char * const scif_clk_groups[] = {
  4636. "scif_clk_a",
  4637. "scif_clk_b",
  4638. };
  4639. static const char * const sdhi0_groups[] = {
  4640. "sdhi0_data1",
  4641. "sdhi0_data4",
  4642. "sdhi0_ctrl",
  4643. "sdhi0_cd",
  4644. "sdhi0_wp",
  4645. };
  4646. static const char * const sdhi1_groups[] = {
  4647. "sdhi1_data1",
  4648. "sdhi1_data4",
  4649. "sdhi1_ctrl",
  4650. "sdhi1_cd",
  4651. "sdhi1_wp",
  4652. };
  4653. static const char * const sdhi2_groups[] = {
  4654. "sdhi2_data1",
  4655. "sdhi2_data4",
  4656. "sdhi2_data8",
  4657. "sdhi2_ctrl",
  4658. "sdhi2_cd_a",
  4659. "sdhi2_wp_a",
  4660. "sdhi2_cd_b",
  4661. "sdhi2_wp_b",
  4662. "sdhi2_ds",
  4663. };
  4664. static const char * const sdhi3_groups[] = {
  4665. "sdhi3_data1",
  4666. "sdhi3_data4",
  4667. "sdhi3_data8",
  4668. "sdhi3_ctrl",
  4669. "sdhi3_cd",
  4670. "sdhi3_wp",
  4671. "sdhi3_ds",
  4672. };
  4673. static const char * const ssi_groups[] = {
  4674. "ssi0_data",
  4675. "ssi01239_ctrl",
  4676. "ssi1_data_a",
  4677. "ssi1_data_b",
  4678. "ssi1_ctrl_a",
  4679. "ssi1_ctrl_b",
  4680. "ssi2_data_a",
  4681. "ssi2_data_b",
  4682. "ssi2_ctrl_a",
  4683. "ssi2_ctrl_b",
  4684. "ssi3_data",
  4685. "ssi349_ctrl",
  4686. "ssi4_data",
  4687. "ssi4_ctrl",
  4688. "ssi5_data",
  4689. "ssi5_ctrl",
  4690. "ssi6_data",
  4691. "ssi6_ctrl",
  4692. "ssi7_data",
  4693. "ssi78_ctrl",
  4694. "ssi8_data",
  4695. "ssi9_data_a",
  4696. "ssi9_data_b",
  4697. "ssi9_ctrl_a",
  4698. "ssi9_ctrl_b",
  4699. };
  4700. static const char * const tmu_groups[] = {
  4701. "tmu_tclk1_a",
  4702. "tmu_tclk1_b",
  4703. "tmu_tclk2_a",
  4704. "tmu_tclk2_b",
  4705. };
  4706. static const char * const usb0_groups[] = {
  4707. "usb0",
  4708. };
  4709. static const char * const usb1_groups[] = {
  4710. "usb1",
  4711. };
  4712. static const char * const usb2_groups[] = {
  4713. "usb2",
  4714. };
  4715. static const char * const usb2_ch3_groups[] = {
  4716. "usb2_ch3",
  4717. };
  4718. static const char * const usb30_groups[] = {
  4719. "usb30",
  4720. };
  4721. static const char * const vin4_groups[] = {
  4722. "vin4_data8_a",
  4723. "vin4_data10_a",
  4724. "vin4_data12_a",
  4725. "vin4_data16_a",
  4726. "vin4_data18_a",
  4727. "vin4_data20_a",
  4728. "vin4_data24_a",
  4729. "vin4_data8_b",
  4730. "vin4_data10_b",
  4731. "vin4_data12_b",
  4732. "vin4_data16_b",
  4733. "vin4_data18_b",
  4734. "vin4_data20_b",
  4735. "vin4_data24_b",
  4736. "vin4_sync",
  4737. "vin4_field",
  4738. "vin4_clkenb",
  4739. "vin4_clk",
  4740. };
  4741. static const char * const vin5_groups[] = {
  4742. "vin5_data8",
  4743. "vin5_data10",
  4744. "vin5_data12",
  4745. "vin5_data16",
  4746. "vin5_sync",
  4747. "vin5_field",
  4748. "vin5_clkenb",
  4749. "vin5_clk",
  4750. };
  4751. static const struct sh_pfc_function pinmux_functions[] = {
  4752. SH_PFC_FUNCTION(audio_clk),
  4753. SH_PFC_FUNCTION(avb),
  4754. SH_PFC_FUNCTION(can0),
  4755. SH_PFC_FUNCTION(can1),
  4756. SH_PFC_FUNCTION(can_clk),
  4757. SH_PFC_FUNCTION(canfd0),
  4758. SH_PFC_FUNCTION(canfd1),
  4759. SH_PFC_FUNCTION(drif0),
  4760. SH_PFC_FUNCTION(drif1),
  4761. SH_PFC_FUNCTION(drif2),
  4762. SH_PFC_FUNCTION(drif3),
  4763. SH_PFC_FUNCTION(du),
  4764. SH_PFC_FUNCTION(hdmi0),
  4765. SH_PFC_FUNCTION(hdmi1),
  4766. SH_PFC_FUNCTION(hscif0),
  4767. SH_PFC_FUNCTION(hscif1),
  4768. SH_PFC_FUNCTION(hscif2),
  4769. SH_PFC_FUNCTION(hscif3),
  4770. SH_PFC_FUNCTION(hscif4),
  4771. SH_PFC_FUNCTION(i2c1),
  4772. SH_PFC_FUNCTION(i2c2),
  4773. SH_PFC_FUNCTION(i2c6),
  4774. SH_PFC_FUNCTION(intc_ex),
  4775. SH_PFC_FUNCTION(msiof0),
  4776. SH_PFC_FUNCTION(msiof1),
  4777. SH_PFC_FUNCTION(msiof2),
  4778. SH_PFC_FUNCTION(msiof3),
  4779. SH_PFC_FUNCTION(pwm0),
  4780. SH_PFC_FUNCTION(pwm1),
  4781. SH_PFC_FUNCTION(pwm2),
  4782. SH_PFC_FUNCTION(pwm3),
  4783. SH_PFC_FUNCTION(pwm4),
  4784. SH_PFC_FUNCTION(pwm5),
  4785. SH_PFC_FUNCTION(pwm6),
  4786. SH_PFC_FUNCTION(sata0),
  4787. SH_PFC_FUNCTION(scif0),
  4788. SH_PFC_FUNCTION(scif1),
  4789. SH_PFC_FUNCTION(scif2),
  4790. SH_PFC_FUNCTION(scif3),
  4791. SH_PFC_FUNCTION(scif4),
  4792. SH_PFC_FUNCTION(scif5),
  4793. SH_PFC_FUNCTION(scif_clk),
  4794. SH_PFC_FUNCTION(sdhi0),
  4795. SH_PFC_FUNCTION(sdhi1),
  4796. SH_PFC_FUNCTION(sdhi2),
  4797. SH_PFC_FUNCTION(sdhi3),
  4798. SH_PFC_FUNCTION(ssi),
  4799. SH_PFC_FUNCTION(tmu),
  4800. SH_PFC_FUNCTION(usb0),
  4801. SH_PFC_FUNCTION(usb1),
  4802. SH_PFC_FUNCTION(usb2),
  4803. SH_PFC_FUNCTION(usb2_ch3),
  4804. SH_PFC_FUNCTION(usb30),
  4805. SH_PFC_FUNCTION(vin4),
  4806. SH_PFC_FUNCTION(vin5),
  4807. };
  4808. static const struct pinmux_cfg_reg pinmux_config_regs[] = {
  4809. #define F_(x, y) FN_##y
  4810. #define FM(x) FN_##x
  4811. { PINMUX_CFG_REG("GPSR0", 0xe6060100, 32, 1) {
  4812. 0, 0,
  4813. 0, 0,
  4814. 0, 0,
  4815. 0, 0,
  4816. 0, 0,
  4817. 0, 0,
  4818. 0, 0,
  4819. 0, 0,
  4820. 0, 0,
  4821. 0, 0,
  4822. 0, 0,
  4823. 0, 0,
  4824. 0, 0,
  4825. 0, 0,
  4826. 0, 0,
  4827. 0, 0,
  4828. GP_0_15_FN, GPSR0_15,
  4829. GP_0_14_FN, GPSR0_14,
  4830. GP_0_13_FN, GPSR0_13,
  4831. GP_0_12_FN, GPSR0_12,
  4832. GP_0_11_FN, GPSR0_11,
  4833. GP_0_10_FN, GPSR0_10,
  4834. GP_0_9_FN, GPSR0_9,
  4835. GP_0_8_FN, GPSR0_8,
  4836. GP_0_7_FN, GPSR0_7,
  4837. GP_0_6_FN, GPSR0_6,
  4838. GP_0_5_FN, GPSR0_5,
  4839. GP_0_4_FN, GPSR0_4,
  4840. GP_0_3_FN, GPSR0_3,
  4841. GP_0_2_FN, GPSR0_2,
  4842. GP_0_1_FN, GPSR0_1,
  4843. GP_0_0_FN, GPSR0_0, }
  4844. },
  4845. { PINMUX_CFG_REG("GPSR1", 0xe6060104, 32, 1) {
  4846. 0, 0,
  4847. 0, 0,
  4848. 0, 0,
  4849. GP_1_28_FN, GPSR1_28,
  4850. GP_1_27_FN, GPSR1_27,
  4851. GP_1_26_FN, GPSR1_26,
  4852. GP_1_25_FN, GPSR1_25,
  4853. GP_1_24_FN, GPSR1_24,
  4854. GP_1_23_FN, GPSR1_23,
  4855. GP_1_22_FN, GPSR1_22,
  4856. GP_1_21_FN, GPSR1_21,
  4857. GP_1_20_FN, GPSR1_20,
  4858. GP_1_19_FN, GPSR1_19,
  4859. GP_1_18_FN, GPSR1_18,
  4860. GP_1_17_FN, GPSR1_17,
  4861. GP_1_16_FN, GPSR1_16,
  4862. GP_1_15_FN, GPSR1_15,
  4863. GP_1_14_FN, GPSR1_14,
  4864. GP_1_13_FN, GPSR1_13,
  4865. GP_1_12_FN, GPSR1_12,
  4866. GP_1_11_FN, GPSR1_11,
  4867. GP_1_10_FN, GPSR1_10,
  4868. GP_1_9_FN, GPSR1_9,
  4869. GP_1_8_FN, GPSR1_8,
  4870. GP_1_7_FN, GPSR1_7,
  4871. GP_1_6_FN, GPSR1_6,
  4872. GP_1_5_FN, GPSR1_5,
  4873. GP_1_4_FN, GPSR1_4,
  4874. GP_1_3_FN, GPSR1_3,
  4875. GP_1_2_FN, GPSR1_2,
  4876. GP_1_1_FN, GPSR1_1,
  4877. GP_1_0_FN, GPSR1_0, }
  4878. },
  4879. { PINMUX_CFG_REG("GPSR2", 0xe6060108, 32, 1) {
  4880. 0, 0,
  4881. 0, 0,
  4882. 0, 0,
  4883. 0, 0,
  4884. 0, 0,
  4885. 0, 0,
  4886. 0, 0,
  4887. 0, 0,
  4888. 0, 0,
  4889. 0, 0,
  4890. 0, 0,
  4891. 0, 0,
  4892. 0, 0,
  4893. 0, 0,
  4894. 0, 0,
  4895. 0, 0,
  4896. 0, 0,
  4897. GP_2_14_FN, GPSR2_14,
  4898. GP_2_13_FN, GPSR2_13,
  4899. GP_2_12_FN, GPSR2_12,
  4900. GP_2_11_FN, GPSR2_11,
  4901. GP_2_10_FN, GPSR2_10,
  4902. GP_2_9_FN, GPSR2_9,
  4903. GP_2_8_FN, GPSR2_8,
  4904. GP_2_7_FN, GPSR2_7,
  4905. GP_2_6_FN, GPSR2_6,
  4906. GP_2_5_FN, GPSR2_5,
  4907. GP_2_4_FN, GPSR2_4,
  4908. GP_2_3_FN, GPSR2_3,
  4909. GP_2_2_FN, GPSR2_2,
  4910. GP_2_1_FN, GPSR2_1,
  4911. GP_2_0_FN, GPSR2_0, }
  4912. },
  4913. { PINMUX_CFG_REG("GPSR3", 0xe606010c, 32, 1) {
  4914. 0, 0,
  4915. 0, 0,
  4916. 0, 0,
  4917. 0, 0,
  4918. 0, 0,
  4919. 0, 0,
  4920. 0, 0,
  4921. 0, 0,
  4922. 0, 0,
  4923. 0, 0,
  4924. 0, 0,
  4925. 0, 0,
  4926. 0, 0,
  4927. 0, 0,
  4928. 0, 0,
  4929. 0, 0,
  4930. GP_3_15_FN, GPSR3_15,
  4931. GP_3_14_FN, GPSR3_14,
  4932. GP_3_13_FN, GPSR3_13,
  4933. GP_3_12_FN, GPSR3_12,
  4934. GP_3_11_FN, GPSR3_11,
  4935. GP_3_10_FN, GPSR3_10,
  4936. GP_3_9_FN, GPSR3_9,
  4937. GP_3_8_FN, GPSR3_8,
  4938. GP_3_7_FN, GPSR3_7,
  4939. GP_3_6_FN, GPSR3_6,
  4940. GP_3_5_FN, GPSR3_5,
  4941. GP_3_4_FN, GPSR3_4,
  4942. GP_3_3_FN, GPSR3_3,
  4943. GP_3_2_FN, GPSR3_2,
  4944. GP_3_1_FN, GPSR3_1,
  4945. GP_3_0_FN, GPSR3_0, }
  4946. },
  4947. { PINMUX_CFG_REG("GPSR4", 0xe6060110, 32, 1) {
  4948. 0, 0,
  4949. 0, 0,
  4950. 0, 0,
  4951. 0, 0,
  4952. 0, 0,
  4953. 0, 0,
  4954. 0, 0,
  4955. 0, 0,
  4956. 0, 0,
  4957. 0, 0,
  4958. 0, 0,
  4959. 0, 0,
  4960. 0, 0,
  4961. 0, 0,
  4962. GP_4_17_FN, GPSR4_17,
  4963. GP_4_16_FN, GPSR4_16,
  4964. GP_4_15_FN, GPSR4_15,
  4965. GP_4_14_FN, GPSR4_14,
  4966. GP_4_13_FN, GPSR4_13,
  4967. GP_4_12_FN, GPSR4_12,
  4968. GP_4_11_FN, GPSR4_11,
  4969. GP_4_10_FN, GPSR4_10,
  4970. GP_4_9_FN, GPSR4_9,
  4971. GP_4_8_FN, GPSR4_8,
  4972. GP_4_7_FN, GPSR4_7,
  4973. GP_4_6_FN, GPSR4_6,
  4974. GP_4_5_FN, GPSR4_5,
  4975. GP_4_4_FN, GPSR4_4,
  4976. GP_4_3_FN, GPSR4_3,
  4977. GP_4_2_FN, GPSR4_2,
  4978. GP_4_1_FN, GPSR4_1,
  4979. GP_4_0_FN, GPSR4_0, }
  4980. },
  4981. { PINMUX_CFG_REG("GPSR5", 0xe6060114, 32, 1) {
  4982. 0, 0,
  4983. 0, 0,
  4984. 0, 0,
  4985. 0, 0,
  4986. 0, 0,
  4987. 0, 0,
  4988. GP_5_25_FN, GPSR5_25,
  4989. GP_5_24_FN, GPSR5_24,
  4990. GP_5_23_FN, GPSR5_23,
  4991. GP_5_22_FN, GPSR5_22,
  4992. GP_5_21_FN, GPSR5_21,
  4993. GP_5_20_FN, GPSR5_20,
  4994. GP_5_19_FN, GPSR5_19,
  4995. GP_5_18_FN, GPSR5_18,
  4996. GP_5_17_FN, GPSR5_17,
  4997. GP_5_16_FN, GPSR5_16,
  4998. GP_5_15_FN, GPSR5_15,
  4999. GP_5_14_FN, GPSR5_14,
  5000. GP_5_13_FN, GPSR5_13,
  5001. GP_5_12_FN, GPSR5_12,
  5002. GP_5_11_FN, GPSR5_11,
  5003. GP_5_10_FN, GPSR5_10,
  5004. GP_5_9_FN, GPSR5_9,
  5005. GP_5_8_FN, GPSR5_8,
  5006. GP_5_7_FN, GPSR5_7,
  5007. GP_5_6_FN, GPSR5_6,
  5008. GP_5_5_FN, GPSR5_5,
  5009. GP_5_4_FN, GPSR5_4,
  5010. GP_5_3_FN, GPSR5_3,
  5011. GP_5_2_FN, GPSR5_2,
  5012. GP_5_1_FN, GPSR5_1,
  5013. GP_5_0_FN, GPSR5_0, }
  5014. },
  5015. { PINMUX_CFG_REG("GPSR6", 0xe6060118, 32, 1) {
  5016. GP_6_31_FN, GPSR6_31,
  5017. GP_6_30_FN, GPSR6_30,
  5018. GP_6_29_FN, GPSR6_29,
  5019. GP_6_28_FN, GPSR6_28,
  5020. GP_6_27_FN, GPSR6_27,
  5021. GP_6_26_FN, GPSR6_26,
  5022. GP_6_25_FN, GPSR6_25,
  5023. GP_6_24_FN, GPSR6_24,
  5024. GP_6_23_FN, GPSR6_23,
  5025. GP_6_22_FN, GPSR6_22,
  5026. GP_6_21_FN, GPSR6_21,
  5027. GP_6_20_FN, GPSR6_20,
  5028. GP_6_19_FN, GPSR6_19,
  5029. GP_6_18_FN, GPSR6_18,
  5030. GP_6_17_FN, GPSR6_17,
  5031. GP_6_16_FN, GPSR6_16,
  5032. GP_6_15_FN, GPSR6_15,
  5033. GP_6_14_FN, GPSR6_14,
  5034. GP_6_13_FN, GPSR6_13,
  5035. GP_6_12_FN, GPSR6_12,
  5036. GP_6_11_FN, GPSR6_11,
  5037. GP_6_10_FN, GPSR6_10,
  5038. GP_6_9_FN, GPSR6_9,
  5039. GP_6_8_FN, GPSR6_8,
  5040. GP_6_7_FN, GPSR6_7,
  5041. GP_6_6_FN, GPSR6_6,
  5042. GP_6_5_FN, GPSR6_5,
  5043. GP_6_4_FN, GPSR6_4,
  5044. GP_6_3_FN, GPSR6_3,
  5045. GP_6_2_FN, GPSR6_2,
  5046. GP_6_1_FN, GPSR6_1,
  5047. GP_6_0_FN, GPSR6_0, }
  5048. },
  5049. { PINMUX_CFG_REG("GPSR7", 0xe606011c, 32, 1) {
  5050. 0, 0,
  5051. 0, 0,
  5052. 0, 0,
  5053. 0, 0,
  5054. 0, 0,
  5055. 0, 0,
  5056. 0, 0,
  5057. 0, 0,
  5058. 0, 0,
  5059. 0, 0,
  5060. 0, 0,
  5061. 0, 0,
  5062. 0, 0,
  5063. 0, 0,
  5064. 0, 0,
  5065. 0, 0,
  5066. 0, 0,
  5067. 0, 0,
  5068. 0, 0,
  5069. 0, 0,
  5070. 0, 0,
  5071. 0, 0,
  5072. 0, 0,
  5073. 0, 0,
  5074. 0, 0,
  5075. 0, 0,
  5076. 0, 0,
  5077. 0, 0,
  5078. GP_7_3_FN, GPSR7_3,
  5079. GP_7_2_FN, GPSR7_2,
  5080. GP_7_1_FN, GPSR7_1,
  5081. GP_7_0_FN, GPSR7_0, }
  5082. },
  5083. #undef F_
  5084. #undef FM
  5085. #define F_(x, y) x,
  5086. #define FM(x) FN_##x,
  5087. { PINMUX_CFG_REG("IPSR0", 0xe6060200, 32, 4) {
  5088. IP0_31_28
  5089. IP0_27_24
  5090. IP0_23_20
  5091. IP0_19_16
  5092. IP0_15_12
  5093. IP0_11_8
  5094. IP0_7_4
  5095. IP0_3_0 }
  5096. },
  5097. { PINMUX_CFG_REG("IPSR1", 0xe6060204, 32, 4) {
  5098. IP1_31_28
  5099. IP1_27_24
  5100. IP1_23_20
  5101. IP1_19_16
  5102. IP1_15_12
  5103. IP1_11_8
  5104. IP1_7_4
  5105. IP1_3_0 }
  5106. },
  5107. { PINMUX_CFG_REG("IPSR2", 0xe6060208, 32, 4) {
  5108. IP2_31_28
  5109. IP2_27_24
  5110. IP2_23_20
  5111. IP2_19_16
  5112. IP2_15_12
  5113. IP2_11_8
  5114. IP2_7_4
  5115. IP2_3_0 }
  5116. },
  5117. { PINMUX_CFG_REG("IPSR3", 0xe606020c, 32, 4) {
  5118. IP3_31_28
  5119. IP3_27_24
  5120. IP3_23_20
  5121. IP3_19_16
  5122. IP3_15_12
  5123. IP3_11_8
  5124. IP3_7_4
  5125. IP3_3_0 }
  5126. },
  5127. { PINMUX_CFG_REG("IPSR4", 0xe6060210, 32, 4) {
  5128. IP4_31_28
  5129. IP4_27_24
  5130. IP4_23_20
  5131. IP4_19_16
  5132. IP4_15_12
  5133. IP4_11_8
  5134. IP4_7_4
  5135. IP4_3_0 }
  5136. },
  5137. { PINMUX_CFG_REG("IPSR5", 0xe6060214, 32, 4) {
  5138. IP5_31_28
  5139. IP5_27_24
  5140. IP5_23_20
  5141. IP5_19_16
  5142. IP5_15_12
  5143. IP5_11_8
  5144. IP5_7_4
  5145. IP5_3_0 }
  5146. },
  5147. { PINMUX_CFG_REG("IPSR6", 0xe6060218, 32, 4) {
  5148. IP6_31_28
  5149. IP6_27_24
  5150. IP6_23_20
  5151. IP6_19_16
  5152. IP6_15_12
  5153. IP6_11_8
  5154. IP6_7_4
  5155. IP6_3_0 }
  5156. },
  5157. { PINMUX_CFG_REG("IPSR7", 0xe606021c, 32, 4) {
  5158. IP7_31_28
  5159. IP7_27_24
  5160. IP7_23_20
  5161. IP7_19_16
  5162. /* IP7_15_12 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  5163. IP7_11_8
  5164. IP7_7_4
  5165. IP7_3_0 }
  5166. },
  5167. { PINMUX_CFG_REG("IPSR8", 0xe6060220, 32, 4) {
  5168. IP8_31_28
  5169. IP8_27_24
  5170. IP8_23_20
  5171. IP8_19_16
  5172. IP8_15_12
  5173. IP8_11_8
  5174. IP8_7_4
  5175. IP8_3_0 }
  5176. },
  5177. { PINMUX_CFG_REG("IPSR9", 0xe6060224, 32, 4) {
  5178. IP9_31_28
  5179. IP9_27_24
  5180. IP9_23_20
  5181. IP9_19_16
  5182. IP9_15_12
  5183. IP9_11_8
  5184. IP9_7_4
  5185. IP9_3_0 }
  5186. },
  5187. { PINMUX_CFG_REG("IPSR10", 0xe6060228, 32, 4) {
  5188. IP10_31_28
  5189. IP10_27_24
  5190. IP10_23_20
  5191. IP10_19_16
  5192. IP10_15_12
  5193. IP10_11_8
  5194. IP10_7_4
  5195. IP10_3_0 }
  5196. },
  5197. { PINMUX_CFG_REG("IPSR11", 0xe606022c, 32, 4) {
  5198. IP11_31_28
  5199. IP11_27_24
  5200. IP11_23_20
  5201. IP11_19_16
  5202. IP11_15_12
  5203. IP11_11_8
  5204. IP11_7_4
  5205. IP11_3_0 }
  5206. },
  5207. { PINMUX_CFG_REG("IPSR12", 0xe6060230, 32, 4) {
  5208. IP12_31_28
  5209. IP12_27_24
  5210. IP12_23_20
  5211. IP12_19_16
  5212. IP12_15_12
  5213. IP12_11_8
  5214. IP12_7_4
  5215. IP12_3_0 }
  5216. },
  5217. { PINMUX_CFG_REG("IPSR13", 0xe6060234, 32, 4) {
  5218. IP13_31_28
  5219. IP13_27_24
  5220. IP13_23_20
  5221. IP13_19_16
  5222. IP13_15_12
  5223. IP13_11_8
  5224. IP13_7_4
  5225. IP13_3_0 }
  5226. },
  5227. { PINMUX_CFG_REG("IPSR14", 0xe6060238, 32, 4) {
  5228. IP14_31_28
  5229. IP14_27_24
  5230. IP14_23_20
  5231. IP14_19_16
  5232. IP14_15_12
  5233. IP14_11_8
  5234. IP14_7_4
  5235. IP14_3_0 }
  5236. },
  5237. { PINMUX_CFG_REG("IPSR15", 0xe606023c, 32, 4) {
  5238. IP15_31_28
  5239. IP15_27_24
  5240. IP15_23_20
  5241. IP15_19_16
  5242. IP15_15_12
  5243. IP15_11_8
  5244. IP15_7_4
  5245. IP15_3_0 }
  5246. },
  5247. { PINMUX_CFG_REG("IPSR16", 0xe6060240, 32, 4) {
  5248. IP16_31_28
  5249. IP16_27_24
  5250. IP16_23_20
  5251. IP16_19_16
  5252. IP16_15_12
  5253. IP16_11_8
  5254. IP16_7_4
  5255. IP16_3_0 }
  5256. },
  5257. { PINMUX_CFG_REG("IPSR17", 0xe6060244, 32, 4) {
  5258. IP17_31_28
  5259. IP17_27_24
  5260. IP17_23_20
  5261. IP17_19_16
  5262. IP17_15_12
  5263. IP17_11_8
  5264. IP17_7_4
  5265. IP17_3_0 }
  5266. },
  5267. { PINMUX_CFG_REG("IPSR18", 0xe6060248, 32, 4) {
  5268. /* IP18_31_28 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  5269. /* IP18_27_24 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  5270. /* IP18_23_20 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  5271. /* IP18_19_16 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  5272. /* IP18_15_12 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  5273. /* IP18_11_8 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  5274. IP18_7_4
  5275. IP18_3_0 }
  5276. },
  5277. #undef F_
  5278. #undef FM
  5279. #define F_(x, y) x,
  5280. #define FM(x) FN_##x,
  5281. { PINMUX_CFG_REG_VAR("MOD_SEL0", 0xe6060500, 32,
  5282. 3, 2, 3, 1, 1, 1, 1, 1, 2, 1,
  5283. 1, 2, 1, 1, 1, 2, 2, 1, 2, 3) {
  5284. MOD_SEL0_31_30_29
  5285. MOD_SEL0_28_27
  5286. MOD_SEL0_26_25_24
  5287. MOD_SEL0_23
  5288. MOD_SEL0_22
  5289. MOD_SEL0_21
  5290. MOD_SEL0_20
  5291. MOD_SEL0_19
  5292. MOD_SEL0_18_17
  5293. MOD_SEL0_16
  5294. 0, 0, /* RESERVED 15 */
  5295. MOD_SEL0_14_13
  5296. MOD_SEL0_12
  5297. MOD_SEL0_11
  5298. MOD_SEL0_10
  5299. MOD_SEL0_9_8
  5300. MOD_SEL0_7_6
  5301. MOD_SEL0_5
  5302. MOD_SEL0_4_3
  5303. /* RESERVED 2, 1, 0 */
  5304. 0, 0, 0, 0, 0, 0, 0, 0 }
  5305. },
  5306. { PINMUX_CFG_REG_VAR("MOD_SEL1", 0xe6060504, 32,
  5307. 2, 3, 1, 2, 3, 1, 1, 2, 1,
  5308. 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1) {
  5309. MOD_SEL1_31_30
  5310. MOD_SEL1_29_28_27
  5311. MOD_SEL1_26
  5312. MOD_SEL1_25_24
  5313. MOD_SEL1_23_22_21
  5314. MOD_SEL1_20
  5315. MOD_SEL1_19
  5316. MOD_SEL1_18_17
  5317. MOD_SEL1_16
  5318. MOD_SEL1_15_14
  5319. MOD_SEL1_13
  5320. MOD_SEL1_12
  5321. MOD_SEL1_11
  5322. MOD_SEL1_10
  5323. MOD_SEL1_9
  5324. 0, 0, 0, 0, /* RESERVED 8, 7 */
  5325. MOD_SEL1_6
  5326. MOD_SEL1_5
  5327. MOD_SEL1_4
  5328. MOD_SEL1_3
  5329. MOD_SEL1_2
  5330. MOD_SEL1_1
  5331. MOD_SEL1_0 }
  5332. },
  5333. { PINMUX_CFG_REG_VAR("MOD_SEL2", 0xe6060508, 32,
  5334. 1, 1, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1,
  5335. 4, 4, 4, 3, 1) {
  5336. MOD_SEL2_31
  5337. MOD_SEL2_30
  5338. MOD_SEL2_29
  5339. MOD_SEL2_28_27
  5340. MOD_SEL2_26
  5341. MOD_SEL2_25_24_23
  5342. /* RESERVED 22 */
  5343. 0, 0,
  5344. MOD_SEL2_21
  5345. MOD_SEL2_20
  5346. MOD_SEL2_19
  5347. MOD_SEL2_18
  5348. MOD_SEL2_17
  5349. /* RESERVED 16 */
  5350. 0, 0,
  5351. /* RESERVED 15, 14, 13, 12 */
  5352. 0, 0, 0, 0, 0, 0, 0, 0,
  5353. 0, 0, 0, 0, 0, 0, 0, 0,
  5354. /* RESERVED 11, 10, 9, 8 */
  5355. 0, 0, 0, 0, 0, 0, 0, 0,
  5356. 0, 0, 0, 0, 0, 0, 0, 0,
  5357. /* RESERVED 7, 6, 5, 4 */
  5358. 0, 0, 0, 0, 0, 0, 0, 0,
  5359. 0, 0, 0, 0, 0, 0, 0, 0,
  5360. /* RESERVED 3, 2, 1 */
  5361. 0, 0, 0, 0, 0, 0, 0, 0,
  5362. MOD_SEL2_0 }
  5363. },
  5364. { },
  5365. };
  5366. static const struct pinmux_drive_reg pinmux_drive_regs[] = {
  5367. { PINMUX_DRIVE_REG("DRVCTRL0", 0xe6060300) {
  5368. { PIN_NUMBER('W', 3), 28, 2 }, /* QSPI0_SPCLK */
  5369. { PIN_A_NUMBER('C', 5), 24, 2 }, /* QSPI0_MOSI_IO0 */
  5370. { PIN_A_NUMBER('B', 4), 20, 2 }, /* QSPI0_MISO_IO1 */
  5371. { PIN_NUMBER('Y', 6), 16, 2 }, /* QSPI0_IO2 */
  5372. { PIN_A_NUMBER('B', 6), 12, 2 }, /* QSPI0_IO3 */
  5373. { PIN_NUMBER('Y', 3), 8, 2 }, /* QSPI0_SSL */
  5374. { PIN_NUMBER('V', 3), 4, 2 }, /* QSPI1_SPCLK */
  5375. { PIN_A_NUMBER('C', 7), 0, 2 }, /* QSPI1_MOSI_IO0 */
  5376. } },
  5377. { PINMUX_DRIVE_REG("DRVCTRL1", 0xe6060304) {
  5378. { PIN_A_NUMBER('E', 5), 28, 2 }, /* QSPI1_MISO_IO1 */
  5379. { PIN_A_NUMBER('E', 4), 24, 2 }, /* QSPI1_IO2 */
  5380. { PIN_A_NUMBER('C', 3), 20, 2 }, /* QSPI1_IO3 */
  5381. { PIN_NUMBER('V', 5), 16, 2 }, /* QSPI1_SSL */
  5382. { PIN_NUMBER('Y', 7), 12, 2 }, /* RPC_INT# */
  5383. { PIN_NUMBER('V', 6), 8, 2 }, /* RPC_WP# */
  5384. { PIN_NUMBER('V', 7), 4, 2 }, /* RPC_RESET# */
  5385. { PIN_NUMBER('A', 16), 0, 3 }, /* AVB_RX_CTL */
  5386. } },
  5387. { PINMUX_DRIVE_REG("DRVCTRL2", 0xe6060308) {
  5388. { PIN_NUMBER('B', 19), 28, 3 }, /* AVB_RXC */
  5389. { PIN_NUMBER('A', 13), 24, 3 }, /* AVB_RD0 */
  5390. { PIN_NUMBER('B', 13), 20, 3 }, /* AVB_RD1 */
  5391. { PIN_NUMBER('A', 14), 16, 3 }, /* AVB_RD2 */
  5392. { PIN_NUMBER('B', 14), 12, 3 }, /* AVB_RD3 */
  5393. { PIN_NUMBER('A', 8), 8, 3 }, /* AVB_TX_CTL */
  5394. { PIN_NUMBER('A', 19), 4, 3 }, /* AVB_TXC */
  5395. { PIN_NUMBER('A', 18), 0, 3 }, /* AVB_TD0 */
  5396. } },
  5397. { PINMUX_DRIVE_REG("DRVCTRL3", 0xe606030c) {
  5398. { PIN_NUMBER('B', 18), 28, 3 }, /* AVB_TD1 */
  5399. { PIN_NUMBER('A', 17), 24, 3 }, /* AVB_TD2 */
  5400. { PIN_NUMBER('B', 17), 20, 3 }, /* AVB_TD3 */
  5401. { PIN_NUMBER('A', 12), 16, 3 }, /* AVB_TXCREFCLK */
  5402. { PIN_NUMBER('A', 9), 12, 3 }, /* AVB_MDIO */
  5403. { RCAR_GP_PIN(2, 9), 8, 3 }, /* AVB_MDC */
  5404. { RCAR_GP_PIN(2, 10), 4, 3 }, /* AVB_MAGIC */
  5405. { RCAR_GP_PIN(2, 11), 0, 3 }, /* AVB_PHY_INT */
  5406. } },
  5407. { PINMUX_DRIVE_REG("DRVCTRL4", 0xe6060310) {
  5408. { RCAR_GP_PIN(2, 12), 28, 3 }, /* AVB_LINK */
  5409. { RCAR_GP_PIN(2, 13), 24, 3 }, /* AVB_AVTP_MATCH */
  5410. { RCAR_GP_PIN(2, 14), 20, 3 }, /* AVB_AVTP_CAPTURE */
  5411. { RCAR_GP_PIN(2, 0), 16, 3 }, /* IRQ0 */
  5412. { RCAR_GP_PIN(2, 1), 12, 3 }, /* IRQ1 */
  5413. { RCAR_GP_PIN(2, 2), 8, 3 }, /* IRQ2 */
  5414. { RCAR_GP_PIN(2, 3), 4, 3 }, /* IRQ3 */
  5415. { RCAR_GP_PIN(2, 4), 0, 3 }, /* IRQ4 */
  5416. } },
  5417. { PINMUX_DRIVE_REG("DRVCTRL5", 0xe6060314) {
  5418. { RCAR_GP_PIN(2, 5), 28, 3 }, /* IRQ5 */
  5419. { RCAR_GP_PIN(2, 6), 24, 3 }, /* PWM0 */
  5420. { RCAR_GP_PIN(2, 7), 20, 3 }, /* PWM1 */
  5421. { RCAR_GP_PIN(2, 8), 16, 3 }, /* PWM2 */
  5422. { RCAR_GP_PIN(1, 0), 12, 3 }, /* A0 */
  5423. { RCAR_GP_PIN(1, 1), 8, 3 }, /* A1 */
  5424. { RCAR_GP_PIN(1, 2), 4, 3 }, /* A2 */
  5425. { RCAR_GP_PIN(1, 3), 0, 3 }, /* A3 */
  5426. } },
  5427. { PINMUX_DRIVE_REG("DRVCTRL6", 0xe6060318) {
  5428. { RCAR_GP_PIN(1, 4), 28, 3 }, /* A4 */
  5429. { RCAR_GP_PIN(1, 5), 24, 3 }, /* A5 */
  5430. { RCAR_GP_PIN(1, 6), 20, 3 }, /* A6 */
  5431. { RCAR_GP_PIN(1, 7), 16, 3 }, /* A7 */
  5432. { RCAR_GP_PIN(1, 8), 12, 3 }, /* A8 */
  5433. { RCAR_GP_PIN(1, 9), 8, 3 }, /* A9 */
  5434. { RCAR_GP_PIN(1, 10), 4, 3 }, /* A10 */
  5435. { RCAR_GP_PIN(1, 11), 0, 3 }, /* A11 */
  5436. } },
  5437. { PINMUX_DRIVE_REG("DRVCTRL7", 0xe606031c) {
  5438. { RCAR_GP_PIN(1, 12), 28, 3 }, /* A12 */
  5439. { RCAR_GP_PIN(1, 13), 24, 3 }, /* A13 */
  5440. { RCAR_GP_PIN(1, 14), 20, 3 }, /* A14 */
  5441. { RCAR_GP_PIN(1, 15), 16, 3 }, /* A15 */
  5442. { RCAR_GP_PIN(1, 16), 12, 3 }, /* A16 */
  5443. { RCAR_GP_PIN(1, 17), 8, 3 }, /* A17 */
  5444. { RCAR_GP_PIN(1, 18), 4, 3 }, /* A18 */
  5445. { RCAR_GP_PIN(1, 19), 0, 3 }, /* A19 */
  5446. } },
  5447. { PINMUX_DRIVE_REG("DRVCTRL8", 0xe6060320) {
  5448. { RCAR_GP_PIN(1, 28), 28, 3 }, /* CLKOUT */
  5449. { RCAR_GP_PIN(1, 20), 24, 3 }, /* CS0 */
  5450. { RCAR_GP_PIN(1, 21), 20, 3 }, /* CS1_A26 */
  5451. { RCAR_GP_PIN(1, 22), 16, 3 }, /* BS */
  5452. { RCAR_GP_PIN(1, 23), 12, 3 }, /* RD */
  5453. { RCAR_GP_PIN(1, 24), 8, 3 }, /* RD_WR */
  5454. { RCAR_GP_PIN(1, 25), 4, 3 }, /* WE0 */
  5455. { RCAR_GP_PIN(1, 26), 0, 3 }, /* WE1 */
  5456. } },
  5457. { PINMUX_DRIVE_REG("DRVCTRL9", 0xe6060324) {
  5458. { RCAR_GP_PIN(1, 27), 28, 3 }, /* EX_WAIT0 */
  5459. { PIN_NUMBER('C', 1), 24, 3 }, /* PRESETOUT# */
  5460. { RCAR_GP_PIN(0, 0), 20, 3 }, /* D0 */
  5461. { RCAR_GP_PIN(0, 1), 16, 3 }, /* D1 */
  5462. { RCAR_GP_PIN(0, 2), 12, 3 }, /* D2 */
  5463. { RCAR_GP_PIN(0, 3), 8, 3 }, /* D3 */
  5464. { RCAR_GP_PIN(0, 4), 4, 3 }, /* D4 */
  5465. { RCAR_GP_PIN(0, 5), 0, 3 }, /* D5 */
  5466. } },
  5467. { PINMUX_DRIVE_REG("DRVCTRL10", 0xe6060328) {
  5468. { RCAR_GP_PIN(0, 6), 28, 3 }, /* D6 */
  5469. { RCAR_GP_PIN(0, 7), 24, 3 }, /* D7 */
  5470. { RCAR_GP_PIN(0, 8), 20, 3 }, /* D8 */
  5471. { RCAR_GP_PIN(0, 9), 16, 3 }, /* D9 */
  5472. { RCAR_GP_PIN(0, 10), 12, 3 }, /* D10 */
  5473. { RCAR_GP_PIN(0, 11), 8, 3 }, /* D11 */
  5474. { RCAR_GP_PIN(0, 12), 4, 3 }, /* D12 */
  5475. { RCAR_GP_PIN(0, 13), 0, 3 }, /* D13 */
  5476. } },
  5477. { PINMUX_DRIVE_REG("DRVCTRL11", 0xe606032c) {
  5478. { RCAR_GP_PIN(0, 14), 28, 3 }, /* D14 */
  5479. { RCAR_GP_PIN(0, 15), 24, 3 }, /* D15 */
  5480. { RCAR_GP_PIN(7, 0), 20, 3 }, /* AVS1 */
  5481. { RCAR_GP_PIN(7, 1), 16, 3 }, /* AVS2 */
  5482. { RCAR_GP_PIN(7, 2), 12, 3 }, /* HDMI0_CEC */
  5483. { RCAR_GP_PIN(7, 3), 8, 3 }, /* HDMI1_CEC */
  5484. { PIN_A_NUMBER('P', 7), 4, 2 }, /* DU_DOTCLKIN0 */
  5485. { PIN_A_NUMBER('P', 8), 0, 2 }, /* DU_DOTCLKIN1 */
  5486. } },
  5487. { PINMUX_DRIVE_REG("DRVCTRL12", 0xe6060330) {
  5488. { PIN_A_NUMBER('R', 7), 28, 2 }, /* DU_DOTCLKIN2 */
  5489. { PIN_A_NUMBER('R', 8), 24, 2 }, /* DU_DOTCLKIN3 */
  5490. { PIN_A_NUMBER('D', 38), 20, 2 }, /* FSCLKST# */
  5491. { PIN_A_NUMBER('R', 30), 4, 2 }, /* TMS */
  5492. } },
  5493. { PINMUX_DRIVE_REG("DRVCTRL13", 0xe6060334) {
  5494. { PIN_A_NUMBER('T', 28), 28, 2 }, /* TDO */
  5495. { PIN_A_NUMBER('T', 30), 24, 2 }, /* ASEBRK */
  5496. { RCAR_GP_PIN(3, 0), 20, 3 }, /* SD0_CLK */
  5497. { RCAR_GP_PIN(3, 1), 16, 3 }, /* SD0_CMD */
  5498. { RCAR_GP_PIN(3, 2), 12, 3 }, /* SD0_DAT0 */
  5499. { RCAR_GP_PIN(3, 3), 8, 3 }, /* SD0_DAT1 */
  5500. { RCAR_GP_PIN(3, 4), 4, 3 }, /* SD0_DAT2 */
  5501. { RCAR_GP_PIN(3, 5), 0, 3 }, /* SD0_DAT3 */
  5502. } },
  5503. { PINMUX_DRIVE_REG("DRVCTRL14", 0xe6060338) {
  5504. { RCAR_GP_PIN(3, 6), 28, 3 }, /* SD1_CLK */
  5505. { RCAR_GP_PIN(3, 7), 24, 3 }, /* SD1_CMD */
  5506. { RCAR_GP_PIN(3, 8), 20, 3 }, /* SD1_DAT0 */
  5507. { RCAR_GP_PIN(3, 9), 16, 3 }, /* SD1_DAT1 */
  5508. { RCAR_GP_PIN(3, 10), 12, 3 }, /* SD1_DAT2 */
  5509. { RCAR_GP_PIN(3, 11), 8, 3 }, /* SD1_DAT3 */
  5510. { RCAR_GP_PIN(4, 0), 4, 3 }, /* SD2_CLK */
  5511. { RCAR_GP_PIN(4, 1), 0, 3 }, /* SD2_CMD */
  5512. } },
  5513. { PINMUX_DRIVE_REG("DRVCTRL15", 0xe606033c) {
  5514. { RCAR_GP_PIN(4, 2), 28, 3 }, /* SD2_DAT0 */
  5515. { RCAR_GP_PIN(4, 3), 24, 3 }, /* SD2_DAT1 */
  5516. { RCAR_GP_PIN(4, 4), 20, 3 }, /* SD2_DAT2 */
  5517. { RCAR_GP_PIN(4, 5), 16, 3 }, /* SD2_DAT3 */
  5518. { RCAR_GP_PIN(4, 6), 12, 3 }, /* SD2_DS */
  5519. { RCAR_GP_PIN(4, 7), 8, 3 }, /* SD3_CLK */
  5520. { RCAR_GP_PIN(4, 8), 4, 3 }, /* SD3_CMD */
  5521. { RCAR_GP_PIN(4, 9), 0, 3 }, /* SD3_DAT0 */
  5522. } },
  5523. { PINMUX_DRIVE_REG("DRVCTRL16", 0xe6060340) {
  5524. { RCAR_GP_PIN(4, 10), 28, 3 }, /* SD3_DAT1 */
  5525. { RCAR_GP_PIN(4, 11), 24, 3 }, /* SD3_DAT2 */
  5526. { RCAR_GP_PIN(4, 12), 20, 3 }, /* SD3_DAT3 */
  5527. { RCAR_GP_PIN(4, 13), 16, 3 }, /* SD3_DAT4 */
  5528. { RCAR_GP_PIN(4, 14), 12, 3 }, /* SD3_DAT5 */
  5529. { RCAR_GP_PIN(4, 15), 8, 3 }, /* SD3_DAT6 */
  5530. { RCAR_GP_PIN(4, 16), 4, 3 }, /* SD3_DAT7 */
  5531. { RCAR_GP_PIN(4, 17), 0, 3 }, /* SD3_DS */
  5532. } },
  5533. { PINMUX_DRIVE_REG("DRVCTRL17", 0xe6060344) {
  5534. { RCAR_GP_PIN(3, 12), 28, 3 }, /* SD0_CD */
  5535. { RCAR_GP_PIN(3, 13), 24, 3 }, /* SD0_WP */
  5536. { RCAR_GP_PIN(3, 14), 20, 3 }, /* SD1_CD */
  5537. { RCAR_GP_PIN(3, 15), 16, 3 }, /* SD1_WP */
  5538. { RCAR_GP_PIN(5, 0), 12, 3 }, /* SCK0 */
  5539. { RCAR_GP_PIN(5, 1), 8, 3 }, /* RX0 */
  5540. { RCAR_GP_PIN(5, 2), 4, 3 }, /* TX0 */
  5541. { RCAR_GP_PIN(5, 3), 0, 3 }, /* CTS0 */
  5542. } },
  5543. { PINMUX_DRIVE_REG("DRVCTRL18", 0xe6060348) {
  5544. { RCAR_GP_PIN(5, 4), 28, 3 }, /* RTS0 */
  5545. { RCAR_GP_PIN(5, 5), 24, 3 }, /* RX1 */
  5546. { RCAR_GP_PIN(5, 6), 20, 3 }, /* TX1 */
  5547. { RCAR_GP_PIN(5, 7), 16, 3 }, /* CTS1 */
  5548. { RCAR_GP_PIN(5, 8), 12, 3 }, /* RTS1 */
  5549. { RCAR_GP_PIN(5, 9), 8, 3 }, /* SCK2 */
  5550. { RCAR_GP_PIN(5, 10), 4, 3 }, /* TX2 */
  5551. { RCAR_GP_PIN(5, 11), 0, 3 }, /* RX2 */
  5552. } },
  5553. { PINMUX_DRIVE_REG("DRVCTRL19", 0xe606034c) {
  5554. { RCAR_GP_PIN(5, 12), 28, 3 }, /* HSCK0 */
  5555. { RCAR_GP_PIN(5, 13), 24, 3 }, /* HRX0 */
  5556. { RCAR_GP_PIN(5, 14), 20, 3 }, /* HTX0 */
  5557. { RCAR_GP_PIN(5, 15), 16, 3 }, /* HCTS0 */
  5558. { RCAR_GP_PIN(5, 16), 12, 3 }, /* HRTS0 */
  5559. { RCAR_GP_PIN(5, 17), 8, 3 }, /* MSIOF0_SCK */
  5560. { RCAR_GP_PIN(5, 18), 4, 3 }, /* MSIOF0_SYNC */
  5561. { RCAR_GP_PIN(5, 19), 0, 3 }, /* MSIOF0_SS1 */
  5562. } },
  5563. { PINMUX_DRIVE_REG("DRVCTRL20", 0xe6060350) {
  5564. { RCAR_GP_PIN(5, 20), 28, 3 }, /* MSIOF0_TXD */
  5565. { RCAR_GP_PIN(5, 21), 24, 3 }, /* MSIOF0_SS2 */
  5566. { RCAR_GP_PIN(5, 22), 20, 3 }, /* MSIOF0_RXD */
  5567. { RCAR_GP_PIN(5, 23), 16, 3 }, /* MLB_CLK */
  5568. { RCAR_GP_PIN(5, 24), 12, 3 }, /* MLB_SIG */
  5569. { RCAR_GP_PIN(5, 25), 8, 3 }, /* MLB_DAT */
  5570. { PIN_NUMBER('H', 37), 4, 3 }, /* MLB_REF */
  5571. { RCAR_GP_PIN(6, 0), 0, 3 }, /* SSI_SCK01239 */
  5572. } },
  5573. { PINMUX_DRIVE_REG("DRVCTRL21", 0xe6060354) {
  5574. { RCAR_GP_PIN(6, 1), 28, 3 }, /* SSI_WS01239 */
  5575. { RCAR_GP_PIN(6, 2), 24, 3 }, /* SSI_SDATA0 */
  5576. { RCAR_GP_PIN(6, 3), 20, 3 }, /* SSI_SDATA1 */
  5577. { RCAR_GP_PIN(6, 4), 16, 3 }, /* SSI_SDATA2 */
  5578. { RCAR_GP_PIN(6, 5), 12, 3 }, /* SSI_SCK349 */
  5579. { RCAR_GP_PIN(6, 6), 8, 3 }, /* SSI_WS349 */
  5580. { RCAR_GP_PIN(6, 7), 4, 3 }, /* SSI_SDATA3 */
  5581. { RCAR_GP_PIN(6, 8), 0, 3 }, /* SSI_SCK4 */
  5582. } },
  5583. { PINMUX_DRIVE_REG("DRVCTRL22", 0xe6060358) {
  5584. { RCAR_GP_PIN(6, 9), 28, 3 }, /* SSI_WS4 */
  5585. { RCAR_GP_PIN(6, 10), 24, 3 }, /* SSI_SDATA4 */
  5586. { RCAR_GP_PIN(6, 11), 20, 3 }, /* SSI_SCK5 */
  5587. { RCAR_GP_PIN(6, 12), 16, 3 }, /* SSI_WS5 */
  5588. { RCAR_GP_PIN(6, 13), 12, 3 }, /* SSI_SDATA5 */
  5589. { RCAR_GP_PIN(6, 14), 8, 3 }, /* SSI_SCK6 */
  5590. { RCAR_GP_PIN(6, 15), 4, 3 }, /* SSI_WS6 */
  5591. { RCAR_GP_PIN(6, 16), 0, 3 }, /* SSI_SDATA6 */
  5592. } },
  5593. { PINMUX_DRIVE_REG("DRVCTRL23", 0xe606035c) {
  5594. { RCAR_GP_PIN(6, 17), 28, 3 }, /* SSI_SCK78 */
  5595. { RCAR_GP_PIN(6, 18), 24, 3 }, /* SSI_WS78 */
  5596. { RCAR_GP_PIN(6, 19), 20, 3 }, /* SSI_SDATA7 */
  5597. { RCAR_GP_PIN(6, 20), 16, 3 }, /* SSI_SDATA8 */
  5598. { RCAR_GP_PIN(6, 21), 12, 3 }, /* SSI_SDATA9 */
  5599. { RCAR_GP_PIN(6, 22), 8, 3 }, /* AUDIO_CLKA */
  5600. { RCAR_GP_PIN(6, 23), 4, 3 }, /* AUDIO_CLKB */
  5601. { RCAR_GP_PIN(6, 24), 0, 3 }, /* USB0_PWEN */
  5602. } },
  5603. { PINMUX_DRIVE_REG("DRVCTRL24", 0xe6060360) {
  5604. { RCAR_GP_PIN(6, 25), 28, 3 }, /* USB0_OVC */
  5605. { RCAR_GP_PIN(6, 26), 24, 3 }, /* USB1_PWEN */
  5606. { RCAR_GP_PIN(6, 27), 20, 3 }, /* USB1_OVC */
  5607. { RCAR_GP_PIN(6, 28), 16, 3 }, /* USB30_PWEN */
  5608. { RCAR_GP_PIN(6, 29), 12, 3 }, /* USB30_OVC */
  5609. { RCAR_GP_PIN(6, 30), 8, 3 }, /* USB2_CH3_PWEN */
  5610. { RCAR_GP_PIN(6, 31), 4, 3 }, /* USB2_CH3_OVC */
  5611. } },
  5612. { },
  5613. };
  5614. enum ioctrl_regs {
  5615. POCCTRL,
  5616. };
  5617. static const struct pinmux_ioctrl_reg pinmux_ioctrl_regs[] = {
  5618. [POCCTRL] = { 0xe6060380, },
  5619. { /* sentinel */ },
  5620. };
  5621. static int r8a7795_pin_to_pocctrl(struct sh_pfc *pfc, unsigned int pin, u32 *pocctrl)
  5622. {
  5623. int bit = -EINVAL;
  5624. *pocctrl = pinmux_ioctrl_regs[POCCTRL].reg;
  5625. if (pin >= RCAR_GP_PIN(3, 0) && pin <= RCAR_GP_PIN(3, 11))
  5626. bit = pin & 0x1f;
  5627. if (pin >= RCAR_GP_PIN(4, 0) && pin <= RCAR_GP_PIN(4, 17))
  5628. bit = (pin & 0x1f) + 12;
  5629. return bit;
  5630. }
  5631. static const struct pinmux_bias_reg pinmux_bias_regs[] = {
  5632. { PINMUX_BIAS_REG("PUEN0", 0xe6060400, "PUD0", 0xe6060440) {
  5633. [ 0] = PIN_NUMBER('W', 3), /* QSPI0_SPCLK */
  5634. [ 1] = PIN_A_NUMBER('C', 5), /* QSPI0_MOSI_IO0 */
  5635. [ 2] = PIN_A_NUMBER('B', 4), /* QSPI0_MISO_IO1 */
  5636. [ 3] = PIN_NUMBER('Y', 6), /* QSPI0_IO2 */
  5637. [ 4] = PIN_A_NUMBER('B', 6), /* QSPI0_IO3 */
  5638. [ 5] = PIN_NUMBER('Y', 3), /* QSPI0_SSL */
  5639. [ 6] = PIN_NUMBER('V', 3), /* QSPI1_SPCLK */
  5640. [ 7] = PIN_A_NUMBER('C', 7), /* QSPI1_MOSI_IO0 */
  5641. [ 8] = PIN_A_NUMBER('E', 5), /* QSPI1_MISO_IO1 */
  5642. [ 9] = PIN_A_NUMBER('E', 4), /* QSPI1_IO2 */
  5643. [10] = PIN_A_NUMBER('C', 3), /* QSPI1_IO3 */
  5644. [11] = PIN_NUMBER('V', 5), /* QSPI1_SSL */
  5645. [12] = PIN_NUMBER('Y', 7), /* RPC_INT# */
  5646. [13] = PIN_NUMBER('V', 6), /* RPC_WP# */
  5647. [14] = PIN_NUMBER('V', 7), /* RPC_RESET# */
  5648. [15] = PIN_NUMBER('A', 16), /* AVB_RX_CTL */
  5649. [16] = PIN_NUMBER('B', 19), /* AVB_RXC */
  5650. [17] = PIN_NUMBER('A', 13), /* AVB_RD0 */
  5651. [18] = PIN_NUMBER('B', 13), /* AVB_RD1 */
  5652. [19] = PIN_NUMBER('A', 14), /* AVB_RD2 */
  5653. [20] = PIN_NUMBER('B', 14), /* AVB_RD3 */
  5654. [21] = PIN_NUMBER('A', 8), /* AVB_TX_CTL */
  5655. [22] = PIN_NUMBER('A', 19), /* AVB_TXC */
  5656. [23] = PIN_NUMBER('A', 18), /* AVB_TD0 */
  5657. [24] = PIN_NUMBER('B', 18), /* AVB_TD1 */
  5658. [25] = PIN_NUMBER('A', 17), /* AVB_TD2 */
  5659. [26] = PIN_NUMBER('B', 17), /* AVB_TD3 */
  5660. [27] = PIN_NUMBER('A', 12), /* AVB_TXCREFCLK */
  5661. [28] = PIN_NUMBER('A', 9), /* AVB_MDIO */
  5662. [29] = RCAR_GP_PIN(2, 9), /* AVB_MDC */
  5663. [30] = RCAR_GP_PIN(2, 10), /* AVB_MAGIC */
  5664. [31] = RCAR_GP_PIN(2, 11), /* AVB_PHY_INT */
  5665. } },
  5666. { PINMUX_BIAS_REG("PUEN1", 0xe6060404, "PUD1", 0xe6060444) {
  5667. [ 0] = RCAR_GP_PIN(2, 12), /* AVB_LINK */
  5668. [ 1] = RCAR_GP_PIN(2, 13), /* AVB_AVTP_MATCH_A */
  5669. [ 2] = RCAR_GP_PIN(2, 14), /* AVB_AVTP_CAPTURE_A */
  5670. [ 3] = RCAR_GP_PIN(2, 0), /* IRQ0 */
  5671. [ 4] = RCAR_GP_PIN(2, 1), /* IRQ1 */
  5672. [ 5] = RCAR_GP_PIN(2, 2), /* IRQ2 */
  5673. [ 6] = RCAR_GP_PIN(2, 3), /* IRQ3 */
  5674. [ 7] = RCAR_GP_PIN(2, 4), /* IRQ4 */
  5675. [ 8] = RCAR_GP_PIN(2, 5), /* IRQ5 */
  5676. [ 9] = RCAR_GP_PIN(2, 6), /* PWM0 */
  5677. [10] = RCAR_GP_PIN(2, 7), /* PWM1_A */
  5678. [11] = RCAR_GP_PIN(2, 8), /* PWM2_A */
  5679. [12] = RCAR_GP_PIN(1, 0), /* A0 */
  5680. [13] = RCAR_GP_PIN(1, 1), /* A1 */
  5681. [14] = RCAR_GP_PIN(1, 2), /* A2 */
  5682. [15] = RCAR_GP_PIN(1, 3), /* A3 */
  5683. [16] = RCAR_GP_PIN(1, 4), /* A4 */
  5684. [17] = RCAR_GP_PIN(1, 5), /* A5 */
  5685. [18] = RCAR_GP_PIN(1, 6), /* A6 */
  5686. [19] = RCAR_GP_PIN(1, 7), /* A7 */
  5687. [20] = RCAR_GP_PIN(1, 8), /* A8 */
  5688. [21] = RCAR_GP_PIN(1, 9), /* A9 */
  5689. [22] = RCAR_GP_PIN(1, 10), /* A10 */
  5690. [23] = RCAR_GP_PIN(1, 11), /* A11 */
  5691. [24] = RCAR_GP_PIN(1, 12), /* A12 */
  5692. [25] = RCAR_GP_PIN(1, 13), /* A13 */
  5693. [26] = RCAR_GP_PIN(1, 14), /* A14 */
  5694. [27] = RCAR_GP_PIN(1, 15), /* A15 */
  5695. [28] = RCAR_GP_PIN(1, 16), /* A16 */
  5696. [29] = RCAR_GP_PIN(1, 17), /* A17 */
  5697. [30] = RCAR_GP_PIN(1, 18), /* A18 */
  5698. [31] = RCAR_GP_PIN(1, 19), /* A19 */
  5699. } },
  5700. { PINMUX_BIAS_REG("PUEN2", 0xe6060408, "PUD2", 0xe6060448) {
  5701. [ 0] = RCAR_GP_PIN(1, 28), /* CLKOUT */
  5702. [ 1] = RCAR_GP_PIN(1, 20), /* CS0_N */
  5703. [ 2] = RCAR_GP_PIN(1, 21), /* CS1_N */
  5704. [ 3] = RCAR_GP_PIN(1, 22), /* BS_N */
  5705. [ 4] = RCAR_GP_PIN(1, 23), /* RD_N */
  5706. [ 5] = RCAR_GP_PIN(1, 24), /* RD_WR_N */
  5707. [ 6] = RCAR_GP_PIN(1, 25), /* WE0_N */
  5708. [ 7] = RCAR_GP_PIN(1, 26), /* WE1_N */
  5709. [ 8] = RCAR_GP_PIN(1, 27), /* EX_WAIT0_A */
  5710. [ 9] = PIN_NUMBER('C', 1), /* PRESETOUT# */
  5711. [10] = RCAR_GP_PIN(0, 0), /* D0 */
  5712. [11] = RCAR_GP_PIN(0, 1), /* D1 */
  5713. [12] = RCAR_GP_PIN(0, 2), /* D2 */
  5714. [13] = RCAR_GP_PIN(0, 3), /* D3 */
  5715. [14] = RCAR_GP_PIN(0, 4), /* D4 */
  5716. [15] = RCAR_GP_PIN(0, 5), /* D5 */
  5717. [16] = RCAR_GP_PIN(0, 6), /* D6 */
  5718. [17] = RCAR_GP_PIN(0, 7), /* D7 */
  5719. [18] = RCAR_GP_PIN(0, 8), /* D8 */
  5720. [19] = RCAR_GP_PIN(0, 9), /* D9 */
  5721. [20] = RCAR_GP_PIN(0, 10), /* D10 */
  5722. [21] = RCAR_GP_PIN(0, 11), /* D11 */
  5723. [22] = RCAR_GP_PIN(0, 12), /* D12 */
  5724. [23] = RCAR_GP_PIN(0, 13), /* D13 */
  5725. [24] = RCAR_GP_PIN(0, 14), /* D14 */
  5726. [25] = RCAR_GP_PIN(0, 15), /* D15 */
  5727. [26] = RCAR_GP_PIN(7, 0), /* AVS1 */
  5728. [27] = RCAR_GP_PIN(7, 1), /* AVS2 */
  5729. [28] = RCAR_GP_PIN(7, 2), /* HDMI0_CEC */
  5730. [29] = RCAR_GP_PIN(7, 3), /* HDMI1_CEC */
  5731. [30] = PIN_A_NUMBER('P', 7), /* DU_DOTCLKIN0 */
  5732. [31] = PIN_A_NUMBER('P', 8), /* DU_DOTCLKIN1 */
  5733. } },
  5734. { PINMUX_BIAS_REG("PUEN3", 0xe606040c, "PUD3", 0xe606044c) {
  5735. [ 0] = PIN_A_NUMBER('R', 7), /* DU_DOTCLKIN2 */
  5736. [ 1] = PIN_A_NUMBER('R', 8), /* DU_DOTCLKIN3 */
  5737. [ 2] = PIN_A_NUMBER('D', 38), /* FSCLKST# */
  5738. [ 3] = PIN_A_NUMBER('D', 39), /* EXTALR*/
  5739. [ 4] = PIN_A_NUMBER('R', 26), /* TRST# */
  5740. [ 5] = PIN_A_NUMBER('T', 27), /* TCK */
  5741. [ 6] = PIN_A_NUMBER('R', 30), /* TMS */
  5742. [ 7] = PIN_A_NUMBER('R', 29), /* TDI */
  5743. [ 8] = PIN_NONE,
  5744. [ 9] = PIN_A_NUMBER('T', 30), /* ASEBRK */
  5745. [10] = RCAR_GP_PIN(3, 0), /* SD0_CLK */
  5746. [11] = RCAR_GP_PIN(3, 1), /* SD0_CMD */
  5747. [12] = RCAR_GP_PIN(3, 2), /* SD0_DAT0 */
  5748. [13] = RCAR_GP_PIN(3, 3), /* SD0_DAT1 */
  5749. [14] = RCAR_GP_PIN(3, 4), /* SD0_DAT2 */
  5750. [15] = RCAR_GP_PIN(3, 5), /* SD0_DAT3 */
  5751. [16] = RCAR_GP_PIN(3, 6), /* SD1_CLK */
  5752. [17] = RCAR_GP_PIN(3, 7), /* SD1_CMD */
  5753. [18] = RCAR_GP_PIN(3, 8), /* SD1_DAT0 */
  5754. [19] = RCAR_GP_PIN(3, 9), /* SD1_DAT1 */
  5755. [20] = RCAR_GP_PIN(3, 10), /* SD1_DAT2 */
  5756. [21] = RCAR_GP_PIN(3, 11), /* SD1_DAT3 */
  5757. [22] = RCAR_GP_PIN(4, 0), /* SD2_CLK */
  5758. [23] = RCAR_GP_PIN(4, 1), /* SD2_CMD */
  5759. [24] = RCAR_GP_PIN(4, 2), /* SD2_DAT0 */
  5760. [25] = RCAR_GP_PIN(4, 3), /* SD2_DAT1 */
  5761. [26] = RCAR_GP_PIN(4, 4), /* SD2_DAT2 */
  5762. [27] = RCAR_GP_PIN(4, 5), /* SD2_DAT3 */
  5763. [28] = RCAR_GP_PIN(4, 6), /* SD2_DS */
  5764. [29] = RCAR_GP_PIN(4, 7), /* SD3_CLK */
  5765. [30] = RCAR_GP_PIN(4, 8), /* SD3_CMD */
  5766. [31] = RCAR_GP_PIN(4, 9), /* SD3_DAT0 */
  5767. } },
  5768. { PINMUX_BIAS_REG("PUEN4", 0xe6060410, "PUD4", 0xe6060450) {
  5769. [ 0] = RCAR_GP_PIN(4, 10), /* SD3_DAT1 */
  5770. [ 1] = RCAR_GP_PIN(4, 11), /* SD3_DAT2 */
  5771. [ 2] = RCAR_GP_PIN(4, 12), /* SD3_DAT3 */
  5772. [ 3] = RCAR_GP_PIN(4, 13), /* SD3_DAT4 */
  5773. [ 4] = RCAR_GP_PIN(4, 14), /* SD3_DAT5 */
  5774. [ 5] = RCAR_GP_PIN(4, 15), /* SD3_DAT6 */
  5775. [ 6] = RCAR_GP_PIN(4, 16), /* SD3_DAT7 */
  5776. [ 7] = RCAR_GP_PIN(4, 17), /* SD3_DS */
  5777. [ 8] = RCAR_GP_PIN(3, 12), /* SD0_CD */
  5778. [ 9] = RCAR_GP_PIN(3, 13), /* SD0_WP */
  5779. [10] = RCAR_GP_PIN(3, 14), /* SD1_CD */
  5780. [11] = RCAR_GP_PIN(3, 15), /* SD1_WP */
  5781. [12] = RCAR_GP_PIN(5, 0), /* SCK0 */
  5782. [13] = RCAR_GP_PIN(5, 1), /* RX0 */
  5783. [14] = RCAR_GP_PIN(5, 2), /* TX0 */
  5784. [15] = RCAR_GP_PIN(5, 3), /* CTS0_N */
  5785. [16] = RCAR_GP_PIN(5, 4), /* RTS0_N */
  5786. [17] = RCAR_GP_PIN(5, 5), /* RX1_A */
  5787. [18] = RCAR_GP_PIN(5, 6), /* TX1_A */
  5788. [19] = RCAR_GP_PIN(5, 7), /* CTS1_N */
  5789. [20] = RCAR_GP_PIN(5, 8), /* RTS1_N */
  5790. [21] = RCAR_GP_PIN(5, 9), /* SCK2 */
  5791. [22] = RCAR_GP_PIN(5, 10), /* TX2_A */
  5792. [23] = RCAR_GP_PIN(5, 11), /* RX2_A */
  5793. [24] = RCAR_GP_PIN(5, 12), /* HSCK0 */
  5794. [25] = RCAR_GP_PIN(5, 13), /* HRX0 */
  5795. [26] = RCAR_GP_PIN(5, 14), /* HTX0 */
  5796. [27] = RCAR_GP_PIN(5, 15), /* HCTS0_N */
  5797. [28] = RCAR_GP_PIN(5, 16), /* HRTS0_N */
  5798. [29] = RCAR_GP_PIN(5, 17), /* MSIOF0_SCK */
  5799. [30] = RCAR_GP_PIN(5, 18), /* MSIOF0_SYNC */
  5800. [31] = RCAR_GP_PIN(5, 19), /* MSIOF0_SS1 */
  5801. } },
  5802. { PINMUX_BIAS_REG("PUEN5", 0xe6060414, "PUD5", 0xe6060454) {
  5803. [ 0] = RCAR_GP_PIN(5, 20), /* MSIOF0_TXD */
  5804. [ 1] = RCAR_GP_PIN(5, 21), /* MSIOF0_SS2 */
  5805. [ 2] = RCAR_GP_PIN(5, 22), /* MSIOF0_RXD */
  5806. [ 3] = RCAR_GP_PIN(5, 23), /* MLB_CLK */
  5807. [ 4] = RCAR_GP_PIN(5, 24), /* MLB_SIG */
  5808. [ 5] = RCAR_GP_PIN(5, 25), /* MLB_DAT */
  5809. [ 6] = PIN_NUMBER('H', 37), /* MLB_REF */
  5810. [ 7] = RCAR_GP_PIN(6, 0), /* SSI_SCK01239 */
  5811. [ 8] = RCAR_GP_PIN(6, 1), /* SSI_WS01239 */
  5812. [ 9] = RCAR_GP_PIN(6, 2), /* SSI_SDATA0 */
  5813. [10] = RCAR_GP_PIN(6, 3), /* SSI_SDATA1_A */
  5814. [11] = RCAR_GP_PIN(6, 4), /* SSI_SDATA2_A */
  5815. [12] = RCAR_GP_PIN(6, 5), /* SSI_SCK349 */
  5816. [13] = RCAR_GP_PIN(6, 6), /* SSI_WS349 */
  5817. [14] = RCAR_GP_PIN(6, 7), /* SSI_SDATA3 */
  5818. [15] = RCAR_GP_PIN(6, 8), /* SSI_SCK4 */
  5819. [16] = RCAR_GP_PIN(6, 9), /* SSI_WS4 */
  5820. [17] = RCAR_GP_PIN(6, 10), /* SSI_SDATA4 */
  5821. [18] = RCAR_GP_PIN(6, 11), /* SSI_SCK5 */
  5822. [19] = RCAR_GP_PIN(6, 12), /* SSI_WS5 */
  5823. [20] = RCAR_GP_PIN(6, 13), /* SSI_SDATA5 */
  5824. [21] = RCAR_GP_PIN(6, 14), /* SSI_SCK6 */
  5825. [22] = RCAR_GP_PIN(6, 15), /* SSI_WS6 */
  5826. [23] = RCAR_GP_PIN(6, 16), /* SSI_SDATA6 */
  5827. [24] = RCAR_GP_PIN(6, 17), /* SSI_SCK78 */
  5828. [25] = RCAR_GP_PIN(6, 18), /* SSI_WS78 */
  5829. [26] = RCAR_GP_PIN(6, 19), /* SSI_SDATA7 */
  5830. [27] = RCAR_GP_PIN(6, 20), /* SSI_SDATA8 */
  5831. [28] = RCAR_GP_PIN(6, 21), /* SSI_SDATA9_A */
  5832. [29] = RCAR_GP_PIN(6, 22), /* AUDIO_CLKA_A */
  5833. [30] = RCAR_GP_PIN(6, 23), /* AUDIO_CLKB_B */
  5834. [31] = RCAR_GP_PIN(6, 24), /* USB0_PWEN */
  5835. } },
  5836. { PINMUX_BIAS_REG("PUEN6", 0xe6060418, "PUD6", 0xe6060458) {
  5837. [ 0] = RCAR_GP_PIN(6, 25), /* USB0_OVC */
  5838. [ 1] = RCAR_GP_PIN(6, 26), /* USB1_PWEN */
  5839. [ 2] = RCAR_GP_PIN(6, 27), /* USB1_OVC */
  5840. [ 3] = RCAR_GP_PIN(6, 28), /* USB30_PWEN */
  5841. [ 4] = RCAR_GP_PIN(6, 29), /* USB30_OVC */
  5842. [ 5] = RCAR_GP_PIN(6, 30), /* USB2_CH3_PWEN */
  5843. [ 6] = RCAR_GP_PIN(6, 31), /* USB2_CH3_OVC */
  5844. [ 7] = PIN_NONE,
  5845. [ 8] = PIN_NONE,
  5846. [ 9] = PIN_NONE,
  5847. [10] = PIN_NONE,
  5848. [11] = PIN_NONE,
  5849. [12] = PIN_NONE,
  5850. [13] = PIN_NONE,
  5851. [14] = PIN_NONE,
  5852. [15] = PIN_NONE,
  5853. [16] = PIN_NONE,
  5854. [17] = PIN_NONE,
  5855. [18] = PIN_NONE,
  5856. [19] = PIN_NONE,
  5857. [20] = PIN_NONE,
  5858. [21] = PIN_NONE,
  5859. [22] = PIN_NONE,
  5860. [23] = PIN_NONE,
  5861. [24] = PIN_NONE,
  5862. [25] = PIN_NONE,
  5863. [26] = PIN_NONE,
  5864. [27] = PIN_NONE,
  5865. [28] = PIN_NONE,
  5866. [29] = PIN_NONE,
  5867. [30] = PIN_NONE,
  5868. [31] = PIN_NONE,
  5869. } },
  5870. { /* sentinel */ },
  5871. };
  5872. static unsigned int r8a7795_pinmux_get_bias(struct sh_pfc *pfc,
  5873. unsigned int pin)
  5874. {
  5875. const struct pinmux_bias_reg *reg;
  5876. unsigned int bit;
  5877. reg = sh_pfc_pin_to_bias_reg(pfc, pin, &bit);
  5878. if (!reg)
  5879. return PIN_CONFIG_BIAS_DISABLE;
  5880. if (!(sh_pfc_read(pfc, reg->puen) & BIT(bit)))
  5881. return PIN_CONFIG_BIAS_DISABLE;
  5882. else if (sh_pfc_read(pfc, reg->pud) & BIT(bit))
  5883. return PIN_CONFIG_BIAS_PULL_UP;
  5884. else
  5885. return PIN_CONFIG_BIAS_PULL_DOWN;
  5886. }
  5887. static void r8a7795_pinmux_set_bias(struct sh_pfc *pfc, unsigned int pin,
  5888. unsigned int bias)
  5889. {
  5890. const struct pinmux_bias_reg *reg;
  5891. u32 enable, updown;
  5892. unsigned int bit;
  5893. reg = sh_pfc_pin_to_bias_reg(pfc, pin, &bit);
  5894. if (!reg)
  5895. return;
  5896. enable = sh_pfc_read(pfc, reg->puen) & ~BIT(bit);
  5897. if (bias != PIN_CONFIG_BIAS_DISABLE)
  5898. enable |= BIT(bit);
  5899. updown = sh_pfc_read(pfc, reg->pud) & ~BIT(bit);
  5900. if (bias == PIN_CONFIG_BIAS_PULL_UP)
  5901. updown |= BIT(bit);
  5902. sh_pfc_write(pfc, reg->pud, updown);
  5903. sh_pfc_write(pfc, reg->puen, enable);
  5904. }
  5905. static const struct soc_device_attribute r8a7795es1[] = {
  5906. { .soc_id = "r8a7795", .revision = "ES1.*" },
  5907. { /* sentinel */ }
  5908. };
  5909. static int r8a7795_pinmux_init(struct sh_pfc *pfc)
  5910. {
  5911. if (soc_device_match(r8a7795es1))
  5912. pfc->info = &r8a7795es1_pinmux_info;
  5913. return 0;
  5914. }
  5915. static const struct sh_pfc_soc_operations r8a7795_pinmux_ops = {
  5916. .init = r8a7795_pinmux_init,
  5917. .pin_to_pocctrl = r8a7795_pin_to_pocctrl,
  5918. .get_bias = r8a7795_pinmux_get_bias,
  5919. .set_bias = r8a7795_pinmux_set_bias,
  5920. };
  5921. const struct sh_pfc_soc_info r8a7795_pinmux_info = {
  5922. .name = "r8a77951_pfc",
  5923. .ops = &r8a7795_pinmux_ops,
  5924. .unlock_reg = 0xe6060000, /* PMMR */
  5925. .function = { PINMUX_FUNCTION_BEGIN, PINMUX_FUNCTION_END },
  5926. .pins = pinmux_pins,
  5927. .nr_pins = ARRAY_SIZE(pinmux_pins),
  5928. .groups = pinmux_groups,
  5929. .nr_groups = ARRAY_SIZE(pinmux_groups),
  5930. .functions = pinmux_functions,
  5931. .nr_functions = ARRAY_SIZE(pinmux_functions),
  5932. .cfg_regs = pinmux_config_regs,
  5933. .drive_regs = pinmux_drive_regs,
  5934. .bias_regs = pinmux_bias_regs,
  5935. .ioctrl_regs = pinmux_ioctrl_regs,
  5936. .pinmux_data = pinmux_data,
  5937. .pinmux_data_size = ARRAY_SIZE(pinmux_data),
  5938. };