da8xx.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. #include <mach/serial.h>
  14. #include <mach/edma.h>
  15. #include <mach/i2c.h>
  16. #include <mach/emac.h>
  17. #include <mach/asp.h>
  18. /*
  19. * The cp_intc interrupt controller for the da8xx isn't in the same
  20. * chunk of physical memory space as the other registers (like it is
  21. * on the davincis) so it needs to be mapped separately. It will be
  22. * mapped early on when the I/O space is mapped and we'll put it just
  23. * before the I/O space in the processor's virtual memory space.
  24. */
  25. #define DA8XX_CP_INTC_BASE 0xfffee000
  26. #define DA8XX_CP_INTC_SIZE SZ_8K
  27. #define DA8XX_CP_INTC_VIRT (IO_VIRT - DA8XX_CP_INTC_SIZE - SZ_4K)
  28. #define DA8XX_BOOT_CFG_BASE (IO_PHYS + 0x14000)
  29. #define DA8XX_PSC0_BASE 0x01c10000
  30. #define DA8XX_PLL0_BASE 0x01c11000
  31. #define DA8XX_JTAG_ID_REG 0x01c14018
  32. #define DA8XX_TIMER64P0_BASE 0x01c20000
  33. #define DA8XX_TIMER64P1_BASE 0x01c21000
  34. #define DA8XX_GPIO_BASE 0x01e26000
  35. #define DA8XX_PSC1_BASE 0x01e27000
  36. #define PINMUX0 0x00
  37. #define PINMUX1 0x04
  38. #define PINMUX2 0x08
  39. #define PINMUX3 0x0c
  40. #define PINMUX4 0x10
  41. #define PINMUX5 0x14
  42. #define PINMUX6 0x18
  43. #define PINMUX7 0x1c
  44. #define PINMUX8 0x20
  45. #define PINMUX9 0x24
  46. #define PINMUX10 0x28
  47. #define PINMUX11 0x2c
  48. #define PINMUX12 0x30
  49. #define PINMUX13 0x34
  50. #define PINMUX14 0x38
  51. #define PINMUX15 0x3c
  52. #define PINMUX16 0x40
  53. #define PINMUX17 0x44
  54. #define PINMUX18 0x48
  55. #define PINMUX19 0x4c
  56. void __init da830_init(void);
  57. void __init da850_init(void);
  58. int da8xx_register_edma(void);
  59. int da8xx_register_i2c(int instance, struct davinci_i2c_platform_data *pdata);
  60. int da8xx_register_watchdog(void);
  61. int da8xx_register_emac(void);
  62. void __init da8xx_init_mcasp(int id, struct snd_platform_data *pdata);
  63. extern struct platform_device da8xx_serial_device;
  64. extern struct emac_platform_data da8xx_emac_pdata;
  65. extern const short da830_emif25_pins[];
  66. extern const short da830_spi0_pins[];
  67. extern const short da830_spi1_pins[];
  68. extern const short da830_mmc_sd_pins[];
  69. extern const short da830_uart0_pins[];
  70. extern const short da830_uart1_pins[];
  71. extern const short da830_uart2_pins[];
  72. extern const short da830_usb20_pins[];
  73. extern const short da830_usb11_pins[];
  74. extern const short da830_uhpi_pins[];
  75. extern const short da830_cpgmac_pins[];
  76. extern const short da830_emif3c_pins[];
  77. extern const short da830_mcasp0_pins[];
  78. extern const short da830_mcasp1_pins[];
  79. extern const short da830_mcasp2_pins[];
  80. extern const short da830_i2c0_pins[];
  81. extern const short da830_i2c1_pins[];
  82. extern const short da830_lcdcntl_pins[];
  83. extern const short da830_pwm_pins[];
  84. extern const short da830_ecap0_pins[];
  85. extern const short da830_ecap1_pins[];
  86. extern const short da830_ecap2_pins[];
  87. extern const short da830_eqep0_pins[];
  88. extern const short da830_eqep1_pins[];
  89. extern const short da850_uart0_pins[];
  90. extern const short da850_uart1_pins[];
  91. extern const short da850_uart2_pins[];
  92. extern const short da850_i2c0_pins[];
  93. extern const short da850_i2c1_pins[];
  94. extern const short da850_cpgmac_pins[];
  95. extern const short da850_mcasp_pins[];
  96. int da8xx_pinmux_setup(const short pins[]);
  97. #endif /* __ASM_ARCH_DAVINCI_DA8XX_H */