* arch/arm/src/armv7-a/arm_physpgaddr.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <sys/types.h>
#include <assert.h>
#include <debug.h>
#include <nuttx/arch.h>
#include <nuttx/addrenv.h>
#include <nuttx/pgalloc.h>
#include "chip.h"
#include "mmu.h"
#include "pgalloc.h"
#ifdef CONFIG_MM_PGALLOC
* Public Functions
****************************************************************************/
* Name: up_addrenv_va_to_pa
*
* Description:
* Check if the virtual address lies in the user data area and, if so
* get the mapping to the physical address in the page pool.
*
****************************************************************************/
uintptr_t arm_addrenv_va_to_pa(uintptr_t *l1table, uintptr_t vaddr)
{
uintptr_t *l2table;
uintptr_t paddr;
uintptr_t l1entry;
int index;
* address regions.
*/
if (arm_uservaddr(vaddr))
{
* address.
*/
l1entry = mmu_l1table_getentry(l1table, vaddr);
if ((l1entry & PMD_TYPE_MASK) == PMD_TYPE_PTE)
{
* level 1 page table entry.
*/
paddr = (l1entry & PMD_PTE_PADDR_MASK);
l2table = (uintptr_t *)arm_pgvaddr(paddr);
if (l2table)
{
* that we re-read from physical memory
*/
index = (vaddr & SECTION_MASK) >> MM_PGSHIFT;
up_invalidate_dcache((uintptr_t)&l2table[index],
(uintptr_t)&l2table[index] +
sizeof(uint32_t));
* virtual address. Extract the physical address of the page
* containing the mapping of the virtual address.
*/
paddr = l2table[index] & PTE_SMALL_PADDR_MASK;
* corresponding to the virtual address.
*/
return paddr + (vaddr & MM_PGMASK);
}
}
}
return vaddr;
}
uintptr_t up_addrenv_va_to_pa(void *va)
{
return arm_addrenv_va_to_pa(mmu_l1_getpgtable(), (uintptr_t)va);
}
#endif