pfc-r8a7796.c 202 KB

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