zoukankan      html  css  js  c++  java
  • I.MX6 开启 1000Mb/s interface

    /***********************************************************************
     *                  I.MX6 开启 1000Mb/s interface 
     * 说明:
     *     最近出现1000Mb/s网卡不用的现象,于是tony对这个问题进行了解决。
     *
     *                                     2016-4-20 深圳 南山平山村 曾剑锋
     **********************************************************************/
    
    一、参考文档:
        imx6 ar8031 千兆网卡不能用
            http://www.cnblogs.com/helloworldtoyou/p/5406913.html
    
    二、cat drivers/net/fec.c
        ......
        static int fec_enet_mii_probe(struct net_device *ndev)
        {
            /* mask with MAC supported features */
            if (cpu_is_mx6q() || cpu_is_mx6dl())
                //phy_dev->supported &= PHY_BASIC_FEATURES;
                phy_dev->supported &= PHY_GBIT_FEATURES;
            else
                phy_dev->supported &= PHY_BASIC_FEATURES;
        }
        ......
  • 相关阅读:
    判定一个APP是否可以上线?
    即时聊天-环信
    类目延展协议
    一个sql的优化
    多线程编程
    sql小总结
    人生七问
    js之按键总结
    搭建框架日志记录
    jquery函数
  • 原文地址:https://www.cnblogs.com/zengjfgit/p/5411159.html
Copyright © 2011-2022 走看看