36 lines
823 B
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
// SPDX-License-Identifier: GPL-2.0-only
/*
* ioremap implementation.
*
* Copyright (C) 2015 Cadence Design Systems Inc.
*/
#include <linux/io.h>
#include <linux/pgtable.h>
#include <asm/cacheflush.h>
#include <asm/io.h>
2026-01-29 22:25:33 +08:00
void __iomem *ioremap_prot(phys_addr_t phys_addr, size_t size,
unsigned long prot)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
unsigned long pfn = __phys_to_pfn((phys_addr));
2026-01-21 18:59:54 +08:00
WARN_ON(pfn_valid(pfn));
2026-01-29 22:25:33 +08:00
return generic_ioremap_prot(phys_addr, size, __pgprot(prot));
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
EXPORT_SYMBOL(ioremap_prot);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
void iounmap(volatile void __iomem *addr)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
unsigned long va = (unsigned long) addr;
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
if ((va >= XCHAL_KIO_CACHED_VADDR &&
va - XCHAL_KIO_CACHED_VADDR < XCHAL_KIO_SIZE) ||
(va >= XCHAL_KIO_BYPASS_VADDR &&
va - XCHAL_KIO_BYPASS_VADDR < XCHAL_KIO_SIZE))
return;
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
generic_iounmap(addr);
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
EXPORT_SYMBOL(iounmap);