portmux.h 16 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205
  1. /*
  2. * Common header file for Blackfin family of processors
  3. *
  4. * Copyright 2007-2008 Analog Devices Inc.
  5. *
  6. * Licensed under the GPL-2 or later.
  7. */
  8. #ifndef _PORTMUX_H_
  9. #define _PORTMUX_H_
  10. #define P_IDENT(x) ((x) & 0x1FF)
  11. #define P_FUNCT(x) (((x) & 0x3) << 9)
  12. #define P_FUNCT2MUX(x) (((x) >> 9) & 0x3)
  13. #define P_DEFINED 0x8000
  14. #define P_UNDEF 0x4000
  15. #define P_MAYSHARE 0x2000
  16. #define P_DONTCARE 0x1000
  17. #ifdef CONFIG_PINCTRL
  18. int bfin_internal_set_wake(unsigned int irq, unsigned int state);
  19. #define gpio_pint_regs bfin_pint_regs
  20. #define adi_internal_set_wake bfin_internal_set_wake
  21. #define peripheral_request(per, label) (0)
  22. #define peripheral_free(per)
  23. #define peripheral_request_list(per, label) (0)
  24. #define peripheral_free_list(per)
  25. #else
  26. int peripheral_request(unsigned short per, const char *label);
  27. void peripheral_free(unsigned short per);
  28. int peripheral_request_list(const unsigned short per[], const char *label);
  29. void peripheral_free_list(const unsigned short per[]);
  30. #endif
  31. #include <linux/err.h>
  32. #include <linux/pinctrl/pinctrl.h>
  33. #include <mach/portmux.h>
  34. #include <mach/gpio.h>
  35. #ifndef P_SPORT2_TFS
  36. #define P_SPORT2_TFS P_UNDEF
  37. #endif
  38. #ifndef P_SPORT2_DTSEC
  39. #define P_SPORT2_DTSEC P_UNDEF
  40. #endif
  41. #ifndef P_SPORT2_DTPRI
  42. #define P_SPORT2_DTPRI P_UNDEF
  43. #endif
  44. #ifndef P_SPORT2_TSCLK
  45. #define P_SPORT2_TSCLK P_UNDEF
  46. #endif
  47. #ifndef P_SPORT2_RFS
  48. #define P_SPORT2_RFS P_UNDEF
  49. #endif
  50. #ifndef P_SPORT2_DRSEC
  51. #define P_SPORT2_DRSEC P_UNDEF
  52. #endif
  53. #ifndef P_SPORT2_DRPRI
  54. #define P_SPORT2_DRPRI P_UNDEF
  55. #endif
  56. #ifndef P_SPORT2_RSCLK
  57. #define P_SPORT2_RSCLK P_UNDEF
  58. #endif
  59. #ifndef P_SPORT3_TFS
  60. #define P_SPORT3_TFS P_UNDEF
  61. #endif
  62. #ifndef P_SPORT3_DTSEC
  63. #define P_SPORT3_DTSEC P_UNDEF
  64. #endif
  65. #ifndef P_SPORT3_DTPRI
  66. #define P_SPORT3_DTPRI P_UNDEF
  67. #endif
  68. #ifndef P_SPORT3_TSCLK
  69. #define P_SPORT3_TSCLK P_UNDEF
  70. #endif
  71. #ifndef P_SPORT3_RFS
  72. #define P_SPORT3_RFS P_UNDEF
  73. #endif
  74. #ifndef P_SPORT3_DRSEC
  75. #define P_SPORT3_DRSEC P_UNDEF
  76. #endif
  77. #ifndef P_SPORT3_DRPRI
  78. #define P_SPORT3_DRPRI P_UNDEF
  79. #endif
  80. #ifndef P_SPORT3_RSCLK
  81. #define P_SPORT3_RSCLK P_UNDEF
  82. #endif
  83. #ifndef P_TMR4
  84. #define P_TMR4 P_UNDEF
  85. #endif
  86. #ifndef P_TMR5
  87. #define P_TMR5 P_UNDEF
  88. #endif
  89. #ifndef P_TMR6
  90. #define P_TMR6 P_UNDEF
  91. #endif
  92. #ifndef P_TMR7
  93. #define P_TMR7 P_UNDEF
  94. #endif
  95. #ifndef P_TWI1_SCL
  96. #define P_TWI1_SCL P_UNDEF
  97. #endif
  98. #ifndef P_TWI1_SDA
  99. #define P_TWI1_SDA P_UNDEF
  100. #endif
  101. #ifndef P_UART3_RTS
  102. #define P_UART3_RTS P_UNDEF
  103. #endif
  104. #ifndef P_UART3_CTS
  105. #define P_UART3_CTS P_UNDEF
  106. #endif
  107. #ifndef P_UART2_TX
  108. #define P_UART2_TX P_UNDEF
  109. #endif
  110. #ifndef P_UART2_RX
  111. #define P_UART2_RX P_UNDEF
  112. #endif
  113. #ifndef P_UART3_TX
  114. #define P_UART3_TX P_UNDEF
  115. #endif
  116. #ifndef P_UART3_RX
  117. #define P_UART3_RX P_UNDEF
  118. #endif
  119. #ifndef P_SPI2_SS
  120. #define P_SPI2_SS P_UNDEF
  121. #endif
  122. #ifndef P_SPI2_SSEL1
  123. #define P_SPI2_SSEL1 P_UNDEF
  124. #endif
  125. #ifndef P_SPI2_SSEL2
  126. #define P_SPI2_SSEL2 P_UNDEF
  127. #endif
  128. #ifndef P_SPI2_SSEL3
  129. #define P_SPI2_SSEL3 P_UNDEF
  130. #endif
  131. #ifndef P_SPI2_SSEL4
  132. #define P_SPI2_SSEL4 P_UNDEF
  133. #endif
  134. #ifndef P_SPI2_SSEL5
  135. #define P_SPI2_SSEL5 P_UNDEF
  136. #endif
  137. #ifndef P_SPI2_SSEL6
  138. #define P_SPI2_SSEL6 P_UNDEF
  139. #endif
  140. #ifndef P_SPI2_SSEL7
  141. #define P_SPI2_SSEL7 P_UNDEF
  142. #endif
  143. #ifndef P_SPI2_SCK
  144. #define P_SPI2_SCK P_UNDEF
  145. #endif
  146. #ifndef P_SPI2_MOSI
  147. #define P_SPI2_MOSI P_UNDEF
  148. #endif
  149. #ifndef P_SPI2_MISO
  150. #define P_SPI2_MISO P_UNDEF
  151. #endif
  152. #ifndef P_TMR0
  153. #define P_TMR0 P_UNDEF
  154. #endif
  155. #ifndef P_TMR1
  156. #define P_TMR1 P_UNDEF
  157. #endif
  158. #ifndef P_TMR2
  159. #define P_TMR2 P_UNDEF
  160. #endif
  161. #ifndef P_TMR3
  162. #define P_TMR3 P_UNDEF
  163. #endif
  164. #ifndef P_SPORT0_TFS
  165. #define P_SPORT0_TFS P_UNDEF
  166. #endif
  167. #ifndef P_SPORT0_DTSEC
  168. #define P_SPORT0_DTSEC P_UNDEF
  169. #endif
  170. #ifndef P_SPORT0_DTPRI
  171. #define P_SPORT0_DTPRI P_UNDEF
  172. #endif
  173. #ifndef P_SPORT0_TSCLK
  174. #define P_SPORT0_TSCLK P_UNDEF
  175. #endif
  176. #ifndef P_SPORT0_RFS
  177. #define P_SPORT0_RFS P_UNDEF
  178. #endif
  179. #ifndef P_SPORT0_DRSEC
  180. #define P_SPORT0_DRSEC P_UNDEF
  181. #endif
  182. #ifndef P_SPORT0_DRPRI
  183. #define P_SPORT0_DRPRI P_UNDEF
  184. #endif
  185. #ifndef P_SPORT0_RSCLK
  186. #define P_SPORT0_RSCLK P_UNDEF
  187. #endif
  188. #ifndef P_SD_D0
  189. #define P_SD_D0 P_UNDEF
  190. #endif
  191. #ifndef P_SD_D1
  192. #define P_SD_D1 P_UNDEF
  193. #endif
  194. #ifndef P_SD_D2
  195. #define P_SD_D2 P_UNDEF
  196. #endif
  197. #ifndef P_SD_D3
  198. #define P_SD_D3 P_UNDEF
  199. #endif
  200. #ifndef P_SD_CLK
  201. #define P_SD_CLK P_UNDEF
  202. #endif
  203. #ifndef P_SD_CMD
  204. #define P_SD_CMD P_UNDEF
  205. #endif
  206. #ifndef P_MMCLK
  207. #define P_MMCLK P_UNDEF
  208. #endif
  209. #ifndef P_MBCLK
  210. #define P_MBCLK P_UNDEF
  211. #endif
  212. #ifndef P_PPI1_D0
  213. #define P_PPI1_D0 P_UNDEF
  214. #endif
  215. #ifndef P_PPI1_D1
  216. #define P_PPI1_D1 P_UNDEF
  217. #endif
  218. #ifndef P_PPI1_D2
  219. #define P_PPI1_D2 P_UNDEF
  220. #endif
  221. #ifndef P_PPI1_D3
  222. #define P_PPI1_D3 P_UNDEF
  223. #endif
  224. #ifndef P_PPI1_D4
  225. #define P_PPI1_D4 P_UNDEF
  226. #endif
  227. #ifndef P_PPI1_D5
  228. #define P_PPI1_D5 P_UNDEF
  229. #endif
  230. #ifndef P_PPI1_D6
  231. #define P_PPI1_D6 P_UNDEF
  232. #endif
  233. #ifndef P_PPI1_D7
  234. #define P_PPI1_D7 P_UNDEF
  235. #endif
  236. #ifndef P_PPI1_D8
  237. #define P_PPI1_D8 P_UNDEF
  238. #endif
  239. #ifndef P_PPI1_D9
  240. #define P_PPI1_D9 P_UNDEF
  241. #endif
  242. #ifndef P_PPI1_D10
  243. #define P_PPI1_D10 P_UNDEF
  244. #endif
  245. #ifndef P_PPI1_D11
  246. #define P_PPI1_D11 P_UNDEF
  247. #endif
  248. #ifndef P_PPI1_D12
  249. #define P_PPI1_D12 P_UNDEF
  250. #endif
  251. #ifndef P_PPI1_D13
  252. #define P_PPI1_D13 P_UNDEF
  253. #endif
  254. #ifndef P_PPI1_D14
  255. #define P_PPI1_D14 P_UNDEF
  256. #endif
  257. #ifndef P_PPI1_D15
  258. #define P_PPI1_D15 P_UNDEF
  259. #endif
  260. #ifndef P_HOST_D8
  261. #define P_HOST_D8 P_UNDEF
  262. #endif
  263. #ifndef P_HOST_D9
  264. #define P_HOST_D9 P_UNDEF
  265. #endif
  266. #ifndef P_HOST_D10
  267. #define P_HOST_D10 P_UNDEF
  268. #endif
  269. #ifndef P_HOST_D11
  270. #define P_HOST_D11 P_UNDEF
  271. #endif
  272. #ifndef P_HOST_D12
  273. #define P_HOST_D12 P_UNDEF
  274. #endif
  275. #ifndef P_HOST_D13
  276. #define P_HOST_D13 P_UNDEF
  277. #endif
  278. #ifndef P_HOST_D14
  279. #define P_HOST_D14 P_UNDEF
  280. #endif
  281. #ifndef P_HOST_D15
  282. #define P_HOST_D15 P_UNDEF
  283. #endif
  284. #ifndef P_HOST_D0
  285. #define P_HOST_D0 P_UNDEF
  286. #endif
  287. #ifndef P_HOST_D1
  288. #define P_HOST_D1 P_UNDEF
  289. #endif
  290. #ifndef P_HOST_D2
  291. #define P_HOST_D2 P_UNDEF
  292. #endif
  293. #ifndef P_HOST_D3
  294. #define P_HOST_D3 P_UNDEF
  295. #endif
  296. #ifndef P_HOST_D4
  297. #define P_HOST_D4 P_UNDEF
  298. #endif
  299. #ifndef P_HOST_D5
  300. #define P_HOST_D5 P_UNDEF
  301. #endif
  302. #ifndef P_HOST_D6
  303. #define P_HOST_D6 P_UNDEF
  304. #endif
  305. #ifndef P_HOST_D7
  306. #define P_HOST_D7 P_UNDEF
  307. #endif
  308. #ifndef P_SPORT1_TFS
  309. #define P_SPORT1_TFS P_UNDEF
  310. #endif
  311. #ifndef P_SPORT1_DTSEC
  312. #define P_SPORT1_DTSEC P_UNDEF
  313. #endif
  314. #ifndef P_SPORT1_DTPRI
  315. #define P_SPORT1_DTPRI P_UNDEF
  316. #endif
  317. #ifndef P_SPORT1_TSCLK
  318. #define P_SPORT1_TSCLK P_UNDEF
  319. #endif
  320. #ifndef P_SPORT1_RFS
  321. #define P_SPORT1_RFS P_UNDEF
  322. #endif
  323. #ifndef P_SPORT1_DRSEC
  324. #define P_SPORT1_DRSEC P_UNDEF
  325. #endif
  326. #ifndef P_SPORT1_DRPRI
  327. #define P_SPORT1_DRPRI P_UNDEF
  328. #endif
  329. #ifndef P_SPORT1_RSCLK
  330. #define P_SPORT1_RSCLK P_UNDEF
  331. #endif
  332. #ifndef P_PPI2_D0
  333. #define P_PPI2_D0 P_UNDEF
  334. #endif
  335. #ifndef P_PPI2_D1
  336. #define P_PPI2_D1 P_UNDEF
  337. #endif
  338. #ifndef P_PPI2_D2
  339. #define P_PPI2_D2 P_UNDEF
  340. #endif
  341. #ifndef P_PPI2_D3
  342. #define P_PPI2_D3 P_UNDEF
  343. #endif
  344. #ifndef P_PPI2_D4
  345. #define P_PPI2_D4 P_UNDEF
  346. #endif
  347. #ifndef P_PPI2_D5
  348. #define P_PPI2_D5 P_UNDEF
  349. #endif
  350. #ifndef P_PPI2_D6
  351. #define P_PPI2_D6 P_UNDEF
  352. #endif
  353. #ifndef P_PPI2_D7
  354. #define P_PPI2_D7 P_UNDEF
  355. #endif
  356. #ifndef P_PPI0_D18
  357. #define P_PPI0_D18 P_UNDEF
  358. #endif
  359. #ifndef P_PPI0_D19
  360. #define P_PPI0_D19 P_UNDEF
  361. #endif
  362. #ifndef P_PPI0_D20
  363. #define P_PPI0_D20 P_UNDEF
  364. #endif
  365. #ifndef P_PPI0_D21
  366. #define P_PPI0_D21 P_UNDEF
  367. #endif
  368. #ifndef P_PPI0_D22
  369. #define P_PPI0_D22 P_UNDEF
  370. #endif
  371. #ifndef P_PPI0_D23
  372. #define P_PPI0_D23 P_UNDEF
  373. #endif
  374. #ifndef P_KEY_ROW0
  375. #define P_KEY_ROW0 P_UNDEF
  376. #endif
  377. #ifndef P_KEY_ROW1
  378. #define P_KEY_ROW1 P_UNDEF
  379. #endif
  380. #ifndef P_KEY_ROW2
  381. #define P_KEY_ROW2 P_UNDEF
  382. #endif
  383. #ifndef P_KEY_ROW3
  384. #define P_KEY_ROW3 P_UNDEF
  385. #endif
  386. #ifndef P_KEY_COL0
  387. #define P_KEY_COL0 P_UNDEF
  388. #endif
  389. #ifndef P_KEY_COL1
  390. #define P_KEY_COL1 P_UNDEF
  391. #endif
  392. #ifndef P_KEY_COL2
  393. #define P_KEY_COL2 P_UNDEF
  394. #endif
  395. #ifndef P_KEY_COL3
  396. #define P_KEY_COL3 P_UNDEF
  397. #endif
  398. #ifndef P_SPI0_SCK
  399. #define P_SPI0_SCK P_UNDEF
  400. #endif
  401. #ifndef P_SPI0_MISO
  402. #define P_SPI0_MISO P_UNDEF
  403. #endif
  404. #ifndef P_SPI0_MOSI
  405. #define P_SPI0_MOSI P_UNDEF
  406. #endif
  407. #ifndef P_SPI0_SS
  408. #define P_SPI0_SS P_UNDEF
  409. #endif
  410. #ifndef P_SPI0_SSEL1
  411. #define P_SPI0_SSEL1 P_UNDEF
  412. #endif
  413. #ifndef P_SPI0_SSEL2
  414. #define P_SPI0_SSEL2 P_UNDEF
  415. #endif
  416. #ifndef P_SPI0_SSEL3
  417. #define P_SPI0_SSEL3 P_UNDEF
  418. #endif
  419. #ifndef P_SPI0_SSEL4
  420. #define P_SPI0_SSEL4 P_UNDEF
  421. #endif
  422. #ifndef P_SPI0_SSEL5
  423. #define P_SPI0_SSEL5 P_UNDEF
  424. #endif
  425. #ifndef P_SPI0_SSEL6
  426. #define P_SPI0_SSEL6 P_UNDEF
  427. #endif
  428. #ifndef P_SPI0_SSEL7
  429. #define P_SPI0_SSEL7 P_UNDEF
  430. #endif
  431. #ifndef P_UART0_TX
  432. #define P_UART0_TX P_UNDEF
  433. #endif
  434. #ifndef P_UART0_RX
  435. #define P_UART0_RX P_UNDEF
  436. #endif
  437. #ifndef P_UART1_RTS
  438. #define P_UART1_RTS P_UNDEF
  439. #endif
  440. #ifndef P_UART1_CTS
  441. #define P_UART1_CTS P_UNDEF
  442. #endif
  443. #ifndef P_PPI1_CLK
  444. #define P_PPI1_CLK P_UNDEF
  445. #endif
  446. #ifndef P_PPI1_FS1
  447. #define P_PPI1_FS1 P_UNDEF
  448. #endif
  449. #ifndef P_PPI1_FS2
  450. #define P_PPI1_FS2 P_UNDEF
  451. #endif
  452. #ifndef P_TWI0_SCL
  453. #define P_TWI0_SCL P_UNDEF
  454. #endif
  455. #ifndef P_TWI0_SDA
  456. #define P_TWI0_SDA P_UNDEF
  457. #endif
  458. #ifndef P_KEY_COL7
  459. #define P_KEY_COL7 P_UNDEF
  460. #endif
  461. #ifndef P_KEY_ROW6
  462. #define P_KEY_ROW6 P_UNDEF
  463. #endif
  464. #ifndef P_KEY_COL6
  465. #define P_KEY_COL6 P_UNDEF
  466. #endif
  467. #ifndef P_KEY_ROW5
  468. #define P_KEY_ROW5 P_UNDEF
  469. #endif
  470. #ifndef P_KEY_COL5
  471. #define P_KEY_COL5 P_UNDEF
  472. #endif
  473. #ifndef P_KEY_ROW4
  474. #define P_KEY_ROW4 P_UNDEF
  475. #endif
  476. #ifndef P_KEY_COL4
  477. #define P_KEY_COL4 P_UNDEF
  478. #endif
  479. #ifndef P_KEY_ROW7
  480. #define P_KEY_ROW7 P_UNDEF
  481. #endif
  482. #ifndef P_PPI0_D0
  483. #define P_PPI0_D0 P_UNDEF
  484. #endif
  485. #ifndef P_PPI0_D1
  486. #define P_PPI0_D1 P_UNDEF
  487. #endif
  488. #ifndef P_PPI0_D2
  489. #define P_PPI0_D2 P_UNDEF
  490. #endif
  491. #ifndef P_PPI0_D3
  492. #define P_PPI0_D3 P_UNDEF
  493. #endif
  494. #ifndef P_PPI0_D4
  495. #define P_PPI0_D4 P_UNDEF
  496. #endif
  497. #ifndef P_PPI0_D5
  498. #define P_PPI0_D5 P_UNDEF
  499. #endif
  500. #ifndef P_PPI0_D6
  501. #define P_PPI0_D6 P_UNDEF
  502. #endif
  503. #ifndef P_PPI0_D7
  504. #define P_PPI0_D7 P_UNDEF
  505. #endif
  506. #ifndef P_PPI0_D8
  507. #define P_PPI0_D8 P_UNDEF
  508. #endif
  509. #ifndef P_PPI0_D9
  510. #define P_PPI0_D9 P_UNDEF
  511. #endif
  512. #ifndef P_PPI0_D10
  513. #define P_PPI0_D10 P_UNDEF
  514. #endif
  515. #ifndef P_PPI0_D11
  516. #define P_PPI0_D11 P_UNDEF
  517. #endif
  518. #ifndef P_PPI0_D12
  519. #define P_PPI0_D12 P_UNDEF
  520. #endif
  521. #ifndef P_PPI0_D13
  522. #define P_PPI0_D13 P_UNDEF
  523. #endif
  524. #ifndef P_PPI0_D14
  525. #define P_PPI0_D14 P_UNDEF
  526. #endif
  527. #ifndef P_PPI0_D15
  528. #define P_PPI0_D15 P_UNDEF
  529. #endif
  530. #ifndef P_ATAPI_D0A
  531. #define P_ATAPI_D0A P_UNDEF
  532. #endif
  533. #ifndef P_ATAPI_D1A
  534. #define P_ATAPI_D1A P_UNDEF
  535. #endif
  536. #ifndef P_ATAPI_D2A
  537. #define P_ATAPI_D2A P_UNDEF
  538. #endif
  539. #ifndef P_ATAPI_D3A
  540. #define P_ATAPI_D3A P_UNDEF
  541. #endif
  542. #ifndef P_ATAPI_D4A
  543. #define P_ATAPI_D4A P_UNDEF
  544. #endif
  545. #ifndef P_ATAPI_D5A
  546. #define P_ATAPI_D5A P_UNDEF
  547. #endif
  548. #ifndef P_ATAPI_D6A
  549. #define P_ATAPI_D6A P_UNDEF
  550. #endif
  551. #ifndef P_ATAPI_D7A
  552. #define P_ATAPI_D7A P_UNDEF
  553. #endif
  554. #ifndef P_ATAPI_D8A
  555. #define P_ATAPI_D8A P_UNDEF
  556. #endif
  557. #ifndef P_ATAPI_D9A
  558. #define P_ATAPI_D9A P_UNDEF
  559. #endif
  560. #ifndef P_ATAPI_D10A
  561. #define P_ATAPI_D10A P_UNDEF
  562. #endif
  563. #ifndef P_ATAPI_D11A
  564. #define P_ATAPI_D11A P_UNDEF
  565. #endif
  566. #ifndef P_ATAPI_D12A
  567. #define P_ATAPI_D12A P_UNDEF
  568. #endif
  569. #ifndef P_ATAPI_D13A
  570. #define P_ATAPI_D13A P_UNDEF
  571. #endif
  572. #ifndef P_ATAPI_D14A
  573. #define P_ATAPI_D14A P_UNDEF
  574. #endif
  575. #ifndef P_ATAPI_D15A
  576. #define P_ATAPI_D15A P_UNDEF
  577. #endif
  578. #ifndef P_PPI0_CLK
  579. #define P_PPI0_CLK P_UNDEF
  580. #endif
  581. #ifndef P_PPI0_FS1
  582. #define P_PPI0_FS1 P_UNDEF
  583. #endif
  584. #ifndef P_PPI0_FS2
  585. #define P_PPI0_FS2 P_UNDEF
  586. #endif
  587. #ifndef P_PPI0_D16
  588. #define P_PPI0_D16 P_UNDEF
  589. #endif
  590. #ifndef P_PPI0_D17
  591. #define P_PPI0_D17 P_UNDEF
  592. #endif
  593. #ifndef P_SPI1_SSEL1
  594. #define P_SPI1_SSEL1 P_UNDEF
  595. #endif
  596. #ifndef P_SPI1_SSEL2
  597. #define P_SPI1_SSEL2 P_UNDEF
  598. #endif
  599. #ifndef P_SPI1_SSEL3
  600. #define P_SPI1_SSEL3 P_UNDEF
  601. #endif
  602. #ifndef P_SPI1_SSEL4
  603. #define P_SPI1_SSEL4 P_UNDEF
  604. #endif
  605. #ifndef P_SPI1_SSEL5
  606. #define P_SPI1_SSEL5 P_UNDEF
  607. #endif
  608. #ifndef P_SPI1_SSEL6
  609. #define P_SPI1_SSEL6 P_UNDEF
  610. #endif
  611. #ifndef P_SPI1_SSEL7
  612. #define P_SPI1_SSEL7 P_UNDEF
  613. #endif
  614. #ifndef P_SPI1_SCK
  615. #define P_SPI1_SCK P_UNDEF
  616. #endif
  617. #ifndef P_SPI1_MISO
  618. #define P_SPI1_MISO P_UNDEF
  619. #endif
  620. #ifndef P_SPI1_MOSI
  621. #define P_SPI1_MOSI P_UNDEF
  622. #endif
  623. #ifndef P_SPI1_SS
  624. #define P_SPI1_SS P_UNDEF
  625. #endif
  626. #ifndef P_CAN0_TX
  627. #define P_CAN0_TX P_UNDEF
  628. #endif
  629. #ifndef P_CAN0_RX
  630. #define P_CAN0_RX P_UNDEF
  631. #endif
  632. #ifndef P_CAN1_TX
  633. #define P_CAN1_TX P_UNDEF
  634. #endif
  635. #ifndef P_CAN1_RX
  636. #define P_CAN1_RX P_UNDEF
  637. #endif
  638. #ifndef P_ATAPI_A0A
  639. #define P_ATAPI_A0A P_UNDEF
  640. #endif
  641. #ifndef P_ATAPI_A1A
  642. #define P_ATAPI_A1A P_UNDEF
  643. #endif
  644. #ifndef P_ATAPI_A2A
  645. #define P_ATAPI_A2A P_UNDEF
  646. #endif
  647. #ifndef P_HOST_CE
  648. #define P_HOST_CE P_UNDEF
  649. #endif
  650. #ifndef P_HOST_RD
  651. #define P_HOST_RD P_UNDEF
  652. #endif
  653. #ifndef P_HOST_WR
  654. #define P_HOST_WR P_UNDEF
  655. #endif
  656. #ifndef P_MTXONB
  657. #define P_MTXONB P_UNDEF
  658. #endif
  659. #ifndef P_PPI2_FS2
  660. #define P_PPI2_FS2 P_UNDEF
  661. #endif
  662. #ifndef P_PPI2_FS1
  663. #define P_PPI2_FS1 P_UNDEF
  664. #endif
  665. #ifndef P_PPI2_CLK
  666. #define P_PPI2_CLK P_UNDEF
  667. #endif
  668. #ifndef P_CNT_CZM
  669. #define P_CNT_CZM P_UNDEF
  670. #endif
  671. #ifndef P_UART1_TX
  672. #define P_UART1_TX P_UNDEF
  673. #endif
  674. #ifndef P_UART1_RX
  675. #define P_UART1_RX P_UNDEF
  676. #endif
  677. #ifndef P_ATAPI_RESET
  678. #define P_ATAPI_RESET P_UNDEF
  679. #endif
  680. #ifndef P_HOST_ADDR
  681. #define P_HOST_ADDR P_UNDEF
  682. #endif
  683. #ifndef P_HOST_ACK
  684. #define P_HOST_ACK P_UNDEF
  685. #endif
  686. #ifndef P_MTX
  687. #define P_MTX P_UNDEF
  688. #endif
  689. #ifndef P_MRX
  690. #define P_MRX P_UNDEF
  691. #endif
  692. #ifndef P_MRXONB
  693. #define P_MRXONB P_UNDEF
  694. #endif
  695. #ifndef P_A4
  696. #define P_A4 P_UNDEF
  697. #endif
  698. #ifndef P_A5
  699. #define P_A5 P_UNDEF
  700. #endif
  701. #ifndef P_A6
  702. #define P_A6 P_UNDEF
  703. #endif
  704. #ifndef P_A7
  705. #define P_A7 P_UNDEF
  706. #endif
  707. #ifndef P_A8
  708. #define P_A8 P_UNDEF
  709. #endif
  710. #ifndef P_A9
  711. #define P_A9 P_UNDEF
  712. #endif
  713. #ifndef P_PPI1_FS3
  714. #define P_PPI1_FS3 P_UNDEF
  715. #endif
  716. #ifndef P_PPI2_FS3
  717. #define P_PPI2_FS3 P_UNDEF
  718. #endif
  719. #ifndef P_TMR8
  720. #define P_TMR8 P_UNDEF
  721. #endif
  722. #ifndef P_TMR9
  723. #define P_TMR9 P_UNDEF
  724. #endif
  725. #ifndef P_TMR10
  726. #define P_TMR10 P_UNDEF
  727. #endif
  728. #ifndef P_TMR11
  729. #define P_TMR11 P_UNDEF
  730. #endif
  731. #ifndef P_DMAR0
  732. #define P_DMAR0 P_UNDEF
  733. #endif
  734. #ifndef P_DMAR1
  735. #define P_DMAR1 P_UNDEF
  736. #endif
  737. #ifndef P_PPI0_FS3
  738. #define P_PPI0_FS3 P_UNDEF
  739. #endif
  740. #ifndef P_CNT_CDG
  741. #define P_CNT_CDG P_UNDEF
  742. #endif
  743. #ifndef P_CNT_CUD
  744. #define P_CNT_CUD P_UNDEF
  745. #endif
  746. #ifndef P_A10
  747. #define P_A10 P_UNDEF
  748. #endif
  749. #ifndef P_A11
  750. #define P_A11 P_UNDEF
  751. #endif
  752. #ifndef P_A12
  753. #define P_A12 P_UNDEF
  754. #endif
  755. #ifndef P_A13
  756. #define P_A13 P_UNDEF
  757. #endif
  758. #ifndef P_A14
  759. #define P_A14 P_UNDEF
  760. #endif
  761. #ifndef P_A15
  762. #define P_A15 P_UNDEF
  763. #endif
  764. #ifndef P_A16
  765. #define P_A16 P_UNDEF
  766. #endif
  767. #ifndef P_A17
  768. #define P_A17 P_UNDEF
  769. #endif
  770. #ifndef P_A18
  771. #define P_A18 P_UNDEF
  772. #endif
  773. #ifndef P_A19
  774. #define P_A19 P_UNDEF
  775. #endif
  776. #ifndef P_A20
  777. #define P_A20 P_UNDEF
  778. #endif
  779. #ifndef P_A21
  780. #define P_A21 P_UNDEF
  781. #endif
  782. #ifndef P_A22
  783. #define P_A22 P_UNDEF
  784. #endif
  785. #ifndef P_A23
  786. #define P_A23 P_UNDEF
  787. #endif
  788. #ifndef P_A24
  789. #define P_A24 P_UNDEF
  790. #endif
  791. #ifndef P_A25
  792. #define P_A25 P_UNDEF
  793. #endif
  794. #ifndef P_NOR_CLK
  795. #define P_NOR_CLK P_UNDEF
  796. #endif
  797. #ifndef P_TMRCLK
  798. #define P_TMRCLK P_UNDEF
  799. #endif
  800. #ifndef P_AMC_ARDY_NOR_WAIT
  801. #define P_AMC_ARDY_NOR_WAIT P_UNDEF
  802. #endif
  803. #ifndef P_NAND_CE
  804. #define P_NAND_CE P_UNDEF
  805. #endif
  806. #ifndef P_NAND_RB
  807. #define P_NAND_RB P_UNDEF
  808. #endif
  809. #ifndef P_ATAPI_DIOR
  810. #define P_ATAPI_DIOR P_UNDEF
  811. #endif
  812. #ifndef P_ATAPI_DIOW
  813. #define P_ATAPI_DIOW P_UNDEF
  814. #endif
  815. #ifndef P_ATAPI_CS0
  816. #define P_ATAPI_CS0 P_UNDEF
  817. #endif
  818. #ifndef P_ATAPI_CS1
  819. #define P_ATAPI_CS1 P_UNDEF
  820. #endif
  821. #ifndef P_ATAPI_DMACK
  822. #define P_ATAPI_DMACK P_UNDEF
  823. #endif
  824. #ifndef P_ATAPI_DMARQ
  825. #define P_ATAPI_DMARQ P_UNDEF
  826. #endif
  827. #ifndef P_ATAPI_INTRQ
  828. #define P_ATAPI_INTRQ P_UNDEF
  829. #endif
  830. #ifndef P_ATAPI_IORDY
  831. #define P_ATAPI_IORDY P_UNDEF
  832. #endif
  833. #ifndef P_AMC_BR
  834. #define P_AMC_BR P_UNDEF
  835. #endif
  836. #ifndef P_AMC_BG
  837. #define P_AMC_BG P_UNDEF
  838. #endif
  839. #ifndef P_AMC_BGH
  840. #define P_AMC_BGH P_UNDEF
  841. #endif
  842. /* EMAC */
  843. #ifndef P_MII0_ETxD0
  844. #define P_MII0_ETxD0 P_UNDEF
  845. #endif
  846. #ifndef P_MII0_ETxD1
  847. #define P_MII0_ETxD1 P_UNDEF
  848. #endif
  849. #ifndef P_MII0_ETxD2
  850. #define P_MII0_ETxD2 P_UNDEF
  851. #endif
  852. #ifndef P_MII0_ETxD3
  853. #define P_MII0_ETxD3 P_UNDEF
  854. #endif
  855. #ifndef P_MII0_ETxEN
  856. #define P_MII0_ETxEN P_UNDEF
  857. #endif
  858. #ifndef P_MII0_TxCLK
  859. #define P_MII0_TxCLK P_UNDEF
  860. #endif
  861. #ifndef P_MII0_PHYINT
  862. #define P_MII0_PHYINT P_UNDEF
  863. #endif
  864. #ifndef P_MII0_COL
  865. #define P_MII0_COL P_UNDEF
  866. #endif
  867. #ifndef P_MII0_ERxD0
  868. #define P_MII0_ERxD0 P_UNDEF
  869. #endif
  870. #ifndef P_MII0_ERxD1
  871. #define P_MII0_ERxD1 P_UNDEF
  872. #endif
  873. #ifndef P_MII0_ERxD2
  874. #define P_MII0_ERxD2 P_UNDEF
  875. #endif
  876. #ifndef P_MII0_ERxD3
  877. #define P_MII0_ERxD3 P_UNDEF
  878. #endif
  879. #ifndef P_MII0_ERxDV
  880. #define P_MII0_ERxDV P_UNDEF
  881. #endif
  882. #ifndef P_MII0_ERxCLK
  883. #define P_MII0_ERxCLK P_UNDEF
  884. #endif
  885. #ifndef P_MII0_ERxER
  886. #define P_MII0_ERxER P_UNDEF
  887. #endif
  888. #ifndef P_MII0_CRS
  889. #define P_MII0_CRS P_UNDEF
  890. #endif
  891. #ifndef P_RMII0_REF_CLK
  892. #define P_RMII0_REF_CLK P_UNDEF
  893. #endif
  894. #ifndef P_RMII0_MDINT
  895. #define P_RMII0_MDINT P_UNDEF
  896. #endif
  897. #ifndef P_RMII0_CRS_DV
  898. #define P_RMII0_CRS_DV P_UNDEF
  899. #endif
  900. #ifndef P_MDC
  901. #define P_MDC P_UNDEF
  902. #endif
  903. #ifndef P_MDIO
  904. #define P_MDIO P_UNDEF
  905. #endif
  906. #endif /* _PORTMUX_H_ */