pfc-r8a7795.c 202 KB

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