Chinaunix首页 | 论坛 | 博客
  • 博客访问: 313476
  • 博文数量: 66
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 509
  • 用 户 组: 普通用户
  • 注册时间: 2015-04-29 13:56
文章分类
文章存档

2018年(2)

2017年(6)

2016年(34)

2015年(24)

我的朋友

分类: LINUX

2016-01-22 09:05:12

 readX/writeX() are used to access memory mapped devices. On some

 * architectures the memory mapped IO stuff needs to be accessed

 * differently. On the simple architectures, we just read/write the

 * memory location directly.

writel() 往内存映射的 I/O 空间上写数据,wirtel()  I/O 上写入 32 位数据 (4字节)。

 

 原型:

#include  

void writel (unsigned char data , unsigned short addr )

 

 

readl() 从内存映射的 I/O 空间读取数据,readl 从 I/O 读取 32 位数据 ( 4 字节 )

 

原型:

#include  

unsigned char readl (unsigned int addr )

 

变量    addr  是 I/O 地址。

返回值 : 从 I/O 空间读取的数值。

 

定义

#define readb __raw_readb

#define readw(addr) __le16_to_cpu(__raw_readw(addr))

#define readl(addr) __le32_to_cpu(__raw_readl(addr))

#ifndef __raw_readb

static inline u8 __raw_readb(const volatile void __iomem *addr)

{

    return *(const volatile u8 __force *) addr;

}

#endif

 

#ifndef __raw_readw

static inline u16 __raw_readw(const volatile void __iomem *addr)

{

    return *(const volatile u16 __force *) addr;

}

#endif

 

#ifndef __raw_readl

static inline u32 __raw_readl(const volatile void __iomem *addr)

{

    return *(const volatile u32 __force *) addr;

}

#endif

 

#define writeb(v,c) __raw_writeb(v,__mem_pci(c))
#define writew(v,c) __raw_writew(cpu_to_le16(v),__mem_pci(c))
#define writel(v,c) __raw_writel(cpu_to_le32(v),__mem_pci(c))



#define __raw_writeb(v, a) (*(volatile unsigned char *)(a) = (v))
#define __raw_writew(v, a) (*(volatile unsigned short *)(a) = (v))
#define __raw_writel(v, a) (*(volatile unsigned int *)(a) = (v))




阅读(2144) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~