Mark A. Greer | 55c79a4 | 2009-06-03 18:36:54 -0700 | [diff] [blame] | 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> |
Chaithrika U S | e33ef5e | 2009-08-11 17:01:59 -0400 | [diff] [blame] | 18 | #include <mach/asp.h> |
Sudhakar Rajashekhara | 700691f | 2009-08-13 15:16:23 -0400 | [diff] [blame] | 19 | #include <mach/mmc.h> |
Mark A. Greer | 55c79a4 | 2009-06-03 18:36:54 -0700 | [diff] [blame] | 20 | |
| 21 | /* |
| 22 | * The cp_intc interrupt controller for the da8xx isn't in the same |
| 23 | * chunk of physical memory space as the other registers (like it is |
| 24 | * on the davincis) so it needs to be mapped separately. It will be |
| 25 | * mapped early on when the I/O space is mapped and we'll put it just |
| 26 | * before the I/O space in the processor's virtual memory space. |
| 27 | */ |
| 28 | #define DA8XX_CP_INTC_BASE 0xfffee000 |
| 29 | #define DA8XX_CP_INTC_SIZE SZ_8K |
| 30 | #define DA8XX_CP_INTC_VIRT (IO_VIRT - DA8XX_CP_INTC_SIZE - SZ_4K) |
| 31 | |
| 32 | #define DA8XX_BOOT_CFG_BASE (IO_PHYS + 0x14000) |
| 33 | |
Rajashekhara, Sudhakar | bea238f | 2009-07-10 02:08:31 -0400 | [diff] [blame] | 34 | #define DA8XX_PSC0_BASE 0x01c10000 |
| 35 | #define DA8XX_PLL0_BASE 0x01c11000 |
| 36 | #define DA8XX_JTAG_ID_REG 0x01c14018 |
| 37 | #define DA8XX_TIMER64P0_BASE 0x01c20000 |
| 38 | #define DA8XX_TIMER64P1_BASE 0x01c21000 |
| 39 | #define DA8XX_GPIO_BASE 0x01e26000 |
| 40 | #define DA8XX_PSC1_BASE 0x01e27000 |
Sudhakar Rajashekhara | 5cbdf27 | 2009-08-13 14:33:14 -0400 | [diff] [blame] | 41 | #define DA8XX_LCD_CNTRL_BASE 0x01e13000 |
Sudhakar Rajashekhara | 700691f | 2009-08-13 15:16:23 -0400 | [diff] [blame] | 42 | #define DA8XX_MMCSD0_BASE 0x01c40000 |
Sudhakar Rajashekhara | 7c5ec60 | 2009-08-13 17:36:25 -0400 | [diff] [blame] | 43 | #define DA8XX_AEMIF_CS2_BASE 0x60000000 |
Sudhakar Rajashekhara | 38beb92 | 2009-08-13 16:21:11 -0400 | [diff] [blame] | 44 | #define DA8XX_AEMIF_CS3_BASE 0x62000000 |
| 45 | #define DA8XX_AEMIF_CTL_BASE 0x68000000 |
Rajashekhara, Sudhakar | bea238f | 2009-07-10 02:08:31 -0400 | [diff] [blame] | 46 | |
Sudhakar Rajashekhara | c96b56c | 2009-07-16 05:45:32 -0400 | [diff] [blame] | 47 | #define PINMUX0 0x00 |
| 48 | #define PINMUX1 0x04 |
| 49 | #define PINMUX2 0x08 |
| 50 | #define PINMUX3 0x0c |
| 51 | #define PINMUX4 0x10 |
| 52 | #define PINMUX5 0x14 |
| 53 | #define PINMUX6 0x18 |
| 54 | #define PINMUX7 0x1c |
| 55 | #define PINMUX8 0x20 |
| 56 | #define PINMUX9 0x24 |
| 57 | #define PINMUX10 0x28 |
| 58 | #define PINMUX11 0x2c |
| 59 | #define PINMUX12 0x30 |
| 60 | #define PINMUX13 0x34 |
| 61 | #define PINMUX14 0x38 |
| 62 | #define PINMUX15 0x3c |
| 63 | #define PINMUX16 0x40 |
| 64 | #define PINMUX17 0x44 |
| 65 | #define PINMUX18 0x48 |
| 66 | #define PINMUX19 0x4c |
| 67 | |
Mark A. Greer | 55c79a4 | 2009-06-03 18:36:54 -0700 | [diff] [blame] | 68 | void __init da830_init(void); |
Sudhakar Rajashekhara | e1a8d7e | 2009-07-16 06:41:54 -0400 | [diff] [blame] | 69 | void __init da850_init(void); |
Mark A. Greer | 55c79a4 | 2009-06-03 18:36:54 -0700 | [diff] [blame] | 70 | |
| 71 | int da8xx_register_edma(void); |
| 72 | int da8xx_register_i2c(int instance, struct davinci_i2c_platform_data *pdata); |
| 73 | int da8xx_register_watchdog(void); |
| 74 | int da8xx_register_emac(void); |
Sudhakar Rajashekhara | 5cbdf27 | 2009-08-13 14:33:14 -0400 | [diff] [blame] | 75 | int da8xx_register_lcdc(void); |
Sudhakar Rajashekhara | 700691f | 2009-08-13 15:16:23 -0400 | [diff] [blame] | 76 | int da8xx_register_mmcsd0(struct davinci_mmc_config *config); |
Chaithrika U S | e33ef5e | 2009-08-11 17:01:59 -0400 | [diff] [blame] | 77 | void __init da8xx_init_mcasp(int id, struct snd_platform_data *pdata); |
Mark A. Greer | 55c79a4 | 2009-06-03 18:36:54 -0700 | [diff] [blame] | 78 | |
| 79 | extern struct platform_device da8xx_serial_device; |
| 80 | extern struct emac_platform_data da8xx_emac_pdata; |
| 81 | |
| 82 | extern const short da830_emif25_pins[]; |
| 83 | extern const short da830_spi0_pins[]; |
| 84 | extern const short da830_spi1_pins[]; |
| 85 | extern const short da830_mmc_sd_pins[]; |
| 86 | extern const short da830_uart0_pins[]; |
| 87 | extern const short da830_uart1_pins[]; |
| 88 | extern const short da830_uart2_pins[]; |
| 89 | extern const short da830_usb20_pins[]; |
| 90 | extern const short da830_usb11_pins[]; |
| 91 | extern const short da830_uhpi_pins[]; |
| 92 | extern const short da830_cpgmac_pins[]; |
| 93 | extern const short da830_emif3c_pins[]; |
| 94 | extern const short da830_mcasp0_pins[]; |
| 95 | extern const short da830_mcasp1_pins[]; |
| 96 | extern const short da830_mcasp2_pins[]; |
| 97 | extern const short da830_i2c0_pins[]; |
| 98 | extern const short da830_i2c1_pins[]; |
| 99 | extern const short da830_lcdcntl_pins[]; |
| 100 | extern const short da830_pwm_pins[]; |
| 101 | extern const short da830_ecap0_pins[]; |
| 102 | extern const short da830_ecap1_pins[]; |
| 103 | extern const short da830_ecap2_pins[]; |
| 104 | extern const short da830_eqep0_pins[]; |
| 105 | extern const short da830_eqep1_pins[]; |
| 106 | |
Sudhakar Rajashekhara | e1a8d7e | 2009-07-16 06:41:54 -0400 | [diff] [blame] | 107 | extern const short da850_uart0_pins[]; |
| 108 | extern const short da850_uart1_pins[]; |
| 109 | extern const short da850_uart2_pins[]; |
| 110 | extern const short da850_i2c0_pins[]; |
| 111 | extern const short da850_i2c1_pins[]; |
Sudhakar Rajashekhara | 5a4b131 | 2009-07-17 04:47:10 -0400 | [diff] [blame] | 112 | extern const short da850_cpgmac_pins[]; |
Chaithrika U S | e33ef5e | 2009-08-11 17:01:59 -0400 | [diff] [blame] | 113 | extern const short da850_mcasp_pins[]; |
Sudhakar Rajashekhara | 5cbdf27 | 2009-08-13 14:33:14 -0400 | [diff] [blame] | 114 | extern const short da850_lcdcntl_pins[]; |
Sudhakar Rajashekhara | 700691f | 2009-08-13 15:16:23 -0400 | [diff] [blame] | 115 | extern const short da850_mmcsd0_pins[]; |
Sudhakar Rajashekhara | 38beb92 | 2009-08-13 16:21:11 -0400 | [diff] [blame] | 116 | extern const short da850_nand_pins[]; |
Sudhakar Rajashekhara | 7c5ec60 | 2009-08-13 17:36:25 -0400 | [diff] [blame] | 117 | extern const short da850_nor_pins[]; |
Sudhakar Rajashekhara | e1a8d7e | 2009-07-16 06:41:54 -0400 | [diff] [blame] | 118 | |
Sudhakar Rajashekhara | c96b56c | 2009-07-16 05:45:32 -0400 | [diff] [blame] | 119 | int da8xx_pinmux_setup(const short pins[]); |
Mark A. Greer | 55c79a4 | 2009-06-03 18:36:54 -0700 | [diff] [blame] | 120 | |
| 121 | #endif /* __ASM_ARCH_DAVINCI_DA8XX_H */ |