am35x_def.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * am35x_def.h - TI's AM35x specific definitions.
  3. *
  4. * Based on arch/arm/include/asm/arch-omap3/cpu.h
  5. *
  6. * Author: Ajay Kumar Gupta <ajay.gupta@ti.com>
  7. *
  8. * Copyright (c) 2010 Texas Instruments Incorporated
  9. *
  10. * SPDX-License-Identifier: GPL-2.0+
  11. */
  12. #ifndef _AM35X_DEF_H_
  13. #define _AM35X_DEF_H_
  14. #if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
  15. #include <asm/types.h>
  16. #endif /* !(__KERNEL_STRICT_NAMES || __ASSEMBLY__) */
  17. #ifndef __KERNEL_STRICT_NAMES
  18. #ifndef __ASSEMBLY__
  19. /* LVL_INTR_CLEAR bits */
  20. #define USBOTGSS_INT_CLR (1 << 4)
  21. /* IP_SW_RESET bits */
  22. #define USBOTGSS_SW_RST (1 << 0) /* reset USBOTG */
  23. #define CPGMACSS_SW_RST (1 << 1) /* reset CPGMAC */
  24. /* DEVCONF2 bits */
  25. #define CONF2_PHY_GPIOMODE (1 << 23)
  26. #define CONF2_OTGMODE (3 << 14)
  27. #define CONF2_NO_OVERRIDE (0 << 14)
  28. #define CONF2_FORCE_HOST (1 << 14)
  29. #define CONF2_FORCE_DEVICE (2 << 14)
  30. #define CONF2_FORCE_HOST_VBUS_LOW (3 << 14)
  31. #define CONF2_SESENDEN (1 << 13)
  32. #define CONF2_VBDTCTEN (1 << 12)
  33. #define CONF2_REFFREQ_24MHZ (2 << 8)
  34. #define CONF2_REFFREQ_26MHZ (7 << 8)
  35. #define CONF2_REFFREQ_13MHZ (6 << 8)
  36. #define CONF2_REFFREQ (0xf << 8)
  37. #define CONF2_PHYCLKGD (1 << 7)
  38. #define CONF2_VBUSSENSE (1 << 6)
  39. #define CONF2_PHY_PLLON (1 << 5)
  40. #define CONF2_RESET (1 << 4)
  41. #define CONF2_PHYPWRDN (1 << 3)
  42. #define CONF2_OTGPWRDN (1 << 2)
  43. #define CONF2_DATPOL (1 << 1)
  44. /* General register mappings of system control module */
  45. #define AM35X_SCM_GEN_BASE 0x48002270
  46. struct am35x_scm_general {
  47. u32 res1[0xC4]; /* 0x000 - 0x30C */
  48. u32 devconf2; /* 0x310 */
  49. u32 devconf3; /* 0x314 */
  50. u32 res2[0x2]; /* 0x318 - 0x31C */
  51. u32 cba_priority; /* 0x320 */
  52. u32 lvl_intr_clr; /* 0x324 */
  53. u32 ip_sw_reset; /* 0x328 */
  54. u32 ipss_clk_ctrl; /* 0x32C */
  55. };
  56. #define am35x_scm_general_regs ((struct am35x_scm_general *)AM35X_SCM_GEN_BASE)
  57. #define AM35XX_IPSS_USBOTGSS_BASE 0x5C040000
  58. #endif /*__ASSEMBLY__ */
  59. #endif /* __KERNEL_STRICT_NAMES */
  60. #endif /* _AM35X_DEF_H_ */