CN113326213A - Method for realizing address mapping in driver under Feiteng server platform - Google Patents

Method for realizing address mapping in driver under Feiteng server platform Download PDF

Info

Publication number
CN113326213A
CN113326213A CN202110563969.XA CN202110563969A CN113326213A CN 113326213 A CN113326213 A CN 113326213A CN 202110563969 A CN202110563969 A CN 202110563969A CN 113326213 A CN113326213 A CN 113326213A
Authority
CN
China
Prior art keywords
operating system
address
linux operating
mapping
kernel
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
CN202110563969.XA
Other languages
Chinese (zh)
Other versions
CN113326213B (en
Inventor
马帅
濮约刚
董博
张宁
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Beijing Institute of Computer Technology and Applications
Original Assignee
Beijing Institute of Computer Technology and Applications
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Beijing Institute of Computer Technology and Applications filed Critical Beijing Institute of Computer Technology and Applications
Priority to CN202110563969.XA priority Critical patent/CN113326213B/en
Publication of CN113326213A publication Critical patent/CN113326213A/en
Application granted granted Critical
Publication of CN113326213B publication Critical patent/CN113326213B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F12/00Accessing, addressing or allocating within memory systems or architectures
    • G06F12/02Addressing or allocation; Relocation
    • G06F12/06Addressing a physical block of locations, e.g. base addressing, module addressing, memory dedication
    • G06F12/0615Address space extension
    • G06F12/063Address space extension for I/O modules, e.g. memory mapped I/O
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y02TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
    • Y02DCLIMATE CHANGE MITIGATION TECHNOLOGIES IN INFORMATION AND COMMUNICATION TECHNOLOGIES [ICT], I.E. INFORMATION AND COMMUNICATION TECHNOLOGIES AIMING AT THE REDUCTION OF THEIR OWN ENERGY USE
    • Y02D10/00Energy efficient computing, e.g. low power processors, power management or thermal management

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Memory System Of A Hierarchy Structure (AREA)
  • Data Exchanges In Wide-Area Networks (AREA)

Abstract

The invention relates to a method for realizing address mapping in a driver under a Feiteng server platform, and belongs to the field of computers. The invention realizes the function of mapping the applied virtual address and the appointed physical address one by one in the kernel function module of the Linux operating system, the self-defined address mapping module realized in the kernel of the Linux operating system additionally provides a set of address mapping interfaces used by the kernel function module of the Linux operating system, and the function of mapping the virtual address and the physical address one by one is realized by configuring the page table items used by the kernel of the Linux operating system. The invention does not influence the address mapping function of the memory management subsystem in the kernel of the Linux operating system, improves the development freedom of the project driven by the specific requirement, can facilitate the modification of the functional module of the Linux operating system, and does not reduce the robustness and the portability of the functional module of the Linux operating system.

Description

Method for realizing address mapping in driver under Feiteng server platform
Technical Field
The invention belongs to the field of computers, and particularly relates to a method for realizing address mapping in a driver under a Feiteng server platform.
Background
The CPU accesses a Unit in the Memory by an address, where the address is divided into a virtual address and a physical address, and if the CPU does not have an MMU (Memory Management Unit) or has an MMU but is not enabled, the address sent by the CPU core when fetching an instruction or accessing the Memory is directly transmitted to an external address pin of the CPU chip and is directly received by the Memory chip, that is, the physical address. If the CPU enables the MMU, the address issued by the CPU core will be intercepted by the MMU, the address from the CPU to the MMU is called a virtual address, and the MMU translates this address into another address to be issued on an external address pin of the CPU chip, i.e., maps the virtual address to a physical address.
The processor of the current server is mainly based on the 64-bit address length, and the Linux operating system on the server can support the 64-bit address space at most. However, no address space of 64-bit length that can be supported by the Linux operating system is supported on a real server, because the current application has no large memory requirement. And the Linux operating system is a multi-process type operating system, each process has a respective user address space, and all the processes share the same kernel address space. Each process needs to dynamically map the addresses of the virtual address pages of the user address space used by the process to the physical memory pages. The operation of mapping the virtual address page to the physical address memory page is completed by the memory management subsystem of the Linux operating system kernel. The memory management subsystem of the Linux operating system kernel provides a function interface of the subsystem so as to be convenient for calling other function modules of the Linux operating system kernel. The block device access mechanism used by the server platform of the FT2000+ domestic processor is as described above.
The memory management subsystem of the Linux operating system completes the management work of all the virtual addresses and the physical addresses. In an actual engineering project, if the function module of the Linux operating system kernel needs to realize one-to-one mapping between the specified physical address and the applied virtual address. For example, in a driver module of a Linux operating system kernel, the driver module uses a specified physical memory to exchange a large amount of data with a shared data area of other driver modules. It is necessary to implement part of the functions of the Linux operating system memory management subsystem in the functional module of the Linux operating system kernel. However, the page table base address cannot be obtained in the functional module of the Linux operating system kernel, and the applied virtual address does not correspond to the physical address one to one, so that the functional module of the Linux operating system kernel cannot use the applied virtual address space. Otherwise, the Linux operating system kernel panic is generated to cause system crash. Therefore, the function of mapping the specified physical address and the applied virtual address one by one is realized in the functional module of the Linux operating system kernel, the change amount is huge, and the robustness of the changed Linux operating system kernel is also poor. Meanwhile, the universality and the portability of the functional module of the Linux operating system kernel are also reduced.
Disclosure of Invention
Technical problem to be solved
The technical problem to be solved by the invention is how to provide a method for realizing address mapping in a driver under a Feiteng server platform, so as to solve the problems of large change and poor robustness of realizing the one-to-one mapping function of a specified physical address and an applied virtual address in a functional module of a Linux operating system kernel.
(II) technical scheme
In order to solve the technical problem, the invention provides a method for realizing address mapping in a driver under a Feiteng server platform, which comprises the following steps:
s1, powering on and starting the kernel of the Linux operating system, and entering a memory initialization stage; reserving a physical address space to be used, namely, the specified physical address space is not registered in a memory management subsystem of the Linux operating system; if the operation is successful, the operation goes to step S2, otherwise, the Linux operating system kernel is alarmed, and then the default function module of the Linux operating system kernel is used;
s2, registering the successfully reserved physical address space into a resource linked list of a Linux operating system kernel;
s3, realizing a self-defined address mapping module, wherein the self-defined address module has the function of mapping the virtual address of the transmission interface with the physical address registered in the Linux operating system kernel in the step, and the self-defined address mapping module provides a calling interface for the external module; the user-defined address mapping module can complete the mapping of the virtual address to the designated physical address, the step S4 is entered, otherwise, the Linux operating system kernel is alarmed, and then the Linux operating system kernel default function module is used;
s4, entering an initialization stage of a kernel function module of the Linux operating system, and applying a virtual memory address space meeting the requirement from a memory management subsystem of a kernel of the Linux operating system by the kernel function module of the Linux operating system;
s5, the Linux operating system kernel function module acquires the reserved physical address space from the resource chain table which is registered in the Linux operating system kernel in the step S2;
s6, calling the interface provided by the self-defined address mapping module realized in the step S2 and called by the external module, and realizing the interface of the address mapping function in the kernel function module of the Linux operating system;
and S7, in the kernel function module of the Linux operating system, mapping between the applied virtual address space and the reserved physical address space is realized by using the interface of the address mapping function.
Further, the Feiteng server platform is a 64-bit machine, and bit widths of the virtual address and the physical address are 64 bits.
Further, the effective bit width of the virtual address of the operating system run by the Feiteng server platform is 48 bits.
Further, the size of the physical address space reserved in the step S1 is defined by itself according to the requirement.
Further, the step S3 specifically includes the following steps:
s31, realizing a self-defined address mapping module, transmitting the first address of the virtual address space and the first address of the physical address space received by the self-defined address mapping module through a calling interface to a standard address mapping interface function provided in a kernel of the Linux operating system, and transmitting the size of the virtual address space to be mapped into the standard address mapping interface function provided by the kernel of the Linux operating system, so as to realize the configuration of page table items of the Linux operating system according to the virtual address and the physical address;
s32, configuring the attribute of the page table item according to the interface of the standard configuration page table item attribute provided by the Linux operating system kernel.
Further, the attribute of the page table entry includes NO _ BLOCK _ MAPPINGS for marking a MAPPING that restricts the BLOCK _ MAPPING megapage.
Further, the attribute of the page table entry includes NO _ CONT _ MAPPINGS, which is used to mark a physical page whose mapping is restricted from being continuous.
Further, the virtual memory address space applied in step S4 is 1 GB.
Further, in the step S5, when the reserved physical address space is acquired, the Linux operating system kernel function module further acquires a physical address head address and a size of the reserved physical address space.
Further, the step S7 is further configured to configure the page table when mapping the requested virtual address space and the reserved physical address space is performed by using the interface of the address mapping function.
(III) advantageous effects
The invention provides a method for realizing address mapping in a driver under a Feiteng server platform, which realizes the function of mapping an applied virtual address and an appointed physical address one by one in a kernel function module of a Linux operating system. The self-defined address mapping module realized in the Linux operating system kernel additionally provides a set of address mapping interfaces used by the Linux operating system kernel function module, and realizes the one-to-one mapping function of the virtual address and the physical address by configuring the page table item used by the Linux operating system kernel. However, it is very complicated to implement mapping between the virtual address and the specified physical address in the kernel function module in the Linux operating system kernel, and the stability of the Linux operating system kernel is reduced. The invention realizes a self-defined address mapping module which is specially used in a functional module of the kernel of the Linux operating system in a standard interface for mapping a virtual address and a physical address in the kernel of the Linux operating system, and packages the self-defined address mapping module into an interface used by other functional modules. The invention can not influence the address mapping function of the memory management subsystem in the kernel of the Linux operating system. The development freedom degree of engineering driven by specific requirements is improved.
Compared with the prior art, the technical method provided by the invention provides a set of functional interfaces for realizing one-to-one correspondence of the designated virtual address and the physical address for the kernel module of the Linux operating system. When a certain physical address needs to be used in the Linux operating system kernel, the functional module of the Linux operating system can be conveniently modified, and the robustness and the portability of the Linux operating system functional module cannot be reduced. And the method can be compatible with the running of the existing application program on the system, and cannot influence the existing user space program.
Drawings
FIG. 1 is a flowchart of a method for address mapping according to the present invention.
Detailed Description
In order to make the objects, contents and advantages of the present invention clearer, the following detailed description of the embodiments of the present invention will be made in conjunction with the accompanying drawings and examples.
The effective bit width of a virtual address of an operating system running on the FT2000+ new-generation domestic multi-core processor reaches 48 bits. And the virtual address space in the operating system that is available for allocation to the block device is up to 512 TB. The method mainly realizes the one-to-one mapping function of the appointed virtual address and the appointed physical address in the functional module of the Linux operating system kernel. The functional module of the Linux operating system kernel can use the designated physical address to perform functions such as data storage, transmission, control and the like. And the robustness of the kernel of the Linux operating system cannot be reduced after the change, and the universality and the portability of the functional module of the kernel of the Linux operating system cannot be reduced. And the user can conveniently carry out secondary development on the kernel of the Linux operating system.
On a 64-bit machine, both the virtual and physical addresses are 64 bits wide. The aforementioned 48 bits are effective bit wide, i.e., 0xFFFF xxxx xxxx xxxx, and the upper 16 bits are 1, i.e., four F of the upper address.
The invention realizes that a virtual address space is applied through the Linux operating system memory management subsystem in the functional module of the Linux operating system kernel and is mapped with the appointed physical address space one by one. Therefore, reading and writing of the applied virtual address space in the functional module of the Linux operating system kernel are substantially reading and writing of the specified physical address space. The specific implementation steps of the invention are shown with reference to fig. 1. The method comprises the following specific steps.
And S1, powering on and starting the kernel of the Linux operating system, and entering a memory initialization stage. And reserving a physical address space required to be used, namely, the specified physical address space is not registered in a memory management subsystem of the Linux operating system. The size of the reserved physical address space is self-defined according to the requirement. If the result is successful, the step S2 is entered, otherwise, the Linux operating system kernel is alerted, and then the default function module of the Linux operating system kernel is used.
S2, registering the successfully reserved physical address space into a resource linked list of a Linux operating system kernel;
and S3, realizing a custom address mapping module, wherein the custom address module has the function of mapping the virtual address of the transmission interface with the physical address registered in the Linux operating system kernel in the step, and the custom address mapping module provides a calling interface for the external module. The specific implementation steps are as follows:
s31, the user-defined address mapping module transmits the first address of the virtual address space and the first address of the physical address space received by the calling interface to a standard address mapping interface function provided by the kernel of the Linux operating system, and transmits the size of the virtual address space to be mapped into the standard address mapping interface function provided by the kernel of the Linux operating system, so as to configure the page table entry of the Linux operating system according to the virtual address and the physical address.
S32, configuring the attribute of the page table item according to the interface of the standard configuration page table item attribute provided by the Linux operating system kernel. For example, the attribute NO _ BLOCK _ MAPPING is used to mark the MAPPING of the restricted BLOCK _ MAPPING megapage, and the attribute NO _ CONT _ MAPPING is used to mark the consecutive physical pages of the restricted MAPPING. The invention uses page table item of attribute NO _ BLOCK _ MAPPINGS configuration.
And the user-defined address mapping module can map the virtual address to the specified physical address, the step S4 is carried out, otherwise, the Linux operating system kernel is alarmed, and then the default function module of the Linux operating system kernel is used.
S4, entering an initialization stage of the Linux operating system kernel function module, and applying a virtual memory address space meeting the requirement from the memory management subsystem of the Linux operating system kernel by the Linux operating system kernel function module.
S5, the Linux operating system kernel function module acquires the reserved physical address space from the resource linked list which is registered in the Linux operating system kernel in the step S2. And the Linux operating system kernel function module acquires the head address and the size of the physical address of the reserved physical address space.
S6, calling the interface for calling the external module provided by the self-defined address mapping module realized in the step S2, and realizing the interface of the address mapping function in the kernel function module of the Linux operating system. That is, mapping a block of virtual address space, for example, 1GB, applied by the functional module to the physical address space reserved in step 1 is implemented in the Linux operating system kernel.
S7, in the Linux operating system kernel function module, mapping between the applied virtual address space and the reserved physical address space is realized by using the interface of the address mapping function, and a page table is configured.
The invention realizes the function of mapping the applied virtual address and the appointed physical address one by one in the kernel function module of the Linux operating system. The self-defined address mapping module realized in the Linux operating system kernel additionally provides a set of address mapping interfaces used by the Linux operating system kernel function module, and realizes the one-to-one mapping function of the virtual address and the physical address by configuring the page table item used by the Linux operating system kernel. However, it is very complicated to implement mapping between the virtual address and the specified physical address in the kernel function module in the Linux operating system kernel, and the stability of the Linux operating system kernel is reduced. The invention realizes a self-defined address mapping module which is specially used in a functional module of the kernel of the Linux operating system in a standard interface for mapping a virtual address and a physical address in the kernel of the Linux operating system, and packages the self-defined address mapping module into an interface used by other functional modules. The invention can not influence the address mapping function of the memory management subsystem in the kernel of the Linux operating system. The development freedom degree of engineering driven by specific requirements is improved.
Compared with the prior art, the technical method provided by the invention provides a set of functional interfaces for realizing one-to-one correspondence of the designated virtual address and the physical address for the kernel module of the Linux operating system. When a certain physical address needs to be used in the Linux operating system kernel, the functional module of the Linux operating system can be conveniently modified, and the robustness and the portability of the Linux operating system functional module cannot be reduced. And the method can be compatible with the running of the existing application program on the system, and cannot influence the existing user space program.
The above description is only a preferred embodiment of the present invention, and it should be noted that, for those skilled in the art, several modifications and variations can be made without departing from the technical principle of the present invention, and these modifications and variations should also be regarded as the protection scope of the present invention.

Claims (10)

1. A method for realizing address mapping in a driver under a Feiteng server platform is characterized by comprising the following steps:
s1, powering on and starting the kernel of the Linux operating system, and entering a memory initialization stage; reserving a physical address space to be used, namely, the specified physical address space is not registered in a memory management subsystem of the Linux operating system; if the operation is successful, the operation goes to step S2, otherwise, the Linux operating system kernel is alarmed, and then the default function module of the Linux operating system kernel is used;
s2, registering the successfully reserved physical address space into a resource linked list of a Linux operating system kernel;
s3, realizing a self-defined address mapping module, wherein the self-defined address module has the function of mapping the virtual address of the transmission interface with the physical address registered in the Linux operating system kernel in the step, and the self-defined address mapping module provides a calling interface for the external module; the user-defined address mapping module can complete the mapping of the virtual address to the designated physical address, the step S4 is entered, otherwise, the Linux operating system kernel is alarmed, and then the Linux operating system kernel default function module is used;
s4, entering an initialization stage of a kernel function module of the Linux operating system, and applying a virtual memory address space meeting the requirement from a memory management subsystem of a kernel of the Linux operating system by the kernel function module of the Linux operating system;
s5, the Linux operating system kernel function module acquires the reserved physical address space from the resource chain table which is registered in the Linux operating system kernel in the step S2;
s6, calling the interface provided by the self-defined address mapping module realized in the step S2 and called by the external module, and realizing the interface of the address mapping function in the kernel function module of the Linux operating system;
and S7, in the kernel function module of the Linux operating system, mapping between the applied virtual address space and the reserved physical address space is realized by using the interface of the address mapping function.
2. The method for implementing address mapping in a driver under a Feiteng server platform according to claim 1, wherein the Feiteng server platform is a 64-bit machine, and bit widths of the virtual address and the physical address are 64 bits.
3. The method for implementing address mapping in a driver under a Feiteng server platform according to claim 2, wherein an effective bit width of a virtual address of an operating system running on the Feiteng server platform is 48 bits.
4. The method for implementing address mapping in a driver under the Feiteng Server platform as claimed in claim 2, wherein the size of the physical address space reserved in step S1 is self-defined according to the requirement.
5. The method for implementing address mapping in a driver under the Feiteng Server platform according to any one of claims 1 to 4, wherein the step S3 specifically includes the following steps:
s31, realizing a self-defined address mapping module, transmitting the first address of the virtual address space and the first address of the physical address space received by the self-defined address mapping module through a calling interface to a standard address mapping interface function provided in a kernel of the Linux operating system, and transmitting the size of the virtual address space to be mapped into the standard address mapping interface function provided by the kernel of the Linux operating system, so as to realize the configuration of page table items of the Linux operating system according to the virtual address and the physical address;
s32, configuring the attribute of the page table item according to the interface of the standard configuration page table item attribute provided by the Linux operating system kernel.
6. The method of claim 5, wherein the attribute of the page table entry comprises NO _ BLOCK _ MAPPING for marking a MAPPING that restricts BLOCK _ MAPPING megapages.
7. The method of claim 5, wherein the attribute of the page table entry comprises NO _ CONT _ MAPPINGS for marking a physical page that restricts the mapping from continuing.
8. The method for implementing address mapping in a driver under the FT server platform according to claim 1 or 5, wherein the virtual memory address space applied in the step S4 is 1 GB.
9. The method for implementing address mapping in a driver under the Feiteng Server platform according to claim 1 or 5, wherein in the step S5, when acquiring the reserved physical address space, the Linux operating system kernel function module further acquires the physical address head address and size of the reserved physical address space.
10. The method for implementing address mapping in driver under the Feiteng Server platform as in claim 1 or 5, wherein the step S7 is further configured with page table when mapping the requested virtual address space with the reserved physical address space is implemented by using the interface of the address mapping function.
CN202110563969.XA 2021-05-24 2021-05-24 Method for realizing address mapping in driver under Feiteng server platform Active CN113326213B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202110563969.XA CN113326213B (en) 2021-05-24 2021-05-24 Method for realizing address mapping in driver under Feiteng server platform

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202110563969.XA CN113326213B (en) 2021-05-24 2021-05-24 Method for realizing address mapping in driver under Feiteng server platform

Publications (2)

Publication Number Publication Date
CN113326213A true CN113326213A (en) 2021-08-31
CN113326213B CN113326213B (en) 2023-07-28

Family

ID=77416421

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202110563969.XA Active CN113326213B (en) 2021-05-24 2021-05-24 Method for realizing address mapping in driver under Feiteng server platform

Country Status (1)

Country Link
CN (1) CN113326213B (en)

Citations (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102929747A (en) * 2012-11-05 2013-02-13 中标软件有限公司 Method for treating crash dump of Linux operation system based on loongson server
CN103678175A (en) * 2013-12-05 2014-03-26 长城信息产业股份有限公司 Address concealing method and embedded equipment based on address concealing technology
US8745442B1 (en) * 2011-04-28 2014-06-03 Open Invention Network, Llc System and method for hybrid kernel- and user-space checkpointing
CN103984655A (en) * 2014-04-29 2014-08-13 三星半导体(中国)研究开发有限公司 Processing method and processing device for data access
US20170032118A1 (en) * 2015-07-31 2017-02-02 Digital Guardian, Inc. Systems and methods of protecting data from injected malware
CN107368384A (en) * 2017-07-21 2017-11-21 郑州云海信息技术有限公司 A kind of Linux server abnormal information dump system and method
CN108062253A (en) * 2017-12-11 2018-05-22 北京奇虎科技有限公司 The communication means of a kind of kernel state and User space, device and terminal
CN108334413A (en) * 2017-12-22 2018-07-27 天津麒麟信息技术有限公司 Information transmitting methods between a kind of firmware and operating system based on platform of soaring
CN109710544A (en) * 2017-10-26 2019-05-03 杭州华为数字技术有限公司 Memory pool access method, computer system and processing unit
CN111444119A (en) * 2020-03-25 2020-07-24 北京计算机技术及应用研究所 Feiteng platform nonvolatile memory registration method based on kernel parameters
CN112148229A (en) * 2020-10-12 2020-12-29 北京计算机技术及应用研究所 Method for accelerating nonvolatile memory read-write efficiency under Feiteng server platform

Patent Citations (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8745442B1 (en) * 2011-04-28 2014-06-03 Open Invention Network, Llc System and method for hybrid kernel- and user-space checkpointing
CN102929747A (en) * 2012-11-05 2013-02-13 中标软件有限公司 Method for treating crash dump of Linux operation system based on loongson server
CN103678175A (en) * 2013-12-05 2014-03-26 长城信息产业股份有限公司 Address concealing method and embedded equipment based on address concealing technology
CN103984655A (en) * 2014-04-29 2014-08-13 三星半导体(中国)研究开发有限公司 Processing method and processing device for data access
US20170032118A1 (en) * 2015-07-31 2017-02-02 Digital Guardian, Inc. Systems and methods of protecting data from injected malware
CN107368384A (en) * 2017-07-21 2017-11-21 郑州云海信息技术有限公司 A kind of Linux server abnormal information dump system and method
CN109710544A (en) * 2017-10-26 2019-05-03 杭州华为数字技术有限公司 Memory pool access method, computer system and processing unit
CN108062253A (en) * 2017-12-11 2018-05-22 北京奇虎科技有限公司 The communication means of a kind of kernel state and User space, device and terminal
CN108334413A (en) * 2017-12-22 2018-07-27 天津麒麟信息技术有限公司 Information transmitting methods between a kind of firmware and operating system based on platform of soaring
CN111444119A (en) * 2020-03-25 2020-07-24 北京计算机技术及应用研究所 Feiteng platform nonvolatile memory registration method based on kernel parameters
CN112148229A (en) * 2020-10-12 2020-12-29 北京计算机技术及应用研究所 Method for accelerating nonvolatile memory read-write efficiency under Feiteng server platform

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
李荣振: "基于飞腾平台的GPU图形加速技术研究及应用", 《中国优秀硕士学位论文全文数据库 (信息科技辑)》, pages 138 - 5735 *

Also Published As

Publication number Publication date
CN113326213B (en) 2023-07-28

Similar Documents

Publication Publication Date Title
US11567803B2 (en) Inter-server memory pooling
US10223288B2 (en) Graphics processing microprocessor system having a master device communicate with a slave device
WO2016082196A1 (en) File access method and apparatus and storage device
US20140314083A1 (en) Low Latency Communication Via Memory Windows
TW201423422A (en) System and method for sharing device having PCIe interface
US8868883B1 (en) Virtual memory management for real-time embedded devices
CN112099903B (en) Memory management method and device of virtual machine, CPU chip and server
WO2015180598A1 (en) Method, apparatus and system for processing access information of storage device
CN104794069A (en) User state allocation method and system for cache in CPU
KR20210068587A (en) Secure Memory Access in Virtualized Computing Environments
CN116010296A (en) Method, device and system for processing request
EP4293523A1 (en) Technologies for memory tagging
CN116954830B (en) Method for enabling virtual machine to realize msi/x interrupt under jailhouse
CN113326213A (en) Method for realizing address mapping in driver under Feiteng server platform
CN111290829A (en) Access control module, virtual machine monitor and access control method
CN110765060A (en) Method, device, equipment and medium for converting MDIO bus into parallel bus
JP2016173741A (en) Information processing apparatus, information processing method, and program
JP5104501B2 (en) Virtual machine system, host computer, virtual machine construction method and program
JP2019164661A (en) Information processing device, information processing method and program
JP2004021987A (en) Method and system for providing location of data interface
US20240176640A1 (en) Method and apparatus for managing memory
US11835992B2 (en) Hybrid memory system interface
EP4276638A1 (en) System and method for accessing remote resource
JP2001022640A (en) Memory managing method
CN117290263A (en) Large page mapping realization method and system for large capacity BAR space

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant