Commit efd18446 authored by Ramesh Gupta's avatar Ramesh Gupta Committed by Hari Kanigeri

SYSLINK: Ducati fix for 16MB TLB updated

This fixes the 16MB TLB issue.

Signed-off-by: Ramesh Gupta G<grgupta@ti.com>
Signed-off-by: default avatarC A Subramaniam <subramaniam.ca@ti.com>
parent 0788ae47
......@@ -933,7 +933,10 @@ static int add_dsp_mmu_entry(u32 *phys_addr, u32 *dsp_addr,
status = get_mmu_entry_size(*phys_addr,
(size - mapped_size), &size_tlb, &entry_size);
if (size_tlb == SECTION)
if (size_tlb == SUPER_SECTION)
page_size = HW_PAGE_SIZE_16MB;
else if (size_tlb == SECTION)
page_size = HW_PAGE_SIZE_1MB;
else if (size_tlb == LARGE_PAGE)
......
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