ehci-fsl.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /* Copyright (C) 2005-2010,2012 Freescale Semiconductor, Inc.
  3. * Copyright (c) 2005 MontaVista Software
  4. */
  5. #ifndef _EHCI_FSL_H
  6. #define _EHCI_FSL_H
  7. /* offsets for the non-ehci registers in the FSL SOC USB controller */
  8. #define FSL_SOC_USB_SBUSCFG 0x90
  9. #define SBUSCFG_INCR8 0x02 /* INCR8, specified */
  10. #define FSL_SOC_USB_ULPIVP 0x170
  11. #define FSL_SOC_USB_PORTSC1 0x184
  12. #define PORT_PTS_MSK (3<<30)
  13. #define PORT_PTS_UTMI (0<<30)
  14. #define PORT_PTS_ULPI (2<<30)
  15. #define PORT_PTS_SERIAL (3<<30)
  16. #define PORT_PTS_PTW (1<<28)
  17. #define FSL_SOC_USB_PORTSC2 0x188
  18. #define FSL_SOC_USB_USBMODE 0x1a8
  19. #define USBMODE_CM_MASK (3 << 0) /* controller mode mask */
  20. #define USBMODE_CM_HOST (3 << 0) /* controller mode: host */
  21. #define USBMODE_ES (1 << 2) /* (Big) Endian Select */
  22. #define FSL_SOC_USB_USBGENCTRL 0x200
  23. #define USBGENCTRL_PPP (1 << 3)
  24. #define USBGENCTRL_PFP (1 << 2)
  25. #define FSL_SOC_USB_ISIPHYCTRL 0x204
  26. #define ISIPHYCTRL_PXE (1)
  27. #define ISIPHYCTRL_PHYE (1 << 4)
  28. #define FSL_SOC_USB_SNOOP1 0x400 /* NOTE: big-endian */
  29. #define FSL_SOC_USB_SNOOP2 0x404 /* NOTE: big-endian */
  30. #define FSL_SOC_USB_AGECNTTHRSH 0x408 /* NOTE: big-endian */
  31. #define FSL_SOC_USB_PRICTRL 0x40c /* NOTE: big-endian */
  32. #define FSL_SOC_USB_SICTRL 0x410 /* NOTE: big-endian */
  33. #define FSL_SOC_USB_CTRL 0x500 /* NOTE: big-endian */
  34. #define CTRL_UTMI_PHY_EN (1<<9)
  35. #define CTRL_PHY_CLK_VALID (1 << 17)
  36. #define SNOOP_SIZE_2GB 0x1e
  37. /* control Register Bit Masks */
  38. #define CONTROL_REGISTER_W1C_MASK 0x00020000 /* W1C: PHY_CLK_VALID */
  39. #define ULPI_INT_EN (1<<0)
  40. #define WU_INT_EN (1<<1)
  41. #define USB_CTRL_USB_EN (1<<2)
  42. #define LINE_STATE_FILTER__EN (1<<3)
  43. #define KEEP_OTG_ON (1<<4)
  44. #define OTG_PORT (1<<5)
  45. #define PLL_RESET (1<<8)
  46. #define UTMI_PHY_EN (1<<9)
  47. #define ULPI_PHY_CLK_SEL (1<<10)
  48. #define PHY_CLK_VALID (1<<17)
  49. /* Retry count for checking UTMI PHY CLK validity */
  50. #define UTMI_PHY_CLK_VALID_CHK_RETRY 5
  51. #endif /* _EHCI_FSL_H */