当前位置:   article > 正文

Linux网络驱动学习

linux网络驱动

1.嵌入式网络硬件

嵌入式网络硬件一般分为两部分,MAC和PHY。一般SOC会内置MAC,PHY一般外接。

1.SOC内部没有MAC

如果SOC没有内置MAC,还可以通过外接MAC+PHY芯片来上网,for example,三星的开发板都是通过外置的 DM9000 来完成有线网络功能的。有些外置的网络芯片更强大,内部甚至集成了硬件 TCP/IP 协议栈,对外提供一个 SPI 接口,比如 W5500。

2.SOC 内部集成网络 MAC 外设

1.内部MAC与网络的关系

我们一般说某个 SOC 支持网络,说的就是他内部集成网络 MAC 外设,此时我们还需要外接一个网络PHY 芯片

一般常见的通用 SOC 都会集成网络 MAC 外设,比如 STM32F4/F7/H7 系列、NXP 的 I.MX系列.内部集成网络 MAC 的优点如下:

①、内部 MAC 外设会有专用的加速模块,比如专用的 DMA,加速网速数据的处理。

②、网速快,可以支持 10/100/1000M 网速。

③、外接 PHY 可选择性多,成本低

内部的 MAC 外设会通过 MII 或者 RMII 接口来连接外部的 PHY 芯片,MII/RMII 接口用来传输网络数据。另外主控需要配置或读取 PHY 芯片,也就是读写 PHY 的内部寄存器,所以还需要一个控制接口,叫做 MIDO,MDIO 很类似 IIC,也是两根线,一根数据线叫做 MDIO,一根时钟线叫做 MDC.

2.MAC读取外部数据(PHY)的接口

1. MII/RMII 接口

MII 全称是 Media Independent Interface,直译过来就是介质独立接口,它是 IEEE-802.3 定

义的以太网标准接口,MII 接口用于以太网 MAC 连接 PHY 芯片.

2.RMII 接口

RMII 全称是 Reduced Media Independent Interface,翻译过来就是精简的介质独立接口,也

就是 MII 接口的精简版本

dist:

REF_CLK:参考时钟,由外部时钟源提供, 频率为 50MHz。这里与 MII 不同,MII 的接

收和发送时钟是独立分开的,而且都是由 PHY 芯片提供的

3.MDIO 接口

MDIO 全称是 Management Data Input/Output.是一个简单的两线串行接口,一根 MDIO 数据线,一根 MDC 时钟线。驱动程序可以通过 MDIO 和MDC 这两根线访问 PHY 芯片的任意一个寄存器。

MDIO 接口支持多达 32 个 PHY同一时刻内只能对一个 PHY 进行操作,那么如何区分这 32 个 PHY 芯片呢?和 IIC 一样,使用器件地址即可

同一 MDIO 接口下的所有 PHY 芯片,其器件地址不能冲突,必须保证唯一,具体器件地址值要查阅相应的 PHY 数据手册。

4.RJ45 接口

网络设备是通过网线连接起来的,插入网线的叫做 RJ45 座。如图所示。

RJ45 座要与 PHY 芯片连接在一起,但是中间需要一个网络变压器,网络变压器用于隔离

以及滤波等,网络变压器也是一个芯片,如图

但是现在很多 RJ45 座子内部已经集成了网络变压器,比如正点原子 ALPHA 开发板所使HR911105A 就是内置网络变压器的 RJ45 座。内置网络变压器的 RJ45 座和不内置的引脚一样,但是一般不内置RJ45 座会短一点。

RJ45 座子上一般有两个灯,一个黄色(橙色),一个绿色,绿色亮的话表示网络连接正常,黄色闪烁的话说明当前正在进行网络通信。这两个灯由 PHY 芯片控制,PHY 芯片会有两个引脚来连接 RJ45 座上的这两个灯。内部 MAC+外部 PHY+RJ45 座(内置网络变压器)就组成了一个完整的嵌入式网络接口硬件。

3.PHY芯片

PHY 是 IEEE 802.3 规定的一个标准模块,SOC可以对PHY进行读取或配置相关状态。PHY 芯片寄存器地址空间为 5 位,地址 0~31 共 32 个寄存器,IEEE 定义了 0~15 这 16 个寄存器的功能,16~31 这 16 个寄存器由厂商自行实现。前16个寄存器是通用的。但是也有很多厂商采用分页技术来扩展寄存器地址空间,以求定义更多的寄存器。因此 Linux 内核的通用 PHY 驱动就无法驱动这些特色功能了,这个时候就需要 PHY 厂商提供相应的驱动源码。

1. LAN8720A 详解(PHY芯片)

开发板所使用的芯片,PHY芯片都符合 IEEE 802.3标准,所以相同的配置都一样。需要学习到是网络硬件配置相关的寄存器如何配置。

  • LAN8720A 是低功耗的 10/100M 单以太网 PHY 层芯片,
  • LAN8720A 支持通过 RMII 接口与以太网 MAC 层通信,内置 10-BASE-T/100BASE-TX 全双工传输模块,支持10Mbps 和 100Mbps。
  • LAN8720A 可以通过自协商的方式选择与目的主机最佳的连接方式(速度和双工模式)。支持 HP Auto-MDIX 自动翻转功能,无需更换网线即可将连接更改为直连或交叉连接。

2.LAN8720A 中断管理

  • LAN8720A 的器件管理接口支持非 IEEE 802.3 规范的中断功能当一个中断事件发生并且相应事件的中断位使能,LAN8720A 就会在 nINT(14 脚)产生一个低电平有效的中断信号。
  • LAN8720A 的中断系统提供两种中断模式:主中断模式和复用中断模式主中断模式是默认中断模式,LAN8720A 上电或复位后就工作在主中断模式,当模式控制/状态寄存器(十进制地址为 17)的 ALTINT 位为 0 时 LAN8720A 工作在主模式,当 ALTINT 位为 1 时工作在复用中断模式。正点原子的 ALPHA 开发板虽然讲 LAN8720A 的中断引脚连接到了 I.MX6ULL 上,但是并没有使用中断功能,关于中断的具体用法可以参考 LAN8720A 数据手册的 29~30 页。

3.PHY 地址设置

  • MAC 层通过 MDIO/MDC 总线对 PHY 进行读写操作,MDIO 最多可以控制 32 个 PHY 芯片,通过不同的 PHY 芯片地址来对不同的 PHY 操作。
  • LAN8720A 通过设置 RXER/PHYAD0引脚来设置其 PHY 地址,默认情况下为 0(下拉),上拉为1.
  • 正点原子 ALPHA 开发板的 ENET1 网络的 LAN8720A 上的 RXER/PHYAD0 引脚为默认状态(原理图上有个 10K 下拉,但是没有焊接),因此 ENET1 上的 LAN8720A 地址为 0。ENET2网络上的 LAN8720A 上的 RXER/PHYAD0 引脚接了个 10K 上拉电阻,因此 ENET2 上的LAN8720A 地址为 1。

4.nINT/REFCLKO 配置

nINTSEL 引脚(2 号引脚)用于设置 nINT/REFCLKO 引脚(14 号引脚)的功能。有两种可选工作模式,

正点原子的 ALPHA 开发板工作在 REF_CLK In 模式下,因此需要外部 50MHz时钟信号,I.MX6ULL 有专用的网络时钟引脚,因此 ALPHA 开发板是通过 I.MX6ULL 的ENET1_REF_CLK 和 ENET2_REF_CLK 这两个网络时钟引脚来为 LAN8720A 提供 50MHz 的时钟。

5.LAN8720A 内部寄存器

需要配置的最基本的寄存器。

  1. BCR(Basic Control Rgsister)寄存器 配置 PHY 芯片,重点就是配置 BCR 寄存器,
  2. BSR(Basic Status Register)寄存器 通过读取 BSR寄存器的值我们可以得到当前的连接速度、双工状态和连接状态等。
  3. PHY ID 寄存器 1 和 ID 寄存器 2 IEEE 规定了一叫做 OUI 的 ID组成方式,全称是 Organizationally Unique Identifier,OUI 一共 32 位,分为三部分:22 位的 ID+6位厂商型号 ID+4 位厂商版本 ID
  4. 特殊控制/状态寄存器 我们关心的是 bit2~bit4 这三位,因为通过这 3 位来确定连接的状态和速度.

2.Linux网络驱动框架

1. net_device 结构体

Linux 内核使用 net_device 结构体表示一个具体的网络设备,net_device 是整个网络驱动的灵魂。网络驱动的核心就是初始化 net_device 结构体中的各个成员变量,然后将初始化完成以后net_device 注到Linux 内核中。net_device 结构体定义在 include/linux/netdevice.h 中。

其中一些关键的成员变量含义:

  • name 是网络设备的名字。
  • mem_end 是共享内存结束地址。
  • mem_start 是共享内存起始地址。
  • base_addr 是网络设备 I/O 地址。
  • irq 是网络设备的中断号
  • dev_list 是全局网络设备列表。
  • napi_list 是 napi 网络设备的列表入口。
  • unreg_list 是注销(unregister)的网络设备列表入口。
  • close_list 是关闭的网络设备列表入口。
  • netdev_ops 是网络设备的操作集函数,包含了一系列的网络设备操作回调函数,类似字符设备中的 file_operations
  • ethtool_ops 是网络管理工具相关函数集,用户空间网络管理工具会调用此结构体中的相关函数获取网卡状态或者配置网卡
  • header_ops 是头部的相关操作函数集,比如创建、解析、缓冲等
  • flags 是网络接口标志,标志类型定义在 include/uapi/linux/if.h 文件中,为一个枚举类型
  • if_port 指定接口的端口类型,如果设备支持多端口的话就通过 if_port 来指定所使用的端口类型。可选的端口类型定义在 include/uapi/linux/netdevice.h 中
  • dma 是网络设备所使用的 DMA 通道,不是所有的设备都会用到 DMA。
  • mtu 是网络最大传输单元,为 1500。
  • type 用于指定 ARP 模块的类型,以太网的 ARP 接口为 ARPHRD_ETHER,Linux内核所支持的 ARP 协议定义在 include/uapi/linux/if_arp.h 中
  • perm_addr 是永久的硬件地址,如果某个网卡设备有永久的硬件地址,那么就会填充 perm_addr。
  • addr_len 是硬件地址长度。
  • last_rx 是最后接收的数据包时间戳,记录的是 jiffies。
  • dev_addr 也是硬件地址,是当前分配的 MAC 地址,可以通过软件修改
  • _rx 是接收队列。
  • num_rx_queues 是接收队列数量,在调用 register_netdev 注册网络设备的时候会分配指定数量的接收队列。
  • real_num_rx_queues 是当前活动的队列数量
  • _tx 是发送队列。
  • num_tx_queues 是发送队列数量,通过 alloc_netdev_mq 函数分配指定数量的发送队列
  • real_num_tx_queues 是当前有效的发送队列数量。
  • trans_start 是最后的数据包发送的时间戳,记录的是 jiffies。
  • phydev 是对应的 PHY 设备

2. 申请、删除、注册、注销net_device

2.1编写网络驱动的时候首先要申请 net_device,使用 alloc_netdev 函数

  1. #define alloc_netdev(sizeof_priv, name, name_assign_type, setup) \
  2. alloc_netdev_mqs(sizeof_priv, name, name_assign_type, setup, 1, 1)
  3. struct net_device * alloc_netdev_mqs (
  4. int sizeof_priv, //私有数据块大小
  5. const char *name, //设备名称
  6. void (*setup) (struct net_device *)) //回调函数
  7. unsigned int txqs, //发送队列数量
  8. unsigned int rxqs //接收队列数量
  9. );

