| 
					
				 | 
			
			
				@@ -0,0 +1,177 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+/* 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * linux/arch/arm/mach-kirkwood/mpp.h -- Multi Purpose Pins 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * Copyright 2009: Marvell Technology Group Ltd. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * This file is licensed under the terms of the GNU General Public 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * License version 2.  This program is licensed "as is" without any 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ * warranty of any kind, whether express or implied. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#ifndef __KIRKWOOD_MPP_H 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define __KIRKWOOD_MPP_H 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP(_num, _sel, _in, _out, _F6180, _F6190, _F6192, _F6281, _F6282) ( \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	/* MPP number */		((_num) & 0xff) | \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	/* MPP select value */		(((_sel) & 0xf) << 8) | \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	/* may be input signal */	((!!(_in)) << 12) | \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	/* may be output signal */	((!!(_out)) << 13) | \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	/* available on F6180 */	((!!(_F6180)) << 14) | \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	/* available on F6190 */	((!!(_F6190)) << 15) | \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	/* available on F6192 */	((!!(_F6192)) << 16) | \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	/* available on F6281 */	((!!(_F6281)) << 17) | \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	/* available on F6282 */	((!!(_F6282)) << 18)) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+				/*   num sel  i  o  6180 6190 6192 6281 6282 */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP_F6180_MASK		MPP(  0, 0x0, 0, 0, 1,   0,   0,   0,   0 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP_F6190_MASK		MPP(  0, 0x0, 0, 0, 0,   1,   0,   0,   0 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP_F6192_MASK		MPP(  0, 0x0, 0, 0, 0,   0,   1,   0,   0 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP_F6281_MASK		MPP(  0, 0x0, 0, 0, 0,   0,   0,   1,   0 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP_F6282_MASK		MPP(  0, 0x0, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP0_GPIO		MPP(  0, 0x0, 1, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP0_NF_IO2		MPP(  0, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP0_SPI_SCn		MPP(  0, 0x2, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP1_GPO		MPP(  1, 0x0, 0, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP1_NF_IO3		MPP(  1, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP1_SPI_MOSI		MPP(  1, 0x2, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP2_GPO		MPP(  2, 0x0, 0, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP2_NF_IO4		MPP(  2, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP2_SPI_SCK		MPP(  2, 0x2, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP3_GPO		MPP(  3, 0x0, 0, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP3_NF_IO5		MPP(  3, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP3_SPI_MISO		MPP(  3, 0x2, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP4_GPIO		MPP(  4, 0x0, 1, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP4_NF_IO6		MPP(  4, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP4_UART0_RXD		MPP(  4, 0x2, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP4_SATA1_ACTn		MPP(  4, 0x5, 0, 0, 0,   0,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP4_LCD_VGA_HSYNC	MPP(  4, 0xb, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP4_PTP_CLK		MPP(  4, 0xd, 0, 0, 1,   1,   1,   1,   0 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP5_GPO		MPP(  5, 0x0, 0, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP5_NF_IO7		MPP(  5, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP5_UART0_TXD		MPP(  5, 0x2, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP5_PTP_TRIG_GEN	MPP(  5, 0x4, 0, 0, 1,   1,   1,   1,   0 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP5_SATA0_ACTn		MPP(  5, 0x5, 0, 0, 0,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP5_LCD_VGA_VSYNC	MPP(  5, 0xb, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP6_SYSRST_OUTn	MPP(  6, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP6_SPI_MOSI		MPP(  6, 0x2, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP6_PTP_TRIG_GEN	MPP(  6, 0x3, 0, 0, 1,   1,   1,   1,   0 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP7_GPO		MPP(  7, 0x0, 0, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP7_PEX_RST_OUTn	MPP(  7, 0x1, 0, 0, 1,   1,   1,   1,   0 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP7_SPI_SCn		MPP(  7, 0x2, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP7_PTP_TRIG_GEN	MPP(  7, 0x3, 0, 0, 1,   1,   1,   1,   0 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP7_LCD_PWM		MPP(  7, 0xb, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP8_GPIO		MPP(  8, 0x0, 1, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP8_TW0_SDA		MPP(  8, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP8_UART0_RTS		MPP(  8, 0x2, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP8_UART1_RTS		MPP(  8, 0x3, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP8_MII0_RXERR		MPP(  8, 0x4, 0, 0, 0,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP8_SATA1_PRESENTn	MPP(  8, 0x5, 0, 0, 0,   0,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP8_PTP_CLK		MPP(  8, 0xc, 0, 0, 1,   1,   1,   1,   0 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP8_MII0_COL		MPP(  8, 0xd, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP9_GPIO		MPP(  9, 0x0, 1, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP9_TW0_SCK		MPP(  9, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP9_UART0_CTS		MPP(  9, 0x2, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP9_UART1_CTS		MPP(  9, 0x3, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP9_SATA0_PRESENTn	MPP(  9, 0x5, 0, 0, 0,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP9_PTP_EVENT_REQ	MPP(  9, 0xc, 0, 0, 1,   1,   1,   1,   0 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP9_MII0_CRS		MPP(  9, 0xd, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP10_GPO		MPP( 10, 0x0, 0, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP10_SPI_SCK		MPP( 10, 0x2, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP10_UART0_TXD		MPP( 10, 0X3, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP10_SATA1_ACTn	MPP( 10, 0x5, 0, 0, 0,   0,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP10_PTP_TRIG_GEN	MPP( 10, 0xc, 0, 0, 1,   1,   1,   1,   0 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP11_GPIO		MPP( 11, 0x0, 1, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP11_SPI_MISO		MPP( 11, 0x2, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP11_UART0_RXD		MPP( 11, 0x3, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP11_PTP_EVENT_REQ	MPP( 11, 0x4, 0, 0, 1,   1,   1,   1,   0 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP11_PTP_TRIG_GEN	MPP( 11, 0xc, 0, 0, 1,   1,   1,   1,   0 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP11_PTP_CLK		MPP( 11, 0xd, 0, 0, 1,   1,   1,   1,   0 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP11_SATA0_ACTn	MPP( 11, 0x5, 0, 0, 0,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP12_GPO		MPP( 12, 0x0, 0, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP12_GPIO		MPP( 12, 0x0, 1, 1, 0,   0,   0,   1,   0 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP12_SD_CLK		MPP( 12, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP12_AU_SPDIF0		MPP( 12, 0xa, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP12_SPI_MOSI		MPP( 12, 0xb, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP12_TW1_SDA		MPP( 12, 0xd, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP13_GPIO		MPP( 13, 0x0, 1, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP13_SD_CMD		MPP( 13, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP13_UART1_TXD		MPP( 13, 0x3, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP13_AU_SPDIFRMCLK	MPP( 13, 0xa, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP13_LCDPWM		MPP( 13, 0xb, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP14_GPIO		MPP( 14, 0x0, 1, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP14_SD_D0		MPP( 14, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP14_UART1_RXD		MPP( 14, 0x3, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP14_SATA1_PRESENTn	MPP( 14, 0x4, 0, 0, 0,   0,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP14_AU_SPDIFI		MPP( 14, 0xa, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP14_AU_I2SDI		MPP( 14, 0xb, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP14_MII0_COL		MPP( 14, 0xd, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP15_GPIO		MPP( 15, 0x0, 1, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP15_SD_D1		MPP( 15, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP15_UART0_RTS		MPP( 15, 0x2, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP15_UART1_TXD		MPP( 15, 0x3, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP15_SATA0_ACTn	MPP( 15, 0x4, 0, 0, 0,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP15_SPI_CSn		MPP( 15, 0xb, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP16_GPIO		MPP( 16, 0x0, 1, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP16_SD_D2		MPP( 16, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP16_UART0_CTS		MPP( 16, 0x2, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP16_UART1_RXD		MPP( 16, 0x3, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP16_SATA1_ACTn	MPP( 16, 0x4, 0, 0, 0,   0,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP16_LCD_EXT_REF_CLK	MPP( 16, 0xb, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP16_MII0_CRS		MPP( 16, 0xd, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP17_GPIO		MPP( 17, 0x0, 1, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP17_SD_D3		MPP( 17, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP17_SATA0_PRESENTn	MPP( 17, 0x4, 0, 0, 0,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP17_SATA1_ACTn	MPP( 17, 0xa, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP17_TW1_SCK		MPP( 17, 0xd, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP18_GPO		MPP( 18, 0x0, 0, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP18_NF_IO0		MPP( 18, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP18_PEX0_CLKREQ	MPP( 18, 0x2, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP19_GPO		MPP( 19, 0x0, 0, 1, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP19_NF_IO1		MPP( 19, 0x1, 0, 0, 1,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP20_GPIO		MPP( 20, 0x0, 1, 1, 0,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP20_TSMP0		MPP( 20, 0x1, 0, 0, 0,   0,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP20_TDM_CH0_TX_QL	MPP( 20, 0x2, 0, 0, 0,   0,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP20_GE1_TXD0		MPP( 20, 0x3, 0, 0, 0,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP20_AU_SPDIFI		MPP( 20, 0x4, 0, 0, 0,   0,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP20_SATA1_ACTn	MPP( 20, 0x5, 0, 0, 0,   0,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP20_LCD_D0		MPP( 20, 0xb, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP21_GPIO		MPP( 21, 0x0, 1, 1, 0,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP21_TSMP1		MPP( 21, 0x1, 0, 0, 0,   0,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP21_TDM_CH0_RX_QL	MPP( 21, 0x2, 0, 0, 0,   0,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP21_GE1_TXD1		MPP( 21, 0x3, 0, 0, 0,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP21_AU_SPDIFO		MPP( 21, 0x4, 0, 0, 0,   0,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP21_SATA0_ACTn	MPP( 21, 0x5, 0, 0, 0,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP21_LCD_D1		MPP( 21, 0xb, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP22_GPIO		MPP( 22, 0x0, 1, 1, 0,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP22_TSMP2		MPP( 22, 0x1, 0, 0, 0,   0,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP22_TDM_CH2_TX_QL	MPP( 22, 0x2, 0, 0, 0,   0,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP22_GE1_TXD2		MPP( 22, 0x3, 0, 0, 0,   1,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP22_AU_SPDIFRMKCLK	MPP( 22, 0x4, 0, 0, 0,   0,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP22_SATA1_PRESENTn	MPP( 22, 0x5, 0, 0, 0,   0,   1,   1,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP22_LCD_D2		MPP( 22, 0xb, 0, 0, 0,   0,   0,   0,   1 ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+#define MPP23_GPIO		MPP( 23, 0x0, 1, 1, 0,   1,   1,   1,   1 ) 
			 |