da8xx.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. void __init da830_init(void);
  29. int da8xx_register_edma(void);
  30. int da8xx_register_i2c(int instance, struct davinci_i2c_platform_data *pdata);
  31. int da8xx_register_watchdog(void);
  32. int da8xx_register_emac(void);
  33. extern struct platform_device da8xx_serial_device;
  34. extern struct emac_platform_data da8xx_emac_pdata;
  35. extern const short da830_emif25_pins[];
  36. extern const short da830_spi0_pins[];
  37. extern const short da830_spi1_pins[];
  38. extern const short da830_mmc_sd_pins[];
  39. extern const short da830_uart0_pins[];
  40. extern const short da830_uart1_pins[];
  41. extern const short da830_uart2_pins[];
  42. extern const short da830_usb20_pins[];
  43. extern const short da830_usb11_pins[];
  44. extern const short da830_uhpi_pins[];
  45. extern const short da830_cpgmac_pins[];
  46. extern const short da830_emif3c_pins[];
  47. extern const short da830_mcasp0_pins[];
  48. extern const short da830_mcasp1_pins[];
  49. extern const short da830_mcasp2_pins[];
  50. extern const short da830_i2c0_pins[];
  51. extern const short da830_i2c1_pins[];
  52. extern const short da830_lcdcntl_pins[];
  53. extern const short da830_pwm_pins[];
  54. extern const short da830_ecap0_pins[];
  55. extern const short da830_ecap1_pins[];
  56. extern const short da830_ecap2_pins[];
  57. extern const short da830_eqep0_pins[];
  58. extern const short da830_eqep1_pins[];
  59. int da830_pinmux_setup(const short pins[]);
  60. #endif /* __ASM_ARCH_DAVINCI_DA8XX_H */