da8xx.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. /*
  18. * The cp_intc interrupt controller for the da8xx isn't in the same
  19. * chunk of physical memory space as the other registers (like it is
  20. * on the davincis) so it needs to be mapped separately. It will be
  21. * mapped early on when the I/O space is mapped and we'll put it just
  22. * before the I/O space in the processor's virtual memory space.
  23. */
  24. #define DA8XX_CP_INTC_BASE 0xfffee000
  25. #define DA8XX_CP_INTC_SIZE SZ_8K
  26. #define DA8XX_CP_INTC_VIRT (IO_VIRT - DA8XX_CP_INTC_SIZE - SZ_4K)
  27. #define DA8XX_BOOT_CFG_BASE (IO_PHYS + 0x14000)
  28. #define DA8XX_PSC0_BASE 0x01c10000
  29. #define DA8XX_PLL0_BASE 0x01c11000
  30. #define DA8XX_JTAG_ID_REG 0x01c14018
  31. #define DA8XX_TIMER64P0_BASE 0x01c20000
  32. #define DA8XX_TIMER64P1_BASE 0x01c21000
  33. #define DA8XX_GPIO_BASE 0x01e26000
  34. #define DA8XX_PSC1_BASE 0x01e27000
  35. void __init da830_init(void);
  36. int da8xx_register_edma(void);
  37. int da8xx_register_i2c(int instance, struct davinci_i2c_platform_data *pdata);
  38. int da8xx_register_watchdog(void);
  39. int da8xx_register_emac(void);
  40. extern struct platform_device da8xx_serial_device;
  41. extern struct emac_platform_data da8xx_emac_pdata;
  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. int da830_pinmux_setup(const short pins[]);
  67. #endif /* __ASM_ARCH_DAVINCI_DA8XX_H */