diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-12 11:51:39 -0800 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-12 11:51:39 -0800 | 
| commit | d01e4afdbb65e030fd6f1f96c30a558e2eb0f279 (patch) | |
| tree | 02ef82b2740cf93a98199eded5ef765fa6e03052 /arch/arm/mach-imx/mx1.h | |
| parent | 8287361abca36504da813638310d2547469283eb (diff) | |
| parent | 794b175fc0c0c4844dbb7b137a73bbfd01f6c608 (diff) | |
| download | olio-linux-3.10-d01e4afdbb65e030fd6f1f96c30a558e2eb0f279.tar.xz olio-linux-3.10-d01e4afdbb65e030fd6f1f96c30a558e2eb0f279.zip  | |
Merge tag 'cleanup' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
Pull ARM SoC cleanups on various subarchitectures from Olof Johansson:
 "Cleanup patches for various ARM platforms and some of their associated
  drivers.  There's also a branch in here that enables Freescale i.MX to
  be part of the multiplatform support -- the first "big" SoC that is
  moved over (more multiplatform work comes in a separate branch later
  during the merge window)."
Conflicts fixed as per Olof, including a silent semantic one in
arch/arm/mach-omap2/board-generic.c (omap_prcm_restart() was renamed to
omap3xxx_restart(), and a new user of the old name was added).
* tag 'cleanup' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (189 commits)
  ARM: omap: fix typo on timer cleanup
  ARM: EXYNOS: Remove unused regs-mem.h file
  ARM: EXYNOS: Remove unused non-dt support for dwmci controller
  ARM: Kirkwood: Use hw_pci.ops instead of hw_pci.scan
  ARM: OMAP3: cm-t3517: use GPTIMER for system clock
  ARM: OMAP2+: timer: remove CONFIG_OMAP_32K_TIMER
  ARM: SAMSUNG: use devm_ functions for ADC driver
  ARM: EXYNOS: no duplicate mask/unmask in eint0_15
  ARM: S3C24XX: SPI clock channel setup is fixed for S3C2443
  ARM: EXYNOS: Remove i2c0 resource information and setting of device names
  ARM: Kirkwood: checkpatch cleanups
  ARM: Kirkwood: Fix sparse warnings.
  ARM: Kirkwood: Remove unused includes
  ARM: kirkwood: cleanup lsxl board includes
  ARM: integrator: use BUG_ON where possible
  ARM: integrator: push down SC dependencies
  ARM: integrator: delete static UART1 mapping
  ARM: integrator: delete SC mapping on the CP
  ARM: integrator: remove static CP syscon mapping
  ARM: integrator: remove static AP syscon mapping
  ...
