Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Quelle  ioremap.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0-only

#include <linux/mm.h>
#include <linux/io.h>

static ioremap_prot_hook_t ioremap_prot_hook;

int arm64_ioremap_prot_hook_register(ioremap_prot_hook_t hook)
{
 if (WARN_ON(ioremap_prot_hook))
  return -EBUSY;

 ioremap_prot_hook = hook;
 return 0;
}

void __iomem *ioremap_prot(phys_addr_t phys_addr, size_t size,
      pgprot_t pgprot)
{
 unsigned long last_addr = phys_addr + size - 1;

 /* Don't allow outside PHYS_MASK */
 if (last_addr & ~PHYS_MASK)
  return NULL;

 /* Don't allow RAM to be mapped. */
 if (WARN_ON(pfn_is_map_memory(__phys_to_pfn(phys_addr))))
  return NULL;

 /*
 * If a hook is registered (e.g. for confidential computing
 * purposes), call that now and barf if it fails.
 */

 if (unlikely(ioremap_prot_hook) &&
     WARN_ON(ioremap_prot_hook(phys_addr, size, &pgprot))) {
  return NULL;
 }

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

/*
 * Must be called after early_fixmap_init
 */

void __init early_ioremap_init(void)
{
 early_ioremap_setup();
}

bool arch_memremap_can_ram_remap(resource_size_t offset, size_t size,
     unsigned long flags)
{
 unsigned long pfn = PHYS_PFN(offset);

 return pfn_is_map_memory(pfn);
}

Messung V0.5
C=92 H=100 G=95

¤ Dauer der Verarbeitung: 0.0 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.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge