Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __AU1X00_ETH_DATA_H
0003 #define __AU1X00_ETH_DATA_H
0004 
0005 /* Platform specific PHY configuration passed to the MAC driver */
0006 struct au1000_eth_platform_data {
0007     int phy_static_config;
0008     int phy_search_highest_addr;
0009     int phy1_search_mac0;
0010     int phy_addr;
0011     int phy_busid;
0012     int phy_irq;
0013     char mac[6];
0014 };
0015 
0016 void __init au1xxx_override_eth_cfg(unsigned port,
0017             struct au1000_eth_platform_data *eth_data);
0018 
0019 #endif /* __AU1X00_ETH_DATA_H */