随笔分类 -  驱动内核

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页

驱动内核
sdio协议是一种单主多从模式。
摘要:MMC/SD/SDIO的驱动程序主要分为两大块,主设备驱动和从设备驱动。对于wifi来说,CPU上的MMC模块就是主设备,而WIFI模块就是从设备。本文主要分析wifi sdio driver的注册。 1 wifi模块驱动作为sdio的从设备 wifi模块驱动的通用的软件架构 (1)分为两部分,上面 阅读全文

posted @ 2023-03-24 08:29 lydstory 阅读(253) 评论(0) 推荐(0) 编辑

初始化marvell模块驱动,包括SDIO设备枚举,加载设备固件等操作
摘要:初始化marvell模块驱动,包括SDIO设备枚举,加载设备固件等操作 初始化marvell模块驱动,包括SDIO设备枚举,加载设备固件等操作 初始化marvell模块驱动,包括SDIO设备枚举,加载设备固件等操作 阅读全文

posted @ 2023-03-24 08:27 lydstory 阅读(57) 评论(0) 推荐(0) 编辑

marvell 单片机网卡
摘要:marvell 单片机网卡 美满 单片机 网卡驱动 阅读全文

posted @ 2023-03-24 00:49 lydstory 阅读(20) 评论(0) 推荐(0) 编辑

SDIO
摘要:WiFi模块可以封装成多种不同的接口,如SDIO、PCIe。SDIO接口的WiFi也是最常见的一种。SDIO接口最先被应用在存储卡上,后来其命令模式衍生到摄像头、WiFi等设备上。SDIO接口协议作是一种应用广泛的接口协议,其功能被集成在linux 的driver/mmc目录下,其中core目录封装 阅读全文

posted @ 2023-03-23 23:57 lydstory 阅读(316) 评论(0) 推荐(0) 编辑

GPON OMCI简介
摘要:概念 OMCI全称是ONU Management and Control Interface,即ONU的管理和控制接口。 OMCI是GPON标准中定义的一种配置传输通道,通过在OLT和ONU之间建立专有的ATM PVC或者GEM PORT传输OMCI消息,用于提供标准的获取ONU能力,并对其进行管理 阅读全文

posted @ 2023-03-21 07:37 lydstory 阅读(698) 评论(0) 推荐(0) 编辑

linux内核双向链表
摘要:Linux 内核中自己实现了双向链表,可以在 include/linux/list.h 找到定义。我们将会首先从双向链表数据结构开始介绍内核里的数据结构。为什么?因为它在内核里使用的很广泛,你只需要在 free-electrons.com 检索一下就知道了。 首先让我们看一下在 include/li 阅读全文

posted @ 2023-03-02 07:38 lydstory 阅读(61) 评论(0) 推荐(0) 编辑

uvc_video.c -- USB Video Class driver - Video handling
摘要:uvc_video.c -- USB Video Class driver - Video handling uvc_video.c -- USB Video Class driver - Video handling // test.cpp : 定义控制台应用程序的入口点。 // #include 阅读全文

posted @ 2023-03-02 07:33 lydstory 阅读(26) 评论(0) 推荐(0) 编辑

usb_device
摘要:usb_device usb_device usb_device 阅读全文

posted @ 2023-02-27 21:55 lydstory 阅读(7) 评论(0) 推荐(0) 编辑

.dt_compat 成员变量
摘要:3.4.1使用设备树设备匹配方法 当 Linux 内 核 引 入 设 备 树 以 后 就 不 再 使 用 MACHINE_START 了 , 而 是 换 为 了DT_MACHINE_START。DT_MACHINE_START 和 MACHINE_START 基本相同,只是.nr 的设置不同,在 D 阅读全文

posted @ 2023-02-27 21:53 lydstory 阅读(26) 评论(0) 推荐(0) 编辑

le32_to_cpu 和cpu_to_le32 大小断对齐
摘要:A53 是大端对齐的,但是其中一个spi的slave是小端对齐的。 看一下 le32_to_cpu 的实现: /* little_endian.h */ #define __cpu_to_le32(x) ((__force __le32)(__u32)(x))#define __le32_to_cp 阅读全文

posted @ 2023-02-27 21:46 lydstory 阅读(305) 评论(0) 推荐(0) 编辑

copy_from_user
摘要:copy_from_user - 百度百科 copy_from_user用于将用户空间的数据传送到内核空间。 case RALINK_GPIO_LED_SET: #ifdef CONFIG_RALINK_GPIO_LED copy_from_user(&led, (ralink_gpio_led_i 阅读全文

posted @ 2023-02-27 21:38 lydstory 阅读(30) 评论(0) 推荐(0) 编辑

dtsi头文件
摘要:dtsi头文件 和 C 语言一样,设备树也支持头文件,设备树的头文件扩展名为.dtsi。 #include "imx6ull.dtsi"1 在.dts 设备树文件中,可以通过“#include”来引用.h、.dtsi 和.dts 文件。只是,我们在编写设备树头文件的时候最好选择.dtsi 后缀。 一 阅读全文

posted @ 2023-02-27 20:59 lydstory 阅读(254) 评论(0) 推荐(0) 编辑

rp-pppoe-3.8
摘要:rp-pppoe-3.8 中有libevent 库的调用 阅读全文

posted @ 2023-02-27 19:56 lydstory 阅读(22) 评论(0) 推荐(0) 编辑

linux驱动下添加net_device设备
摘要:net_device linux驱动下添加 net_device设备 Kconfig 概念 Kconfig的作用:Kconfig用来配置内核 阅读全文

posted @ 2023-02-27 19:28 lydstory 阅读(42) 评论(0) 推荐(0) 编辑

openwrt helloworld放在根目录下
摘要:https://blog.csdn.net/guiwukejiBGG/article/details/107450783 openwrt helloworld放在根目录下 openwrt helloworld放在根目录下 openwrt helloworld放在根目录下 阅读全文

posted @ 2023-02-15 11:12 lydstory 阅读(30) 评论(0) 推荐(0) 编辑

openwrt helloworld包
摘要:http://www.360doc.com/content/18/0726/17/32862269_773422424.shtml 阅读全文

posted @ 2023-02-14 16:47 lydstory 阅读(27) 评论(0) 推荐(0) 编辑

lele openwrt
摘要:https://github.com/coolsnowwolf/lede 编译失败 阅读全文

posted @ 2023-02-14 10:37 lydstory 阅读(22) 评论(0) 推荐(0) 编辑

openwrt mtk7621工具链编译的程序在mtk7621 padawan下无法执行
摘要:openwrt mtk7621工具链编译的程序在mtk7621 padawan下无法执行 openwrt mtk7621工具链编译的程序在mtk7621 padawan下无法执行 openwrt mtk7621工具链编译的程序在mtk7621 padawan下无法执行 阅读全文

posted @ 2023-02-13 11:37 lydstory 阅读(18) 评论(0) 推荐(0) 编辑

INFO: rcu_sched self-detected stall on CPU
摘要:INFO: rcu_sched self-detected stall on CPU 0-...: (2 GPs behind) idle=ba3/2/0 softirq=57744173/57744175 fqs=792613 (t=915060 jiffies g=633773 c=633772 阅读全文

posted @ 2023-02-13 10:38 lydstory 阅读(644) 评论(0) 推荐(0) 编辑

winvnc.dll
摘要:winvnc.dll winvnc.dll windows远程控制.... 阅读全文

posted @ 2023-02-07 17:48 lydstory 阅读(23) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

点击右上角即可分享
微信分享提示