ktf icon indicating copy to clipboard operation
ktf copied to clipboard

[Feature] Allow specifying size of range to address mapping APIs

Open cjams opened this issue 4 years ago • 0 comments

Is your feature request related to a problem? Please describe. Some clients of the map/unmap APIs need to map a range of virtual address space. For example, mapping PCI MMIO bars that span multiple 4k pages. AcpiOsMapMemory also maps multiple 4k pages at a time. The current API only allows mapping at 4K/2M/1G granularity, but often the range is between those.

Describe the solution you'd like This feature would enable clients of the mapping APIs to specify a size of the range to map/unmap, reducing the pointer bookkeeping required by clients.

Describe alternatives you've considered Keeping the APIs as-is, and requiring each client to keep track of the pointers to each individual page in the range

cjams avatar Jan 25 '22 20:01 cjams