Commit 76e1ff37 authored by Ofir Bitton's avatar Ofir Bitton Committed by Oded Gabbay

accel/habanalabs: expose dram reserved size by kmd

We expose this in order for user applications to know how much dram
is reserved for internal use.
Signed-off-by: default avatarOfir Bitton <obitton@habana.ai>
Reviewed-by: default avatarOded Gabbay <ogabbay@kernel.org>
Signed-off-by: default avatarOded Gabbay <ogabbay@kernel.org>
parent 0e418ab7
...@@ -109,6 +109,7 @@ static int hw_ip_info(struct hl_device *hdev, struct hl_info_args *args) ...@@ -109,6 +109,7 @@ static int hw_ip_info(struct hl_device *hdev, struct hl_info_args *args)
hw_ip.security_enabled = prop->fw_security_enabled; hw_ip.security_enabled = prop->fw_security_enabled;
hw_ip.revision_id = hdev->pdev->revision; hw_ip.revision_id = hdev->pdev->revision;
hw_ip.engine_core_interrupt_reg_addr = prop->engine_core_interrupt_reg_addr; hw_ip.engine_core_interrupt_reg_addr = prop->engine_core_interrupt_reg_addr;
hw_ip.reserved_dram_size = dram_kmd_size;
return copy_to_user(out, &hw_ip, return copy_to_user(out, &hw_ip,
min((size_t) size, sizeof(hw_ip))) ? -EFAULT : 0; min((size_t) size, sizeof(hw_ip))) ? -EFAULT : 0;
......
...@@ -888,6 +888,7 @@ enum hl_server_type { ...@@ -888,6 +888,7 @@ enum hl_server_type {
* @tpc_interrupt_id: interrupt id for TPC to use in order to raise events towards the host. * @tpc_interrupt_id: interrupt id for TPC to use in order to raise events towards the host.
* @engine_core_interrupt_reg_addr: interrupt register address for engine core to use * @engine_core_interrupt_reg_addr: interrupt register address for engine core to use
* in order to raise events toward FW. * in order to raise events toward FW.
* @reserved_dram_size: DRAM size reserved for driver and firmware.
*/ */
struct hl_info_hw_ip_info { struct hl_info_hw_ip_info {
__u64 sram_base_address; __u64 sram_base_address;
...@@ -928,6 +929,7 @@ struct hl_info_hw_ip_info { ...@@ -928,6 +929,7 @@ struct hl_info_hw_ip_info {
__u32 reserved8; __u32 reserved8;
__u32 reserved9; __u32 reserved9;
__u64 engine_core_interrupt_reg_addr; __u64 engine_core_interrupt_reg_addr;
__u64 reserved_dram_size;
}; };
struct hl_info_dram_usage { struct hl_info_dram_usage {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment