utmi-armada100.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2012
  4. * eInfochips Ltd. <www.einfochips.com>
  5. * Written-by: Ajay Bhargav <contact@8051projects.net>
  6. *
  7. * (C) Copyright 2009
  8. * Marvell Semiconductor <www.marvell.com>
  9. */
  10. #ifndef __UTMI_ARMADA100__
  11. #define __UTMI_ARMADA100__
  12. #define UTMI_PHY_BASE 0xD4206000
  13. /* utmi_ctrl - bits */
  14. #define INPKT_DELAY_SOF (1 << 28)
  15. #define PLL_PWR_UP 2
  16. #define PHY_PWR_UP 1
  17. /* utmi_pll - bits */
  18. #define PLL_FBDIV_MASK 0x00000FF0
  19. #define PLL_FBDIV 4
  20. #define PLL_REFDIV_MASK 0x0000000F
  21. #define PLL_REFDIV 0
  22. #define PLL_READY 0x800000
  23. #define VCOCAL_START (1 << 21)
  24. #define N_DIVIDER 0xEE
  25. #define M_DIVIDER 0x0B
  26. /* utmi_tx - bits */
  27. #define CK60_PHSEL 17
  28. #define PHSEL_VAL 0x4
  29. #define RCAL_START (1 << 12)
  30. /*
  31. * USB PHY registers
  32. * Refer Datasheet Appendix A.21
  33. */
  34. struct armd1usb_phy_reg {
  35. u32 utmi_rev; /* USB PHY Revision */
  36. u32 utmi_ctrl; /* USB PHY Control register */
  37. u32 utmi_pll; /* PLL register */
  38. u32 utmi_tx; /* Tx register */
  39. u32 utmi_rx; /* Rx register */
  40. u32 utmi_ivref; /* IVREF register */
  41. u32 utmi_tst_g0; /* Test group 0 register */
  42. u32 utmi_tst_g1; /* Test group 1 register */
  43. u32 utmi_tst_g2; /* Test group 2 register */
  44. u32 utmi_tst_g3; /* Test group 3 register */
  45. u32 utmi_tst_g4; /* Test group 4 register */
  46. u32 utmi_tst_g5; /* Test group 5 register */
  47. u32 utmi_reserve; /* Reserve Register */
  48. u32 utmi_usb_int; /* USB interuppt register */
  49. u32 utmi_dbg_ctl; /* Debug control register */
  50. u32 utmi_otg_addon; /* OTG addon register */
  51. };
  52. int utmi_init(void);
  53. #endif /* __UTMI_ARMADA100__ */