linux中readl()和writel()函数---用于读写寄存器

Posted 柒月

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux中readl()和writel()函数---用于读写寄存器相关的知识,希望对你有一定的参考价值。

writel() 往内存映射的 I/O 空间上写数据,wirtel()   I/O 上写入 32 位数据 (4字节)。
 原型:
#include <asm/io.h> 
void writel (unsigned char data , unsigned short addr )
readl() 从内存映射的 I/O 空间读取数据,readl 从 I/O 读取 32 位数据 ( 4 字节 )。
原型:
#include <asm/io.h> 
unsigned char readl (unsigned int addr )
注:变量    addr  是 I/O 地址。
返回值 : 从 I/O 空间读取的数值。

以上是关于linux中readl()和writel()函数---用于读写寄存器的主要内容,如果未能解决你的问题,请参考以下文章

在linux中write和writel的区别

linux设备驱动模型之平台总线实践环节

结构函数

readlink命令

readlink命令

Node Js:如何在服务器启动时异步执行函数