事实上网络设备有多种,Linux 内核内核支持的网络接口有很多,比如光纤分布式数据接口(FDDI)、以太网设备(Ethernet)、红外数据接口(InDA)、高性能并行接口(HPPI)、CAN 网络等。内核针对不同的网络设备在 alloc_netdev 的基础上提供了一层封装,比如我们本章讲解的以太网,针对以太网封装的 net_device 申请函数是 alloc_etherdev和,这也是一个宏,内容如下

  1. #define alloc_etherdev(sizeof_priv) alloc_etherdev_mq(sizeof_priv, 1)
  2. #define alloc_etherdev_mq(sizeof_priv, count) alloc_etherdev_mqs(sizeof_priv, count, count)
  3. struct net_device *alloc_etherdev_mqs(int sizeof_priv,unsigned int txqs,unsigned int rxqs){
  4. return alloc_netdev_mqs(
  5. sizeof_priv,
  6. "eth%d", //网卡名称
  7. NET_NAME_UNKNOWN,
  8. ether_setup, //同样的,这里设置了以太网的 setup 函数为 ether_setup,不同的网络设备其 setup函数不同,比如 CAN 网络里面 setup 函数就是 can_setup。
  9. txqs,
  10. rxqs
  11. );
  12. }

其中,ether_setup 函数会对 net_device 做初步的初始化

  1. /**
  2. * ether_setup - setup Ethernet network device
  3. * @dev: network device
  4. *
  5. * Fill in the fields of the device structure with Ethernet-generic values.
  6. */
  7. void ether_setup(struct net_device *dev)
  8. {
  9. dev->header_ops = &eth_header_ops;
  10. dev->type = ARPHRD_ETHER;
  11. dev->hard_header_len = ETH_HLEN;
  12. dev->mtu = ETH_DATA_LEN;
  13. dev->addr_len = ETH_ALEN;
  14. dev->tx_queue_len = 1000; /* Ethernet wants good queues */
  15. dev->flags = IFF_BROADCAST|IFF_MULTICAST;
  16. dev->priv_flags |= IFF_TX_SKB_SHARING;
  17. eth_broadcast_addr(dev->broadcast);
  18. }

2.2删除net_device

void free_netdev(struct net_device *dev)

2.3 注册net_device

net_device 申请并初始化完成以后就需要向内核注册 net_device,要用到函数 register_netdev

int register_netdev(struct net_device *dev)

2.4注销net_device

void unregister_netdev(struct net_device *dev)

3. net_device结构体中的成员net_device_ops结构体

3.1net_device_ops结构体

net_device 有个非常重要的成员变量:netdev_ops,为 net_device_ops 结构体指针类型,这就是网络设备的操作集。net_device_ops 结构体定义在 include/linux/netdevice.h 文件中

net_device_ops 结构体里面都是一些以“ndo_”开头的函数,这些函数就需要网络驱动编写人员去实现,不需要全部都实现,根据实际驱动情况实现其中一部分即可。

You can learn what they mean from their comments(annotation)!

  1. * This structure defines the management hooks for network devices.
  2. * The following hooks can be defined; unless noted otherwise, they are
  3. * optional and can be filled with a null pointer.
  4. *
  5. * int (*ndo_init)(struct net_device *dev);
  6. * This function is called once when network device is registered.
  7. * The network device can use this to any late stage initializaton
  8. * or semantic validattion. It can fail with an error code which will
  9. * be propogated back to register_netdev
  10. *
  11. * void (*ndo_uninit)(struct net_device *dev);
  12. * This function is called when device is unregistered or when registration
  13. * fails. It is not called if init fails.
  14. *
  15. * int (*ndo_open)(struct net_device *dev);
  16. * This function is called when network device transistions to the up
  17. * state.
  18. *
  19. * int (*ndo_stop)(struct net_device *dev);
  20. * This function is called when network device transistions to the down
  21. * state.
  22. * netdev_tx_t (*ndo_start_xmit)(struct sk_buff *skb,
  23. * struct net_device *dev);
  24. * Called when a packet needs to be transmitted.
  25. * Returns NETDEV_TX_OK. Can return NETDEV_TX_BUSY, but you should stop
  26. * the queue before that can happen; it's for obsolete devices and weird
  27. * corner cases, but the stack really does a non-trivial amount
  28. * of useless work if you return NETDEV_TX_BUSY.
  29. * (can also return NETDEV_TX_LOCKED iff NETIF_F_LLTX)
  30. * Required can not be NULL.
  31. /*
  32. ndo_start_xmit 函数:
  33. 当需要发送数据的时候此函数就会执行,此函数有一个参数
  34. 为 sk_buff 结构体指针,sk_buff 结构体在 Linux 的网络驱动中非常重要,sk_buff 保存了上层传
  35. 递给网络驱动层的数据。也就是说,要发送出去的数据都存在了 sk_buff 中,关于 sk_buff 稍后
  36. 会做详细的讲解。如果发送成功的话此函数返回 NETDEV_TX_OK,如果发送失败了就返回
  37. NETDEV_TX_BUSY,如果发送失败了我们就需要停止队列
  38. */

一些重要的设备操作函数:

  • ndo_select_queue 函数,当设备支持多传输队列的时候选择使用哪个队列
  • ndo_set_rx_mode 函数,此函数用于改变地址过滤列表,根据 net_device 的 flags成员变量来设置 SOC 的网络外设寄存器。比如 flags 可能为 IFF_PROMISC、IFF_ALLMULTI 或IFF_MULTICAST,分别表示混杂模式、单播模式或多播模式。
  • ndo_set_mac_address 函数,此函数用于修改网卡的 MAC 地址,设置 net_device的 dev_addr 成员变量,并且将 MAC 地址写入到网络外设的硬件寄存器中
  • ndo_validate_addr 函数,验证 MAC 地址是否合法,也即是验证 net_device 的dev_addr 中的 MAC 地址是否合法,直接调用 is_valid_ether_addr 函数。
  • ndo_do_ioctl 函数,用户程序调用 ioctl 的时候此函数就会执行,比如 PHY 芯片相关的命令操作,一般会直接调用 phy_mii_ioctl 函数。
  • ndo_change_mtu 函数,更改 MTU 大小。
  • ndo_tx_timeout 函数,当发送超时的时候产生会执行,一般都是网络出问题了导致发送超时。一般可能会重启 MAC 和 PHY,重新开始数据发送等
  • ndo_poll_controller 函数,使用查询方式来处理网卡数据的收发。
  • ndo_set_features 函数,修改 net_device 的 features 属性,设置相应的硬件属性。

3.2 网络数据发送与接收机制

其中,一个非常重要的数据结构 sk_buff 结构体。

网络是分层的,对于应用层而言不用关系具体的底层是如何工作的,只需要按照协议将要发送或接收的数据打包好即可。打包好以后都通过 dev_queue_xmit 函数将数据发送出去,接收数据的话使用 netif_rx 函数即可,我们依次来看一下这两个函数。

1.dev_queue_xmit 函数

此函数用于将网络数据发送出去,函数定义在 include/linux/netdevice.h 中

static inline int dev_queue_xmit(struct sk_buff *skb)

skb:要发送的数据,这是一个 sk_buff 结构体指针,sk_buff 是 Linux 网络驱动中一个非常重要的结构体,网络数据就是以 sk_buff 保存的,各个协议层在 sk_buff 中添加自己的协议头,最终由底层驱动将 sk_buff 中的数据发送出去。网络数据的接收过程恰好相反,网络底层驱动将接收到的原始数据打包成 sk_buff,然后发送给上层协议,上层会取掉相应的头部,然后将最终的数据发送给用户。

dev_queue_xmit 函数最终是通过net_device_ops 操作集里面的 ndo_start_xmit 函数来完成最终发送了,ndo_start_xmit 就是网络驱动编写人员去实现的

dev_queue_xmit 执行流程

2.netif_rx函数

上层接收数据的话使用 netif_rx 函数,但是最原始的网络数据一般是通过轮询、中断 NAPI

的方式来接收。netif_rx 函数定义在 net/core/dev.c 中

  1. /*
  2. * @return: NET_RX_SUCCESS 成功,NET_RX_DROP 数据包丢弃
  3. */
  4. int netif_rx(struct sk_buff *skb)
3.sk_buff结构体

