common/dpaax: fix uninitialized PA-VA table case
authorShreyansh Jain <shreyansh.jain@nxp.com>
Wed, 17 Oct 2018 09:05:57 +0000 (09:05 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 24 Oct 2018 22:51:05 +0000 (00:51 +0200)
There is a possibility that either because of missing device tree entry
or lack of memory, the PA-VA table might not be available. But, the
table being transparent, the callers don't necessary check for its
initialization state. This is explicitly done during update and
translation call.

Fixes: 2f3d633aa593 ("common/dpaax: add library for PA/VA translation table")

Signed-off-by: Shreyansh Jain <shreyansh.jain@nxp.com>
drivers/common/dpaax/dpaax_iova_table.c
drivers/common/dpaax/dpaax_iova_table.h

index d54267b..075053b 100644 (file)
@@ -272,6 +272,9 @@ dpaax_iova_table_update(phys_addr_t paddr, void *vaddr, size_t length)
        uintptr_t align_vaddr;
        phys_addr_t align_paddr;
 
+       if (unlikely(dpaax_iova_table_p == NULL))
+               return -1;
+
        align_paddr = paddr & DPAAX_MEM_SPLIT_MASK;
        align_vaddr = ((uintptr_t)vaddr & DPAAX_MEM_SPLIT_MASK);
 
index 1109a36..138827e 100644 (file)
@@ -74,6 +74,9 @@ dpaax_iova_table_get_va(phys_addr_t paddr) {
        size_t offset = paddr & DPAAX_MEM_SPLIT_MASK_OFF;
        struct dpaax_iovat_element *entry;
 
+       if (unlikely(dpaax_iova_table_p == NULL))
+               return NULL;
+
        entry = dpaax_iova_table_p->entries;
 
        do {