habanalabs: remove redundant member from parser struct

use_virt_addr member was used for telling whether to treat the
addresses in the CB as virtual during parsing. We disabled it only
when calling the parser from the driver memset device function,
and since this call had been removed, it should always be enabled.

Signed-off-by: Dalit Ben Zoor <dbenzoor@habana.ai>
Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
This commit is contained in:
Dalit Ben Zoor 2019-05-01 13:16:18 +03:00 committed by Oded Gabbay
parent 94cb669ceb
commit 5809e18e02
3 changed files with 1 additions and 5 deletions

View File

@ -93,7 +93,6 @@ static int cs_parser(struct hl_fpriv *hpriv, struct hl_cs_job *job)
parser.user_cb_size = job->user_cb_size; parser.user_cb_size = job->user_cb_size;
parser.ext_queue = job->ext_queue; parser.ext_queue = job->ext_queue;
job->patched_cb = NULL; job->patched_cb = NULL;
parser.use_virt_addr = hdev->mmu_enable;
rc = hdev->asic_funcs->cs_parser(hdev, &parser); rc = hdev->asic_funcs->cs_parser(hdev, &parser);
if (job->ext_queue) { if (job->ext_queue) {

View File

@ -3903,7 +3903,7 @@ int goya_cs_parser(struct hl_device *hdev, struct hl_cs_parser *parser)
if (!parser->ext_queue) if (!parser->ext_queue)
return goya_parse_cb_no_ext_queue(hdev, parser); return goya_parse_cb_no_ext_queue(hdev, parser);
if ((goya->hw_cap_initialized & HW_CAP_MMU) && parser->use_virt_addr) if (goya->hw_cap_initialized & HW_CAP_MMU)
return goya_parse_cb_mmu(hdev, parser); return goya_parse_cb_mmu(hdev, parser);
else else
return goya_parse_cb_no_mmu(hdev, parser); return goya_parse_cb_no_mmu(hdev, parser);

View File

@ -779,8 +779,6 @@ struct hl_cs_job {
* @patched_cb_size: the size of the CB after parsing. * @patched_cb_size: the size of the CB after parsing.
* @ext_queue: whether the job is for external queue or internal queue. * @ext_queue: whether the job is for external queue or internal queue.
* @job_id: the id of the related job inside the related CS. * @job_id: the id of the related job inside the related CS.
* @use_virt_addr: whether to treat the addresses in the CB as virtual during
* parsing.
*/ */
struct hl_cs_parser { struct hl_cs_parser {
struct hl_cb *user_cb; struct hl_cb *user_cb;
@ -793,7 +791,6 @@ struct hl_cs_parser {
u32 patched_cb_size; u32 patched_cb_size;
u8 ext_queue; u8 ext_queue;
u8 job_id; u8 job_id;
u8 use_virt_addr;
}; };