sk_buff 是 Linux 网络重要的数据结构,用于管理接收或发送数据包,sk_buff 结构体定义在 include/linux/skbuff.h 中

  1. /**
  2. * struct sk_buff - socket buffer
  3. * @next: Next buffer in list
  4. * @prev: Previous buffer in list
  5. * @tstamp: Time we arrived/left
  6. * @rbnode: RB tree node, alternative to next/prev for netem/tcp
  7. * @sk: Socket we are owned by
  8. * @dev: Device we arrived on/are leaving by
  9. * @cb: Control buffer. Free for use by every layer. Put private vars here
  10. * @_skb_refdst: destination entry (with norefcount bit)
  11. * @sp: the security path, used for xfrm
  12. * @len: Length of actual data
  13. * @data_len: Data length
  14. * @mac_len: Length of link layer header
  15. * @hdr_len: writable header length of cloned skb
  16. * @csum: Checksum (must include start/offset pair)
  17. * @csum_start: Offset from skb->head where checksumming should start
  18. * @csum_offset: Offset from csum_start where checksum should be stored
  19. * @priority: Packet queueing priority
  20. * @ignore_df: allow local fragmentation
  21. * @cloned: Head may be cloned (check refcnt to be sure)
  22. * @ip_summed: Driver fed us an IP checksum
  23. * @nohdr: Payload reference only, must not modify header
  24. * @nfctinfo: Relationship of this skb to the connection
  25. * @pkt_type: Packet class
  26. * @fclone: skbuff clone status
  27. * @ipvs_property: skbuff is owned by ipvs
  28. * @peeked: this packet has been seen already, so stats have been
  29. * done for it, don't do them again
  30. * @nf_trace: netfilter packet trace flag
  31. * @protocol: Packet protocol from driver
  32. * @destructor: Destruct function
  33. * @nfct: Associated connection, if any
  34. * @nf_bridge: Saved data about a bridged frame - see br_netfilter.c
  35. * @skb_iif: ifindex of device we arrived on
  36. * @tc_index: Traffic control index
  37. * @tc_verd: traffic control verdict
  38. * @hash: the packet hash
  39. * @queue_mapping: Queue mapping for multiqueue devices
  40. * @xmit_more: More SKBs are pending for this queue
  41. * @ndisc_nodetype: router type (from link layer)
  42. * @ooo_okay: allow the mapping of a socket to a queue to be changed
  43. * @l4_hash: indicate hash is a canonical 4-tuple hash over transport
  44. * ports.
  45. * @sw_hash: indicates hash was computed in software stack
  46. * @wifi_acked_valid: wifi_acked was set
  47. * @wifi_acked: whether frame was acked on wifi or not
  48. * @no_fcs: Request NIC to treat last 4 bytes as Ethernet FCS
  49. * @napi_id: id of the NAPI struct this skb came from
  50. * @secmark: security marking
  51. * @mark: Generic packet mark
  52. * @vlan_proto: vlan encapsulation protocol
  53. * @vlan_tci: vlan tag control information
  54. * @inner_protocol: Protocol (encapsulation)
  55. * @inner_transport_header: Inner transport layer header (encapsulation)
  56. * @inner_network_header: Network layer header (encapsulation)
  57. * @inner_mac_header: Link layer header (encapsulation)
  58. * @transport_header: Transport layer header
  59. * @network_header: Network layer header
  60. * @mac_header: Link layer header
  61. * @tail: Tail pointer
  62. * @end: End pointer
  63. * @head: Head of buffer
  64. * @data: Data head pointer
  65. * @truesize: Buffer size
  66. * @users: User count - see {datagram,tcp}.c
  67. */
  68. struct sk_buff {
  69. union {
  70. struct {
  71. /* These two members must be first. */
  72. struct sk_buff *next;
  73. struct sk_buff *prev;
  74. union {
  75. ktime_t tstamp;
  76. struct skb_mstamp skb_mstamp;
  77. };
  78. };
  79. struct rb_node rbnode; /* used in netem & tcp stack */
  80. };
  81. struct sock *sk;
  82. struct net_device *dev;
  83. /*
  84. * This is the control buffer. It is free to use for every
  85. * layer. Please put your private variables there. If you
  86. * want to keep them across layers you have to do a skb_clone()
  87. * first. This is owned by whoever has the skb queued ATM.
  88. */
  89. char cb[48] __aligned(8);
  90. unsigned long _skb_refdst;
  91. void (*destructor)(struct sk_buff *skb);
  92. #ifdef CONFIG_XFRM
  93. struct sec_path *sp;
  94. #endif
  95. #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
  96. struct nf_conntrack *nfct;
  97. #endif
  98. #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
  99. struct nf_bridge_info *nf_bridge;
  100. #endif
  101. unsigned int len,
  102. data_len;
  103. __u16 mac_len,
  104. hdr_len;
  105. /* Following fields are _not_ copied in __copy_skb_header()
  106. * Note that queue_mapping is here mostly to fill a hole.
  107. */
  108. kmemcheck_bitfield_begin(flags1);
  109. __u16 queue_mapping;
  110. __u8 cloned:1,
  111. nohdr:1,
  112. fclone:2,
  113. peeked:1,
  114. head_frag:1,
  115. xmit_more:1;
  116. /* one bit hole */
  117. kmemcheck_bitfield_end(flags1);
  118. /* fields enclosed in headers_start/headers_end are copied
  119. * using a single memcpy() in __copy_skb_header()
  120. */
  121. /* private: */
  122. __u32 headers_start[0];
  123. /* public: */
  124. /* if you move pkt_type around you also must adapt those constants */
  125. #ifdef __BIG_ENDIAN_BITFIELD
  126. #define PKT_TYPE_MAX (7 << 5)
  127. #else
  128. #define PKT_TYPE_MAX 7
  129. #endif
  130. #define PKT_TYPE_OFFSET() offsetof(struct sk_buff, __pkt_type_offset)
  131. __u8 __pkt_type_offset[0];
  132. __u8 pkt_type:3;
  133. __u8 pfmemalloc:1;
  134. __u8 ignore_df:1;
  135. __u8 nfctinfo:3;
  136. __u8 nf_trace:1;
  137. __u8 ip_summed:2;
  138. __u8 ooo_okay:1;
  139. __u8 l4_hash:1;
  140. __u8 sw_hash:1;
  141. __u8 wifi_acked_valid:1;
  142. __u8 wifi_acked:1;
  143. __u8 no_fcs:1;
  144. /* Indicates the inner headers are valid in the skbuff. */
  145. __u8 encapsulation:1;
  146. __u8 encap_hdr_csum:1;
  147. __u8 csum_valid:1;
  148. __u8 csum_complete_sw:1;
  149. __u8 csum_level:2;
  150. __u8 csum_bad:1;
  151. #ifdef CONFIG_IPV6_NDISC_NODETYPE
  152. __u8 ndisc_nodetype:2;
  153. #endif
  154. __u8 ipvs_property:1;
  155. __u8 inner_protocol_type:1;
  156. __u8 remcsum_offload:1;
  157. /* 3 or 5 bit hole */
  158. #ifdef CONFIG_NET_SCHED
  159. __u16 tc_index; /* traffic control index */
  160. #ifdef CONFIG_NET_CLS_ACT
  161. __u16 tc_verd; /* traffic control verdict */
  162. #endif
  163. #endif
  164. union {
  165. __wsum csum;
  166. struct {
  167. __u16 csum_start;
  168. __u16 csum_offset;
  169. };
  170. };
  171. __u32 priority;
  172. int skb_iif;
  173. __u32 hash;
  174. __be16 vlan_proto;
  175. __u16 vlan_tci;
  176. #if defined(CONFIG_NET_RX_BUSY_POLL) || defined(CONFIG_XPS)
  177. union {
  178. unsigned int napi_id;
  179. unsigned int sender_cpu;
  180. };
  181. #endif
  182. #ifdef CONFIG_NETWORK_SECMARK
  183. __u32 secmark;
  184. #endif
  185. union {
  186. __u32 mark;
  187. __u32 reserved_tailroom;
  188. };
  189. union {
  190. __be16 inner_protocol;
  191. __u8 inner_ipproto;
  192. };
  193. __u16 inner_transport_header;
  194. __u16 inner_network_header;
  195. __u16 inner_mac_header;
  196. __be16 protocol;
  197. __u16 transport_header;
  198. __u16 network_header;
  199. __u16 mac_header;
  200. /* private: */
  201. __u32 headers_end[0];
  202. /* public: */
  203. /* These elements must be at the end, see alloc_skb() for details. */
  204. sk_buff_data_t tail;
  205. sk_buff_data_t end;
  206. unsigned char *head,
  207. *data;
  208. unsigned int truesize;
  209. atomic_t users;
  210. };

内核针对sk_buff提供了一系列的API

3.1分配sk_buff

要使用 sk_buff 必须先分配,首先来看一下 alloc_skb 这个函数,此函数定义在include/linux/skbuff.h 中

  1. /*
  2. size:要分配的大小,也就是 skb 数据段大小
  3. priority:为 GFP MASK 宏,比如 GFP_KERNEL、GFP_ATOMIC 等。
  4. 返回值:分配成功的话就返回申请到的 sk_buff 首地址,失败的话就返回 NULL
  5. */
  6. static inline struct sk_buff *alloc_skb(unsigned int size,gfp_t priority)

在网络设备驱动中常常使用 netdev_alloc_skb 来为某个设备申请一个用于接收的 skb_buff,

此函数也定义在 include/linux/skbuff.h 中

  1. /*
  2. dev:要给哪个设备分配 sk_buff。
  3. length:要分配的大小。
  4. 返回值:分配成功的话就返回申请到的 sk_buff 首地址,失败的话就返回 NULL
  5. */
  6. static inline struct sk_buff *netdev_alloc_skb(struct net_device *dev,
  7. unsigned int length)
3.2 释放sk_buff

当使用完成以后就要释放掉 sk_buff,释放函数可以使用 kfree_skb,函数定义include/linux/skbuff.c

void kfree_skb(struct sk_buff *skb)

对于网络设备而言最好使用如下所示释放函数:

void dev_kfree_skb (struct sk_buff *skb)
3.3 skb_put、skb_push、sbk_pull 和 skb_reserve

这四个函数用于变更 sk_buff.

  • skb_put 函数,此函数用于在尾部扩展 skb_buff的数据区,也就将 skb_buff 的 tail 后移 n 个字节,从而导致 skb_buff 的 len 增加 n 个字节
  1. /*
  2. skb:要操作的 sk_buff。
  3. len:要增加多少个字节。
  4. 返回值:扩展出来的那一段数据区首地址。
  5. */
  6. unsigned char *skb_put(struct sk_buff *skb, unsigned int len)

skb_put 操作之前和操作之后的数据区

  • skb_push 函数用于在头部扩展 skb_buff 的数据区
  1. /*
  2. skb:要操作的 sk_buff。
  3. len:要增加多少个字节。
  4. 返回值:扩展完成以后新的数据区首地址。
  5. */
  6. unsigned char *skb_push(struct sk_buff *skb, unsigned int len)

skb_push 函数操作前后对比

  • sbk_pull 函数用于从 sk_buff 的数据区起始位置删除数据
  1. /*
  2. skb:要操作的 sk_buff。
  3. len:要删除的字节数。
  4. 返回值:删除以后新的数据区首地址
  5. */
  6. unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)

skb_pull 函数操作前后对比

  • sbk_reserve 函数用于调整缓冲区的头部大小,方法很简单将 skb_buff 的 data 和 tail 同时后移 n 个字节即可
  1. /*
  2. skb:要操作的 sk_buff。
  3. len:要增加的缓冲区头部大小。
  4. */
  5. static inline void skb_reserve(struct sk_buff *skb, int len)

4. 网络 NAPI 处理机制

  • Linux 里面的网络数据接收也有轮询和中断两种,中断的好处就是响应快,数据量小的时候处理及时,速度快,但是一旦当数据量大,而且都是短帧的时候会导致中断频繁发生,消耗大量的 CPU 处理时间在中断自身处理上。轮询恰好相反,响应没有中断及时,但是在处理大量数据的时候不需要消耗过多的 CPU 处理时间。
  • Linux 在这两个处理方式的基础上提出了另外一种网络数据接收的处理方法:NAPI(New API),NAPI 是一种高效的网络处理技术。
  • NAPI 的核心思想就是不全部采用中断来读取网络数据,而是采用中断来唤醒数据接收服务程序,在接收服务程序中采用 POLL 的方法来轮询处理数据。
  • 这种方法的好处就是可以提高短数据包的接收效率,减少中断处理的时间。

如何在驱动中使用NAIP?

Linux 内核使用结构体 napi_struct 表示 NAPI,在使用 NAPI 之前要先初始化一个 napi_struct 实例。

  1. /*
  2. * Structure for NAPI scheduling similar to tasklet but with weighting
  3. */
  4. struct napi_struct {
  5. /* The poll_list must only be managed by the entity which
  6. * changes the state of the NAPI_STATE_SCHED bit. This means
  7. * whoever atomically sets that bit can add this napi_struct
  8. * to the per-cpu poll_list, and whoever clears that bit
  9. * can remove from the list right before clearing the bit.
  10. */
  11. struct list_head poll_list;
  12. unsigned long state;
  13. int weight;
  14. unsigned int gro_count;
  15. int (*poll)(struct napi_struct *, int);
  16. #ifdef CONFIG_NETPOLL
  17. spinlock_t poll_lock;
  18. int poll_owner;
  19. #endif
  20. struct net_device *dev;
  21. struct sk_buff *gro_list;
  22. struct sk_buff *skb;
  23. struct hrtimer timer;
  24. struct list_head dev_list;
  25. struct hlist_node napi_hash_node;
  26. unsigned int napi_id;
  27. };

1.初始化NAPI

  1. /*
  2. dev:每个 NAPI 必须关联一个网络设备,此参数指定 NAPI 要关联的网络设备。
  3. napi:要初始化的 NAPI 实例。
  4. poll:NAPI 所使用的轮询函数,非常重要,一般在此轮询函数中完成网络数据接收的工作。
  5. weight:NAPI 默认权重(weight),一般为 NAPI_POLL_WEIGHT。/*
  6. */
  7. void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
  8. int (*poll)(struct napi_struct *, int), int weight)
  9. {
  10. INIT_LIST_HEAD(&napi->poll_list);
  11. hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
  12. napi->timer.function = napi_watchdog;
  13. napi->gro_count = 0;
  14. napi->gro_list = NULL;
  15. napi->skb = NULL;
  16. napi->poll = poll;
  17. if (weight > NAPI_POLL_WEIGHT)
  18. pr_err_once("netif_napi_add() called with weight %d on device %s\n",
  19. weight, dev->name);
  20. napi->weight = weight;
  21. list_add(&napi->dev_list, &dev->napi_list);
  22. napi->dev = dev;
  23. #ifdef CONFIG_NETPOLL
  24. spin_lock_init(&napi->poll_lock);
  25. napi->poll_owner = -1;
  26. #endif
  27. set_bit(NAPI_STATE_SCHED, &napi->state);
  28. }

2.删除NAPI

  1. void netif_napi_del(struct napi_struct *napi)
  2. {
  3. list_del_init(&napi->dev_list);
  4. napi_free_frags(napi);
  5. kfree_skb_list(napi->gro_list);
  6. napi->gro_list = NULL;
  7. napi->gro_count = 0;
  8. }

3.使能 NAPI

  1. /**
  2. * napi_enable - enable NAPI scheduling
  3. * @n: napi context
  4. *
  5. * Resume NAPI from being scheduled on this context.
  6. * Must be paired with napi_disable.
  7. */
  8. static inline void napi_enable(struct napi_struct *n)
  9. {
  10. BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
  11. smp_mb__before_atomic();
  12. clear_bit(NAPI_STATE_SCHED, &n->state);
  13. }

4.关闭 NAPI

  1. void napi_disable(struct napi_struct *n)
  2. {
  3. might_sleep();
  4. set_bit(NAPI_STATE_DISABLE, &n->state);
  5. while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
  6. msleep(1);
  7. hrtimer_cancel(&n->timer);
  8. clear_bit(NAPI_STATE_DISABLE, &n->state);
  9. }

