usb-rcar-gen2-phy.h 613 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (C) 2013 Renesas Solutions Corp.
  3. * Copyright (C) 2013 Cogent Embedded, Inc.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #ifndef __USB_RCAR_GEN2_PHY_H
  10. #define __USB_RCAR_GEN2_PHY_H
  11. #include <linux/types.h>
  12. struct rcar_gen2_phy_platform_data {
  13. /* USB channel 0 configuration */
  14. bool chan0_pci:1; /* true: PCI USB host 0, false: USBHS */
  15. /* USB channel 2 configuration */
  16. bool chan2_pci:1; /* true: PCI USB host 2, false: USBSS */
  17. };
  18. #endif