pfc-r8a7795.c 175 KB

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