5.检查 NAPI 是否可以进行调度

  1. /**
  2. * napi_schedule_prep - check if napi can be scheduled
  3. * @n: napi context
  4. *
  5. * Test if NAPI routine is already running, and if not mark
  6. * it as running. This is used as a condition variable
  7. * insure only one NAPI poll instance runs. We also make
  8. * sure there is no pending NAPI disable.
  9. */
  10. static inline bool napi_schedule_prep(struct napi_struct *n)
  11. {
  12. return !napi_disable_pending(n) &&
  13. !test_and_set_bit(NAPI_STATE_SCHED, &n->state);
  14. }

6.NAPI 调度

  1. /**
  2. * __napi_schedule - schedule for receive
  3. * @n: entry to schedule
  4. *
  5. * The entry's receive function will be scheduled to run.
  6. * Consider using __napi_schedule_irqoff() if hard irqs are masked.
  7. */
  8. void __napi_schedule(struct napi_struct *n)
  9. {
  10. unsigned long flags;
  11. local_irq_save(flags);
  12. ____napi_schedule(this_cpu_ptr(&softnet_data), n);
  13. local_irq_restore(flags);
  14. }

我们也可以使用 napi_schedule 函数来一次完成 napi_schedule_prep 和__napi_schedule 这两

个函数的工作(5、6)

  1. /**
  2. * napi_schedule - schedule NAPI poll
  3. * @n: napi context
  4. *
  5. * Schedule NAPI poll routine to be called if it is not already
  6. * running.
  7. */
  8. static inline void napi_schedule(struct napi_struct *n)
  9. {
  10. if (napi_schedule_prep(n))
  11. __napi_schedule(n);
  12. }

7.NAPI 处理完成

NAPI 处理完成以后需要调用 napi_complete 函数来标记 NAPI 处理完成

  1. /**
  2. * napi_complete - NAPI processing complete
  3. * @n: napi context
  4. *
  5. * Mark NAPI processing as complete.
  6. * Consider using napi_complete_done() instead.
  7. */
  8. static inline void napi_complete(struct napi_struct *n)
  9. {
  10. return napi_complete_done(n, 0);
  11. }
  12. void napi_complete_done(struct napi_struct *n, int work_done)
  13. {
  14. unsigned long flags;
  15. /*
  16. * don't let napi dequeue from the cpu poll list
  17. * just in case its running on a different cpu
  18. */
  19. if (unlikely(test_bit(NAPI_STATE_NPSVC, &n->state)))
  20. return;
  21. if (n->gro_list) {
  22. unsigned long timeout = 0;
  23. if (work_done)
  24. timeout = n->dev->gro_flush_timeout;
  25. if (timeout)
  26. hrtimer_start(&n->timer, ns_to_ktime(timeout),
  27. HRTIMER_MODE_REL_PINNED);
  28. else
  29. napi_gro_flush(n, false);
  30. }
  31. if (likely(list_empty(&n->poll_list))) {
  32. WARN_ON_ONCE(!test_and_clear_bit(NAPI_STATE_SCHED, &n->state));
  33. } else {
  34. /* If n->poll_list is not empty, we need to mask irqs */
  35. local_irq_save(flags);
  36. __napi_complete(n);
  37. local_irq_restore(flags);
  38. }
  39. }

4. I.MX6ULL 网络驱动简介

1.修改设备树

根据I.MX6ULL 网络硬件设置相关的属性。NXP 的 I.MX 系 列 SOC 网 络 绑 定 文 档 为

Documentation/devicetree/bindings/net/fsl-fec.txt,此绑定文档描述了 I.MX 系列 SOC 网络设备树

节点的要求。

①、必要属性

  • compatible:这个肯定是必须的,一般是“fsl,<soc>-fec”,比如 I.MX6ULL 的 compatible 属性就是"fsl,imx6ul-fec",和"fsl,imx6q-fec"。
  • reg:SOC 网络外设寄存器地址范围。
  • interrupts:网络中断。
  • phy-mode:网络所使用的 PHY 接口模式,是 MII 还是 RMII。

②、可选属性

  • phy-reset-gpios:PHY 芯片的复位引脚。
  • phy-reset-duration:PHY 复位引脚复位持续时间,单位为毫秒。只有当设置了 phy-resetgpios 属性此属性才会有效,如果不设置此属性的话 PHY 芯片复位引脚的复位持续时间默认为1 毫秒,数值不能大于 1000 毫秒,大于 1000 毫秒的话就会强制设置为 1 毫秒。
  • phy-supply:PHY 芯片的电源调节。
  • phy-handle:连接到此网络设备的 PHY 芯片句柄。
  • fsl,num-tx-queues:此属性指定发送队列的数量,如果不指定的话默认为 1。
  • fsl,num-rx-queues:此属性指定接收队列的数量,如果不指定的话默认为 2。
  • fsl,magic-packet:此属性不用设置具体的值,直接将此属性名字写到设备树里面即可,表示支持硬件魔术帧唤醒。
  • fsl,wakeup_irq:此属性设置唤醒中断索引。
  • stop-mode:如果此属性存在的话表明 SOC 需要设置 GPR 位来请求停止模式。

③、可选子节点

  • mdio:可以设置名为“mdio”的子节点,此子节点用于指定网络外设所使用的 MDIO 总线,主要做为 PHY 节点的容器,也就是在 mdio 子节点下指定 PHY 相关的属性信息,具体信息可以参考 PHY 的绑定文档 Documentation/devicetree/bindings/net/phy.txt。

PHY 节点相关属性内容如下:

interrupts:中断属性,可以不需要。

interrupt-parent:中断控制器句柄,可以不需要。

reg:PHY 芯片地址,必须的!

  • compatible:兼容性列表,一般为“ethernet-phy-ieee802.3-c22”或“ethernet-phy-ieee802.3-c45”,分别对应 IEEE802.3 的 22 簇和 45 簇,默认是 22 簇。也可以设置为其他值,如果 PHY的 ID 不知道的话可以 compatible 属性可以设置为“ethernet-phy-idAAAA.BBBB”,AAAA 和BBBB 的含义如下:
    • AAAA:PHY 的 16 位 ID 寄存器 1 值,也就是 OUI 的 bit3~18,16 进制格式。
    • BBBB:PHY 的 16 位 ID 寄存器 2 值,也就是 OUI 的 bit19~24,16 进制格式。
  • max-speed:PHY 支持的最高速度,比如 10、100 或 1000。
  1. &fec1 {
  2. pinctrl-names = "default";
  3. pinctrl-0 = <&pinctrl_enet1
  4. &pinctrl_enet1_reset>;
  5. phy-mode = "rmii";
  6. phy-handle = <&ethphy0>;
  7. phy-reset-gpios = <&gpio5 7 GPIO_ACTIVE_LOW>;
  8. phy-reset-duration = <200>;
  9. status = "okay";
  10. };
  11. &fec2 {
  12. pinctrl-names = "default";
  13. pinctrl-0 = <&pinctrl_enet2
  14. &pinctrl_enet2_reset>;
  15. phy-mode = "rmii";
  16. phy-handle = <&ethphy1>;
  17. phy-reset-gpios = <&gpio5 8 GPIO_ACTIVE_LOW>;
  18. phy-reset-duration = <200>;
  19. status = "okay";
  20. mdio {
  21. #address-cells = <1>;
  22. #size-cells = <0>;
  23. ethphy0: ethernet-phy@0 {
  24. compatible = "ethernet-phy-ieee802.3-c22";
  25. reg = <0>;
  26. };
  27. ethphy1: ethernet-phy@1 {
  28. compatible = "ethernet-phy-ieee802.3-c22";
  29. reg = <1>;
  30. };
  31. };
  32. }

设备树中网络相关引脚的描述

  1. pinctrl_enet1: enet1grp {
  2. fsl,pins = <
  3. MX6UL_PAD_ENET1_RX_EN__ENET1_RX_EN 0x1b0b0
  4. MX6UL_PAD_ENET1_RX_ER__ENET1_RX_ER 0x1b0b0
  5. MX6UL_PAD_ENET1_RX_DATA0__ENET1_RDATA00 0x1b0b0
  6. MX6UL_PAD_ENET1_RX_DATA1__ENET1_RDATA01 0x1b0b0
  7. MX6UL_PAD_ENET1_TX_EN__ENET1_TX_EN 0x1b0b0
  8. MX6UL_PAD_ENET1_TX_DATA0__ENET1_TDATA00 0x1b0b0
  9. MX6UL_PAD_ENET1_TX_DATA1__ENET1_TDATA01 0x1b0b0
  10. MX6UL_PAD_ENET1_TX_CLK__ENET1_REF_CLK1 0x4001b009
  11. >;
  12. };
  13. pinctrl_enet2: enet2grp {
  14. fsl,pins = <
  15. MX6UL_PAD_GPIO1_IO07__ENET2_MDC 0x1b0b0
  16. MX6UL_PAD_GPIO1_IO06__ENET2_MDIO 0x1b0b0
  17. MX6UL_PAD_ENET2_RX_EN__ENET2_RX_EN 0x1b0b0
  18. MX6UL_PAD_ENET2_RX_ER__ENET2_RX_ER 0x1b0b0
  19. MX6UL_PAD_ENET2_RX_DATA0__ENET2_RDATA00 0x1b0b0
  20. MX6UL_PAD_ENET2_RX_DATA1__ENET2_RDATA01 0x1b0b0
  21. MX6UL_PAD_ENET2_TX_EN__ENET2_TX_EN 0x1b0b0
  22. MX6UL_PAD_ENET2_TX_DATA0__ENET2_TDATA00 0x1b0b0
  23. MX6UL_PAD_ENET2_TX_DATA1__ENET2_TDATA01 0x1b0b0
  24. MX6UL_PAD_ENET2_TX_CLK__ENET2_REF_CLK2 0x4001b009
  25. >;
  26. };
  27. /*enet1 reset zuozhongkai*/
  28. pinctrl_enet1_reset: enet1resetgrp {
  29. fsl,pins = <
  30. /* used for enet1 reset */
  31. MX6ULL_PAD_SNVS_TAMPER7__GPIO5_IO07 0x10B0
  32. >;
  33. };
  34. /*enet2 reset zuozhongkai*/
  35. pinctrl_enet2_reset: enet2resetgrp {
  36. fsl,pins = <
  37. /* used for enet2 reset */
  38. MX6ULL_PAD_SNVS_TAMPER8__GPIO5_IO08 0x10B0
  39. >;
  40. };

2.驱动源码简析

对于 I.MX6ULL 而言网络驱动主要分两部分:I.MX6ULL 网络外设驱动以及 PHY 芯片驱动网络外设驱动是 NXP 编写的,PHY 芯片有通用驱动文件,有些 PHY 芯片厂商还会针对自己的芯片编写对应的 PHY 驱动。总体来说,SOC 内置网络 MAC+外置 PHY 芯片这种方案我们是不需要编写什么驱动的,基本可以直接使用。

2.1 NXP的I.IMX6ULL网络外设驱动核心

驱动文件为 drivers/net/ethernet/freescale/fec_main.c

匹配表包含“fsl,imx6ul-fec”,因此设备树和驱动匹配上之后操作函数就会执行

  1. static const struct of_device_id fec_dt_ids[] = {
  2. { .compatible = "fsl,imx25-fec", .data = &fec_devtype[IMX25_FEC], },
  3. { .compatible = "fsl,imx27-fec", .data = &fec_devtype[IMX27_FEC], },
  4. { .compatible = "fsl,imx28-fec", .data = &fec_devtype[IMX28_FEC], },
  5. { .compatible = "fsl,imx6q-fec", .data = &fec_devtype[IMX6Q_FEC], },
  6. { .compatible = "fsl,mvf600-fec", .data = &fec_devtype[MVF600_FEC], },
  7. { .compatible = "fsl,imx6sx-fec", .data = &fec_devtype[IMX6SX_FEC], },
  8. { .compatible = "fsl,imx6ul-fec", .data = &fec_devtype[IMX6UL_FEC], },
  9. { /* sentinel */ }
  10. };
  1. static struct platform_driver fec_driver = {
  2. .driver = {
  3. .name = DRIVER_NAME,
  4. .pm = &fec_pm_ops,
  5. .of_match_table = fec_dt_ids,
  6. },
  7. .id_table = fec_devtype,
  8. .probe = fec_probe,
  9. .remove = fec_drv_remove,
  10. };

