Linux macro definition request_mem_region ()

Source: Internet
Author: User
Linux macro definition request_mem_region () -- Linux general technology-Linux programming and kernel information. The following is a detailed description. Based on the I/O Region operation function _ XXX_region (), Linux defines three macros for operating I/O memory resources in the header file include/linux/ioport. h:

① Request_mem_region () Macro, requesting allocation of specified I/O memory resources.

② Check _ mem_region () macro to check whether the specified I/O memory resources are occupied.

③ Release _ mem_region () macro to release the specified I/O memory resources.

The three macros are defined as follows:

# Define request_mem_region (start, n, name)
_ Request_region (& iomem_resource, (start), (n), (name ))
# Define check_mem_region (start, n)
_ Check_region (& iomem_resource, (start), (n ))
# Define release_mem_region (start, n)
_ Release_region (& iomem_resource, (start), (n ))

Here, the start parameter is the starting physical address of the I/O memory resource (the physical address in the CPU's RAM physical address space), and the parameter n specifies the size of the I/O memory resource.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.