搭建一个和linux开发者知识共享和学习的平台
发布时间:2023-07-31 17:46:15
* of_find_compatible_node - 通过compatible属性查找指定节点* @type - device_type设备类型,可以为NULL* 成功:得到节点的首地址;失败:NULLstruct device_node *of_find_compatible_node(struct device_node *from,const char *type, const char *compat);* of_find_matching_node - 通过compatible.........【阅读全文】
发布时间:2023-07-26 19:36:02
我们知道,Linux内核中实现了TCP/IP协议栈的完整内容,其参考了ISO制定的OSI网络模型,但又做了适当的精简,对比如下图。RTL8211E PHY芯片的驱动代码如下:cros@cros-pc:~/work/asus/debian_kernel$ ls drivers/net/phy/ -lstotal 5208 -rwxrwxr-x 1 cros cros 7410 2月 21 2022 Kconfig4 -rwxrwxr-x 1 cros cros 175.........【阅读全文】
发布时间:2023-07-05 10:51:08
ARM generic timer驱动代码分析一、前言关注ARM平台上timer driver(clocksource chip driver和clockevent chip driver)的驱动工程师应该会注意到timer硬件的演化过程。在单核时代,各个SOC vendor厂商购买ARM core的IP,然后自己设计SOC上的peripherals,这里面就包括了timer的硬件。由于没有统一的标准,各个厂商.........【阅读全文】