pfc-r8a77980.c 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * R8A77980 processor support - PFC hardware block.
  4. *
  5. * Copyright (C) 2018 Renesas Electronics Corp.
  6. * Copyright (C) 2018 Cogent Embedded, Inc.
  7. *
  8. * This file is based on the drivers/pinctrl/renesas/pfc-r8a7795.c
  9. *
  10. * R-Car Gen3 processor support - PFC hardware block.
  11. *
  12. * Copyright (C) 2015 Renesas Electronics Corporation
  13. */
  14. #include <linux/errno.h>
  15. #include <linux/io.h>
  16. #include <linux/kernel.h>
  17. #include "sh_pfc.h"
  18. #define CPU_ALL_GP(fn, sfx) \
  19. PORT_GP_CFG_22(0, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE | SH_PFC_PIN_CFG_PULL_UP_DOWN), \
  20. PORT_GP_CFG_28(1, fn, sfx, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
  21. PORT_GP_CFG_30(2, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE | SH_PFC_PIN_CFG_PULL_UP_DOWN), \
  22. PORT_GP_CFG_17(3, fn, sfx, SH_PFC_PIN_CFG_IO_VOLTAGE | SH_PFC_PIN_CFG_PULL_UP_DOWN), \
  23. PORT_GP_CFG_25(4, fn, sfx, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
  24. PORT_GP_CFG_15(5, fn, sfx, SH_PFC_PIN_CFG_PULL_UP_DOWN)
  25. #define CPU_ALL_NOGP(fn) \
  26. PIN_NOGP_CFG(DCUTCK_LPDCLK, "DCUTCK_LPDCLK", fn, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
  27. PIN_NOGP_CFG(DCUTDI_LPDI, "DCUTDI_LPDI", fn, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
  28. PIN_NOGP_CFG(DCUTMS, "DCUTMS", fn, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
  29. PIN_NOGP_CFG(DCUTRST_N, "DCUTRST#", fn, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
  30. PIN_NOGP_CFG(DU_DOTCLKIN, "DU_DOTCLKIN", fn, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
  31. PIN_NOGP_CFG(EXTALR, "EXTALR", fn, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
  32. PIN_NOGP_CFG(FSCLKST, "FSCLKST", fn, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
  33. PIN_NOGP_CFG(FSCLKST_N, "FSCLKST#", fn, SH_PFC_PIN_CFG_PULL_UP_DOWN), \
  34. PIN_NOGP_CFG(PRESETOUT_N, "PRESETOUT#", fn, SH_PFC_PIN_CFG_PULL_UP_DOWN)
  35. /*
  36. * F_() : just information
  37. * FM() : macro for FN_xxx / xxx_MARK
  38. */
  39. /* GPSR0 */
  40. #define GPSR0_21 F_(DU_EXODDF_DU_ODDF_DISP_CDE, IP2_23_20)
  41. #define GPSR0_20 F_(DU_EXVSYNC_DU_VSYNC, IP2_19_16)
  42. #define GPSR0_19 F_(DU_EXHSYNC_DU_HSYNC, IP2_15_12)
  43. #define GPSR0_18 F_(DU_DOTCLKOUT, IP2_11_8)
  44. #define GPSR0_17 F_(DU_DB7, IP2_7_4)
  45. #define GPSR0_16 F_(DU_DB6, IP2_3_0)
  46. #define GPSR0_15 F_(DU_DB5, IP1_31_28)
  47. #define GPSR0_14 F_(DU_DB4, IP1_27_24)
  48. #define GPSR0_13 F_(DU_DB3, IP1_23_20)
  49. #define GPSR0_12 F_(DU_DB2, IP1_19_16)
  50. #define GPSR0_11 F_(DU_DG7, IP1_15_12)
  51. #define GPSR0_10 F_(DU_DG6, IP1_11_8)
  52. #define GPSR0_9 F_(DU_DG5, IP1_7_4)
  53. #define GPSR0_8 F_(DU_DG4, IP1_3_0)
  54. #define GPSR0_7 F_(DU_DG3, IP0_31_28)
  55. #define GPSR0_6 F_(DU_DG2, IP0_27_24)
  56. #define GPSR0_5 F_(DU_DR7, IP0_23_20)
  57. #define GPSR0_4 F_(DU_DR6, IP0_19_16)
  58. #define GPSR0_3 F_(DU_DR5, IP0_15_12)
  59. #define GPSR0_2 F_(DU_DR4, IP0_11_8)
  60. #define GPSR0_1 F_(DU_DR3, IP0_7_4)
  61. #define GPSR0_0 F_(DU_DR2, IP0_3_0)
  62. /* GPSR1 */
  63. #define GPSR1_27 F_(DIGRF_CLKOUT, IP8_31_28)
  64. #define GPSR1_26 F_(DIGRF_CLKIN, IP8_27_24)
  65. #define GPSR1_25 F_(CANFD_CLK_A, IP8_23_20)
  66. #define GPSR1_24 F_(CANFD1_RX, IP8_19_16)
  67. #define GPSR1_23 F_(CANFD1_TX, IP8_15_12)
  68. #define GPSR1_22 F_(CANFD0_RX_A, IP8_11_8)
  69. #define GPSR1_21 F_(CANFD0_TX_A, IP8_7_4)
  70. #define GPSR1_20 F_(AVB_AVTP_CAPTURE, IP8_3_0)
  71. #define GPSR1_19 F_(AVB_AVTP_MATCH, IP7_31_28)
  72. #define GPSR1_18 FM(AVB_LINK)
  73. #define GPSR1_17 FM(AVB_PHY_INT)
  74. #define GPSR1_16 FM(AVB_MAGIC)
  75. #define GPSR1_15 FM(AVB_MDC)
  76. #define GPSR1_14 FM(AVB_MDIO)
  77. #define GPSR1_13 FM(AVB_TXCREFCLK)
  78. #define GPSR1_12 FM(AVB_TD3)
  79. #define GPSR1_11 FM(AVB_TD2)
  80. #define GPSR1_10 FM(AVB_TD1)
  81. #define GPSR1_9 FM(AVB_TD0)
  82. #define GPSR1_8 FM(AVB_TXC)
  83. #define GPSR1_7 FM(AVB_TX_CTL)
  84. #define GPSR1_6 FM(AVB_RD3)
  85. #define GPSR1_5 FM(AVB_RD2)
  86. #define GPSR1_4 FM(AVB_RD1)
  87. #define GPSR1_3 FM(AVB_RD0)
  88. #define GPSR1_2 FM(AVB_RXC)
  89. #define GPSR1_1 FM(AVB_RX_CTL)
  90. #define GPSR1_0 F_(IRQ0, IP2_27_24)
  91. /* GPSR2 */
  92. #define GPSR2_29 F_(FSO_TOE_N, IP10_19_16)
  93. #define GPSR2_28 F_(FSO_CFE_1_N, IP10_15_12)
  94. #define GPSR2_27 F_(FSO_CFE_0_N, IP10_11_8)
  95. #define GPSR2_26 F_(SDA3, IP10_7_4)
  96. #define GPSR2_25 F_(SCL3, IP10_3_0)
  97. #define GPSR2_24 F_(MSIOF0_SS2, IP9_31_28)
  98. #define GPSR2_23 F_(MSIOF0_SS1, IP9_27_24)
  99. #define GPSR2_22 F_(MSIOF0_SYNC, IP9_23_20)
  100. #define GPSR2_21 F_(MSIOF0_SCK, IP9_19_16)
  101. #define GPSR2_20 F_(MSIOF0_TXD, IP9_15_12)
  102. #define GPSR2_19 F_(MSIOF0_RXD, IP9_11_8)
  103. #define GPSR2_18 F_(IRQ5, IP9_7_4)
  104. #define GPSR2_17 F_(IRQ4, IP9_3_0)
  105. #define GPSR2_16 F_(VI0_FIELD, IP4_31_28)
  106. #define GPSR2_15 F_(VI0_DATA11, IP4_27_24)
  107. #define GPSR2_14 F_(VI0_DATA10, IP4_23_20)
  108. #define GPSR2_13 F_(VI0_DATA9, IP4_19_16)
  109. #define GPSR2_12 F_(VI0_DATA8, IP4_15_12)
  110. #define GPSR2_11 F_(VI0_DATA7, IP4_11_8)
  111. #define GPSR2_10 F_(VI0_DATA6, IP4_7_4)
  112. #define GPSR2_9 F_(VI0_DATA5, IP4_3_0)
  113. #define GPSR2_8 F_(VI0_DATA4, IP3_31_28)
  114. #define GPSR2_7 F_(VI0_DATA3, IP3_27_24)
  115. #define GPSR2_6 F_(VI0_DATA2, IP3_23_20)
  116. #define GPSR2_5 F_(VI0_DATA1, IP3_19_16)
  117. #define GPSR2_4 F_(VI0_DATA0, IP3_15_12)
  118. #define GPSR2_3 F_(VI0_VSYNC_N, IP3_11_8)
  119. #define GPSR2_2 F_(VI0_HSYNC_N, IP3_7_4)
  120. #define GPSR2_1 F_(VI0_CLKENB, IP3_3_0)
  121. #define GPSR2_0 F_(VI0_CLK, IP2_31_28)
  122. /* GPSR3 */
  123. #define GPSR3_16 F_(VI1_FIELD, IP7_3_0)
  124. #define GPSR3_15 F_(VI1_DATA11, IP6_31_28)
  125. #define GPSR3_14 F_(VI1_DATA10, IP6_27_24)
  126. #define GPSR3_13 F_(VI1_DATA9, IP6_23_20)
  127. #define GPSR3_12 F_(VI1_DATA8, IP6_19_16)
  128. #define GPSR3_11 F_(VI1_DATA7, IP6_15_12)
  129. #define GPSR3_10 F_(VI1_DATA6, IP6_11_8)
  130. #define GPSR3_9 F_(VI1_DATA5, IP6_7_4)
  131. #define GPSR3_8 F_(VI1_DATA4, IP6_3_0)
  132. #define GPSR3_7 F_(VI1_DATA3, IP5_31_28)
  133. #define GPSR3_6 F_(VI1_DATA2, IP5_27_24)
  134. #define GPSR3_5 F_(VI1_DATA1, IP5_23_20)
  135. #define GPSR3_4 F_(VI1_DATA0, IP5_19_16)
  136. #define GPSR3_3 F_(VI1_VSYNC_N, IP5_15_12)
  137. #define GPSR3_2 F_(VI1_HSYNC_N, IP5_11_8)
  138. #define GPSR3_1 F_(VI1_CLKENB, IP5_7_4)
  139. #define GPSR3_0 F_(VI1_CLK, IP5_3_0)
  140. /* GPSR4 */
  141. #define GPSR4_24 FM(GETHER_LINK_A)
  142. #define GPSR4_23 FM(GETHER_PHY_INT_A)
  143. #define GPSR4_22 FM(GETHER_MAGIC)
  144. #define GPSR4_21 FM(GETHER_MDC_A)
  145. #define GPSR4_20 FM(GETHER_MDIO_A)
  146. #define GPSR4_19 FM(GETHER_TXCREFCLK_MEGA)
  147. #define GPSR4_18 FM(GETHER_TXCREFCLK)
  148. #define GPSR4_17 FM(GETHER_TD3)
  149. #define GPSR4_16 FM(GETHER_TD2)
  150. #define GPSR4_15 FM(GETHER_TD1)
  151. #define GPSR4_14 FM(GETHER_TD0)
  152. #define GPSR4_13 FM(GETHER_TXC)
  153. #define GPSR4_12 FM(GETHER_TX_CTL)
  154. #define GPSR4_11 FM(GETHER_RD3)
  155. #define GPSR4_10 FM(GETHER_RD2)
  156. #define GPSR4_9 FM(GETHER_RD1)
  157. #define GPSR4_8 FM(GETHER_RD0)
  158. #define GPSR4_7 FM(GETHER_RXC)
  159. #define GPSR4_6 FM(GETHER_RX_CTL)
  160. #define GPSR4_5 F_(SDA2, IP7_27_24)
  161. #define GPSR4_4 F_(SCL2, IP7_23_20)
  162. #define GPSR4_3 F_(SDA1, IP7_19_16)
  163. #define GPSR4_2 F_(SCL1, IP7_15_12)
  164. #define GPSR4_1 F_(SDA0, IP7_11_8)
  165. #define GPSR4_0 F_(SCL0, IP7_7_4)
  166. /* GPSR5 */
  167. #define GPSR5_14 FM(RPC_INT_N)
  168. #define GPSR5_13 FM(RPC_WP_N)
  169. #define GPSR5_12 FM(RPC_RESET_N)
  170. #define GPSR5_11 FM(QSPI1_SSL)
  171. #define GPSR5_10 FM(QSPI1_IO3)
  172. #define GPSR5_9 FM(QSPI1_IO2)
  173. #define GPSR5_8 FM(QSPI1_MISO_IO1)
  174. #define GPSR5_7 FM(QSPI1_MOSI_IO0)
  175. #define GPSR5_6 FM(QSPI1_SPCLK)
  176. #define GPSR5_5 FM(QSPI0_SSL)
  177. #define GPSR5_4 FM(QSPI0_IO3)
  178. #define GPSR5_3 FM(QSPI0_IO2)
  179. #define GPSR5_2 FM(QSPI0_MISO_IO1)
  180. #define GPSR5_1 FM(QSPI0_MOSI_IO0)
  181. #define GPSR5_0 FM(QSPI0_SPCLK)
  182. /* IPSRx */ /* 0 */ /* 1 */ /* 2 */ /* 3 */ /* 4 */ /* 5 */ /* 6 - F */
  183. #define IP0_3_0 FM(DU_DR2) FM(SCK4) FM(GETHER_RMII_CRS_DV) FM(A0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  184. #define IP0_7_4 FM(DU_DR3) FM(RX4) FM(GETHER_RMII_RX_ER) FM(A1) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  185. #define IP0_11_8 FM(DU_DR4) FM(TX4) FM(GETHER_RMII_RXD0) FM(A2) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  186. #define IP0_15_12 FM(DU_DR5) FM(CTS4_N) FM(GETHER_RMII_RXD1) FM(A3) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  187. #define IP0_19_16 FM(DU_DR6) FM(RTS4_N) FM(GETHER_RMII_TXD_EN) FM(A4) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  188. #define IP0_23_20 FM(DU_DR7) F_(0, 0) FM(GETHER_RMII_TXD0) FM(A5) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  189. #define IP0_27_24 FM(DU_DG2) F_(0, 0) FM(GETHER_RMII_TXD1) FM(A6) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  190. #define IP0_31_28 FM(DU_DG3) FM(CPG_CPCKOUT) FM(GETHER_RMII_REFCLK) FM(A7) FM(PWMFSW0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  191. #define IP1_3_0 FM(DU_DG4) FM(SCL5) F_(0, 0) FM(A8) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  192. #define IP1_7_4 FM(DU_DG5) FM(SDA5) FM(GETHER_MDC_B) FM(A9) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  193. #define IP1_11_8 FM(DU_DG6) FM(SCIF_CLK_A) FM(GETHER_MDIO_B) FM(A10) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  194. #define IP1_15_12 FM(DU_DG7) FM(HRX0_A) F_(0, 0) FM(A11) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  195. #define IP1_19_16 FM(DU_DB2) FM(HSCK0_A) F_(0, 0) FM(A12) FM(IRQ1) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  196. #define IP1_23_20 FM(DU_DB3) FM(HRTS0_N_A) F_(0, 0) FM(A13) FM(IRQ2) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  197. #define IP1_27_24 FM(DU_DB4) FM(HCTS0_N_A) F_(0, 0) FM(A14) FM(IRQ3) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP1_31_28 FM(DU_DB5) FM(HTX0_A) FM(PWM0_A) FM(A15) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP2_3_0 FM(DU_DB6) FM(MSIOF3_RXD) F_(0, 0) FM(A16) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP2_7_4 FM(DU_DB7) FM(MSIOF3_TXD) F_(0, 0) FM(A17) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP2_11_8 FM(DU_DOTCLKOUT) FM(MSIOF3_SS1) FM(GETHER_LINK_B) FM(A18) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP2_15_12 FM(DU_EXHSYNC_DU_HSYNC) FM(MSIOF3_SS2) FM(GETHER_PHY_INT_B) FM(A19) FM(FXR_TXENA_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  203. #define IP2_19_16 FM(DU_EXVSYNC_DU_VSYNC) FM(MSIOF3_SCK) F_(0, 0) F_(0, 0) FM(FXR_TXENB_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  204. #define IP2_23_20 FM(DU_EXODDF_DU_ODDF_DISP_CDE) FM(MSIOF3_SYNC) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP2_27_24 FM(IRQ0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  206. #define IP2_31_28 FM(VI0_CLK) FM(MSIOF2_SCK) FM(SCK3) F_(0, 0) FM(HSCK3) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  207. #define IP3_3_0 FM(VI0_CLKENB) FM(MSIOF2_RXD) FM(RX3) FM(RD_WR_N) FM(HCTS3_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  208. #define IP3_7_4 FM(VI0_HSYNC_N) FM(MSIOF2_TXD) FM(TX3) F_(0, 0) FM(HRTS3_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  209. #define IP3_11_8 FM(VI0_VSYNC_N) FM(MSIOF2_SYNC) FM(CTS3_N) F_(0, 0) FM(HTX3) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  210. #define IP3_15_12 FM(VI0_DATA0) FM(MSIOF2_SS1) FM(RTS3_N) F_(0, 0) FM(HRX3) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  211. #define IP3_19_16 FM(VI0_DATA1) FM(MSIOF2_SS2) FM(SCK1) F_(0, 0) FM(SPEEDIN_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)
  212. #define IP3_23_20 FM(VI0_DATA2) FM(AVB_AVTP_PPS) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  213. #define IP3_27_24 FM(VI0_DATA3) FM(HSCK1) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  214. #define IP3_31_28 FM(VI0_DATA4) FM(HRTS1_N) FM(RX1_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)
  215. #define IP4_3_0 FM(VI0_DATA5) FM(HCTS1_N) FM(TX1_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)
  216. #define IP4_7_4 FM(VI0_DATA6) FM(HTX1) FM(CTS1_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  217. #define IP4_11_8 FM(VI0_DATA7) FM(HRX1) FM(RTS1_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  218. #define IP4_15_12 FM(VI0_DATA8) FM(HSCK2) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP4_19_16 FM(VI0_DATA9) FM(HCTS2_N) FM(PWM1_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)
  220. #define IP4_23_20 FM(VI0_DATA10) FM(HRTS2_N) FM(PWM2_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)
  221. #define IP4_27_24 FM(VI0_DATA11) FM(HTX2) FM(PWM3_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)
  222. #define IP4_31_28 FM(VI0_FIELD) FM(HRX2) FM(PWM4_A) FM(CS1_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  223. #define IP5_3_0 FM(VI1_CLK) FM(MSIOF1_RXD) F_(0, 0) FM(CS0_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  224. #define IP5_7_4 FM(VI1_CLKENB) FM(MSIOF1_TXD) F_(0, 0) FM(D0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  225. #define IP5_11_8 FM(VI1_HSYNC_N) FM(MSIOF1_SCK) F_(0, 0) FM(D1) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP5_15_12 FM(VI1_VSYNC_N) FM(MSIOF1_SYNC) F_(0, 0) FM(D2) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP5_19_16 FM(VI1_DATA0) FM(MSIOF1_SS1) F_(0, 0) FM(D3) FM(MMC_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)
  228. #define IP5_23_20 FM(VI1_DATA1) FM(MSIOF1_SS2) F_(0, 0) FM(D4) FM(MMC_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)
  229. #define IP5_27_24 FM(VI1_DATA2) FM(CANFD0_TX_B) F_(0, 0) FM(D5) FM(MMC_DS) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP5_31_28 FM(VI1_DATA3) FM(CANFD0_RX_B) F_(0, 0) FM(D6) FM(MMC_CMD) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP6_3_0 FM(VI1_DATA4) FM(CANFD_CLK_B) F_(0, 0) FM(D7) FM(MMC_D0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP6_7_4 FM(VI1_DATA5) F_(0, 0) F_(0, 0) FM(D8) FM(MMC_D1) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP6_11_8 FM(VI1_DATA6) F_(0, 0) F_(0, 0) FM(D9) FM(MMC_D2) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP6_15_12 FM(VI1_DATA7) F_(0, 0) F_(0, 0) FM(D10) FM(MMC_D3) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP6_19_16 FM(VI1_DATA8) F_(0, 0) F_(0, 0) FM(D11) FM(MMC_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)
  236. #define IP6_23_20 FM(VI1_DATA9) FM(TCLK1_A) F_(0, 0) FM(D12) FM(MMC_D4) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  237. #define IP6_27_24 FM(VI1_DATA10) FM(TCLK2_A) F_(0, 0) FM(D13) FM(MMC_D5) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  238. #define IP6_31_28 FM(VI1_DATA11) FM(SCL4) F_(0, 0) FM(D14) FM(MMC_D6) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  239. #define IP7_3_0 FM(VI1_FIELD) FM(SDA4) F_(0, 0) FM(D15) FM(MMC_D7) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  240. #define IP7_7_4 FM(SCL0) F_(0, 0) F_(0, 0) FM(CLKOUT) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP7_11_8 FM(SDA0) F_(0, 0) F_(0, 0) FM(BS_N) FM(SCK0) FM(HSCK0_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)
  242. #define IP7_15_12 FM(SCL1) F_(0, 0) FM(TPU0TO2) FM(RD_N) FM(CTS0_N) FM(HCTS0_N_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)
  243. #define IP7_19_16 FM(SDA1) F_(0, 0) FM(TPU0TO3) FM(WE0_N) FM(RTS0_N) FM(HRTS0_N_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)
  244. #define IP7_23_20 FM(SCL2) F_(0, 0) F_(0, 0) FM(WE1_N) FM(RX0) FM(HRX0_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)
  245. #define IP7_27_24 FM(SDA2) F_(0, 0) F_(0, 0) FM(EX_WAIT0) FM(TX0) FM(HTX0_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)
  246. #define IP7_31_28 FM(AVB_AVTP_MATCH) FM(TPU0TO0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP8_3_0 FM(AVB_AVTP_CAPTURE) FM(TPU0TO1) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP8_7_4 FM(CANFD0_TX_A) FM(FXR_TXDA) FM(PWM0_B) FM(DU_DISP) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP8_11_8 FM(CANFD0_RX_A) FM(RXDA_EXTFXR) FM(PWM1_B) FM(DU_CDE) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP8_15_12 FM(CANFD1_TX) FM(FXR_TXDB) FM(PWM2_B) FM(TCLK1_B) FM(TX1_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)
  251. #define IP8_19_16 FM(CANFD1_RX) FM(RXDB_EXTFXR) FM(PWM3_B) FM(TCLK2_B) FM(RX1_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)
  252. #define IP8_23_20 FM(CANFD_CLK_A) FM(CLK_EXTFXR) FM(PWM4_B) FM(SPEEDIN_B) FM(SCIF_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) F_(0, 0)
  253. #define IP8_27_24 FM(DIGRF_CLKIN) FM(DIGRF_CLKEN_IN) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP8_31_28 FM(DIGRF_CLKOUT) FM(DIGRF_CLKEN_OUT) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP9_3_0 FM(IRQ4) F_(0, 0) F_(0, 0) FM(VI0_DATA12) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP9_7_4 FM(IRQ5) F_(0, 0) F_(0, 0) FM(VI0_DATA13) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP9_11_8 FM(MSIOF0_RXD) FM(DU_DR0) F_(0, 0) FM(VI0_DATA14) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP9_15_12 FM(MSIOF0_TXD) FM(DU_DR1) F_(0, 0) FM(VI0_DATA15) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  259. #define IP9_19_16 FM(MSIOF0_SCK) FM(DU_DG0) F_(0, 0) FM(VI0_DATA16) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  260. #define IP9_23_20 FM(MSIOF0_SYNC) FM(DU_DG1) F_(0, 0) FM(VI0_DATA17) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP9_27_24 FM(MSIOF0_SS1) FM(DU_DB0) FM(TCLK3) FM(VI0_DATA18) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP9_31_28 FM(MSIOF0_SS2) FM(DU_DB1) FM(TCLK4) FM(VI0_DATA19) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP10_3_0 FM(SCL3) F_(0, 0) F_(0, 0) FM(VI0_DATA20) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP10_7_4 FM(SDA3) F_(0, 0) F_(0, 0) FM(VI0_DATA21) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP10_11_8 FM(FSO_CFE_0_N) F_(0, 0) F_(0, 0) FM(VI0_DATA22) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP10_15_12 FM(FSO_CFE_1_N) F_(0, 0) F_(0, 0) FM(VI0_DATA23) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) 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 IP10_19_16 FM(FSO_TOE_N) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0) F_(0, 0)
  268. #define PINMUX_GPSR \
  269. \
  270. GPSR2_29 \
  271. GPSR2_28 \
  272. GPSR1_27 GPSR2_27 \
  273. GPSR1_26 GPSR2_26 \
  274. GPSR1_25 GPSR2_25 \
  275. GPSR1_24 GPSR2_24 GPSR4_24 \
  276. GPSR1_23 GPSR2_23 GPSR4_23 \
  277. GPSR1_22 GPSR2_22 GPSR4_22 \
  278. GPSR0_21 GPSR1_21 GPSR2_21 GPSR4_21 \
  279. GPSR0_20 GPSR1_20 GPSR2_20 GPSR4_20 \
  280. GPSR0_19 GPSR1_19 GPSR2_19 GPSR4_19 \
  281. GPSR0_18 GPSR1_18 GPSR2_18 GPSR4_18 \
  282. GPSR0_17 GPSR1_17 GPSR2_17 GPSR4_17 \
  283. GPSR0_16 GPSR1_16 GPSR2_16 GPSR3_16 GPSR4_16 \
  284. GPSR0_15 GPSR1_15 GPSR2_15 GPSR3_15 GPSR4_15 \
  285. GPSR0_14 GPSR1_14 GPSR2_14 GPSR3_14 GPSR4_14 GPSR5_14 \
  286. GPSR0_13 GPSR1_13 GPSR2_13 GPSR3_13 GPSR4_13 GPSR5_13 \
  287. GPSR0_12 GPSR1_12 GPSR2_12 GPSR3_12 GPSR4_12 GPSR5_12 \
  288. GPSR0_11 GPSR1_11 GPSR2_11 GPSR3_11 GPSR4_11 GPSR5_11 \
  289. GPSR0_10 GPSR1_10 GPSR2_10 GPSR3_10 GPSR4_10 GPSR5_10 \
  290. GPSR0_9 GPSR1_9 GPSR2_9 GPSR3_9 GPSR4_9 GPSR5_9 \
  291. GPSR0_8 GPSR1_8 GPSR2_8 GPSR3_8 GPSR4_8 GPSR5_8 \
  292. GPSR0_7 GPSR1_7 GPSR2_7 GPSR3_7 GPSR4_7 GPSR5_7 \
  293. GPSR0_6 GPSR1_6 GPSR2_6 GPSR3_6 GPSR4_6 GPSR5_6 \
  294. GPSR0_5 GPSR1_5 GPSR2_5 GPSR3_5 GPSR4_5 GPSR5_5 \
  295. GPSR0_4 GPSR1_4 GPSR2_4 GPSR3_4 GPSR4_4 GPSR5_4 \
  296. GPSR0_3 GPSR1_3 GPSR2_3 GPSR3_3 GPSR4_3 GPSR5_3 \
  297. GPSR0_2 GPSR1_2 GPSR2_2 GPSR3_2 GPSR4_2 GPSR5_2 \
  298. GPSR0_1 GPSR1_1 GPSR2_1 GPSR3_1 GPSR4_1 GPSR5_1 \
  299. GPSR0_0 GPSR1_0 GPSR2_0 GPSR3_0 GPSR4_0 GPSR5_0
  300. #define PINMUX_IPSR \
  301. \
  302. 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 \
  303. 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 \
  304. 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 \
  305. 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 \
  306. 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 \
  307. 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 \
  308. 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 \
  309. 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 \
  310. \
  311. 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 \
  312. 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 \
  313. 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 \
  314. 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 \
  315. 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 \
  316. 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 \
  317. 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 \
  318. 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 \
  319. \
  320. FM(IP8_3_0) IP8_3_0 FM(IP9_3_0) IP9_3_0 FM(IP10_3_0) IP10_3_0 \
  321. FM(IP8_7_4) IP8_7_4 FM(IP9_7_4) IP9_7_4 FM(IP10_7_4) IP10_7_4 \
  322. FM(IP8_11_8) IP8_11_8 FM(IP9_11_8) IP9_11_8 FM(IP10_11_8) IP10_11_8 \
  323. FM(IP8_15_12) IP8_15_12 FM(IP9_15_12) IP9_15_12 FM(IP10_15_12) IP10_15_12 \
  324. FM(IP8_19_16) IP8_19_16 FM(IP9_19_16) IP9_19_16 FM(IP10_19_16) IP10_19_16 \
  325. FM(IP8_23_20) IP8_23_20 FM(IP9_23_20) IP9_23_20 \
  326. FM(IP8_27_24) IP8_27_24 FM(IP9_27_24) IP9_27_24 \
  327. FM(IP8_31_28) IP8_31_28 FM(IP9_31_28) IP9_31_28
  328. /* MOD_SEL0 */ /* 0 */ /* 1 */
  329. #define MOD_SEL0_11 FM(SEL_CANFD0_0) FM(SEL_CANFD0_1)
  330. #define MOD_SEL0_10 FM(SEL_GETHER_0) FM(SEL_GETHER_1)
  331. #define MOD_SEL0_9 FM(SEL_HSCIF0_0) FM(SEL_HSCIF0_1)
  332. #define MOD_SEL0_8 FM(SEL_PWM0_0) FM(SEL_PWM0_1)
  333. #define MOD_SEL0_7 FM(SEL_PWM1_0) FM(SEL_PWM1_1)
  334. #define MOD_SEL0_6 FM(SEL_PWM2_0) FM(SEL_PWM2_1)
  335. #define MOD_SEL0_5 FM(SEL_PWM3_0) FM(SEL_PWM3_1)
  336. #define MOD_SEL0_4 FM(SEL_PWM4_0) FM(SEL_PWM4_1)
  337. #define MOD_SEL0_2 FM(SEL_RSP_0) FM(SEL_RSP_1)
  338. #define MOD_SEL0_1 FM(SEL_SCIF1_0) FM(SEL_SCIF1_1)
  339. #define MOD_SEL0_0 FM(SEL_TMU_0) FM(SEL_TMU_1)
  340. #define PINMUX_MOD_SELS \
  341. \
  342. MOD_SEL0_11 \
  343. MOD_SEL0_10 \
  344. MOD_SEL0_9 \
  345. MOD_SEL0_8 \
  346. MOD_SEL0_7 \
  347. MOD_SEL0_6 \
  348. MOD_SEL0_5 \
  349. MOD_SEL0_4 \
  350. MOD_SEL0_2 \
  351. MOD_SEL0_1 \
  352. MOD_SEL0_0
  353. enum {
  354. PINMUX_RESERVED = 0,
  355. PINMUX_DATA_BEGIN,
  356. GP_ALL(DATA),
  357. PINMUX_DATA_END,
  358. #define F_(x, y)
  359. #define FM(x) FN_##x,
  360. PINMUX_FUNCTION_BEGIN,
  361. GP_ALL(FN),
  362. PINMUX_GPSR
  363. PINMUX_IPSR
  364. PINMUX_MOD_SELS
  365. PINMUX_FUNCTION_END,
  366. #undef F_
  367. #undef FM
  368. #define F_(x, y)
  369. #define FM(x) x##_MARK,
  370. PINMUX_MARK_BEGIN,
  371. PINMUX_GPSR
  372. PINMUX_IPSR
  373. PINMUX_MOD_SELS
  374. PINMUX_MARK_END,
  375. #undef F_
  376. #undef FM
  377. };
  378. static const u16 pinmux_data[] = {
  379. PINMUX_DATA_GP_ALL(),
  380. PINMUX_SINGLE(AVB_RX_CTL),
  381. PINMUX_SINGLE(AVB_RXC),
  382. PINMUX_SINGLE(AVB_RD0),
  383. PINMUX_SINGLE(AVB_RD1),
  384. PINMUX_SINGLE(AVB_RD2),
  385. PINMUX_SINGLE(AVB_RD3),
  386. PINMUX_SINGLE(AVB_TX_CTL),
  387. PINMUX_SINGLE(AVB_TXC),
  388. PINMUX_SINGLE(AVB_TD0),
  389. PINMUX_SINGLE(AVB_TD1),
  390. PINMUX_SINGLE(AVB_TD2),
  391. PINMUX_SINGLE(AVB_TD3),
  392. PINMUX_SINGLE(AVB_TXCREFCLK),
  393. PINMUX_SINGLE(AVB_MDIO),
  394. PINMUX_SINGLE(AVB_MDC),
  395. PINMUX_SINGLE(AVB_MAGIC),
  396. PINMUX_SINGLE(AVB_PHY_INT),
  397. PINMUX_SINGLE(AVB_LINK),
  398. PINMUX_SINGLE(GETHER_RX_CTL),
  399. PINMUX_SINGLE(GETHER_RXC),
  400. PINMUX_SINGLE(GETHER_RD0),
  401. PINMUX_SINGLE(GETHER_RD1),
  402. PINMUX_SINGLE(GETHER_RD2),
  403. PINMUX_SINGLE(GETHER_RD3),
  404. PINMUX_SINGLE(GETHER_TX_CTL),
  405. PINMUX_SINGLE(GETHER_TXC),
  406. PINMUX_SINGLE(GETHER_TD0),
  407. PINMUX_SINGLE(GETHER_TD1),
  408. PINMUX_SINGLE(GETHER_TD2),
  409. PINMUX_SINGLE(GETHER_TD3),
  410. PINMUX_SINGLE(GETHER_TXCREFCLK),
  411. PINMUX_SINGLE(GETHER_TXCREFCLK_MEGA),
  412. PINMUX_SINGLE(GETHER_MDIO_A),
  413. PINMUX_SINGLE(GETHER_MDC_A),
  414. PINMUX_SINGLE(GETHER_MAGIC),
  415. PINMUX_SINGLE(GETHER_PHY_INT_A),
  416. PINMUX_SINGLE(GETHER_LINK_A),
  417. PINMUX_SINGLE(QSPI0_SPCLK),
  418. PINMUX_SINGLE(QSPI0_MOSI_IO0),
  419. PINMUX_SINGLE(QSPI0_MISO_IO1),
  420. PINMUX_SINGLE(QSPI0_IO2),
  421. PINMUX_SINGLE(QSPI0_IO3),
  422. PINMUX_SINGLE(QSPI0_SSL),
  423. PINMUX_SINGLE(QSPI1_SPCLK),
  424. PINMUX_SINGLE(QSPI1_MOSI_IO0),
  425. PINMUX_SINGLE(QSPI1_MISO_IO1),
  426. PINMUX_SINGLE(QSPI1_IO2),
  427. PINMUX_SINGLE(QSPI1_IO3),
  428. PINMUX_SINGLE(QSPI1_SSL),
  429. PINMUX_SINGLE(RPC_RESET_N),
  430. PINMUX_SINGLE(RPC_WP_N),
  431. PINMUX_SINGLE(RPC_INT_N),
  432. /* IPSR0 */
  433. PINMUX_IPSR_GPSR(IP0_3_0, DU_DR2),
  434. PINMUX_IPSR_GPSR(IP0_3_0, SCK4),
  435. PINMUX_IPSR_GPSR(IP0_3_0, GETHER_RMII_CRS_DV),
  436. PINMUX_IPSR_GPSR(IP0_3_0, A0),
  437. PINMUX_IPSR_GPSR(IP0_7_4, DU_DR3),
  438. PINMUX_IPSR_GPSR(IP0_7_4, RX4),
  439. PINMUX_IPSR_GPSR(IP0_7_4, GETHER_RMII_RX_ER),
  440. PINMUX_IPSR_GPSR(IP0_7_4, A1),
  441. PINMUX_IPSR_GPSR(IP0_11_8, DU_DR4),
  442. PINMUX_IPSR_GPSR(IP0_11_8, TX4),
  443. PINMUX_IPSR_GPSR(IP0_11_8, GETHER_RMII_RXD0),
  444. PINMUX_IPSR_GPSR(IP0_11_8, A2),
  445. PINMUX_IPSR_GPSR(IP0_15_12, DU_DR5),
  446. PINMUX_IPSR_GPSR(IP0_15_12, CTS4_N),
  447. PINMUX_IPSR_GPSR(IP0_15_12, GETHER_RMII_RXD1),
  448. PINMUX_IPSR_GPSR(IP0_15_12, A3),
  449. PINMUX_IPSR_GPSR(IP0_19_16, DU_DR6),
  450. PINMUX_IPSR_GPSR(IP0_19_16, RTS4_N),
  451. PINMUX_IPSR_GPSR(IP0_19_16, GETHER_RMII_TXD_EN),
  452. PINMUX_IPSR_GPSR(IP0_19_16, A4),
  453. PINMUX_IPSR_GPSR(IP0_23_20, DU_DR7),
  454. PINMUX_IPSR_GPSR(IP0_23_20, GETHER_RMII_TXD0),
  455. PINMUX_IPSR_GPSR(IP0_23_20, A5),
  456. PINMUX_IPSR_GPSR(IP0_27_24, DU_DG2),
  457. PINMUX_IPSR_GPSR(IP0_27_24, GETHER_RMII_TXD1),
  458. PINMUX_IPSR_GPSR(IP0_27_24, A6),
  459. PINMUX_IPSR_GPSR(IP0_31_28, DU_DG3),
  460. PINMUX_IPSR_GPSR(IP0_31_28, CPG_CPCKOUT),
  461. PINMUX_IPSR_GPSR(IP0_31_28, GETHER_RMII_REFCLK),
  462. PINMUX_IPSR_GPSR(IP0_31_28, A7),
  463. PINMUX_IPSR_GPSR(IP0_31_28, PWMFSW0),
  464. /* IPSR1 */
  465. PINMUX_IPSR_GPSR(IP1_3_0, DU_DG4),
  466. PINMUX_IPSR_GPSR(IP1_3_0, SCL5),
  467. PINMUX_IPSR_GPSR(IP1_3_0, A8),
  468. PINMUX_IPSR_GPSR(IP1_7_4, DU_DG5),
  469. PINMUX_IPSR_GPSR(IP1_7_4, SDA5),
  470. PINMUX_IPSR_MSEL(IP1_7_4, GETHER_MDC_B, SEL_GETHER_1),
  471. PINMUX_IPSR_GPSR(IP1_7_4, A9),
  472. PINMUX_IPSR_GPSR(IP1_11_8, DU_DG6),
  473. PINMUX_IPSR_MSEL(IP1_11_8, SCIF_CLK_A, SEL_HSCIF0_0),
  474. PINMUX_IPSR_MSEL(IP1_11_8, GETHER_MDIO_B, SEL_GETHER_1),
  475. PINMUX_IPSR_GPSR(IP1_11_8, A10),
  476. PINMUX_IPSR_GPSR(IP1_15_12, DU_DG7),
  477. PINMUX_IPSR_MSEL(IP1_15_12, HRX0_A, SEL_HSCIF0_0),
  478. PINMUX_IPSR_GPSR(IP1_15_12, A11),
  479. PINMUX_IPSR_GPSR(IP1_19_16, DU_DB2),
  480. PINMUX_IPSR_MSEL(IP1_19_16, HSCK0_A, SEL_HSCIF0_0),
  481. PINMUX_IPSR_GPSR(IP1_19_16, A12),
  482. PINMUX_IPSR_GPSR(IP1_19_16, IRQ1),
  483. PINMUX_IPSR_GPSR(IP1_23_20, DU_DB3),
  484. PINMUX_IPSR_MSEL(IP1_23_20, HRTS0_N_A, SEL_HSCIF0_0),
  485. PINMUX_IPSR_GPSR(IP1_23_20, A13),
  486. PINMUX_IPSR_GPSR(IP1_23_20, IRQ2),
  487. PINMUX_IPSR_GPSR(IP1_27_24, DU_DB4),
  488. PINMUX_IPSR_MSEL(IP1_27_24, HCTS0_N_A, SEL_HSCIF0_0),
  489. PINMUX_IPSR_GPSR(IP1_27_24, A14),
  490. PINMUX_IPSR_GPSR(IP1_27_24, IRQ3),
  491. PINMUX_IPSR_GPSR(IP1_31_28, DU_DB5),
  492. PINMUX_IPSR_MSEL(IP1_31_28, HTX0_A, SEL_HSCIF0_0),
  493. PINMUX_IPSR_MSEL(IP1_31_28, PWM0_A, SEL_PWM0_0),
  494. PINMUX_IPSR_GPSR(IP1_31_28, A15),
  495. /* IPSR2 */
  496. PINMUX_IPSR_GPSR(IP2_3_0, DU_DB6),
  497. PINMUX_IPSR_GPSR(IP2_3_0, MSIOF3_RXD),
  498. PINMUX_IPSR_GPSR(IP2_3_0, A16),
  499. PINMUX_IPSR_GPSR(IP2_7_4, DU_DB7),
  500. PINMUX_IPSR_GPSR(IP2_7_4, MSIOF3_TXD),
  501. PINMUX_IPSR_GPSR(IP2_7_4, A17),
  502. PINMUX_IPSR_GPSR(IP2_11_8, DU_DOTCLKOUT),
  503. PINMUX_IPSR_GPSR(IP2_11_8, MSIOF3_SS1),
  504. PINMUX_IPSR_MSEL(IP2_11_8, GETHER_LINK_B, SEL_GETHER_1),
  505. PINMUX_IPSR_GPSR(IP2_11_8, A18),
  506. PINMUX_IPSR_GPSR(IP2_15_12, DU_EXHSYNC_DU_HSYNC),
  507. PINMUX_IPSR_GPSR(IP2_15_12, MSIOF3_SS2),
  508. PINMUX_IPSR_MSEL(IP2_15_12, GETHER_PHY_INT_B, SEL_GETHER_1),
  509. PINMUX_IPSR_GPSR(IP2_15_12, A19),
  510. PINMUX_IPSR_GPSR(IP2_15_12, FXR_TXENA_N),
  511. PINMUX_IPSR_GPSR(IP2_19_16, DU_EXVSYNC_DU_VSYNC),
  512. PINMUX_IPSR_GPSR(IP2_19_16, MSIOF3_SCK),
  513. PINMUX_IPSR_GPSR(IP2_19_16, FXR_TXENB_N),
  514. PINMUX_IPSR_GPSR(IP2_23_20, DU_EXODDF_DU_ODDF_DISP_CDE),
  515. PINMUX_IPSR_GPSR(IP2_23_20, MSIOF3_SYNC),
  516. PINMUX_IPSR_GPSR(IP2_27_24, IRQ0),
  517. PINMUX_IPSR_GPSR(IP2_31_28, VI0_CLK),
  518. PINMUX_IPSR_GPSR(IP2_31_28, MSIOF2_SCK),
  519. PINMUX_IPSR_GPSR(IP2_31_28, SCK3),
  520. PINMUX_IPSR_GPSR(IP2_31_28, HSCK3),
  521. /* IPSR3 */
  522. PINMUX_IPSR_GPSR(IP3_3_0, VI0_CLKENB),
  523. PINMUX_IPSR_GPSR(IP3_3_0, MSIOF2_RXD),
  524. PINMUX_IPSR_GPSR(IP3_3_0, RX3),
  525. PINMUX_IPSR_GPSR(IP3_3_0, RD_WR_N),
  526. PINMUX_IPSR_GPSR(IP3_3_0, HCTS3_N),
  527. PINMUX_IPSR_GPSR(IP3_7_4, VI0_HSYNC_N),
  528. PINMUX_IPSR_GPSR(IP3_7_4, MSIOF2_TXD),
  529. PINMUX_IPSR_GPSR(IP3_7_4, TX3),
  530. PINMUX_IPSR_GPSR(IP3_7_4, HRTS3_N),
  531. PINMUX_IPSR_GPSR(IP3_11_8, VI0_VSYNC_N),
  532. PINMUX_IPSR_GPSR(IP3_11_8, MSIOF2_SYNC),
  533. PINMUX_IPSR_GPSR(IP3_11_8, CTS3_N),
  534. PINMUX_IPSR_GPSR(IP3_11_8, HTX3),
  535. PINMUX_IPSR_GPSR(IP3_15_12, VI0_DATA0),
  536. PINMUX_IPSR_GPSR(IP3_15_12, MSIOF2_SS1),
  537. PINMUX_IPSR_GPSR(IP3_15_12, RTS3_N),
  538. PINMUX_IPSR_GPSR(IP3_15_12, HRX3),
  539. PINMUX_IPSR_GPSR(IP3_19_16, VI0_DATA1),
  540. PINMUX_IPSR_GPSR(IP3_19_16, MSIOF2_SS2),
  541. PINMUX_IPSR_GPSR(IP3_19_16, SCK1),
  542. PINMUX_IPSR_MSEL(IP3_19_16, SPEEDIN_A, SEL_RSP_0),
  543. PINMUX_IPSR_GPSR(IP3_23_20, VI0_DATA2),
  544. PINMUX_IPSR_GPSR(IP3_23_20, AVB_AVTP_PPS),
  545. PINMUX_IPSR_GPSR(IP3_27_24, VI0_DATA3),
  546. PINMUX_IPSR_GPSR(IP3_27_24, HSCK1),
  547. PINMUX_IPSR_GPSR(IP3_31_28, VI0_DATA4),
  548. PINMUX_IPSR_GPSR(IP3_31_28, HRTS1_N),
  549. PINMUX_IPSR_MSEL(IP3_31_28, RX1_A, SEL_SCIF1_0),
  550. /* IPSR4 */
  551. PINMUX_IPSR_GPSR(IP4_3_0, VI0_DATA5),
  552. PINMUX_IPSR_GPSR(IP4_3_0, HCTS1_N),
  553. PINMUX_IPSR_MSEL(IP4_3_0, TX1_A, SEL_SCIF1_0),
  554. PINMUX_IPSR_GPSR(IP4_7_4, VI0_DATA6),
  555. PINMUX_IPSR_GPSR(IP4_7_4, HTX1),
  556. PINMUX_IPSR_GPSR(IP4_7_4, CTS1_N),
  557. PINMUX_IPSR_GPSR(IP4_11_8, VI0_DATA7),
  558. PINMUX_IPSR_GPSR(IP4_11_8, HRX1),
  559. PINMUX_IPSR_GPSR(IP4_11_8, RTS1_N),
  560. PINMUX_IPSR_GPSR(IP4_15_12, VI0_DATA8),
  561. PINMUX_IPSR_GPSR(IP4_15_12, HSCK2),
  562. PINMUX_IPSR_GPSR(IP4_19_16, VI0_DATA9),
  563. PINMUX_IPSR_GPSR(IP4_19_16, HCTS2_N),
  564. PINMUX_IPSR_MSEL(IP4_19_16, PWM1_A, SEL_PWM1_0),
  565. PINMUX_IPSR_GPSR(IP4_23_20, VI0_DATA10),
  566. PINMUX_IPSR_GPSR(IP4_23_20, HRTS2_N),
  567. PINMUX_IPSR_MSEL(IP4_23_20, PWM2_A, SEL_PWM2_0),
  568. PINMUX_IPSR_GPSR(IP4_27_24, VI0_DATA11),
  569. PINMUX_IPSR_GPSR(IP4_27_24, HTX2),
  570. PINMUX_IPSR_MSEL(IP4_27_24, PWM3_A, SEL_PWM3_0),
  571. PINMUX_IPSR_GPSR(IP4_31_28, VI0_FIELD),
  572. PINMUX_IPSR_GPSR(IP4_31_28, HRX2),
  573. PINMUX_IPSR_MSEL(IP4_31_28, PWM4_A, SEL_PWM4_0),
  574. PINMUX_IPSR_GPSR(IP4_31_28, CS1_N),
  575. /* IPSR5 */
  576. PINMUX_IPSR_GPSR(IP5_3_0, VI1_CLK),
  577. PINMUX_IPSR_GPSR(IP5_3_0, MSIOF1_RXD),
  578. PINMUX_IPSR_GPSR(IP5_3_0, CS0_N),
  579. PINMUX_IPSR_GPSR(IP5_7_4, VI1_CLKENB),
  580. PINMUX_IPSR_GPSR(IP5_7_4, MSIOF1_TXD),
  581. PINMUX_IPSR_GPSR(IP5_7_4, D0),
  582. PINMUX_IPSR_GPSR(IP5_11_8, VI1_HSYNC_N),
  583. PINMUX_IPSR_GPSR(IP5_11_8, MSIOF1_SCK),
  584. PINMUX_IPSR_GPSR(IP5_11_8, D1),
  585. PINMUX_IPSR_GPSR(IP5_15_12, VI1_VSYNC_N),
  586. PINMUX_IPSR_GPSR(IP5_15_12, MSIOF1_SYNC),
  587. PINMUX_IPSR_GPSR(IP5_15_12, D2),
  588. PINMUX_IPSR_GPSR(IP5_19_16, VI1_DATA0),
  589. PINMUX_IPSR_GPSR(IP5_19_16, MSIOF1_SS1),
  590. PINMUX_IPSR_GPSR(IP5_19_16, D3),
  591. PINMUX_IPSR_GPSR(IP5_19_16, MMC_WP),
  592. PINMUX_IPSR_GPSR(IP5_23_20, VI1_DATA1),
  593. PINMUX_IPSR_GPSR(IP5_23_20, MSIOF1_SS2),
  594. PINMUX_IPSR_GPSR(IP5_23_20, D4),
  595. PINMUX_IPSR_GPSR(IP5_23_20, MMC_CD),
  596. PINMUX_IPSR_GPSR(IP5_27_24, VI1_DATA2),
  597. PINMUX_IPSR_MSEL(IP5_27_24, CANFD0_TX_B, SEL_CANFD0_1),
  598. PINMUX_IPSR_GPSR(IP5_27_24, D5),
  599. PINMUX_IPSR_GPSR(IP5_27_24, MMC_DS),
  600. PINMUX_IPSR_GPSR(IP5_31_28, VI1_DATA3),
  601. PINMUX_IPSR_MSEL(IP5_31_28, CANFD0_RX_B, SEL_CANFD0_1),
  602. PINMUX_IPSR_GPSR(IP5_31_28, D6),
  603. PINMUX_IPSR_GPSR(IP5_31_28, MMC_CMD),
  604. /* IPSR6 */
  605. PINMUX_IPSR_GPSR(IP6_3_0, VI1_DATA4),
  606. PINMUX_IPSR_MSEL(IP6_3_0, CANFD_CLK_B, SEL_CANFD0_1),
  607. PINMUX_IPSR_GPSR(IP6_3_0, D7),
  608. PINMUX_IPSR_GPSR(IP6_3_0, MMC_D0),
  609. PINMUX_IPSR_GPSR(IP6_7_4, VI1_DATA5),
  610. PINMUX_IPSR_GPSR(IP6_7_4, D8),
  611. PINMUX_IPSR_GPSR(IP6_7_4, MMC_D1),
  612. PINMUX_IPSR_GPSR(IP6_11_8, VI1_DATA6),
  613. PINMUX_IPSR_GPSR(IP6_11_8, D9),
  614. PINMUX_IPSR_GPSR(IP6_11_8, MMC_D2),
  615. PINMUX_IPSR_GPSR(IP6_15_12, VI1_DATA7),
  616. PINMUX_IPSR_GPSR(IP6_15_12, D10),
  617. PINMUX_IPSR_GPSR(IP6_15_12, MMC_D3),
  618. PINMUX_IPSR_GPSR(IP6_19_16, VI1_DATA8),
  619. PINMUX_IPSR_GPSR(IP6_19_16, D11),
  620. PINMUX_IPSR_GPSR(IP6_19_16, MMC_CLK),
  621. PINMUX_IPSR_GPSR(IP6_23_20, VI1_DATA9),
  622. PINMUX_IPSR_MSEL(IP6_23_20, TCLK1_A, SEL_TMU_0),
  623. PINMUX_IPSR_GPSR(IP6_23_20, D12),
  624. PINMUX_IPSR_GPSR(IP6_23_20, MMC_D4),
  625. PINMUX_IPSR_GPSR(IP6_27_24, VI1_DATA10),
  626. PINMUX_IPSR_MSEL(IP6_27_24, TCLK2_A, SEL_TMU_0),
  627. PINMUX_IPSR_GPSR(IP6_27_24, D13),
  628. PINMUX_IPSR_GPSR(IP6_27_24, MMC_D5),
  629. PINMUX_IPSR_GPSR(IP6_31_28, VI1_DATA11),
  630. PINMUX_IPSR_GPSR(IP6_31_28, SCL4),
  631. PINMUX_IPSR_GPSR(IP6_31_28, D14),
  632. PINMUX_IPSR_GPSR(IP6_31_28, MMC_D6),
  633. /* IPSR7 */
  634. PINMUX_IPSR_GPSR(IP7_3_0, VI1_FIELD),
  635. PINMUX_IPSR_GPSR(IP7_3_0, SDA4),
  636. PINMUX_IPSR_GPSR(IP7_3_0, D15),
  637. PINMUX_IPSR_GPSR(IP7_3_0, MMC_D7),
  638. PINMUX_IPSR_GPSR(IP7_7_4, SCL0),
  639. PINMUX_IPSR_GPSR(IP7_7_4, CLKOUT),
  640. PINMUX_IPSR_GPSR(IP7_11_8, SDA0),
  641. PINMUX_IPSR_GPSR(IP7_11_8, BS_N),
  642. PINMUX_IPSR_GPSR(IP7_11_8, SCK0),
  643. PINMUX_IPSR_MSEL(IP7_11_8, HSCK0_B, SEL_HSCIF0_1),
  644. PINMUX_IPSR_GPSR(IP7_15_12, SCL1),
  645. PINMUX_IPSR_GPSR(IP7_15_12, TPU0TO2),
  646. PINMUX_IPSR_GPSR(IP7_15_12, RD_N),
  647. PINMUX_IPSR_GPSR(IP7_15_12, CTS0_N),
  648. PINMUX_IPSR_GPSR(IP7_15_12, HCTS0_N_B),
  649. PINMUX_IPSR_GPSR(IP7_19_16, SDA1),
  650. PINMUX_IPSR_GPSR(IP7_19_16, TPU0TO3),
  651. PINMUX_IPSR_GPSR(IP7_19_16, WE0_N),
  652. PINMUX_IPSR_GPSR(IP7_19_16, RTS0_N),
  653. PINMUX_IPSR_MSEL(IP1_23_20, HRTS0_N_B, SEL_HSCIF0_1),
  654. PINMUX_IPSR_GPSR(IP7_23_20, SCL2),
  655. PINMUX_IPSR_GPSR(IP7_23_20, WE1_N),
  656. PINMUX_IPSR_GPSR(IP7_23_20, RX0),
  657. PINMUX_IPSR_MSEL(IP7_23_20, HRX0_B, SEL_HSCIF0_1),
  658. PINMUX_IPSR_GPSR(IP7_27_24, SDA2),
  659. PINMUX_IPSR_GPSR(IP7_27_24, EX_WAIT0),
  660. PINMUX_IPSR_GPSR(IP7_27_24, TX0),
  661. PINMUX_IPSR_MSEL(IP7_27_24, HTX0_B, SEL_HSCIF0_1),
  662. PINMUX_IPSR_GPSR(IP7_31_28, AVB_AVTP_MATCH),
  663. PINMUX_IPSR_GPSR(IP7_31_28, TPU0TO0),
  664. /* IPSR8 */
  665. PINMUX_IPSR_GPSR(IP8_3_0, AVB_AVTP_CAPTURE),
  666. PINMUX_IPSR_GPSR(IP8_3_0, TPU0TO1),
  667. PINMUX_IPSR_MSEL(IP8_7_4, CANFD0_TX_A, SEL_CANFD0_0),
  668. PINMUX_IPSR_GPSR(IP8_7_4, FXR_TXDA),
  669. PINMUX_IPSR_MSEL(IP8_7_4, PWM0_B, SEL_PWM0_1),
  670. PINMUX_IPSR_GPSR(IP8_7_4, DU_DISP),
  671. PINMUX_IPSR_MSEL(IP8_11_8, CANFD0_RX_A, SEL_CANFD0_0),
  672. PINMUX_IPSR_GPSR(IP8_11_8, RXDA_EXTFXR),
  673. PINMUX_IPSR_MSEL(IP8_11_8, PWM1_B, SEL_PWM1_1),
  674. PINMUX_IPSR_GPSR(IP8_11_8, DU_CDE),
  675. PINMUX_IPSR_GPSR(IP8_15_12, CANFD1_TX),
  676. PINMUX_IPSR_GPSR(IP8_15_12, FXR_TXDB),
  677. PINMUX_IPSR_MSEL(IP8_15_12, PWM2_B, SEL_PWM2_1),
  678. PINMUX_IPSR_MSEL(IP8_15_12, TCLK1_B, SEL_TMU_1),
  679. PINMUX_IPSR_MSEL(IP8_15_12, TX1_B, SEL_SCIF1_1),
  680. PINMUX_IPSR_GPSR(IP8_19_16, CANFD1_RX),
  681. PINMUX_IPSR_GPSR(IP8_19_16, RXDB_EXTFXR),
  682. PINMUX_IPSR_MSEL(IP8_19_16, PWM3_B, SEL_PWM3_1),
  683. PINMUX_IPSR_MSEL(IP8_19_16, TCLK2_B, SEL_TMU_1),
  684. PINMUX_IPSR_MSEL(IP8_19_16, RX1_B, SEL_SCIF1_1),
  685. PINMUX_IPSR_MSEL(IP8_23_20, CANFD_CLK_A, SEL_CANFD0_0),
  686. PINMUX_IPSR_GPSR(IP8_23_20, CLK_EXTFXR),
  687. PINMUX_IPSR_MSEL(IP8_23_20, PWM4_B, SEL_PWM4_1),
  688. PINMUX_IPSR_MSEL(IP8_23_20, SPEEDIN_B, SEL_RSP_1),
  689. PINMUX_IPSR_MSEL(IP8_23_20, SCIF_CLK_B, SEL_HSCIF0_1),
  690. PINMUX_IPSR_GPSR(IP8_27_24, DIGRF_CLKIN),
  691. PINMUX_IPSR_GPSR(IP8_27_24, DIGRF_CLKEN_IN),
  692. PINMUX_IPSR_GPSR(IP8_31_28, DIGRF_CLKOUT),
  693. PINMUX_IPSR_GPSR(IP8_31_28, DIGRF_CLKEN_OUT),
  694. /* IPSR9 */
  695. PINMUX_IPSR_GPSR(IP9_3_0, IRQ4),
  696. PINMUX_IPSR_GPSR(IP9_3_0, VI0_DATA12),
  697. PINMUX_IPSR_GPSR(IP9_7_4, IRQ5),
  698. PINMUX_IPSR_GPSR(IP9_7_4, VI0_DATA13),
  699. PINMUX_IPSR_GPSR(IP9_11_8, MSIOF0_RXD),
  700. PINMUX_IPSR_GPSR(IP9_11_8, DU_DR0),
  701. PINMUX_IPSR_GPSR(IP9_11_8, VI0_DATA14),
  702. PINMUX_IPSR_GPSR(IP9_15_12, MSIOF0_TXD),
  703. PINMUX_IPSR_GPSR(IP9_15_12, DU_DR1),
  704. PINMUX_IPSR_GPSR(IP9_15_12, VI0_DATA15),
  705. PINMUX_IPSR_GPSR(IP9_19_16, MSIOF0_SCK),
  706. PINMUX_IPSR_GPSR(IP9_19_16, DU_DG0),
  707. PINMUX_IPSR_GPSR(IP9_19_16, VI0_DATA16),
  708. PINMUX_IPSR_GPSR(IP9_23_20, MSIOF0_SYNC),
  709. PINMUX_IPSR_GPSR(IP9_23_20, DU_DG1),
  710. PINMUX_IPSR_GPSR(IP9_23_20, VI0_DATA17),
  711. PINMUX_IPSR_GPSR(IP9_27_24, MSIOF0_SS1),
  712. PINMUX_IPSR_GPSR(IP9_27_24, DU_DB0),
  713. PINMUX_IPSR_GPSR(IP9_27_24, TCLK3),
  714. PINMUX_IPSR_GPSR(IP9_27_24, VI0_DATA18),
  715. PINMUX_IPSR_GPSR(IP9_31_28, MSIOF0_SS2),
  716. PINMUX_IPSR_GPSR(IP9_31_28, DU_DB1),
  717. PINMUX_IPSR_GPSR(IP9_31_28, TCLK4),
  718. PINMUX_IPSR_GPSR(IP9_31_28, VI0_DATA19),
  719. /* IPSR10 */
  720. PINMUX_IPSR_GPSR(IP10_3_0, SCL3),
  721. PINMUX_IPSR_GPSR(IP10_3_0, VI0_DATA20),
  722. PINMUX_IPSR_GPSR(IP10_7_4, SDA3),
  723. PINMUX_IPSR_GPSR(IP10_7_4, VI0_DATA21),
  724. PINMUX_IPSR_GPSR(IP10_11_8, FSO_CFE_0_N),
  725. PINMUX_IPSR_GPSR(IP10_11_8, VI0_DATA22),
  726. PINMUX_IPSR_GPSR(IP10_15_12, FSO_CFE_1_N),
  727. PINMUX_IPSR_GPSR(IP10_15_12, VI0_DATA23),
  728. PINMUX_IPSR_GPSR(IP10_19_16, FSO_TOE_N),
  729. };
  730. /*
  731. * Pins not associated with a GPIO port.
  732. */
  733. enum {
  734. GP_ASSIGN_LAST(),
  735. NOGP_ALL(),
  736. };
  737. static const struct sh_pfc_pin pinmux_pins[] = {
  738. PINMUX_GPIO_GP_ALL(),
  739. PINMUX_NOGP_ALL(),
  740. };
  741. /* - AVB -------------------------------------------------------------------- */
  742. static const unsigned int avb_link_pins[] = {
  743. /* AVB_LINK */
  744. RCAR_GP_PIN(1, 18),
  745. };
  746. static const unsigned int avb_link_mux[] = {
  747. AVB_LINK_MARK,
  748. };
  749. static const unsigned int avb_magic_pins[] = {
  750. /* AVB_MAGIC */
  751. RCAR_GP_PIN(1, 16),
  752. };
  753. static const unsigned int avb_magic_mux[] = {
  754. AVB_MAGIC_MARK,
  755. };
  756. static const unsigned int avb_phy_int_pins[] = {
  757. /* AVB_PHY_INT */
  758. RCAR_GP_PIN(1, 17),
  759. };
  760. static const unsigned int avb_phy_int_mux[] = {
  761. AVB_PHY_INT_MARK,
  762. };
  763. static const unsigned int avb_mdio_pins[] = {
  764. /* AVB_MDC, AVB_MDIO */
  765. RCAR_GP_PIN(1, 15), RCAR_GP_PIN(1, 14),
  766. };
  767. static const unsigned int avb_mdio_mux[] = {
  768. AVB_MDC_MARK, AVB_MDIO_MARK,
  769. };
  770. static const unsigned int avb_rgmii_pins[] = {
  771. /*
  772. * AVB_TX_CTL, AVB_TXC, AVB_TD0, AVB_TD1, AVB_TD2, AVB_TD3,
  773. * AVB_RX_CTL, AVB_RXC, AVB_RD0, AVB_RD1, AVB_RD2, AVB_RD3,
  774. */
  775. RCAR_GP_PIN(1, 7), RCAR_GP_PIN(1, 8),
  776. RCAR_GP_PIN(1, 9), RCAR_GP_PIN(1, 10),
  777. RCAR_GP_PIN(1, 11), RCAR_GP_PIN(1, 12),
  778. RCAR_GP_PIN(1, 1), RCAR_GP_PIN(1, 2),
  779. RCAR_GP_PIN(1, 3), RCAR_GP_PIN(1, 4),
  780. RCAR_GP_PIN(1, 5), RCAR_GP_PIN(1, 6),
  781. };
  782. static const unsigned int avb_rgmii_mux[] = {
  783. AVB_TX_CTL_MARK, AVB_TXC_MARK,
  784. AVB_TD0_MARK, AVB_TD1_MARK, AVB_TD2_MARK, AVB_TD3_MARK,
  785. AVB_RX_CTL_MARK, AVB_RXC_MARK,
  786. AVB_RD0_MARK, AVB_RD1_MARK, AVB_RD2_MARK, AVB_RD3_MARK,
  787. };
  788. static const unsigned int avb_txcrefclk_pins[] = {
  789. /* AVB_TXCREFCLK */
  790. RCAR_GP_PIN(1, 13),
  791. };
  792. static const unsigned int avb_txcrefclk_mux[] = {
  793. AVB_TXCREFCLK_MARK,
  794. };
  795. static const unsigned int avb_avtp_pps_pins[] = {
  796. /* AVB_AVTP_PPS */
  797. RCAR_GP_PIN(2, 6),
  798. };
  799. static const unsigned int avb_avtp_pps_mux[] = {
  800. AVB_AVTP_PPS_MARK,
  801. };
  802. static const unsigned int avb_avtp_capture_pins[] = {
  803. /* AVB_AVTP_CAPTURE */
  804. RCAR_GP_PIN(1, 20),
  805. };
  806. static const unsigned int avb_avtp_capture_mux[] = {
  807. AVB_AVTP_CAPTURE_MARK,
  808. };
  809. static const unsigned int avb_avtp_match_pins[] = {
  810. /* AVB_AVTP_MATCH */
  811. RCAR_GP_PIN(1, 19),
  812. };
  813. static const unsigned int avb_avtp_match_mux[] = {
  814. AVB_AVTP_MATCH_MARK,
  815. };
  816. /* - CANFD0 ----------------------------------------------------------------- */
  817. static const unsigned int canfd0_data_a_pins[] = {
  818. /* CANFD0_TX, CANFD0_RX */
  819. RCAR_GP_PIN(1, 21), RCAR_GP_PIN(1, 22),
  820. };
  821. static const unsigned int canfd0_data_a_mux[] = {
  822. CANFD0_TX_A_MARK, CANFD0_RX_A_MARK,
  823. };
  824. static const unsigned int canfd0_data_b_pins[] = {
  825. /* CANFD0_TX, CANFD0_RX */
  826. RCAR_GP_PIN(3, 6), RCAR_GP_PIN(3, 7),
  827. };
  828. static const unsigned int canfd0_data_b_mux[] = {
  829. CANFD0_TX_B_MARK, CANFD0_RX_B_MARK,
  830. };
  831. /* - CANFD1 ----------------------------------------------------------------- */
  832. static const unsigned int canfd1_data_pins[] = {
  833. /* CANFD1_TX, CANFD1_RX */
  834. RCAR_GP_PIN(1, 23), RCAR_GP_PIN(1, 24),
  835. };
  836. static const unsigned int canfd1_data_mux[] = {
  837. CANFD1_TX_MARK, CANFD1_RX_MARK,
  838. };
  839. /* - CANFD Clock ------------------------------------------------------------ */
  840. static const unsigned int canfd_clk_a_pins[] = {
  841. /* CANFD_CLK */
  842. RCAR_GP_PIN(1, 25),
  843. };
  844. static const unsigned int canfd_clk_a_mux[] = {
  845. CANFD_CLK_A_MARK,
  846. };
  847. static const unsigned int canfd_clk_b_pins[] = {
  848. /* CANFD_CLK */
  849. RCAR_GP_PIN(3, 8),
  850. };
  851. static const unsigned int canfd_clk_b_mux[] = {
  852. CANFD_CLK_B_MARK,
  853. };
  854. /* - DU --------------------------------------------------------------------- */
  855. static const unsigned int du_rgb666_pins[] = {
  856. /* DU_DR[7:2], DU_DG[7:2], DU_DB[7:2] */
  857. RCAR_GP_PIN(0, 5), RCAR_GP_PIN(0, 4), RCAR_GP_PIN(0, 3),
  858. RCAR_GP_PIN(0, 2), RCAR_GP_PIN(0, 1), RCAR_GP_PIN(0, 0),
  859. RCAR_GP_PIN(0, 11), RCAR_GP_PIN(0, 10), RCAR_GP_PIN(0, 9),
  860. RCAR_GP_PIN(0, 8), RCAR_GP_PIN(0, 7), RCAR_GP_PIN(0, 6),
  861. RCAR_GP_PIN(0, 17), RCAR_GP_PIN(0, 16), RCAR_GP_PIN(0, 15),
  862. RCAR_GP_PIN(0, 14), RCAR_GP_PIN(0, 13), RCAR_GP_PIN(0, 12),
  863. };
  864. static const unsigned int du_rgb666_mux[] = {
  865. DU_DR7_MARK, DU_DR6_MARK, DU_DR5_MARK,
  866. DU_DR4_MARK, DU_DR3_MARK, DU_DR2_MARK,
  867. DU_DG7_MARK, DU_DG6_MARK, DU_DG5_MARK,
  868. DU_DG4_MARK, DU_DG3_MARK, DU_DG2_MARK,
  869. DU_DB7_MARK, DU_DB6_MARK, DU_DB5_MARK,
  870. DU_DB4_MARK, DU_DB3_MARK, DU_DB2_MARK,
  871. };
  872. static const unsigned int du_rgb888_pins[] = {
  873. /* DU_DR[7:0], DU_DG[7:0], DU_DB[7:0] */
  874. RCAR_GP_PIN(0, 5), RCAR_GP_PIN(0, 4), RCAR_GP_PIN(0, 3),
  875. RCAR_GP_PIN(0, 2), RCAR_GP_PIN(0, 1), RCAR_GP_PIN(0, 0),
  876. RCAR_GP_PIN(2, 20), RCAR_GP_PIN(2, 19),
  877. RCAR_GP_PIN(0, 11), RCAR_GP_PIN(0, 10), RCAR_GP_PIN(0, 9),
  878. RCAR_GP_PIN(0, 8), RCAR_GP_PIN(0, 7), RCAR_GP_PIN(0, 6),
  879. RCAR_GP_PIN(2, 22), RCAR_GP_PIN(2, 21),
  880. RCAR_GP_PIN(0, 17), RCAR_GP_PIN(0, 16), RCAR_GP_PIN(0, 15),
  881. RCAR_GP_PIN(0, 14), RCAR_GP_PIN(0, 13), RCAR_GP_PIN(0, 12),
  882. RCAR_GP_PIN(2, 24), RCAR_GP_PIN(2, 23),
  883. };
  884. static const unsigned int du_rgb888_mux[] = {
  885. DU_DR7_MARK, DU_DR6_MARK, DU_DR5_MARK,
  886. DU_DR4_MARK, DU_DR3_MARK, DU_DR2_MARK,
  887. DU_DR1_MARK, DU_DR0_MARK,
  888. DU_DG7_MARK, DU_DG6_MARK, DU_DG5_MARK,
  889. DU_DG4_MARK, DU_DG3_MARK, DU_DG2_MARK,
  890. DU_DG1_MARK, DU_DG0_MARK,
  891. DU_DB7_MARK, DU_DB6_MARK, DU_DB5_MARK,
  892. DU_DB4_MARK, DU_DB3_MARK, DU_DB2_MARK,
  893. DU_DB1_MARK, DU_DB0_MARK,
  894. };
  895. static const unsigned int du_clk_out_pins[] = {
  896. /* DU_DOTCLKOUT */
  897. RCAR_GP_PIN(0, 18),
  898. };
  899. static const unsigned int du_clk_out_mux[] = {
  900. DU_DOTCLKOUT_MARK,
  901. };
  902. static const unsigned int du_sync_pins[] = {
  903. /* DU_EXVSYNC/DU_VSYNC, DU_EXHSYNC/DU_HSYNC */
  904. RCAR_GP_PIN(0, 20), RCAR_GP_PIN(0, 19),
  905. };
  906. static const unsigned int du_sync_mux[] = {
  907. DU_EXVSYNC_DU_VSYNC_MARK, DU_EXHSYNC_DU_HSYNC_MARK,
  908. };
  909. static const unsigned int du_oddf_pins[] = {
  910. /* DU_EXODDF/DU_ODDF/DISP/CDE */
  911. RCAR_GP_PIN(0, 21),
  912. };
  913. static const unsigned int du_oddf_mux[] = {
  914. DU_EXODDF_DU_ODDF_DISP_CDE_MARK,
  915. };
  916. static const unsigned int du_cde_pins[] = {
  917. /* DU_CDE */
  918. RCAR_GP_PIN(1, 22),
  919. };
  920. static const unsigned int du_cde_mux[] = {
  921. DU_CDE_MARK,
  922. };
  923. static const unsigned int du_disp_pins[] = {
  924. /* DU_DISP */
  925. RCAR_GP_PIN(1, 21),
  926. };
  927. static const unsigned int du_disp_mux[] = {
  928. DU_DISP_MARK,
  929. };
  930. /* - GETHER ----------------------------------------------------------------- */
  931. static const unsigned int gether_link_a_pins[] = {
  932. /* GETHER_LINK */
  933. RCAR_GP_PIN(4, 24),
  934. };
  935. static const unsigned int gether_link_a_mux[] = {
  936. GETHER_LINK_A_MARK,
  937. };
  938. static const unsigned int gether_phy_int_a_pins[] = {
  939. /* GETHER_PHY_INT */
  940. RCAR_GP_PIN(4, 23),
  941. };
  942. static const unsigned int gether_phy_int_a_mux[] = {
  943. GETHER_PHY_INT_A_MARK,
  944. };
  945. static const unsigned int gether_mdio_a_pins[] = {
  946. /* GETHER_MDC, GETHER_MDIO */
  947. RCAR_GP_PIN(4, 21), RCAR_GP_PIN(4, 20),
  948. };
  949. static const unsigned int gether_mdio_a_mux[] = {
  950. GETHER_MDC_A_MARK, GETHER_MDIO_A_MARK,
  951. };
  952. static const unsigned int gether_link_b_pins[] = {
  953. /* GETHER_LINK */
  954. RCAR_GP_PIN(0, 18),
  955. };
  956. static const unsigned int gether_link_b_mux[] = {
  957. GETHER_LINK_B_MARK,
  958. };
  959. static const unsigned int gether_phy_int_b_pins[] = {
  960. /* GETHER_PHY_INT */
  961. RCAR_GP_PIN(0, 19),
  962. };
  963. static const unsigned int gether_phy_int_b_mux[] = {
  964. GETHER_PHY_INT_B_MARK,
  965. };
  966. static const unsigned int gether_mdio_b_mux[] = {
  967. GETHER_MDC_B_MARK, GETHER_MDIO_B_MARK,
  968. };
  969. static const unsigned int gether_mdio_b_pins[] = {
  970. /* GETHER_MDC, GETHER_MDIO */
  971. RCAR_GP_PIN(0, 9), RCAR_GP_PIN(0, 10),
  972. };
  973. static const unsigned int gether_magic_pins[] = {
  974. /* GETHER_MAGIC */
  975. RCAR_GP_PIN(4, 22),
  976. };
  977. static const unsigned int gether_magic_mux[] = {
  978. GETHER_MAGIC_MARK,
  979. };
  980. static const unsigned int gether_rgmii_pins[] = {
  981. /*
  982. * GETHER_TX_CTL, GETHER_TXC,
  983. * GETHER_TD0, GETHER_TD1, GETHER_TD2, GETHER_TD3,
  984. * GETHER_RX_CTL, GETHER_RXC,
  985. * GETHER_RD0, GETHER_RD1, GETHER_RD2, GETHER_RD3,
  986. */
  987. RCAR_GP_PIN(4, 12), RCAR_GP_PIN(4, 13),
  988. RCAR_GP_PIN(4, 14), RCAR_GP_PIN(4, 15),
  989. RCAR_GP_PIN(4, 16), RCAR_GP_PIN(4, 17),
  990. RCAR_GP_PIN(4, 6), RCAR_GP_PIN(4, 7),
  991. RCAR_GP_PIN(4, 8), RCAR_GP_PIN(4, 9),
  992. RCAR_GP_PIN(4, 10), RCAR_GP_PIN(4, 11),
  993. };
  994. static const unsigned int gether_rgmii_mux[] = {
  995. GETHER_TX_CTL_MARK, GETHER_TXC_MARK,
  996. GETHER_TD0_MARK, GETHER_TD1_MARK,
  997. GETHER_TD2_MARK, GETHER_TD3_MARK,
  998. GETHER_RX_CTL_MARK, GETHER_RXC_MARK,
  999. GETHER_RD0_MARK, AVB_RD1_MARK,
  1000. GETHER_RD2_MARK, AVB_RD3_MARK,
  1001. };
  1002. static const unsigned int gether_txcrefclk_pins[] = {
  1003. /* GETHER_TXCREFCLK */
  1004. RCAR_GP_PIN(4, 18),
  1005. };
  1006. static const unsigned int gether_txcrefclk_mux[] = {
  1007. GETHER_TXCREFCLK_MARK,
  1008. };
  1009. static const unsigned int gether_txcrefclk_mega_pins[] = {
  1010. /* GETHER_TXCREFCLK_MEGA */
  1011. RCAR_GP_PIN(4, 19),
  1012. };
  1013. static const unsigned int gether_txcrefclk_mega_mux[] = {
  1014. GETHER_TXCREFCLK_MEGA_MARK,
  1015. };
  1016. static const unsigned int gether_rmii_pins[] = {
  1017. /*
  1018. * GETHER_RMII_CRS_DV, GETHER_RMII_RX_ER,
  1019. * GETHER_RMII_RXD0, GETHER_RMII_RXD1,
  1020. * GETHER_RMII_TXD_EN, GETHER_RMII_TXD0,
  1021. * GETHER_RMII_TXD1, GETHER_RMII_REFCLK
  1022. */
  1023. RCAR_GP_PIN(0, 0), RCAR_GP_PIN(0, 1),
  1024. RCAR_GP_PIN(0, 2), RCAR_GP_PIN(0, 3),
  1025. RCAR_GP_PIN(0, 4), RCAR_GP_PIN(0, 5),
  1026. RCAR_GP_PIN(0, 6), RCAR_GP_PIN(0, 7),
  1027. };
  1028. static const unsigned int gether_rmii_mux[] = {
  1029. GETHER_RMII_CRS_DV_MARK, GETHER_RMII_RX_ER_MARK,
  1030. GETHER_RMII_RXD0_MARK, GETHER_RMII_RXD1_MARK,
  1031. GETHER_RMII_TXD_EN_MARK, GETHER_RMII_TXD0_MARK,
  1032. GETHER_RMII_TXD1_MARK, GETHER_RMII_REFCLK_MARK,
  1033. };
  1034. /* - HSCIF0 ----------------------------------------------------------------- */
  1035. static const unsigned int hscif0_data_a_pins[] = {
  1036. /* HRX0, HTX0 */
  1037. RCAR_GP_PIN(0, 11), RCAR_GP_PIN(0, 15),
  1038. };
  1039. static const unsigned int hscif0_data_a_mux[] = {
  1040. HRX0_A_MARK, HTX0_A_MARK,
  1041. };
  1042. static const unsigned int hscif0_clk_a_pins[] = {
  1043. /* HSCK0 */
  1044. RCAR_GP_PIN(0, 12),
  1045. };
  1046. static const unsigned int hscif0_clk_a_mux[] = {
  1047. HSCK0_A_MARK,
  1048. };
  1049. static const unsigned int hscif0_ctrl_a_pins[] = {
  1050. /* HRTS0#, HCTS0# */
  1051. RCAR_GP_PIN(0, 13), RCAR_GP_PIN(0, 14),
  1052. };
  1053. static const unsigned int hscif0_ctrl_a_mux[] = {
  1054. HRTS0_N_A_MARK, HCTS0_N_A_MARK,
  1055. };
  1056. static const unsigned int hscif0_data_b_pins[] = {
  1057. /* HRX0, HTX0 */
  1058. RCAR_GP_PIN(4, 4), RCAR_GP_PIN(4, 5),
  1059. };
  1060. static const unsigned int hscif0_data_b_mux[] = {
  1061. HRX0_B_MARK, HTX0_B_MARK,
  1062. };
  1063. static const unsigned int hscif0_clk_b_pins[] = {
  1064. /* HSCK0 */
  1065. RCAR_GP_PIN(4, 1),
  1066. };
  1067. static const unsigned int hscif0_clk_b_mux[] = {
  1068. HSCK0_B_MARK,
  1069. };
  1070. static const unsigned int hscif0_ctrl_b_pins[] = {
  1071. /* HRTS0#, HCTS0# */
  1072. RCAR_GP_PIN(4, 3), RCAR_GP_PIN(4, 2),
  1073. };
  1074. static const unsigned int hscif0_ctrl_b_mux[] = {
  1075. HRTS0_N_B_MARK, HCTS0_N_B_MARK,
  1076. };
  1077. /* - HSCIF1 ----------------------------------------------------------------- */
  1078. static const unsigned int hscif1_data_pins[] = {
  1079. /* HRX1, HTX1 */
  1080. RCAR_GP_PIN(2, 11), RCAR_GP_PIN(2, 10),
  1081. };
  1082. static const unsigned int hscif1_data_mux[] = {
  1083. HRX1_MARK, HTX1_MARK,
  1084. };
  1085. static const unsigned int hscif1_clk_pins[] = {
  1086. /* HSCK1 */
  1087. RCAR_GP_PIN(2, 7),
  1088. };
  1089. static const unsigned int hscif1_clk_mux[] = {
  1090. HSCK1_MARK,
  1091. };
  1092. static const unsigned int hscif1_ctrl_pins[] = {
  1093. /* HRTS1#, HCTS1# */
  1094. RCAR_GP_PIN(2, 8), RCAR_GP_PIN(2, 9),
  1095. };
  1096. static const unsigned int hscif1_ctrl_mux[] = {
  1097. HRTS1_N_MARK, HCTS1_N_MARK,
  1098. };
  1099. /* - HSCIF2 ----------------------------------------------------------------- */
  1100. static const unsigned int hscif2_data_pins[] = {
  1101. /* HRX2, HTX2 */
  1102. RCAR_GP_PIN(2, 16), RCAR_GP_PIN(2, 15),
  1103. };
  1104. static const unsigned int hscif2_data_mux[] = {
  1105. HRX2_MARK, HTX2_MARK,
  1106. };
  1107. static const unsigned int hscif2_clk_pins[] = {
  1108. /* HSCK2 */
  1109. RCAR_GP_PIN(2, 12),
  1110. };
  1111. static const unsigned int hscif2_clk_mux[] = {
  1112. HSCK2_MARK,
  1113. };
  1114. static const unsigned int hscif2_ctrl_pins[] = {
  1115. /* HRTS2#, HCTS2# */
  1116. RCAR_GP_PIN(2, 14), RCAR_GP_PIN(2, 13),
  1117. };
  1118. static const unsigned int hscif2_ctrl_mux[] = {
  1119. HRTS2_N_MARK, HCTS2_N_MARK,
  1120. };
  1121. /* - HSCIF3 ----------------------------------------------------------------- */
  1122. static const unsigned int hscif3_data_pins[] = {
  1123. /* HRX3, HTX3 */
  1124. RCAR_GP_PIN(2, 4), RCAR_GP_PIN(2, 3),
  1125. };
  1126. static const unsigned int hscif3_data_mux[] = {
  1127. HRX3_MARK, HTX3_MARK,
  1128. };
  1129. static const unsigned int hscif3_clk_pins[] = {
  1130. /* HSCK3 */
  1131. RCAR_GP_PIN(2, 0),
  1132. };
  1133. static const unsigned int hscif3_clk_mux[] = {
  1134. HSCK3_MARK,
  1135. };
  1136. static const unsigned int hscif3_ctrl_pins[] = {
  1137. /* HRTS3#, HCTS3# */
  1138. RCAR_GP_PIN(2, 2), RCAR_GP_PIN(2, 1),
  1139. };
  1140. static const unsigned int hscif3_ctrl_mux[] = {
  1141. HRTS3_N_MARK, HCTS3_N_MARK,
  1142. };
  1143. /* - I2C0 ------------------------------------------------------------------- */
  1144. static const unsigned int i2c0_pins[] = {
  1145. /* SDA0, SCL0 */
  1146. RCAR_GP_PIN(4, 1), RCAR_GP_PIN(4, 0),
  1147. };
  1148. static const unsigned int i2c0_mux[] = {
  1149. SDA0_MARK, SCL0_MARK,
  1150. };
  1151. /* - I2C1 ------------------------------------------------------------------- */
  1152. static const unsigned int i2c1_pins[] = {
  1153. /* SDA1, SCL1 */
  1154. RCAR_GP_PIN(4, 3), RCAR_GP_PIN(4, 2),
  1155. };
  1156. static const unsigned int i2c1_mux[] = {
  1157. SDA1_MARK, SCL1_MARK,
  1158. };
  1159. /* - I2C2 ------------------------------------------------------------------- */
  1160. static const unsigned int i2c2_pins[] = {
  1161. /* SDA2, SCL2 */
  1162. RCAR_GP_PIN(4, 5), RCAR_GP_PIN(4, 4),
  1163. };
  1164. static const unsigned int i2c2_mux[] = {
  1165. SDA2_MARK, SCL2_MARK,
  1166. };
  1167. /* - I2C3 ------------------------------------------------------------------- */
  1168. static const unsigned int i2c3_pins[] = {
  1169. /* SDA3, SCL3 */
  1170. RCAR_GP_PIN(2, 26), RCAR_GP_PIN(2, 25),
  1171. };
  1172. static const unsigned int i2c3_mux[] = {
  1173. SDA3_MARK, SCL3_MARK,
  1174. };
  1175. /* - I2C4 ------------------------------------------------------------------- */
  1176. static const unsigned int i2c4_pins[] = {
  1177. /* SDA4, SCL4 */
  1178. RCAR_GP_PIN(3, 16), RCAR_GP_PIN(3, 15),
  1179. };
  1180. static const unsigned int i2c4_mux[] = {
  1181. SDA4_MARK, SCL4_MARK,
  1182. };
  1183. /* - I2C5 ------------------------------------------------------------------- */
  1184. static const unsigned int i2c5_pins[] = {
  1185. /* SDA5, SCL5 */
  1186. RCAR_GP_PIN(0, 9), RCAR_GP_PIN(0, 8),
  1187. };
  1188. static const unsigned int i2c5_mux[] = {
  1189. SDA5_MARK, SCL5_MARK,
  1190. };
  1191. /* - INTC-EX ---------------------------------------------------------------- */
  1192. static const unsigned int intc_ex_irq0_pins[] = {
  1193. /* IRQ0 */
  1194. RCAR_GP_PIN(1, 0),
  1195. };
  1196. static const unsigned int intc_ex_irq0_mux[] = {
  1197. IRQ0_MARK,
  1198. };
  1199. static const unsigned int intc_ex_irq1_pins[] = {
  1200. /* IRQ1 */
  1201. RCAR_GP_PIN(0, 12),
  1202. };
  1203. static const unsigned int intc_ex_irq1_mux[] = {
  1204. IRQ1_MARK,
  1205. };
  1206. static const unsigned int intc_ex_irq2_pins[] = {
  1207. /* IRQ2 */
  1208. RCAR_GP_PIN(0, 13),
  1209. };
  1210. static const unsigned int intc_ex_irq2_mux[] = {
  1211. IRQ2_MARK,
  1212. };
  1213. static const unsigned int intc_ex_irq3_pins[] = {
  1214. /* IRQ3 */
  1215. RCAR_GP_PIN(0, 14),
  1216. };
  1217. static const unsigned int intc_ex_irq3_mux[] = {
  1218. IRQ3_MARK,
  1219. };
  1220. static const unsigned int intc_ex_irq4_pins[] = {
  1221. /* IRQ4 */
  1222. RCAR_GP_PIN(2, 17),
  1223. };
  1224. static const unsigned int intc_ex_irq4_mux[] = {
  1225. IRQ4_MARK,
  1226. };
  1227. static const unsigned int intc_ex_irq5_pins[] = {
  1228. /* IRQ5 */
  1229. RCAR_GP_PIN(2, 18),
  1230. };
  1231. static const unsigned int intc_ex_irq5_mux[] = {
  1232. IRQ5_MARK,
  1233. };
  1234. /* - MMC -------------------------------------------------------------------- */
  1235. static const unsigned int mmc_data_pins[] = {
  1236. /* MMC_D[0:7] */
  1237. RCAR_GP_PIN(3, 8), RCAR_GP_PIN(3, 9),
  1238. RCAR_GP_PIN(3, 10), RCAR_GP_PIN(3, 11),
  1239. RCAR_GP_PIN(3, 13), RCAR_GP_PIN(3, 14),
  1240. RCAR_GP_PIN(3, 15), RCAR_GP_PIN(3, 16),
  1241. };
  1242. static const unsigned int mmc_data_mux[] = {
  1243. MMC_D0_MARK, MMC_D1_MARK,
  1244. MMC_D2_MARK, MMC_D3_MARK,
  1245. MMC_D4_MARK, MMC_D5_MARK,
  1246. MMC_D6_MARK, MMC_D7_MARK,
  1247. };
  1248. static const unsigned int mmc_ctrl_pins[] = {
  1249. /* MMC_CLK, MMC_CMD */
  1250. RCAR_GP_PIN(3, 12), RCAR_GP_PIN(3, 7),
  1251. };
  1252. static const unsigned int mmc_ctrl_mux[] = {
  1253. MMC_CLK_MARK, MMC_CMD_MARK,
  1254. };
  1255. static const unsigned int mmc_cd_pins[] = {
  1256. /* MMC_CD */
  1257. RCAR_GP_PIN(3, 5),
  1258. };
  1259. static const unsigned int mmc_cd_mux[] = {
  1260. MMC_CD_MARK,
  1261. };
  1262. static const unsigned int mmc_wp_pins[] = {
  1263. /* MMC_WP */
  1264. RCAR_GP_PIN(3, 4),
  1265. };
  1266. static const unsigned int mmc_wp_mux[] = {
  1267. MMC_WP_MARK,
  1268. };
  1269. static const unsigned int mmc_ds_pins[] = {
  1270. /* MMC_DS */
  1271. RCAR_GP_PIN(3, 6),
  1272. };
  1273. static const unsigned int mmc_ds_mux[] = {
  1274. MMC_DS_MARK,
  1275. };
  1276. /* - MSIOF0 ----------------------------------------------------------------- */
  1277. static const unsigned int msiof0_clk_pins[] = {
  1278. /* MSIOF0_SCK */
  1279. RCAR_GP_PIN(2, 21),
  1280. };
  1281. static const unsigned int msiof0_clk_mux[] = {
  1282. MSIOF0_SCK_MARK,
  1283. };
  1284. static const unsigned int msiof0_sync_pins[] = {
  1285. /* MSIOF0_SYNC */
  1286. RCAR_GP_PIN(2, 22),
  1287. };
  1288. static const unsigned int msiof0_sync_mux[] = {
  1289. MSIOF0_SYNC_MARK,
  1290. };
  1291. static const unsigned int msiof0_ss1_pins[] = {
  1292. /* MSIOF0_SS1 */
  1293. RCAR_GP_PIN(2, 23),
  1294. };
  1295. static const unsigned int msiof0_ss1_mux[] = {
  1296. MSIOF0_SS1_MARK,
  1297. };
  1298. static const unsigned int msiof0_ss2_pins[] = {
  1299. /* MSIOF0_SS2 */
  1300. RCAR_GP_PIN(2, 24),
  1301. };
  1302. static const unsigned int msiof0_ss2_mux[] = {
  1303. MSIOF0_SS2_MARK,
  1304. };
  1305. static const unsigned int msiof0_txd_pins[] = {
  1306. /* MSIOF0_TXD */
  1307. RCAR_GP_PIN(2, 20),
  1308. };
  1309. static const unsigned int msiof0_txd_mux[] = {
  1310. MSIOF0_TXD_MARK,
  1311. };
  1312. static const unsigned int msiof0_rxd_pins[] = {
  1313. /* MSIOF0_RXD */
  1314. RCAR_GP_PIN(2, 19),
  1315. };
  1316. static const unsigned int msiof0_rxd_mux[] = {
  1317. MSIOF0_RXD_MARK,
  1318. };
  1319. /* - MSIOF1 ----------------------------------------------------------------- */
  1320. static const unsigned int msiof1_clk_pins[] = {
  1321. /* MSIOF1_SCK */
  1322. RCAR_GP_PIN(3, 2),
  1323. };
  1324. static const unsigned int msiof1_clk_mux[] = {
  1325. MSIOF1_SCK_MARK,
  1326. };
  1327. static const unsigned int msiof1_sync_pins[] = {
  1328. /* MSIOF1_SYNC */
  1329. RCAR_GP_PIN(3, 3),
  1330. };
  1331. static const unsigned int msiof1_sync_mux[] = {
  1332. MSIOF1_SYNC_MARK,
  1333. };
  1334. static const unsigned int msiof1_ss1_pins[] = {
  1335. /* MSIOF1_SS1 */
  1336. RCAR_GP_PIN(3, 4),
  1337. };
  1338. static const unsigned int msiof1_ss1_mux[] = {
  1339. MSIOF1_SS1_MARK,
  1340. };
  1341. static const unsigned int msiof1_ss2_pins[] = {
  1342. /* MSIOF1_SS2 */
  1343. RCAR_GP_PIN(3, 5),
  1344. };
  1345. static const unsigned int msiof1_ss2_mux[] = {
  1346. MSIOF1_SS2_MARK,
  1347. };
  1348. static const unsigned int msiof1_txd_pins[] = {
  1349. /* MSIOF1_TXD */
  1350. RCAR_GP_PIN(3, 1),
  1351. };
  1352. static const unsigned int msiof1_txd_mux[] = {
  1353. MSIOF1_TXD_MARK,
  1354. };
  1355. static const unsigned int msiof1_rxd_pins[] = {
  1356. /* MSIOF1_RXD */
  1357. RCAR_GP_PIN(3, 0),
  1358. };
  1359. static const unsigned int msiof1_rxd_mux[] = {
  1360. MSIOF1_RXD_MARK,
  1361. };
  1362. /* - MSIOF2 ----------------------------------------------------------------- */
  1363. static const unsigned int msiof2_clk_pins[] = {
  1364. /* MSIOF2_SCK */
  1365. RCAR_GP_PIN(2, 0),
  1366. };
  1367. static const unsigned int msiof2_clk_mux[] = {
  1368. MSIOF2_SCK_MARK,
  1369. };
  1370. static const unsigned int msiof2_sync_pins[] = {
  1371. /* MSIOF2_SYNC */
  1372. RCAR_GP_PIN(2, 3),
  1373. };
  1374. static const unsigned int msiof2_sync_mux[] = {
  1375. MSIOF2_SYNC_MARK,
  1376. };
  1377. static const unsigned int msiof2_ss1_pins[] = {
  1378. /* MSIOF2_SS1 */
  1379. RCAR_GP_PIN(2, 4),
  1380. };
  1381. static const unsigned int msiof2_ss1_mux[] = {
  1382. MSIOF2_SS1_MARK,
  1383. };
  1384. static const unsigned int msiof2_ss2_pins[] = {
  1385. /* MSIOF2_SS2 */
  1386. RCAR_GP_PIN(2, 5),
  1387. };
  1388. static const unsigned int msiof2_ss2_mux[] = {
  1389. MSIOF2_SS2_MARK,
  1390. };
  1391. static const unsigned int msiof2_txd_pins[] = {
  1392. /* MSIOF2_TXD */
  1393. RCAR_GP_PIN(2, 2),
  1394. };
  1395. static const unsigned int msiof2_txd_mux[] = {
  1396. MSIOF2_TXD_MARK,
  1397. };
  1398. static const unsigned int msiof2_rxd_pins[] = {
  1399. /* MSIOF2_RXD */
  1400. RCAR_GP_PIN(2, 1),
  1401. };
  1402. static const unsigned int msiof2_rxd_mux[] = {
  1403. MSIOF2_RXD_MARK,
  1404. };
  1405. /* - MSIOF3 ----------------------------------------------------------------- */
  1406. static const unsigned int msiof3_clk_pins[] = {
  1407. /* MSIOF3_SCK */
  1408. RCAR_GP_PIN(0, 20),
  1409. };
  1410. static const unsigned int msiof3_clk_mux[] = {
  1411. MSIOF3_SCK_MARK,
  1412. };
  1413. static const unsigned int msiof3_sync_pins[] = {
  1414. /* MSIOF3_SYNC */
  1415. RCAR_GP_PIN(0, 21),
  1416. };
  1417. static const unsigned int msiof3_sync_mux[] = {
  1418. MSIOF3_SYNC_MARK,
  1419. };
  1420. static const unsigned int msiof3_ss1_pins[] = {
  1421. /* MSIOF3_SS1 */
  1422. RCAR_GP_PIN(0, 18),
  1423. };
  1424. static const unsigned int msiof3_ss1_mux[] = {
  1425. MSIOF3_SS1_MARK,
  1426. };
  1427. static const unsigned int msiof3_ss2_pins[] = {
  1428. /* MSIOF3_SS2 */
  1429. RCAR_GP_PIN(0, 19),
  1430. };
  1431. static const unsigned int msiof3_ss2_mux[] = {
  1432. MSIOF3_SS2_MARK,
  1433. };
  1434. static const unsigned int msiof3_txd_pins[] = {
  1435. /* MSIOF3_TXD */
  1436. RCAR_GP_PIN(0, 17),
  1437. };
  1438. static const unsigned int msiof3_txd_mux[] = {
  1439. MSIOF3_TXD_MARK,
  1440. };
  1441. static const unsigned int msiof3_rxd_pins[] = {
  1442. /* MSIOF3_RXD */
  1443. RCAR_GP_PIN(0, 16),
  1444. };
  1445. static const unsigned int msiof3_rxd_mux[] = {
  1446. MSIOF3_RXD_MARK,
  1447. };
  1448. /* - PWM0 ------------------------------------------------------------------- */
  1449. static const unsigned int pwm0_a_pins[] = {
  1450. /* PWM0 */
  1451. RCAR_GP_PIN(0, 15),
  1452. };
  1453. static const unsigned int pwm0_a_mux[] = {
  1454. PWM0_A_MARK,
  1455. };
  1456. static const unsigned int pwm0_b_pins[] = {
  1457. /* PWM0 */
  1458. RCAR_GP_PIN(1, 21),
  1459. };
  1460. static const unsigned int pwm0_b_mux[] = {
  1461. PWM0_B_MARK,
  1462. };
  1463. /* - PWM1 ------------------------------------------------------------------- */
  1464. static const unsigned int pwm1_a_pins[] = {
  1465. /* PWM1 */
  1466. RCAR_GP_PIN(2, 13),
  1467. };
  1468. static const unsigned int pwm1_a_mux[] = {
  1469. PWM1_A_MARK,
  1470. };
  1471. static const unsigned int pwm1_b_pins[] = {
  1472. /* PWM1 */
  1473. RCAR_GP_PIN(1, 22),
  1474. };
  1475. static const unsigned int pwm1_b_mux[] = {
  1476. PWM1_B_MARK,
  1477. };
  1478. /* - PWM2 ------------------------------------------------------------------- */
  1479. static const unsigned int pwm2_a_pins[] = {
  1480. /* PWM2 */
  1481. RCAR_GP_PIN(2, 14),
  1482. };
  1483. static const unsigned int pwm2_a_mux[] = {
  1484. PWM2_A_MARK,
  1485. };
  1486. static const unsigned int pwm2_b_pins[] = {
  1487. /* PWM2 */
  1488. RCAR_GP_PIN(1, 23),
  1489. };
  1490. static const unsigned int pwm2_b_mux[] = {
  1491. PWM2_B_MARK,
  1492. };
  1493. /* - PWM3 ------------------------------------------------------------------- */
  1494. static const unsigned int pwm3_a_pins[] = {
  1495. /* PWM3 */
  1496. RCAR_GP_PIN(2, 15),
  1497. };
  1498. static const unsigned int pwm3_a_mux[] = {
  1499. PWM3_A_MARK,
  1500. };
  1501. static const unsigned int pwm3_b_pins[] = {
  1502. /* PWM3 */
  1503. RCAR_GP_PIN(1, 24),
  1504. };
  1505. static const unsigned int pwm3_b_mux[] = {
  1506. PWM3_B_MARK,
  1507. };
  1508. /* - PWM4 ------------------------------------------------------------------- */
  1509. static const unsigned int pwm4_a_pins[] = {
  1510. /* PWM4 */
  1511. RCAR_GP_PIN(2, 16),
  1512. };
  1513. static const unsigned int pwm4_a_mux[] = {
  1514. PWM4_A_MARK,
  1515. };
  1516. static const unsigned int pwm4_b_pins[] = {
  1517. /* PWM4 */
  1518. RCAR_GP_PIN(1, 25),
  1519. };
  1520. static const unsigned int pwm4_b_mux[] = {
  1521. PWM4_B_MARK,
  1522. };
  1523. /* - QSPI0 ------------------------------------------------------------------ */
  1524. static const unsigned int qspi0_ctrl_pins[] = {
  1525. /* SPCLK, SSL */
  1526. RCAR_GP_PIN(5, 0), RCAR_GP_PIN(5, 5),
  1527. };
  1528. static const unsigned int qspi0_ctrl_mux[] = {
  1529. QSPI0_SPCLK_MARK, QSPI0_SSL_MARK,
  1530. };
  1531. /* - QSPI1 ------------------------------------------------------------------ */
  1532. static const unsigned int qspi1_ctrl_pins[] = {
  1533. /* SPCLK, SSL */
  1534. RCAR_GP_PIN(5, 6), RCAR_GP_PIN(5, 11),
  1535. };
  1536. static const unsigned int qspi1_ctrl_mux[] = {
  1537. QSPI1_SPCLK_MARK, QSPI1_SSL_MARK,
  1538. };
  1539. /* - RPC -------------------------------------------------------------------- */
  1540. static const unsigned int rpc_clk_pins[] = {
  1541. /* Octal-SPI flash: C/SCLK */
  1542. /* HyperFlash: CK, CK# */
  1543. RCAR_GP_PIN(5, 0), RCAR_GP_PIN(5, 6),
  1544. };
  1545. static const unsigned int rpc_clk_mux[] = {
  1546. QSPI0_SPCLK_MARK, QSPI1_SPCLK_MARK,
  1547. };
  1548. static const unsigned int rpc_ctrl_pins[] = {
  1549. /* Octal-SPI flash: S#/CS, DQS */
  1550. /* HyperFlash: CS#, RDS */
  1551. RCAR_GP_PIN(5, 5), RCAR_GP_PIN(5, 11),
  1552. };
  1553. static const unsigned int rpc_ctrl_mux[] = {
  1554. QSPI0_SSL_MARK, QSPI1_SSL_MARK,
  1555. };
  1556. static const unsigned int rpc_data_pins[] = {
  1557. /* DQ[0:7] */
  1558. RCAR_GP_PIN(5, 1), RCAR_GP_PIN(5, 2),
  1559. RCAR_GP_PIN(5, 3), RCAR_GP_PIN(5, 4),
  1560. RCAR_GP_PIN(5, 7), RCAR_GP_PIN(5, 8),
  1561. RCAR_GP_PIN(5, 9), RCAR_GP_PIN(5, 10),
  1562. };
  1563. static const unsigned int rpc_data_mux[] = {
  1564. QSPI0_MOSI_IO0_MARK, QSPI0_MISO_IO1_MARK,
  1565. QSPI0_IO2_MARK, QSPI0_IO3_MARK,
  1566. QSPI1_MOSI_IO0_MARK, QSPI1_MISO_IO1_MARK,
  1567. QSPI1_IO2_MARK, QSPI1_IO3_MARK,
  1568. };
  1569. static const unsigned int rpc_reset_pins[] = {
  1570. /* RPC_RESET# */
  1571. RCAR_GP_PIN(5, 12),
  1572. };
  1573. static const unsigned int rpc_reset_mux[] = {
  1574. RPC_RESET_N_MARK,
  1575. };
  1576. static const unsigned int rpc_int_pins[] = {
  1577. /* RPC_INT# */
  1578. RCAR_GP_PIN(5, 14),
  1579. };
  1580. static const unsigned int rpc_int_mux[] = {
  1581. RPC_INT_N_MARK,
  1582. };
  1583. static const unsigned int rpc_wp_pins[] = {
  1584. /* RPC_WP# */
  1585. RCAR_GP_PIN(5, 13),
  1586. };
  1587. static const unsigned int rpc_wp_mux[] = {
  1588. RPC_WP_N_MARK,
  1589. };
  1590. /* - SCIF0 ------------------------------------------------------------------ */
  1591. static const unsigned int scif0_data_pins[] = {
  1592. /* RX0, TX0 */
  1593. RCAR_GP_PIN(4, 4), RCAR_GP_PIN(4, 5),
  1594. };
  1595. static const unsigned int scif0_data_mux[] = {
  1596. RX0_MARK, TX0_MARK,
  1597. };
  1598. static const unsigned int scif0_clk_pins[] = {
  1599. /* SCK0 */
  1600. RCAR_GP_PIN(4, 1),
  1601. };
  1602. static const unsigned int scif0_clk_mux[] = {
  1603. SCK0_MARK,
  1604. };
  1605. static const unsigned int scif0_ctrl_pins[] = {
  1606. /* RTS0#, CTS0# */
  1607. RCAR_GP_PIN(4, 3), RCAR_GP_PIN(4, 2),
  1608. };
  1609. static const unsigned int scif0_ctrl_mux[] = {
  1610. RTS0_N_MARK, CTS0_N_MARK,
  1611. };
  1612. /* - SCIF1 ------------------------------------------------------------------ */
  1613. static const unsigned int scif1_data_a_pins[] = {
  1614. /* RX1, TX1 */
  1615. RCAR_GP_PIN(2, 8), RCAR_GP_PIN(2, 9),
  1616. };
  1617. static const unsigned int scif1_data_a_mux[] = {
  1618. RX1_A_MARK, TX1_A_MARK,
  1619. };
  1620. static const unsigned int scif1_clk_pins[] = {
  1621. /* SCK1 */
  1622. RCAR_GP_PIN(2, 5),
  1623. };
  1624. static const unsigned int scif1_clk_mux[] = {
  1625. SCK1_MARK,
  1626. };
  1627. static const unsigned int scif1_ctrl_pins[] = {
  1628. /* RTS1#, CTS1# */
  1629. RCAR_GP_PIN(2, 11), RCAR_GP_PIN(2, 10),
  1630. };
  1631. static const unsigned int scif1_ctrl_mux[] = {
  1632. RTS1_N_MARK, CTS1_N_MARK,
  1633. };
  1634. static const unsigned int scif1_data_b_pins[] = {
  1635. /* RX1, TX1 */
  1636. RCAR_GP_PIN(1, 24), RCAR_GP_PIN(1, 23),
  1637. };
  1638. static const unsigned int scif1_data_b_mux[] = {
  1639. RX1_B_MARK, TX1_B_MARK,
  1640. };
  1641. /* - SCIF3 ------------------------------------------------------------------ */
  1642. static const unsigned int scif3_data_pins[] = {
  1643. /* RX3, TX3 */
  1644. RCAR_GP_PIN(2, 1), RCAR_GP_PIN(2, 2),
  1645. };
  1646. static const unsigned int scif3_data_mux[] = {
  1647. RX3_MARK, TX3_MARK,
  1648. };
  1649. static const unsigned int scif3_clk_pins[] = {
  1650. /* SCK3 */
  1651. RCAR_GP_PIN(2, 0),
  1652. };
  1653. static const unsigned int scif3_clk_mux[] = {
  1654. SCK3_MARK,
  1655. };
  1656. static const unsigned int scif3_ctrl_pins[] = {
  1657. /* RTS3#, CTS3# */
  1658. RCAR_GP_PIN(2, 4), RCAR_GP_PIN(2, 3),
  1659. };
  1660. static const unsigned int scif3_ctrl_mux[] = {
  1661. RTS3_N_MARK, CTS3_N_MARK,
  1662. };
  1663. /* - SCIF4 ------------------------------------------------------------------ */
  1664. static const unsigned int scif4_data_pins[] = {
  1665. /* RX4, TX4 */
  1666. RCAR_GP_PIN(0, 1), RCAR_GP_PIN(0, 2),
  1667. };
  1668. static const unsigned int scif4_data_mux[] = {
  1669. RX4_MARK, TX4_MARK,
  1670. };
  1671. static const unsigned int scif4_clk_pins[] = {
  1672. /* SCK4 */
  1673. RCAR_GP_PIN(0, 0),
  1674. };
  1675. static const unsigned int scif4_clk_mux[] = {
  1676. SCK4_MARK,
  1677. };
  1678. static const unsigned int scif4_ctrl_pins[] = {
  1679. /* RTS4#, CTS4# */
  1680. RCAR_GP_PIN(0, 4), RCAR_GP_PIN(0, 3),
  1681. };
  1682. static const unsigned int scif4_ctrl_mux[] = {
  1683. RTS4_N_MARK, CTS4_N_MARK,
  1684. };
  1685. /* - SCIF Clock ------------------------------------------------------------- */
  1686. static const unsigned int scif_clk_a_pins[] = {
  1687. /* SCIF_CLK */
  1688. RCAR_GP_PIN(0, 10),
  1689. };
  1690. static const unsigned int scif_clk_a_mux[] = {
  1691. SCIF_CLK_A_MARK,
  1692. };
  1693. static const unsigned int scif_clk_b_pins[] = {
  1694. /* SCIF_CLK */
  1695. RCAR_GP_PIN(1, 25),
  1696. };
  1697. static const unsigned int scif_clk_b_mux[] = {
  1698. SCIF_CLK_B_MARK,
  1699. };
  1700. /* - TMU -------------------------------------------------------------------- */
  1701. static const unsigned int tmu_tclk1_a_pins[] = {
  1702. /* TCLK1 */
  1703. RCAR_GP_PIN(3, 13),
  1704. };
  1705. static const unsigned int tmu_tclk1_a_mux[] = {
  1706. TCLK1_A_MARK,
  1707. };
  1708. static const unsigned int tmu_tclk1_b_pins[] = {
  1709. /* TCLK1 */
  1710. RCAR_GP_PIN(1, 23),
  1711. };
  1712. static const unsigned int tmu_tclk1_b_mux[] = {
  1713. TCLK1_B_MARK,
  1714. };
  1715. static const unsigned int tmu_tclk2_a_pins[] = {
  1716. /* TCLK2 */
  1717. RCAR_GP_PIN(3, 14),
  1718. };
  1719. static const unsigned int tmu_tclk2_a_mux[] = {
  1720. TCLK2_A_MARK,
  1721. };
  1722. static const unsigned int tmu_tclk2_b_pins[] = {
  1723. /* TCLK2 */
  1724. RCAR_GP_PIN(1, 24),
  1725. };
  1726. static const unsigned int tmu_tclk2_b_mux[] = {
  1727. TCLK2_B_MARK,
  1728. };
  1729. /* - TPU ------------------------------------------------------------------- */
  1730. static const unsigned int tpu_to0_pins[] = {
  1731. /* TPU0TO0 */
  1732. RCAR_GP_PIN(1, 19),
  1733. };
  1734. static const unsigned int tpu_to0_mux[] = {
  1735. TPU0TO0_MARK,
  1736. };
  1737. static const unsigned int tpu_to1_pins[] = {
  1738. /* TPU0TO1 */
  1739. RCAR_GP_PIN(1, 20),
  1740. };
  1741. static const unsigned int tpu_to1_mux[] = {
  1742. TPU0TO1_MARK,
  1743. };
  1744. static const unsigned int tpu_to2_pins[] = {
  1745. /* TPU0TO2 */
  1746. RCAR_GP_PIN(4, 2),
  1747. };
  1748. static const unsigned int tpu_to2_mux[] = {
  1749. TPU0TO2_MARK,
  1750. };
  1751. static const unsigned int tpu_to3_pins[] = {
  1752. /* TPU0TO3 */
  1753. RCAR_GP_PIN(4, 3),
  1754. };
  1755. static const unsigned int tpu_to3_mux[] = {
  1756. TPU0TO3_MARK,
  1757. };
  1758. /* - VIN0 ------------------------------------------------------------------- */
  1759. static const unsigned int vin0_data_pins[] = {
  1760. RCAR_GP_PIN(2, 4), RCAR_GP_PIN(2, 5),
  1761. RCAR_GP_PIN(2, 6), RCAR_GP_PIN(2, 7),
  1762. RCAR_GP_PIN(2, 8), RCAR_GP_PIN(2, 9),
  1763. RCAR_GP_PIN(2, 10), RCAR_GP_PIN(2, 11),
  1764. RCAR_GP_PIN(2, 12), RCAR_GP_PIN(2, 13),
  1765. RCAR_GP_PIN(2, 14), RCAR_GP_PIN(2, 15),
  1766. RCAR_GP_PIN(2, 17), RCAR_GP_PIN(2, 18),
  1767. RCAR_GP_PIN(2, 19), RCAR_GP_PIN(2, 20),
  1768. RCAR_GP_PIN(2, 21), RCAR_GP_PIN(2, 22),
  1769. RCAR_GP_PIN(2, 23), RCAR_GP_PIN(2, 24),
  1770. RCAR_GP_PIN(2, 25), RCAR_GP_PIN(2, 26),
  1771. RCAR_GP_PIN(2, 27), RCAR_GP_PIN(2, 28),
  1772. };
  1773. static const unsigned int vin0_data_mux[] = {
  1774. VI0_DATA0_MARK, VI0_DATA1_MARK,
  1775. VI0_DATA2_MARK, VI0_DATA3_MARK,
  1776. VI0_DATA4_MARK, VI0_DATA5_MARK,
  1777. VI0_DATA6_MARK, VI0_DATA7_MARK,
  1778. VI0_DATA8_MARK, VI0_DATA9_MARK,
  1779. VI0_DATA10_MARK, VI0_DATA11_MARK,
  1780. VI0_DATA12_MARK, VI0_DATA13_MARK,
  1781. VI0_DATA14_MARK, VI0_DATA15_MARK,
  1782. VI0_DATA16_MARK, VI0_DATA17_MARK,
  1783. VI0_DATA18_MARK, VI0_DATA19_MARK,
  1784. VI0_DATA20_MARK, VI0_DATA21_MARK,
  1785. VI0_DATA22_MARK, VI0_DATA23_MARK,
  1786. };
  1787. static const unsigned int vin0_data18_pins[] = {
  1788. RCAR_GP_PIN(2, 6), RCAR_GP_PIN(2, 7),
  1789. RCAR_GP_PIN(2, 8), RCAR_GP_PIN(2, 9),
  1790. RCAR_GP_PIN(2, 10), RCAR_GP_PIN(2, 11),
  1791. RCAR_GP_PIN(2, 14), RCAR_GP_PIN(2, 15),
  1792. RCAR_GP_PIN(2, 17), RCAR_GP_PIN(2, 18),
  1793. RCAR_GP_PIN(2, 19), RCAR_GP_PIN(2, 20),
  1794. RCAR_GP_PIN(2, 23), RCAR_GP_PIN(2, 24),
  1795. RCAR_GP_PIN(2, 25), RCAR_GP_PIN(2, 26),
  1796. RCAR_GP_PIN(2, 27), RCAR_GP_PIN(2, 28),
  1797. };
  1798. static const unsigned int vin0_data18_mux[] = {
  1799. VI0_DATA2_MARK, VI0_DATA3_MARK,
  1800. VI0_DATA4_MARK, VI0_DATA5_MARK,
  1801. VI0_DATA6_MARK, VI0_DATA7_MARK,
  1802. VI0_DATA10_MARK, VI0_DATA11_MARK,
  1803. VI0_DATA12_MARK, VI0_DATA13_MARK,
  1804. VI0_DATA14_MARK, VI0_DATA15_MARK,
  1805. VI0_DATA18_MARK, VI0_DATA19_MARK,
  1806. VI0_DATA20_MARK, VI0_DATA21_MARK,
  1807. VI0_DATA22_MARK, VI0_DATA23_MARK,
  1808. };
  1809. static const unsigned int vin0_sync_pins[] = {
  1810. /* VI0_VSYNC#, VI0_HSYNC# */
  1811. RCAR_GP_PIN(2, 3), RCAR_GP_PIN(2, 2),
  1812. };
  1813. static const unsigned int vin0_sync_mux[] = {
  1814. VI0_VSYNC_N_MARK, VI0_HSYNC_N_MARK,
  1815. };
  1816. static const unsigned int vin0_field_pins[] = {
  1817. /* VI0_FIELD */
  1818. RCAR_GP_PIN(2, 16),
  1819. };
  1820. static const unsigned int vin0_field_mux[] = {
  1821. VI0_FIELD_MARK,
  1822. };
  1823. static const unsigned int vin0_clkenb_pins[] = {
  1824. /* VI0_CLKENB */
  1825. RCAR_GP_PIN(2, 1),
  1826. };
  1827. static const unsigned int vin0_clkenb_mux[] = {
  1828. VI0_CLKENB_MARK,
  1829. };
  1830. static const unsigned int vin0_clk_pins[] = {
  1831. /* VI0_CLK */
  1832. RCAR_GP_PIN(2, 0),
  1833. };
  1834. static const unsigned int vin0_clk_mux[] = {
  1835. VI0_CLK_MARK,
  1836. };
  1837. /* - VIN1 ------------------------------------------------------------------- */
  1838. static const unsigned int vin1_data_pins[] = {
  1839. RCAR_GP_PIN(3, 4), RCAR_GP_PIN(3, 5),
  1840. RCAR_GP_PIN(3, 6), RCAR_GP_PIN(3, 7),
  1841. RCAR_GP_PIN(3, 8), RCAR_GP_PIN(3, 9),
  1842. RCAR_GP_PIN(3, 10), RCAR_GP_PIN(3, 11),
  1843. RCAR_GP_PIN(3, 12), RCAR_GP_PIN(3, 13),
  1844. RCAR_GP_PIN(3, 14), RCAR_GP_PIN(3, 15),
  1845. };
  1846. static const unsigned int vin1_data_mux[] = {
  1847. VI1_DATA0_MARK, VI1_DATA1_MARK,
  1848. VI1_DATA2_MARK, VI1_DATA3_MARK,
  1849. VI1_DATA4_MARK, VI1_DATA5_MARK,
  1850. VI1_DATA6_MARK, VI1_DATA7_MARK,
  1851. VI1_DATA8_MARK, VI1_DATA9_MARK,
  1852. VI1_DATA10_MARK, VI1_DATA11_MARK,
  1853. };
  1854. static const unsigned int vin1_sync_pins[] = {
  1855. /* VI1_VSYNC#, VI1_HSYNC# */
  1856. RCAR_GP_PIN(3, 3), RCAR_GP_PIN(3, 2),
  1857. };
  1858. static const unsigned int vin1_sync_mux[] = {
  1859. VI1_VSYNC_N_MARK, VI1_HSYNC_N_MARK,
  1860. };
  1861. static const unsigned int vin1_field_pins[] = {
  1862. /* VI1_FIELD */
  1863. RCAR_GP_PIN(3, 16),
  1864. };
  1865. static const unsigned int vin1_field_mux[] = {
  1866. VI1_FIELD_MARK,
  1867. };
  1868. static const unsigned int vin1_clkenb_pins[] = {
  1869. /* VI1_CLKENB */
  1870. RCAR_GP_PIN(3, 1),
  1871. };
  1872. static const unsigned int vin1_clkenb_mux[] = {
  1873. VI1_CLKENB_MARK,
  1874. };
  1875. static const unsigned int vin1_clk_pins[] = {
  1876. /* VI1_CLK */
  1877. RCAR_GP_PIN(3, 0),
  1878. };
  1879. static const unsigned int vin1_clk_mux[] = {
  1880. VI1_CLK_MARK,
  1881. };
  1882. static const struct sh_pfc_pin_group pinmux_groups[] = {
  1883. SH_PFC_PIN_GROUP(avb_link),
  1884. SH_PFC_PIN_GROUP(avb_magic),
  1885. SH_PFC_PIN_GROUP(avb_phy_int),
  1886. SH_PFC_PIN_GROUP(avb_mdio),
  1887. SH_PFC_PIN_GROUP(avb_rgmii),
  1888. SH_PFC_PIN_GROUP(avb_txcrefclk),
  1889. SH_PFC_PIN_GROUP(avb_avtp_pps),
  1890. SH_PFC_PIN_GROUP(avb_avtp_capture),
  1891. SH_PFC_PIN_GROUP(avb_avtp_match),
  1892. SH_PFC_PIN_GROUP(canfd0_data_a),
  1893. SH_PFC_PIN_GROUP(canfd0_data_b),
  1894. SH_PFC_PIN_GROUP(canfd1_data),
  1895. SH_PFC_PIN_GROUP(canfd_clk_a),
  1896. SH_PFC_PIN_GROUP(canfd_clk_b),
  1897. SH_PFC_PIN_GROUP(du_rgb666),
  1898. SH_PFC_PIN_GROUP(du_rgb888),
  1899. SH_PFC_PIN_GROUP(du_clk_out),
  1900. SH_PFC_PIN_GROUP(du_sync),
  1901. SH_PFC_PIN_GROUP(du_oddf),
  1902. SH_PFC_PIN_GROUP(du_cde),
  1903. SH_PFC_PIN_GROUP(du_disp),
  1904. SH_PFC_PIN_GROUP(gether_link_a),
  1905. SH_PFC_PIN_GROUP(gether_phy_int_a),
  1906. SH_PFC_PIN_GROUP(gether_mdio_a),
  1907. SH_PFC_PIN_GROUP(gether_link_b),
  1908. SH_PFC_PIN_GROUP(gether_phy_int_b),
  1909. SH_PFC_PIN_GROUP(gether_mdio_b),
  1910. SH_PFC_PIN_GROUP(gether_magic),
  1911. SH_PFC_PIN_GROUP(gether_rgmii),
  1912. SH_PFC_PIN_GROUP(gether_txcrefclk),
  1913. SH_PFC_PIN_GROUP(gether_txcrefclk_mega),
  1914. SH_PFC_PIN_GROUP(gether_rmii),
  1915. SH_PFC_PIN_GROUP(hscif0_data_a),
  1916. SH_PFC_PIN_GROUP(hscif0_clk_a),
  1917. SH_PFC_PIN_GROUP(hscif0_ctrl_a),
  1918. SH_PFC_PIN_GROUP(hscif0_data_b),
  1919. SH_PFC_PIN_GROUP(hscif0_clk_b),
  1920. SH_PFC_PIN_GROUP(hscif0_ctrl_b),
  1921. SH_PFC_PIN_GROUP(hscif1_data),
  1922. SH_PFC_PIN_GROUP(hscif1_clk),
  1923. SH_PFC_PIN_GROUP(hscif1_ctrl),
  1924. SH_PFC_PIN_GROUP(hscif2_data),
  1925. SH_PFC_PIN_GROUP(hscif2_clk),
  1926. SH_PFC_PIN_GROUP(hscif2_ctrl),
  1927. SH_PFC_PIN_GROUP(hscif3_data),
  1928. SH_PFC_PIN_GROUP(hscif3_clk),
  1929. SH_PFC_PIN_GROUP(hscif3_ctrl),
  1930. SH_PFC_PIN_GROUP(i2c0),
  1931. SH_PFC_PIN_GROUP(i2c1),
  1932. SH_PFC_PIN_GROUP(i2c2),
  1933. SH_PFC_PIN_GROUP(i2c3),
  1934. SH_PFC_PIN_GROUP(i2c4),
  1935. SH_PFC_PIN_GROUP(i2c5),
  1936. SH_PFC_PIN_GROUP(intc_ex_irq0),
  1937. SH_PFC_PIN_GROUP(intc_ex_irq1),
  1938. SH_PFC_PIN_GROUP(intc_ex_irq2),
  1939. SH_PFC_PIN_GROUP(intc_ex_irq3),
  1940. SH_PFC_PIN_GROUP(intc_ex_irq4),
  1941. SH_PFC_PIN_GROUP(intc_ex_irq5),
  1942. BUS_DATA_PIN_GROUP(mmc_data, 1),
  1943. BUS_DATA_PIN_GROUP(mmc_data, 4),
  1944. BUS_DATA_PIN_GROUP(mmc_data, 8),
  1945. SH_PFC_PIN_GROUP(mmc_ctrl),
  1946. SH_PFC_PIN_GROUP(mmc_cd),
  1947. SH_PFC_PIN_GROUP(mmc_wp),
  1948. SH_PFC_PIN_GROUP(mmc_ds),
  1949. SH_PFC_PIN_GROUP(msiof0_clk),
  1950. SH_PFC_PIN_GROUP(msiof0_sync),
  1951. SH_PFC_PIN_GROUP(msiof0_ss1),
  1952. SH_PFC_PIN_GROUP(msiof0_ss2),
  1953. SH_PFC_PIN_GROUP(msiof0_txd),
  1954. SH_PFC_PIN_GROUP(msiof0_rxd),
  1955. SH_PFC_PIN_GROUP(msiof1_clk),
  1956. SH_PFC_PIN_GROUP(msiof1_sync),
  1957. SH_PFC_PIN_GROUP(msiof1_ss1),
  1958. SH_PFC_PIN_GROUP(msiof1_ss2),
  1959. SH_PFC_PIN_GROUP(msiof1_txd),
  1960. SH_PFC_PIN_GROUP(msiof1_rxd),
  1961. SH_PFC_PIN_GROUP(msiof2_clk),
  1962. SH_PFC_PIN_GROUP(msiof2_sync),
  1963. SH_PFC_PIN_GROUP(msiof2_ss1),
  1964. SH_PFC_PIN_GROUP(msiof2_ss2),
  1965. SH_PFC_PIN_GROUP(msiof2_txd),
  1966. SH_PFC_PIN_GROUP(msiof2_rxd),
  1967. SH_PFC_PIN_GROUP(msiof3_clk),
  1968. SH_PFC_PIN_GROUP(msiof3_sync),
  1969. SH_PFC_PIN_GROUP(msiof3_ss1),
  1970. SH_PFC_PIN_GROUP(msiof3_ss2),
  1971. SH_PFC_PIN_GROUP(msiof3_txd),
  1972. SH_PFC_PIN_GROUP(msiof3_rxd),
  1973. SH_PFC_PIN_GROUP(pwm0_a),
  1974. SH_PFC_PIN_GROUP(pwm0_b),
  1975. SH_PFC_PIN_GROUP(pwm1_a),
  1976. SH_PFC_PIN_GROUP(pwm1_b),
  1977. SH_PFC_PIN_GROUP(pwm2_a),
  1978. SH_PFC_PIN_GROUP(pwm2_b),
  1979. SH_PFC_PIN_GROUP(pwm3_a),
  1980. SH_PFC_PIN_GROUP(pwm3_b),
  1981. SH_PFC_PIN_GROUP(pwm4_a),
  1982. SH_PFC_PIN_GROUP(pwm4_b),
  1983. SH_PFC_PIN_GROUP(qspi0_ctrl),
  1984. SH_PFC_PIN_GROUP_SUBSET(qspi0_data2, rpc_data, 0, 2),
  1985. SH_PFC_PIN_GROUP_SUBSET(qspi0_data4, rpc_data, 0, 4),
  1986. SH_PFC_PIN_GROUP(qspi1_ctrl),
  1987. SH_PFC_PIN_GROUP_SUBSET(qspi1_data2, rpc_data, 4, 2),
  1988. SH_PFC_PIN_GROUP_SUBSET(qspi1_data4, rpc_data, 4, 4),
  1989. BUS_DATA_PIN_GROUP(rpc_clk, 1),
  1990. BUS_DATA_PIN_GROUP(rpc_clk, 2),
  1991. SH_PFC_PIN_GROUP(rpc_ctrl),
  1992. SH_PFC_PIN_GROUP(rpc_data),
  1993. SH_PFC_PIN_GROUP(rpc_reset),
  1994. SH_PFC_PIN_GROUP(rpc_int),
  1995. SH_PFC_PIN_GROUP(rpc_wp),
  1996. SH_PFC_PIN_GROUP(scif0_data),
  1997. SH_PFC_PIN_GROUP(scif0_clk),
  1998. SH_PFC_PIN_GROUP(scif0_ctrl),
  1999. SH_PFC_PIN_GROUP(scif1_data_a),
  2000. SH_PFC_PIN_GROUP(scif1_clk),
  2001. SH_PFC_PIN_GROUP(scif1_ctrl),
  2002. SH_PFC_PIN_GROUP(scif1_data_b),
  2003. SH_PFC_PIN_GROUP(scif3_data),
  2004. SH_PFC_PIN_GROUP(scif3_clk),
  2005. SH_PFC_PIN_GROUP(scif3_ctrl),
  2006. SH_PFC_PIN_GROUP(scif4_data),
  2007. SH_PFC_PIN_GROUP(scif4_clk),
  2008. SH_PFC_PIN_GROUP(scif4_ctrl),
  2009. SH_PFC_PIN_GROUP(scif_clk_a),
  2010. SH_PFC_PIN_GROUP(scif_clk_b),
  2011. SH_PFC_PIN_GROUP(tmu_tclk1_a),
  2012. SH_PFC_PIN_GROUP(tmu_tclk1_b),
  2013. SH_PFC_PIN_GROUP(tmu_tclk2_a),
  2014. SH_PFC_PIN_GROUP(tmu_tclk2_b),
  2015. SH_PFC_PIN_GROUP(tpu_to0),
  2016. SH_PFC_PIN_GROUP(tpu_to1),
  2017. SH_PFC_PIN_GROUP(tpu_to2),
  2018. SH_PFC_PIN_GROUP(tpu_to3),
  2019. BUS_DATA_PIN_GROUP(vin0_data, 8),
  2020. BUS_DATA_PIN_GROUP(vin0_data, 10),
  2021. BUS_DATA_PIN_GROUP(vin0_data, 12),
  2022. BUS_DATA_PIN_GROUP(vin0_data, 16),
  2023. SH_PFC_PIN_GROUP(vin0_data18),
  2024. BUS_DATA_PIN_GROUP(vin0_data, 20),
  2025. BUS_DATA_PIN_GROUP(vin0_data, 24),
  2026. SH_PFC_PIN_GROUP(vin0_sync),
  2027. SH_PFC_PIN_GROUP(vin0_field),
  2028. SH_PFC_PIN_GROUP(vin0_clkenb),
  2029. SH_PFC_PIN_GROUP(vin0_clk),
  2030. BUS_DATA_PIN_GROUP(vin1_data, 8),
  2031. BUS_DATA_PIN_GROUP(vin1_data, 10),
  2032. BUS_DATA_PIN_GROUP(vin1_data, 12),
  2033. SH_PFC_PIN_GROUP(vin1_sync),
  2034. SH_PFC_PIN_GROUP(vin1_field),
  2035. SH_PFC_PIN_GROUP(vin1_clkenb),
  2036. SH_PFC_PIN_GROUP(vin1_clk),
  2037. };
  2038. static const char * const avb_groups[] = {
  2039. "avb_link",
  2040. "avb_magic",
  2041. "avb_phy_int",
  2042. "avb_mdio",
  2043. "avb_rgmii",
  2044. "avb_txcrefclk",
  2045. "avb_avtp_pps",
  2046. "avb_avtp_capture",
  2047. "avb_avtp_match",
  2048. };
  2049. static const char * const canfd0_groups[] = {
  2050. "canfd0_data_a",
  2051. "canfd0_data_b",
  2052. };
  2053. static const char * const canfd1_groups[] = {
  2054. "canfd1_data",
  2055. };
  2056. static const char * const canfd_clk_groups[] = {
  2057. "canfd_clk_a",
  2058. "canfd_clk_b",
  2059. };
  2060. static const char * const du_groups[] = {
  2061. "du_rgb666",
  2062. "du_rgb888",
  2063. "du_clk_out",
  2064. "du_sync",
  2065. "du_oddf",
  2066. "du_cde",
  2067. "du_disp",
  2068. };
  2069. static const char * const gether_groups[] = {
  2070. "gether_link_a",
  2071. "gether_phy_int_a",
  2072. "gether_mdio_a",
  2073. "gether_link_b",
  2074. "gether_phy_int_b",
  2075. "gether_mdio_b",
  2076. "gether_magic",
  2077. "gether_rgmii",
  2078. "gether_txcrefclk",
  2079. "gether_txcrefclk_mega",
  2080. "gether_rmii",
  2081. };
  2082. static const char * const hscif0_groups[] = {
  2083. "hscif0_data_a",
  2084. "hscif0_clk_a",
  2085. "hscif0_ctrl_a",
  2086. "hscif0_data_b",
  2087. "hscif0_clk_b",
  2088. "hscif0_ctrl_b",
  2089. };
  2090. static const char * const hscif1_groups[] = {
  2091. "hscif1_data",
  2092. "hscif1_clk",
  2093. "hscif1_ctrl",
  2094. };
  2095. static const char * const hscif2_groups[] = {
  2096. "hscif2_data",
  2097. "hscif2_clk",
  2098. "hscif2_ctrl",
  2099. };
  2100. static const char * const hscif3_groups[] = {
  2101. "hscif3_data",
  2102. "hscif3_clk",
  2103. "hscif3_ctrl",
  2104. };
  2105. static const char * const i2c0_groups[] = {
  2106. "i2c0",
  2107. };
  2108. static const char * const i2c1_groups[] = {
  2109. "i2c1",
  2110. };
  2111. static const char * const i2c2_groups[] = {
  2112. "i2c2",
  2113. };
  2114. static const char * const i2c3_groups[] = {
  2115. "i2c3",
  2116. };
  2117. static const char * const i2c4_groups[] = {
  2118. "i2c4",
  2119. };
  2120. static const char * const i2c5_groups[] = {
  2121. "i2c5",
  2122. };
  2123. static const char * const intc_ex_groups[] = {
  2124. "intc_ex_irq0",
  2125. "intc_ex_irq1",
  2126. "intc_ex_irq2",
  2127. "intc_ex_irq3",
  2128. "intc_ex_irq4",
  2129. "intc_ex_irq5",
  2130. };
  2131. static const char * const mmc_groups[] = {
  2132. "mmc_data1",
  2133. "mmc_data4",
  2134. "mmc_data8",
  2135. "mmc_ctrl",
  2136. "mmc_cd",
  2137. "mmc_wp",
  2138. "mmc_ds",
  2139. };
  2140. static const char * const msiof0_groups[] = {
  2141. "msiof0_clk",
  2142. "msiof0_sync",
  2143. "msiof0_ss1",
  2144. "msiof0_ss2",
  2145. "msiof0_txd",
  2146. "msiof0_rxd",
  2147. };
  2148. static const char * const msiof1_groups[] = {
  2149. "msiof1_clk",
  2150. "msiof1_sync",
  2151. "msiof1_ss1",
  2152. "msiof1_ss2",
  2153. "msiof1_txd",
  2154. "msiof1_rxd",
  2155. };
  2156. static const char * const msiof2_groups[] = {
  2157. "msiof2_clk",
  2158. "msiof2_sync",
  2159. "msiof2_ss1",
  2160. "msiof2_ss2",
  2161. "msiof2_txd",
  2162. "msiof2_rxd",
  2163. };
  2164. static const char * const msiof3_groups[] = {
  2165. "msiof3_clk",
  2166. "msiof3_sync",
  2167. "msiof3_ss1",
  2168. "msiof3_ss2",
  2169. "msiof3_txd",
  2170. "msiof3_rxd",
  2171. };
  2172. static const char * const pwm0_groups[] = {
  2173. "pwm0_a",
  2174. "pwm0_b",
  2175. };
  2176. static const char * const pwm1_groups[] = {
  2177. "pwm1_a",
  2178. "pwm1_b",
  2179. };
  2180. static const char * const pwm2_groups[] = {
  2181. "pwm2_a",
  2182. "pwm2_b",
  2183. };
  2184. static const char * const pwm3_groups[] = {
  2185. "pwm3_a",
  2186. "pwm3_b",
  2187. };
  2188. static const char * const pwm4_groups[] = {
  2189. "pwm4_a",
  2190. "pwm4_b",
  2191. };
  2192. static const char * const qspi0_groups[] = {
  2193. "qspi0_ctrl",
  2194. "qspi0_data2",
  2195. "qspi0_data4",
  2196. };
  2197. static const char * const qspi1_groups[] = {
  2198. "qspi1_ctrl",
  2199. "qspi1_data2",
  2200. "qspi1_data4",
  2201. };
  2202. static const char * const rpc_groups[] = {
  2203. "rpc_clk1",
  2204. "rpc_clk2",
  2205. "rpc_ctrl",
  2206. "rpc_data",
  2207. "rpc_reset",
  2208. "rpc_int",
  2209. "rpc_wp",
  2210. };
  2211. static const char * const scif0_groups[] = {
  2212. "scif0_data",
  2213. "scif0_clk",
  2214. "scif0_ctrl",
  2215. };
  2216. static const char * const scif1_groups[] = {
  2217. "scif1_data_a",
  2218. "scif1_clk",
  2219. "scif1_ctrl",
  2220. "scif1_data_b",
  2221. };
  2222. static const char * const scif3_groups[] = {
  2223. "scif3_data",
  2224. "scif3_clk",
  2225. "scif3_ctrl",
  2226. };
  2227. static const char * const scif4_groups[] = {
  2228. "scif4_data",
  2229. "scif4_clk",
  2230. "scif4_ctrl",
  2231. };
  2232. static const char * const scif_clk_groups[] = {
  2233. "scif_clk_a",
  2234. "scif_clk_b",
  2235. };
  2236. static const char * const tmu_groups[] = {
  2237. "tmu_tclk1_a",
  2238. "tmu_tclk1_b",
  2239. "tmu_tclk2_a",
  2240. "tmu_tclk2_b",
  2241. };
  2242. static const char * const tpu_groups[] = {
  2243. "tpu_to0",
  2244. "tpu_to1",
  2245. "tpu_to2",
  2246. "tpu_to3",
  2247. };
  2248. static const char * const vin0_groups[] = {
  2249. "vin0_data8",
  2250. "vin0_data10",
  2251. "vin0_data12",
  2252. "vin0_data16",
  2253. "vin0_data18",
  2254. "vin0_data20",
  2255. "vin0_data24",
  2256. "vin0_sync",
  2257. "vin0_field",
  2258. "vin0_clkenb",
  2259. "vin0_clk",
  2260. };
  2261. static const char * const vin1_groups[] = {
  2262. "vin1_data8",
  2263. "vin1_data10",
  2264. "vin1_data12",
  2265. "vin1_sync",
  2266. "vin1_field",
  2267. "vin1_clkenb",
  2268. "vin1_clk",
  2269. };
  2270. static const struct sh_pfc_function pinmux_functions[] = {
  2271. SH_PFC_FUNCTION(avb),
  2272. SH_PFC_FUNCTION(canfd0),
  2273. SH_PFC_FUNCTION(canfd1),
  2274. SH_PFC_FUNCTION(canfd_clk),
  2275. SH_PFC_FUNCTION(du),
  2276. SH_PFC_FUNCTION(gether),
  2277. SH_PFC_FUNCTION(hscif0),
  2278. SH_PFC_FUNCTION(hscif1),
  2279. SH_PFC_FUNCTION(hscif2),
  2280. SH_PFC_FUNCTION(hscif3),
  2281. SH_PFC_FUNCTION(i2c0),
  2282. SH_PFC_FUNCTION(i2c1),
  2283. SH_PFC_FUNCTION(i2c2),
  2284. SH_PFC_FUNCTION(i2c3),
  2285. SH_PFC_FUNCTION(i2c4),
  2286. SH_PFC_FUNCTION(i2c5),
  2287. SH_PFC_FUNCTION(intc_ex),
  2288. SH_PFC_FUNCTION(mmc),
  2289. SH_PFC_FUNCTION(msiof0),
  2290. SH_PFC_FUNCTION(msiof1),
  2291. SH_PFC_FUNCTION(msiof2),
  2292. SH_PFC_FUNCTION(msiof3),
  2293. SH_PFC_FUNCTION(pwm0),
  2294. SH_PFC_FUNCTION(pwm1),
  2295. SH_PFC_FUNCTION(pwm2),
  2296. SH_PFC_FUNCTION(pwm3),
  2297. SH_PFC_FUNCTION(pwm4),
  2298. SH_PFC_FUNCTION(qspi0),
  2299. SH_PFC_FUNCTION(qspi1),
  2300. SH_PFC_FUNCTION(rpc),
  2301. SH_PFC_FUNCTION(scif0),
  2302. SH_PFC_FUNCTION(scif1),
  2303. SH_PFC_FUNCTION(scif3),
  2304. SH_PFC_FUNCTION(scif4),
  2305. SH_PFC_FUNCTION(scif_clk),
  2306. SH_PFC_FUNCTION(tmu),
  2307. SH_PFC_FUNCTION(tpu),
  2308. SH_PFC_FUNCTION(vin0),
  2309. SH_PFC_FUNCTION(vin1),
  2310. };
  2311. static const struct pinmux_cfg_reg pinmux_config_regs[] = {
  2312. #define F_(x, y) FN_##y
  2313. #define FM(x) FN_##x
  2314. { PINMUX_CFG_REG_VAR("GPSR0", 0xe6060100, 32,
  2315. GROUP(-10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  2316. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1),
  2317. GROUP(
  2318. /* GP0_31_22 RESERVED */
  2319. GP_0_21_FN, GPSR0_21,
  2320. GP_0_20_FN, GPSR0_20,
  2321. GP_0_19_FN, GPSR0_19,
  2322. GP_0_18_FN, GPSR0_18,
  2323. GP_0_17_FN, GPSR0_17,
  2324. GP_0_16_FN, GPSR0_16,
  2325. GP_0_15_FN, GPSR0_15,
  2326. GP_0_14_FN, GPSR0_14,
  2327. GP_0_13_FN, GPSR0_13,
  2328. GP_0_12_FN, GPSR0_12,
  2329. GP_0_11_FN, GPSR0_11,
  2330. GP_0_10_FN, GPSR0_10,
  2331. GP_0_9_FN, GPSR0_9,
  2332. GP_0_8_FN, GPSR0_8,
  2333. GP_0_7_FN, GPSR0_7,
  2334. GP_0_6_FN, GPSR0_6,
  2335. GP_0_5_FN, GPSR0_5,
  2336. GP_0_4_FN, GPSR0_4,
  2337. GP_0_3_FN, GPSR0_3,
  2338. GP_0_2_FN, GPSR0_2,
  2339. GP_0_1_FN, GPSR0_1,
  2340. GP_0_0_FN, GPSR0_0, ))
  2341. },
  2342. { PINMUX_CFG_REG("GPSR1", 0xe6060104, 32, 1, GROUP(
  2343. 0, 0,
  2344. 0, 0,
  2345. 0, 0,
  2346. 0, 0,
  2347. GP_1_27_FN, GPSR1_27,
  2348. GP_1_26_FN, GPSR1_26,
  2349. GP_1_25_FN, GPSR1_25,
  2350. GP_1_24_FN, GPSR1_24,
  2351. GP_1_23_FN, GPSR1_23,
  2352. GP_1_22_FN, GPSR1_22,
  2353. GP_1_21_FN, GPSR1_21,
  2354. GP_1_20_FN, GPSR1_20,
  2355. GP_1_19_FN, GPSR1_19,
  2356. GP_1_18_FN, GPSR1_18,
  2357. GP_1_17_FN, GPSR1_17,
  2358. GP_1_16_FN, GPSR1_16,
  2359. GP_1_15_FN, GPSR1_15,
  2360. GP_1_14_FN, GPSR1_14,
  2361. GP_1_13_FN, GPSR1_13,
  2362. GP_1_12_FN, GPSR1_12,
  2363. GP_1_11_FN, GPSR1_11,
  2364. GP_1_10_FN, GPSR1_10,
  2365. GP_1_9_FN, GPSR1_9,
  2366. GP_1_8_FN, GPSR1_8,
  2367. GP_1_7_FN, GPSR1_7,
  2368. GP_1_6_FN, GPSR1_6,
  2369. GP_1_5_FN, GPSR1_5,
  2370. GP_1_4_FN, GPSR1_4,
  2371. GP_1_3_FN, GPSR1_3,
  2372. GP_1_2_FN, GPSR1_2,
  2373. GP_1_1_FN, GPSR1_1,
  2374. GP_1_0_FN, GPSR1_0, ))
  2375. },
  2376. { PINMUX_CFG_REG("GPSR2", 0xe6060108, 32, 1, GROUP(
  2377. 0, 0,
  2378. 0, 0,
  2379. GP_2_29_FN, GPSR2_29,
  2380. GP_2_28_FN, GPSR2_28,
  2381. GP_2_27_FN, GPSR2_27,
  2382. GP_2_26_FN, GPSR2_26,
  2383. GP_2_25_FN, GPSR2_25,
  2384. GP_2_24_FN, GPSR2_24,
  2385. GP_2_23_FN, GPSR2_23,
  2386. GP_2_22_FN, GPSR2_22,
  2387. GP_2_21_FN, GPSR2_21,
  2388. GP_2_20_FN, GPSR2_20,
  2389. GP_2_19_FN, GPSR2_19,
  2390. GP_2_18_FN, GPSR2_18,
  2391. GP_2_17_FN, GPSR2_17,
  2392. GP_2_16_FN, GPSR2_16,
  2393. GP_2_15_FN, GPSR2_15,
  2394. GP_2_14_FN, GPSR2_14,
  2395. GP_2_13_FN, GPSR2_13,
  2396. GP_2_12_FN, GPSR2_12,
  2397. GP_2_11_FN, GPSR2_11,
  2398. GP_2_10_FN, GPSR2_10,
  2399. GP_2_9_FN, GPSR2_9,
  2400. GP_2_8_FN, GPSR2_8,
  2401. GP_2_7_FN, GPSR2_7,
  2402. GP_2_6_FN, GPSR2_6,
  2403. GP_2_5_FN, GPSR2_5,
  2404. GP_2_4_FN, GPSR2_4,
  2405. GP_2_3_FN, GPSR2_3,
  2406. GP_2_2_FN, GPSR2_2,
  2407. GP_2_1_FN, GPSR2_1,
  2408. GP_2_0_FN, GPSR2_0, ))
  2409. },
  2410. { PINMUX_CFG_REG_VAR("GPSR3", 0xe606010c, 32,
  2411. GROUP(-15, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  2412. 1, 1, 1, 1, 1, 1),
  2413. GROUP(
  2414. /* GP3_31_17 RESERVED */
  2415. GP_3_16_FN, GPSR3_16,
  2416. GP_3_15_FN, GPSR3_15,
  2417. GP_3_14_FN, GPSR3_14,
  2418. GP_3_13_FN, GPSR3_13,
  2419. GP_3_12_FN, GPSR3_12,
  2420. GP_3_11_FN, GPSR3_11,
  2421. GP_3_10_FN, GPSR3_10,
  2422. GP_3_9_FN, GPSR3_9,
  2423. GP_3_8_FN, GPSR3_8,
  2424. GP_3_7_FN, GPSR3_7,
  2425. GP_3_6_FN, GPSR3_6,
  2426. GP_3_5_FN, GPSR3_5,
  2427. GP_3_4_FN, GPSR3_4,
  2428. GP_3_3_FN, GPSR3_3,
  2429. GP_3_2_FN, GPSR3_2,
  2430. GP_3_1_FN, GPSR3_1,
  2431. GP_3_0_FN, GPSR3_0, ))
  2432. },
  2433. { PINMUX_CFG_REG_VAR("GPSR4", 0xe6060110, 32,
  2434. GROUP(-7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  2435. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  2436. 1, 1),
  2437. GROUP(
  2438. /* GP4_31_25 RESERVED */
  2439. GP_4_24_FN, GPSR4_24,
  2440. GP_4_23_FN, GPSR4_23,
  2441. GP_4_22_FN, GPSR4_22,
  2442. GP_4_21_FN, GPSR4_21,
  2443. GP_4_20_FN, GPSR4_20,
  2444. GP_4_19_FN, GPSR4_19,
  2445. GP_4_18_FN, GPSR4_18,
  2446. GP_4_17_FN, GPSR4_17,
  2447. GP_4_16_FN, GPSR4_16,
  2448. GP_4_15_FN, GPSR4_15,
  2449. GP_4_14_FN, GPSR4_14,
  2450. GP_4_13_FN, GPSR4_13,
  2451. GP_4_12_FN, GPSR4_12,
  2452. GP_4_11_FN, GPSR4_11,
  2453. GP_4_10_FN, GPSR4_10,
  2454. GP_4_9_FN, GPSR4_9,
  2455. GP_4_8_FN, GPSR4_8,
  2456. GP_4_7_FN, GPSR4_7,
  2457. GP_4_6_FN, GPSR4_6,
  2458. GP_4_5_FN, GPSR4_5,
  2459. GP_4_4_FN, GPSR4_4,
  2460. GP_4_3_FN, GPSR4_3,
  2461. GP_4_2_FN, GPSR4_2,
  2462. GP_4_1_FN, GPSR4_1,
  2463. GP_4_0_FN, GPSR4_0, ))
  2464. },
  2465. { PINMUX_CFG_REG_VAR("GPSR5", 0xe6060114, 32,
  2466. GROUP(-17, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  2467. 1, 1, 1, 1),
  2468. GROUP(
  2469. /* GP5_31_15 RESERVED */
  2470. GP_5_14_FN, GPSR5_14,
  2471. GP_5_13_FN, GPSR5_13,
  2472. GP_5_12_FN, GPSR5_12,
  2473. GP_5_11_FN, GPSR5_11,
  2474. GP_5_10_FN, GPSR5_10,
  2475. GP_5_9_FN, GPSR5_9,
  2476. GP_5_8_FN, GPSR5_8,
  2477. GP_5_7_FN, GPSR5_7,
  2478. GP_5_6_FN, GPSR5_6,
  2479. GP_5_5_FN, GPSR5_5,
  2480. GP_5_4_FN, GPSR5_4,
  2481. GP_5_3_FN, GPSR5_3,
  2482. GP_5_2_FN, GPSR5_2,
  2483. GP_5_1_FN, GPSR5_1,
  2484. GP_5_0_FN, GPSR5_0, ))
  2485. },
  2486. #undef F_
  2487. #undef FM
  2488. #define F_(x, y) x,
  2489. #define FM(x) FN_##x,
  2490. { PINMUX_CFG_REG("IPSR0", 0xe6060200, 32, 4, GROUP(
  2491. IP0_31_28
  2492. IP0_27_24
  2493. IP0_23_20
  2494. IP0_19_16
  2495. IP0_15_12
  2496. IP0_11_8
  2497. IP0_7_4
  2498. IP0_3_0 ))
  2499. },
  2500. { PINMUX_CFG_REG("IPSR1", 0xe6060204, 32, 4, GROUP(
  2501. IP1_31_28
  2502. IP1_27_24
  2503. IP1_23_20
  2504. IP1_19_16
  2505. IP1_15_12
  2506. IP1_11_8
  2507. IP1_7_4
  2508. IP1_3_0 ))
  2509. },
  2510. { PINMUX_CFG_REG("IPSR2", 0xe6060208, 32, 4, GROUP(
  2511. IP2_31_28
  2512. IP2_27_24
  2513. IP2_23_20
  2514. IP2_19_16
  2515. IP2_15_12
  2516. IP2_11_8
  2517. IP2_7_4
  2518. IP2_3_0 ))
  2519. },
  2520. { PINMUX_CFG_REG("IPSR3", 0xe606020c, 32, 4, GROUP(
  2521. IP3_31_28
  2522. IP3_27_24
  2523. IP3_23_20
  2524. IP3_19_16
  2525. IP3_15_12
  2526. IP3_11_8
  2527. IP3_7_4
  2528. IP3_3_0 ))
  2529. },
  2530. { PINMUX_CFG_REG("IPSR4", 0xe6060210, 32, 4, GROUP(
  2531. IP4_31_28
  2532. IP4_27_24
  2533. IP4_23_20
  2534. IP4_19_16
  2535. IP4_15_12
  2536. IP4_11_8
  2537. IP4_7_4
  2538. IP4_3_0 ))
  2539. },
  2540. { PINMUX_CFG_REG("IPSR5", 0xe6060214, 32, 4, GROUP(
  2541. IP5_31_28
  2542. IP5_27_24
  2543. IP5_23_20
  2544. IP5_19_16
  2545. IP5_15_12
  2546. IP5_11_8
  2547. IP5_7_4
  2548. IP5_3_0 ))
  2549. },
  2550. { PINMUX_CFG_REG("IPSR6", 0xe6060218, 32, 4, GROUP(
  2551. IP6_31_28
  2552. IP6_27_24
  2553. IP6_23_20
  2554. IP6_19_16
  2555. IP6_15_12
  2556. IP6_11_8
  2557. IP6_7_4
  2558. IP6_3_0 ))
  2559. },
  2560. { PINMUX_CFG_REG("IPSR7", 0xe606021c, 32, 4, GROUP(
  2561. IP7_31_28
  2562. IP7_27_24
  2563. IP7_23_20
  2564. IP7_19_16
  2565. IP7_15_12
  2566. IP7_11_8
  2567. IP7_7_4
  2568. IP7_3_0 ))
  2569. },
  2570. { PINMUX_CFG_REG("IPSR8", 0xe6060220, 32, 4, GROUP(
  2571. IP8_31_28
  2572. IP8_27_24
  2573. IP8_23_20
  2574. IP8_19_16
  2575. IP8_15_12
  2576. IP8_11_8
  2577. IP8_7_4
  2578. IP8_3_0 ))
  2579. },
  2580. { PINMUX_CFG_REG("IPSR9", 0xe6060224, 32, 4, GROUP(
  2581. IP9_31_28
  2582. IP9_27_24
  2583. IP9_23_20
  2584. IP9_19_16
  2585. IP9_15_12
  2586. IP9_11_8
  2587. IP9_7_4
  2588. IP9_3_0 ))
  2589. },
  2590. { PINMUX_CFG_REG_VAR("IPSR10", 0xe6060228, 32,
  2591. GROUP(-12, 4, 4, 4, 4, 4),
  2592. GROUP(
  2593. /* IP10_31_20 RESERVED */
  2594. IP10_19_16
  2595. IP10_15_12
  2596. IP10_11_8
  2597. IP10_7_4
  2598. IP10_3_0 ))
  2599. },
  2600. #undef F_
  2601. #undef FM
  2602. #define F_(x, y) x,
  2603. #define FM(x) FN_##x,
  2604. { PINMUX_CFG_REG_VAR("MOD_SEL0", 0xe6060500, 32,
  2605. GROUP(-20, 1, 1, 1, 1, 1, 1, 1, 1, -1, 1, 1, 1),
  2606. GROUP(
  2607. /* RESERVED 31-12 */
  2608. MOD_SEL0_11
  2609. MOD_SEL0_10
  2610. MOD_SEL0_9
  2611. MOD_SEL0_8
  2612. MOD_SEL0_7
  2613. MOD_SEL0_6
  2614. MOD_SEL0_5
  2615. MOD_SEL0_4
  2616. /* RESERVED 3 */
  2617. MOD_SEL0_2
  2618. MOD_SEL0_1
  2619. MOD_SEL0_0 ))
  2620. },
  2621. { },
  2622. };
  2623. enum ioctrl_regs {
  2624. POCCTRL0,
  2625. POCCTRL1,
  2626. POCCTRL2,
  2627. POCCTRL3,
  2628. TDSELCTRL,
  2629. };
  2630. static const struct pinmux_ioctrl_reg pinmux_ioctrl_regs[] = {
  2631. [POCCTRL0] = { 0xe6060380, },
  2632. [POCCTRL1] = { 0xe6060384, },
  2633. [POCCTRL2] = { 0xe6060388, },
  2634. [POCCTRL3] = { 0xe606038c, },
  2635. [TDSELCTRL] = { 0xe60603c0, },
  2636. { /* sentinel */ },
  2637. };
  2638. static int r8a77980_pin_to_pocctrl(unsigned int pin, u32 *pocctrl)
  2639. {
  2640. int bit = pin & 0x1f;
  2641. *pocctrl = pinmux_ioctrl_regs[POCCTRL0].reg;
  2642. if (pin >= RCAR_GP_PIN(0, 0) && pin <= RCAR_GP_PIN(0, 21))
  2643. return bit;
  2644. else if (pin >= RCAR_GP_PIN(2, 0) && pin <= RCAR_GP_PIN(2, 9))
  2645. return bit + 22;
  2646. *pocctrl = pinmux_ioctrl_regs[POCCTRL1].reg;
  2647. if (pin >= RCAR_GP_PIN(2, 10) && pin <= RCAR_GP_PIN(2, 16))
  2648. return bit - 10;
  2649. if ((pin >= RCAR_GP_PIN(2, 17) && pin <= RCAR_GP_PIN(2, 24)) ||
  2650. (pin >= RCAR_GP_PIN(3, 0) && pin <= RCAR_GP_PIN(3, 16)))
  2651. return bit + 7;
  2652. *pocctrl = pinmux_ioctrl_regs[POCCTRL2].reg;
  2653. if (pin >= RCAR_GP_PIN(2, 25) && pin <= RCAR_GP_PIN(2, 29))
  2654. return pin - 25;
  2655. return -EINVAL;
  2656. }
  2657. static const struct pinmux_bias_reg pinmux_bias_regs[] = {
  2658. { PINMUX_BIAS_REG("PUEN0", 0xe6060400, "PUD0", 0xe6060440) {
  2659. [ 0] = RCAR_GP_PIN(0, 0), /* DU_DR2 */
  2660. [ 1] = RCAR_GP_PIN(0, 1), /* DU_DR3 */
  2661. [ 2] = RCAR_GP_PIN(0, 2), /* DU_DR4 */
  2662. [ 3] = RCAR_GP_PIN(0, 3), /* DU_DR5 */
  2663. [ 4] = RCAR_GP_PIN(0, 4), /* DU_DR6 */
  2664. [ 5] = RCAR_GP_PIN(0, 5), /* DU_DR7 */
  2665. [ 6] = RCAR_GP_PIN(0, 6), /* DU_DG2 */
  2666. [ 7] = RCAR_GP_PIN(0, 7), /* DU_DG3 */
  2667. [ 8] = RCAR_GP_PIN(0, 8), /* DU_DG4 */
  2668. [ 9] = RCAR_GP_PIN(0, 9), /* DU_DG5 */
  2669. [10] = RCAR_GP_PIN(0, 10), /* DU_DG6 */
  2670. [11] = RCAR_GP_PIN(0, 11), /* DU_DG7 */
  2671. [12] = RCAR_GP_PIN(0, 12), /* DU_DB2 */
  2672. [13] = RCAR_GP_PIN(0, 13), /* DU_DB3 */
  2673. [14] = RCAR_GP_PIN(0, 14), /* DU_DB4 */
  2674. [15] = RCAR_GP_PIN(0, 15), /* DU_DB5 */
  2675. [16] = RCAR_GP_PIN(0, 16), /* DU_DB6 */
  2676. [17] = RCAR_GP_PIN(0, 17), /* DU_DB7 */
  2677. [18] = RCAR_GP_PIN(0, 18), /* DU_DOTCLKOUT */
  2678. [19] = RCAR_GP_PIN(0, 19), /* DU_EXHSYNC/DU_HSYNC */
  2679. [20] = RCAR_GP_PIN(0, 20), /* DU_EXVSYNC/DU_VSYNC */
  2680. [21] = RCAR_GP_PIN(0, 21), /* DU_EXODDF/DU_ODDF/DISP/CDE */
  2681. [22] = SH_PFC_PIN_NONE,
  2682. [23] = SH_PFC_PIN_NONE,
  2683. [24] = PIN_DU_DOTCLKIN, /* DU_DOTCLKIN */
  2684. [25] = SH_PFC_PIN_NONE,
  2685. [26] = PIN_PRESETOUT_N, /* PRESETOUT# */
  2686. [27] = SH_PFC_PIN_NONE,
  2687. [28] = SH_PFC_PIN_NONE,
  2688. [29] = SH_PFC_PIN_NONE,
  2689. [30] = PIN_EXTALR, /* EXTALR */
  2690. [31] = PIN_FSCLKST_N, /* FSCLKST# */
  2691. } },
  2692. { PINMUX_BIAS_REG("PUEN1", 0xe6060404, "PUD1", 0xe6060444) {
  2693. [ 0] = PIN_FSCLKST, /* FSCLKST */
  2694. [ 1] = SH_PFC_PIN_NONE,
  2695. [ 2] = RCAR_GP_PIN(1, 0), /* IRQ0 */
  2696. [ 3] = PIN_DCUTRST_N, /* DCUTRST# */
  2697. [ 4] = PIN_DCUTCK_LPDCLK, /* DCUTCK_LPDCLK */
  2698. [ 5] = PIN_DCUTMS, /* DCUTMS */
  2699. [ 6] = PIN_DCUTDI_LPDI, /* DCUTDI_LPDI */
  2700. [ 7] = SH_PFC_PIN_NONE,
  2701. [ 8] = RCAR_GP_PIN(2, 0), /* VI0_CLK */
  2702. [ 9] = RCAR_GP_PIN(2, 1), /* VI0_CLKENB */
  2703. [10] = RCAR_GP_PIN(2, 2), /* VI0_HSYNC# */
  2704. [11] = RCAR_GP_PIN(2, 3), /* VI0_VSYNC# */
  2705. [12] = RCAR_GP_PIN(2, 4), /* VI0_DATA0 */
  2706. [13] = RCAR_GP_PIN(2, 5), /* VI0_DATA1 */
  2707. [14] = RCAR_GP_PIN(2, 6), /* VI0_DATA2 */
  2708. [15] = RCAR_GP_PIN(2, 7), /* VI0_DATA3 */
  2709. [16] = RCAR_GP_PIN(2, 8), /* VI0_DATA4 */
  2710. [17] = RCAR_GP_PIN(2, 9), /* VI0_DATA5 */
  2711. [18] = RCAR_GP_PIN(2, 10), /* VI0_DATA6 */
  2712. [19] = RCAR_GP_PIN(2, 11), /* VI0_DATA7 */
  2713. [20] = RCAR_GP_PIN(2, 12), /* VI0_DATA8 */
  2714. [21] = RCAR_GP_PIN(2, 13), /* VI0_DATA9 */
  2715. [22] = RCAR_GP_PIN(2, 14), /* VI0_DATA10 */
  2716. [23] = RCAR_GP_PIN(2, 15), /* VI0_DATA11 */
  2717. [24] = RCAR_GP_PIN(2, 16), /* VI0_FIELD */
  2718. [25] = RCAR_GP_PIN(3, 0), /* VI1_CLK */
  2719. [26] = RCAR_GP_PIN(3, 1), /* VI1_CLKENB */
  2720. [27] = RCAR_GP_PIN(3, 2), /* VI1_HSYNC# */
  2721. [28] = RCAR_GP_PIN(3, 3), /* VI1_VSYNC# */
  2722. [29] = RCAR_GP_PIN(3, 4), /* VI1_DATA0 */
  2723. [30] = RCAR_GP_PIN(3, 5), /* VI1_DATA1 */
  2724. [31] = RCAR_GP_PIN(3, 6), /* VI1_DATA2 */
  2725. } },
  2726. { PINMUX_BIAS_REG("PUEN2", 0xe6060408, "PUD2", 0xe6060448) {
  2727. [ 0] = RCAR_GP_PIN(3, 7), /* VI1_DATA3 */
  2728. [ 1] = RCAR_GP_PIN(3, 8), /* VI1_DATA4 */
  2729. [ 2] = RCAR_GP_PIN(3, 9), /* VI1_DATA5 */
  2730. [ 3] = RCAR_GP_PIN(3, 10), /* VI1_DATA6 */
  2731. [ 4] = RCAR_GP_PIN(3, 11), /* VI1_DATA7 */
  2732. [ 5] = RCAR_GP_PIN(3, 12), /* VI1_DATA8 */
  2733. [ 6] = RCAR_GP_PIN(3, 13), /* VI1_DATA9 */
  2734. [ 7] = RCAR_GP_PIN(3, 14), /* VI1_DATA10 */
  2735. [ 8] = RCAR_GP_PIN(3, 15), /* VI1_DATA11 */
  2736. [ 9] = RCAR_GP_PIN(3, 16), /* VI1_FIELD */
  2737. [10] = RCAR_GP_PIN(4, 0), /* SCL0 */
  2738. [11] = RCAR_GP_PIN(4, 1), /* SDA0 */
  2739. [12] = RCAR_GP_PIN(4, 2), /* SCL1 */
  2740. [13] = RCAR_GP_PIN(4, 3), /* SDA1 */
  2741. [14] = RCAR_GP_PIN(4, 4), /* SCL2 */
  2742. [15] = RCAR_GP_PIN(4, 5), /* SDA2 */
  2743. [16] = RCAR_GP_PIN(1, 1), /* AVB_RX_CTL */
  2744. [17] = RCAR_GP_PIN(1, 2), /* AVB_RXC */
  2745. [18] = RCAR_GP_PIN(1, 3), /* AVB_RD0 */
  2746. [19] = RCAR_GP_PIN(1, 4), /* AVB_RD1 */
  2747. [20] = RCAR_GP_PIN(1, 5), /* AVB_RD2 */
  2748. [21] = RCAR_GP_PIN(1, 6), /* AVB_RD3 */
  2749. [22] = RCAR_GP_PIN(1, 7), /* AVB_TX_CTL */
  2750. [23] = RCAR_GP_PIN(1, 8), /* AVB_TXC */
  2751. [24] = RCAR_GP_PIN(1, 9), /* AVB_TD0 */
  2752. [25] = RCAR_GP_PIN(1, 10), /* AVB_TD1 */
  2753. [26] = RCAR_GP_PIN(1, 11), /* AVB_TD2 */
  2754. [27] = RCAR_GP_PIN(1, 12), /* AVB_TD3 */
  2755. [28] = RCAR_GP_PIN(1, 13), /* AVB_TXCREFCLK */
  2756. [29] = RCAR_GP_PIN(1, 14), /* AVB_MDIO */
  2757. [30] = RCAR_GP_PIN(1, 15), /* AVB_MDC */
  2758. [31] = RCAR_GP_PIN(1, 16), /* AVB_MAGIC */
  2759. } },
  2760. { PINMUX_BIAS_REG("PUEN3", 0xe606040c, "PUD3", 0xe606044c) {
  2761. [ 0] = RCAR_GP_PIN(1, 17), /* AVB_PHY_INT */
  2762. [ 1] = RCAR_GP_PIN(1, 18), /* AVB_LINK */
  2763. [ 2] = RCAR_GP_PIN(1, 19), /* AVB_AVTP_MATCH */
  2764. [ 3] = RCAR_GP_PIN(1, 20), /* AVTP_CAPTURE */
  2765. [ 4] = RCAR_GP_PIN(4, 6), /* GETHER_RX_CTL */
  2766. [ 5] = RCAR_GP_PIN(4, 7), /* GETHER_RXC */
  2767. [ 6] = RCAR_GP_PIN(4, 8), /* GETHER_RD0 */
  2768. [ 7] = RCAR_GP_PIN(4, 9), /* GETHER_RD1 */
  2769. [ 8] = RCAR_GP_PIN(4, 10), /* GETHER_RD2 */
  2770. [ 9] = RCAR_GP_PIN(4, 11), /* GETHER_RD3 */
  2771. [10] = RCAR_GP_PIN(4, 12), /* GETHER_TX_CTL */
  2772. [11] = RCAR_GP_PIN(4, 13), /* GETHER_TXC */
  2773. [12] = RCAR_GP_PIN(4, 14), /* GETHER_TD0 */
  2774. [13] = RCAR_GP_PIN(4, 15), /* GETHER_TD1 */
  2775. [14] = RCAR_GP_PIN(4, 16), /* GETHER_TD2 */
  2776. [15] = RCAR_GP_PIN(4, 17), /* GETHER_TD3 */
  2777. [16] = RCAR_GP_PIN(4, 18), /* GETHER_TXCREFCLK */
  2778. [17] = RCAR_GP_PIN(4, 19), /* GETHER_TXCREFCLK_MEGA */
  2779. [18] = RCAR_GP_PIN(4, 20), /* GETHER_MDIO_A */
  2780. [19] = RCAR_GP_PIN(4, 21), /* GETHER_MDC_A */
  2781. [20] = RCAR_GP_PIN(4, 22), /* GETHER_MAGIC */
  2782. [21] = RCAR_GP_PIN(4, 23), /* GETHER_PHY_INT_A */
  2783. [22] = RCAR_GP_PIN(4, 24), /* GETHER_LINK_A */
  2784. [23] = RCAR_GP_PIN(1, 21), /* CANFD0_TX_A */
  2785. [24] = RCAR_GP_PIN(1, 22), /* CANFD0_RX_A */
  2786. [25] = RCAR_GP_PIN(1, 23), /* CANFD1_TX */
  2787. [26] = RCAR_GP_PIN(1, 24), /* CANFD1_RX */
  2788. [27] = RCAR_GP_PIN(1, 25), /* CAN_CLK_A */
  2789. [28] = RCAR_GP_PIN(5, 0), /* QSPI0_SPCLK */
  2790. [29] = RCAR_GP_PIN(5, 1), /* QSPI0_MOSI_IO0 */
  2791. [30] = RCAR_GP_PIN(5, 2), /* QSPI0_MISO_IO1 */
  2792. [31] = RCAR_GP_PIN(5, 3), /* QSPI0_IO2 */
  2793. } },
  2794. { PINMUX_BIAS_REG("PUEN4", 0xe6060410, "PUD4", 0xe6060450) {
  2795. [ 0] = RCAR_GP_PIN(5, 4), /* QSPI0_IO3 */
  2796. [ 1] = RCAR_GP_PIN(5, 5), /* QSPI0_SSL */
  2797. [ 2] = RCAR_GP_PIN(5, 6), /* QSPI1_SPCLK */
  2798. [ 3] = RCAR_GP_PIN(5, 7), /* QSPI1_MOSI_IO0 */
  2799. [ 4] = RCAR_GP_PIN(5, 8), /* QSPI1_MISO_IO1 */
  2800. [ 5] = RCAR_GP_PIN(5, 9), /* QSPI1_IO2 */
  2801. [ 6] = RCAR_GP_PIN(5, 10), /* QSPI1_IO3 */
  2802. [ 7] = RCAR_GP_PIN(5, 11), /* QSPI1_SSL */
  2803. [ 8] = RCAR_GP_PIN(5, 12), /* RPC_RESET# */
  2804. [ 9] = RCAR_GP_PIN(5, 13), /* RPC_WP# */
  2805. [10] = RCAR_GP_PIN(5, 14), /* RPC_INT# */
  2806. [11] = RCAR_GP_PIN(1, 26), /* DIGRF_CLKIN */
  2807. [12] = RCAR_GP_PIN(1, 27), /* DIGRF_CLKOUT */
  2808. [13] = RCAR_GP_PIN(2, 17), /* IRQ4 */
  2809. [14] = RCAR_GP_PIN(2, 18), /* IRQ5 */
  2810. [15] = RCAR_GP_PIN(2, 25), /* SCL3 */
  2811. [16] = RCAR_GP_PIN(2, 26), /* SDA3 */
  2812. [17] = RCAR_GP_PIN(2, 19), /* MSIOF0_RXD */
  2813. [18] = RCAR_GP_PIN(2, 20), /* MSIOF0_TXD */
  2814. [19] = RCAR_GP_PIN(2, 21), /* MSIOF0_SCK */
  2815. [20] = RCAR_GP_PIN(2, 22), /* MSIOF0_SYNC */
  2816. [21] = RCAR_GP_PIN(2, 23), /* MSIOF0_SS1 */
  2817. [22] = RCAR_GP_PIN(2, 24), /* MSIOF0_SS2 */
  2818. [23] = RCAR_GP_PIN(2, 27), /* FSO_CFE_0# */
  2819. [24] = RCAR_GP_PIN(2, 28), /* FSO_CFE_1# */
  2820. [25] = RCAR_GP_PIN(2, 29), /* FSO_TOE# */
  2821. [26] = SH_PFC_PIN_NONE,
  2822. [27] = SH_PFC_PIN_NONE,
  2823. [28] = SH_PFC_PIN_NONE,
  2824. [29] = SH_PFC_PIN_NONE,
  2825. [30] = SH_PFC_PIN_NONE,
  2826. [31] = SH_PFC_PIN_NONE,
  2827. } },
  2828. { /* sentinel */ }
  2829. };
  2830. static const struct sh_pfc_soc_operations r8a77980_pfc_ops = {
  2831. .pin_to_pocctrl = r8a77980_pin_to_pocctrl,
  2832. .get_bias = rcar_pinmux_get_bias,
  2833. .set_bias = rcar_pinmux_set_bias,
  2834. };
  2835. const struct sh_pfc_soc_info r8a77980_pinmux_info = {
  2836. .name = "r8a77980_pfc",
  2837. .ops = &r8a77980_pfc_ops,
  2838. .unlock_reg = 0xe6060000, /* PMMR */
  2839. .function = { PINMUX_FUNCTION_BEGIN, PINMUX_FUNCTION_END },
  2840. .pins = pinmux_pins,
  2841. .nr_pins = ARRAY_SIZE(pinmux_pins),
  2842. .groups = pinmux_groups,
  2843. .nr_groups = ARRAY_SIZE(pinmux_groups),
  2844. .functions = pinmux_functions,
  2845. .nr_functions = ARRAY_SIZE(pinmux_functions),
  2846. .cfg_regs = pinmux_config_regs,
  2847. .bias_regs = pinmux_bias_regs,
  2848. .ioctrl_regs = pinmux_ioctrl_regs,
  2849. .pinmux_data = pinmux_data,
  2850. .pinmux_data_size = ARRAY_SIZE(pinmux_data),
  2851. };