Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Linux/arch/xtensa/mm/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 808 B image not shown  

Quelle  ioremap.c   Sprache: C

 
// 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>

void __iomem *ioremap_prot(phys_addr_t phys_addr, size_t size,
      pgprot_t prot)
{
 unsigned long pfn = __phys_to_pfn((phys_addr));
 WARN_ON(pfn_valid(pfn));

 return generic_ioremap_prot(phys_addr, size, prot);
}
EXPORT_SYMBOL(ioremap_prot);

void iounmap(volatile void __iomem *addr)
{
 unsigned long va = (unsigned long) addr;

 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;

 generic_iounmap(addr);
}
EXPORT_SYMBOL(iounmap);

Messung V0.5
C=95 H=89 G=91

¤ Dauer der Verarbeitung: 0.12 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.