mdio-gpio.h 597 B

12345678910111213141516171819202122232425
  1. /*
  2. * MDIO-GPIO bus platform data structures
  3. *
  4. * Copyright (C) 2008, Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
  5. *
  6. * This file is licensed under the terms of the GNU General Public License
  7. * version 2. This program is licensed "as is" without any warranty of any
  8. * kind, whether express or implied.
  9. */
  10. #ifndef __LINUX_MDIO_GPIO_H
  11. #define __LINUX_MDIO_GPIO_H
  12. #include <linux/mdio-bitbang.h>
  13. struct mdio_gpio_platform_data {
  14. /* GPIO numbers for bus pins */
  15. unsigned int mdc;
  16. unsigned int mdio;
  17. unsigned int phy_mask;
  18. int irqs[PHY_MAX_ADDR];
  19. };
  20. #endif /* __LINUX_MDIO_GPIO_H */