au1xxx_eth.h 430 B

12345678910111213141516171819
  1. #ifndef __AU1X00_ETH_DATA_H
  2. #define __AU1X00_ETH_DATA_H
  3. /* Platform specific PHY configuration passed to the MAC driver */
  4. struct au1000_eth_platform_data {
  5. int phy_static_config;
  6. int phy_search_highest_addr;
  7. int phy1_search_mac0;
  8. int phy_addr;
  9. int phy_busid;
  10. int phy_irq;
  11. char mac[6];
  12. };
  13. void __init au1xxx_override_eth_cfg(unsigned port,
  14. struct au1000_eth_platform_data *eth_data);
  15. #endif /* __AU1X00_ETH_DATA_H */