dm9000c 移值新内核 linux-4.1.24

发布时间:
来源: 电子工程世界

错误 1

/home/dm9000/dm9dev9000c.c:309: error: conflicting types for 'phy_read'
include/linux/phy.h:637: error: previous definition of 'phy_read' was here
/home/dm9000/dm9dev9000c.c:310: error: conflicting types for 'phy_write'
include/linux/phy.h:652: error: previous definition of 'phy_write' was here

linux/phy.h 也定义了这个函数,所以这里要改名.
phy_read 改名为 dm9000_phy_read

错误 2
dm9dev9000c.c:356: error: implicit declaration of function 'SET_MODULE_OWNER'
查看 linux2.6.22 源码查看发现只是一个宏定义 #define SET_MODULE_OWNER(dev) do { } while (0)

错误 3
/home/dm9000/dm9dev9000c.c:407: error: 'struct net_device' has no member named 'priv'
/home/dm9000/dm9dev9000c.c:408: error: 'struct net_device' has no member named 'priv'
/home/dm9000/dm9dev9000c.c:422: error: 'struct net_device' has no member named 'open'
/home/dm9000/dm9dev9000c.c:423: error: 'struct net_device' has no member named 'hard_start_xmit'

/* Allocated board information structure */
memset(dev->priv, 0, sizeof(struct board_info));
db = (board_info_t *)dev->priv;
改为
db = netdev_priv(dev);
/* Allocated board information structure */
memset(db, 0, sizeof(struct board_info));

这里改的比较多,最后见补丁吧
static const struct net_device_ops dm9000_netdev_ops = {
.ndo_open = dm9000_open,
.ndo_stop = dm9000_stop,
.ndo_start_xmit = dm9000_start_xmit,
.ndo_tx_timeout = dm9000_timeout,
.ndo_set_rx_mode = dm9000_hash_table,
.ndo_do_ioctl = dm9000_ioctl,
.ndo_change_mtu = eth_change_mtu,
.ndo_set_features = dm9000_set_features,
.ndo_validate_addr = eth_validate_addr,
.ndo_set_mac_address = eth_mac_addr,
#ifdef CONFIG_NET_POLL_CONTROLLER
.ndo_poll_controller = dm9000_poll_controller,
#endif
};

