pfc-r8a7740.c 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813
  1. /*
  2. * R8A7740 processor support
  3. *
  4. * Copyright (C) 2011 Renesas Solutions Corp.
  5. * Copyright (C) 2011 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; version 2 of the
  10. * License.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <linux/io.h>
  22. #include <linux/kernel.h>
  23. #include <linux/pinctrl/pinconf-generic.h>
  24. #include <mach/r8a7740.h>
  25. #include <mach/irqs.h>
  26. #include "core.h"
  27. #include "sh_pfc.h"
  28. #define CPU_ALL_PORT(fn, pfx, sfx) \
  29. PORT_10(fn, pfx, sfx), PORT_90(fn, pfx, sfx), \
  30. PORT_10(fn, pfx##10, sfx), PORT_90(fn, pfx##1, sfx), \
  31. PORT_10(fn, pfx##20, sfx), \
  32. PORT_1(fn, pfx##210, sfx), PORT_1(fn, pfx##211, sfx)
  33. #undef _GPIO_PORT
  34. #define _GPIO_PORT(gpio, sfx) \
  35. [gpio] = { \
  36. .name = __stringify(PORT##gpio), \
  37. .enum_id = PORT##gpio##_DATA, \
  38. }
  39. #define IRQC_PIN_MUX(irq, pin) \
  40. static const unsigned int intc_irq##irq##_pins[] = { \
  41. pin, \
  42. }; \
  43. static const unsigned int intc_irq##irq##_mux[] = { \
  44. IRQ##irq##_MARK, \
  45. }
  46. #define IRQC_PINS_MUX(irq, idx, pin) \
  47. static const unsigned int intc_irq##irq##_##idx##_pins[] = { \
  48. pin, \
  49. }; \
  50. static const unsigned int intc_irq##irq##_##idx##_mux[] = { \
  51. IRQ##irq##_PORT##pin##_MARK, \
  52. }
  53. enum {
  54. PINMUX_RESERVED = 0,
  55. /* PORT0_DATA -> PORT211_DATA */
  56. PINMUX_DATA_BEGIN,
  57. PORT_ALL(DATA),
  58. PINMUX_DATA_END,
  59. /* PORT0_IN -> PORT211_IN */
  60. PINMUX_INPUT_BEGIN,
  61. PORT_ALL(IN),
  62. PINMUX_INPUT_END,
  63. /* PORT0_OUT -> PORT211_OUT */
  64. PINMUX_OUTPUT_BEGIN,
  65. PORT_ALL(OUT),
  66. PINMUX_OUTPUT_END,
  67. PINMUX_FUNCTION_BEGIN,
  68. PORT_ALL(FN_IN), /* PORT0_FN_IN -> PORT211_FN_IN */
  69. PORT_ALL(FN_OUT), /* PORT0_FN_OUT -> PORT211_FN_OUT */
  70. PORT_ALL(FN0), /* PORT0_FN0 -> PORT211_FN0 */
  71. PORT_ALL(FN1), /* PORT0_FN1 -> PORT211_FN1 */
  72. PORT_ALL(FN2), /* PORT0_FN2 -> PORT211_FN2 */
  73. PORT_ALL(FN3), /* PORT0_FN3 -> PORT211_FN3 */
  74. PORT_ALL(FN4), /* PORT0_FN4 -> PORT211_FN4 */
  75. PORT_ALL(FN5), /* PORT0_FN5 -> PORT211_FN5 */
  76. PORT_ALL(FN6), /* PORT0_FN6 -> PORT211_FN6 */
  77. PORT_ALL(FN7), /* PORT0_FN7 -> PORT211_FN7 */
  78. MSEL1CR_31_0, MSEL1CR_31_1,
  79. MSEL1CR_30_0, MSEL1CR_30_1,
  80. MSEL1CR_29_0, MSEL1CR_29_1,
  81. MSEL1CR_28_0, MSEL1CR_28_1,
  82. MSEL1CR_27_0, MSEL1CR_27_1,
  83. MSEL1CR_26_0, MSEL1CR_26_1,
  84. MSEL1CR_16_0, MSEL1CR_16_1,
  85. MSEL1CR_15_0, MSEL1CR_15_1,
  86. MSEL1CR_14_0, MSEL1CR_14_1,
  87. MSEL1CR_13_0, MSEL1CR_13_1,
  88. MSEL1CR_12_0, MSEL1CR_12_1,
  89. MSEL1CR_9_0, MSEL1CR_9_1,
  90. MSEL1CR_7_0, MSEL1CR_7_1,
  91. MSEL1CR_6_0, MSEL1CR_6_1,
  92. MSEL1CR_5_0, MSEL1CR_5_1,
  93. MSEL1CR_4_0, MSEL1CR_4_1,
  94. MSEL1CR_3_0, MSEL1CR_3_1,
  95. MSEL1CR_2_0, MSEL1CR_2_1,
  96. MSEL1CR_0_0, MSEL1CR_0_1,
  97. MSEL3CR_15_0, MSEL3CR_15_1, /* Trace / Debug ? */
  98. MSEL3CR_6_0, MSEL3CR_6_1,
  99. MSEL4CR_19_0, MSEL4CR_19_1,
  100. MSEL4CR_18_0, MSEL4CR_18_1,
  101. MSEL4CR_15_0, MSEL4CR_15_1,
  102. MSEL4CR_10_0, MSEL4CR_10_1,
  103. MSEL4CR_6_0, MSEL4CR_6_1,
  104. MSEL4CR_4_0, MSEL4CR_4_1,
  105. MSEL4CR_1_0, MSEL4CR_1_1,
  106. MSEL5CR_31_0, MSEL5CR_31_1, /* irq/fiq output */
  107. MSEL5CR_30_0, MSEL5CR_30_1,
  108. MSEL5CR_29_0, MSEL5CR_29_1,
  109. MSEL5CR_27_0, MSEL5CR_27_1,
  110. MSEL5CR_25_0, MSEL5CR_25_1,
  111. MSEL5CR_23_0, MSEL5CR_23_1,
  112. MSEL5CR_21_0, MSEL5CR_21_1,
  113. MSEL5CR_19_0, MSEL5CR_19_1,
  114. MSEL5CR_17_0, MSEL5CR_17_1,
  115. MSEL5CR_15_0, MSEL5CR_15_1,
  116. MSEL5CR_14_0, MSEL5CR_14_1,
  117. MSEL5CR_13_0, MSEL5CR_13_1,
  118. MSEL5CR_12_0, MSEL5CR_12_1,
  119. MSEL5CR_11_0, MSEL5CR_11_1,
  120. MSEL5CR_10_0, MSEL5CR_10_1,
  121. MSEL5CR_8_0, MSEL5CR_8_1,
  122. MSEL5CR_7_0, MSEL5CR_7_1,
  123. MSEL5CR_6_0, MSEL5CR_6_1,
  124. MSEL5CR_5_0, MSEL5CR_5_1,
  125. MSEL5CR_4_0, MSEL5CR_4_1,
  126. MSEL5CR_3_0, MSEL5CR_3_1,
  127. MSEL5CR_2_0, MSEL5CR_2_1,
  128. MSEL5CR_0_0, MSEL5CR_0_1,
  129. PINMUX_FUNCTION_END,
  130. PINMUX_MARK_BEGIN,
  131. /* IRQ */
  132. IRQ0_PORT2_MARK, IRQ0_PORT13_MARK,
  133. IRQ1_MARK,
  134. IRQ2_PORT11_MARK, IRQ2_PORT12_MARK,
  135. IRQ3_PORT10_MARK, IRQ3_PORT14_MARK,
  136. IRQ4_PORT15_MARK, IRQ4_PORT172_MARK,
  137. IRQ5_PORT0_MARK, IRQ5_PORT1_MARK,
  138. IRQ6_PORT121_MARK, IRQ6_PORT173_MARK,
  139. IRQ7_PORT120_MARK, IRQ7_PORT209_MARK,
  140. IRQ8_MARK,
  141. IRQ9_PORT118_MARK, IRQ9_PORT210_MARK,
  142. IRQ10_MARK,
  143. IRQ11_MARK,
  144. IRQ12_PORT42_MARK, IRQ12_PORT97_MARK,
  145. IRQ13_PORT64_MARK, IRQ13_PORT98_MARK,
  146. IRQ14_PORT63_MARK, IRQ14_PORT99_MARK,
  147. IRQ15_PORT62_MARK, IRQ15_PORT100_MARK,
  148. IRQ16_PORT68_MARK, IRQ16_PORT211_MARK,
  149. IRQ17_MARK,
  150. IRQ18_MARK,
  151. IRQ19_MARK,
  152. IRQ20_MARK,
  153. IRQ21_MARK,
  154. IRQ22_MARK,
  155. IRQ23_MARK,
  156. IRQ24_MARK,
  157. IRQ25_MARK,
  158. IRQ26_PORT58_MARK, IRQ26_PORT81_MARK,
  159. IRQ27_PORT57_MARK, IRQ27_PORT168_MARK,
  160. IRQ28_PORT56_MARK, IRQ28_PORT169_MARK,
  161. IRQ29_PORT50_MARK, IRQ29_PORT170_MARK,
  162. IRQ30_PORT49_MARK, IRQ30_PORT171_MARK,
  163. IRQ31_PORT41_MARK, IRQ31_PORT167_MARK,
  164. /* Function */
  165. /* DBGT */
  166. DBGMDT2_MARK, DBGMDT1_MARK, DBGMDT0_MARK,
  167. DBGMD10_MARK, DBGMD11_MARK, DBGMD20_MARK,
  168. DBGMD21_MARK,
  169. /* FSI-A */
  170. FSIAISLD_PORT0_MARK, /* FSIAISLD Port 0/5 */
  171. FSIAISLD_PORT5_MARK,
  172. FSIASPDIF_PORT9_MARK, /* FSIASPDIF Port 9/18 */
  173. FSIASPDIF_PORT18_MARK,
  174. FSIAOSLD1_MARK, FSIAOSLD2_MARK, FSIAOLR_MARK,
  175. FSIAOBT_MARK, FSIAOSLD_MARK, FSIAOMC_MARK,
  176. FSIACK_MARK, FSIAILR_MARK, FSIAIBT_MARK,
  177. /* FSI-B */
  178. FSIBCK_MARK,
  179. /* FMSI */
  180. FMSISLD_PORT1_MARK, /* FMSISLD Port 1/6 */
  181. FMSISLD_PORT6_MARK,
  182. FMSIILR_MARK, FMSIIBT_MARK, FMSIOLR_MARK, FMSIOBT_MARK,
  183. FMSICK_MARK, FMSOILR_MARK, FMSOIBT_MARK, FMSOOLR_MARK,
  184. FMSOOBT_MARK, FMSOSLD_MARK, FMSOCK_MARK,
  185. /* SCIFA0 */
  186. SCIFA0_SCK_MARK, SCIFA0_CTS_MARK, SCIFA0_RTS_MARK,
  187. SCIFA0_RXD_MARK, SCIFA0_TXD_MARK,
  188. /* SCIFA1 */
  189. SCIFA1_CTS_MARK, SCIFA1_SCK_MARK, SCIFA1_RXD_MARK,
  190. SCIFA1_TXD_MARK, SCIFA1_RTS_MARK,
  191. /* SCIFA2 */
  192. SCIFA2_SCK_PORT22_MARK, /* SCIFA2_SCK Port 22/199 */
  193. SCIFA2_SCK_PORT199_MARK,
  194. SCIFA2_RXD_MARK, SCIFA2_TXD_MARK,
  195. SCIFA2_CTS_MARK, SCIFA2_RTS_MARK,
  196. /* SCIFA3 */
  197. SCIFA3_RTS_PORT105_MARK, /* MSEL5CR_8_0 */
  198. SCIFA3_SCK_PORT116_MARK,
  199. SCIFA3_CTS_PORT117_MARK,
  200. SCIFA3_RXD_PORT174_MARK,
  201. SCIFA3_TXD_PORT175_MARK,
  202. SCIFA3_RTS_PORT161_MARK, /* MSEL5CR_8_1 */
  203. SCIFA3_SCK_PORT158_MARK,
  204. SCIFA3_CTS_PORT162_MARK,
  205. SCIFA3_RXD_PORT159_MARK,
  206. SCIFA3_TXD_PORT160_MARK,
  207. /* SCIFA4 */
  208. SCIFA4_RXD_PORT12_MARK, /* MSEL5CR[12:11] = 00 */
  209. SCIFA4_TXD_PORT13_MARK,
  210. SCIFA4_RXD_PORT204_MARK, /* MSEL5CR[12:11] = 01 */
  211. SCIFA4_TXD_PORT203_MARK,
  212. SCIFA4_RXD_PORT94_MARK, /* MSEL5CR[12:11] = 10 */
  213. SCIFA4_TXD_PORT93_MARK,
  214. SCIFA4_SCK_PORT21_MARK, /* SCIFA4_SCK Port 21/205 */
  215. SCIFA4_SCK_PORT205_MARK,
  216. /* SCIFA5 */
  217. SCIFA5_TXD_PORT20_MARK, /* MSEL5CR[15:14] = 00 */
  218. SCIFA5_RXD_PORT10_MARK,
  219. SCIFA5_RXD_PORT207_MARK, /* MSEL5CR[15:14] = 01 */
  220. SCIFA5_TXD_PORT208_MARK,
  221. SCIFA5_TXD_PORT91_MARK, /* MSEL5CR[15:14] = 10 */
  222. SCIFA5_RXD_PORT92_MARK,
  223. SCIFA5_SCK_PORT23_MARK, /* SCIFA5_SCK Port 23/206 */
  224. SCIFA5_SCK_PORT206_MARK,
  225. /* SCIFA6 */
  226. SCIFA6_SCK_MARK, SCIFA6_RXD_MARK, SCIFA6_TXD_MARK,
  227. /* SCIFA7 */
  228. SCIFA7_TXD_MARK, SCIFA7_RXD_MARK,
  229. /* SCIFAB */
  230. SCIFB_SCK_PORT190_MARK, /* MSEL5CR_17_0 */
  231. SCIFB_RXD_PORT191_MARK,
  232. SCIFB_TXD_PORT192_MARK,
  233. SCIFB_RTS_PORT186_MARK,
  234. SCIFB_CTS_PORT187_MARK,
  235. SCIFB_SCK_PORT2_MARK, /* MSEL5CR_17_1 */
  236. SCIFB_RXD_PORT3_MARK,
  237. SCIFB_TXD_PORT4_MARK,
  238. SCIFB_RTS_PORT172_MARK,
  239. SCIFB_CTS_PORT173_MARK,
  240. /* LCD0 */
  241. LCD0_D0_MARK, LCD0_D1_MARK, LCD0_D2_MARK, LCD0_D3_MARK,
  242. LCD0_D4_MARK, LCD0_D5_MARK, LCD0_D6_MARK, LCD0_D7_MARK,
  243. LCD0_D8_MARK, LCD0_D9_MARK, LCD0_D10_MARK, LCD0_D11_MARK,
  244. LCD0_D12_MARK, LCD0_D13_MARK, LCD0_D14_MARK, LCD0_D15_MARK,
  245. LCD0_D16_MARK, LCD0_D17_MARK,
  246. LCD0_DON_MARK, LCD0_VCPWC_MARK, LCD0_VEPWC_MARK,
  247. LCD0_DCK_MARK, LCD0_VSYN_MARK, /* for RGB */
  248. LCD0_HSYN_MARK, LCD0_DISP_MARK, /* for RGB */
  249. LCD0_WR_MARK, LCD0_RD_MARK, /* for SYS */
  250. LCD0_CS_MARK, LCD0_RS_MARK, /* for SYS */
  251. LCD0_D21_PORT158_MARK, LCD0_D23_PORT159_MARK, /* MSEL5CR_6_1 */
  252. LCD0_D22_PORT160_MARK, LCD0_D20_PORT161_MARK,
  253. LCD0_D19_PORT162_MARK, LCD0_D18_PORT163_MARK,
  254. LCD0_LCLK_PORT165_MARK,
  255. LCD0_D18_PORT40_MARK, LCD0_D22_PORT0_MARK, /* MSEL5CR_6_0 */
  256. LCD0_D23_PORT1_MARK, LCD0_D21_PORT2_MARK,
  257. LCD0_D20_PORT3_MARK, LCD0_D19_PORT4_MARK,
  258. LCD0_LCLK_PORT102_MARK,
  259. /* LCD1 */
  260. LCD1_D0_MARK, LCD1_D1_MARK, LCD1_D2_MARK, LCD1_D3_MARK,
  261. LCD1_D4_MARK, LCD1_D5_MARK, LCD1_D6_MARK, LCD1_D7_MARK,
  262. LCD1_D8_MARK, LCD1_D9_MARK, LCD1_D10_MARK, LCD1_D11_MARK,
  263. LCD1_D12_MARK, LCD1_D13_MARK, LCD1_D14_MARK, LCD1_D15_MARK,
  264. LCD1_D16_MARK, LCD1_D17_MARK, LCD1_D18_MARK, LCD1_D19_MARK,
  265. LCD1_D20_MARK, LCD1_D21_MARK, LCD1_D22_MARK, LCD1_D23_MARK,
  266. LCD1_DON_MARK, LCD1_VCPWC_MARK,
  267. LCD1_LCLK_MARK, LCD1_VEPWC_MARK,
  268. LCD1_DCK_MARK, LCD1_VSYN_MARK, /* for RGB */
  269. LCD1_HSYN_MARK, LCD1_DISP_MARK, /* for RGB */
  270. LCD1_RS_MARK, LCD1_CS_MARK, /* for SYS */
  271. LCD1_RD_MARK, LCD1_WR_MARK, /* for SYS */
  272. /* RSPI */
  273. RSPI_SSL0_A_MARK, RSPI_SSL1_A_MARK, RSPI_SSL2_A_MARK,
  274. RSPI_SSL3_A_MARK, RSPI_CK_A_MARK, RSPI_MOSI_A_MARK,
  275. RSPI_MISO_A_MARK,
  276. /* VIO CKO */
  277. VIO_CKO1_MARK, /* needs fixup */
  278. VIO_CKO2_MARK,
  279. VIO_CKO_1_MARK,
  280. VIO_CKO_MARK,
  281. /* VIO0 */
  282. VIO0_D0_MARK, VIO0_D1_MARK, VIO0_D2_MARK, VIO0_D3_MARK,
  283. VIO0_D4_MARK, VIO0_D5_MARK, VIO0_D6_MARK, VIO0_D7_MARK,
  284. VIO0_D8_MARK, VIO0_D9_MARK, VIO0_D10_MARK, VIO0_D11_MARK,
  285. VIO0_D12_MARK, VIO0_VD_MARK, VIO0_HD_MARK, VIO0_CLK_MARK,
  286. VIO0_FIELD_MARK,
  287. VIO0_D13_PORT26_MARK, /* MSEL5CR_27_0 */
  288. VIO0_D14_PORT25_MARK,
  289. VIO0_D15_PORT24_MARK,
  290. VIO0_D13_PORT22_MARK, /* MSEL5CR_27_1 */
  291. VIO0_D14_PORT95_MARK,
  292. VIO0_D15_PORT96_MARK,
  293. /* VIO1 */
  294. VIO1_D0_MARK, VIO1_D1_MARK, VIO1_D2_MARK, VIO1_D3_MARK,
  295. VIO1_D4_MARK, VIO1_D5_MARK, VIO1_D6_MARK, VIO1_D7_MARK,
  296. VIO1_VD_MARK, VIO1_HD_MARK, VIO1_CLK_MARK, VIO1_FIELD_MARK,
  297. /* TPU0 */
  298. TPU0TO0_MARK, TPU0TO1_MARK, TPU0TO3_MARK,
  299. TPU0TO2_PORT66_MARK, /* TPU0TO2 Port 66/202 */
  300. TPU0TO2_PORT202_MARK,
  301. /* SSP1 0 */
  302. STP0_IPD0_MARK, STP0_IPD1_MARK, STP0_IPD2_MARK, STP0_IPD3_MARK,
  303. STP0_IPD4_MARK, STP0_IPD5_MARK, STP0_IPD6_MARK, STP0_IPD7_MARK,
  304. STP0_IPEN_MARK, STP0_IPCLK_MARK, STP0_IPSYNC_MARK,
  305. /* SSP1 1 */
  306. STP1_IPD1_MARK, STP1_IPD2_MARK, STP1_IPD3_MARK, STP1_IPD4_MARK,
  307. STP1_IPD5_MARK, STP1_IPD6_MARK, STP1_IPD7_MARK, STP1_IPCLK_MARK,
  308. STP1_IPSYNC_MARK,
  309. STP1_IPD0_PORT186_MARK, /* MSEL5CR_23_0 */
  310. STP1_IPEN_PORT187_MARK,
  311. STP1_IPD0_PORT194_MARK, /* MSEL5CR_23_1 */
  312. STP1_IPEN_PORT193_MARK,
  313. /* SIM */
  314. SIM_RST_MARK, SIM_CLK_MARK,
  315. SIM_D_PORT22_MARK, /* SIM_D Port 22/199 */
  316. SIM_D_PORT199_MARK,
  317. /* SDHI0 */
  318. SDHI0_D0_MARK, SDHI0_D1_MARK, SDHI0_D2_MARK, SDHI0_D3_MARK,
  319. SDHI0_CD_MARK, SDHI0_WP_MARK, SDHI0_CMD_MARK, SDHI0_CLK_MARK,
  320. /* SDHI1 */
  321. SDHI1_D0_MARK, SDHI1_D1_MARK, SDHI1_D2_MARK, SDHI1_D3_MARK,
  322. SDHI1_CD_MARK, SDHI1_WP_MARK, SDHI1_CMD_MARK, SDHI1_CLK_MARK,
  323. /* SDHI2 */
  324. SDHI2_D0_MARK, SDHI2_D1_MARK, SDHI2_D2_MARK, SDHI2_D3_MARK,
  325. SDHI2_CLK_MARK, SDHI2_CMD_MARK,
  326. SDHI2_CD_PORT24_MARK, /* MSEL5CR_19_0 */
  327. SDHI2_WP_PORT25_MARK,
  328. SDHI2_WP_PORT177_MARK, /* MSEL5CR_19_1 */
  329. SDHI2_CD_PORT202_MARK,
  330. /* MSIOF2 */
  331. MSIOF2_TXD_MARK, MSIOF2_RXD_MARK, MSIOF2_TSCK_MARK,
  332. MSIOF2_SS2_MARK, MSIOF2_TSYNC_MARK, MSIOF2_SS1_MARK,
  333. MSIOF2_MCK1_MARK, MSIOF2_MCK0_MARK, MSIOF2_RSYNC_MARK,
  334. MSIOF2_RSCK_MARK,
  335. /* KEYSC */
  336. KEYIN4_MARK, KEYIN5_MARK, KEYIN6_MARK, KEYIN7_MARK,
  337. KEYOUT0_MARK, KEYOUT1_MARK, KEYOUT2_MARK, KEYOUT3_MARK,
  338. KEYOUT4_MARK, KEYOUT5_MARK, KEYOUT6_MARK, KEYOUT7_MARK,
  339. KEYIN0_PORT43_MARK, /* MSEL4CR_18_0 */
  340. KEYIN1_PORT44_MARK,
  341. KEYIN2_PORT45_MARK,
  342. KEYIN3_PORT46_MARK,
  343. KEYIN0_PORT58_MARK, /* MSEL4CR_18_1 */
  344. KEYIN1_PORT57_MARK,
  345. KEYIN2_PORT56_MARK,
  346. KEYIN3_PORT55_MARK,
  347. /* VOU */
  348. DV_D0_MARK, DV_D1_MARK, DV_D2_MARK, DV_D3_MARK,
  349. DV_D4_MARK, DV_D5_MARK, DV_D6_MARK, DV_D7_MARK,
  350. DV_D8_MARK, DV_D9_MARK, DV_D10_MARK, DV_D11_MARK,
  351. DV_D12_MARK, DV_D13_MARK, DV_D14_MARK, DV_D15_MARK,
  352. DV_CLK_MARK, DV_VSYNC_MARK, DV_HSYNC_MARK,
  353. /* MEMC */
  354. MEMC_AD0_MARK, MEMC_AD1_MARK, MEMC_AD2_MARK, MEMC_AD3_MARK,
  355. MEMC_AD4_MARK, MEMC_AD5_MARK, MEMC_AD6_MARK, MEMC_AD7_MARK,
  356. MEMC_AD8_MARK, MEMC_AD9_MARK, MEMC_AD10_MARK, MEMC_AD11_MARK,
  357. MEMC_AD12_MARK, MEMC_AD13_MARK, MEMC_AD14_MARK, MEMC_AD15_MARK,
  358. MEMC_CS0_MARK, MEMC_INT_MARK, MEMC_NWE_MARK, MEMC_NOE_MARK,
  359. MEMC_CS1_MARK, /* MSEL4CR_6_0 */
  360. MEMC_ADV_MARK,
  361. MEMC_WAIT_MARK,
  362. MEMC_BUSCLK_MARK,
  363. MEMC_A1_MARK, /* MSEL4CR_6_1 */
  364. MEMC_DREQ0_MARK,
  365. MEMC_DREQ1_MARK,
  366. MEMC_A0_MARK,
  367. /* MMC */
  368. MMC0_D0_PORT68_MARK, MMC0_D1_PORT69_MARK, MMC0_D2_PORT70_MARK,
  369. MMC0_D3_PORT71_MARK, MMC0_D4_PORT72_MARK, MMC0_D5_PORT73_MARK,
  370. MMC0_D6_PORT74_MARK, MMC0_D7_PORT75_MARK, MMC0_CLK_PORT66_MARK,
  371. MMC0_CMD_PORT67_MARK, /* MSEL4CR_15_0 */
  372. MMC1_D0_PORT149_MARK, MMC1_D1_PORT148_MARK, MMC1_D2_PORT147_MARK,
  373. MMC1_D3_PORT146_MARK, MMC1_D4_PORT145_MARK, MMC1_D5_PORT144_MARK,
  374. MMC1_D6_PORT143_MARK, MMC1_D7_PORT142_MARK, MMC1_CLK_PORT103_MARK,
  375. MMC1_CMD_PORT104_MARK, /* MSEL4CR_15_1 */
  376. /* MSIOF0 */
  377. MSIOF0_SS1_MARK, MSIOF0_SS2_MARK, MSIOF0_RXD_MARK,
  378. MSIOF0_TXD_MARK, MSIOF0_MCK0_MARK, MSIOF0_MCK1_MARK,
  379. MSIOF0_RSYNC_MARK, MSIOF0_RSCK_MARK, MSIOF0_TSCK_MARK,
  380. MSIOF0_TSYNC_MARK,
  381. /* MSIOF1 */
  382. MSIOF1_RSCK_MARK, MSIOF1_RSYNC_MARK,
  383. MSIOF1_MCK0_MARK, MSIOF1_MCK1_MARK,
  384. MSIOF1_SS2_PORT116_MARK, MSIOF1_SS1_PORT117_MARK,
  385. MSIOF1_RXD_PORT118_MARK, MSIOF1_TXD_PORT119_MARK,
  386. MSIOF1_TSYNC_PORT120_MARK,
  387. MSIOF1_TSCK_PORT121_MARK, /* MSEL4CR_10_0 */
  388. MSIOF1_SS1_PORT67_MARK, MSIOF1_TSCK_PORT72_MARK,
  389. MSIOF1_TSYNC_PORT73_MARK, MSIOF1_TXD_PORT74_MARK,
  390. MSIOF1_RXD_PORT75_MARK,
  391. MSIOF1_SS2_PORT202_MARK, /* MSEL4CR_10_1 */
  392. /* GPIO */
  393. GPO0_MARK, GPI0_MARK, GPO1_MARK, GPI1_MARK,
  394. /* USB0 */
  395. USB0_OCI_MARK, USB0_PPON_MARK, VBUS_MARK,
  396. /* USB1 */
  397. USB1_OCI_MARK, USB1_PPON_MARK,
  398. /* BBIF1 */
  399. BBIF1_RXD_MARK, BBIF1_TXD_MARK, BBIF1_TSYNC_MARK,
  400. BBIF1_TSCK_MARK, BBIF1_RSCK_MARK, BBIF1_RSYNC_MARK,
  401. BBIF1_FLOW_MARK, BBIF1_RX_FLOW_N_MARK,
  402. /* BBIF2 */
  403. BBIF2_TXD2_PORT5_MARK, /* MSEL5CR_0_0 */
  404. BBIF2_RXD2_PORT60_MARK,
  405. BBIF2_TSYNC2_PORT6_MARK,
  406. BBIF2_TSCK2_PORT59_MARK,
  407. BBIF2_RXD2_PORT90_MARK, /* MSEL5CR_0_1 */
  408. BBIF2_TXD2_PORT183_MARK,
  409. BBIF2_TSCK2_PORT89_MARK,
  410. BBIF2_TSYNC2_PORT184_MARK,
  411. /* BSC / FLCTL / PCMCIA */
  412. CS0_MARK, CS2_MARK, CS4_MARK,
  413. CS5B_MARK, CS6A_MARK,
  414. CS5A_PORT105_MARK, /* CS5A PORT 19/105 */
  415. CS5A_PORT19_MARK,
  416. IOIS16_MARK, /* ? */
  417. A0_MARK, A1_MARK, A2_MARK, A3_MARK,
  418. A4_FOE_MARK, /* share with FLCTL */
  419. A5_FCDE_MARK, /* share with FLCTL */
  420. A6_MARK, A7_MARK, A8_MARK, A9_MARK,
  421. A10_MARK, A11_MARK, A12_MARK, A13_MARK,
  422. A14_MARK, A15_MARK, A16_MARK, A17_MARK,
  423. A18_MARK, A19_MARK, A20_MARK, A21_MARK,
  424. A22_MARK, A23_MARK, A24_MARK, A25_MARK,
  425. A26_MARK,
  426. D0_NAF0_MARK, D1_NAF1_MARK, D2_NAF2_MARK, /* share with FLCTL */
  427. D3_NAF3_MARK, D4_NAF4_MARK, D5_NAF5_MARK, /* share with FLCTL */
  428. D6_NAF6_MARK, D7_NAF7_MARK, D8_NAF8_MARK, /* share with FLCTL */
  429. D9_NAF9_MARK, D10_NAF10_MARK, D11_NAF11_MARK, /* share with FLCTL */
  430. D12_NAF12_MARK, D13_NAF13_MARK, D14_NAF14_MARK, /* share with FLCTL */
  431. D15_NAF15_MARK, /* share with FLCTL */
  432. D16_MARK, D17_MARK, D18_MARK, D19_MARK,
  433. D20_MARK, D21_MARK, D22_MARK, D23_MARK,
  434. D24_MARK, D25_MARK, D26_MARK, D27_MARK,
  435. D28_MARK, D29_MARK, D30_MARK, D31_MARK,
  436. WE0_FWE_MARK, /* share with FLCTL */
  437. WE1_MARK,
  438. WE2_ICIORD_MARK, /* share with PCMCIA */
  439. WE3_ICIOWR_MARK, /* share with PCMCIA */
  440. CKO_MARK, BS_MARK, RDWR_MARK,
  441. RD_FSC_MARK, /* share with FLCTL */
  442. WAIT_PORT177_MARK, /* WAIT Port 90/177 */
  443. WAIT_PORT90_MARK,
  444. FCE0_MARK, FCE1_MARK, FRB_MARK, /* FLCTL */
  445. /* IRDA */
  446. IRDA_FIRSEL_MARK, IRDA_IN_MARK, IRDA_OUT_MARK,
  447. /* ATAPI */
  448. IDE_D0_MARK, IDE_D1_MARK, IDE_D2_MARK, IDE_D3_MARK,
  449. IDE_D4_MARK, IDE_D5_MARK, IDE_D6_MARK, IDE_D7_MARK,
  450. IDE_D8_MARK, IDE_D9_MARK, IDE_D10_MARK, IDE_D11_MARK,
  451. IDE_D12_MARK, IDE_D13_MARK, IDE_D14_MARK, IDE_D15_MARK,
  452. IDE_A0_MARK, IDE_A1_MARK, IDE_A2_MARK, IDE_CS0_MARK,
  453. IDE_CS1_MARK, IDE_IOWR_MARK, IDE_IORD_MARK, IDE_IORDY_MARK,
  454. IDE_INT_MARK, IDE_RST_MARK, IDE_DIRECTION_MARK,
  455. IDE_EXBUF_ENB_MARK, IDE_IODACK_MARK, IDE_IODREQ_MARK,
  456. /* RMII */
  457. RMII_CRS_DV_MARK, RMII_RX_ER_MARK, RMII_RXD0_MARK,
  458. RMII_RXD1_MARK, RMII_TX_EN_MARK, RMII_TXD0_MARK,
  459. RMII_MDC_MARK, RMII_TXD1_MARK, RMII_MDIO_MARK,
  460. RMII_REF50CK_MARK, /* for RMII */
  461. RMII_REF125CK_MARK, /* for GMII */
  462. /* GEther */
  463. ET_TX_CLK_MARK, ET_TX_EN_MARK, ET_ETXD0_MARK, ET_ETXD1_MARK,
  464. ET_ETXD2_MARK, ET_ETXD3_MARK,
  465. ET_ETXD4_MARK, ET_ETXD5_MARK, /* for GEther */
  466. ET_ETXD6_MARK, ET_ETXD7_MARK, /* for GEther */
  467. ET_COL_MARK, ET_TX_ER_MARK, ET_RX_CLK_MARK, ET_RX_DV_MARK,
  468. ET_ERXD0_MARK, ET_ERXD1_MARK, ET_ERXD2_MARK, ET_ERXD3_MARK,
  469. ET_ERXD4_MARK, ET_ERXD5_MARK, /* for GEther */
  470. ET_ERXD6_MARK, ET_ERXD7_MARK, /* for GEther */
  471. ET_RX_ER_MARK, ET_CRS_MARK, ET_MDC_MARK, ET_MDIO_MARK,
  472. ET_LINK_MARK, ET_PHY_INT_MARK, ET_WOL_MARK, ET_GTX_CLK_MARK,
  473. /* DMA0 */
  474. DREQ0_MARK, DACK0_MARK,
  475. /* DMA1 */
  476. DREQ1_MARK, DACK1_MARK,
  477. /* SYSC */
  478. RESETOUTS_MARK, RESETP_PULLUP_MARK, RESETP_PLAIN_MARK,
  479. /* IRREM */
  480. IROUT_MARK,
  481. /* SDENC */
  482. SDENC_CPG_MARK, SDENC_DV_CLKI_MARK,
  483. /* HDMI */
  484. HDMI_HPD_MARK, HDMI_CEC_MARK,
  485. /* DEBUG */
  486. EDEBGREQ_PULLUP_MARK, /* for JTAG */
  487. EDEBGREQ_PULLDOWN_MARK,
  488. TRACEAUD_FROM_VIO_MARK, /* for TRACE/AUD */
  489. TRACEAUD_FROM_LCDC0_MARK,
  490. TRACEAUD_FROM_MEMC_MARK,
  491. PINMUX_MARK_END,
  492. };
  493. #define _PORT_DATA(pfx, sfx) PORT_DATA_IO(pfx)
  494. #define PINMUX_DATA_GP_ALL() CPU_ALL_PORT(_PORT_DATA, , unused)
  495. static const pinmux_enum_t pinmux_data[] = {
  496. PINMUX_DATA_GP_ALL(),
  497. /* Port0 */
  498. PINMUX_DATA(DBGMDT2_MARK, PORT0_FN1),
  499. PINMUX_DATA(FSIAISLD_PORT0_MARK, PORT0_FN2, MSEL5CR_3_0),
  500. PINMUX_DATA(FSIAOSLD1_MARK, PORT0_FN3),
  501. PINMUX_DATA(LCD0_D22_PORT0_MARK, PORT0_FN4, MSEL5CR_6_0),
  502. PINMUX_DATA(SCIFA7_RXD_MARK, PORT0_FN6),
  503. PINMUX_DATA(LCD1_D4_MARK, PORT0_FN7),
  504. PINMUX_DATA(IRQ5_PORT0_MARK, PORT0_FN0, MSEL1CR_5_0),
  505. /* Port1 */
  506. PINMUX_DATA(DBGMDT1_MARK, PORT1_FN1),
  507. PINMUX_DATA(FMSISLD_PORT1_MARK, PORT1_FN2, MSEL5CR_5_0),
  508. PINMUX_DATA(FSIAOSLD2_MARK, PORT1_FN3),
  509. PINMUX_DATA(LCD0_D23_PORT1_MARK, PORT1_FN4, MSEL5CR_6_0),
  510. PINMUX_DATA(SCIFA7_TXD_MARK, PORT1_FN6),
  511. PINMUX_DATA(LCD1_D3_MARK, PORT1_FN7),
  512. PINMUX_DATA(IRQ5_PORT1_MARK, PORT1_FN0, MSEL1CR_5_1),
  513. /* Port2 */
  514. PINMUX_DATA(DBGMDT0_MARK, PORT2_FN1),
  515. PINMUX_DATA(SCIFB_SCK_PORT2_MARK, PORT2_FN2, MSEL5CR_17_1),
  516. PINMUX_DATA(LCD0_D21_PORT2_MARK, PORT2_FN4, MSEL5CR_6_0),
  517. PINMUX_DATA(LCD1_D2_MARK, PORT2_FN7),
  518. PINMUX_DATA(IRQ0_PORT2_MARK, PORT2_FN0, MSEL1CR_0_1),
  519. /* Port3 */
  520. PINMUX_DATA(DBGMD21_MARK, PORT3_FN1),
  521. PINMUX_DATA(SCIFB_RXD_PORT3_MARK, PORT3_FN2, MSEL5CR_17_1),
  522. PINMUX_DATA(LCD0_D20_PORT3_MARK, PORT3_FN4, MSEL5CR_6_0),
  523. PINMUX_DATA(LCD1_D1_MARK, PORT3_FN7),
  524. /* Port4 */
  525. PINMUX_DATA(DBGMD20_MARK, PORT4_FN1),
  526. PINMUX_DATA(SCIFB_TXD_PORT4_MARK, PORT4_FN2, MSEL5CR_17_1),
  527. PINMUX_DATA(LCD0_D19_PORT4_MARK, PORT4_FN4, MSEL5CR_6_0),
  528. PINMUX_DATA(LCD1_D0_MARK, PORT4_FN7),
  529. /* Port5 */
  530. PINMUX_DATA(DBGMD11_MARK, PORT5_FN1),
  531. PINMUX_DATA(BBIF2_TXD2_PORT5_MARK, PORT5_FN2, MSEL5CR_0_0),
  532. PINMUX_DATA(FSIAISLD_PORT5_MARK, PORT5_FN4, MSEL5CR_3_1),
  533. PINMUX_DATA(RSPI_SSL0_A_MARK, PORT5_FN6),
  534. PINMUX_DATA(LCD1_VCPWC_MARK, PORT5_FN7),
  535. /* Port6 */
  536. PINMUX_DATA(DBGMD10_MARK, PORT6_FN1),
  537. PINMUX_DATA(BBIF2_TSYNC2_PORT6_MARK, PORT6_FN2, MSEL5CR_0_0),
  538. PINMUX_DATA(FMSISLD_PORT6_MARK, PORT6_FN4, MSEL5CR_5_1),
  539. PINMUX_DATA(RSPI_SSL1_A_MARK, PORT6_FN6),
  540. PINMUX_DATA(LCD1_VEPWC_MARK, PORT6_FN7),
  541. /* Port7 */
  542. PINMUX_DATA(FSIAOLR_MARK, PORT7_FN1),
  543. /* Port8 */
  544. PINMUX_DATA(FSIAOBT_MARK, PORT8_FN1),
  545. /* Port9 */
  546. PINMUX_DATA(FSIAOSLD_MARK, PORT9_FN1),
  547. PINMUX_DATA(FSIASPDIF_PORT9_MARK, PORT9_FN2, MSEL5CR_4_0),
  548. /* Port10 */
  549. PINMUX_DATA(FSIAOMC_MARK, PORT10_FN1),
  550. PINMUX_DATA(SCIFA5_RXD_PORT10_MARK, PORT10_FN3, MSEL5CR_14_0, MSEL5CR_15_0),
  551. PINMUX_DATA(IRQ3_PORT10_MARK, PORT10_FN0, MSEL1CR_3_0),
  552. /* Port11 */
  553. PINMUX_DATA(FSIACK_MARK, PORT11_FN1),
  554. PINMUX_DATA(FSIBCK_MARK, PORT11_FN2),
  555. PINMUX_DATA(IRQ2_PORT11_MARK, PORT11_FN0, MSEL1CR_2_0),
  556. /* Port12 */
  557. PINMUX_DATA(FSIAILR_MARK, PORT12_FN1),
  558. PINMUX_DATA(SCIFA4_RXD_PORT12_MARK, PORT12_FN2, MSEL5CR_12_0, MSEL5CR_11_0),
  559. PINMUX_DATA(LCD1_RS_MARK, PORT12_FN6),
  560. PINMUX_DATA(LCD1_DISP_MARK, PORT12_FN7),
  561. PINMUX_DATA(IRQ2_PORT12_MARK, PORT12_FN0, MSEL1CR_2_1),
  562. /* Port13 */
  563. PINMUX_DATA(FSIAIBT_MARK, PORT13_FN1),
  564. PINMUX_DATA(SCIFA4_TXD_PORT13_MARK, PORT13_FN2, MSEL5CR_12_0, MSEL5CR_11_0),
  565. PINMUX_DATA(LCD1_RD_MARK, PORT13_FN7),
  566. PINMUX_DATA(IRQ0_PORT13_MARK, PORT13_FN0, MSEL1CR_0_0),
  567. /* Port14 */
  568. PINMUX_DATA(FMSOILR_MARK, PORT14_FN1),
  569. PINMUX_DATA(FMSIILR_MARK, PORT14_FN2),
  570. PINMUX_DATA(VIO_CKO1_MARK, PORT14_FN3),
  571. PINMUX_DATA(LCD1_D23_MARK, PORT14_FN7),
  572. PINMUX_DATA(IRQ3_PORT14_MARK, PORT14_FN0, MSEL1CR_3_1),
  573. /* Port15 */
  574. PINMUX_DATA(FMSOIBT_MARK, PORT15_FN1),
  575. PINMUX_DATA(FMSIIBT_MARK, PORT15_FN2),
  576. PINMUX_DATA(VIO_CKO2_MARK, PORT15_FN3),
  577. PINMUX_DATA(LCD1_D22_MARK, PORT15_FN7),
  578. PINMUX_DATA(IRQ4_PORT15_MARK, PORT15_FN0, MSEL1CR_4_0),
  579. /* Port16 */
  580. PINMUX_DATA(FMSOOLR_MARK, PORT16_FN1),
  581. PINMUX_DATA(FMSIOLR_MARK, PORT16_FN2),
  582. /* Port17 */
  583. PINMUX_DATA(FMSOOBT_MARK, PORT17_FN1),
  584. PINMUX_DATA(FMSIOBT_MARK, PORT17_FN2),
  585. /* Port18 */
  586. PINMUX_DATA(FMSOSLD_MARK, PORT18_FN1),
  587. PINMUX_DATA(FSIASPDIF_PORT18_MARK, PORT18_FN2, MSEL5CR_4_1),
  588. /* Port19 */
  589. PINMUX_DATA(FMSICK_MARK, PORT19_FN1),
  590. PINMUX_DATA(CS5A_PORT19_MARK, PORT19_FN7, MSEL5CR_2_1),
  591. PINMUX_DATA(IRQ10_MARK, PORT19_FN0),
  592. /* Port20 */
  593. PINMUX_DATA(FMSOCK_MARK, PORT20_FN1),
  594. PINMUX_DATA(SCIFA5_TXD_PORT20_MARK, PORT20_FN3, MSEL5CR_15_0, MSEL5CR_14_0),
  595. PINMUX_DATA(IRQ1_MARK, PORT20_FN0),
  596. /* Port21 */
  597. PINMUX_DATA(SCIFA1_CTS_MARK, PORT21_FN1),
  598. PINMUX_DATA(SCIFA4_SCK_PORT21_MARK, PORT21_FN2, MSEL5CR_10_0),
  599. PINMUX_DATA(TPU0TO1_MARK, PORT21_FN4),
  600. PINMUX_DATA(VIO1_FIELD_MARK, PORT21_FN5),
  601. PINMUX_DATA(STP0_IPD5_MARK, PORT21_FN6),
  602. PINMUX_DATA(LCD1_D10_MARK, PORT21_FN7),
  603. /* Port22 */
  604. PINMUX_DATA(SCIFA2_SCK_PORT22_MARK, PORT22_FN1, MSEL5CR_7_0),
  605. PINMUX_DATA(SIM_D_PORT22_MARK, PORT22_FN4, MSEL5CR_21_0),
  606. PINMUX_DATA(VIO0_D13_PORT22_MARK, PORT22_FN7, MSEL5CR_27_1),
  607. /* Port23 */
  608. PINMUX_DATA(SCIFA1_RTS_MARK, PORT23_FN1),
  609. PINMUX_DATA(SCIFA5_SCK_PORT23_MARK, PORT23_FN3, MSEL5CR_13_0),
  610. PINMUX_DATA(TPU0TO0_MARK, PORT23_FN4),
  611. PINMUX_DATA(VIO_CKO_1_MARK, PORT23_FN5),
  612. PINMUX_DATA(STP0_IPD2_MARK, PORT23_FN6),
  613. PINMUX_DATA(LCD1_D7_MARK, PORT23_FN7),
  614. /* Port24 */
  615. PINMUX_DATA(VIO0_D15_PORT24_MARK, PORT24_FN1, MSEL5CR_27_0),
  616. PINMUX_DATA(VIO1_D7_MARK, PORT24_FN5),
  617. PINMUX_DATA(SCIFA6_SCK_MARK, PORT24_FN6),
  618. PINMUX_DATA(SDHI2_CD_PORT24_MARK, PORT24_FN7, MSEL5CR_19_0),
  619. /* Port25 */
  620. PINMUX_DATA(VIO0_D14_PORT25_MARK, PORT25_FN1, MSEL5CR_27_0),
  621. PINMUX_DATA(VIO1_D6_MARK, PORT25_FN5),
  622. PINMUX_DATA(SCIFA6_RXD_MARK, PORT25_FN6),
  623. PINMUX_DATA(SDHI2_WP_PORT25_MARK, PORT25_FN7, MSEL5CR_19_0),
  624. /* Port26 */
  625. PINMUX_DATA(VIO0_D13_PORT26_MARK, PORT26_FN1, MSEL5CR_27_0),
  626. PINMUX_DATA(VIO1_D5_MARK, PORT26_FN5),
  627. PINMUX_DATA(SCIFA6_TXD_MARK, PORT26_FN6),
  628. /* Port27 - Port39 Function */
  629. PINMUX_DATA(VIO0_D7_MARK, PORT27_FN1),
  630. PINMUX_DATA(VIO0_D6_MARK, PORT28_FN1),
  631. PINMUX_DATA(VIO0_D5_MARK, PORT29_FN1),
  632. PINMUX_DATA(VIO0_D4_MARK, PORT30_FN1),
  633. PINMUX_DATA(VIO0_D3_MARK, PORT31_FN1),
  634. PINMUX_DATA(VIO0_D2_MARK, PORT32_FN1),
  635. PINMUX_DATA(VIO0_D1_MARK, PORT33_FN1),
  636. PINMUX_DATA(VIO0_D0_MARK, PORT34_FN1),
  637. PINMUX_DATA(VIO0_CLK_MARK, PORT35_FN1),
  638. PINMUX_DATA(VIO_CKO_MARK, PORT36_FN1),
  639. PINMUX_DATA(VIO0_HD_MARK, PORT37_FN1),
  640. PINMUX_DATA(VIO0_FIELD_MARK, PORT38_FN1),
  641. PINMUX_DATA(VIO0_VD_MARK, PORT39_FN1),
  642. /* Port38 IRQ */
  643. PINMUX_DATA(IRQ25_MARK, PORT38_FN0),
  644. /* Port40 */
  645. PINMUX_DATA(LCD0_D18_PORT40_MARK, PORT40_FN4, MSEL5CR_6_0),
  646. PINMUX_DATA(RSPI_CK_A_MARK, PORT40_FN6),
  647. PINMUX_DATA(LCD1_LCLK_MARK, PORT40_FN7),
  648. /* Port41 */
  649. PINMUX_DATA(LCD0_D17_MARK, PORT41_FN1),
  650. PINMUX_DATA(MSIOF2_SS1_MARK, PORT41_FN2),
  651. PINMUX_DATA(IRQ31_PORT41_MARK, PORT41_FN0, MSEL1CR_31_1),
  652. /* Port42 */
  653. PINMUX_DATA(LCD0_D16_MARK, PORT42_FN1),
  654. PINMUX_DATA(MSIOF2_MCK1_MARK, PORT42_FN2),
  655. PINMUX_DATA(IRQ12_PORT42_MARK, PORT42_FN0, MSEL1CR_12_1),
  656. /* Port43 */
  657. PINMUX_DATA(LCD0_D15_MARK, PORT43_FN1),
  658. PINMUX_DATA(MSIOF2_MCK0_MARK, PORT43_FN2),
  659. PINMUX_DATA(KEYIN0_PORT43_MARK, PORT43_FN3, MSEL4CR_18_0),
  660. PINMUX_DATA(DV_D15_MARK, PORT43_FN6),
  661. /* Port44 */
  662. PINMUX_DATA(LCD0_D14_MARK, PORT44_FN1),
  663. PINMUX_DATA(MSIOF2_RSYNC_MARK, PORT44_FN2),
  664. PINMUX_DATA(KEYIN1_PORT44_MARK, PORT44_FN3, MSEL4CR_18_0),
  665. PINMUX_DATA(DV_D14_MARK, PORT44_FN6),
  666. /* Port45 */
  667. PINMUX_DATA(LCD0_D13_MARK, PORT45_FN1),
  668. PINMUX_DATA(MSIOF2_RSCK_MARK, PORT45_FN2),
  669. PINMUX_DATA(KEYIN2_PORT45_MARK, PORT45_FN3, MSEL4CR_18_0),
  670. PINMUX_DATA(DV_D13_MARK, PORT45_FN6),
  671. /* Port46 */
  672. PINMUX_DATA(LCD0_D12_MARK, PORT46_FN1),
  673. PINMUX_DATA(KEYIN3_PORT46_MARK, PORT46_FN3, MSEL4CR_18_0),
  674. PINMUX_DATA(DV_D12_MARK, PORT46_FN6),
  675. /* Port47 */
  676. PINMUX_DATA(LCD0_D11_MARK, PORT47_FN1),
  677. PINMUX_DATA(KEYIN4_MARK, PORT47_FN3),
  678. PINMUX_DATA(DV_D11_MARK, PORT47_FN6),
  679. /* Port48 */
  680. PINMUX_DATA(LCD0_D10_MARK, PORT48_FN1),
  681. PINMUX_DATA(KEYIN5_MARK, PORT48_FN3),
  682. PINMUX_DATA(DV_D10_MARK, PORT48_FN6),
  683. /* Port49 */
  684. PINMUX_DATA(LCD0_D9_MARK, PORT49_FN1),
  685. PINMUX_DATA(KEYIN6_MARK, PORT49_FN3),
  686. PINMUX_DATA(DV_D9_MARK, PORT49_FN6),
  687. PINMUX_DATA(IRQ30_PORT49_MARK, PORT49_FN0, MSEL1CR_30_1),
  688. /* Port50 */
  689. PINMUX_DATA(LCD0_D8_MARK, PORT50_FN1),
  690. PINMUX_DATA(KEYIN7_MARK, PORT50_FN3),
  691. PINMUX_DATA(DV_D8_MARK, PORT50_FN6),
  692. PINMUX_DATA(IRQ29_PORT50_MARK, PORT50_FN0, MSEL1CR_29_1),
  693. /* Port51 */
  694. PINMUX_DATA(LCD0_D7_MARK, PORT51_FN1),
  695. PINMUX_DATA(KEYOUT0_MARK, PORT51_FN3),
  696. PINMUX_DATA(DV_D7_MARK, PORT51_FN6),
  697. /* Port52 */
  698. PINMUX_DATA(LCD0_D6_MARK, PORT52_FN1),
  699. PINMUX_DATA(KEYOUT1_MARK, PORT52_FN3),
  700. PINMUX_DATA(DV_D6_MARK, PORT52_FN6),
  701. /* Port53 */
  702. PINMUX_DATA(LCD0_D5_MARK, PORT53_FN1),
  703. PINMUX_DATA(KEYOUT2_MARK, PORT53_FN3),
  704. PINMUX_DATA(DV_D5_MARK, PORT53_FN6),
  705. /* Port54 */
  706. PINMUX_DATA(LCD0_D4_MARK, PORT54_FN1),
  707. PINMUX_DATA(KEYOUT3_MARK, PORT54_FN3),
  708. PINMUX_DATA(DV_D4_MARK, PORT54_FN6),
  709. /* Port55 */
  710. PINMUX_DATA(LCD0_D3_MARK, PORT55_FN1),
  711. PINMUX_DATA(KEYOUT4_MARK, PORT55_FN3),
  712. PINMUX_DATA(KEYIN3_PORT55_MARK, PORT55_FN4, MSEL4CR_18_1),
  713. PINMUX_DATA(DV_D3_MARK, PORT55_FN6),
  714. /* Port56 */
  715. PINMUX_DATA(LCD0_D2_MARK, PORT56_FN1),
  716. PINMUX_DATA(KEYOUT5_MARK, PORT56_FN3),
  717. PINMUX_DATA(KEYIN2_PORT56_MARK, PORT56_FN4, MSEL4CR_18_1),
  718. PINMUX_DATA(DV_D2_MARK, PORT56_FN6),
  719. PINMUX_DATA(IRQ28_PORT56_MARK, PORT56_FN0, MSEL1CR_28_1),
  720. /* Port57 */
  721. PINMUX_DATA(LCD0_D1_MARK, PORT57_FN1),
  722. PINMUX_DATA(KEYOUT6_MARK, PORT57_FN3),
  723. PINMUX_DATA(KEYIN1_PORT57_MARK, PORT57_FN4, MSEL4CR_18_1),
  724. PINMUX_DATA(DV_D1_MARK, PORT57_FN6),
  725. PINMUX_DATA(IRQ27_PORT57_MARK, PORT57_FN0, MSEL1CR_27_1),
  726. /* Port58 */
  727. PINMUX_DATA(LCD0_D0_MARK, PORT58_FN1, MSEL3CR_6_0),
  728. PINMUX_DATA(KEYOUT7_MARK, PORT58_FN3),
  729. PINMUX_DATA(KEYIN0_PORT58_MARK, PORT58_FN4, MSEL4CR_18_1),
  730. PINMUX_DATA(DV_D0_MARK, PORT58_FN6),
  731. PINMUX_DATA(IRQ26_PORT58_MARK, PORT58_FN0, MSEL1CR_26_1),
  732. /* Port59 */
  733. PINMUX_DATA(LCD0_VCPWC_MARK, PORT59_FN1),
  734. PINMUX_DATA(BBIF2_TSCK2_PORT59_MARK, PORT59_FN2, MSEL5CR_0_0),
  735. PINMUX_DATA(RSPI_MOSI_A_MARK, PORT59_FN6),
  736. /* Port60 */
  737. PINMUX_DATA(LCD0_VEPWC_MARK, PORT60_FN1),
  738. PINMUX_DATA(BBIF2_RXD2_PORT60_MARK, PORT60_FN2, MSEL5CR_0_0),
  739. PINMUX_DATA(RSPI_MISO_A_MARK, PORT60_FN6),
  740. /* Port61 */
  741. PINMUX_DATA(LCD0_DON_MARK, PORT61_FN1),
  742. PINMUX_DATA(MSIOF2_TXD_MARK, PORT61_FN2),
  743. /* Port62 */
  744. PINMUX_DATA(LCD0_DCK_MARK, PORT62_FN1),
  745. PINMUX_DATA(LCD0_WR_MARK, PORT62_FN4),
  746. PINMUX_DATA(DV_CLK_MARK, PORT62_FN6),
  747. PINMUX_DATA(IRQ15_PORT62_MARK, PORT62_FN0, MSEL1CR_15_1),
  748. /* Port63 */
  749. PINMUX_DATA(LCD0_VSYN_MARK, PORT63_FN1),
  750. PINMUX_DATA(DV_VSYNC_MARK, PORT63_FN6),
  751. PINMUX_DATA(IRQ14_PORT63_MARK, PORT63_FN0, MSEL1CR_14_1),
  752. /* Port64 */
  753. PINMUX_DATA(LCD0_HSYN_MARK, PORT64_FN1),
  754. PINMUX_DATA(LCD0_CS_MARK, PORT64_FN4),
  755. PINMUX_DATA(DV_HSYNC_MARK, PORT64_FN6),
  756. PINMUX_DATA(IRQ13_PORT64_MARK, PORT64_FN0, MSEL1CR_13_1),
  757. /* Port65 */
  758. PINMUX_DATA(LCD0_DISP_MARK, PORT65_FN1),
  759. PINMUX_DATA(MSIOF2_TSCK_MARK, PORT65_FN2),
  760. PINMUX_DATA(LCD0_RS_MARK, PORT65_FN4),
  761. /* Port66 */
  762. PINMUX_DATA(MEMC_INT_MARK, PORT66_FN1),
  763. PINMUX_DATA(TPU0TO2_PORT66_MARK, PORT66_FN3, MSEL5CR_25_0),
  764. PINMUX_DATA(MMC0_CLK_PORT66_MARK, PORT66_FN4, MSEL4CR_15_0),
  765. PINMUX_DATA(SDHI1_CLK_MARK, PORT66_FN6),
  766. /* Port67 - Port73 Function1 */
  767. PINMUX_DATA(MEMC_CS0_MARK, PORT67_FN1),
  768. PINMUX_DATA(MEMC_AD8_MARK, PORT68_FN1),
  769. PINMUX_DATA(MEMC_AD9_MARK, PORT69_FN1),
  770. PINMUX_DATA(MEMC_AD10_MARK, PORT70_FN1),
  771. PINMUX_DATA(MEMC_AD11_MARK, PORT71_FN1),
  772. PINMUX_DATA(MEMC_AD12_MARK, PORT72_FN1),
  773. PINMUX_DATA(MEMC_AD13_MARK, PORT73_FN1),
  774. /* Port67 - Port73 Function2 */
  775. PINMUX_DATA(MSIOF1_SS1_PORT67_MARK, PORT67_FN2, MSEL4CR_10_1),
  776. PINMUX_DATA(MSIOF1_RSCK_MARK, PORT68_FN2),
  777. PINMUX_DATA(MSIOF1_RSYNC_MARK, PORT69_FN2),
  778. PINMUX_DATA(MSIOF1_MCK0_MARK, PORT70_FN2),
  779. PINMUX_DATA(MSIOF1_MCK1_MARK, PORT71_FN2),
  780. PINMUX_DATA(MSIOF1_TSCK_PORT72_MARK, PORT72_FN2, MSEL4CR_10_1),
  781. PINMUX_DATA(MSIOF1_TSYNC_PORT73_MARK, PORT73_FN2, MSEL4CR_10_1),
  782. /* Port67 - Port73 Function4 */
  783. PINMUX_DATA(MMC0_CMD_PORT67_MARK, PORT67_FN4, MSEL4CR_15_0),
  784. PINMUX_DATA(MMC0_D0_PORT68_MARK, PORT68_FN4, MSEL4CR_15_0),
  785. PINMUX_DATA(MMC0_D1_PORT69_MARK, PORT69_FN4, MSEL4CR_15_0),
  786. PINMUX_DATA(MMC0_D2_PORT70_MARK, PORT70_FN4, MSEL4CR_15_0),
  787. PINMUX_DATA(MMC0_D3_PORT71_MARK, PORT71_FN4, MSEL4CR_15_0),
  788. PINMUX_DATA(MMC0_D4_PORT72_MARK, PORT72_FN4, MSEL4CR_15_0),
  789. PINMUX_DATA(MMC0_D5_PORT73_MARK, PORT73_FN4, MSEL4CR_15_0),
  790. /* Port67 - Port73 Function6 */
  791. PINMUX_DATA(SDHI1_CMD_MARK, PORT67_FN6),
  792. PINMUX_DATA(SDHI1_D0_MARK, PORT68_FN6),
  793. PINMUX_DATA(SDHI1_D1_MARK, PORT69_FN6),
  794. PINMUX_DATA(SDHI1_D2_MARK, PORT70_FN6),
  795. PINMUX_DATA(SDHI1_D3_MARK, PORT71_FN6),
  796. PINMUX_DATA(SDHI1_CD_MARK, PORT72_FN6),
  797. PINMUX_DATA(SDHI1_WP_MARK, PORT73_FN6),
  798. /* Port67 - Port71 IRQ */
  799. PINMUX_DATA(IRQ20_MARK, PORT67_FN0),
  800. PINMUX_DATA(IRQ16_PORT68_MARK, PORT68_FN0, MSEL1CR_16_0),
  801. PINMUX_DATA(IRQ17_MARK, PORT69_FN0),
  802. PINMUX_DATA(IRQ18_MARK, PORT70_FN0),
  803. PINMUX_DATA(IRQ19_MARK, PORT71_FN0),
  804. /* Port74 */
  805. PINMUX_DATA(MEMC_AD14_MARK, PORT74_FN1),
  806. PINMUX_DATA(MSIOF1_TXD_PORT74_MARK, PORT74_FN2, MSEL4CR_10_1),
  807. PINMUX_DATA(MMC0_D6_PORT74_MARK, PORT74_FN4, MSEL4CR_15_0),
  808. PINMUX_DATA(STP1_IPD7_MARK, PORT74_FN6),
  809. PINMUX_DATA(LCD1_D21_MARK, PORT74_FN7),
  810. /* Port75 */
  811. PINMUX_DATA(MEMC_AD15_MARK, PORT75_FN1),
  812. PINMUX_DATA(MSIOF1_RXD_PORT75_MARK, PORT75_FN2, MSEL4CR_10_1),
  813. PINMUX_DATA(MMC0_D7_PORT75_MARK, PORT75_FN4, MSEL4CR_15_0),
  814. PINMUX_DATA(STP1_IPD6_MARK, PORT75_FN6),
  815. PINMUX_DATA(LCD1_D20_MARK, PORT75_FN7),
  816. /* Port76 - Port80 Function */
  817. PINMUX_DATA(SDHI0_CMD_MARK, PORT76_FN1),
  818. PINMUX_DATA(SDHI0_D0_MARK, PORT77_FN1),
  819. PINMUX_DATA(SDHI0_D1_MARK, PORT78_FN1),
  820. PINMUX_DATA(SDHI0_D2_MARK, PORT79_FN1),
  821. PINMUX_DATA(SDHI0_D3_MARK, PORT80_FN1),
  822. /* Port81 */
  823. PINMUX_DATA(SDHI0_CD_MARK, PORT81_FN1),
  824. PINMUX_DATA(IRQ26_PORT81_MARK, PORT81_FN0, MSEL1CR_26_0),
  825. /* Port82 - Port88 Function */
  826. PINMUX_DATA(SDHI0_CLK_MARK, PORT82_FN1),
  827. PINMUX_DATA(SDHI0_WP_MARK, PORT83_FN1),
  828. PINMUX_DATA(RESETOUTS_MARK, PORT84_FN1),
  829. PINMUX_DATA(USB0_PPON_MARK, PORT85_FN1),
  830. PINMUX_DATA(USB0_OCI_MARK, PORT86_FN1),
  831. PINMUX_DATA(USB1_PPON_MARK, PORT87_FN1),
  832. PINMUX_DATA(USB1_OCI_MARK, PORT88_FN1),
  833. /* Port89 */
  834. PINMUX_DATA(DREQ0_MARK, PORT89_FN1),
  835. PINMUX_DATA(BBIF2_TSCK2_PORT89_MARK, PORT89_FN2, MSEL5CR_0_1),
  836. PINMUX_DATA(RSPI_SSL3_A_MARK, PORT89_FN6),
  837. /* Port90 */
  838. PINMUX_DATA(DACK0_MARK, PORT90_FN1),
  839. PINMUX_DATA(BBIF2_RXD2_PORT90_MARK, PORT90_FN2, MSEL5CR_0_1),
  840. PINMUX_DATA(RSPI_SSL2_A_MARK, PORT90_FN6),
  841. PINMUX_DATA(WAIT_PORT90_MARK, PORT90_FN7, MSEL5CR_2_1),
  842. /* Port91 */
  843. PINMUX_DATA(MEMC_AD0_MARK, PORT91_FN1),
  844. PINMUX_DATA(BBIF1_RXD_MARK, PORT91_FN2),
  845. PINMUX_DATA(SCIFA5_TXD_PORT91_MARK, PORT91_FN3, MSEL5CR_15_1, MSEL5CR_14_0),
  846. PINMUX_DATA(LCD1_D5_MARK, PORT91_FN7),
  847. /* Port92 */
  848. PINMUX_DATA(MEMC_AD1_MARK, PORT92_FN1),
  849. PINMUX_DATA(BBIF1_TSYNC_MARK, PORT92_FN2),
  850. PINMUX_DATA(SCIFA5_RXD_PORT92_MARK, PORT92_FN3, MSEL5CR_15_1, MSEL5CR_14_0),
  851. PINMUX_DATA(STP0_IPD1_MARK, PORT92_FN6),
  852. PINMUX_DATA(LCD1_D6_MARK, PORT92_FN7),
  853. /* Port93 */
  854. PINMUX_DATA(MEMC_AD2_MARK, PORT93_FN1),
  855. PINMUX_DATA(BBIF1_TSCK_MARK, PORT93_FN2),
  856. PINMUX_DATA(SCIFA4_TXD_PORT93_MARK, PORT93_FN3, MSEL5CR_12_1, MSEL5CR_11_0),
  857. PINMUX_DATA(STP0_IPD3_MARK, PORT93_FN6),
  858. PINMUX_DATA(LCD1_D8_MARK, PORT93_FN7),
  859. /* Port94 */
  860. PINMUX_DATA(MEMC_AD3_MARK, PORT94_FN1),
  861. PINMUX_DATA(BBIF1_TXD_MARK, PORT94_FN2),
  862. PINMUX_DATA(SCIFA4_RXD_PORT94_MARK, PORT94_FN3, MSEL5CR_12_1, MSEL5CR_11_0),
  863. PINMUX_DATA(STP0_IPD4_MARK, PORT94_FN6),
  864. PINMUX_DATA(LCD1_D9_MARK, PORT94_FN7),
  865. /* Port95 */
  866. PINMUX_DATA(MEMC_CS1_MARK, PORT95_FN1, MSEL4CR_6_0),
  867. PINMUX_DATA(MEMC_A1_MARK, PORT95_FN1, MSEL4CR_6_1),
  868. PINMUX_DATA(SCIFA2_CTS_MARK, PORT95_FN2),
  869. PINMUX_DATA(SIM_RST_MARK, PORT95_FN4),
  870. PINMUX_DATA(VIO0_D14_PORT95_MARK, PORT95_FN7, MSEL5CR_27_1),
  871. PINMUX_DATA(IRQ22_MARK, PORT95_FN0),
  872. /* Port96 */
  873. PINMUX_DATA(MEMC_ADV_MARK, PORT96_FN1, MSEL4CR_6_0),
  874. PINMUX_DATA(MEMC_DREQ0_MARK, PORT96_FN1, MSEL4CR_6_1),
  875. PINMUX_DATA(SCIFA2_RTS_MARK, PORT96_FN2),
  876. PINMUX_DATA(SIM_CLK_MARK, PORT96_FN4),
  877. PINMUX_DATA(VIO0_D15_PORT96_MARK, PORT96_FN7, MSEL5CR_27_1),
  878. PINMUX_DATA(IRQ23_MARK, PORT96_FN0),
  879. /* Port97 */
  880. PINMUX_DATA(MEMC_AD4_MARK, PORT97_FN1),
  881. PINMUX_DATA(BBIF1_RSCK_MARK, PORT97_FN2),
  882. PINMUX_DATA(LCD1_CS_MARK, PORT97_FN6),
  883. PINMUX_DATA(LCD1_HSYN_MARK, PORT97_FN7),
  884. PINMUX_DATA(IRQ12_PORT97_MARK, PORT97_FN0, MSEL1CR_12_0),
  885. /* Port98 */
  886. PINMUX_DATA(MEMC_AD5_MARK, PORT98_FN1),
  887. PINMUX_DATA(BBIF1_RSYNC_MARK, PORT98_FN2),
  888. PINMUX_DATA(LCD1_VSYN_MARK, PORT98_FN7),
  889. PINMUX_DATA(IRQ13_PORT98_MARK, PORT98_FN0, MSEL1CR_13_0),
  890. /* Port99 */
  891. PINMUX_DATA(MEMC_AD6_MARK, PORT99_FN1),
  892. PINMUX_DATA(BBIF1_FLOW_MARK, PORT99_FN2),
  893. PINMUX_DATA(LCD1_WR_MARK, PORT99_FN6),
  894. PINMUX_DATA(LCD1_DCK_MARK, PORT99_FN7),
  895. PINMUX_DATA(IRQ14_PORT99_MARK, PORT99_FN0, MSEL1CR_14_0),
  896. /* Port100 */
  897. PINMUX_DATA(MEMC_AD7_MARK, PORT100_FN1),
  898. PINMUX_DATA(BBIF1_RX_FLOW_N_MARK, PORT100_FN2),
  899. PINMUX_DATA(LCD1_DON_MARK, PORT100_FN7),
  900. PINMUX_DATA(IRQ15_PORT100_MARK, PORT100_FN0, MSEL1CR_15_0),
  901. /* Port101 */
  902. PINMUX_DATA(FCE0_MARK, PORT101_FN1),
  903. /* Port102 */
  904. PINMUX_DATA(FRB_MARK, PORT102_FN1),
  905. PINMUX_DATA(LCD0_LCLK_PORT102_MARK, PORT102_FN4, MSEL5CR_6_0),
  906. /* Port103 */
  907. PINMUX_DATA(CS5B_MARK, PORT103_FN1),
  908. PINMUX_DATA(FCE1_MARK, PORT103_FN2),
  909. PINMUX_DATA(MMC1_CLK_PORT103_MARK, PORT103_FN3, MSEL4CR_15_1),
  910. /* Port104 */
  911. PINMUX_DATA(CS6A_MARK, PORT104_FN1),
  912. PINMUX_DATA(MMC1_CMD_PORT104_MARK, PORT104_FN3, MSEL4CR_15_1),
  913. PINMUX_DATA(IRQ11_MARK, PORT104_FN0),
  914. /* Port105 */
  915. PINMUX_DATA(CS5A_PORT105_MARK, PORT105_FN1, MSEL5CR_2_0),
  916. PINMUX_DATA(SCIFA3_RTS_PORT105_MARK, PORT105_FN4, MSEL5CR_8_0),
  917. /* Port106 */
  918. PINMUX_DATA(IOIS16_MARK, PORT106_FN1),
  919. PINMUX_DATA(IDE_EXBUF_ENB_MARK, PORT106_FN6),
  920. /* Port107 - Port115 Function */
  921. PINMUX_DATA(WE3_ICIOWR_MARK, PORT107_FN1),
  922. PINMUX_DATA(WE2_ICIORD_MARK, PORT108_FN1),
  923. PINMUX_DATA(CS0_MARK, PORT109_FN1),
  924. PINMUX_DATA(CS2_MARK, PORT110_FN1),
  925. PINMUX_DATA(CS4_MARK, PORT111_FN1),
  926. PINMUX_DATA(WE1_MARK, PORT112_FN1),
  927. PINMUX_DATA(WE0_FWE_MARK, PORT113_FN1),
  928. PINMUX_DATA(RDWR_MARK, PORT114_FN1),
  929. PINMUX_DATA(RD_FSC_MARK, PORT115_FN1),
  930. /* Port116 */
  931. PINMUX_DATA(A25_MARK, PORT116_FN1),
  932. PINMUX_DATA(MSIOF0_SS2_MARK, PORT116_FN2),
  933. PINMUX_DATA(MSIOF1_SS2_PORT116_MARK, PORT116_FN3, MSEL4CR_10_0),
  934. PINMUX_DATA(SCIFA3_SCK_PORT116_MARK, PORT116_FN4, MSEL5CR_8_0),
  935. PINMUX_DATA(GPO1_MARK, PORT116_FN5),
  936. /* Port117 */
  937. PINMUX_DATA(A24_MARK, PORT117_FN1),
  938. PINMUX_DATA(MSIOF0_SS1_MARK, PORT117_FN2),
  939. PINMUX_DATA(MSIOF1_SS1_PORT117_MARK, PORT117_FN3, MSEL4CR_10_0),
  940. PINMUX_DATA(SCIFA3_CTS_PORT117_MARK, PORT117_FN4, MSEL5CR_8_0),
  941. PINMUX_DATA(GPO0_MARK, PORT117_FN5),
  942. /* Port118 */
  943. PINMUX_DATA(A23_MARK, PORT118_FN1),
  944. PINMUX_DATA(MSIOF0_MCK1_MARK, PORT118_FN2),
  945. PINMUX_DATA(MSIOF1_RXD_PORT118_MARK, PORT118_FN3, MSEL4CR_10_0),
  946. PINMUX_DATA(GPI1_MARK, PORT118_FN5),
  947. PINMUX_DATA(IRQ9_PORT118_MARK, PORT118_FN0, MSEL1CR_9_0),
  948. /* Port119 */
  949. PINMUX_DATA(A22_MARK, PORT119_FN1),
  950. PINMUX_DATA(MSIOF0_MCK0_MARK, PORT119_FN2),
  951. PINMUX_DATA(MSIOF1_TXD_PORT119_MARK, PORT119_FN3, MSEL4CR_10_0),
  952. PINMUX_DATA(GPI0_MARK, PORT119_FN5),
  953. PINMUX_DATA(IRQ8_MARK, PORT119_FN0),
  954. /* Port120 */
  955. PINMUX_DATA(A21_MARK, PORT120_FN1),
  956. PINMUX_DATA(MSIOF0_RSYNC_MARK, PORT120_FN2),
  957. PINMUX_DATA(MSIOF1_TSYNC_PORT120_MARK, PORT120_FN3, MSEL4CR_10_0),
  958. PINMUX_DATA(IRQ7_PORT120_MARK, PORT120_FN0, MSEL1CR_7_1),
  959. /* Port121 */
  960. PINMUX_DATA(A20_MARK, PORT121_FN1),
  961. PINMUX_DATA(MSIOF0_RSCK_MARK, PORT121_FN2),
  962. PINMUX_DATA(MSIOF1_TSCK_PORT121_MARK, PORT121_FN3, MSEL4CR_10_0),
  963. PINMUX_DATA(IRQ6_PORT121_MARK, PORT121_FN0, MSEL1CR_6_0),
  964. /* Port122 */
  965. PINMUX_DATA(A19_MARK, PORT122_FN1),
  966. PINMUX_DATA(MSIOF0_RXD_MARK, PORT122_FN2),
  967. /* Port123 */
  968. PINMUX_DATA(A18_MARK, PORT123_FN1),
  969. PINMUX_DATA(MSIOF0_TSCK_MARK, PORT123_FN2),
  970. /* Port124 */
  971. PINMUX_DATA(A17_MARK, PORT124_FN1),
  972. PINMUX_DATA(MSIOF0_TSYNC_MARK, PORT124_FN2),
  973. /* Port125 - Port141 Function */
  974. PINMUX_DATA(A16_MARK, PORT125_FN1),
  975. PINMUX_DATA(A15_MARK, PORT126_FN1),
  976. PINMUX_DATA(A14_MARK, PORT127_FN1),
  977. PINMUX_DATA(A13_MARK, PORT128_FN1),
  978. PINMUX_DATA(A12_MARK, PORT129_FN1),
  979. PINMUX_DATA(A11_MARK, PORT130_FN1),
  980. PINMUX_DATA(A10_MARK, PORT131_FN1),
  981. PINMUX_DATA(A9_MARK, PORT132_FN1),
  982. PINMUX_DATA(A8_MARK, PORT133_FN1),
  983. PINMUX_DATA(A7_MARK, PORT134_FN1),
  984. PINMUX_DATA(A6_MARK, PORT135_FN1),
  985. PINMUX_DATA(A5_FCDE_MARK, PORT136_FN1),
  986. PINMUX_DATA(A4_FOE_MARK, PORT137_FN1),
  987. PINMUX_DATA(A3_MARK, PORT138_FN1),
  988. PINMUX_DATA(A2_MARK, PORT139_FN1),
  989. PINMUX_DATA(A1_MARK, PORT140_FN1),
  990. PINMUX_DATA(CKO_MARK, PORT141_FN1),
  991. /* Port142 - Port157 Function1 */
  992. PINMUX_DATA(D15_NAF15_MARK, PORT142_FN1),
  993. PINMUX_DATA(D14_NAF14_MARK, PORT143_FN1),
  994. PINMUX_DATA(D13_NAF13_MARK, PORT144_FN1),
  995. PINMUX_DATA(D12_NAF12_MARK, PORT145_FN1),
  996. PINMUX_DATA(D11_NAF11_MARK, PORT146_FN1),
  997. PINMUX_DATA(D10_NAF10_MARK, PORT147_FN1),
  998. PINMUX_DATA(D9_NAF9_MARK, PORT148_FN1),
  999. PINMUX_DATA(D8_NAF8_MARK, PORT149_FN1),
  1000. PINMUX_DATA(D7_NAF7_MARK, PORT150_FN1),
  1001. PINMUX_DATA(D6_NAF6_MARK, PORT151_FN1),
  1002. PINMUX_DATA(D5_NAF5_MARK, PORT152_FN1),
  1003. PINMUX_DATA(D4_NAF4_MARK, PORT153_FN1),
  1004. PINMUX_DATA(D3_NAF3_MARK, PORT154_FN1),
  1005. PINMUX_DATA(D2_NAF2_MARK, PORT155_FN1),
  1006. PINMUX_DATA(D1_NAF1_MARK, PORT156_FN1),
  1007. PINMUX_DATA(D0_NAF0_MARK, PORT157_FN1),
  1008. /* Port142 - Port149 Function3 */
  1009. PINMUX_DATA(MMC1_D7_PORT142_MARK, PORT142_FN3, MSEL4CR_15_1),
  1010. PINMUX_DATA(MMC1_D6_PORT143_MARK, PORT143_FN3, MSEL4CR_15_1),
  1011. PINMUX_DATA(MMC1_D5_PORT144_MARK, PORT144_FN3, MSEL4CR_15_1),
  1012. PINMUX_DATA(MMC1_D4_PORT145_MARK, PORT145_FN3, MSEL4CR_15_1),
  1013. PINMUX_DATA(MMC1_D3_PORT146_MARK, PORT146_FN3, MSEL4CR_15_1),
  1014. PINMUX_DATA(MMC1_D2_PORT147_MARK, PORT147_FN3, MSEL4CR_15_1),
  1015. PINMUX_DATA(MMC1_D1_PORT148_MARK, PORT148_FN3, MSEL4CR_15_1),
  1016. PINMUX_DATA(MMC1_D0_PORT149_MARK, PORT149_FN3, MSEL4CR_15_1),
  1017. /* Port158 */
  1018. PINMUX_DATA(D31_MARK, PORT158_FN1),
  1019. PINMUX_DATA(SCIFA3_SCK_PORT158_MARK, PORT158_FN2, MSEL5CR_8_1),
  1020. PINMUX_DATA(RMII_REF125CK_MARK, PORT158_FN3),
  1021. PINMUX_DATA(LCD0_D21_PORT158_MARK, PORT158_FN4, MSEL5CR_6_1),
  1022. PINMUX_DATA(IRDA_FIRSEL_MARK, PORT158_FN5),
  1023. PINMUX_DATA(IDE_D15_MARK, PORT158_FN6),
  1024. /* Port159 */
  1025. PINMUX_DATA(D30_MARK, PORT159_FN1),
  1026. PINMUX_DATA(SCIFA3_RXD_PORT159_MARK, PORT159_FN2, MSEL5CR_8_1),
  1027. PINMUX_DATA(RMII_REF50CK_MARK, PORT159_FN3),
  1028. PINMUX_DATA(LCD0_D23_PORT159_MARK, PORT159_FN4, MSEL5CR_6_1),
  1029. PINMUX_DATA(IDE_D14_MARK, PORT159_FN6),
  1030. /* Port160 */
  1031. PINMUX_DATA(D29_MARK, PORT160_FN1),
  1032. PINMUX_DATA(SCIFA3_TXD_PORT160_MARK, PORT160_FN2, MSEL5CR_8_1),
  1033. PINMUX_DATA(LCD0_D22_PORT160_MARK, PORT160_FN4, MSEL5CR_6_1),
  1034. PINMUX_DATA(VIO1_HD_MARK, PORT160_FN5),
  1035. PINMUX_DATA(IDE_D13_MARK, PORT160_FN6),
  1036. /* Port161 */
  1037. PINMUX_DATA(D28_MARK, PORT161_FN1),
  1038. PINMUX_DATA(SCIFA3_RTS_PORT161_MARK, PORT161_FN2, MSEL5CR_8_1),
  1039. PINMUX_DATA(ET_RX_DV_MARK, PORT161_FN3),
  1040. PINMUX_DATA(LCD0_D20_PORT161_MARK, PORT161_FN4, MSEL5CR_6_1),
  1041. PINMUX_DATA(IRDA_IN_MARK, PORT161_FN5),
  1042. PINMUX_DATA(IDE_D12_MARK, PORT161_FN6),
  1043. /* Port162 */
  1044. PINMUX_DATA(D27_MARK, PORT162_FN1),
  1045. PINMUX_DATA(SCIFA3_CTS_PORT162_MARK, PORT162_FN2, MSEL5CR_8_1),
  1046. PINMUX_DATA(LCD0_D19_PORT162_MARK, PORT162_FN4, MSEL5CR_6_1),
  1047. PINMUX_DATA(IRDA_OUT_MARK, PORT162_FN5),
  1048. PINMUX_DATA(IDE_D11_MARK, PORT162_FN6),
  1049. /* Port163 */
  1050. PINMUX_DATA(D26_MARK, PORT163_FN1),
  1051. PINMUX_DATA(MSIOF2_SS2_MARK, PORT163_FN2),
  1052. PINMUX_DATA(ET_COL_MARK, PORT163_FN3),
  1053. PINMUX_DATA(LCD0_D18_PORT163_MARK, PORT163_FN4, MSEL5CR_6_1),
  1054. PINMUX_DATA(IROUT_MARK, PORT163_FN5),
  1055. PINMUX_DATA(IDE_D10_MARK, PORT163_FN6),
  1056. /* Port164 */
  1057. PINMUX_DATA(D25_MARK, PORT164_FN1),
  1058. PINMUX_DATA(MSIOF2_TSYNC_MARK, PORT164_FN2),
  1059. PINMUX_DATA(ET_PHY_INT_MARK, PORT164_FN3),
  1060. PINMUX_DATA(LCD0_RD_MARK, PORT164_FN4),
  1061. PINMUX_DATA(IDE_D9_MARK, PORT164_FN6),
  1062. /* Port165 */
  1063. PINMUX_DATA(D24_MARK, PORT165_FN1),
  1064. PINMUX_DATA(MSIOF2_RXD_MARK, PORT165_FN2),
  1065. PINMUX_DATA(LCD0_LCLK_PORT165_MARK, PORT165_FN4, MSEL5CR_6_1),
  1066. PINMUX_DATA(IDE_D8_MARK, PORT165_FN6),
  1067. /* Port166 - Port171 Function1 */
  1068. PINMUX_DATA(D21_MARK, PORT166_FN1),
  1069. PINMUX_DATA(D20_MARK, PORT167_FN1),
  1070. PINMUX_DATA(D19_MARK, PORT168_FN1),
  1071. PINMUX_DATA(D18_MARK, PORT169_FN1),
  1072. PINMUX_DATA(D17_MARK, PORT170_FN1),
  1073. PINMUX_DATA(D16_MARK, PORT171_FN1),
  1074. /* Port166 - Port171 Function3 */
  1075. PINMUX_DATA(ET_ETXD5_MARK, PORT166_FN3),
  1076. PINMUX_DATA(ET_ETXD4_MARK, PORT167_FN3),
  1077. PINMUX_DATA(ET_ETXD3_MARK, PORT168_FN3),
  1078. PINMUX_DATA(ET_ETXD2_MARK, PORT169_FN3),
  1079. PINMUX_DATA(ET_ETXD1_MARK, PORT170_FN3),
  1080. PINMUX_DATA(ET_ETXD0_MARK, PORT171_FN3),
  1081. /* Port166 - Port171 Function6 */
  1082. PINMUX_DATA(IDE_D5_MARK, PORT166_FN6),
  1083. PINMUX_DATA(IDE_D4_MARK, PORT167_FN6),
  1084. PINMUX_DATA(IDE_D3_MARK, PORT168_FN6),
  1085. PINMUX_DATA(IDE_D2_MARK, PORT169_FN6),
  1086. PINMUX_DATA(IDE_D1_MARK, PORT170_FN6),
  1087. PINMUX_DATA(IDE_D0_MARK, PORT171_FN6),
  1088. /* Port167 - Port171 IRQ */
  1089. PINMUX_DATA(IRQ31_PORT167_MARK, PORT167_FN0, MSEL1CR_31_0),
  1090. PINMUX_DATA(IRQ27_PORT168_MARK, PORT168_FN0, MSEL1CR_27_0),
  1091. PINMUX_DATA(IRQ28_PORT169_MARK, PORT169_FN0, MSEL1CR_28_0),
  1092. PINMUX_DATA(IRQ29_PORT170_MARK, PORT170_FN0, MSEL1CR_29_0),
  1093. PINMUX_DATA(IRQ30_PORT171_MARK, PORT171_FN0, MSEL1CR_30_0),
  1094. /* Port172 */
  1095. PINMUX_DATA(D23_MARK, PORT172_FN1),
  1096. PINMUX_DATA(SCIFB_RTS_PORT172_MARK, PORT172_FN2, MSEL5CR_17_1),
  1097. PINMUX_DATA(ET_ETXD7_MARK, PORT172_FN3),
  1098. PINMUX_DATA(IDE_D7_MARK, PORT172_FN6),
  1099. PINMUX_DATA(IRQ4_PORT172_MARK, PORT172_FN0, MSEL1CR_4_1),
  1100. /* Port173 */
  1101. PINMUX_DATA(D22_MARK, PORT173_FN1),
  1102. PINMUX_DATA(SCIFB_CTS_PORT173_MARK, PORT173_FN2, MSEL5CR_17_1),
  1103. PINMUX_DATA(ET_ETXD6_MARK, PORT173_FN3),
  1104. PINMUX_DATA(IDE_D6_MARK, PORT173_FN6),
  1105. PINMUX_DATA(IRQ6_PORT173_MARK, PORT173_FN0, MSEL1CR_6_1),
  1106. /* Port174 */
  1107. PINMUX_DATA(A26_MARK, PORT174_FN1),
  1108. PINMUX_DATA(MSIOF0_TXD_MARK, PORT174_FN2),
  1109. PINMUX_DATA(ET_RX_CLK_MARK, PORT174_FN3),
  1110. PINMUX_DATA(SCIFA3_RXD_PORT174_MARK, PORT174_FN4, MSEL5CR_8_0),
  1111. /* Port175 */
  1112. PINMUX_DATA(A0_MARK, PORT175_FN1),
  1113. PINMUX_DATA(BS_MARK, PORT175_FN2),
  1114. PINMUX_DATA(ET_WOL_MARK, PORT175_FN3),
  1115. PINMUX_DATA(SCIFA3_TXD_PORT175_MARK, PORT175_FN4, MSEL5CR_8_0),
  1116. /* Port176 */
  1117. PINMUX_DATA(ET_GTX_CLK_MARK, PORT176_FN3),
  1118. /* Port177 */
  1119. PINMUX_DATA(WAIT_PORT177_MARK, PORT177_FN1, MSEL5CR_2_0),
  1120. PINMUX_DATA(ET_LINK_MARK, PORT177_FN3),
  1121. PINMUX_DATA(IDE_IOWR_MARK, PORT177_FN6),
  1122. PINMUX_DATA(SDHI2_WP_PORT177_MARK, PORT177_FN7, MSEL5CR_19_1),
  1123. /* Port178 */
  1124. PINMUX_DATA(VIO0_D12_MARK, PORT178_FN1),
  1125. PINMUX_DATA(VIO1_D4_MARK, PORT178_FN5),
  1126. PINMUX_DATA(IDE_IORD_MARK, PORT178_FN6),
  1127. /* Port179 */
  1128. PINMUX_DATA(VIO0_D11_MARK, PORT179_FN1),
  1129. PINMUX_DATA(VIO1_D3_MARK, PORT179_FN5),
  1130. PINMUX_DATA(IDE_IORDY_MARK, PORT179_FN6),
  1131. /* Port180 */
  1132. PINMUX_DATA(VIO0_D10_MARK, PORT180_FN1),
  1133. PINMUX_DATA(TPU0TO3_MARK, PORT180_FN4),
  1134. PINMUX_DATA(VIO1_D2_MARK, PORT180_FN5),
  1135. PINMUX_DATA(IDE_INT_MARK, PORT180_FN6),
  1136. PINMUX_DATA(IRQ24_MARK, PORT180_FN0),
  1137. /* Port181 */
  1138. PINMUX_DATA(VIO0_D9_MARK, PORT181_FN1),
  1139. PINMUX_DATA(VIO1_D1_MARK, PORT181_FN5),
  1140. PINMUX_DATA(IDE_RST_MARK, PORT181_FN6),
  1141. /* Port182 */
  1142. PINMUX_DATA(VIO0_D8_MARK, PORT182_FN1),
  1143. PINMUX_DATA(VIO1_D0_MARK, PORT182_FN5),
  1144. PINMUX_DATA(IDE_DIRECTION_MARK, PORT182_FN6),
  1145. /* Port183 */
  1146. PINMUX_DATA(DREQ1_MARK, PORT183_FN1),
  1147. PINMUX_DATA(BBIF2_TXD2_PORT183_MARK, PORT183_FN2, MSEL5CR_0_1),
  1148. PINMUX_DATA(ET_TX_EN_MARK, PORT183_FN3),
  1149. /* Port184 */
  1150. PINMUX_DATA(DACK1_MARK, PORT184_FN1),
  1151. PINMUX_DATA(BBIF2_TSYNC2_PORT184_MARK, PORT184_FN2, MSEL5CR_0_1),
  1152. PINMUX_DATA(ET_TX_CLK_MARK, PORT184_FN3),
  1153. /* Port185 - Port192 Function1 */
  1154. PINMUX_DATA(SCIFA1_SCK_MARK, PORT185_FN1),
  1155. PINMUX_DATA(SCIFB_RTS_PORT186_MARK, PORT186_FN1, MSEL5CR_17_0),
  1156. PINMUX_DATA(SCIFB_CTS_PORT187_MARK, PORT187_FN1, MSEL5CR_17_0),
  1157. PINMUX_DATA(SCIFA0_SCK_MARK, PORT188_FN1),
  1158. PINMUX_DATA(SCIFB_SCK_PORT190_MARK, PORT190_FN1, MSEL5CR_17_0),
  1159. PINMUX_DATA(SCIFB_RXD_PORT191_MARK, PORT191_FN1, MSEL5CR_17_0),
  1160. PINMUX_DATA(SCIFB_TXD_PORT192_MARK, PORT192_FN1, MSEL5CR_17_0),
  1161. /* Port185 - Port192 Function3 */
  1162. PINMUX_DATA(ET_ERXD0_MARK, PORT185_FN3),
  1163. PINMUX_DATA(ET_ERXD1_MARK, PORT186_FN3),
  1164. PINMUX_DATA(ET_ERXD2_MARK, PORT187_FN3),
  1165. PINMUX_DATA(ET_ERXD3_MARK, PORT188_FN3),
  1166. PINMUX_DATA(ET_ERXD4_MARK, PORT189_FN3),
  1167. PINMUX_DATA(ET_ERXD5_MARK, PORT190_FN3),
  1168. PINMUX_DATA(ET_ERXD6_MARK, PORT191_FN3),
  1169. PINMUX_DATA(ET_ERXD7_MARK, PORT192_FN3),
  1170. /* Port185 - Port192 Function6 */
  1171. PINMUX_DATA(STP1_IPCLK_MARK, PORT185_FN6),
  1172. PINMUX_DATA(STP1_IPD0_PORT186_MARK, PORT186_FN6, MSEL5CR_23_0),
  1173. PINMUX_DATA(STP1_IPEN_PORT187_MARK, PORT187_FN6, MSEL5CR_23_0),
  1174. PINMUX_DATA(STP1_IPSYNC_MARK, PORT188_FN6),
  1175. PINMUX_DATA(STP0_IPCLK_MARK, PORT189_FN6),
  1176. PINMUX_DATA(STP0_IPD0_MARK, PORT190_FN6),
  1177. PINMUX_DATA(STP0_IPEN_MARK, PORT191_FN6),
  1178. PINMUX_DATA(STP0_IPSYNC_MARK, PORT192_FN6),
  1179. /* Port193 */
  1180. PINMUX_DATA(SCIFA0_CTS_MARK, PORT193_FN1),
  1181. PINMUX_DATA(RMII_CRS_DV_MARK, PORT193_FN3),
  1182. PINMUX_DATA(STP1_IPEN_PORT193_MARK, PORT193_FN6, MSEL5CR_23_1), /* ? */
  1183. PINMUX_DATA(LCD1_D17_MARK, PORT193_FN7),
  1184. /* Port194 */
  1185. PINMUX_DATA(SCIFA0_RTS_MARK, PORT194_FN1),
  1186. PINMUX_DATA(RMII_RX_ER_MARK, PORT194_FN3),
  1187. PINMUX_DATA(STP1_IPD0_PORT194_MARK, PORT194_FN6, MSEL5CR_23_1), /* ? */
  1188. PINMUX_DATA(LCD1_D16_MARK, PORT194_FN7),
  1189. /* Port195 */
  1190. PINMUX_DATA(SCIFA1_RXD_MARK, PORT195_FN1),
  1191. PINMUX_DATA(RMII_RXD0_MARK, PORT195_FN3),
  1192. PINMUX_DATA(STP1_IPD3_MARK, PORT195_FN6),
  1193. PINMUX_DATA(LCD1_D15_MARK, PORT195_FN7),
  1194. /* Port196 */
  1195. PINMUX_DATA(SCIFA1_TXD_MARK, PORT196_FN1),
  1196. PINMUX_DATA(RMII_RXD1_MARK, PORT196_FN3),
  1197. PINMUX_DATA(STP1_IPD2_MARK, PORT196_FN6),
  1198. PINMUX_DATA(LCD1_D14_MARK, PORT196_FN7),
  1199. /* Port197 */
  1200. PINMUX_DATA(SCIFA0_RXD_MARK, PORT197_FN1),
  1201. PINMUX_DATA(VIO1_CLK_MARK, PORT197_FN5),
  1202. PINMUX_DATA(STP1_IPD5_MARK, PORT197_FN6),
  1203. PINMUX_DATA(LCD1_D19_MARK, PORT197_FN7),
  1204. /* Port198 */
  1205. PINMUX_DATA(SCIFA0_TXD_MARK, PORT198_FN1),
  1206. PINMUX_DATA(VIO1_VD_MARK, PORT198_FN5),
  1207. PINMUX_DATA(STP1_IPD4_MARK, PORT198_FN6),
  1208. PINMUX_DATA(LCD1_D18_MARK, PORT198_FN7),
  1209. /* Port199 */
  1210. PINMUX_DATA(MEMC_NWE_MARK, PORT199_FN1),
  1211. PINMUX_DATA(SCIFA2_SCK_PORT199_MARK, PORT199_FN2, MSEL5CR_7_1),
  1212. PINMUX_DATA(RMII_TX_EN_MARK, PORT199_FN3),
  1213. PINMUX_DATA(SIM_D_PORT199_MARK, PORT199_FN4, MSEL5CR_21_1),
  1214. PINMUX_DATA(STP1_IPD1_MARK, PORT199_FN6),
  1215. PINMUX_DATA(LCD1_D13_MARK, PORT199_FN7),
  1216. /* Port200 */
  1217. PINMUX_DATA(MEMC_NOE_MARK, PORT200_FN1),
  1218. PINMUX_DATA(SCIFA2_RXD_MARK, PORT200_FN2),
  1219. PINMUX_DATA(RMII_TXD0_MARK, PORT200_FN3),
  1220. PINMUX_DATA(STP0_IPD7_MARK, PORT200_FN6),
  1221. PINMUX_DATA(LCD1_D12_MARK, PORT200_FN7),
  1222. /* Port201 */
  1223. PINMUX_DATA(MEMC_WAIT_MARK, PORT201_FN1, MSEL4CR_6_0),
  1224. PINMUX_DATA(MEMC_DREQ1_MARK, PORT201_FN1, MSEL4CR_6_1),
  1225. PINMUX_DATA(SCIFA2_TXD_MARK, PORT201_FN2),
  1226. PINMUX_DATA(RMII_TXD1_MARK, PORT201_FN3),
  1227. PINMUX_DATA(STP0_IPD6_MARK, PORT201_FN6),
  1228. PINMUX_DATA(LCD1_D11_MARK, PORT201_FN7),
  1229. /* Port202 */
  1230. PINMUX_DATA(MEMC_BUSCLK_MARK, PORT202_FN1, MSEL4CR_6_0),
  1231. PINMUX_DATA(MEMC_A0_MARK, PORT202_FN1, MSEL4CR_6_1),
  1232. PINMUX_DATA(MSIOF1_SS2_PORT202_MARK, PORT202_FN2, MSEL4CR_10_1),
  1233. PINMUX_DATA(RMII_MDC_MARK, PORT202_FN3),
  1234. PINMUX_DATA(TPU0TO2_PORT202_MARK, PORT202_FN4, MSEL5CR_25_1),
  1235. PINMUX_DATA(IDE_CS0_MARK, PORT202_FN6),
  1236. PINMUX_DATA(SDHI2_CD_PORT202_MARK, PORT202_FN7, MSEL5CR_19_1),
  1237. PINMUX_DATA(IRQ21_MARK, PORT202_FN0),
  1238. /* Port203 - Port208 Function1 */
  1239. PINMUX_DATA(SDHI2_CLK_MARK, PORT203_FN1),
  1240. PINMUX_DATA(SDHI2_CMD_MARK, PORT204_FN1),
  1241. PINMUX_DATA(SDHI2_D0_MARK, PORT205_FN1),
  1242. PINMUX_DATA(SDHI2_D1_MARK, PORT206_FN1),
  1243. PINMUX_DATA(SDHI2_D2_MARK, PORT207_FN1),
  1244. PINMUX_DATA(SDHI2_D3_MARK, PORT208_FN1),
  1245. /* Port203 - Port208 Function3 */
  1246. PINMUX_DATA(ET_TX_ER_MARK, PORT203_FN3),
  1247. PINMUX_DATA(ET_RX_ER_MARK, PORT204_FN3),
  1248. PINMUX_DATA(ET_CRS_MARK, PORT205_FN3),
  1249. PINMUX_DATA(ET_MDC_MARK, PORT206_FN3),
  1250. PINMUX_DATA(ET_MDIO_MARK, PORT207_FN3),
  1251. PINMUX_DATA(RMII_MDIO_MARK, PORT208_FN3),
  1252. /* Port203 - Port208 Function6 */
  1253. PINMUX_DATA(IDE_A2_MARK, PORT203_FN6),
  1254. PINMUX_DATA(IDE_A1_MARK, PORT204_FN6),
  1255. PINMUX_DATA(IDE_A0_MARK, PORT205_FN6),
  1256. PINMUX_DATA(IDE_IODACK_MARK, PORT206_FN6),
  1257. PINMUX_DATA(IDE_IODREQ_MARK, PORT207_FN6),
  1258. PINMUX_DATA(IDE_CS1_MARK, PORT208_FN6),
  1259. /* Port203 - Port208 Function7 */
  1260. PINMUX_DATA(SCIFA4_TXD_PORT203_MARK, PORT203_FN7, MSEL5CR_12_0, MSEL5CR_11_1),
  1261. PINMUX_DATA(SCIFA4_RXD_PORT204_MARK, PORT204_FN7, MSEL5CR_12_0, MSEL5CR_11_1),
  1262. PINMUX_DATA(SCIFA4_SCK_PORT205_MARK, PORT205_FN7, MSEL5CR_10_1),
  1263. PINMUX_DATA(SCIFA5_SCK_PORT206_MARK, PORT206_FN7, MSEL5CR_13_1),
  1264. PINMUX_DATA(SCIFA5_RXD_PORT207_MARK, PORT207_FN7, MSEL5CR_15_0, MSEL5CR_14_1),
  1265. PINMUX_DATA(SCIFA5_TXD_PORT208_MARK, PORT208_FN7, MSEL5CR_15_0, MSEL5CR_14_1),
  1266. /* Port209 */
  1267. PINMUX_DATA(VBUS_MARK, PORT209_FN1),
  1268. PINMUX_DATA(IRQ7_PORT209_MARK, PORT209_FN0, MSEL1CR_7_0),
  1269. /* Port210 */
  1270. PINMUX_DATA(IRQ9_PORT210_MARK, PORT210_FN0, MSEL1CR_9_1),
  1271. PINMUX_DATA(HDMI_HPD_MARK, PORT210_FN1),
  1272. /* Port211 */
  1273. PINMUX_DATA(IRQ16_PORT211_MARK, PORT211_FN0, MSEL1CR_16_1),
  1274. PINMUX_DATA(HDMI_CEC_MARK, PORT211_FN1),
  1275. /* SDENC */
  1276. PINMUX_DATA(SDENC_CPG_MARK, MSEL4CR_19_0),
  1277. PINMUX_DATA(SDENC_DV_CLKI_MARK, MSEL4CR_19_1),
  1278. /* SYSC */
  1279. PINMUX_DATA(RESETP_PULLUP_MARK, MSEL4CR_4_0),
  1280. PINMUX_DATA(RESETP_PLAIN_MARK, MSEL4CR_4_1),
  1281. /* DEBUG */
  1282. PINMUX_DATA(EDEBGREQ_PULLDOWN_MARK, MSEL4CR_1_0),
  1283. PINMUX_DATA(EDEBGREQ_PULLUP_MARK, MSEL4CR_1_1),
  1284. PINMUX_DATA(TRACEAUD_FROM_VIO_MARK, MSEL5CR_30_0, MSEL5CR_29_0),
  1285. PINMUX_DATA(TRACEAUD_FROM_LCDC0_MARK, MSEL5CR_30_0, MSEL5CR_29_1),
  1286. PINMUX_DATA(TRACEAUD_FROM_MEMC_MARK, MSEL5CR_30_1, MSEL5CR_29_0),
  1287. };
  1288. #define R8A7740_PIN(pin, cfgs) \
  1289. { \
  1290. .name = __stringify(PORT##pin), \
  1291. .enum_id = PORT##pin##_DATA, \
  1292. .configs = cfgs, \
  1293. }
  1294. #define __I (SH_PFC_PIN_CFG_INPUT)
  1295. #define __O (SH_PFC_PIN_CFG_OUTPUT)
  1296. #define __IO (SH_PFC_PIN_CFG_INPUT | SH_PFC_PIN_CFG_OUTPUT)
  1297. #define __PD (SH_PFC_PIN_CFG_PULL_DOWN)
  1298. #define __PU (SH_PFC_PIN_CFG_PULL_UP)
  1299. #define __PUD (SH_PFC_PIN_CFG_PULL_DOWN | SH_PFC_PIN_CFG_PULL_UP)
  1300. #define R8A7740_PIN_I_PD(pin) R8A7740_PIN(pin, __I | __PD)
  1301. #define R8A7740_PIN_I_PU(pin) R8A7740_PIN(pin, __I | __PU)
  1302. #define R8A7740_PIN_I_PU_PD(pin) R8A7740_PIN(pin, __I | __PUD)
  1303. #define R8A7740_PIN_IO(pin) R8A7740_PIN(pin, __IO)
  1304. #define R8A7740_PIN_IO_PD(pin) R8A7740_PIN(pin, __IO | __PD)
  1305. #define R8A7740_PIN_IO_PU(pin) R8A7740_PIN(pin, __IO | __PU)
  1306. #define R8A7740_PIN_IO_PU_PD(pin) R8A7740_PIN(pin, __IO | __PUD)
  1307. #define R8A7740_PIN_O(pin) R8A7740_PIN(pin, __O)
  1308. #define R8A7740_PIN_O_PU_PD(pin) R8A7740_PIN(pin, __O | __PUD)
  1309. static struct sh_pfc_pin pinmux_pins[] = {
  1310. /* Table 56-1 (I/O and Pull U/D) */
  1311. R8A7740_PIN_IO_PD(0), R8A7740_PIN_IO_PD(1),
  1312. R8A7740_PIN_IO_PD(2), R8A7740_PIN_IO_PD(3),
  1313. R8A7740_PIN_IO_PD(4), R8A7740_PIN_IO_PD(5),
  1314. R8A7740_PIN_IO_PD(6), R8A7740_PIN_IO(7),
  1315. R8A7740_PIN_IO(8), R8A7740_PIN_IO(9),
  1316. R8A7740_PIN_IO_PD(10), R8A7740_PIN_IO_PD(11),
  1317. R8A7740_PIN_IO_PD(12), R8A7740_PIN_IO_PU_PD(13),
  1318. R8A7740_PIN_IO_PD(14), R8A7740_PIN_IO_PD(15),
  1319. R8A7740_PIN_IO_PD(16), R8A7740_PIN_IO_PD(17),
  1320. R8A7740_PIN_IO(18), R8A7740_PIN_IO_PU(19),
  1321. R8A7740_PIN_IO_PU_PD(20), R8A7740_PIN_IO_PD(21),
  1322. R8A7740_PIN_IO_PU_PD(22), R8A7740_PIN_IO(23),
  1323. R8A7740_PIN_IO_PU(24), R8A7740_PIN_IO_PU(25),
  1324. R8A7740_PIN_IO_PU(26), R8A7740_PIN_IO_PU(27),
  1325. R8A7740_PIN_IO_PU(28), R8A7740_PIN_IO_PU(29),
  1326. R8A7740_PIN_IO_PU(30), R8A7740_PIN_IO_PD(31),
  1327. R8A7740_PIN_IO_PD(32), R8A7740_PIN_IO_PD(33),
  1328. R8A7740_PIN_IO_PD(34), R8A7740_PIN_IO_PU(35),
  1329. R8A7740_PIN_IO_PU(36), R8A7740_PIN_IO_PD(37),
  1330. R8A7740_PIN_IO_PU(38), R8A7740_PIN_IO_PD(39),
  1331. R8A7740_PIN_IO_PU_PD(40), R8A7740_PIN_IO_PD(41),
  1332. R8A7740_PIN_IO_PD(42), R8A7740_PIN_IO_PU_PD(43),
  1333. R8A7740_PIN_IO_PU_PD(44), R8A7740_PIN_IO_PU_PD(45),
  1334. R8A7740_PIN_IO_PU_PD(46), R8A7740_PIN_IO_PU_PD(47),
  1335. R8A7740_PIN_IO_PU_PD(48), R8A7740_PIN_IO_PU_PD(49),
  1336. R8A7740_PIN_IO_PU_PD(50), R8A7740_PIN_IO_PD(51),
  1337. R8A7740_PIN_IO_PD(52), R8A7740_PIN_IO_PD(53),
  1338. R8A7740_PIN_IO_PD(54), R8A7740_PIN_IO_PU_PD(55),
  1339. R8A7740_PIN_IO_PU_PD(56), R8A7740_PIN_IO_PU_PD(57),
  1340. R8A7740_PIN_IO_PU_PD(58), R8A7740_PIN_IO_PU_PD(59),
  1341. R8A7740_PIN_IO_PU_PD(60), R8A7740_PIN_IO_PD(61),
  1342. R8A7740_PIN_IO_PD(62), R8A7740_PIN_IO_PD(63),
  1343. R8A7740_PIN_IO_PD(64), R8A7740_PIN_IO_PD(65),
  1344. R8A7740_PIN_IO_PU_PD(66), R8A7740_PIN_IO_PU_PD(67),
  1345. R8A7740_PIN_IO_PU_PD(68), R8A7740_PIN_IO_PU_PD(69),
  1346. R8A7740_PIN_IO_PU_PD(70), R8A7740_PIN_IO_PU_PD(71),
  1347. R8A7740_PIN_IO_PU_PD(72), R8A7740_PIN_IO_PU_PD(73),
  1348. R8A7740_PIN_IO_PU_PD(74), R8A7740_PIN_IO_PU_PD(75),
  1349. R8A7740_PIN_IO_PU_PD(76), R8A7740_PIN_IO_PU_PD(77),
  1350. R8A7740_PIN_IO_PU_PD(78), R8A7740_PIN_IO_PU_PD(79),
  1351. R8A7740_PIN_IO_PU_PD(80), R8A7740_PIN_IO_PU_PD(81),
  1352. R8A7740_PIN_IO(82), R8A7740_PIN_IO_PU_PD(83),
  1353. R8A7740_PIN_IO(84), R8A7740_PIN_IO_PD(85),
  1354. R8A7740_PIN_IO_PD(86), R8A7740_PIN_IO_PD(87),
  1355. R8A7740_PIN_IO_PD(88), R8A7740_PIN_IO_PD(89),
  1356. R8A7740_PIN_IO_PD(90), R8A7740_PIN_IO_PU_PD(91),
  1357. R8A7740_PIN_IO_PU_PD(92), R8A7740_PIN_IO_PU_PD(93),
  1358. R8A7740_PIN_IO_PU_PD(94), R8A7740_PIN_IO_PU_PD(95),
  1359. R8A7740_PIN_IO_PU_PD(96), R8A7740_PIN_IO_PU_PD(97),
  1360. R8A7740_PIN_IO_PU_PD(98), R8A7740_PIN_IO_PU_PD(99),
  1361. R8A7740_PIN_IO_PU_PD(100), R8A7740_PIN_IO(101),
  1362. R8A7740_PIN_IO_PU(102), R8A7740_PIN_IO_PU_PD(103),
  1363. R8A7740_PIN_IO_PU(104), R8A7740_PIN_IO_PU(105),
  1364. R8A7740_PIN_IO_PU_PD(106), R8A7740_PIN_IO(107),
  1365. R8A7740_PIN_IO(108), R8A7740_PIN_IO(109),
  1366. R8A7740_PIN_IO(110), R8A7740_PIN_IO(111),
  1367. R8A7740_PIN_IO(112), R8A7740_PIN_IO(113),
  1368. R8A7740_PIN_IO_PU_PD(114), R8A7740_PIN_IO(115),
  1369. R8A7740_PIN_IO_PD(116), R8A7740_PIN_IO_PD(117),
  1370. R8A7740_PIN_IO_PD(118), R8A7740_PIN_IO_PD(119),
  1371. R8A7740_PIN_IO_PD(120), R8A7740_PIN_IO_PD(121),
  1372. R8A7740_PIN_IO_PD(122), R8A7740_PIN_IO_PD(123),
  1373. R8A7740_PIN_IO_PD(124), R8A7740_PIN_IO(125),
  1374. R8A7740_PIN_IO(126), R8A7740_PIN_IO(127),
  1375. R8A7740_PIN_IO(128), R8A7740_PIN_IO(129),
  1376. R8A7740_PIN_IO(130), R8A7740_PIN_IO(131),
  1377. R8A7740_PIN_IO(132), R8A7740_PIN_IO(133),
  1378. R8A7740_PIN_IO(134), R8A7740_PIN_IO(135),
  1379. R8A7740_PIN_IO(136), R8A7740_PIN_IO(137),
  1380. R8A7740_PIN_IO(138), R8A7740_PIN_IO(139),
  1381. R8A7740_PIN_IO(140), R8A7740_PIN_IO(141),
  1382. R8A7740_PIN_IO_PU(142), R8A7740_PIN_IO_PU(143),
  1383. R8A7740_PIN_IO_PU(144), R8A7740_PIN_IO_PU(145),
  1384. R8A7740_PIN_IO_PU(146), R8A7740_PIN_IO_PU(147),
  1385. R8A7740_PIN_IO_PU(148), R8A7740_PIN_IO_PU(149),
  1386. R8A7740_PIN_IO_PU(150), R8A7740_PIN_IO_PU(151),
  1387. R8A7740_PIN_IO_PU(152), R8A7740_PIN_IO_PU(153),
  1388. R8A7740_PIN_IO_PU(154), R8A7740_PIN_IO_PU(155),
  1389. R8A7740_PIN_IO_PU(156), R8A7740_PIN_IO_PU(157),
  1390. R8A7740_PIN_IO_PD(158), R8A7740_PIN_IO_PD(159),
  1391. R8A7740_PIN_IO_PU_PD(160), R8A7740_PIN_IO_PD(161),
  1392. R8A7740_PIN_IO_PD(162), R8A7740_PIN_IO_PD(163),
  1393. R8A7740_PIN_IO_PD(164), R8A7740_PIN_IO_PD(165),
  1394. R8A7740_PIN_IO_PU(166), R8A7740_PIN_IO_PU(167),
  1395. R8A7740_PIN_IO_PU(168), R8A7740_PIN_IO_PU(169),
  1396. R8A7740_PIN_IO_PU(170), R8A7740_PIN_IO_PU(171),
  1397. R8A7740_PIN_IO_PD(172), R8A7740_PIN_IO_PD(173),
  1398. R8A7740_PIN_IO_PD(174), R8A7740_PIN_IO_PD(175),
  1399. R8A7740_PIN_IO_PU(176), R8A7740_PIN_IO_PU_PD(177),
  1400. R8A7740_PIN_IO_PU(178), R8A7740_PIN_IO_PD(179),
  1401. R8A7740_PIN_IO_PD(180), R8A7740_PIN_IO_PU(181),
  1402. R8A7740_PIN_IO_PU(182), R8A7740_PIN_IO(183),
  1403. R8A7740_PIN_IO_PD(184), R8A7740_PIN_IO_PD(185),
  1404. R8A7740_PIN_IO_PD(186), R8A7740_PIN_IO_PD(187),
  1405. R8A7740_PIN_IO_PD(188), R8A7740_PIN_IO_PD(189),
  1406. R8A7740_PIN_IO_PD(190), R8A7740_PIN_IO_PD(191),
  1407. R8A7740_PIN_IO_PD(192), R8A7740_PIN_IO_PU_PD(193),
  1408. R8A7740_PIN_IO_PU_PD(194), R8A7740_PIN_IO_PD(195),
  1409. R8A7740_PIN_IO_PU_PD(196), R8A7740_PIN_IO_PD(197),
  1410. R8A7740_PIN_IO_PU_PD(198), R8A7740_PIN_IO_PU_PD(199),
  1411. R8A7740_PIN_IO_PU_PD(200), R8A7740_PIN_IO_PU(201),
  1412. R8A7740_PIN_IO_PU_PD(202), R8A7740_PIN_IO(203),
  1413. R8A7740_PIN_IO_PU_PD(204), R8A7740_PIN_IO_PU_PD(205),
  1414. R8A7740_PIN_IO_PU_PD(206), R8A7740_PIN_IO_PU_PD(207),
  1415. R8A7740_PIN_IO_PU_PD(208), R8A7740_PIN_IO_PD(209),
  1416. R8A7740_PIN_IO_PD(210), R8A7740_PIN_IO_PD(211),
  1417. };
  1418. /* - BSC -------------------------------------------------------------------- */
  1419. static const unsigned int bsc_data8_pins[] = {
  1420. /* D[0:7] */
  1421. 157, 156, 155, 154, 153, 152, 151, 150,
  1422. };
  1423. static const unsigned int bsc_data8_mux[] = {
  1424. D0_NAF0_MARK, D1_NAF1_MARK, D2_NAF2_MARK, D3_NAF3_MARK,
  1425. D4_NAF4_MARK, D5_NAF5_MARK, D6_NAF6_MARK, D7_NAF7_MARK,
  1426. };
  1427. static const unsigned int bsc_data16_pins[] = {
  1428. /* D[0:15] */
  1429. 157, 156, 155, 154, 153, 152, 151, 150,
  1430. 149, 148, 147, 146, 145, 144, 143, 142,
  1431. };
  1432. static const unsigned int bsc_data16_mux[] = {
  1433. D0_NAF0_MARK, D1_NAF1_MARK, D2_NAF2_MARK, D3_NAF3_MARK,
  1434. D4_NAF4_MARK, D5_NAF5_MARK, D6_NAF6_MARK, D7_NAF7_MARK,
  1435. D8_NAF8_MARK, D9_NAF9_MARK, D10_NAF10_MARK, D11_NAF11_MARK,
  1436. D12_NAF12_MARK, D13_NAF13_MARK, D14_NAF14_MARK, D15_NAF15_MARK,
  1437. };
  1438. static const unsigned int bsc_data32_pins[] = {
  1439. /* D[0:31] */
  1440. 157, 156, 155, 154, 153, 152, 151, 150,
  1441. 149, 148, 147, 146, 145, 144, 143, 142,
  1442. 171, 170, 169, 168, 167, 166, 173, 172,
  1443. 165, 164, 163, 162, 161, 160, 159, 158,
  1444. };
  1445. static const unsigned int bsc_data32_mux[] = {
  1446. D0_NAF0_MARK, D1_NAF1_MARK, D2_NAF2_MARK, D3_NAF3_MARK,
  1447. D4_NAF4_MARK, D5_NAF5_MARK, D6_NAF6_MARK, D7_NAF7_MARK,
  1448. D8_NAF8_MARK, D9_NAF9_MARK, D10_NAF10_MARK, D11_NAF11_MARK,
  1449. D12_NAF12_MARK, D13_NAF13_MARK, D14_NAF14_MARK, D15_NAF15_MARK,
  1450. D16_MARK, D17_MARK, D18_MARK, D19_MARK,
  1451. D20_MARK, D21_MARK, D22_MARK, D23_MARK,
  1452. D24_MARK, D25_MARK, D26_MARK, D27_MARK,
  1453. D28_MARK, D29_MARK, D30_MARK, D31_MARK,
  1454. };
  1455. static const unsigned int bsc_cs0_pins[] = {
  1456. /* CS */
  1457. 109,
  1458. };
  1459. static const unsigned int bsc_cs0_mux[] = {
  1460. CS0_MARK,
  1461. };
  1462. static const unsigned int bsc_cs2_pins[] = {
  1463. /* CS */
  1464. 110,
  1465. };
  1466. static const unsigned int bsc_cs2_mux[] = {
  1467. CS2_MARK,
  1468. };
  1469. static const unsigned int bsc_cs4_pins[] = {
  1470. /* CS */
  1471. 111,
  1472. };
  1473. static const unsigned int bsc_cs4_mux[] = {
  1474. CS4_MARK,
  1475. };
  1476. static const unsigned int bsc_cs5a_0_pins[] = {
  1477. /* CS */
  1478. 105,
  1479. };
  1480. static const unsigned int bsc_cs5a_0_mux[] = {
  1481. CS5A_PORT105_MARK,
  1482. };
  1483. static const unsigned int bsc_cs5a_1_pins[] = {
  1484. /* CS */
  1485. 19,
  1486. };
  1487. static const unsigned int bsc_cs5a_1_mux[] = {
  1488. CS5A_PORT19_MARK,
  1489. };
  1490. static const unsigned int bsc_cs5b_pins[] = {
  1491. /* CS */
  1492. 103,
  1493. };
  1494. static const unsigned int bsc_cs5b_mux[] = {
  1495. CS5B_MARK,
  1496. };
  1497. static const unsigned int bsc_cs6a_pins[] = {
  1498. /* CS */
  1499. 104,
  1500. };
  1501. static const unsigned int bsc_cs6a_mux[] = {
  1502. CS6A_MARK,
  1503. };
  1504. static const unsigned int bsc_rd_we8_pins[] = {
  1505. /* RD, WE[0] */
  1506. 115, 113,
  1507. };
  1508. static const unsigned int bsc_rd_we8_mux[] = {
  1509. RD_FSC_MARK, WE0_FWE_MARK,
  1510. };
  1511. static const unsigned int bsc_rd_we16_pins[] = {
  1512. /* RD, WE[0:1] */
  1513. 115, 113, 112,
  1514. };
  1515. static const unsigned int bsc_rd_we16_mux[] = {
  1516. RD_FSC_MARK, WE0_FWE_MARK, WE1_MARK,
  1517. };
  1518. static const unsigned int bsc_rd_we32_pins[] = {
  1519. /* RD, WE[0:3] */
  1520. 115, 113, 112, 108, 107,
  1521. };
  1522. static const unsigned int bsc_rd_we32_mux[] = {
  1523. RD_FSC_MARK, WE0_FWE_MARK, WE1_MARK, WE2_ICIORD_MARK, WE3_ICIOWR_MARK,
  1524. };
  1525. static const unsigned int bsc_bs_pins[] = {
  1526. /* BS */
  1527. 175,
  1528. };
  1529. static const unsigned int bsc_bs_mux[] = {
  1530. BS_MARK,
  1531. };
  1532. static const unsigned int bsc_rdwr_pins[] = {
  1533. /* RDWR */
  1534. 114,
  1535. };
  1536. static const unsigned int bsc_rdwr_mux[] = {
  1537. RDWR_MARK,
  1538. };
  1539. /* - CEU0 ------------------------------------------------------------------- */
  1540. static const unsigned int ceu0_data_0_7_pins[] = {
  1541. /* D[0:7] */
  1542. 34, 33, 32, 31, 30, 29, 28, 27,
  1543. };
  1544. static const unsigned int ceu0_data_0_7_mux[] = {
  1545. VIO0_D0_MARK, VIO0_D1_MARK, VIO0_D2_MARK, VIO0_D3_MARK,
  1546. VIO0_D4_MARK, VIO0_D5_MARK, VIO0_D6_MARK, VIO0_D7_MARK,
  1547. };
  1548. static const unsigned int ceu0_data_8_15_0_pins[] = {
  1549. /* D[8:15] */
  1550. 182, 181, 180, 179, 178, 26, 25, 24,
  1551. };
  1552. static const unsigned int ceu0_data_8_15_0_mux[] = {
  1553. VIO0_D8_MARK, VIO0_D9_MARK, VIO0_D10_MARK, VIO0_D11_MARK,
  1554. VIO0_D12_MARK, VIO0_D13_PORT26_MARK, VIO0_D14_PORT25_MARK,
  1555. VIO0_D15_PORT24_MARK,
  1556. };
  1557. static const unsigned int ceu0_data_8_15_1_pins[] = {
  1558. /* D[8:15] */
  1559. 182, 181, 180, 179, 178, 22, 95, 96,
  1560. };
  1561. static const unsigned int ceu0_data_8_15_1_mux[] = {
  1562. VIO0_D8_MARK, VIO0_D9_MARK, VIO0_D10_MARK, VIO0_D11_MARK,
  1563. VIO0_D12_MARK, VIO0_D13_PORT22_MARK, VIO0_D14_PORT95_MARK,
  1564. VIO0_D15_PORT96_MARK,
  1565. };
  1566. static const unsigned int ceu0_clk_0_pins[] = {
  1567. /* CKO */
  1568. 36,
  1569. };
  1570. static const unsigned int ceu0_clk_0_mux[] = {
  1571. VIO_CKO_MARK,
  1572. };
  1573. static const unsigned int ceu0_clk_1_pins[] = {
  1574. /* CKO */
  1575. 14,
  1576. };
  1577. static const unsigned int ceu0_clk_1_mux[] = {
  1578. VIO_CKO1_MARK,
  1579. };
  1580. static const unsigned int ceu0_clk_2_pins[] = {
  1581. /* CKO */
  1582. 15,
  1583. };
  1584. static const unsigned int ceu0_clk_2_mux[] = {
  1585. VIO_CKO2_MARK,
  1586. };
  1587. static const unsigned int ceu0_sync_pins[] = {
  1588. /* CLK, VD, HD */
  1589. 35, 39, 37,
  1590. };
  1591. static const unsigned int ceu0_sync_mux[] = {
  1592. VIO0_CLK_MARK, VIO0_VD_MARK, VIO0_HD_MARK,
  1593. };
  1594. static const unsigned int ceu0_field_pins[] = {
  1595. /* FIELD */
  1596. 38,
  1597. };
  1598. static const unsigned int ceu0_field_mux[] = {
  1599. VIO0_FIELD_MARK,
  1600. };
  1601. /* - CEU1 ------------------------------------------------------------------- */
  1602. static const unsigned int ceu1_data_pins[] = {
  1603. /* D[0:7] */
  1604. 182, 181, 180, 179, 178, 26, 25, 24,
  1605. };
  1606. static const unsigned int ceu1_data_mux[] = {
  1607. VIO1_D0_MARK, VIO1_D1_MARK, VIO1_D2_MARK, VIO1_D3_MARK,
  1608. VIO1_D4_MARK, VIO1_D5_MARK, VIO1_D6_MARK, VIO1_D7_MARK,
  1609. };
  1610. static const unsigned int ceu1_clk_pins[] = {
  1611. /* CKO */
  1612. 23,
  1613. };
  1614. static const unsigned int ceu1_clk_mux[] = {
  1615. VIO_CKO_1_MARK,
  1616. };
  1617. static const unsigned int ceu1_sync_pins[] = {
  1618. /* CLK, VD, HD */
  1619. 197, 198, 160,
  1620. };
  1621. static const unsigned int ceu1_sync_mux[] = {
  1622. VIO1_CLK_MARK, VIO1_VD_MARK, VIO1_HD_MARK,
  1623. };
  1624. static const unsigned int ceu1_field_pins[] = {
  1625. /* FIELD */
  1626. 21,
  1627. };
  1628. static const unsigned int ceu1_field_mux[] = {
  1629. VIO1_FIELD_MARK,
  1630. };
  1631. /* - FSIA ------------------------------------------------------------------- */
  1632. static const unsigned int fsia_mclk_in_pins[] = {
  1633. /* CK */
  1634. 11,
  1635. };
  1636. static const unsigned int fsia_mclk_in_mux[] = {
  1637. FSIACK_MARK,
  1638. };
  1639. static const unsigned int fsia_mclk_out_pins[] = {
  1640. /* OMC */
  1641. 10,
  1642. };
  1643. static const unsigned int fsia_mclk_out_mux[] = {
  1644. FSIAOMC_MARK,
  1645. };
  1646. static const unsigned int fsia_sclk_in_pins[] = {
  1647. /* ILR, IBT */
  1648. 12, 13,
  1649. };
  1650. static const unsigned int fsia_sclk_in_mux[] = {
  1651. FSIAILR_MARK, FSIAIBT_MARK,
  1652. };
  1653. static const unsigned int fsia_sclk_out_pins[] = {
  1654. /* OLR, OBT */
  1655. 7, 8,
  1656. };
  1657. static const unsigned int fsia_sclk_out_mux[] = {
  1658. FSIAOLR_MARK, FSIAOBT_MARK,
  1659. };
  1660. static const unsigned int fsia_data_in_0_pins[] = {
  1661. /* ISLD */
  1662. 0,
  1663. };
  1664. static const unsigned int fsia_data_in_0_mux[] = {
  1665. FSIAISLD_PORT0_MARK,
  1666. };
  1667. static const unsigned int fsia_data_in_1_pins[] = {
  1668. /* ISLD */
  1669. 5,
  1670. };
  1671. static const unsigned int fsia_data_in_1_mux[] = {
  1672. FSIAISLD_PORT5_MARK,
  1673. };
  1674. static const unsigned int fsia_data_out_0_pins[] = {
  1675. /* OSLD */
  1676. 9,
  1677. };
  1678. static const unsigned int fsia_data_out_0_mux[] = {
  1679. FSIAOSLD_MARK,
  1680. };
  1681. static const unsigned int fsia_data_out_1_pins[] = {
  1682. /* OSLD */
  1683. 0,
  1684. };
  1685. static const unsigned int fsia_data_out_1_mux[] = {
  1686. FSIAOSLD1_MARK,
  1687. };
  1688. static const unsigned int fsia_data_out_2_pins[] = {
  1689. /* OSLD */
  1690. 1,
  1691. };
  1692. static const unsigned int fsia_data_out_2_mux[] = {
  1693. FSIAOSLD2_MARK,
  1694. };
  1695. static const unsigned int fsia_spdif_0_pins[] = {
  1696. /* SPDIF */
  1697. 9,
  1698. };
  1699. static const unsigned int fsia_spdif_0_mux[] = {
  1700. FSIASPDIF_PORT9_MARK,
  1701. };
  1702. static const unsigned int fsia_spdif_1_pins[] = {
  1703. /* SPDIF */
  1704. 18,
  1705. };
  1706. static const unsigned int fsia_spdif_1_mux[] = {
  1707. FSIASPDIF_PORT18_MARK,
  1708. };
  1709. /* - FSIB ------------------------------------------------------------------- */
  1710. static const unsigned int fsib_mclk_in_pins[] = {
  1711. /* CK */
  1712. 11,
  1713. };
  1714. static const unsigned int fsib_mclk_in_mux[] = {
  1715. FSIBCK_MARK,
  1716. };
  1717. /* - GETHER ----------------------------------------------------------------- */
  1718. static const unsigned int gether_rmii_pins[] = {
  1719. /* RXD[0:1], RX_ER, CRS_DV, TXD[0:1], TX_EN, REF_CLK, MDC, MDIO */
  1720. 195, 196, 194, 193, 200, 201, 199, 159, 202, 208,
  1721. };
  1722. static const unsigned int gether_rmii_mux[] = {
  1723. RMII_RXD0_MARK, RMII_RXD1_MARK, RMII_RX_ER_MARK, RMII_CRS_DV_MARK,
  1724. RMII_TXD0_MARK, RMII_TXD1_MARK, RMII_TX_EN_MARK, RMII_REF50CK_MARK,
  1725. RMII_MDC_MARK, RMII_MDIO_MARK,
  1726. };
  1727. static const unsigned int gether_mii_pins[] = {
  1728. /* RXD[0:3], RX_CLK, RX_DV, RX_ER
  1729. * TXD[0:3], TX_CLK, TX_EN, TX_ER
  1730. * CRS, COL, MDC, MDIO,
  1731. */
  1732. 185, 186, 187, 188, 174, 161, 204,
  1733. 171, 170, 169, 168, 184, 183, 203,
  1734. 205, 163, 206, 207,
  1735. };
  1736. static const unsigned int gether_mii_mux[] = {
  1737. ET_ERXD0_MARK, ET_ERXD1_MARK, ET_ERXD2_MARK, ET_ERXD3_MARK,
  1738. ET_RX_CLK_MARK, ET_RX_DV_MARK, ET_RX_ER_MARK,
  1739. ET_ETXD0_MARK, ET_ETXD1_MARK, ET_ETXD2_MARK, ET_ETXD3_MARK,
  1740. ET_TX_CLK_MARK, ET_TX_EN_MARK, ET_TX_ER_MARK,
  1741. ET_CRS_MARK, ET_COL_MARK, ET_MDC_MARK, ET_MDIO_MARK,
  1742. };
  1743. static const unsigned int gether_gmii_pins[] = {
  1744. /* RXD[0:7], RX_CLK, RX_DV, RX_ER
  1745. * TXD[0:7], GTX_CLK, TX_CLK, TX_EN, TX_ER
  1746. * CRS, COL, MDC, MDIO, REF125CK_MARK,
  1747. */
  1748. 185, 186, 187, 188, 189, 190, 191, 192, 174, 161, 204,
  1749. 171, 170, 169, 168, 167, 166, 173, 172, 176, 184, 183, 203,
  1750. 205, 163, 206, 207,
  1751. };
  1752. static const unsigned int gether_gmii_mux[] = {
  1753. ET_ERXD0_MARK, ET_ERXD1_MARK, ET_ERXD2_MARK, ET_ERXD3_MARK,
  1754. ET_ERXD4_MARK, ET_ERXD5_MARK, ET_ERXD6_MARK, ET_ERXD7_MARK,
  1755. ET_RX_CLK_MARK, ET_RX_DV_MARK, ET_RX_ER_MARK,
  1756. ET_ETXD0_MARK, ET_ETXD1_MARK, ET_ETXD2_MARK, ET_ETXD3_MARK,
  1757. ET_ETXD4_MARK, ET_ETXD5_MARK, ET_ETXD6_MARK, ET_ETXD7_MARK,
  1758. ET_GTX_CLK_MARK, ET_TX_CLK_MARK, ET_TX_EN_MARK, ET_TX_ER_MARK,
  1759. ET_CRS_MARK, ET_COL_MARK, ET_MDC_MARK, ET_MDIO_MARK,
  1760. RMII_REF125CK_MARK,
  1761. };
  1762. static const unsigned int gether_int_pins[] = {
  1763. /* PHY_INT */
  1764. 164,
  1765. };
  1766. static const unsigned int gether_int_mux[] = {
  1767. ET_PHY_INT_MARK,
  1768. };
  1769. static const unsigned int gether_link_pins[] = {
  1770. /* LINK */
  1771. 177,
  1772. };
  1773. static const unsigned int gether_link_mux[] = {
  1774. ET_LINK_MARK,
  1775. };
  1776. static const unsigned int gether_wol_pins[] = {
  1777. /* WOL */
  1778. 175,
  1779. };
  1780. static const unsigned int gether_wol_mux[] = {
  1781. ET_WOL_MARK,
  1782. };
  1783. /* - HDMI ------------------------------------------------------------------- */
  1784. static const unsigned int hdmi_pins[] = {
  1785. /* HPD, CEC */
  1786. 210, 211,
  1787. };
  1788. static const unsigned int hdmi_mux[] = {
  1789. HDMI_HPD_MARK, HDMI_CEC_MARK,
  1790. };
  1791. /* - INTC ------------------------------------------------------------------- */
  1792. IRQC_PINS_MUX(0, 0, 2);
  1793. IRQC_PINS_MUX(0, 1, 13);
  1794. IRQC_PIN_MUX(1, 20);
  1795. IRQC_PINS_MUX(2, 0, 11);
  1796. IRQC_PINS_MUX(2, 1, 12);
  1797. IRQC_PINS_MUX(3, 0, 10);
  1798. IRQC_PINS_MUX(3, 1, 14);
  1799. IRQC_PINS_MUX(4, 0, 15);
  1800. IRQC_PINS_MUX(4, 1, 172);
  1801. IRQC_PINS_MUX(5, 0, 0);
  1802. IRQC_PINS_MUX(5, 1, 1);
  1803. IRQC_PINS_MUX(6, 0, 121);
  1804. IRQC_PINS_MUX(6, 1, 173);
  1805. IRQC_PINS_MUX(7, 0, 120);
  1806. IRQC_PINS_MUX(7, 1, 209);
  1807. IRQC_PIN_MUX(8, 119);
  1808. IRQC_PINS_MUX(9, 0, 118);
  1809. IRQC_PINS_MUX(9, 1, 210);
  1810. IRQC_PIN_MUX(10, 19);
  1811. IRQC_PIN_MUX(11, 104);
  1812. IRQC_PINS_MUX(12, 0, 42);
  1813. IRQC_PINS_MUX(12, 1, 97);
  1814. IRQC_PINS_MUX(13, 0, 64);
  1815. IRQC_PINS_MUX(13, 1, 98);
  1816. IRQC_PINS_MUX(14, 0, 63);
  1817. IRQC_PINS_MUX(14, 1, 99);
  1818. IRQC_PINS_MUX(15, 0, 62);
  1819. IRQC_PINS_MUX(15, 1, 100);
  1820. IRQC_PINS_MUX(16, 0, 68);
  1821. IRQC_PINS_MUX(16, 1, 211);
  1822. IRQC_PIN_MUX(17, 69);
  1823. IRQC_PIN_MUX(18, 70);
  1824. IRQC_PIN_MUX(19, 71);
  1825. IRQC_PIN_MUX(20, 67);
  1826. IRQC_PIN_MUX(21, 202);
  1827. IRQC_PIN_MUX(22, 95);
  1828. IRQC_PIN_MUX(23, 96);
  1829. IRQC_PIN_MUX(24, 180);
  1830. IRQC_PIN_MUX(25, 38);
  1831. IRQC_PINS_MUX(26, 0, 58);
  1832. IRQC_PINS_MUX(26, 1, 81);
  1833. IRQC_PINS_MUX(27, 0, 57);
  1834. IRQC_PINS_MUX(27, 1, 168);
  1835. IRQC_PINS_MUX(28, 0, 56);
  1836. IRQC_PINS_MUX(28, 1, 169);
  1837. IRQC_PINS_MUX(29, 0, 50);
  1838. IRQC_PINS_MUX(29, 1, 170);
  1839. IRQC_PINS_MUX(30, 0, 49);
  1840. IRQC_PINS_MUX(30, 1, 171);
  1841. IRQC_PINS_MUX(31, 0, 41);
  1842. IRQC_PINS_MUX(31, 1, 167);
  1843. /* - LCD0 ------------------------------------------------------------------- */
  1844. static const unsigned int lcd0_data8_pins[] = {
  1845. /* D[0:7] */
  1846. 58, 57, 56, 55, 54, 53, 52, 51,
  1847. };
  1848. static const unsigned int lcd0_data8_mux[] = {
  1849. LCD0_D0_MARK, LCD0_D1_MARK, LCD0_D2_MARK, LCD0_D3_MARK,
  1850. LCD0_D4_MARK, LCD0_D5_MARK, LCD0_D6_MARK, LCD0_D7_MARK,
  1851. };
  1852. static const unsigned int lcd0_data9_pins[] = {
  1853. /* D[0:8] */
  1854. 58, 57, 56, 55, 54, 53, 52, 51,
  1855. 50,
  1856. };
  1857. static const unsigned int lcd0_data9_mux[] = {
  1858. LCD0_D0_MARK, LCD0_D1_MARK, LCD0_D2_MARK, LCD0_D3_MARK,
  1859. LCD0_D4_MARK, LCD0_D5_MARK, LCD0_D6_MARK, LCD0_D7_MARK,
  1860. LCD0_D8_MARK,
  1861. };
  1862. static const unsigned int lcd0_data12_pins[] = {
  1863. /* D[0:11] */
  1864. 58, 57, 56, 55, 54, 53, 52, 51,
  1865. 50, 49, 48, 47,
  1866. };
  1867. static const unsigned int lcd0_data12_mux[] = {
  1868. LCD0_D0_MARK, LCD0_D1_MARK, LCD0_D2_MARK, LCD0_D3_MARK,
  1869. LCD0_D4_MARK, LCD0_D5_MARK, LCD0_D6_MARK, LCD0_D7_MARK,
  1870. LCD0_D8_MARK, LCD0_D9_MARK, LCD0_D10_MARK, LCD0_D11_MARK,
  1871. };
  1872. static const unsigned int lcd0_data16_pins[] = {
  1873. /* D[0:15] */
  1874. 58, 57, 56, 55, 54, 53, 52, 51,
  1875. 50, 49, 48, 47, 46, 45, 44, 43,
  1876. };
  1877. static const unsigned int lcd0_data16_mux[] = {
  1878. LCD0_D0_MARK, LCD0_D1_MARK, LCD0_D2_MARK, LCD0_D3_MARK,
  1879. LCD0_D4_MARK, LCD0_D5_MARK, LCD0_D6_MARK, LCD0_D7_MARK,
  1880. LCD0_D8_MARK, LCD0_D9_MARK, LCD0_D10_MARK, LCD0_D11_MARK,
  1881. LCD0_D12_MARK, LCD0_D13_MARK, LCD0_D14_MARK, LCD0_D15_MARK,
  1882. };
  1883. static const unsigned int lcd0_data18_pins[] = {
  1884. /* D[0:17] */
  1885. 58, 57, 56, 55, 54, 53, 52, 51,
  1886. 50, 49, 48, 47, 46, 45, 44, 43,
  1887. 42, 41,
  1888. };
  1889. static const unsigned int lcd0_data18_mux[] = {
  1890. LCD0_D0_MARK, LCD0_D1_MARK, LCD0_D2_MARK, LCD0_D3_MARK,
  1891. LCD0_D4_MARK, LCD0_D5_MARK, LCD0_D6_MARK, LCD0_D7_MARK,
  1892. LCD0_D8_MARK, LCD0_D9_MARK, LCD0_D10_MARK, LCD0_D11_MARK,
  1893. LCD0_D12_MARK, LCD0_D13_MARK, LCD0_D14_MARK, LCD0_D15_MARK,
  1894. LCD0_D16_MARK, LCD0_D17_MARK,
  1895. };
  1896. static const unsigned int lcd0_data24_0_pins[] = {
  1897. /* D[0:23] */
  1898. 58, 57, 56, 55, 54, 53, 52, 51,
  1899. 50, 49, 48, 47, 46, 45, 44, 43,
  1900. 42, 41, 40, 4, 3, 2, 0, 1,
  1901. };
  1902. static const unsigned int lcd0_data24_0_mux[] = {
  1903. LCD0_D0_MARK, LCD0_D1_MARK, LCD0_D2_MARK, LCD0_D3_MARK,
  1904. LCD0_D4_MARK, LCD0_D5_MARK, LCD0_D6_MARK, LCD0_D7_MARK,
  1905. LCD0_D8_MARK, LCD0_D9_MARK, LCD0_D10_MARK, LCD0_D11_MARK,
  1906. LCD0_D12_MARK, LCD0_D13_MARK, LCD0_D14_MARK, LCD0_D15_MARK,
  1907. LCD0_D16_MARK, LCD0_D17_MARK, LCD0_D18_PORT40_MARK, LCD0_D19_PORT4_MARK,
  1908. LCD0_D20_PORT3_MARK, LCD0_D21_PORT2_MARK, LCD0_D22_PORT0_MARK,
  1909. LCD0_D23_PORT1_MARK,
  1910. };
  1911. static const unsigned int lcd0_data24_1_pins[] = {
  1912. /* D[0:23] */
  1913. 58, 57, 56, 55, 54, 53, 52, 51,
  1914. 50, 49, 48, 47, 46, 45, 44, 43,
  1915. 42, 41, 163, 162, 161, 158, 160, 159,
  1916. };
  1917. static const unsigned int lcd0_data24_1_mux[] = {
  1918. LCD0_D0_MARK, LCD0_D1_MARK, LCD0_D2_MARK, LCD0_D3_MARK,
  1919. LCD0_D4_MARK, LCD0_D5_MARK, LCD0_D6_MARK, LCD0_D7_MARK,
  1920. LCD0_D8_MARK, LCD0_D9_MARK, LCD0_D10_MARK, LCD0_D11_MARK,
  1921. LCD0_D16_MARK, LCD0_D17_MARK, LCD0_D18_PORT163_MARK,
  1922. LCD0_D19_PORT162_MARK, LCD0_D20_PORT161_MARK, LCD0_D21_PORT158_MARK,
  1923. LCD0_D22_PORT160_MARK, LCD0_D23_PORT159_MARK,
  1924. };
  1925. static const unsigned int lcd0_display_pins[] = {
  1926. /* DON, VCPWC, VEPWC */
  1927. 61, 59, 60,
  1928. };
  1929. static const unsigned int lcd0_display_mux[] = {
  1930. LCD0_DON_MARK, LCD0_VCPWC_MARK, LCD0_VEPWC_MARK,
  1931. };
  1932. static const unsigned int lcd0_lclk_0_pins[] = {
  1933. /* LCLK */
  1934. 102,
  1935. };
  1936. static const unsigned int lcd0_lclk_0_mux[] = {
  1937. LCD0_LCLK_PORT102_MARK,
  1938. };
  1939. static const unsigned int lcd0_lclk_1_pins[] = {
  1940. /* LCLK */
  1941. 165,
  1942. };
  1943. static const unsigned int lcd0_lclk_1_mux[] = {
  1944. LCD0_LCLK_PORT165_MARK,
  1945. };
  1946. static const unsigned int lcd0_sync_pins[] = {
  1947. /* VSYN, HSYN, DCK, DISP */
  1948. 63, 64, 62, 65,
  1949. };
  1950. static const unsigned int lcd0_sync_mux[] = {
  1951. LCD0_VSYN_MARK, LCD0_HSYN_MARK, LCD0_DCK_MARK, LCD0_DISP_MARK,
  1952. };
  1953. static const unsigned int lcd0_sys_pins[] = {
  1954. /* CS, WR, RD, RS */
  1955. 64, 62, 164, 65,
  1956. };
  1957. static const unsigned int lcd0_sys_mux[] = {
  1958. LCD0_CS_MARK, LCD0_WR_MARK, LCD0_RD_MARK, LCD0_RS_MARK,
  1959. };
  1960. /* - LCD1 ------------------------------------------------------------------- */
  1961. static const unsigned int lcd1_data8_pins[] = {
  1962. /* D[0:7] */
  1963. 4, 3, 2, 1, 0, 91, 92, 23,
  1964. };
  1965. static const unsigned int lcd1_data8_mux[] = {
  1966. LCD1_D0_MARK, LCD1_D1_MARK, LCD1_D2_MARK, LCD1_D3_MARK,
  1967. LCD1_D4_MARK, LCD1_D5_MARK, LCD1_D6_MARK, LCD1_D7_MARK,
  1968. };
  1969. static const unsigned int lcd1_data9_pins[] = {
  1970. /* D[0:8] */
  1971. 4, 3, 2, 1, 0, 91, 92, 23,
  1972. 93,
  1973. };
  1974. static const unsigned int lcd1_data9_mux[] = {
  1975. LCD1_D0_MARK, LCD1_D1_MARK, LCD1_D2_MARK, LCD1_D3_MARK,
  1976. LCD1_D4_MARK, LCD1_D5_MARK, LCD1_D6_MARK, LCD1_D7_MARK,
  1977. LCD1_D8_MARK,
  1978. };
  1979. static const unsigned int lcd1_data12_pins[] = {
  1980. /* D[0:12] */
  1981. 4, 3, 2, 1, 0, 91, 92, 23,
  1982. 93, 94, 21, 201,
  1983. };
  1984. static const unsigned int lcd1_data12_mux[] = {
  1985. LCD1_D0_MARK, LCD1_D1_MARK, LCD1_D2_MARK, LCD1_D3_MARK,
  1986. LCD1_D4_MARK, LCD1_D5_MARK, LCD1_D6_MARK, LCD1_D7_MARK,
  1987. LCD1_D8_MARK, LCD1_D9_MARK, LCD1_D10_MARK, LCD1_D11_MARK,
  1988. };
  1989. static const unsigned int lcd1_data16_pins[] = {
  1990. /* D[0:15] */
  1991. 4, 3, 2, 1, 0, 91, 92, 23,
  1992. 93, 94, 21, 201, 200, 199, 196, 195,
  1993. };
  1994. static const unsigned int lcd1_data16_mux[] = {
  1995. LCD1_D0_MARK, LCD1_D1_MARK, LCD1_D2_MARK, LCD1_D3_MARK,
  1996. LCD1_D4_MARK, LCD1_D5_MARK, LCD1_D6_MARK, LCD1_D7_MARK,
  1997. LCD1_D8_MARK, LCD1_D9_MARK, LCD1_D10_MARK, LCD1_D11_MARK,
  1998. LCD1_D12_MARK, LCD1_D13_MARK, LCD1_D14_MARK, LCD1_D15_MARK,
  1999. };
  2000. static const unsigned int lcd1_data18_pins[] = {
  2001. /* D[0:17] */
  2002. 4, 3, 2, 1, 0, 91, 92, 23,
  2003. 93, 94, 21, 201, 200, 199, 196, 195,
  2004. 194, 193,
  2005. };
  2006. static const unsigned int lcd1_data18_mux[] = {
  2007. LCD1_D0_MARK, LCD1_D1_MARK, LCD1_D2_MARK, LCD1_D3_MARK,
  2008. LCD1_D4_MARK, LCD1_D5_MARK, LCD1_D6_MARK, LCD1_D7_MARK,
  2009. LCD1_D8_MARK, LCD1_D9_MARK, LCD1_D10_MARK, LCD1_D11_MARK,
  2010. LCD1_D12_MARK, LCD1_D13_MARK, LCD1_D14_MARK, LCD1_D15_MARK,
  2011. LCD1_D16_MARK, LCD1_D17_MARK,
  2012. };
  2013. static const unsigned int lcd1_data24_pins[] = {
  2014. /* D[0:23] */
  2015. 4, 3, 2, 1, 0, 91, 92, 23,
  2016. 93, 94, 21, 201, 200, 199, 196, 195,
  2017. 194, 193, 198, 197, 75, 74, 15, 14,
  2018. };
  2019. static const unsigned int lcd1_data24_mux[] = {
  2020. LCD1_D0_MARK, LCD1_D1_MARK, LCD1_D2_MARK, LCD1_D3_MARK,
  2021. LCD1_D4_MARK, LCD1_D5_MARK, LCD1_D6_MARK, LCD1_D7_MARK,
  2022. LCD1_D8_MARK, LCD1_D9_MARK, LCD1_D10_MARK, LCD1_D11_MARK,
  2023. LCD1_D12_MARK, LCD1_D13_MARK, LCD1_D14_MARK, LCD1_D15_MARK,
  2024. LCD1_D16_MARK, LCD1_D17_MARK, LCD1_D18_MARK, LCD1_D19_MARK,
  2025. LCD1_D20_MARK, LCD1_D21_MARK, LCD1_D22_MARK, LCD1_D23_MARK,
  2026. };
  2027. static const unsigned int lcd1_display_pins[] = {
  2028. /* DON, VCPWC, VEPWC */
  2029. 100, 5, 6,
  2030. };
  2031. static const unsigned int lcd1_display_mux[] = {
  2032. LCD1_DON_MARK, LCD1_VCPWC_MARK, LCD1_VEPWC_MARK,
  2033. };
  2034. static const unsigned int lcd1_lclk_pins[] = {
  2035. /* LCLK */
  2036. 40,
  2037. };
  2038. static const unsigned int lcd1_lclk_mux[] = {
  2039. LCD1_LCLK_MARK,
  2040. };
  2041. static const unsigned int lcd1_sync_pins[] = {
  2042. /* VSYN, HSYN, DCK, DISP */
  2043. 98, 97, 99, 12,
  2044. };
  2045. static const unsigned int lcd1_sync_mux[] = {
  2046. LCD1_VSYN_MARK, LCD1_HSYN_MARK, LCD1_DCK_MARK, LCD1_DISP_MARK,
  2047. };
  2048. static const unsigned int lcd1_sys_pins[] = {
  2049. /* CS, WR, RD, RS */
  2050. 97, 99, 13, 12,
  2051. };
  2052. static const unsigned int lcd1_sys_mux[] = {
  2053. LCD1_CS_MARK, LCD1_WR_MARK, LCD1_RD_MARK, LCD1_RS_MARK,
  2054. };
  2055. /* - MMCIF ------------------------------------------------------------------ */
  2056. static const unsigned int mmc0_data1_0_pins[] = {
  2057. /* D[0] */
  2058. 68,
  2059. };
  2060. static const unsigned int mmc0_data1_0_mux[] = {
  2061. MMC0_D0_PORT68_MARK,
  2062. };
  2063. static const unsigned int mmc0_data4_0_pins[] = {
  2064. /* D[0:3] */
  2065. 68, 69, 70, 71,
  2066. };
  2067. static const unsigned int mmc0_data4_0_mux[] = {
  2068. MMC0_D0_PORT68_MARK, MMC0_D1_PORT69_MARK, MMC0_D2_PORT70_MARK, MMC0_D3_PORT71_MARK,
  2069. };
  2070. static const unsigned int mmc0_data8_0_pins[] = {
  2071. /* D[0:7] */
  2072. 68, 69, 70, 71, 72, 73, 74, 75,
  2073. };
  2074. static const unsigned int mmc0_data8_0_mux[] = {
  2075. MMC0_D0_PORT68_MARK, MMC0_D1_PORT69_MARK, MMC0_D2_PORT70_MARK, MMC0_D3_PORT71_MARK,
  2076. MMC0_D4_PORT72_MARK, MMC0_D5_PORT73_MARK, MMC0_D6_PORT74_MARK, MMC0_D7_PORT75_MARK,
  2077. };
  2078. static const unsigned int mmc0_ctrl_0_pins[] = {
  2079. /* CMD, CLK */
  2080. 67, 66,
  2081. };
  2082. static const unsigned int mmc0_ctrl_0_mux[] = {
  2083. MMC0_CMD_PORT67_MARK, MMC0_CLK_PORT66_MARK,
  2084. };
  2085. static const unsigned int mmc0_data1_1_pins[] = {
  2086. /* D[0] */
  2087. 149,
  2088. };
  2089. static const unsigned int mmc0_data1_1_mux[] = {
  2090. MMC1_D0_PORT149_MARK,
  2091. };
  2092. static const unsigned int mmc0_data4_1_pins[] = {
  2093. /* D[0:3] */
  2094. 149, 148, 147, 146,
  2095. };
  2096. static const unsigned int mmc0_data4_1_mux[] = {
  2097. MMC1_D0_PORT149_MARK, MMC1_D1_PORT148_MARK, MMC1_D2_PORT147_MARK, MMC1_D3_PORT146_MARK,
  2098. };
  2099. static const unsigned int mmc0_data8_1_pins[] = {
  2100. /* D[0:7] */
  2101. 149, 148, 147, 146, 145, 144, 143, 142,
  2102. };
  2103. static const unsigned int mmc0_data8_1_mux[] = {
  2104. MMC1_D0_PORT149_MARK, MMC1_D1_PORT148_MARK, MMC1_D2_PORT147_MARK, MMC1_D3_PORT146_MARK,
  2105. MMC1_D4_PORT145_MARK, MMC1_D5_PORT144_MARK, MMC1_D6_PORT143_MARK, MMC1_D7_PORT142_MARK,
  2106. };
  2107. static const unsigned int mmc0_ctrl_1_pins[] = {
  2108. /* CMD, CLK */
  2109. 104, 103,
  2110. };
  2111. static const unsigned int mmc0_ctrl_1_mux[] = {
  2112. MMC1_CMD_PORT104_MARK, MMC1_CLK_PORT103_MARK,
  2113. };
  2114. /* - SCIFA0 ----------------------------------------------------------------- */
  2115. static const unsigned int scifa0_data_pins[] = {
  2116. /* RXD, TXD */
  2117. 197, 198,
  2118. };
  2119. static const unsigned int scifa0_data_mux[] = {
  2120. SCIFA0_RXD_MARK, SCIFA0_TXD_MARK,
  2121. };
  2122. static const unsigned int scifa0_clk_pins[] = {
  2123. /* SCK */
  2124. 188,
  2125. };
  2126. static const unsigned int scifa0_clk_mux[] = {
  2127. SCIFA0_SCK_MARK,
  2128. };
  2129. static const unsigned int scifa0_ctrl_pins[] = {
  2130. /* RTS, CTS */
  2131. 194, 193,
  2132. };
  2133. static const unsigned int scifa0_ctrl_mux[] = {
  2134. SCIFA0_RTS_MARK, SCIFA0_CTS_MARK,
  2135. };
  2136. /* - SCIFA1 ----------------------------------------------------------------- */
  2137. static const unsigned int scifa1_data_pins[] = {
  2138. /* RXD, TXD */
  2139. 195, 196,
  2140. };
  2141. static const unsigned int scifa1_data_mux[] = {
  2142. SCIFA1_RXD_MARK, SCIFA1_TXD_MARK,
  2143. };
  2144. static const unsigned int scifa1_clk_pins[] = {
  2145. /* SCK */
  2146. 185,
  2147. };
  2148. static const unsigned int scifa1_clk_mux[] = {
  2149. SCIFA1_SCK_MARK,
  2150. };
  2151. static const unsigned int scifa1_ctrl_pins[] = {
  2152. /* RTS, CTS */
  2153. 23, 21,
  2154. };
  2155. static const unsigned int scifa1_ctrl_mux[] = {
  2156. SCIFA1_RTS_MARK, SCIFA1_CTS_MARK,
  2157. };
  2158. /* - SCIFA2 ----------------------------------------------------------------- */
  2159. static const unsigned int scifa2_data_pins[] = {
  2160. /* RXD, TXD */
  2161. 200, 201,
  2162. };
  2163. static const unsigned int scifa2_data_mux[] = {
  2164. SCIFA2_RXD_MARK, SCIFA2_TXD_MARK,
  2165. };
  2166. static const unsigned int scifa2_clk_0_pins[] = {
  2167. /* SCK */
  2168. 22,
  2169. };
  2170. static const unsigned int scifa2_clk_0_mux[] = {
  2171. SCIFA2_SCK_PORT22_MARK,
  2172. };
  2173. static const unsigned int scifa2_clk_1_pins[] = {
  2174. /* SCK */
  2175. 199,
  2176. };
  2177. static const unsigned int scifa2_clk_1_mux[] = {
  2178. SCIFA2_SCK_PORT199_MARK,
  2179. };
  2180. static const unsigned int scifa2_ctrl_pins[] = {
  2181. /* RTS, CTS */
  2182. 96, 95,
  2183. };
  2184. static const unsigned int scifa2_ctrl_mux[] = {
  2185. SCIFA2_RTS_MARK, SCIFA2_CTS_MARK,
  2186. };
  2187. /* - SCIFA3 ----------------------------------------------------------------- */
  2188. static const unsigned int scifa3_data_0_pins[] = {
  2189. /* RXD, TXD */
  2190. 174, 175,
  2191. };
  2192. static const unsigned int scifa3_data_0_mux[] = {
  2193. SCIFA3_RXD_PORT174_MARK, SCIFA3_TXD_PORT175_MARK,
  2194. };
  2195. static const unsigned int scifa3_clk_0_pins[] = {
  2196. /* SCK */
  2197. 116,
  2198. };
  2199. static const unsigned int scifa3_clk_0_mux[] = {
  2200. SCIFA3_SCK_PORT116_MARK,
  2201. };
  2202. static const unsigned int scifa3_ctrl_0_pins[] = {
  2203. /* RTS, CTS */
  2204. 105, 117,
  2205. };
  2206. static const unsigned int scifa3_ctrl_0_mux[] = {
  2207. SCIFA3_RTS_PORT105_MARK, SCIFA3_CTS_PORT117_MARK,
  2208. };
  2209. static const unsigned int scifa3_data_1_pins[] = {
  2210. /* RXD, TXD */
  2211. 159, 160,
  2212. };
  2213. static const unsigned int scifa3_data_1_mux[] = {
  2214. SCIFA3_RXD_PORT159_MARK, SCIFA3_TXD_PORT160_MARK,
  2215. };
  2216. static const unsigned int scifa3_clk_1_pins[] = {
  2217. /* SCK */
  2218. 158,
  2219. };
  2220. static const unsigned int scifa3_clk_1_mux[] = {
  2221. SCIFA3_SCK_PORT158_MARK,
  2222. };
  2223. static const unsigned int scifa3_ctrl_1_pins[] = {
  2224. /* RTS, CTS */
  2225. 161, 162,
  2226. };
  2227. static const unsigned int scifa3_ctrl_1_mux[] = {
  2228. SCIFA3_RTS_PORT161_MARK, SCIFA3_CTS_PORT162_MARK,
  2229. };
  2230. /* - SCIFA4 ----------------------------------------------------------------- */
  2231. static const unsigned int scifa4_data_0_pins[] = {
  2232. /* RXD, TXD */
  2233. 12, 13,
  2234. };
  2235. static const unsigned int scifa4_data_0_mux[] = {
  2236. SCIFA4_RXD_PORT12_MARK, SCIFA4_TXD_PORT13_MARK,
  2237. };
  2238. static const unsigned int scifa4_data_1_pins[] = {
  2239. /* RXD, TXD */
  2240. 204, 203,
  2241. };
  2242. static const unsigned int scifa4_data_1_mux[] = {
  2243. SCIFA4_RXD_PORT204_MARK, SCIFA4_TXD_PORT203_MARK,
  2244. };
  2245. static const unsigned int scifa4_data_2_pins[] = {
  2246. /* RXD, TXD */
  2247. 94, 93,
  2248. };
  2249. static const unsigned int scifa4_data_2_mux[] = {
  2250. SCIFA4_RXD_PORT94_MARK, SCIFA4_TXD_PORT93_MARK,
  2251. };
  2252. static const unsigned int scifa4_clk_0_pins[] = {
  2253. /* SCK */
  2254. 21,
  2255. };
  2256. static const unsigned int scifa4_clk_0_mux[] = {
  2257. SCIFA4_SCK_PORT21_MARK,
  2258. };
  2259. static const unsigned int scifa4_clk_1_pins[] = {
  2260. /* SCK */
  2261. 205,
  2262. };
  2263. static const unsigned int scifa4_clk_1_mux[] = {
  2264. SCIFA4_SCK_PORT205_MARK,
  2265. };
  2266. /* - SCIFA5 ----------------------------------------------------------------- */
  2267. static const unsigned int scifa5_data_0_pins[] = {
  2268. /* RXD, TXD */
  2269. 10, 20,
  2270. };
  2271. static const unsigned int scifa5_data_0_mux[] = {
  2272. SCIFA5_RXD_PORT10_MARK, SCIFA5_TXD_PORT20_MARK,
  2273. };
  2274. static const unsigned int scifa5_data_1_pins[] = {
  2275. /* RXD, TXD */
  2276. 207, 208,
  2277. };
  2278. static const unsigned int scifa5_data_1_mux[] = {
  2279. SCIFA5_RXD_PORT207_MARK, SCIFA5_TXD_PORT208_MARK,
  2280. };
  2281. static const unsigned int scifa5_data_2_pins[] = {
  2282. /* RXD, TXD */
  2283. 92, 91,
  2284. };
  2285. static const unsigned int scifa5_data_2_mux[] = {
  2286. SCIFA5_RXD_PORT92_MARK, SCIFA5_TXD_PORT91_MARK,
  2287. };
  2288. static const unsigned int scifa5_clk_0_pins[] = {
  2289. /* SCK */
  2290. 23,
  2291. };
  2292. static const unsigned int scifa5_clk_0_mux[] = {
  2293. SCIFA5_SCK_PORT23_MARK,
  2294. };
  2295. static const unsigned int scifa5_clk_1_pins[] = {
  2296. /* SCK */
  2297. 206,
  2298. };
  2299. static const unsigned int scifa5_clk_1_mux[] = {
  2300. SCIFA5_SCK_PORT206_MARK,
  2301. };
  2302. /* - SCIFA6 ----------------------------------------------------------------- */
  2303. static const unsigned int scifa6_data_pins[] = {
  2304. /* RXD, TXD */
  2305. 25, 26,
  2306. };
  2307. static const unsigned int scifa6_data_mux[] = {
  2308. SCIFA6_RXD_MARK, SCIFA6_TXD_MARK,
  2309. };
  2310. static const unsigned int scifa6_clk_pins[] = {
  2311. /* SCK */
  2312. 24,
  2313. };
  2314. static const unsigned int scifa6_clk_mux[] = {
  2315. SCIFA6_SCK_MARK,
  2316. };
  2317. /* - SCIFA7 ----------------------------------------------------------------- */
  2318. static const unsigned int scifa7_data_pins[] = {
  2319. /* RXD, TXD */
  2320. 0, 1,
  2321. };
  2322. static const unsigned int scifa7_data_mux[] = {
  2323. SCIFA7_RXD_MARK, SCIFA7_TXD_MARK,
  2324. };
  2325. /* - SCIFB ------------------------------------------------------------------ */
  2326. static const unsigned int scifb_data_0_pins[] = {
  2327. /* RXD, TXD */
  2328. 191, 192,
  2329. };
  2330. static const unsigned int scifb_data_0_mux[] = {
  2331. SCIFB_RXD_PORT191_MARK, SCIFB_TXD_PORT192_MARK,
  2332. };
  2333. static const unsigned int scifb_clk_0_pins[] = {
  2334. /* SCK */
  2335. 190,
  2336. };
  2337. static const unsigned int scifb_clk_0_mux[] = {
  2338. SCIFB_SCK_PORT190_MARK,
  2339. };
  2340. static const unsigned int scifb_ctrl_0_pins[] = {
  2341. /* RTS, CTS */
  2342. 186, 187,
  2343. };
  2344. static const unsigned int scifb_ctrl_0_mux[] = {
  2345. SCIFB_RTS_PORT186_MARK, SCIFB_CTS_PORT187_MARK,
  2346. };
  2347. static const unsigned int scifb_data_1_pins[] = {
  2348. /* RXD, TXD */
  2349. 3, 4,
  2350. };
  2351. static const unsigned int scifb_data_1_mux[] = {
  2352. SCIFB_RXD_PORT3_MARK, SCIFB_TXD_PORT4_MARK,
  2353. };
  2354. static const unsigned int scifb_clk_1_pins[] = {
  2355. /* SCK */
  2356. 2,
  2357. };
  2358. static const unsigned int scifb_clk_1_mux[] = {
  2359. SCIFB_SCK_PORT2_MARK,
  2360. };
  2361. static const unsigned int scifb_ctrl_1_pins[] = {
  2362. /* RTS, CTS */
  2363. 172, 173,
  2364. };
  2365. static const unsigned int scifb_ctrl_1_mux[] = {
  2366. SCIFB_RTS_PORT172_MARK, SCIFB_CTS_PORT173_MARK,
  2367. };
  2368. /* - SDHI0 ------------------------------------------------------------------ */
  2369. static const unsigned int sdhi0_data1_pins[] = {
  2370. /* D0 */
  2371. 77,
  2372. };
  2373. static const unsigned int sdhi0_data1_mux[] = {
  2374. SDHI0_D0_MARK,
  2375. };
  2376. static const unsigned int sdhi0_data4_pins[] = {
  2377. /* D[0:3] */
  2378. 77, 78, 79, 80,
  2379. };
  2380. static const unsigned int sdhi0_data4_mux[] = {
  2381. SDHI0_D0_MARK, SDHI0_D1_MARK, SDHI0_D2_MARK, SDHI0_D3_MARK,
  2382. };
  2383. static const unsigned int sdhi0_ctrl_pins[] = {
  2384. /* CMD, CLK */
  2385. 76, 82,
  2386. };
  2387. static const unsigned int sdhi0_ctrl_mux[] = {
  2388. SDHI0_CMD_MARK, SDHI0_CLK_MARK,
  2389. };
  2390. static const unsigned int sdhi0_cd_pins[] = {
  2391. /* CD */
  2392. 81,
  2393. };
  2394. static const unsigned int sdhi0_cd_mux[] = {
  2395. SDHI0_CD_MARK,
  2396. };
  2397. static const unsigned int sdhi0_wp_pins[] = {
  2398. /* WP */
  2399. 83,
  2400. };
  2401. static const unsigned int sdhi0_wp_mux[] = {
  2402. SDHI0_WP_MARK,
  2403. };
  2404. /* - SDHI1 ------------------------------------------------------------------ */
  2405. static const unsigned int sdhi1_data1_pins[] = {
  2406. /* D0 */
  2407. 68,
  2408. };
  2409. static const unsigned int sdhi1_data1_mux[] = {
  2410. SDHI1_D0_MARK,
  2411. };
  2412. static const unsigned int sdhi1_data4_pins[] = {
  2413. /* D[0:3] */
  2414. 68, 69, 70, 71,
  2415. };
  2416. static const unsigned int sdhi1_data4_mux[] = {
  2417. SDHI1_D0_MARK, SDHI1_D1_MARK, SDHI1_D2_MARK, SDHI1_D3_MARK,
  2418. };
  2419. static const unsigned int sdhi1_ctrl_pins[] = {
  2420. /* CMD, CLK */
  2421. 67, 66,
  2422. };
  2423. static const unsigned int sdhi1_ctrl_mux[] = {
  2424. SDHI1_CMD_MARK, SDHI1_CLK_MARK,
  2425. };
  2426. static const unsigned int sdhi1_cd_pins[] = {
  2427. /* CD */
  2428. 72,
  2429. };
  2430. static const unsigned int sdhi1_cd_mux[] = {
  2431. SDHI1_CD_MARK,
  2432. };
  2433. static const unsigned int sdhi1_wp_pins[] = {
  2434. /* WP */
  2435. 73,
  2436. };
  2437. static const unsigned int sdhi1_wp_mux[] = {
  2438. SDHI1_WP_MARK,
  2439. };
  2440. /* - SDHI2 ------------------------------------------------------------------ */
  2441. static const unsigned int sdhi2_data1_pins[] = {
  2442. /* D0 */
  2443. 205,
  2444. };
  2445. static const unsigned int sdhi2_data1_mux[] = {
  2446. SDHI2_D0_MARK,
  2447. };
  2448. static const unsigned int sdhi2_data4_pins[] = {
  2449. /* D[0:3] */
  2450. 205, 206, 207, 208,
  2451. };
  2452. static const unsigned int sdhi2_data4_mux[] = {
  2453. SDHI2_D0_MARK, SDHI2_D1_MARK, SDHI2_D2_MARK, SDHI2_D3_MARK,
  2454. };
  2455. static const unsigned int sdhi2_ctrl_pins[] = {
  2456. /* CMD, CLK */
  2457. 204, 203,
  2458. };
  2459. static const unsigned int sdhi2_ctrl_mux[] = {
  2460. SDHI2_CMD_MARK, SDHI2_CLK_MARK,
  2461. };
  2462. static const unsigned int sdhi2_cd_0_pins[] = {
  2463. /* CD */
  2464. 202,
  2465. };
  2466. static const unsigned int sdhi2_cd_0_mux[] = {
  2467. SDHI2_CD_PORT202_MARK,
  2468. };
  2469. static const unsigned int sdhi2_wp_0_pins[] = {
  2470. /* WP */
  2471. 177,
  2472. };
  2473. static const unsigned int sdhi2_wp_0_mux[] = {
  2474. SDHI2_WP_PORT177_MARK,
  2475. };
  2476. static const unsigned int sdhi2_cd_1_pins[] = {
  2477. /* CD */
  2478. 24,
  2479. };
  2480. static const unsigned int sdhi2_cd_1_mux[] = {
  2481. SDHI2_CD_PORT24_MARK,
  2482. };
  2483. static const unsigned int sdhi2_wp_1_pins[] = {
  2484. /* WP */
  2485. 25,
  2486. };
  2487. static const unsigned int sdhi2_wp_1_mux[] = {
  2488. SDHI2_WP_PORT25_MARK,
  2489. };
  2490. /* - TPU0 ------------------------------------------------------------------- */
  2491. static const unsigned int tpu0_to0_pins[] = {
  2492. /* TO */
  2493. 23,
  2494. };
  2495. static const unsigned int tpu0_to0_mux[] = {
  2496. TPU0TO0_MARK,
  2497. };
  2498. static const unsigned int tpu0_to1_pins[] = {
  2499. /* TO */
  2500. 21,
  2501. };
  2502. static const unsigned int tpu0_to1_mux[] = {
  2503. TPU0TO1_MARK,
  2504. };
  2505. static const unsigned int tpu0_to2_0_pins[] = {
  2506. /* TO */
  2507. 66,
  2508. };
  2509. static const unsigned int tpu0_to2_0_mux[] = {
  2510. TPU0TO2_PORT66_MARK,
  2511. };
  2512. static const unsigned int tpu0_to2_1_pins[] = {
  2513. /* TO */
  2514. 202,
  2515. };
  2516. static const unsigned int tpu0_to2_1_mux[] = {
  2517. TPU0TO2_PORT202_MARK,
  2518. };
  2519. static const unsigned int tpu0_to3_pins[] = {
  2520. /* TO */
  2521. 180,
  2522. };
  2523. static const unsigned int tpu0_to3_mux[] = {
  2524. TPU0TO3_MARK,
  2525. };
  2526. static const struct sh_pfc_pin_group pinmux_groups[] = {
  2527. SH_PFC_PIN_GROUP(bsc_data8),
  2528. SH_PFC_PIN_GROUP(bsc_data16),
  2529. SH_PFC_PIN_GROUP(bsc_data32),
  2530. SH_PFC_PIN_GROUP(bsc_cs0),
  2531. SH_PFC_PIN_GROUP(bsc_cs2),
  2532. SH_PFC_PIN_GROUP(bsc_cs4),
  2533. SH_PFC_PIN_GROUP(bsc_cs5a_0),
  2534. SH_PFC_PIN_GROUP(bsc_cs5a_1),
  2535. SH_PFC_PIN_GROUP(bsc_cs5b),
  2536. SH_PFC_PIN_GROUP(bsc_cs6a),
  2537. SH_PFC_PIN_GROUP(bsc_rd_we8),
  2538. SH_PFC_PIN_GROUP(bsc_rd_we16),
  2539. SH_PFC_PIN_GROUP(bsc_rd_we32),
  2540. SH_PFC_PIN_GROUP(bsc_bs),
  2541. SH_PFC_PIN_GROUP(bsc_rdwr),
  2542. SH_PFC_PIN_GROUP(ceu0_data_0_7),
  2543. SH_PFC_PIN_GROUP(ceu0_data_8_15_0),
  2544. SH_PFC_PIN_GROUP(ceu0_data_8_15_1),
  2545. SH_PFC_PIN_GROUP(ceu0_clk_0),
  2546. SH_PFC_PIN_GROUP(ceu0_clk_1),
  2547. SH_PFC_PIN_GROUP(ceu0_clk_2),
  2548. SH_PFC_PIN_GROUP(ceu0_sync),
  2549. SH_PFC_PIN_GROUP(ceu0_field),
  2550. SH_PFC_PIN_GROUP(ceu1_data),
  2551. SH_PFC_PIN_GROUP(ceu1_clk),
  2552. SH_PFC_PIN_GROUP(ceu1_sync),
  2553. SH_PFC_PIN_GROUP(ceu1_field),
  2554. SH_PFC_PIN_GROUP(fsia_mclk_in),
  2555. SH_PFC_PIN_GROUP(fsia_mclk_out),
  2556. SH_PFC_PIN_GROUP(fsia_sclk_in),
  2557. SH_PFC_PIN_GROUP(fsia_sclk_out),
  2558. SH_PFC_PIN_GROUP(fsia_data_in_0),
  2559. SH_PFC_PIN_GROUP(fsia_data_in_1),
  2560. SH_PFC_PIN_GROUP(fsia_data_out_0),
  2561. SH_PFC_PIN_GROUP(fsia_data_out_1),
  2562. SH_PFC_PIN_GROUP(fsia_data_out_2),
  2563. SH_PFC_PIN_GROUP(fsia_spdif_0),
  2564. SH_PFC_PIN_GROUP(fsia_spdif_1),
  2565. SH_PFC_PIN_GROUP(fsib_mclk_in),
  2566. SH_PFC_PIN_GROUP(gether_rmii),
  2567. SH_PFC_PIN_GROUP(gether_mii),
  2568. SH_PFC_PIN_GROUP(gether_gmii),
  2569. SH_PFC_PIN_GROUP(gether_int),
  2570. SH_PFC_PIN_GROUP(gether_link),
  2571. SH_PFC_PIN_GROUP(gether_wol),
  2572. SH_PFC_PIN_GROUP(hdmi),
  2573. SH_PFC_PIN_GROUP(intc_irq0_0),
  2574. SH_PFC_PIN_GROUP(intc_irq0_1),
  2575. SH_PFC_PIN_GROUP(intc_irq1),
  2576. SH_PFC_PIN_GROUP(intc_irq2_0),
  2577. SH_PFC_PIN_GROUP(intc_irq2_1),
  2578. SH_PFC_PIN_GROUP(intc_irq3_0),
  2579. SH_PFC_PIN_GROUP(intc_irq3_1),
  2580. SH_PFC_PIN_GROUP(intc_irq4_0),
  2581. SH_PFC_PIN_GROUP(intc_irq4_1),
  2582. SH_PFC_PIN_GROUP(intc_irq5_0),
  2583. SH_PFC_PIN_GROUP(intc_irq5_1),
  2584. SH_PFC_PIN_GROUP(intc_irq6_0),
  2585. SH_PFC_PIN_GROUP(intc_irq6_1),
  2586. SH_PFC_PIN_GROUP(intc_irq7_0),
  2587. SH_PFC_PIN_GROUP(intc_irq7_1),
  2588. SH_PFC_PIN_GROUP(intc_irq8),
  2589. SH_PFC_PIN_GROUP(intc_irq9_0),
  2590. SH_PFC_PIN_GROUP(intc_irq9_1),
  2591. SH_PFC_PIN_GROUP(intc_irq10),
  2592. SH_PFC_PIN_GROUP(intc_irq11),
  2593. SH_PFC_PIN_GROUP(intc_irq12_0),
  2594. SH_PFC_PIN_GROUP(intc_irq12_1),
  2595. SH_PFC_PIN_GROUP(intc_irq13_0),
  2596. SH_PFC_PIN_GROUP(intc_irq13_1),
  2597. SH_PFC_PIN_GROUP(intc_irq14_0),
  2598. SH_PFC_PIN_GROUP(intc_irq14_1),
  2599. SH_PFC_PIN_GROUP(intc_irq15_0),
  2600. SH_PFC_PIN_GROUP(intc_irq15_1),
  2601. SH_PFC_PIN_GROUP(intc_irq16_0),
  2602. SH_PFC_PIN_GROUP(intc_irq16_1),
  2603. SH_PFC_PIN_GROUP(intc_irq17),
  2604. SH_PFC_PIN_GROUP(intc_irq18),
  2605. SH_PFC_PIN_GROUP(intc_irq19),
  2606. SH_PFC_PIN_GROUP(intc_irq20),
  2607. SH_PFC_PIN_GROUP(intc_irq21),
  2608. SH_PFC_PIN_GROUP(intc_irq22),
  2609. SH_PFC_PIN_GROUP(intc_irq23),
  2610. SH_PFC_PIN_GROUP(intc_irq24),
  2611. SH_PFC_PIN_GROUP(intc_irq25),
  2612. SH_PFC_PIN_GROUP(intc_irq26_0),
  2613. SH_PFC_PIN_GROUP(intc_irq26_1),
  2614. SH_PFC_PIN_GROUP(intc_irq27_0),
  2615. SH_PFC_PIN_GROUP(intc_irq27_1),
  2616. SH_PFC_PIN_GROUP(intc_irq28_0),
  2617. SH_PFC_PIN_GROUP(intc_irq28_1),
  2618. SH_PFC_PIN_GROUP(intc_irq29_0),
  2619. SH_PFC_PIN_GROUP(intc_irq29_1),
  2620. SH_PFC_PIN_GROUP(intc_irq30_0),
  2621. SH_PFC_PIN_GROUP(intc_irq30_1),
  2622. SH_PFC_PIN_GROUP(intc_irq31_0),
  2623. SH_PFC_PIN_GROUP(intc_irq31_1),
  2624. SH_PFC_PIN_GROUP(lcd0_data8),
  2625. SH_PFC_PIN_GROUP(lcd0_data9),
  2626. SH_PFC_PIN_GROUP(lcd0_data12),
  2627. SH_PFC_PIN_GROUP(lcd0_data16),
  2628. SH_PFC_PIN_GROUP(lcd0_data18),
  2629. SH_PFC_PIN_GROUP(lcd0_data24_0),
  2630. SH_PFC_PIN_GROUP(lcd0_data24_1),
  2631. SH_PFC_PIN_GROUP(lcd0_display),
  2632. SH_PFC_PIN_GROUP(lcd0_lclk_0),
  2633. SH_PFC_PIN_GROUP(lcd0_lclk_1),
  2634. SH_PFC_PIN_GROUP(lcd0_sync),
  2635. SH_PFC_PIN_GROUP(lcd0_sys),
  2636. SH_PFC_PIN_GROUP(lcd1_data8),
  2637. SH_PFC_PIN_GROUP(lcd1_data9),
  2638. SH_PFC_PIN_GROUP(lcd1_data12),
  2639. SH_PFC_PIN_GROUP(lcd1_data16),
  2640. SH_PFC_PIN_GROUP(lcd1_data18),
  2641. SH_PFC_PIN_GROUP(lcd1_data24),
  2642. SH_PFC_PIN_GROUP(lcd1_display),
  2643. SH_PFC_PIN_GROUP(lcd1_lclk),
  2644. SH_PFC_PIN_GROUP(lcd1_sync),
  2645. SH_PFC_PIN_GROUP(lcd1_sys),
  2646. SH_PFC_PIN_GROUP(mmc0_data1_0),
  2647. SH_PFC_PIN_GROUP(mmc0_data4_0),
  2648. SH_PFC_PIN_GROUP(mmc0_data8_0),
  2649. SH_PFC_PIN_GROUP(mmc0_ctrl_0),
  2650. SH_PFC_PIN_GROUP(mmc0_data1_1),
  2651. SH_PFC_PIN_GROUP(mmc0_data4_1),
  2652. SH_PFC_PIN_GROUP(mmc0_data8_1),
  2653. SH_PFC_PIN_GROUP(mmc0_ctrl_1),
  2654. SH_PFC_PIN_GROUP(scifa0_data),
  2655. SH_PFC_PIN_GROUP(scifa0_clk),
  2656. SH_PFC_PIN_GROUP(scifa0_ctrl),
  2657. SH_PFC_PIN_GROUP(scifa1_data),
  2658. SH_PFC_PIN_GROUP(scifa1_clk),
  2659. SH_PFC_PIN_GROUP(scifa1_ctrl),
  2660. SH_PFC_PIN_GROUP(scifa2_data),
  2661. SH_PFC_PIN_GROUP(scifa2_clk_0),
  2662. SH_PFC_PIN_GROUP(scifa2_clk_1),
  2663. SH_PFC_PIN_GROUP(scifa2_ctrl),
  2664. SH_PFC_PIN_GROUP(scifa3_data_0),
  2665. SH_PFC_PIN_GROUP(scifa3_clk_0),
  2666. SH_PFC_PIN_GROUP(scifa3_ctrl_0),
  2667. SH_PFC_PIN_GROUP(scifa3_data_1),
  2668. SH_PFC_PIN_GROUP(scifa3_clk_1),
  2669. SH_PFC_PIN_GROUP(scifa3_ctrl_1),
  2670. SH_PFC_PIN_GROUP(scifa4_data_0),
  2671. SH_PFC_PIN_GROUP(scifa4_data_1),
  2672. SH_PFC_PIN_GROUP(scifa4_data_2),
  2673. SH_PFC_PIN_GROUP(scifa4_clk_0),
  2674. SH_PFC_PIN_GROUP(scifa4_clk_1),
  2675. SH_PFC_PIN_GROUP(scifa5_data_0),
  2676. SH_PFC_PIN_GROUP(scifa5_data_1),
  2677. SH_PFC_PIN_GROUP(scifa5_data_2),
  2678. SH_PFC_PIN_GROUP(scifa5_clk_0),
  2679. SH_PFC_PIN_GROUP(scifa5_clk_1),
  2680. SH_PFC_PIN_GROUP(scifa6_data),
  2681. SH_PFC_PIN_GROUP(scifa6_clk),
  2682. SH_PFC_PIN_GROUP(scifa7_data),
  2683. SH_PFC_PIN_GROUP(scifb_data_0),
  2684. SH_PFC_PIN_GROUP(scifb_clk_0),
  2685. SH_PFC_PIN_GROUP(scifb_ctrl_0),
  2686. SH_PFC_PIN_GROUP(scifb_data_1),
  2687. SH_PFC_PIN_GROUP(scifb_clk_1),
  2688. SH_PFC_PIN_GROUP(scifb_ctrl_1),
  2689. SH_PFC_PIN_GROUP(sdhi0_data1),
  2690. SH_PFC_PIN_GROUP(sdhi0_data4),
  2691. SH_PFC_PIN_GROUP(sdhi0_ctrl),
  2692. SH_PFC_PIN_GROUP(sdhi0_cd),
  2693. SH_PFC_PIN_GROUP(sdhi0_wp),
  2694. SH_PFC_PIN_GROUP(sdhi1_data1),
  2695. SH_PFC_PIN_GROUP(sdhi1_data4),
  2696. SH_PFC_PIN_GROUP(sdhi1_ctrl),
  2697. SH_PFC_PIN_GROUP(sdhi1_cd),
  2698. SH_PFC_PIN_GROUP(sdhi1_wp),
  2699. SH_PFC_PIN_GROUP(sdhi2_data1),
  2700. SH_PFC_PIN_GROUP(sdhi2_data4),
  2701. SH_PFC_PIN_GROUP(sdhi2_ctrl),
  2702. SH_PFC_PIN_GROUP(sdhi2_cd_0),
  2703. SH_PFC_PIN_GROUP(sdhi2_wp_0),
  2704. SH_PFC_PIN_GROUP(sdhi2_cd_1),
  2705. SH_PFC_PIN_GROUP(sdhi2_wp_1),
  2706. SH_PFC_PIN_GROUP(tpu0_to0),
  2707. SH_PFC_PIN_GROUP(tpu0_to1),
  2708. SH_PFC_PIN_GROUP(tpu0_to2_0),
  2709. SH_PFC_PIN_GROUP(tpu0_to2_1),
  2710. SH_PFC_PIN_GROUP(tpu0_to3),
  2711. };
  2712. static const char * const bsc_groups[] = {
  2713. "bsc_data8",
  2714. "bsc_data16",
  2715. "bsc_data32",
  2716. "bsc_cs0",
  2717. "bsc_cs2",
  2718. "bsc_cs4",
  2719. "bsc_cs5a_0",
  2720. "bsc_cs5a_1",
  2721. "bsc_cs5b",
  2722. "bsc_cs6a",
  2723. "bsc_rd_we8",
  2724. "bsc_rd_we16",
  2725. "bsc_rd_we32",
  2726. "bsc_bs",
  2727. "bsc_rdwr",
  2728. };
  2729. static const char * const ceu0_groups[] = {
  2730. "ceu0_data_0_7",
  2731. "ceu0_data_8_15_0",
  2732. "ceu0_data_8_15_1",
  2733. "ceu0_clk_0",
  2734. "ceu0_clk_1",
  2735. "ceu0_clk_2",
  2736. "ceu0_sync",
  2737. "ceu0_field",
  2738. };
  2739. static const char * const ceu1_groups[] = {
  2740. "ceu1_data",
  2741. "ceu1_clk",
  2742. "ceu1_sync",
  2743. "ceu1_field",
  2744. };
  2745. static const char * const fsia_groups[] = {
  2746. "fsia_mclk_in",
  2747. "fsia_mclk_out",
  2748. "fsia_sclk_in",
  2749. "fsia_sclk_out",
  2750. "fsia_data_in_0",
  2751. "fsia_data_in_1",
  2752. "fsia_data_out_0",
  2753. "fsia_data_out_1",
  2754. "fsia_data_out_2",
  2755. "fsia_spdif_0",
  2756. "fsia_spdif_1",
  2757. };
  2758. static const char * const fsib_groups[] = {
  2759. "fsib_mclk_in",
  2760. };
  2761. static const char * const gether_groups[] = {
  2762. "gether_rmii",
  2763. "gether_mii",
  2764. "gether_gmii",
  2765. "gether_int",
  2766. "gether_link",
  2767. "gether_wol",
  2768. };
  2769. static const char * const hdmi_groups[] = {
  2770. "hdmi",
  2771. };
  2772. static const char * const intc_groups[] = {
  2773. "intc_irq0_0",
  2774. "intc_irq0_1",
  2775. "intc_irq1",
  2776. "intc_irq2_0",
  2777. "intc_irq2_1",
  2778. "intc_irq3_0",
  2779. "intc_irq3_1",
  2780. "intc_irq4_0",
  2781. "intc_irq4_1",
  2782. "intc_irq5_0",
  2783. "intc_irq5_1",
  2784. "intc_irq6_0",
  2785. "intc_irq6_1",
  2786. "intc_irq7_0",
  2787. "intc_irq7_1",
  2788. "intc_irq8",
  2789. "intc_irq9_0",
  2790. "intc_irq9_1",
  2791. "intc_irq10",
  2792. "intc_irq11",
  2793. "intc_irq12_0",
  2794. "intc_irq12_1",
  2795. "intc_irq13_0",
  2796. "intc_irq13_1",
  2797. "intc_irq14_0",
  2798. "intc_irq14_1",
  2799. "intc_irq15_0",
  2800. "intc_irq15_1",
  2801. "intc_irq16_0",
  2802. "intc_irq16_1",
  2803. "intc_irq17",
  2804. "intc_irq18",
  2805. "intc_irq19",
  2806. "intc_irq20",
  2807. "intc_irq21",
  2808. "intc_irq22",
  2809. "intc_irq23",
  2810. "intc_irq24",
  2811. "intc_irq25",
  2812. "intc_irq26_0",
  2813. "intc_irq26_1",
  2814. "intc_irq27_0",
  2815. "intc_irq27_1",
  2816. "intc_irq28_0",
  2817. "intc_irq28_1",
  2818. "intc_irq29_0",
  2819. "intc_irq29_1",
  2820. "intc_irq30_0",
  2821. "intc_irq30_1",
  2822. "intc_irq31_0",
  2823. "intc_irq31_1",
  2824. };
  2825. static const char * const lcd0_groups[] = {
  2826. "lcd0_data8",
  2827. "lcd0_data9",
  2828. "lcd0_data12",
  2829. "lcd0_data16",
  2830. "lcd0_data18",
  2831. "lcd0_data24_0",
  2832. "lcd0_data24_1",
  2833. "lcd0_display",
  2834. "lcd0_lclk_0",
  2835. "lcd0_lclk_1",
  2836. "lcd0_sync",
  2837. "lcd0_sys",
  2838. };
  2839. static const char * const lcd1_groups[] = {
  2840. "lcd1_data8",
  2841. "lcd1_data9",
  2842. "lcd1_data12",
  2843. "lcd1_data16",
  2844. "lcd1_data18",
  2845. "lcd1_data24",
  2846. "lcd1_display",
  2847. "lcd1_lclk",
  2848. "lcd1_sync",
  2849. "lcd1_sys",
  2850. };
  2851. static const char * const mmc0_groups[] = {
  2852. "mmc0_data1_0",
  2853. "mmc0_data4_0",
  2854. "mmc0_data8_0",
  2855. "mmc0_ctrl_0",
  2856. "mmc0_data1_1",
  2857. "mmc0_data4_1",
  2858. "mmc0_data8_1",
  2859. "mmc0_ctrl_1",
  2860. };
  2861. static const char * const scifa0_groups[] = {
  2862. "scifa0_data",
  2863. "scifa0_clk",
  2864. "scifa0_ctrl",
  2865. };
  2866. static const char * const scifa1_groups[] = {
  2867. "scifa1_data",
  2868. "scifa1_clk",
  2869. "scifa1_ctrl",
  2870. };
  2871. static const char * const scifa2_groups[] = {
  2872. "scifa2_data",
  2873. "scifa2_clk_0",
  2874. "scifa2_clk_1",
  2875. "scifa2_ctrl",
  2876. };
  2877. static const char * const scifa3_groups[] = {
  2878. "scifa3_data_0",
  2879. "scifa3_clk_0",
  2880. "scifa3_ctrl_0",
  2881. "scifa3_data_1",
  2882. "scifa3_clk_1",
  2883. "scifa3_ctrl_1",
  2884. };
  2885. static const char * const scifa4_groups[] = {
  2886. "scifa4_data_0",
  2887. "scifa4_data_1",
  2888. "scifa4_data_2",
  2889. "scifa4_clk_0",
  2890. "scifa4_clk_1",
  2891. };
  2892. static const char * const scifa5_groups[] = {
  2893. "scifa5_data_0",
  2894. "scifa5_data_1",
  2895. "scifa5_data_2",
  2896. "scifa5_clk_0",
  2897. "scifa5_clk_1",
  2898. };
  2899. static const char * const scifa6_groups[] = {
  2900. "scifa6_data",
  2901. "scifa6_clk",
  2902. };
  2903. static const char * const scifa7_groups[] = {
  2904. "scifa7_data",
  2905. };
  2906. static const char * const scifb_groups[] = {
  2907. "scifb_data_0",
  2908. "scifb_clk_0",
  2909. "scifb_ctrl_0",
  2910. "scifb_data_1",
  2911. "scifb_clk_1",
  2912. "scifb_ctrl_1",
  2913. };
  2914. static const char * const sdhi0_groups[] = {
  2915. "sdhi0_data1",
  2916. "sdhi0_data4",
  2917. "sdhi0_ctrl",
  2918. "sdhi0_cd",
  2919. "sdhi0_wp",
  2920. };
  2921. static const char * const sdhi1_groups[] = {
  2922. "sdhi1_data1",
  2923. "sdhi1_data4",
  2924. "sdhi1_ctrl",
  2925. "sdhi1_cd",
  2926. "sdhi1_wp",
  2927. };
  2928. static const char * const sdhi2_groups[] = {
  2929. "sdhi2_data1",
  2930. "sdhi2_data4",
  2931. "sdhi2_ctrl",
  2932. "sdhi2_cd_0",
  2933. "sdhi2_wp_0",
  2934. "sdhi2_cd_1",
  2935. "sdhi2_wp_1",
  2936. };
  2937. static const char * const tpu0_groups[] = {
  2938. "tpu0_to0",
  2939. "tpu0_to1",
  2940. "tpu0_to2_0",
  2941. "tpu0_to2_1",
  2942. "tpu0_to3",
  2943. };
  2944. static const struct sh_pfc_function pinmux_functions[] = {
  2945. SH_PFC_FUNCTION(bsc),
  2946. SH_PFC_FUNCTION(ceu0),
  2947. SH_PFC_FUNCTION(ceu1),
  2948. SH_PFC_FUNCTION(fsia),
  2949. SH_PFC_FUNCTION(fsib),
  2950. SH_PFC_FUNCTION(gether),
  2951. SH_PFC_FUNCTION(hdmi),
  2952. SH_PFC_FUNCTION(intc),
  2953. SH_PFC_FUNCTION(lcd0),
  2954. SH_PFC_FUNCTION(lcd1),
  2955. SH_PFC_FUNCTION(mmc0),
  2956. SH_PFC_FUNCTION(scifa0),
  2957. SH_PFC_FUNCTION(scifa1),
  2958. SH_PFC_FUNCTION(scifa2),
  2959. SH_PFC_FUNCTION(scifa3),
  2960. SH_PFC_FUNCTION(scifa4),
  2961. SH_PFC_FUNCTION(scifa5),
  2962. SH_PFC_FUNCTION(scifa6),
  2963. SH_PFC_FUNCTION(scifa7),
  2964. SH_PFC_FUNCTION(scifb),
  2965. SH_PFC_FUNCTION(sdhi0),
  2966. SH_PFC_FUNCTION(sdhi1),
  2967. SH_PFC_FUNCTION(sdhi2),
  2968. SH_PFC_FUNCTION(tpu0),
  2969. };
  2970. #undef PORTCR
  2971. #define PORTCR(nr, reg) \
  2972. { \
  2973. PINMUX_CFG_REG("PORT" nr "CR", reg, 8, 4) { \
  2974. _PCRH(PORT##nr##_IN, 0, 0, PORT##nr##_OUT), \
  2975. PORT##nr##_FN0, PORT##nr##_FN1, \
  2976. PORT##nr##_FN2, PORT##nr##_FN3, \
  2977. PORT##nr##_FN4, PORT##nr##_FN5, \
  2978. PORT##nr##_FN6, PORT##nr##_FN7 } \
  2979. }
  2980. static const struct pinmux_cfg_reg pinmux_config_regs[] = {
  2981. PORTCR(0, 0xe6050000), /* PORT0CR */
  2982. PORTCR(1, 0xe6050001), /* PORT1CR */
  2983. PORTCR(2, 0xe6050002), /* PORT2CR */
  2984. PORTCR(3, 0xe6050003), /* PORT3CR */
  2985. PORTCR(4, 0xe6050004), /* PORT4CR */
  2986. PORTCR(5, 0xe6050005), /* PORT5CR */
  2987. PORTCR(6, 0xe6050006), /* PORT6CR */
  2988. PORTCR(7, 0xe6050007), /* PORT7CR */
  2989. PORTCR(8, 0xe6050008), /* PORT8CR */
  2990. PORTCR(9, 0xe6050009), /* PORT9CR */
  2991. PORTCR(10, 0xe605000a), /* PORT10CR */
  2992. PORTCR(11, 0xe605000b), /* PORT11CR */
  2993. PORTCR(12, 0xe605000c), /* PORT12CR */
  2994. PORTCR(13, 0xe605000d), /* PORT13CR */
  2995. PORTCR(14, 0xe605000e), /* PORT14CR */
  2996. PORTCR(15, 0xe605000f), /* PORT15CR */
  2997. PORTCR(16, 0xe6050010), /* PORT16CR */
  2998. PORTCR(17, 0xe6050011), /* PORT17CR */
  2999. PORTCR(18, 0xe6050012), /* PORT18CR */
  3000. PORTCR(19, 0xe6050013), /* PORT19CR */
  3001. PORTCR(20, 0xe6050014), /* PORT20CR */
  3002. PORTCR(21, 0xe6050015), /* PORT21CR */
  3003. PORTCR(22, 0xe6050016), /* PORT22CR */
  3004. PORTCR(23, 0xe6050017), /* PORT23CR */
  3005. PORTCR(24, 0xe6050018), /* PORT24CR */
  3006. PORTCR(25, 0xe6050019), /* PORT25CR */
  3007. PORTCR(26, 0xe605001a), /* PORT26CR */
  3008. PORTCR(27, 0xe605001b), /* PORT27CR */
  3009. PORTCR(28, 0xe605001c), /* PORT28CR */
  3010. PORTCR(29, 0xe605001d), /* PORT29CR */
  3011. PORTCR(30, 0xe605001e), /* PORT30CR */
  3012. PORTCR(31, 0xe605001f), /* PORT31CR */
  3013. PORTCR(32, 0xe6050020), /* PORT32CR */
  3014. PORTCR(33, 0xe6050021), /* PORT33CR */
  3015. PORTCR(34, 0xe6050022), /* PORT34CR */
  3016. PORTCR(35, 0xe6050023), /* PORT35CR */
  3017. PORTCR(36, 0xe6050024), /* PORT36CR */
  3018. PORTCR(37, 0xe6050025), /* PORT37CR */
  3019. PORTCR(38, 0xe6050026), /* PORT38CR */
  3020. PORTCR(39, 0xe6050027), /* PORT39CR */
  3021. PORTCR(40, 0xe6050028), /* PORT40CR */
  3022. PORTCR(41, 0xe6050029), /* PORT41CR */
  3023. PORTCR(42, 0xe605002a), /* PORT42CR */
  3024. PORTCR(43, 0xe605002b), /* PORT43CR */
  3025. PORTCR(44, 0xe605002c), /* PORT44CR */
  3026. PORTCR(45, 0xe605002d), /* PORT45CR */
  3027. PORTCR(46, 0xe605002e), /* PORT46CR */
  3028. PORTCR(47, 0xe605002f), /* PORT47CR */
  3029. PORTCR(48, 0xe6050030), /* PORT48CR */
  3030. PORTCR(49, 0xe6050031), /* PORT49CR */
  3031. PORTCR(50, 0xe6050032), /* PORT50CR */
  3032. PORTCR(51, 0xe6050033), /* PORT51CR */
  3033. PORTCR(52, 0xe6050034), /* PORT52CR */
  3034. PORTCR(53, 0xe6050035), /* PORT53CR */
  3035. PORTCR(54, 0xe6050036), /* PORT54CR */
  3036. PORTCR(55, 0xe6050037), /* PORT55CR */
  3037. PORTCR(56, 0xe6050038), /* PORT56CR */
  3038. PORTCR(57, 0xe6050039), /* PORT57CR */
  3039. PORTCR(58, 0xe605003a), /* PORT58CR */
  3040. PORTCR(59, 0xe605003b), /* PORT59CR */
  3041. PORTCR(60, 0xe605003c), /* PORT60CR */
  3042. PORTCR(61, 0xe605003d), /* PORT61CR */
  3043. PORTCR(62, 0xe605003e), /* PORT62CR */
  3044. PORTCR(63, 0xe605003f), /* PORT63CR */
  3045. PORTCR(64, 0xe6050040), /* PORT64CR */
  3046. PORTCR(65, 0xe6050041), /* PORT65CR */
  3047. PORTCR(66, 0xe6050042), /* PORT66CR */
  3048. PORTCR(67, 0xe6050043), /* PORT67CR */
  3049. PORTCR(68, 0xe6050044), /* PORT68CR */
  3050. PORTCR(69, 0xe6050045), /* PORT69CR */
  3051. PORTCR(70, 0xe6050046), /* PORT70CR */
  3052. PORTCR(71, 0xe6050047), /* PORT71CR */
  3053. PORTCR(72, 0xe6050048), /* PORT72CR */
  3054. PORTCR(73, 0xe6050049), /* PORT73CR */
  3055. PORTCR(74, 0xe605004a), /* PORT74CR */
  3056. PORTCR(75, 0xe605004b), /* PORT75CR */
  3057. PORTCR(76, 0xe605004c), /* PORT76CR */
  3058. PORTCR(77, 0xe605004d), /* PORT77CR */
  3059. PORTCR(78, 0xe605004e), /* PORT78CR */
  3060. PORTCR(79, 0xe605004f), /* PORT79CR */
  3061. PORTCR(80, 0xe6050050), /* PORT80CR */
  3062. PORTCR(81, 0xe6050051), /* PORT81CR */
  3063. PORTCR(82, 0xe6050052), /* PORT82CR */
  3064. PORTCR(83, 0xe6050053), /* PORT83CR */
  3065. PORTCR(84, 0xe6051054), /* PORT84CR */
  3066. PORTCR(85, 0xe6051055), /* PORT85CR */
  3067. PORTCR(86, 0xe6051056), /* PORT86CR */
  3068. PORTCR(87, 0xe6051057), /* PORT87CR */
  3069. PORTCR(88, 0xe6051058), /* PORT88CR */
  3070. PORTCR(89, 0xe6051059), /* PORT89CR */
  3071. PORTCR(90, 0xe605105a), /* PORT90CR */
  3072. PORTCR(91, 0xe605105b), /* PORT91CR */
  3073. PORTCR(92, 0xe605105c), /* PORT92CR */
  3074. PORTCR(93, 0xe605105d), /* PORT93CR */
  3075. PORTCR(94, 0xe605105e), /* PORT94CR */
  3076. PORTCR(95, 0xe605105f), /* PORT95CR */
  3077. PORTCR(96, 0xe6051060), /* PORT96CR */
  3078. PORTCR(97, 0xe6051061), /* PORT97CR */
  3079. PORTCR(98, 0xe6051062), /* PORT98CR */
  3080. PORTCR(99, 0xe6051063), /* PORT99CR */
  3081. PORTCR(100, 0xe6051064), /* PORT100CR */
  3082. PORTCR(101, 0xe6051065), /* PORT101CR */
  3083. PORTCR(102, 0xe6051066), /* PORT102CR */
  3084. PORTCR(103, 0xe6051067), /* PORT103CR */
  3085. PORTCR(104, 0xe6051068), /* PORT104CR */
  3086. PORTCR(105, 0xe6051069), /* PORT105CR */
  3087. PORTCR(106, 0xe605106a), /* PORT106CR */
  3088. PORTCR(107, 0xe605106b), /* PORT107CR */
  3089. PORTCR(108, 0xe605106c), /* PORT108CR */
  3090. PORTCR(109, 0xe605106d), /* PORT109CR */
  3091. PORTCR(110, 0xe605106e), /* PORT110CR */
  3092. PORTCR(111, 0xe605106f), /* PORT111CR */
  3093. PORTCR(112, 0xe6051070), /* PORT112CR */
  3094. PORTCR(113, 0xe6051071), /* PORT113CR */
  3095. PORTCR(114, 0xe6051072), /* PORT114CR */
  3096. PORTCR(115, 0xe6052073), /* PORT115CR */
  3097. PORTCR(116, 0xe6052074), /* PORT116CR */
  3098. PORTCR(117, 0xe6052075), /* PORT117CR */
  3099. PORTCR(118, 0xe6052076), /* PORT118CR */
  3100. PORTCR(119, 0xe6052077), /* PORT119CR */
  3101. PORTCR(120, 0xe6052078), /* PORT120CR */
  3102. PORTCR(121, 0xe6052079), /* PORT121CR */
  3103. PORTCR(122, 0xe605207a), /* PORT122CR */
  3104. PORTCR(123, 0xe605207b), /* PORT123CR */
  3105. PORTCR(124, 0xe605207c), /* PORT124CR */
  3106. PORTCR(125, 0xe605207d), /* PORT125CR */
  3107. PORTCR(126, 0xe605207e), /* PORT126CR */
  3108. PORTCR(127, 0xe605207f), /* PORT127CR */
  3109. PORTCR(128, 0xe6052080), /* PORT128CR */
  3110. PORTCR(129, 0xe6052081), /* PORT129CR */
  3111. PORTCR(130, 0xe6052082), /* PORT130CR */
  3112. PORTCR(131, 0xe6052083), /* PORT131CR */
  3113. PORTCR(132, 0xe6052084), /* PORT132CR */
  3114. PORTCR(133, 0xe6052085), /* PORT133CR */
  3115. PORTCR(134, 0xe6052086), /* PORT134CR */
  3116. PORTCR(135, 0xe6052087), /* PORT135CR */
  3117. PORTCR(136, 0xe6052088), /* PORT136CR */
  3118. PORTCR(137, 0xe6052089), /* PORT137CR */
  3119. PORTCR(138, 0xe605208a), /* PORT138CR */
  3120. PORTCR(139, 0xe605208b), /* PORT139CR */
  3121. PORTCR(140, 0xe605208c), /* PORT140CR */
  3122. PORTCR(141, 0xe605208d), /* PORT141CR */
  3123. PORTCR(142, 0xe605208e), /* PORT142CR */
  3124. PORTCR(143, 0xe605208f), /* PORT143CR */
  3125. PORTCR(144, 0xe6052090), /* PORT144CR */
  3126. PORTCR(145, 0xe6052091), /* PORT145CR */
  3127. PORTCR(146, 0xe6052092), /* PORT146CR */
  3128. PORTCR(147, 0xe6052093), /* PORT147CR */
  3129. PORTCR(148, 0xe6052094), /* PORT148CR */
  3130. PORTCR(149, 0xe6052095), /* PORT149CR */
  3131. PORTCR(150, 0xe6052096), /* PORT150CR */
  3132. PORTCR(151, 0xe6052097), /* PORT151CR */
  3133. PORTCR(152, 0xe6052098), /* PORT152CR */
  3134. PORTCR(153, 0xe6052099), /* PORT153CR */
  3135. PORTCR(154, 0xe605209a), /* PORT154CR */
  3136. PORTCR(155, 0xe605209b), /* PORT155CR */
  3137. PORTCR(156, 0xe605209c), /* PORT156CR */
  3138. PORTCR(157, 0xe605209d), /* PORT157CR */
  3139. PORTCR(158, 0xe605209e), /* PORT158CR */
  3140. PORTCR(159, 0xe605209f), /* PORT159CR */
  3141. PORTCR(160, 0xe60520a0), /* PORT160CR */
  3142. PORTCR(161, 0xe60520a1), /* PORT161CR */
  3143. PORTCR(162, 0xe60520a2), /* PORT162CR */
  3144. PORTCR(163, 0xe60520a3), /* PORT163CR */
  3145. PORTCR(164, 0xe60520a4), /* PORT164CR */
  3146. PORTCR(165, 0xe60520a5), /* PORT165CR */
  3147. PORTCR(166, 0xe60520a6), /* PORT166CR */
  3148. PORTCR(167, 0xe60520a7), /* PORT167CR */
  3149. PORTCR(168, 0xe60520a8), /* PORT168CR */
  3150. PORTCR(169, 0xe60520a9), /* PORT169CR */
  3151. PORTCR(170, 0xe60520aa), /* PORT170CR */
  3152. PORTCR(171, 0xe60520ab), /* PORT171CR */
  3153. PORTCR(172, 0xe60520ac), /* PORT172CR */
  3154. PORTCR(173, 0xe60520ad), /* PORT173CR */
  3155. PORTCR(174, 0xe60520ae), /* PORT174CR */
  3156. PORTCR(175, 0xe60520af), /* PORT175CR */
  3157. PORTCR(176, 0xe60520b0), /* PORT176CR */
  3158. PORTCR(177, 0xe60520b1), /* PORT177CR */
  3159. PORTCR(178, 0xe60520b2), /* PORT178CR */
  3160. PORTCR(179, 0xe60520b3), /* PORT179CR */
  3161. PORTCR(180, 0xe60520b4), /* PORT180CR */
  3162. PORTCR(181, 0xe60520b5), /* PORT181CR */
  3163. PORTCR(182, 0xe60520b6), /* PORT182CR */
  3164. PORTCR(183, 0xe60520b7), /* PORT183CR */
  3165. PORTCR(184, 0xe60520b8), /* PORT184CR */
  3166. PORTCR(185, 0xe60520b9), /* PORT185CR */
  3167. PORTCR(186, 0xe60520ba), /* PORT186CR */
  3168. PORTCR(187, 0xe60520bb), /* PORT187CR */
  3169. PORTCR(188, 0xe60520bc), /* PORT188CR */
  3170. PORTCR(189, 0xe60520bd), /* PORT189CR */
  3171. PORTCR(190, 0xe60520be), /* PORT190CR */
  3172. PORTCR(191, 0xe60520bf), /* PORT191CR */
  3173. PORTCR(192, 0xe60520c0), /* PORT192CR */
  3174. PORTCR(193, 0xe60520c1), /* PORT193CR */
  3175. PORTCR(194, 0xe60520c2), /* PORT194CR */
  3176. PORTCR(195, 0xe60520c3), /* PORT195CR */
  3177. PORTCR(196, 0xe60520c4), /* PORT196CR */
  3178. PORTCR(197, 0xe60520c5), /* PORT197CR */
  3179. PORTCR(198, 0xe60520c6), /* PORT198CR */
  3180. PORTCR(199, 0xe60520c7), /* PORT199CR */
  3181. PORTCR(200, 0xe60520c8), /* PORT200CR */
  3182. PORTCR(201, 0xe60520c9), /* PORT201CR */
  3183. PORTCR(202, 0xe60520ca), /* PORT202CR */
  3184. PORTCR(203, 0xe60520cb), /* PORT203CR */
  3185. PORTCR(204, 0xe60520cc), /* PORT204CR */
  3186. PORTCR(205, 0xe60520cd), /* PORT205CR */
  3187. PORTCR(206, 0xe60520ce), /* PORT206CR */
  3188. PORTCR(207, 0xe60520cf), /* PORT207CR */
  3189. PORTCR(208, 0xe60520d0), /* PORT208CR */
  3190. PORTCR(209, 0xe60520d1), /* PORT209CR */
  3191. PORTCR(210, 0xe60530d2), /* PORT210CR */
  3192. PORTCR(211, 0xe60530d3), /* PORT211CR */
  3193. { PINMUX_CFG_REG("MSEL1CR", 0xe605800c, 32, 1) {
  3194. MSEL1CR_31_0, MSEL1CR_31_1,
  3195. MSEL1CR_30_0, MSEL1CR_30_1,
  3196. MSEL1CR_29_0, MSEL1CR_29_1,
  3197. MSEL1CR_28_0, MSEL1CR_28_1,
  3198. MSEL1CR_27_0, MSEL1CR_27_1,
  3199. MSEL1CR_26_0, MSEL1CR_26_1,
  3200. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  3201. 0, 0, 0, 0, 0, 0, 0, 0,
  3202. MSEL1CR_16_0, MSEL1CR_16_1,
  3203. MSEL1CR_15_0, MSEL1CR_15_1,
  3204. MSEL1CR_14_0, MSEL1CR_14_1,
  3205. MSEL1CR_13_0, MSEL1CR_13_1,
  3206. MSEL1CR_12_0, MSEL1CR_12_1,
  3207. 0, 0, 0, 0,
  3208. MSEL1CR_9_0, MSEL1CR_9_1,
  3209. 0, 0,
  3210. MSEL1CR_7_0, MSEL1CR_7_1,
  3211. MSEL1CR_6_0, MSEL1CR_6_1,
  3212. MSEL1CR_5_0, MSEL1CR_5_1,
  3213. MSEL1CR_4_0, MSEL1CR_4_1,
  3214. MSEL1CR_3_0, MSEL1CR_3_1,
  3215. MSEL1CR_2_0, MSEL1CR_2_1,
  3216. 0, 0,
  3217. MSEL1CR_0_0, MSEL1CR_0_1,
  3218. }
  3219. },
  3220. { PINMUX_CFG_REG("MSEL3CR", 0xE6058020, 32, 1) {
  3221. 0, 0, 0, 0, 0, 0, 0, 0,
  3222. 0, 0, 0, 0, 0, 0, 0, 0,
  3223. 0, 0, 0, 0, 0, 0, 0, 0,
  3224. 0, 0, 0, 0, 0, 0, 0, 0,
  3225. MSEL3CR_15_0, MSEL3CR_15_1,
  3226. 0, 0, 0, 0, 0, 0, 0, 0,
  3227. 0, 0, 0, 0, 0, 0, 0, 0,
  3228. MSEL3CR_6_0, MSEL3CR_6_1,
  3229. 0, 0, 0, 0, 0, 0, 0, 0,
  3230. 0, 0, 0, 0,
  3231. }
  3232. },
  3233. { PINMUX_CFG_REG("MSEL4CR", 0xE6058024, 32, 1) {
  3234. 0, 0, 0, 0, 0, 0, 0, 0,
  3235. 0, 0, 0, 0, 0, 0, 0, 0,
  3236. 0, 0, 0, 0, 0, 0, 0, 0,
  3237. MSEL4CR_19_0, MSEL4CR_19_1,
  3238. MSEL4CR_18_0, MSEL4CR_18_1,
  3239. 0, 0, 0, 0,
  3240. MSEL4CR_15_0, MSEL4CR_15_1,
  3241. 0, 0, 0, 0, 0, 0, 0, 0,
  3242. MSEL4CR_10_0, MSEL4CR_10_1,
  3243. 0, 0, 0, 0, 0, 0,
  3244. MSEL4CR_6_0, MSEL4CR_6_1,
  3245. 0, 0,
  3246. MSEL4CR_4_0, MSEL4CR_4_1,
  3247. 0, 0, 0, 0,
  3248. MSEL4CR_1_0, MSEL4CR_1_1,
  3249. 0, 0,
  3250. }
  3251. },
  3252. { PINMUX_CFG_REG("MSEL5CR", 0xE6058028, 32, 1) {
  3253. MSEL5CR_31_0, MSEL5CR_31_1,
  3254. MSEL5CR_30_0, MSEL5CR_30_1,
  3255. MSEL5CR_29_0, MSEL5CR_29_1,
  3256. 0, 0,
  3257. MSEL5CR_27_0, MSEL5CR_27_1,
  3258. 0, 0,
  3259. MSEL5CR_25_0, MSEL5CR_25_1,
  3260. 0, 0,
  3261. MSEL5CR_23_0, MSEL5CR_23_1,
  3262. 0, 0,
  3263. MSEL5CR_21_0, MSEL5CR_21_1,
  3264. 0, 0,
  3265. MSEL5CR_19_0, MSEL5CR_19_1,
  3266. 0, 0,
  3267. MSEL5CR_17_0, MSEL5CR_17_1,
  3268. 0, 0,
  3269. MSEL5CR_15_0, MSEL5CR_15_1,
  3270. MSEL5CR_14_0, MSEL5CR_14_1,
  3271. MSEL5CR_13_0, MSEL5CR_13_1,
  3272. MSEL5CR_12_0, MSEL5CR_12_1,
  3273. MSEL5CR_11_0, MSEL5CR_11_1,
  3274. MSEL5CR_10_0, MSEL5CR_10_1,
  3275. 0, 0,
  3276. MSEL5CR_8_0, MSEL5CR_8_1,
  3277. MSEL5CR_7_0, MSEL5CR_7_1,
  3278. MSEL5CR_6_0, MSEL5CR_6_1,
  3279. MSEL5CR_5_0, MSEL5CR_5_1,
  3280. MSEL5CR_4_0, MSEL5CR_4_1,
  3281. MSEL5CR_3_0, MSEL5CR_3_1,
  3282. MSEL5CR_2_0, MSEL5CR_2_1,
  3283. 0, 0,
  3284. MSEL5CR_0_0, MSEL5CR_0_1,
  3285. }
  3286. },
  3287. { },
  3288. };
  3289. static const struct pinmux_data_reg pinmux_data_regs[] = {
  3290. { PINMUX_DATA_REG("PORTL031_000DR", 0xe6054800, 32) {
  3291. PORT31_DATA, PORT30_DATA, PORT29_DATA, PORT28_DATA,
  3292. PORT27_DATA, PORT26_DATA, PORT25_DATA, PORT24_DATA,
  3293. PORT23_DATA, PORT22_DATA, PORT21_DATA, PORT20_DATA,
  3294. PORT19_DATA, PORT18_DATA, PORT17_DATA, PORT16_DATA,
  3295. PORT15_DATA, PORT14_DATA, PORT13_DATA, PORT12_DATA,
  3296. PORT11_DATA, PORT10_DATA, PORT9_DATA, PORT8_DATA,
  3297. PORT7_DATA, PORT6_DATA, PORT5_DATA, PORT4_DATA,
  3298. PORT3_DATA, PORT2_DATA, PORT1_DATA, PORT0_DATA }
  3299. },
  3300. { PINMUX_DATA_REG("PORTL063_032DR", 0xe6054804, 32) {
  3301. PORT63_DATA, PORT62_DATA, PORT61_DATA, PORT60_DATA,
  3302. PORT59_DATA, PORT58_DATA, PORT57_DATA, PORT56_DATA,
  3303. PORT55_DATA, PORT54_DATA, PORT53_DATA, PORT52_DATA,
  3304. PORT51_DATA, PORT50_DATA, PORT49_DATA, PORT48_DATA,
  3305. PORT47_DATA, PORT46_DATA, PORT45_DATA, PORT44_DATA,
  3306. PORT43_DATA, PORT42_DATA, PORT41_DATA, PORT40_DATA,
  3307. PORT39_DATA, PORT38_DATA, PORT37_DATA, PORT36_DATA,
  3308. PORT35_DATA, PORT34_DATA, PORT33_DATA, PORT32_DATA }
  3309. },
  3310. { PINMUX_DATA_REG("PORTL095_064DR", 0xe6054808, 32) {
  3311. 0, 0, 0, 0,
  3312. 0, 0, 0, 0,
  3313. 0, 0, 0, 0,
  3314. PORT83_DATA, PORT82_DATA, PORT81_DATA, PORT80_DATA,
  3315. PORT79_DATA, PORT78_DATA, PORT77_DATA, PORT76_DATA,
  3316. PORT75_DATA, PORT74_DATA, PORT73_DATA, PORT72_DATA,
  3317. PORT71_DATA, PORT70_DATA, PORT69_DATA, PORT68_DATA,
  3318. PORT67_DATA, PORT66_DATA, PORT65_DATA, PORT64_DATA }
  3319. },
  3320. { PINMUX_DATA_REG("PORTD095_064DR", 0xe6055808, 32) {
  3321. PORT95_DATA, PORT94_DATA, PORT93_DATA, PORT92_DATA,
  3322. PORT91_DATA, PORT90_DATA, PORT89_DATA, PORT88_DATA,
  3323. PORT87_DATA, PORT86_DATA, PORT85_DATA, PORT84_DATA,
  3324. 0, 0, 0, 0,
  3325. 0, 0, 0, 0,
  3326. 0, 0, 0, 0,
  3327. 0, 0, 0, 0,
  3328. 0, 0, 0, 0 }
  3329. },
  3330. { PINMUX_DATA_REG("PORTD127_096DR", 0xe605580c, 32) {
  3331. 0, 0, 0, 0,
  3332. 0, 0, 0, 0,
  3333. 0, 0, 0, 0,
  3334. 0, PORT114_DATA, PORT113_DATA, PORT112_DATA,
  3335. PORT111_DATA, PORT110_DATA, PORT109_DATA, PORT108_DATA,
  3336. PORT107_DATA, PORT106_DATA, PORT105_DATA, PORT104_DATA,
  3337. PORT103_DATA, PORT102_DATA, PORT101_DATA, PORT100_DATA,
  3338. PORT99_DATA, PORT98_DATA, PORT97_DATA, PORT96_DATA }
  3339. },
  3340. { PINMUX_DATA_REG("PORTR127_096DR", 0xe605680C, 32) {
  3341. PORT127_DATA, PORT126_DATA, PORT125_DATA, PORT124_DATA,
  3342. PORT123_DATA, PORT122_DATA, PORT121_DATA, PORT120_DATA,
  3343. PORT119_DATA, PORT118_DATA, PORT117_DATA, PORT116_DATA,
  3344. PORT115_DATA, 0, 0, 0,
  3345. 0, 0, 0, 0,
  3346. 0, 0, 0, 0,
  3347. 0, 0, 0, 0,
  3348. 0, 0, 0, 0 }
  3349. },
  3350. { PINMUX_DATA_REG("PORTR159_128DR", 0xe6056810, 32) {
  3351. PORT159_DATA, PORT158_DATA, PORT157_DATA, PORT156_DATA,
  3352. PORT155_DATA, PORT154_DATA, PORT153_DATA, PORT152_DATA,
  3353. PORT151_DATA, PORT150_DATA, PORT149_DATA, PORT148_DATA,
  3354. PORT147_DATA, PORT146_DATA, PORT145_DATA, PORT144_DATA,
  3355. PORT143_DATA, PORT142_DATA, PORT141_DATA, PORT140_DATA,
  3356. PORT139_DATA, PORT138_DATA, PORT137_DATA, PORT136_DATA,
  3357. PORT135_DATA, PORT134_DATA, PORT133_DATA, PORT132_DATA,
  3358. PORT131_DATA, PORT130_DATA, PORT129_DATA, PORT128_DATA }
  3359. },
  3360. { PINMUX_DATA_REG("PORTR191_160DR", 0xe6056814, 32) {
  3361. PORT191_DATA, PORT190_DATA, PORT189_DATA, PORT188_DATA,
  3362. PORT187_DATA, PORT186_DATA, PORT185_DATA, PORT184_DATA,
  3363. PORT183_DATA, PORT182_DATA, PORT181_DATA, PORT180_DATA,
  3364. PORT179_DATA, PORT178_DATA, PORT177_DATA, PORT176_DATA,
  3365. PORT175_DATA, PORT174_DATA, PORT173_DATA, PORT172_DATA,
  3366. PORT171_DATA, PORT170_DATA, PORT169_DATA, PORT168_DATA,
  3367. PORT167_DATA, PORT166_DATA, PORT165_DATA, PORT164_DATA,
  3368. PORT163_DATA, PORT162_DATA, PORT161_DATA, PORT160_DATA }
  3369. },
  3370. { PINMUX_DATA_REG("PORTR223_192DR", 0xe6056818, 32) {
  3371. 0, 0, 0, 0,
  3372. 0, 0, 0, 0,
  3373. 0, 0, 0, 0,
  3374. 0, 0, PORT209_DATA, PORT208_DATA,
  3375. PORT207_DATA, PORT206_DATA, PORT205_DATA, PORT204_DATA,
  3376. PORT203_DATA, PORT202_DATA, PORT201_DATA, PORT200_DATA,
  3377. PORT199_DATA, PORT198_DATA, PORT197_DATA, PORT196_DATA,
  3378. PORT195_DATA, PORT194_DATA, PORT193_DATA, PORT192_DATA }
  3379. },
  3380. { PINMUX_DATA_REG("PORTU223_192DR", 0xe6057818, 32) {
  3381. 0, 0, 0, 0,
  3382. 0, 0, 0, 0,
  3383. 0, 0, 0, 0,
  3384. PORT211_DATA, PORT210_DATA, 0, 0,
  3385. 0, 0, 0, 0,
  3386. 0, 0, 0, 0,
  3387. 0, 0, 0, 0,
  3388. 0, 0, 0, 0 }
  3389. },
  3390. { },
  3391. };
  3392. static const struct pinmux_irq pinmux_irqs[] = {
  3393. PINMUX_IRQ(irq_pin(0), 2, 13), /* IRQ0A */
  3394. PINMUX_IRQ(irq_pin(1), 20), /* IRQ1A */
  3395. PINMUX_IRQ(irq_pin(2), 11, 12), /* IRQ2A */
  3396. PINMUX_IRQ(irq_pin(3), 10, 14), /* IRQ3A */
  3397. PINMUX_IRQ(irq_pin(4), 15, 172), /* IRQ4A */
  3398. PINMUX_IRQ(irq_pin(5), 0, 1), /* IRQ5A */
  3399. PINMUX_IRQ(irq_pin(6), 121, 173), /* IRQ6A */
  3400. PINMUX_IRQ(irq_pin(7), 120, 209), /* IRQ7A */
  3401. PINMUX_IRQ(irq_pin(8), 119), /* IRQ8A */
  3402. PINMUX_IRQ(irq_pin(9), 118, 210), /* IRQ9A */
  3403. PINMUX_IRQ(irq_pin(10), 19), /* IRQ10A */
  3404. PINMUX_IRQ(irq_pin(11), 104), /* IRQ11A */
  3405. PINMUX_IRQ(irq_pin(12), 42, 97), /* IRQ12A */
  3406. PINMUX_IRQ(irq_pin(13), 64, 98), /* IRQ13A */
  3407. PINMUX_IRQ(irq_pin(14), 63, 99), /* IRQ14A */
  3408. PINMUX_IRQ(irq_pin(15), 62, 100), /* IRQ15A */
  3409. PINMUX_IRQ(irq_pin(16), 68, 211), /* IRQ16A */
  3410. PINMUX_IRQ(irq_pin(17), 69), /* IRQ17A */
  3411. PINMUX_IRQ(irq_pin(18), 70), /* IRQ18A */
  3412. PINMUX_IRQ(irq_pin(19), 71), /* IRQ19A */
  3413. PINMUX_IRQ(irq_pin(20), 67), /* IRQ20A */
  3414. PINMUX_IRQ(irq_pin(21), 202), /* IRQ21A */
  3415. PINMUX_IRQ(irq_pin(22), 95), /* IRQ22A */
  3416. PINMUX_IRQ(irq_pin(23), 96), /* IRQ23A */
  3417. PINMUX_IRQ(irq_pin(24), 180), /* IRQ24A */
  3418. PINMUX_IRQ(irq_pin(25), 38), /* IRQ25A */
  3419. PINMUX_IRQ(irq_pin(26), 58, 81), /* IRQ26A */
  3420. PINMUX_IRQ(irq_pin(27), 57, 168), /* IRQ27A */
  3421. PINMUX_IRQ(irq_pin(28), 56, 169), /* IRQ28A */
  3422. PINMUX_IRQ(irq_pin(29), 50, 170), /* IRQ29A */
  3423. PINMUX_IRQ(irq_pin(30), 49, 171), /* IRQ30A */
  3424. PINMUX_IRQ(irq_pin(31), 41, 167), /* IRQ31A */
  3425. };
  3426. #define PORTnCR_PULMD_OFF (0 << 6)
  3427. #define PORTnCR_PULMD_DOWN (2 << 6)
  3428. #define PORTnCR_PULMD_UP (3 << 6)
  3429. #define PORTnCR_PULMD_MASK (3 << 6)
  3430. struct r8a7740_portcr_group {
  3431. unsigned int end_pin;
  3432. unsigned int offset;
  3433. };
  3434. static const struct r8a7740_portcr_group r8a7740_portcr_offsets[] = {
  3435. { 83, 0x0000 }, { 114, 0x1000 }, { 209, 0x2000 }, { 211, 0x3000 },
  3436. };
  3437. static void __iomem *r8a7740_pinmux_portcr(struct sh_pfc *pfc, unsigned int pin)
  3438. {
  3439. unsigned int i;
  3440. for (i = 0; i < ARRAY_SIZE(r8a7740_portcr_offsets); ++i) {
  3441. const struct r8a7740_portcr_group *group =
  3442. &r8a7740_portcr_offsets[i];
  3443. if (i <= group->end_pin)
  3444. return pfc->window->virt + group->offset + pin;
  3445. }
  3446. return NULL;
  3447. }
  3448. static unsigned int r8a7740_pinmux_get_bias(struct sh_pfc *pfc, unsigned int pin)
  3449. {
  3450. void __iomem *addr = r8a7740_pinmux_portcr(pfc, pin);
  3451. u32 value = ioread8(addr) & PORTnCR_PULMD_MASK;
  3452. switch (value) {
  3453. case PORTnCR_PULMD_UP:
  3454. return PIN_CONFIG_BIAS_PULL_UP;
  3455. case PORTnCR_PULMD_DOWN:
  3456. return PIN_CONFIG_BIAS_PULL_DOWN;
  3457. case PORTnCR_PULMD_OFF:
  3458. default:
  3459. return PIN_CONFIG_BIAS_DISABLE;
  3460. }
  3461. }
  3462. static void r8a7740_pinmux_set_bias(struct sh_pfc *pfc, unsigned int pin,
  3463. unsigned int bias)
  3464. {
  3465. void __iomem *addr = r8a7740_pinmux_portcr(pfc, pin);
  3466. u32 value = ioread8(addr) & ~PORTnCR_PULMD_MASK;
  3467. switch (bias) {
  3468. case PIN_CONFIG_BIAS_PULL_UP:
  3469. value |= PORTnCR_PULMD_UP;
  3470. break;
  3471. case PIN_CONFIG_BIAS_PULL_DOWN:
  3472. value |= PORTnCR_PULMD_DOWN;
  3473. break;
  3474. }
  3475. iowrite8(value, addr);
  3476. }
  3477. static const struct sh_pfc_soc_operations r8a7740_pinmux_ops = {
  3478. .get_bias = r8a7740_pinmux_get_bias,
  3479. .set_bias = r8a7740_pinmux_set_bias,
  3480. };
  3481. const struct sh_pfc_soc_info r8a7740_pinmux_info = {
  3482. .name = "r8a7740_pfc",
  3483. .ops = &r8a7740_pinmux_ops,
  3484. .input = { PINMUX_INPUT_BEGIN,
  3485. PINMUX_INPUT_END },
  3486. .output = { PINMUX_OUTPUT_BEGIN,
  3487. PINMUX_OUTPUT_END },
  3488. .function = { PINMUX_FUNCTION_BEGIN,
  3489. PINMUX_FUNCTION_END },
  3490. .pins = pinmux_pins,
  3491. .nr_pins = ARRAY_SIZE(pinmux_pins),
  3492. .groups = pinmux_groups,
  3493. .nr_groups = ARRAY_SIZE(pinmux_groups),
  3494. .functions = pinmux_functions,
  3495. .nr_functions = ARRAY_SIZE(pinmux_functions),
  3496. .cfg_regs = pinmux_config_regs,
  3497. .data_regs = pinmux_data_regs,
  3498. .gpio_data = pinmux_data,
  3499. .gpio_data_size = ARRAY_SIZE(pinmux_data),
  3500. .gpio_irq = pinmux_irqs,
  3501. .gpio_irq_size = ARRAY_SIZE(pinmux_irqs),
  3502. };