diff options
Diffstat (limited to 'arch/arm/mach-davinci/include/mach/da8xx.h')
-rw-r--r-- | arch/arm/mach-davinci/include/mach/da8xx.h | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/include/mach/da8xx.h b/arch/arm/mach-davinci/include/mach/da8xx.h new file mode 100644 index 000000000000..084db271c7c4 --- /dev/null +++ b/arch/arm/mach-davinci/include/mach/da8xx.h | |||
@@ -0,0 +1,69 @@ | |||
1 | /* | ||
2 | * Chip specific defines for DA8XX/OMAP L1XX SoC | ||
3 | * | ||
4 | * Author: Mark A. Greer <mgreer@mvista.com> | ||
5 | * | ||
6 | * 2007, 2009 (c) MontaVista Software, Inc. This file is licensed under | ||
7 | * the terms of the GNU General Public License version 2. This program | ||
8 | * is licensed "as is" without any warranty of any kind, whether express | ||
9 | * or implied. | ||
10 | */ | ||
11 | #ifndef __ASM_ARCH_DAVINCI_DA8XX_H | ||
12 | #define __ASM_ARCH_DAVINCI_DA8XX_H | ||
13 | |||
14 | #include <mach/serial.h> | ||
15 | #include <mach/edma.h> | ||
16 | #include <mach/i2c.h> | ||
17 | #include <mach/emac.h> | ||
18 | |||
19 | /* | ||
20 | * The cp_intc interrupt controller for the da8xx isn't in the same | ||
21 | * chunk of physical memory space as the other registers (like it is | ||
22 | * on the davincis) so it needs to be mapped separately. It will be | ||
23 | * mapped early on when the I/O space is mapped and we'll put it just | ||
24 | * before the I/O space in the processor's virtual memory space. | ||
25 | */ | ||
26 | #define DA8XX_CP_INTC_BASE 0xfffee000 | ||
27 | #define DA8XX_CP_INTC_SIZE SZ_8K | ||
28 | #define DA8XX_CP_INTC_VIRT (IO_VIRT - DA8XX_CP_INTC_SIZE - SZ_4K) | ||
29 | |||
30 | #define DA8XX_BOOT_CFG_BASE (IO_PHYS + 0x14000) | ||
31 | |||
32 | void __init da830_init(void); | ||
33 | |||
34 | int da8xx_register_edma(void); | ||
35 | int da8xx_register_i2c(int instance, struct davinci_i2c_platform_data *pdata); | ||
36 | int da8xx_register_watchdog(void); | ||
37 | int da8xx_register_emac(void); | ||
38 | |||
39 | extern struct platform_device da8xx_serial_device; | ||
40 | extern struct emac_platform_data da8xx_emac_pdata; | ||
41 | |||
42 | extern const short da830_emif25_pins[]; | ||
43 | extern const short da830_spi0_pins[]; | ||
44 | extern const short da830_spi1_pins[]; | ||
45 | extern const short da830_mmc_sd_pins[]; | ||
46 | extern const short da830_uart0_pins[]; | ||
47 | extern const short da830_uart1_pins[]; | ||
48 | extern const short da830_uart2_pins[]; | ||
49 | extern const short da830_usb20_pins[]; | ||
50 | extern const short da830_usb11_pins[]; | ||
51 | extern const short da830_uhpi_pins[]; | ||
52 | extern const short da830_cpgmac_pins[]; | ||
53 | extern const short da830_emif3c_pins[]; | ||
54 | extern const short da830_mcasp0_pins[]; | ||
55 | extern const short da830_mcasp1_pins[]; | ||
56 | extern const short da830_mcasp2_pins[]; | ||
57 | extern const short da830_i2c0_pins[]; | ||
58 | extern const short da830_i2c1_pins[]; | ||
59 | extern const short da830_lcdcntl_pins[]; | ||
60 | extern const short da830_pwm_pins[]; | ||
61 | extern const short da830_ecap0_pins[]; | ||
62 | extern const short da830_ecap1_pins[]; | ||
63 | extern const short da830_ecap2_pins[]; | ||
64 | extern const short da830_eqep0_pins[]; | ||
65 | extern const short da830_eqep1_pins[]; | ||
66 | |||
67 | int da830_pinmux_setup(const short pins[]); | ||
68 | |||
69 | #endif /* __ASM_ARCH_DAVINCI_DA8XX_H */ | ||