fec_probe函数会完成net_device设备驱动注册,整个过程代码如下

  1. static int
  2. fec_probe(struct platform_device *pdev)
  3. {
  4. struct fec_enet_private *fep;
  5. struct fec_platform_data *pdata;
  6. struct net_device *ndev;
  7. int i, irq, ret = 0;
  8. struct resource *r;
  9. const struct of_device_id *of_id;
  10. static int dev_id;
  11. struct device_node *np = pdev->dev.of_node, *phy_node;
  12. int num_tx_qs;
  13. int num_rx_qs;
  14. void __iomem *IMX6U_ENET1_TX_CLK;
  15. void __iomem *IMX6U_ENET2_TX_CLK;
  16. IMX6U_ENET1_TX_CLK = ioremap(0x020E00DC, 4);
  17. writel(0x14, IMX6U_ENET1_TX_CLK);
  18. IMX6U_ENET2_TX_CLK = ioremap(0x020E00FC, 4);
  19. writel(0x14, IMX6U_ENET2_TX_CLK);
  20. /*获取设备树中的“fsl,num-tx-queues”和
  21. “fsl,num-rx-queues”这两个属性值,也就是发送队列和接收队列的大小,设备树中这两个属性
  22. 都设置为 1*/
  23. fec_enet_get_queue_num(pdev, &num_tx_qs, &num_rx_qs);
  24. /* Init network device 使用 alloc_etherdev_mqs 函数申请 net_device。*/
  25. ndev = alloc_etherdev_mqs(sizeof(struct fec_enet_private),
  26. num_tx_qs, num_rx_qs);
  27. if (!ndev)
  28. return -ENOMEM;
  29. SET_NETDEV_DEV(ndev, &pdev->dev);
  30. /* setup board info structure 获取 net_device 中私有数据内存首地址*/
  31. fep = netdev_priv(ndev);
  32. of_id = of_match_device(fec_dt_ids, &pdev->dev);
  33. if (of_id)
  34. pdev->id_entry = of_id->data;
  35. /*初始化网络设备结构体各个成员变量*/
  36. fep->quirks = pdev->id_entry->driver_data;
  37. fep->netdev = ndev;
  38. fep->num_rx_queues = num_rx_qs;
  39. fep->num_tx_queues = num_tx_qs;
  40. #if !defined(CONFIG_M5272)
  41. /* default enable pause frame auto negotiation */
  42. if (fep->quirks & FEC_QUIRK_HAS_GBIT)
  43. fep->pause_flag |= FEC_PAUSE_FLAG_AUTONEG;
  44. #endif
  45. /* Select default pin state */
  46. pinctrl_pm_select_default_state(&pdev->dev);
  47. /*获取设备树中 I.MX6ULL 网络外设(ENET)相关寄存器起始地址,ENET1 的寄存
  48. 器起始地址 0X02188000,ENET2 的寄存器起始地址 0X20B4000*/
  49. r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  50. /*行获取到的地址做虚拟地址转换,转换后的 ENET 虚拟寄存器起始地址
  51. 保存在 fep 的 hwp 成员中。*/
  52. fep->hwp = devm_ioremap_resource(&pdev->dev, r);
  53. if (IS_ERR(fep->hwp)) {
  54. ret = PTR_ERR(fep->hwp);
  55. goto failed_ioremap;
  56. }
  57. fep->pdev = pdev;
  58. fep->dev_id = dev_id++;
  59. platform_set_drvdata(pdev, ndev);
  60. /*解析设备树中关于 ENET 的停止模式属性值*/
  61. fec_enet_of_parse_stop_mode(pdev);
  62. /*从设备树查找“fsl,magic-packet”属性是否存在,如果存在的话就说明有魔术包,
  63. 有魔术包的话就将 fep 的 wol_flag 成员与 FEC_WOL_HAS_MAGIC_PACKET 进行或运算,也
  64. 就是在 wol_flag 中做登记,登记支持魔术包。*/
  65. if (of_get_property(np, "fsl,magic-packet", NULL))
  66. fep->wol_flag |= FEC_WOL_HAS_MAGIC_PACKET;
  67. /*获取“phy-handle”属性的值,phy-handle 属性指定了 I.MX6ULL 网络外设所对
  68. 应获取 PHY 的设备节点。在前面设备树中我们已经设置了,在MDIO节点下,
  69. 如果需要添加其它PHY设备,则在MDIO下添加该设备就好了*/
  70. phy_node = of_parse_phandle(np, "phy-handle", 0);
  71. if (!phy_node && of_phy_is_fixed_link(np)) {
  72. ret = of_phy_register_fixed_link(np);
  73. if (ret < 0) {
  74. dev_err(&pdev->dev,
  75. "broken fixed-link specification\n");
  76. goto failed_phy;
  77. }
  78. phy_node = of_node_get(np);
  79. }
  80. fep->phy_node = phy_node;
  81. /*获取 PHY 工作模式,函数 of_get_phy_mode 会读取属性 phy-mode 的值,”
  82. phymode”中保存了 PHY 的工作方式,即 PHY 是 RMII 还是 MII,IMX6ULL 中的 PHY 工作在RMII 模式*/
  83. ret = of_get_phy_mode(pdev->dev.of_node);
  84. if (ret < 0) {
  85. pdata = dev_get_platdata(&pdev->dev);
  86. if (pdata)
  87. fep->phy_interface = pdata->phy;
  88. else
  89. fep->phy_interface = PHY_INTERFACE_MODE_MII;
  90. } else {
  91. fep->phy_interface = ret;
  92. }
  93. /*分别获取时钟 ipg、ahb、enet_out、enet_clk_ref 和 ptp*/
  94. fep->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
  95. if (IS_ERR(fep->clk_ipg)) {
  96. ret = PTR_ERR(fep->clk_ipg);
  97. goto failed_clk;
  98. }
  99. fep->clk_ahb = devm_clk_get(&pdev->dev, "ahb");
  100. if (IS_ERR(fep->clk_ahb)) {
  101. ret = PTR_ERR(fep->clk_ahb);
  102. goto failed_clk;
  103. }
  104. fep->itr_clk_rate = clk_get_rate(fep->clk_ahb);
  105. /* enet_out is optional, depends on board */
  106. fep->clk_enet_out = devm_clk_get(&pdev->dev, "enet_out");
  107. if (IS_ERR(fep->clk_enet_out))
  108. fep->clk_enet_out = NULL;
  109. fep->ptp_clk_on = false;
  110. mutex_init(&fep->ptp_clk_mutex);
  111. /* clk_ref is optional, depends on board */
  112. fep->clk_ref = devm_clk_get(&pdev->dev, "enet_clk_ref");
  113. if (IS_ERR(fep->clk_ref))
  114. fep->clk_ref = NULL;
  115. fep->bufdesc_ex = fep->quirks & FEC_QUIRK_HAS_BUFDESC_EX;
  116. fep->clk_ptp = devm_clk_get(&pdev->dev, "ptp");
  117. if (IS_ERR(fep->clk_ptp)) {
  118. fep->clk_ptp = NULL;
  119. fep->bufdesc_ex = false;
  120. }
  121. pm_runtime_enable(&pdev->dev);
  122. /*使能时钟*/
  123. ret = fec_enet_clk_enable(ndev, true);
  124. if (ret)
  125. goto failed_clk;
  126. fep->reg_phy = devm_regulator_get(&pdev->dev, "phy");
  127. if (!IS_ERR(fep->reg_phy)) {
  128. ret = regulator_enable(fep->reg_phy);
  129. if (ret) {
  130. dev_err(&pdev->dev,
  131. "Failed to enable phy regulator: %d\n", ret);
  132. goto failed_regulator;
  133. }
  134. } else {
  135. fep->reg_phy = NULL;
  136. }
  137. fec_reset_phy(pdev);
  138. if (fep->bufdesc_ex)
  139. fec_ptp_init(pdev);
  140. /*初始化 enet,此函数会分配队列、申请 dma、设置 MAC
  141. 地址,初始化 net_device 的 netdev_ops 和 ethtool_ops 成员*/
  142. ret = fec_enet_init(ndev);
  143. if (ret)
  144. goto failed_init;
  145. /*从设备树中获取中断号。*/
  146. for (i = 0; i < FEC_IRQ_NUM; i++) {
  147. irq = platform_get_irq(pdev, i);
  148. if (irq < 0) {
  149. if (i)
  150. break;
  151. ret = irq;
  152. goto failed_irq;
  153. }
  154. /*申请中断,中断处理函数为 fec_enet_interrupt,重点!*/
  155. ret = devm_request_irq(&pdev->dev, irq, fec_enet_interrupt,
  156. 0, pdev->name, ndev);
  157. if (ret)
  158. goto failed_irq;
  159. fep->irq[i] = irq;
  160. }
  161. ret = of_property_read_u32(np, "fsl,wakeup_irq", &irq);
  162. if (!ret && irq < FEC_IRQ_NUM)
  163. fep->wake_irq = fep->irq[irq];
  164. else
  165. fep->wake_irq = fep->irq[0];
  166. /*初始化完成量 completion,用于一个执行单元等待另一个执行单元执行完某事*/
  167. init_completion(&fep->mdio_done);
  168. /* MII/RMII 接口的初始化 来向内核注册 MDIO 总线*/
  169. ret = fec_enet_mii_init(pdev);
  170. if (ret)
  171. goto failed_mii_init;
  172. /* Carrier starts down, phylib will bring it up */
  173. netif_carrier_off(ndev);
  174. /*使能网络相关时钟*/
  175. fec_enet_clk_enable(ndev, false);
  176. pinctrl_pm_select_sleep_state(&pdev->dev);
  177. /*注册 net_device*/
  178. ret = register_netdev(ndev);
  179. if (ret)
  180. goto failed_register;
  181. device_init_wakeup(&ndev->dev, fep->wol_flag &
  182. FEC_WOL_HAS_MAGIC_PACKET);
  183. if (fep->bufdesc_ex && fep->ptp_clock)
  184. netdev_info(ndev, "registered PHC device %d\n", fep->dev_id);
  185. fep->rx_copybreak = COPYBREAK_DEFAULT;
  186. INIT_WORK(&fep->tx_timeout_work, fec_enet_timeout_work);
  187. return 0;
  188. failed_register:
  189. fec_enet_mii_remove(fep);
  190. failed_mii_init:
  191. failed_irq:
  192. failed_init:
  193. if (fep->reg_phy)
  194. regulator_disable(fep->reg_phy);
  195. failed_regulator:
  196. fec_enet_clk_enable(ndev, false);
  197. failed_clk:
  198. failed_phy:
  199. of_node_put(phy_node);
  200. failed_ioremap:
  201. free_netdev(ndev);
  202. return ret;
  203. }

2.2 MDIO总线注册

MDIO 就是用来管理 PHY 芯片的,分为 MDIO 和 MDC 两根线,Linux内核专门为 MDIO 准备一个总线,叫做 MDIO 总线,采用 mii_bus 结构体表示,定义在include/linux/phy.h 文件中

  1. /*
  2. * The Bus class for PHYs. Devices which provide access to
  3. * PHYs should register using this structure
  4. */
  5. struct mii_bus {
  6. const char *name;
  7. char id[MII_BUS_ID_SIZE];
  8. void *priv;
  9. /*/些 PHY 芯片的操作函数,最终会被前面的fec_probe函数初始化并注册到内核(194行)*/
  10. int (*read)(struct mii_bus *bus, int phy_id, int regnum);
  11. int (*write)(struct mii_bus *bus, int phy_id, int regnum, u16 val);
  12. int (*reset)(struct mii_bus *bus);
  13. /*
  14. * A lock to ensure that only one thing can read/write
  15. * the MDIO bus at a time
  16. */
  17. struct mutex mdio_lock;
  18. struct device *parent;
  19. enum {
  20. MDIOBUS_ALLOCATED = 1,
  21. MDIOBUS_REGISTERED,
  22. MDIOBUS_UNREGISTERED,
  23. MDIOBUS_RELEASED,
  24. } state;
  25. struct device dev;
  26. /* list of all PHYs on bus */
  27. struct phy_device *phy_map[PHY_MAX_ADDR];
  28. /* PHY addresses to be ignored when probing */
  29. u32 phy_mask;
  30. /*
  31. * Pointer to an array of interrupts, each PHY's
  32. * interrupt at the index matching its address
  33. */
  34. int *irq;
  35. };

