video: tegra: host: nvdla: update dma mask

- update dma mask to set to 39 bit for allow dma address as per POR.

Bug 200565560

Change-Id: I86fd470b46089347958c44174ed535a6a55ef2f9
Signed-off-by: Shridhar Rasal <srasal@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvidia/+/2283414
Reviewed-by: Automatic_Commit_Validation_User
Reviewed-by: Anup Mahindre <amahindre@nvidia.com>
Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
Reviewed-by: automaticguardword <automaticguardword@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
GVS: Gerrit_Virtual_Submit
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
Shridhar Rasal
2020-01-21 21:43:46 -08:00
committed by Laxman Dewangan
parent f88862a040
commit bd8b6299e5

View File

@@ -1,7 +1,7 @@
/*
* NVDLA driver for T194
*
* Copyright (c) 2016-2019, NVIDIA Corporation. All rights reserved.
* Copyright (c) 2016-2020, NVIDIA Corporation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
@@ -737,7 +737,7 @@ static int nvdla_probe(struct platform_device *pdev)
goto err_no_ip;
}
dma_set_mask(dev, DMA_BIT_MASK(37));
dma_set_mask(dev, DMA_BIT_MASK(39));
nvdla_dev = devm_kzalloc(dev, sizeof(*nvdla_dev), GFP_KERNEL);
if (!nvdla_dev) {