需要复制 内核自带的 dm9000.h 

   1 /*

   2 

   3   dm9ks.c: Version 2.08 2007/02/12 

   4   

   5         A Davicom DM9000/DM9010 ISA NIC fast Ethernet driver for Linux.

   6 

   7     This program is free software; you can redistribute it and/or

   8     modify it under the terms of the GNU General Public License

   9     as published by the Free Software Foundation; either version 2

  10     of the License, or (at your option) any later version.

  11 

  12     This program is distributed in the hope that it will be useful,

  13     but WITHOUT ANY WARRANTY; without even the implied warranty of

  14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the

  15     GNU General Public License for more details.

  16 

  17 

  18   (C)Copyright 1997-2007 DAVICOM Semiconductor,Inc. All Rights Reserved.

  19 

  20 V2.00 Spenser - 01/10/2005

  21             - Modification for PXA270 MAINSTONE.

  22             - Modified dmfe_tx_done().

  23             - Add dmfe_timeout().

  24 V2.01    10/07/2005    -Modified dmfe_timer()

  25             -Dected network speed 10/100M

  26 V2.02    10/12/2005    -Use link change to chage db->Speed

  27             -dmfe_open() wait for Link OK  

  28 V2.03    11/22/2005    -Power-off and Power-on PHY in dmfe_init_dm9000()

  29             -support IOL

  30 V2.04    12/13/2005    -delay 1.6s between power-on and power-off in 

  31              dmfe_init_dm9000()

  32             -set LED mode 1 in dmfe_init_dm9000()

  33             -add data bus driving capability in dmfe_init_dm9000()

  34              (optional)

  35 10/3/2006    -Add DM8606 read/write function by MDC and MDIO

  36 V2.06    01/03/2007    -CONT_RX_PKT_CNT=0xFFFF

  37             -modify dmfe_tx_done function

  38             -check RX FIFO pointer

  39             -if using physical address, re-define I/O function

  40             -add db->cont_rx_pkt_cnt=0 at the front of dmfe_packet_receive()

  41 V2.08    02/12/2007    -module parameter macro

  42             2.4  MODULE_PARM

  43             2.6  module_param

  44             -remove #include

  45               -fix dmfe_interrupt for kernel 2.6.20                  

  46 V2.09 05/24/2007    -support ethtool and mii-tool

  47 05/30/2007    -fix the driver bug when ifconfig eth0 (-)promisc and (-)allmulti.

  48 06/05/2007    -fix dm9000b issue(ex. 10M TX idle=65mA, 10M harmonic)

  49             -add flow control function (option)

  50 10/01/2007  -Add #include

  51             -Modyfy dmfe_do_ioctl for kernel 2.6.7

  52 11/23/2007    -Add TDBUG to check TX FIFO pointer shift

  53             - Remove check_rx_ready() 

  54           - Add #define CHECKSUM to modify CHECKSUM function    

  55 12/20/2007  -Modify TX timeout routine(+)check TCR&0x01 

  56 

  57 */

  58 

  59 //#define CHECKSUM

  60 //#define TDBUG        /* check TX FIFO pointer */

  61 //#define RDBUG   /* check RX FIFO pointer */

  62 //#define DM8606

  63 

  64 #define DRV_NAME    "dm9KS"

  65 #define DRV_VERSION    "2.09"

  66 #define DRV_RELDATE    "2007-11-22"

  67 

  68 #ifdef MODVERSIONS

  69 #include

  70 #endif

  71 

  72 //#include

  73 #include                 

  74 #include

  75 #include

  76 #include

  77 #include

  78 #include

  79 #include

  80 #include

  81 #include

  82 #include

  83 #include

  84 #include

  85 #include

  86 #include

  87 

  88 #ifdef CONFIG_ARCH_MAINSTONE

  89 #include

  90 #include

  91 #include

  92 #endif

  93 

  94 #include

  95 #include

  96 #include

  97 #include "dm9000.h"

  98 

  99 

 100 

 101 /* Board/System/Debug information/definition ---------------- */

 102 

 103 #define DM9KS_ID        0x90000A46

 104 #define DM9010_ID        0x90100A46

 105 /*-------register name-----------------------*/

 106 #define DM9KS_NCR        0x00    /* Network control Reg.*/

 107 #define DM9KS_NSR        0x01    /* Network Status Reg.*/

 108 #define DM9KS_TCR        0x02    /* TX control Reg.*/

 109 #define DM9KS_RXCR        0x05    /* RX control Reg.*/

 110 #define DM9KS_BPTR        0x08

 111 #define DM9KS_FCTR        0x09

 112 #define DM9KS_FCR            0x0a

 113 #define DM9KS_EPCR        0x0b

 114 #define DM9KS_EPAR        0x0c

 115 #define DM9KS_EPDRL        0x0d

 116 #define DM9KS_EPDRH        0x0e

 117 #define DM9KS_GPR            0x1f    /* General purpose register */

 118 #define DM9KS_CHIPR        0x2c

 119 #define DM9KS_TCR2        0x2d

 120 #define DM9KS_SMCR        0x2f     /* Special Mode Control Reg.*/

 121 #define DM9KS_ETXCSR    0x30    /* Early Transmit control/status Reg.*/

 122 #define    DM9KS_TCCR        0x31    /* Checksum cntrol Reg. */

 123 #define DM9KS_RCSR        0x32    /* Receive Checksum status Reg.*/

 124 #define DM9KS_BUSCR        0x38

 125 #define DM9KS_MRCMDX    0xf0

 126 #define DM9KS_MRCMD        0xf2

 127 #define DM9KS_MDRAL        0xf4

 128 #define DM9KS_MDRAH        0xf5

 129 #define DM9KS_MWCMD        0xf8

 130 #define DM9KS_MDWAL        0xfa

 131 #define DM9KS_MDWAH        0xfb

 132 #define DM9KS_TXPLL        0xfc

 133 #define DM9KS_TXPLH        0xfd

文章来源于: 电子工程世界 原文链接

本站所有转载文章系出于传递更多信息之目的,且明确注明来源,不希望被转载的媒体或个人可与我们联系,我们将立即进行删除处理。