读/些 PHY 芯片的操作函数,最终会被前面的fec_probe函数的ffec_enet_mii_init函数初始化并注册到内核。fec_enet_mii_init函数如下

  1. static int fec_enet_mii_init(struct platform_device *pdev)
  2. {
  3. static struct mii_bus *fec0_mii_bus;
  4. static int *fec_mii_bus_share;
  5. struct net_device *ndev = platform_get_drvdata(pdev);
  6. struct fec_enet_private *fep = netdev_priv(ndev);
  7. struct device_node *node;
  8. int err = -ENXIO, i;
  9. u32 mii_speed, holdtime;
  10. /*
  11. * The i.MX28 dual fec interfaces are not equal.
  12. * Here are the differences:
  13. *
  14. * - fec0 supports MII & RMII modes while fec1 only supports RMII
  15. * - fec0 acts as the 1588 time master while fec1 is slave
  16. * - external phys can only be configured by fec0
  17. *
  18. * That is to say fec1 can not work independently. It only works
  19. * when fec0 is working. The reason behind this design is that the
  20. * second interface is added primarily for Switch mode.
  21. *
  22. * Because of the last point above, both phys are attached on fec0
  23. * mdio interface in board design, and need to be configured by
  24. * fec0 mii_bus.
  25. */
  26. if ((fep->quirks & FEC_QUIRK_ENET_MAC) && fep->dev_id > 0) {
  27. /* fec1 uses fec0 mii_bus */
  28. if (mii_cnt && fec0_mii_bus) {
  29. fep->mii_bus = fec0_mii_bus;
  30. *fec_mii_bus_share = FEC0_MII_BUS_SHARE_TRUE;
  31. mii_cnt++;
  32. return 0;
  33. }
  34. return -ENOENT;
  35. }
  36. fep->mii_timeout = 0;
  37. /*
  38. * Set MII speed to 2.5 MHz (= clk_get_rate() / 2 * phy_speed)
  39. *
  40. * The formula for FEC MDC is 'ref_freq / (MII_SPEED x 2)' while
  41. * for ENET-MAC is 'ref_freq / ((MII_SPEED + 1) x 2)'. The i.MX28
  42. * Reference Manual has an error on this, and gets fixed on i.MX6Q
  43. * document.
  44. */
  45. mii_speed = DIV_ROUND_UP(clk_get_rate(fep->clk_ipg), 5000000);
  46. if (fep->quirks & FEC_QUIRK_ENET_MAC)
  47. mii_speed--;
  48. if (mii_speed > 63) {
  49. dev_err(&pdev->dev,
  50. "fec clock (%lu) to fast to get right mii speed\n",
  51. clk_get_rate(fep->clk_ipg));
  52. err = -EINVAL;
  53. goto err_out;
  54. }
  55. /*
  56. * The i.MX28 and i.MX6 types have another filed in the MSCR (aka
  57. * MII_SPEED) register that defines the MDIO output hold time. Earlier
  58. * versions are RAZ there, so just ignore the difference and write the
  59. * register always.
  60. * The minimal hold time according to IEE802.3 (clause 22) is 10 ns.
  61. * HOLDTIME + 1 is the number of clk cycles the fec is holding the
  62. * output.
  63. * The HOLDTIME bitfield takes values between 0 and 7 (inclusive).
  64. * Given that ceil(clkrate / 5000000) <= 64, the calculation for
  65. * holdtime cannot result in a value greater than 3.
  66. */
  67. holdtime = DIV_ROUND_UP(clk_get_rate(fep->clk_ipg), 100000000) - 1;
  68. fep->phy_speed = mii_speed << 1 | holdtime << 8;
  69. writel(fep->phy_speed, fep->hwp + FEC_MII_SPEED);
  70. fep->mii_bus = mdiobus_alloc();
  71. if (fep->mii_bus == NULL) {
  72. err = -ENOMEM;
  73. goto err_out;
  74. }
  75. fep->mii_bus->name = "fec_enet_mii_bus";
  76. fep->mii_bus->read = fec_enet_mdio_read;
  77. fep->mii_bus->write = fec_enet_mdio_write;
  78. snprintf(fep->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
  79. pdev->name, fep->dev_id + 1);
  80. fep->mii_bus->priv = fep;
  81. fep->mii_bus->parent = &pdev->dev;
  82. fep->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
  83. if (!fep->mii_bus->irq) {
  84. err = -ENOMEM;
  85. goto err_out_free_mdiobus;
  86. }
  87. for (i = 0; i < PHY_MAX_ADDR; i++)
  88. fep->mii_bus->irq[i] = PHY_POLL;
  89. node = of_get_child_by_name(pdev->dev.of_node, "mdio");
  90. if (node) {
  91. err = of_mdiobus_register(fep->mii_bus, node);
  92. of_node_put(node);
  93. } else {
  94. err = mdiobus_register(fep->mii_bus);
  95. }
  96. if (err)
  97. goto err_out_free_mdio_irq;
  98. mii_cnt++;
  99. /* save fec0 mii_bus */
  100. if (fep->quirks & FEC_QUIRK_ENET_MAC) {
  101. fec0_mii_bus = fep->mii_bus;
  102. fec_mii_bus_share = &fep->mii_bus_share;
  103. }
  104. return 0;
  105. err_out_free_mdio_irq:
  106. kfree(fep->mii_bus->irq);
  107. err_out_free_mdiobus:
  108. mdiobus_free(fep->mii_bus);
  109. err_out:
  110. return err;
  111. }

从中可以看出,通过 of_mdiobus_register或者 mdiobus_register 函数将初始化以后的 mii_bus 注册到 Linux 内核,此外该函数还调用of_mdiobus_register_phy 函数完成向内核注册 PHY设备。

of_mdiobus_register函数如下

  1. /**
  2. * of_mdiobus_register - Register mii_bus and create PHYs from the device tree
  3. * @mdio: pointer to mii_bus structure
  4. * @np: pointer to device_node of MDIO bus.
  5. *
  6. * This function registers the mii_bus structure and registers a phy_device
  7. * for each child node of @np.
  8. */
  9. int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np)
  10. {
  11. struct device_node *child;
  12. const __be32 *paddr;
  13. bool scanphys = false;
  14. int addr, rc, i;
  15. /* Mask out all PHYs from auto probing. Instead the PHYs listed in
  16. * the device tree are populated after the bus has been registered */
  17. mdio->phy_mask = ~0;
  18. /* Clear all the IRQ properties */
  19. if (mdio->irq)
  20. for (i=0; i<PHY_MAX_ADDR; i++)
  21. mdio->irq[i] = PHY_POLL;
  22. mdio->dev.of_node = np;
  23. /* Register the MDIO bus */
  24. rc = mdiobus_register(mdio);
  25. if (rc)
  26. return rc;
  27. /* Loop over the child nodes and register a phy_device for each one */
  28. for_each_available_child_of_node(np, child) {
  29. addr = of_mdio_parse_addr(&mdio->dev, child);
  30. if (addr < 0) {
  31. scanphys = true;
  32. continue;
  33. }
  34. rc = of_mdiobus_register_phy(mdio, child, addr);
  35. if (rc)
  36. continue;
  37. }
  38. if (!scanphys)
  39. return 0;
  40. /* auto scan for PHYs with empty reg property */
  41. for_each_available_child_of_node(np, child) {
  42. /* Skip PHYs with reg property set */
  43. paddr = of_get_property(child, "reg", NULL);
  44. if (paddr)
  45. continue;
  46. for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
  47. /* skip already registered PHYs */
  48. if (mdio->phy_map[addr])
  49. continue;
  50. /* be noisy to encourage people to set reg property */
  51. dev_info(&mdio->dev, "scan phy %s at address %i\n",
  52. child->name, addr);
  53. rc = of_mdiobus_register_phy(mdio, child, addr);
  54. if (rc)
  55. continue;
  56. }
  57. }
  58. return 0;
  59. }

注册PHY驱动函数如下:

  1. static int of_mdiobus_register_phy(struct mii_bus *mdio, struct device_node *child,
  2. u32 addr)
  3. {
  4. struct phy_device *phy;
  5. bool is_c45;
  6. int rc;
  7. u32 phy_id;
  8. /*检查 PHY 节点的 compatible 属性是否为“ethernetphy-ieee802.3-c45*/
  9. is_c45 = of_device_is_compatible(child,
  10. "ethernet-phy-ieee802.3-c45");
  11. if (!is_c45 && !of_get_phy_id(child, &phy_id))
  12. phy = phy_device_create(mdio, addr, phy_id, 0, NULL);
  13. else
  14. phy = get_phy_device(mdio, addr, is_c45);
  15. if (!phy || IS_ERR(phy))
  16. return 1;
  17. /*获取 PHY 芯片的中断信息*/
  18. rc = irq_of_parse_and_map(child, 0);
  19. if (rc > 0) {
  20. phy->irq = rc;
  21. if (mdio->irq)
  22. mdio->irq[addr] = rc;
  23. } else {
  24. if (mdio->irq)
  25. phy->irq = mdio->irq[addr];
  26. }
  27. /* Associate the OF node with the device structure so it
  28. * can be looked up later */
  29. of_node_get(child);
  30. phy->dev.of_node = child;
  31. /* All data is now stored in the phy struct;
  32. * register it */
  33. /*向 Linux 内核注册 PHY 设备。*/
  34. rc = phy_device_register(phy);
  35. if (rc) {
  36. phy_device_free(phy);
  37. of_node_put(child);
  38. return 1;
  39. }
  40. dev_dbg(&mdio->dev, "registered phy %s at address %i\n",
  41. child->name, addr);
  42. return 0;
  43. }

总结一下整个流程如下:

2.3 fec_drv_remove 函数简析

卸载 I.MX6ULL 网络驱动的时候 fec_drv_remove 函数就会执行

  1. static int fec_drv_remove(struct platform_device *pdev)
  2. {
  3. struct net_device *ndev = platform_get_drvdata(pdev);
  4. struct fec_enet_private *fep = netdev_priv(ndev);
  5. cancel_delayed_work_sync(&fep->time_keep);
  6. cancel_work_sync(&fep->tx_timeout_work);
  7. unregister_netdev(ndev);
  8. fec_enet_mii_remove(fep);
  9. if (fep->reg_phy)
  10. regulator_disable(fep->reg_phy);
  11. if (fep->ptp_clock)
  12. ptp_clock_unregister(fep->ptp_clock);
  13. of_node_put(fep->phy_node);
  14. free_netdev(ndev);
  15. return 0;
  16. }

3. fec_netdev_ops 操作集

fec_probe 函数设置了网卡驱动的 net_dev_ops 操作集为 fec_netdev_ops

  1. static const struct net_device_ops fec_netdev_ops = {
  2. .ndo_open = fec_enet_open,
  3. .ndo_stop = fec_enet_close,
  4. .ndo_start_xmit = fec_enet_start_xmit,
  5. .ndo_select_queue = fec_enet_select_queue,
  6. .ndo_set_rx_mode = set_multicast_list,
  7. .ndo_change_mtu = eth_change_mtu,
  8. .ndo_validate_addr = eth_validate_addr,
  9. .ndo_tx_timeout = fec_timeout,
  10. .ndo_set_mac_address = fec_set_mac_address,
  11. .ndo_do_ioctl = fec_enet_ioctl,
  12. #ifdef CONFIG_NET_POLL_CONTROLLER
  13. .ndo_poll_controller = fec_poll_controller,
  14. #endif
  15. .ndo_set_features = fec_set_features,
  16. };

