mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
22 lines
1.3 KiB
Plaintext
22 lines
1.3 KiB
Plaintext
table_name("memory_device_mapped_addresses")
|
|
description("Data associated for address mapping of physical memory devices.")
|
|
schema([
|
|
Column("handle", TEXT, "Handle, or instance number, associated with the structure"),
|
|
Column("memory_device_handle", TEXT,
|
|
"Handle of the memory device structure associated with this structure"),
|
|
Column("memory_array_mapped_address_handle", TEXT,
|
|
"Handle of the memory array mapped address to which this device range is mapped to"),
|
|
Column("starting_address", TEXT,
|
|
"Physical stating address, in kilobytes, of a range of memory mapped to physical memory array"),
|
|
Column("ending_address", TEXT,
|
|
"Physical ending address of last kilobyte of a range of memory mapped to physical memory array"),
|
|
Column("partition_row_position", INTEGER,
|
|
"Identifies the position of the referenced memory device in a row of the address partition"),
|
|
Column("interleave_position", INTEGER,
|
|
"The position of the device in a interleave, i.e. 0 indicates non-interleave, 1 indicates 1st interleave, 2 indicates 2nd interleave, etc."),
|
|
Column("interleave_data_depth", INTEGER,
|
|
"The max number of consecutive rows from memory device that are accessed in a single interleave transfer; 0 indicates device is non-interleave"),
|
|
])
|
|
|
|
implementation("smbios_tables@genMemoryDeviceMappedAddresses")
|