Linux kernel device driver address mapping notes

Linux kernel device driver address mapping notes
#include <asm/io.h>
#define ioremap(cookie,size) __arm_ioremap(cookie, size, MT_DEVICE)
//cookie indicates the physical address, size indicates the mapping size. ioremap maps the specified physical address to an idle virtual address void __iomem *
__arm_ioremap(unsigned long phys_addr, size_t size, unsigned int mtype)
{
return __arm_ioremap_caller(phys_addr, size, mtype,
__builtin_return_address(0));
}

1. Virtual address after mapping from physical address

  • Virtual address = ioremap(physical address, mapping size);
  • After use, iounmap(virtual address); //delete the mapping table

2.

ioread8(address)/readb()
ioread16(address)/readw()
ioread32(address)/readl()

iowrite8(value, address) / writeb
iowrite16(value, address) / writew
iowrite32(value, address) / writel
#include <asm/sizes.h>
SZ_4K
SZ_1M

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • An easy way to port Linux code to Windows
  • Linux kernel device driver memory management notes
  • Linux kernel device driver kernel time management notes
  • Linux kernel device driver character device driver notes
  • Linux kernel device driver virtual file system notes
  • Linux kernel device driver system call notes
  • Linux kernel device driver kernel debugging technical notes collation
  • Linux kernel device driver kernel linked list usage notes
  • Linux kernel device driver proc file system notes
  • Linux kernel device driver advanced character device driver notes
  • Linux kernel device driver Linux kernel module loading mechanism notes summary
  • Linux kernel device driver Linux kernel basic notes summary
  • Steps to transplant the new kernel to the Linux system

<<:  Tutorial on how to remotely connect to MySQL database under Linux system

>>:  Example of downloading files with vue+django

Recommend

Solution to the problem of installing MySQL compressed version zip

There was a problem when installing the compresse...

Solve the problem of docker images disappearing

1. Mirror images disappear in 50 and 93 [root@h50...

How to configure eureka in docker

eureka: 1. Build a JDK image Start the eureka con...

An example of using Dapr to simplify microservices from scratch

Table of contents Preface 1. Install Docker 2. In...

Detailed tutorial on installing Python 3.8.1 on Linux

This example takes the installation of Python 3.8...

Vue + OpenLayers Quick Start Tutorial

Openlayers is a modular, high-performance and fea...

MySQL query optimization using custom variables

Table of contents Optimizing sorting queries Avoi...

Some points on using standard HTML codes in web page creation

<br />The most common mistake made by many w...

Detailed explanation of daily_routine example code in Linux

First look at the example code: #/bin/bash cal da...