3.1 fec_enet_open 函数简析

  1. static int fec_enet_open(struct net_device *ndev)
  2. {
  3. struct fec_enet_private *fep = netdev_priv(ndev);
  4. const struct platform_device_id *id_entry =
  5. platform_get_device_id(fep->pdev);
  6. int ret;
  7. pinctrl_pm_select_default_state(&fep->pdev->dev);
  8. ret = fec_enet_clk_enable(ndev, true);
  9. if (ret)
  10. return ret;
  11. /* I should reset the ring buffers here, but I don't yet know
  12. * a simple way to do that.
  13. */
  14. /*申请环形缓冲区 buffer,此函数里面会调用
  15. fec_enet_alloc_rxq_buffers 和 fec_enet_alloc_txq_buffers
  16. 这两个函数分别实现发送队列和接收队列缓冲区的申请。*/
  17. ret = fec_enet_alloc_buffers(ndev);
  18. if (ret)
  19. goto err_enet_alloc;
  20. /* Init MAC prior to mii bus probe */
  21. /*重启网络,一般连接状态改变、传输超时或者配置网络的时候都会调用 fec_restart函数*/
  22. fec_restart(ndev);
  23. /* Probe and connect to PHY when open the interface */
  24. /*打开网卡的时候调用 fec_enet_mii_probe 函数来探测并连接对应的 PHY 设备。*/
  25. ret = fec_enet_mii_probe(ndev);
  26. if (ret)
  27. goto err_enet_mii_probe;
  28. /*使能 NAPI 调度*/
  29. napi_enable(&fep->napi);
  30. /*开启 PHY 设备*/
  31. phy_start(fep->phy_dev);
  32. /*激活发送队列。*/
  33. netif_tx_start_all_queues(ndev);
  34. pm_runtime_get_sync(ndev->dev.parent);
  35. if ((id_entry->driver_data & FEC_QUIRK_BUG_WAITMODE) &&
  36. !fec_enet_irq_workaround(fep))
  37. pm_qos_add_request(&fep->pm_qos_req,
  38. PM_QOS_CPU_DMA_LATENCY,
  39. 0);
  40. else
  41. pm_qos_add_request(&fep->pm_qos_req,
  42. PM_QOS_CPU_DMA_LATENCY,
  43. PM_QOS_DEFAULT_VALUE);
  44. device_set_wakeup_enable(&ndev->dev, fep->wol_flag &
  45. FEC_WOL_FLAG_ENABLE);
  46. fep->miibus_up_failed = false;
  47. return 0;
  48. err_enet_mii_probe:
  49. fec_enet_free_buffers(ndev);
  50. err_enet_alloc:
  51. fep->miibus_up_failed = true;
  52. if (!fep->mii_bus_share)
  53. pinctrl_pm_select_sleep_state(&fep->pdev->dev);
  54. return ret;
  55. }

2. fec_enet_close 函数简析

  1. static int
  2. fec_enet_close(struct net_device *ndev)
  3. {
  4. struct fec_enet_private *fep = netdev_priv(ndev);
  5. phy_stop(fep->phy_dev);
  6. if (netif_device_present(ndev)) {
  7. napi_disable(&fep->napi);
  8. netif_tx_disable(ndev);
  9. fec_stop(ndev);
  10. }
  11. phy_disconnect(fep->phy_dev);
  12. fep->phy_dev = NULL;
  13. fec_enet_clk_enable(ndev, false);
  14. pm_qos_remove_request(&fep->pm_qos_req);
  15. pinctrl_pm_select_sleep_state(&fep->pdev->dev);
  16. pm_runtime_put_sync_suspend(ndev->dev.parent);
  17. fec_enet_free_buffers(ndev);
  18. return 0;
  19. }

3. fec_enet_start_xmit 函数简析

  1. static netdev_tx_t fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
  2. {
  3. struct fec_enet_private *fep = netdev_priv(ndev);
  4. int entries_free;
  5. unsigned short queue;
  6. struct fec_enet_priv_tx_q *txq;
  7. struct netdev_queue *nq;
  8. int ret;
  9. queue = skb_get_queue_mapping(skb);
  10. txq = fep->tx_queue[queue];
  11. nq = netdev_get_tx_queue(ndev, queue);
  12. if (skb_is_gso(skb))
  13. ret = fec_enet_txq_submit_tso(txq, skb, ndev);
  14. else
  15. ret = fec_enet_txq_submit_skb(txq, skb, ndev);
  16. if (ret)
  17. return ret;
  18. entries_free = fec_enet_get_free_txdesc_num(fep, txq);
  19. if (entries_free <= txq->tx_stop_threshold)
  20. netif_tx_stop_queue(nq);//通过暂停发送来通知应用层停止向网络发送 skb
  21. return NETDEV_TX_OK;
  22. }

此函数的参数第一个参数 skb 就是上层应用传递下来的要发送的网络数据,第二个参数

ndev 就是要发送数据的设备。

TSO:全称是 TCP Segmentation Offload,利用网卡对大数据包进行自动分段处理,降低 CPU

负载。

GSO:全称是 Generic Segmentation Offload,在发送数据之前先检查一下网卡是否支持 TSO,

如果支持的话就让网卡分段,不过不支持的话就由协议栈进行分段处理,分段处理完成以后再

交给网卡去发送。

4. fec_enet_interrupt 中断服务函数简析

了 I.MX6ULL 的网络数据接收采用 NAPI 框架,所以肯定要用到中断。fec_probe 函数会初始化网络中断,中断服务函数为 fec_enet_interrupt.

  1. static irqreturn_t fec_enet_interrupt(int irq, void *dev_id)
  2. {
  3. struct net_device *ndev = dev_id;
  4. struct fec_enet_private *fep = netdev_priv(ndev);
  5. uint int_events;
  6. irqreturn_t ret = IRQ_NONE;
  7. int_events = readl(fep->hwp + FEC_IEVENT);
  8. writel(int_events, fep->hwp + FEC_IEVENT);
  9. fec_enet_collect_events(fep, int_events);
  10. if ((fep->work_tx || fep->work_rx) && fep->link) {
  11. ret = IRQ_HANDLED;
  12. if (napi_schedule_prep(&fep->napi)) {
  13. /* Disable the NAPI interrupts */
  14. writel(FEC_ENET_MII, fep->hwp + FEC_IMASK);
  15. __napi_schedule(&fep->napi);
  16. }
  17. }
  18. if (int_events & FEC_ENET_MII) {
  19. ret = IRQ_HANDLED;
  20. complete(&fep->mdio_done);
  21. }
  22. if (fep->ptp_clock)
  23. fec_ptp_check_pps_event(fep);
  24. return ret;
  25. }

可以看出中断服务函数非常短! 具体的网络数据收发是在 NAPI 的 poll 函数中完成的中断里面只需要进行 napi 调度即可,这个就是中断的上半部和下半部处理机制.(复习中断)

fec_enet_init 函数初始化网络的时候会调用 netif_napi_add 来设置 NAPI 的 poll 函数为

fec_enet_rx_napi

5. Linux 内核 PHY 子系统与 MDIO 总线简析

注册 MDIO 总线的时候也会向内核注册 PHY 设备,PHY 子系统就是用于 PHY 设备相关内容的,分

为 PHY 设备和 PHY 驱动,和 platform 总线一样,PHY 子系统也是一个设备、总线和驱动模型

5.1PHY设备

Linux 内核使用 phy_device 结构体来表示 PHY 设备,结构体定义在 include/linux/phy.h,结构体内容如下:

  1. /* phy_device: An instance of a PHY
  2. *
  3. * drv: Pointer to the driver for this PHY instance
  4. * bus: Pointer to the bus this PHY is on
  5. * dev: driver model device structure for this PHY
  6. * phy_id: UID for this device found during discovery
  7. * c45_ids: 802.3-c45 Device Identifers if is_c45.
  8. * is_c45: Set to true if this phy uses clause 45 addressing.
  9. * is_internal: Set to true if this phy is internal to a MAC.
  10. * has_fixups: Set to true if this phy has fixups/quirks.
  11. * suspended: Set to true if this phy has been suspended successfully.
  12. * state: state of the PHY for management purposes
  13. * dev_flags: Device-specific flags used by the PHY driver.
  14. * addr: Bus address of PHY
  15. * link_timeout: The number of timer firings to wait before the
  16. * giving up on the current attempt at acquiring a link
  17. * irq: IRQ number of the PHY's interrupt (-1 if none)
  18. * phy_timer: The timer for handling the state machine
  19. * phy_queue: A work_queue for the interrupt
  20. * attached_dev: The attached enet driver's device instance ptr
  21. * adjust_link: Callback for the enet controller to respond to
  22. * changes in the link state.
  23. *
  24. * speed, duplex, pause, supported, advertising, lp_advertising,
  25. * and autoneg are used like in mii_if_info
  26. *
  27. * interrupts currently only supports enabled or disabled,
  28. * but could be changed in the future to support enabling
  29. * and disabling specific interrupts
  30. *
  31. * Contains some infrastructure for polling and interrupt
  32. * handling, as well as handling shifts in PHY hardware state
  33. */
  34. struct phy_device {
  35. /* Information about the PHY type */
  36. /* And management functions */
  37. struct phy_driver *drv;
  38. struct mii_bus *bus;
  39. struct device dev;
  40. u32 phy_id;
  41. struct phy_c45_device_ids c45_ids;
  42. bool is_c45;
  43. bool is_internal;
  44. bool has_fixups;
  45. bool suspended;
  46. enum phy_state state;
  47. u32 dev_flags;
  48. phy_interface_t interface;
  49. /* Bus address of the PHY (0-31) */
  50. int addr;
  51. /*
  52. * forced speed & duplex (no autoneg)
  53. * partner speed & duplex & pause (autoneg)
  54. */
  55. int speed;
  56. int duplex;
  57. int pause;
  58. int asym_pause;
  59. /* The most recently read link state */
  60. int link;
  61. /* Enabled Interrupts */
  62. u32 interrupts;
  63. /* Union of PHY and Attached devices' supported modes */
  64. /* See mii.h for more info */
  65. u32 supported;
  66. u32 advertising;
  67. u32 lp_advertising;
  68. int autoneg;
  69. int link_timeout;
  70. /*
  71. * Interrupt number for this PHY
  72. * -1 means no interrupt
  73. */
  74. int irq;
  75. /* private data pointer */
  76. /* For use by PHYs to maintain extra state */
  77. void *priv;
  78. /* Interrupt and Polling infrastructure */
  79. struct work_struct phy_queue;
  80. struct delayed_work state_queue;
  81. atomic_t irq_disable;
  82. struct mutex lock;
  83. struct net_device *attached_dev;
  84. void (*adjust_link)(struct net_device *dev);
  85. };

一个 PHY 设备对应一个 phy_device 实例,然后需要向 Linux 内核注册这个实例。

注册PHY设备

1先获取PHY设备

  1. /**
  2. * get_phy_device - reads the specified PHY device and returns its @phy_device
  3. * struct
  4. * @bus: the target MII bus
  5. * @addr: PHY address on the MII bus
  6. * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
  7. *
  8. * Description: Reads the ID registers of the PHY at @addr on the
  9. * @bus, then allocates and returns the phy_device to represent it.
  10. */
  11. struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45)
  12. {
  13. struct phy_c45_device_ids c45_ids = {0};
  14. u32 phy_id = 0;
  15. int r;
  16. r = get_phy_id(bus, addr, &phy_id, is_c45, &c45_ids);
  17. if (r)
  18. return ERR_PTR(r);
  19. /* If the phy_id is mostly Fs, there is no device there */
  20. if ((phy_id & 0x1fffffff) == 0x1fffffff)
  21. return NULL;
  22. return phy_device_create(bus, addr, phy_id, is_c45, &c45_ids);
  23. }

