ehci-orion.h 531 B

123456789101112131415161718192021222324252627
  1. /*
  2. * arch/arm/plat-orion/include/plat/ehci-orion.h
  3. *
  4. * This file is licensed under the terms of the GNU General Public
  5. * License version 2. This program is licensed "as is" without any
  6. * warranty of any kind, whether express or implied.
  7. */
  8. #ifndef __PLAT_EHCI_ORION_H
  9. #define __PLAT_EHCI_ORION_H
  10. #include <linux/mbus.h>
  11. enum orion_ehci_phy_ver {
  12. EHCI_PHY_ORION,
  13. EHCI_PHY_DD,
  14. EHCI_PHY_KW,
  15. EHCI_PHY_NA,
  16. };
  17. struct orion_ehci_data {
  18. struct mbus_dram_target_info *dram;
  19. enum orion_ehci_phy_ver phy_version;
  20. };
  21. #endif