欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

Linux在应用层读写寄存器的方法及实现实例

程序员文章站 2023-09-27 20:35:13
linux在应用层读写寄存器的方法 可以通过操作/dev/mem设备文件,以及mmap函数,将寄存器的地址映射到用户空间,直接在应用层对寄存器进行操作,示例如下:...

linux在应用层读写寄存器的方法

可以通过操作/dev/mem设备文件,以及mmap函数,将寄存器的地址映射到用户空间,直接在应用层对寄存器进行操作,示例如下:

#include <stdio.h> 
#include <stdlib.h> 
#include <time.h> 
#include <unistd.h> 
#include <fcntl.h> 
#include <unistd.h>  
#include <sys/mman.h> 
#define audio_reg_base  (0xb800e000) 
#define map_size    0xff 
 
static int dev_fd; 
int main(int argc, char **argv) 
{ 
 
  dev_fd = open("/dev/mem", o_rdwr | o_ndelay);    
 
  if (dev_fd < 0)  
  { 
    printf("open(/dev/mem) failed.");   
    return 0; 
  }  
 
  unsigned char *map_base=(unsigned char * )mmap(null, map_size, prot_read | prot_write, map_shared, dev_fd, audio_reg_base ); 
 
  printf("%x \n", *(volatile unsigned int *)(map_base+0x38)); //打印该寄存器地址的value 
 
#if 1 // line in 
  printf("%x \n", *(volatile unsigned int *)(map_base+0x30)); 
 
  *(volatile unsigned int *)(map_base + 0x30) = 0x208121bc; //修改该寄存器地址的value 
  usleep(1000000); 
  *(volatile unsigned int *)(map_base + 0x30) &= ~(0x1<<16); //修改该寄存器地址的value 
  usleep(1000000); 
 
  printf("%x \n", *(volatile unsigned int *)(map_base+0x30)); 
#endif 
 
  if(dev_fd) 
    close(dev_fd); 
 
  munmap(map_base,map_size);//解除映射关系 
 
  return 0; 
} 



感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!