Diffstat (limited to 'arch/arm/mach-imx/mx1.h')
| -rw-r--r-- | arch/arm/mach-imx/mx1.h | 172 | 
1 files changed, 172 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/mx1.h b/arch/arm/mach-imx/mx1.h new file mode 100644 index 00000000000..45bd31cc34d --- /dev/null +++ b/arch/arm/mach-imx/mx1.h @@ -0,0 +1,172 @@ +/* + * Copyright (C) 1997,1998 Russell King + * Copyright (C) 1999 ARM Limited + * Copyright 2004-2007 Freescale Semiconductor, Inc. All Rights Reserved. + * Copyright (c) 2008 Paulius Zaleckas <paulius.zaleckas@teltonika.lt> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#ifndef __MACH_MX1_H__ +#define __MACH_MX1_H__ + +/* + * Memory map + */ +#define MX1_IO_BASE_ADDR	0x00200000 +#define MX1_IO_SIZE		SZ_1M + +#define MX1_CS0_PHYS		0x10000000 +#define MX1_CS0_SIZE		0x02000000 + +#define MX1_CS1_PHYS		0x12000000 +#define MX1_CS1_SIZE		0x01000000 + +#define MX1_CS2_PHYS		0x13000000 +#define MX1_CS2_SIZE		0x01000000 + +#define MX1_CS3_PHYS		0x14000000 +#define MX1_CS3_SIZE		0x01000000 + +#define MX1_CS4_PHYS		0x15000000 +#define MX1_CS4_SIZE		0x01000000 + +#define MX1_CS5_PHYS		0x16000000 +#define MX1_CS5_SIZE		0x01000000 + +/* + *  Register BASEs, based on OFFSETs + */ +#define MX1_AIPI1_BASE_ADDR		(0x00000 + MX1_IO_BASE_ADDR) +#define MX1_WDT_BASE_ADDR		(0x01000 + MX1_IO_BASE_ADDR) +#define MX1_TIM1_BASE_ADDR		(0x02000 + MX1_IO_BASE_ADDR) +#define MX1_TIM2_BASE_ADDR		(0x03000 + MX1_IO_BASE_ADDR) +#define MX1_RTC_BASE_ADDR		(0x04000 + MX1_IO_BASE_ADDR) +#define MX1_LCDC_BASE_ADDR		(0x05000 + MX1_IO_BASE_ADDR) +#define MX1_UART1_BASE_ADDR		(0x06000 + MX1_IO_BASE_ADDR) +#define MX1_UART2_BASE_ADDR		(0x07000 + MX1_IO_BASE_ADDR) +#define MX1_PWM_BASE_ADDR		(0x08000 + MX1_IO_BASE_ADDR) +#define MX1_DMA_BASE_ADDR		(0x09000 + MX1_IO_BASE_ADDR) +#define MX1_AIPI2_BASE_ADDR		(0x10000 + MX1_IO_BASE_ADDR) +#define MX1_SIM_BASE_ADDR		(0x11000 + MX1_IO_BASE_ADDR) +#define MX1_USBD_BASE_ADDR		(0x12000 + MX1_IO_BASE_ADDR) +#define MX1_CSPI1_BASE_ADDR		(0x13000 + MX1_IO_BASE_ADDR) +#define MX1_MMC_BASE_ADDR		(0x14000 + MX1_IO_BASE_ADDR) +#define MX1_ASP_BASE_ADDR		(0x15000 + MX1_IO_BASE_ADDR) +#define MX1_BTA_BASE_ADDR		(0x16000 + MX1_IO_BASE_ADDR) +#define MX1_I2C_BASE_ADDR		(0x17000 + MX1_IO_BASE_ADDR) +#define MX1_SSI_BASE_ADDR		(0x18000 + MX1_IO_BASE_ADDR) +#define MX1_CSPI2_BASE_ADDR		(0x19000 + MX1_IO_BASE_ADDR) +#define MX1_MSHC_BASE_ADDR		(0x1A000 + MX1_IO_BASE_ADDR) +#define MX1_CCM_BASE_ADDR		(0x1B000 + MX1_IO_BASE_ADDR) +#define MX1_SCM_BASE_ADDR		(0x1B804 + MX1_IO_BASE_ADDR) +#define MX1_GPIO_BASE_ADDR		(0x1C000 + MX1_IO_BASE_ADDR) +#define MX1_GPIO1_BASE_ADDR		(0x1C000 + MX1_IO_BASE_ADDR) +#define MX1_GPIO2_BASE_ADDR		(0x1C100 + MX1_IO_BASE_ADDR) +#define MX1_GPIO3_BASE_ADDR		(0x1C200 + MX1_IO_BASE_ADDR) +#define MX1_GPIO4_BASE_ADDR		(0x1C300 + MX1_IO_BASE_ADDR) +#define MX1_EIM_BASE_ADDR		(0x20000 + MX1_IO_BASE_ADDR) +#define MX1_SDRAMC_BASE_ADDR		(0x21000 + MX1_IO_BASE_ADDR) +#define MX1_MMA_BASE_ADDR		(0x22000 + MX1_IO_BASE_ADDR) +#define MX1_AVIC_BASE_ADDR		(0x23000 + MX1_IO_BASE_ADDR) +#define MX1_CSI_BASE_ADDR		(0x24000 + MX1_IO_BASE_ADDR) + +/* macro to get at IO space when running virtually */ +#define MX1_IO_P2V(x)			IMX_IO_P2V(x) +#define MX1_IO_ADDRESS(x)		IOMEM(MX1_IO_P2V(x)) + +/* fixed interrput numbers */ +#include <asm/irq.h> +#define MX1_INT_SOFTINT		(NR_IRQS_LEGACY + 0) +#define MX1_INT_CSI		(NR_IRQS_LEGACY + 6) +#define MX1_DSPA_MAC_INT	(NR_IRQS_LEGACY + 7) +#define MX1_DSPA_INT		(NR_IRQS_LEGACY + 8) +#define MX1_COMP_INT		(NR_IRQS_LEGACY + 9) +#define MX1_MSHC_XINT		(NR_IRQS_LEGACY + 10) +#define MX1_GPIO_INT_PORTA	(NR_IRQS_LEGACY + 11) +#define MX1_GPIO_INT_PORTB	(NR_IRQS_LEGACY + 12) +#define MX1_GPIO_INT_PORTC	(NR_IRQS_LEGACY + 13) +#define MX1_INT_LCDC		(NR_IRQS_LEGACY + 14) +#define MX1_SIM_INT		(NR_IRQS_LEGACY + 15) +#define MX1_SIM_DATA_INT	(NR_IRQS_LEGACY + 16) +#define MX1_RTC_INT		(NR_IRQS_LEGACY + 17) +#define MX1_RTC_SAMINT		(NR_IRQS_LEGACY + 18) +#define MX1_INT_UART2PFERR	(NR_IRQS_LEGACY + 19) +#define MX1_INT_UART2RTS	(NR_IRQS_LEGACY + 20) +#define MX1_INT_UART2DTR	(NR_IRQS_LEGACY + 21) +#define MX1_INT_UART2UARTC	(NR_IRQS_LEGACY + 22) +#define MX1_INT_UART2TX		(NR_IRQS_LEGACY + 23) +#define MX1_INT_UART2RX		(NR_IRQS_LEGACY + 24) +#define MX1_INT_UART1PFERR	(NR_IRQS_LEGACY + 25) +#define MX1_INT_UART1RTS	(NR_IRQS_LEGACY + 26) +#define MX1_INT_UART1DTR	(NR_IRQS_LEGACY + 27) +#define MX1_INT_UART1UARTC	(NR_IRQS_LEGACY + 28) +#define MX1_INT_UART1TX		(NR_IRQS_LEGACY + 29) +#define MX1_INT_UART1RX		(NR_IRQS_LEGACY + 30) +#define MX1_VOICE_DAC_INT	(NR_IRQS_LEGACY + 31) +#define MX1_VOICE_ADC_INT	(NR_IRQS_LEGACY + 32) +#define MX1_PEN_DATA_INT	(NR_IRQS_LEGACY + 33) +#define MX1_PWM_INT		(NR_IRQS_LEGACY + 34) +#define MX1_SDHC_INT		(NR_IRQS_LEGACY + 35) +#define MX1_INT_I2C		(NR_IRQS_LEGACY + 39) +#define MX1_INT_CSPI2		(NR_IRQS_LEGACY + 40) +#define MX1_INT_CSPI1		(NR_IRQS_LEGACY + 41) +#define MX1_SSI_TX_INT		(NR_IRQS_LEGACY + 42) +#define MX1_SSI_TX_ERR_INT	(NR_IRQS_LEGACY + 43) +#define MX1_SSI_RX_INT		(NR_IRQS_LEGACY + 44) +#define MX1_SSI_RX_ERR_INT	(NR_IRQS_LEGACY + 45) +#define MX1_TOUCH_INT		(NR_IRQS_LEGACY + 46) +#define MX1_INT_USBD0		(NR_IRQS_LEGACY + 47) +#define MX1_INT_USBD1		(NR_IRQS_LEGACY + 48) +#define MX1_INT_USBD2		(NR_IRQS_LEGACY + 49) +#define MX1_INT_USBD3		(NR_IRQS_LEGACY + 50) +#define MX1_INT_USBD4		(NR_IRQS_LEGACY + 51) +#define MX1_INT_USBD5		(NR_IRQS_LEGACY + 52) +#define MX1_INT_USBD6		(NR_IRQS_LEGACY + 53) +#define MX1_BTSYS_INT		(NR_IRQS_LEGACY + 55) +#define MX1_BTTIM_INT		(NR_IRQS_LEGACY + 56) +#define MX1_BTWUI_INT		(NR_IRQS_LEGACY + 57) +#define MX1_TIM2_INT		(NR_IRQS_LEGACY + 58) +#define MX1_TIM1_INT		(NR_IRQS_LEGACY + 59) +#define MX1_DMA_ERR		(NR_IRQS_LEGACY + 60) +#define MX1_DMA_INT		(NR_IRQS_LEGACY + 61) +#define MX1_GPIO_INT_PORTD	(NR_IRQS_LEGACY + 62) +#define MX1_WDT_INT		(NR_IRQS_LEGACY + 63) + +/* DMA */ +#define MX1_DMA_REQ_UART3_T		2 +#define MX1_DMA_REQ_UART3_R		3 +#define MX1_DMA_REQ_SSI2_T		4 +#define MX1_DMA_REQ_SSI2_R		5 +#define MX1_DMA_REQ_CSI_STAT		6 +#define MX1_DMA_REQ_CSI_R		7 +#define MX1_DMA_REQ_MSHC		8 +#define MX1_DMA_REQ_DSPA_DCT_DOUT	9 +#define MX1_DMA_REQ_DSPA_DCT_DIN	10 +#define MX1_DMA_REQ_DSPA_MAC		11 +#define MX1_DMA_REQ_EXT			12 +#define MX1_DMA_REQ_SDHC		13 +#define MX1_DMA_REQ_SPI1_R		14 +#define MX1_DMA_REQ_SPI1_T		15 +#define MX1_DMA_REQ_SSI_T		16 +#define MX1_DMA_REQ_SSI_R		17 +#define MX1_DMA_REQ_ASP_DAC		18 +#define MX1_DMA_REQ_ASP_ADC		19 +#define MX1_DMA_REQ_USP_EP(x)		(20 + (x)) +#define MX1_DMA_REQ_SPI2_R		26 +#define MX1_DMA_REQ_SPI2_T		27 +#define MX1_DMA_REQ_UART2_T		28 +#define MX1_DMA_REQ_UART2_R		29 +#define MX1_DMA_REQ_UART1_T		30 +#define MX1_DMA_REQ_UART1_R		31 + +/* + * This doesn't depend on IMX_NEEDS_DEPRECATED_SYMBOLS + * to not break drivers/usb/gadget/imx_udc.  Should go + * away after this driver uses the new name. + */ +#define USBD_INT0		MX1_INT_USBD0 + +#endif /* ifndef __MACH_MX1_H__ */  |