2.使用phy_device_register 函数完成 PHY 设备的注册。

  1. /**
  2. * phy_device_register - Register the phy device on the MDIO bus
  3. * @phydev: phy_device structure to be added to the MDIO bus
  4. */
  5. int phy_device_register(struct phy_device *phydev)
  6. {
  7. int err;
  8. /* Don't register a phy if one is already registered at this address */
  9. if (phydev->bus->phy_map[phydev->addr])
  10. return -EINVAL;
  11. phydev->bus->phy_map[phydev->addr] = phydev;
  12. /* Run all of the fixups for this PHY */
  13. err = phy_scan_fixups(phydev);
  14. if (err) {
  15. pr_err("PHY %d failed to initialize\n", phydev->addr);
  16. goto out;
  17. }
  18. err = device_add(&phydev->dev);
  19. if (err) {
  20. pr_err("PHY %d failed to add\n", phydev->addr);
  21. goto out;
  22. }
  23. return 0;
  24. out:
  25. phydev->bus->phy_map[phydev->addr] = NULL;
  26. return err;
  27. }

5.2 PHY驱动

PHY 驱动使用结构体 phy_driver 表示,结构体也定义在 include/linux/phy.h 文件中,结构体

内容如下

  1. /* struct phy_driver: Driver structure for a particular PHY type
  2. *
  3. * phy_id: The result of reading the UID registers of this PHY
  4. * type, and ANDing them with the phy_id_mask. This driver
  5. * only works for PHYs with IDs which match this field
  6. * name: The friendly name of this PHY type
  7. * phy_id_mask: Defines the important bits of the phy_id
  8. * features: A list of features (speed, duplex, etc) supported
  9. * by this PHY
  10. * flags: A bitfield defining certain other features this PHY
  11. * supports (like interrupts)
  12. * driver_data: static driver data
  13. *
  14. * The drivers must implement config_aneg and read_status. All
  15. * other functions are optional. Note that none of these
  16. * functions should be called from interrupt time. The goal is
  17. * for the bus read/write functions to be able to block when the
  18. * bus transaction is happening, and be freed up by an interrupt
  19. * (The MPC85xx has this ability, though it is not currently
  20. * supported in the driver).
  21. */
  22. struct phy_driver {
  23. u32 phy_id;
  24. char *name;
  25. unsigned int phy_id_mask;
  26. u32 features;
  27. u32 flags;
  28. const void *driver_data;
  29. /*
  30. * Called to issue a PHY software reset
  31. */
  32. int (*soft_reset)(struct phy_device *phydev);
  33. /*
  34. * Called to initialize the PHY,
  35. * including after a reset
  36. */
  37. int (*config_init)(struct phy_device *phydev);
  38. /*
  39. * Called during discovery. Used to set
  40. * up device-specific structures, if any
  41. */
  42. int (*probe)(struct phy_device *phydev);
  43. /* PHY Power Management */
  44. int (*suspend)(struct phy_device *phydev);
  45. int (*resume)(struct phy_device *phydev);
  46. /*
  47. * Configures the advertisement and resets
  48. * autonegotiation if phydev->autoneg is on,
  49. * forces the speed to the current settings in phydev
  50. * if phydev->autoneg is off
  51. */
  52. int (*config_aneg)(struct phy_device *phydev);
  53. /* Determines the auto negotiation result */
  54. int (*aneg_done)(struct phy_device *phydev);
  55. /* Determines the negotiated speed and duplex */
  56. int (*read_status)(struct phy_device *phydev);
  57. /* Clears any pending interrupts */
  58. int (*ack_interrupt)(struct phy_device *phydev);
  59. /* Enables or disables interrupts */
  60. int (*config_intr)(struct phy_device *phydev);
  61. /*
  62. * Checks if the PHY generated an interrupt.
  63. * For multi-PHY devices with shared PHY interrupt pin
  64. */
  65. int (*did_interrupt)(struct phy_device *phydev);
  66. /* Clears up any memory if needed */
  67. void (*remove)(struct phy_device *phydev);
  68. /* Returns true if this is a suitable driver for the given
  69. * phydev. If NULL, matching is based on phy_id and
  70. * phy_id_mask.
  71. */
  72. int (*match_phy_device)(struct phy_device *phydev);
  73. /* Handles ethtool queries for hardware time stamping. */
  74. int (*ts_info)(struct phy_device *phydev, struct ethtool_ts_info *ti);
  75. /* Handles SIOCSHWTSTAMP ioctl for hardware time stamping. */
  76. int (*hwtstamp)(struct phy_device *phydev, struct ifreq *ifr);
  77. /*
  78. * Requests a Rx timestamp for 'skb'. If the skb is accepted,
  79. * the phy driver promises to deliver it using netif_rx() as
  80. * soon as a timestamp becomes available. One of the
  81. * PTP_CLASS_ values is passed in 'type'. The function must
  82. * return true if the skb is accepted for delivery.
  83. */
  84. bool (*rxtstamp)(struct phy_device *dev, struct sk_buff *skb, int type);
  85. /*
  86. * Requests a Tx timestamp for 'skb'. The phy driver promises
  87. * to deliver it using skb_complete_tx_timestamp() as soon as a
  88. * timestamp becomes available. One of the PTP_CLASS_ values
  89. * is passed in 'type'.
  90. */
  91. void (*txtstamp)(struct phy_device *dev, struct sk_buff *skb, int type);
  92. /* Some devices (e.g. qnap TS-119P II) require PHY register changes to
  93. * enable Wake on LAN, so set_wol is provided to be called in the
  94. * ethernet driver's set_wol function. */
  95. int (*set_wol)(struct phy_device *dev, struct ethtool_wolinfo *wol);
  96. /* See set_wol, but for checking whether Wake on LAN is enabled. */
  97. void (*get_wol)(struct phy_device *dev, struct ethtool_wolinfo *wol);
  98. /*
  99. * Called to inform a PHY device driver when the core is about to
  100. * change the link state. This callback is supposed to be used as
  101. * fixup hook for drivers that need to take action when the link
  102. * state changes. Drivers are by no means allowed to mess with the
  103. * PHY device structure in their implementations.
  104. */
  105. void (*link_change_notify)(struct phy_device *dev);
  106. /* A function provided by a phy specific driver to override the
  107. * the PHY driver framework support for reading a MMD register
  108. * from the PHY. If not supported, return -1. This function is
  109. * optional for PHY specific drivers, if not provided then the
  110. * default MMD read function is used by the PHY framework.
  111. */
  112. int (*read_mmd_indirect)(struct phy_device *dev, int ptrad,
  113. int devnum, int regnum);
  114. /* A function provided by a phy specific driver to override the
  115. * the PHY driver framework support for writing a MMD register
  116. * from the PHY. This function is optional for PHY specific drivers,
  117. * if not provided then the default MMD read function is used by
  118. * the PHY framework.
  119. */
  120. void (*write_mmd_indirect)(struct phy_device *dev, int ptrad,
  121. int devnum, int regnum, u32 val);
  122. /* Get the size and type of the eeprom contained within a plug-in
  123. * module */
  124. int (*module_info)(struct phy_device *dev,
  125. struct ethtool_modinfo *modinfo);
  126. /* Get the eeprom information from the plug-in module */
  127. int (*module_eeprom)(struct phy_device *dev,
  128. struct ethtool_eeprom *ee, u8 *data);
  129. struct device_driver driver;
  130. };

可以看出,phy_driver 重点是大量的函数,编写 PHY 驱动的主要工作就是实现这些函数,但是不一定全部实现。

  1. 注册PHY驱动
int phy_driver_register(struct phy_driver *new_driver);
  1. 连续注册多个PHY驱动
int phy_drivers_register(struct phy_driver *new_driver, int n);
  1. 卸载PHY驱动
  1. void phy_driver_unregister(struct phy_driver *drv);
  2. void phy_drivers_unregister(struct phy_driver *drv, int n);

5.3 MDIO总线

PHY 子系统也是遵循设备、总线、驱动模型的,设备和驱动就是 phy_device 和phy_driver。总线就是 MDIO 总线,因为 PHY 芯片是通过 MIDO 接口来管理的,MDIO 总线最主要的工作就是匹配 PHY 设备和 PHY 驱动。

在文件 drivers/net/phy/mdio_bus.c 中有如下定义

  1. struct bus_type mdio_bus_type = {
  2. .name = "mdio_bus",
  3. .match = mdio_bus_match,
  4. .pm = MDIO_BUS_PM_OPS,
  5. .dev_groups = mdio_dev_groups,
  6. };

其中,匹配函数mdio_bus_match

  1. /**
  2. * mdio_bus_match - determine if given PHY driver supports the given PHY device
  3. * @dev: target PHY device
  4. * @drv: given PHY driver
  5. *
  6. * Description: Given a PHY device, and a PHY driver, return 1 if
  7. * the driver supports the device. Otherwise, return 0.
  8. */
  9. static int mdio_bus_match(struct device *dev, struct device_driver *drv)
  10. {
  11. struct phy_device *phydev = to_phy_device(dev);
  12. struct phy_driver *phydrv = to_phy_driver(drv);
  13. /*三种匹配方式*/
  14. /*设备树查找*/
  15. if (of_driver_match_device(dev, drv))
  16. return 1;
  17. /*驱动匹配函数*/
  18. if (phydrv->match_phy_device)
  19. return phydrv->match_phy_device(phydev);
  20. /*设备id和驱动id*/
  21. return (phydrv->phy_id & phydrv->phy_id_mask) ==
  22. (phydev->phy_id & phydrv->phy_id_mask);
  23. }

5.4 通用PHY驱动

如果前面的匹配失败,则使用内核通用PHY驱动。通用PHY驱动名字为“Generic PHY”。

  1. static int __init phy_init(void)
  2. {
  3. int rc;
  4. rc = mdio_bus_init();
  5. if (rc)
  6. return rc;
  7. rc = phy_drivers_register(genphy_driver,
  8. ARRAY_SIZE(genphy_driver));
  9. if (rc)
  10. mdio_bus_exit();
  11. return rc;
  12. }
  1. static struct phy_driver genphy_driver[] = {
  2. {
  3. .phy_id = 0xffffffff,
  4. .phy_id_mask = 0xffffffff,
  5. .name = "Generic PHY",
  6. .soft_reset = genphy_soft_reset,
  7. .config_init = genphy_config_init,
  8. .features = PHY_GBIT_FEATURES | SUPPORTED_MII |
  9. SUPPORTED_AUI | SUPPORTED_FIBRE |
  10. SUPPORTED_BNC,
  11. .config_aneg = genphy_config_aneg,
  12. .aneg_done = genphy_aneg_done,
  13. .read_status = genphy_read_status,
  14. .suspend = genphy_suspend,
  15. .resume = genphy_resume,
  16. .driver = { .owner = THIS_MODULE, },
  17. }, {
  18. .phy_id = 0xffffffff,
  19. .phy_id_mask = 0xffffffff,
  20. .name = "Generic 10G PHY",
  21. .soft_reset = gen10g_soft_reset,
  22. .config_init = gen10g_config_init,
  23. .features = 0,
  24. .config_aneg = gen10g_config_aneg,
  25. .read_status = gen10g_read_status,
  26. .suspend = gen10g_suspend,
  27. .resume = gen10g_resume,
  28. .driver = {.owner = THIS_MODULE, },
  29. } };

5.5 LAN8720A 驱动

正点原子 ALPHA 开发板所用的 LAN8720A 是 SMSC 公司的产品,此公司针对自家的所有 PHY 芯片编写了一个驱动文件smsc.c,这驱动文件里面用到了大量的通用 PHY 驱动相关函数.

只需要配置内核修改使用驱动重新编译内核即可。

5.6 DHCP 功能配置

通过 udhcpc 命令来实现从路由器动态申请 IP 地址,udhcpc 命令已经集成到了 busybox 中,所以不需要我们另外移植。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/275176
推荐阅读
相关标签
  

闽ICP备14008679号