| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2008-08-05 16:14:15 +01:00
										 |  |  |  * arch/arm/plat-omap/include/mach/mux.h | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Table of the Omap register configurations for the FUNC_MUX and | 
					
						
							|  |  |  |  * PULL_DWN combinations. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-01-24 17:24:15 -08:00
										 |  |  |  * Copyright (C) 2004 - 2008 Texas Instruments Inc. | 
					
						
							|  |  |  |  * Copyright (C) 2003 - 2008 Nokia Corporation | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-01-24 17:24:15 -08:00
										 |  |  |  * Written by Tony Lindgren | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation; either version 2 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  * along with this program; if not, write to the Free Software | 
					
						
							|  |  |  |  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * NOTE: Please use the following naming style for new pin entries. | 
					
						
							|  |  |  |  *	 For example, W8_1610_MMC2_DAT0, where: | 
					
						
							|  |  |  |  *	 - W8	     = ball | 
					
						
							|  |  |  |  *	 - 1610	     = 1510 or 1610, none if common for both 1510 and 1610 | 
					
						
							|  |  |  |  *	 - MMC2_DAT0 = function | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef __ASM_ARCH_MUX_H
 | 
					
						
							|  |  |  | #define __ASM_ARCH_MUX_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PU_PD_SEL_NA		0	/* No pu_pd reg available */
 | 
					
						
							|  |  |  | #define PULL_DWN_CTRL_NA	0	/* No pull-down control needed */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef	CONFIG_OMAP_MUX_DEBUG
 | 
					
						
							|  |  |  | #define MUX_REG(reg, mode_offset, mode) .mux_reg_name = "FUNC_MUX_CTRL_"#reg, \
 | 
					
						
							|  |  |  | 					.mux_reg = FUNC_MUX_CTRL_##reg, \ | 
					
						
							|  |  |  | 					.mask_offset = mode_offset, \ | 
					
						
							|  |  |  | 					.mask = mode, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PULL_REG(reg, bit, status)	.pull_name = "PULL_DWN_CTRL_"#reg, \
 | 
					
						
							|  |  |  | 					.pull_reg = PULL_DWN_CTRL_##reg, \ | 
					
						
							|  |  |  | 					.pull_bit = bit, \ | 
					
						
							|  |  |  | 					.pull_val = status, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PU_PD_REG(reg, status)		.pu_pd_name = "PU_PD_SEL_"#reg, \
 | 
					
						
							|  |  |  | 					.pu_pd_reg = PU_PD_SEL_##reg, \ | 
					
						
							|  |  |  | 					.pu_pd_val = status, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-22 10:02:58 +01:00
										 |  |  | #define MUX_REG_7XX(reg, mode_offset, mode) .mux_reg_name = "OMAP7XX_IO_CONF_"#reg, \
 | 
					
						
							| 
									
										
										
										
											2009-09-22 07:34:13 +01:00
										 |  |  | 					.mux_reg = OMAP7XX_IO_CONF_##reg, \ | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:53 +00:00
										 |  |  | 					.mask_offset = mode_offset, \ | 
					
						
							|  |  |  | 					.mask = mode, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-22 10:02:58 +01:00
										 |  |  | #define PULL_REG_7XX(reg, bit, status)	.pull_name = "OMAP7XX_IO_CONF_"#reg, \
 | 
					
						
							| 
									
										
										
										
											2009-09-22 07:34:13 +01:00
										 |  |  | 					.pull_reg = OMAP7XX_IO_CONF_##reg, \ | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:53 +00:00
										 |  |  | 					.pull_bit = bit, \ | 
					
						
							|  |  |  | 					.pull_val = status, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MUX_REG(reg, mode_offset, mode) .mux_reg = FUNC_MUX_CTRL_##reg, \
 | 
					
						
							|  |  |  | 					.mask_offset = mode_offset, \ | 
					
						
							|  |  |  | 					.mask = mode, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PULL_REG(reg, bit, status)	.pull_reg = PULL_DWN_CTRL_##reg, \
 | 
					
						
							|  |  |  | 					.pull_bit = bit, \ | 
					
						
							|  |  |  | 					.pull_val = status, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PU_PD_REG(reg, status)		.pu_pd_reg = PU_PD_SEL_##reg, \
 | 
					
						
							|  |  |  | 					.pu_pd_val = status, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-22 10:02:58 +01:00
										 |  |  | #define MUX_REG_7XX(reg, mode_offset, mode) \
 | 
					
						
							| 
									
										
										
										
											2009-09-22 07:34:13 +01:00
										 |  |  | 					.mux_reg = OMAP7XX_IO_CONF_##reg, \ | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:53 +00:00
										 |  |  | 					.mask_offset = mode_offset, \ | 
					
						
							|  |  |  | 					.mask = mode, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-22 10:02:58 +01:00
										 |  |  | #define PULL_REG_7XX(reg, bit, status)	.pull_reg = OMAP7XX_IO_CONF_##reg, \
 | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:53 +00:00
										 |  |  | 					.pull_bit = bit, \ | 
					
						
							|  |  |  | 					.pull_val = status, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #endif /* CONFIG_OMAP_MUX_DEBUG */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MUX_CFG(desc, mux_reg, mode_offset, mode,	\
 | 
					
						
							|  |  |  | 		pull_reg, pull_bit, pull_status,	\ | 
					
						
							|  |  |  | 		pu_pd_reg, pu_pd_status, debug_status)	\ | 
					
						
							|  |  |  | {							\ | 
					
						
							|  |  |  | 	.name =	 desc,					\ | 
					
						
							|  |  |  | 	.debug = debug_status,				\ | 
					
						
							|  |  |  | 	MUX_REG(mux_reg, mode_offset, mode)		\ | 
					
						
							|  |  |  | 	PULL_REG(pull_reg, pull_bit, pull_status)	\ | 
					
						
							|  |  |  | 	PU_PD_REG(pu_pd_reg, pu_pd_status)		\ | 
					
						
							|  |  |  | }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2009-03-23 18:07:40 -07:00
										 |  |  |  * OMAP730/850 has a slightly different config for the pin mux. | 
					
						
							| 
									
										
										
										
											2012-06-28 00:08:10 -07:00
										 |  |  |  * - config regs are the OMAP7XX_IO_CONF_x regs (see omap7xx.h) regs and | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:53 +00:00
										 |  |  |  *   not the FUNC_MUX_CTRL_x regs from hardware.h | 
					
						
							|  |  |  |  * - for pull-up/down, only has one enable bit which is is in the same register | 
					
						
							|  |  |  |  *   as mux config | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-09-22 10:02:58 +01:00
										 |  |  | #define MUX_CFG_7XX(desc, mux_reg, mode_offset, mode,	\
 | 
					
						
							| 
									
										
										
										
											2006-04-02 17:46:22 +01:00
										 |  |  | 		   pull_bit, pull_status, debug_status)\ | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:53 +00:00
										 |  |  | {							\ | 
					
						
							|  |  |  | 	.name =	 desc,					\ | 
					
						
							|  |  |  | 	.debug = debug_status,				\ | 
					
						
							| 
									
										
										
										
											2009-09-22 10:02:58 +01:00
										 |  |  | 	MUX_REG_7XX(mux_reg, mode_offset, mode)		\ | 
					
						
							|  |  |  | 	PULL_REG_7XX(mux_reg, pull_bit, pull_status)	\ | 
					
						
							| 
									
										
										
										
											2006-04-02 17:46:22 +01:00
										 |  |  | 	PU_PD_REG(NA, 0)		\ | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:53 +00:00
										 |  |  | }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct pin_config { | 
					
						
							| 
									
										
										
										
											2008-10-06 15:49:16 +03:00
										 |  |  | 	char 			*name; | 
					
						
							|  |  |  | 	const unsigned int 	mux_reg; | 
					
						
							|  |  |  | 	unsigned char		debug; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	const unsigned char mask_offset; | 
					
						
							|  |  |  | 	const unsigned char mask; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const char *pull_name; | 
					
						
							|  |  |  | 	const unsigned int pull_reg; | 
					
						
							|  |  |  | 	const unsigned char pull_val; | 
					
						
							|  |  |  | 	const unsigned char pull_bit; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const char *pu_pd_name; | 
					
						
							|  |  |  | 	const unsigned int pu_pd_reg; | 
					
						
							|  |  |  | 	const unsigned char pu_pd_val; | 
					
						
							| 
									
										
										
										
											2008-10-06 15:49:16 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if	defined(CONFIG_OMAP_MUX_DEBUG) || defined(CONFIG_OMAP_MUX_WARNINGS)
 | 
					
						
							|  |  |  | 	const char *mux_reg_name; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:53 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-22 10:02:58 +01:00
										 |  |  | enum omap7xx_index { | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:53 +00:00
										 |  |  | 	/* OMAP 730 keyboard */ | 
					
						
							| 
									
										
										
										
											2009-09-22 10:02:58 +01:00
										 |  |  | 	E2_7XX_KBR0, | 
					
						
							|  |  |  | 	J7_7XX_KBR1, | 
					
						
							|  |  |  | 	E1_7XX_KBR2, | 
					
						
							|  |  |  | 	F3_7XX_KBR3, | 
					
						
							|  |  |  | 	D2_7XX_KBR4, | 
					
						
							|  |  |  | 	C2_7XX_KBC0, | 
					
						
							|  |  |  | 	D3_7XX_KBC1, | 
					
						
							|  |  |  | 	E4_7XX_KBC2, | 
					
						
							|  |  |  | 	F4_7XX_KBC3, | 
					
						
							|  |  |  | 	E3_7XX_KBC4, | 
					
						
							| 
									
										
										
										
											2006-04-02 17:46:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* USB */ | 
					
						
							| 
									
										
										
										
											2009-09-22 10:02:58 +01:00
										 |  |  | 	AA17_7XX_USB_DM, | 
					
						
							|  |  |  | 	W16_7XX_USB_PU_EN, | 
					
						
							|  |  |  | 	W17_7XX_USB_VBUSI, | 
					
						
							| 
									
										
										
										
											2009-12-11 16:16:34 -08:00
										 |  |  | 	W18_7XX_USB_DMCK_OUT, | 
					
						
							|  |  |  | 	W19_7XX_USB_DCRST, | 
					
						
							| 
									
										
										
										
											2009-11-22 10:10:50 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* MMC */ | 
					
						
							|  |  |  | 	MMC_7XX_CMD, | 
					
						
							|  |  |  | 	MMC_7XX_CLK, | 
					
						
							|  |  |  | 	MMC_7XX_DAT0, | 
					
						
							| 
									
										
										
										
											2009-12-11 16:16:34 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* I2C */ | 
					
						
							|  |  |  | 	I2C_7XX_SCL, | 
					
						
							|  |  |  | 	I2C_7XX_SDA, | 
					
						
							| 
									
										
										
										
											2010-01-08 10:29:05 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* SPI */ | 
					
						
							|  |  |  | 	SPI_7XX_1, | 
					
						
							|  |  |  | 	SPI_7XX_2, | 
					
						
							|  |  |  | 	SPI_7XX_3, | 
					
						
							|  |  |  | 	SPI_7XX_4, | 
					
						
							|  |  |  | 	SPI_7XX_5, | 
					
						
							|  |  |  | 	SPI_7XX_6, | 
					
						
							| 
									
										
										
										
											2010-08-02 14:21:39 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* UART */ | 
					
						
							|  |  |  | 	UART_7XX_1, | 
					
						
							|  |  |  | 	UART_7XX_2, | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:53 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum omap1xxx_index { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* UART1 (BT_UART_GATING)*/ | 
					
						
							|  |  |  | 	UART1_TX = 0, | 
					
						
							|  |  |  | 	UART1_RTS, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* UART2 (COM_UART_GATING)*/ | 
					
						
							|  |  |  | 	UART2_TX, | 
					
						
							|  |  |  | 	UART2_RX, | 
					
						
							|  |  |  | 	UART2_CTS, | 
					
						
							|  |  |  | 	UART2_RTS, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* UART3 (GIGA_UART_GATING) */ | 
					
						
							|  |  |  | 	UART3_TX, | 
					
						
							|  |  |  | 	UART3_RX, | 
					
						
							|  |  |  | 	UART3_CTS, | 
					
						
							|  |  |  | 	UART3_RTS, | 
					
						
							|  |  |  | 	UART3_CLKREQ, | 
					
						
							|  |  |  | 	UART3_BCLK,	/* 12MHz clock out */ | 
					
						
							|  |  |  | 	Y15_1610_UART3_RTS, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* PWT & PWL */ | 
					
						
							|  |  |  | 	PWT, | 
					
						
							|  |  |  | 	PWL, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* USB master generic */ | 
					
						
							|  |  |  | 	R18_USB_VBUS, | 
					
						
							|  |  |  | 	R18_1510_USB_GPIO0, | 
					
						
							|  |  |  | 	W4_USB_PUEN, | 
					
						
							|  |  |  | 	W4_USB_CLKO, | 
					
						
							|  |  |  | 	W4_USB_HIGHZ, | 
					
						
							|  |  |  | 	W4_GPIO58, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* USB1 master */ | 
					
						
							|  |  |  | 	USB1_SUSP, | 
					
						
							|  |  |  | 	USB1_SEO, | 
					
						
							|  |  |  | 	W13_1610_USB1_SE0, | 
					
						
							|  |  |  | 	USB1_TXEN, | 
					
						
							|  |  |  | 	USB1_TXD, | 
					
						
							|  |  |  | 	USB1_VP, | 
					
						
							|  |  |  | 	USB1_VM, | 
					
						
							|  |  |  | 	USB1_RCV, | 
					
						
							|  |  |  | 	USB1_SPEED, | 
					
						
							|  |  |  | 	R13_1610_USB1_SPEED, | 
					
						
							|  |  |  | 	R13_1710_USB1_SE0, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* USB2 master */ | 
					
						
							|  |  |  | 	USB2_SUSP, | 
					
						
							|  |  |  | 	USB2_VP, | 
					
						
							|  |  |  | 	USB2_TXEN, | 
					
						
							|  |  |  | 	USB2_VM, | 
					
						
							|  |  |  | 	USB2_RCV, | 
					
						
							|  |  |  | 	USB2_SEO, | 
					
						
							|  |  |  | 	USB2_TXD, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* OMAP-1510 GPIO */ | 
					
						
							|  |  |  | 	R18_1510_GPIO0, | 
					
						
							|  |  |  | 	R19_1510_GPIO1, | 
					
						
							|  |  |  | 	M14_1510_GPIO2, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* OMAP1610 GPIO */ | 
					
						
							|  |  |  | 	P18_1610_GPIO3, | 
					
						
							|  |  |  | 	Y15_1610_GPIO17, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* OMAP-1710 GPIO */ | 
					
						
							|  |  |  | 	R18_1710_GPIO0, | 
					
						
							|  |  |  | 	V2_1710_GPIO10, | 
					
						
							|  |  |  | 	N21_1710_GPIO14, | 
					
						
							|  |  |  | 	W15_1710_GPIO40, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* MPUIO */ | 
					
						
							|  |  |  | 	MPUIO2, | 
					
						
							| 
									
										
										
										
											2005-09-07 17:20:27 +01:00
										 |  |  | 	N15_1610_MPUIO2, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	MPUIO4, | 
					
						
							|  |  |  | 	MPUIO5, | 
					
						
							|  |  |  | 	T20_1610_MPUIO5, | 
					
						
							|  |  |  | 	W11_1610_MPUIO6, | 
					
						
							|  |  |  | 	V10_1610_MPUIO7, | 
					
						
							|  |  |  | 	W11_1610_MPUIO9, | 
					
						
							|  |  |  | 	V10_1610_MPUIO10, | 
					
						
							|  |  |  | 	W10_1610_MPUIO11, | 
					
						
							|  |  |  | 	E20_1610_MPUIO13, | 
					
						
							|  |  |  | 	U20_1610_MPUIO14, | 
					
						
							|  |  |  | 	E19_1610_MPUIO15, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* MCBSP2 */ | 
					
						
							|  |  |  | 	MCBSP2_CLKR, | 
					
						
							|  |  |  | 	MCBSP2_CLKX, | 
					
						
							|  |  |  | 	MCBSP2_DR, | 
					
						
							|  |  |  | 	MCBSP2_DX, | 
					
						
							|  |  |  | 	MCBSP2_FSR, | 
					
						
							|  |  |  | 	MCBSP2_FSX, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* MCBSP3 */ | 
					
						
							|  |  |  | 	MCBSP3_CLKX, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Misc ballouts */ | 
					
						
							|  |  |  | 	BALLOUT_V8_ARMIO3, | 
					
						
							| 
									
										
										
										
											2005-09-07 17:20:27 +01:00
										 |  |  | 	N20_HDQ, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* OMAP-1610 MMC2 */ | 
					
						
							|  |  |  | 	W8_1610_MMC2_DAT0, | 
					
						
							|  |  |  | 	V8_1610_MMC2_DAT1, | 
					
						
							|  |  |  | 	W15_1610_MMC2_DAT2, | 
					
						
							|  |  |  | 	R10_1610_MMC2_DAT3, | 
					
						
							|  |  |  | 	Y10_1610_MMC2_CLK, | 
					
						
							|  |  |  | 	Y8_1610_MMC2_CMD, | 
					
						
							|  |  |  | 	V9_1610_MMC2_CMDDIR, | 
					
						
							|  |  |  | 	V5_1610_MMC2_DATDIR0, | 
					
						
							|  |  |  | 	W19_1610_MMC2_DATDIR1, | 
					
						
							|  |  |  | 	R18_1610_MMC2_CLKIN, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* OMAP-1610 External Trace Interface */ | 
					
						
							|  |  |  | 	M19_1610_ETM_PSTAT0, | 
					
						
							|  |  |  | 	L15_1610_ETM_PSTAT1, | 
					
						
							|  |  |  | 	L18_1610_ETM_PSTAT2, | 
					
						
							|  |  |  | 	L19_1610_ETM_D0, | 
					
						
							|  |  |  | 	J19_1610_ETM_D6, | 
					
						
							|  |  |  | 	J18_1610_ETM_D7, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-10 19:58:18 +01:00
										 |  |  | 	/* OMAP16XX GPIO */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	P20_1610_GPIO4, | 
					
						
							|  |  |  | 	V9_1610_GPIO7, | 
					
						
							|  |  |  | 	W8_1610_GPIO9, | 
					
						
							| 
									
										
										
										
											2005-09-07 17:20:27 +01:00
										 |  |  | 	N20_1610_GPIO11, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	N19_1610_GPIO13, | 
					
						
							|  |  |  | 	P10_1610_GPIO22, | 
					
						
							|  |  |  | 	V5_1610_GPIO24, | 
					
						
							|  |  |  | 	AA20_1610_GPIO_41, | 
					
						
							|  |  |  | 	W19_1610_GPIO48, | 
					
						
							|  |  |  | 	M7_1610_GPIO62, | 
					
						
							| 
									
										
										
										
											2005-07-10 19:58:18 +01:00
										 |  |  | 	V14_16XX_GPIO37, | 
					
						
							|  |  |  | 	R9_16XX_GPIO18, | 
					
						
							|  |  |  | 	L14_16XX_GPIO49, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* OMAP-1610 uWire */ | 
					
						
							|  |  |  | 	V19_1610_UWIRE_SCLK, | 
					
						
							|  |  |  | 	U18_1610_UWIRE_SDI, | 
					
						
							|  |  |  | 	W21_1610_UWIRE_SDO, | 
					
						
							|  |  |  | 	N14_1610_UWIRE_CS0, | 
					
						
							| 
									
										
										
										
											2005-09-07 17:20:27 +01:00
										 |  |  | 	P15_1610_UWIRE_CS3, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	N15_1610_UWIRE_CS1, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-25 12:41:29 +03:00
										 |  |  | 	/* OMAP-1610 SPI */ | 
					
						
							|  |  |  | 	U19_1610_SPIF_SCK, | 
					
						
							|  |  |  | 	U18_1610_SPIF_DIN, | 
					
						
							|  |  |  | 	P20_1610_SPIF_DIN, | 
					
						
							|  |  |  | 	W21_1610_SPIF_DOUT, | 
					
						
							|  |  |  | 	R18_1610_SPIF_DOUT, | 
					
						
							|  |  |  | 	N14_1610_SPIF_CS0, | 
					
						
							|  |  |  | 	N15_1610_SPIF_CS1, | 
					
						
							|  |  |  | 	T19_1610_SPIF_CS2, | 
					
						
							|  |  |  | 	P15_1610_SPIF_CS3, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* OMAP-1610 Flash */ | 
					
						
							|  |  |  | 	L3_1610_FLASH_CS2B_OE, | 
					
						
							|  |  |  | 	M8_1610_FLASH_CS2B_WE, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* First MMC */ | 
					
						
							|  |  |  | 	MMC_CMD, | 
					
						
							|  |  |  | 	MMC_DAT1, | 
					
						
							|  |  |  | 	MMC_DAT2, | 
					
						
							|  |  |  | 	MMC_DAT0, | 
					
						
							|  |  |  | 	MMC_CLK, | 
					
						
							|  |  |  | 	MMC_DAT3, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* OMAP-1710 MMC CMDDIR and DATDIR0 */ | 
					
						
							|  |  |  | 	M15_1710_MMC_CLKI, | 
					
						
							|  |  |  | 	P19_1710_MMC_CMDDIR, | 
					
						
							|  |  |  | 	P20_1710_MMC_DATDIR0, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* OMAP-1610 USB0 alternate pin configuration */ | 
					
						
							|  |  |  | 	W9_USB0_TXEN, | 
					
						
							|  |  |  | 	AA9_USB0_VP, | 
					
						
							|  |  |  | 	Y5_USB0_RCV, | 
					
						
							|  |  |  | 	R9_USB0_VM, | 
					
						
							|  |  |  | 	V6_USB0_TXD, | 
					
						
							|  |  |  | 	W5_USB0_SE0, | 
					
						
							|  |  |  | 	V9_USB0_SPEED, | 
					
						
							|  |  |  | 	V9_USB0_SUSP, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* USB2 */ | 
					
						
							|  |  |  | 	W9_USB2_TXEN, | 
					
						
							|  |  |  | 	AA9_USB2_VP, | 
					
						
							|  |  |  | 	Y5_USB2_RCV, | 
					
						
							|  |  |  | 	R9_USB2_VM, | 
					
						
							|  |  |  | 	V6_USB2_TXD, | 
					
						
							|  |  |  | 	W5_USB2_SE0, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-10 19:58:18 +01:00
										 |  |  | 	/* 16XX UART */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	R13_1610_UART1_TX, | 
					
						
							| 
									
										
										
										
											2005-07-10 19:58:18 +01:00
										 |  |  | 	V14_16XX_UART1_RX, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	R14_1610_UART1_CTS, | 
					
						
							|  |  |  | 	AA15_1610_UART1_RTS, | 
					
						
							| 
									
										
										
										
											2005-07-10 19:58:18 +01:00
										 |  |  | 	R9_16XX_UART2_RX, | 
					
						
							|  |  |  | 	L14_16XX_UART3_RX, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* I2C OMAP-1610 */ | 
					
						
							|  |  |  | 	I2C_SCL, | 
					
						
							|  |  |  | 	I2C_SDA, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Keypad */ | 
					
						
							|  |  |  | 	F18_1610_KBC0, | 
					
						
							|  |  |  | 	D20_1610_KBC1, | 
					
						
							|  |  |  | 	D19_1610_KBC2, | 
					
						
							|  |  |  | 	E18_1610_KBC3, | 
					
						
							|  |  |  | 	C21_1610_KBC4, | 
					
						
							|  |  |  | 	G18_1610_KBR0, | 
					
						
							|  |  |  | 	F19_1610_KBR1, | 
					
						
							|  |  |  | 	H14_1610_KBR2, | 
					
						
							|  |  |  | 	E20_1610_KBR3, | 
					
						
							|  |  |  | 	E19_1610_KBR4, | 
					
						
							|  |  |  | 	N19_1610_KBR5, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Power management */ | 
					
						
							|  |  |  | 	T20_1610_LOW_PWR, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* MCLK Settings */ | 
					
						
							|  |  |  | 	V5_1710_MCLK_ON, | 
					
						
							|  |  |  | 	V5_1710_MCLK_OFF, | 
					
						
							|  |  |  | 	R10_1610_MCLK_ON, | 
					
						
							|  |  |  | 	R10_1610_MCLK_OFF, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* CompactFlash controller */ | 
					
						
							|  |  |  | 	P11_1610_CF_CD2, | 
					
						
							|  |  |  | 	R11_1610_CF_IOIS16, | 
					
						
							|  |  |  | 	V10_1610_CF_IREQ, | 
					
						
							|  |  |  | 	W10_1610_CF_RESET, | 
					
						
							|  |  |  | 	W11_1610_CF_CD1, | 
					
						
							| 
									
										
										
										
											2006-12-11 14:14:11 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* parallel camera */ | 
					
						
							|  |  |  | 	J15_1610_CAM_LCLK, | 
					
						
							|  |  |  | 	J18_1610_CAM_D7, | 
					
						
							|  |  |  | 	J19_1610_CAM_D6, | 
					
						
							|  |  |  | 	J14_1610_CAM_D5, | 
					
						
							|  |  |  | 	K18_1610_CAM_D4, | 
					
						
							|  |  |  | 	K19_1610_CAM_D3, | 
					
						
							|  |  |  | 	K15_1610_CAM_D2, | 
					
						
							|  |  |  | 	K14_1610_CAM_D1, | 
					
						
							|  |  |  | 	L19_1610_CAM_D0, | 
					
						
							|  |  |  | 	L18_1610_CAM_VS, | 
					
						
							|  |  |  | 	L15_1610_CAM_HS, | 
					
						
							|  |  |  | 	M19_1610_CAM_RSTZ, | 
					
						
							|  |  |  | 	Y15_1610_CAM_OUTCLK, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* serial camera */ | 
					
						
							|  |  |  | 	H19_1610_CAM_EXCLK, | 
					
						
							|  |  |  | 	Y12_1610_CCP_CLKP, | 
					
						
							|  |  |  | 	W13_1610_CCP_CLKM, | 
					
						
							|  |  |  | 	W14_1610_CCP_DATAP, | 
					
						
							|  |  |  | 	Y14_1610_CCP_DATAM, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:53 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-25 00:42:48 -08:00
										 |  |  | struct omap_mux_cfg { | 
					
						
							|  |  |  | 	struct pin_config	*pins; | 
					
						
							|  |  |  | 	unsigned long		size; | 
					
						
							|  |  |  | 	int			(*cfg_reg)(const struct pin_config *cfg); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #ifdef	CONFIG_OMAP_MUX
 | 
					
						
							|  |  |  | /* setup pin muxing in Linux */ | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:53 +00:00
										 |  |  | extern int omap1_mux_init(void); | 
					
						
							| 
									
										
										
										
											2008-01-25 00:42:48 -08:00
										 |  |  | extern int omap_mux_register(struct omap_mux_cfg *); | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:53 +00:00
										 |  |  | extern int omap_cfg_reg(unsigned long reg_cfg); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #else
 | 
					
						
							|  |  |  | /* boot loader does it all (no warnings from CONFIG_OMAP_MUX_WARNINGS) */ | 
					
						
							| 
									
										
										
										
											2005-11-10 14:26:53 +00:00
										 |  |  | static inline int omap1_mux_init(void) { return 0; } | 
					
						
							|  |  |  | static inline int omap_cfg_reg(unsigned long reg_cfg) { return 0; } | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-11 16:16:33 -08:00
										 |  |  | extern int omap2_mux_init(void); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #endif
 |