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


Quelle  irqflags.h   Sprache: C

 
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
 */

#ifndef _ASM_IRQFLAGS_H
#define _ASM_IRQFLAGS_H

#ifndef __ASSEMBLER__

#include <linux/compiler.h>
#include <linux/stringify.h>
#include <asm/loongarch.h>

static inline void arch_local_irq_enable(void)
{
 u32 flags = CSR_CRMD_IE;
 register u32 mask asm("t0") = CSR_CRMD_IE;

 __asm__ __volatile__(
  "csrxchg %[val], %[mask], %[reg]\n\t"
  : [val] "+r" (flags)
  : [mask] "r" (mask), [reg] "i" (LOONGARCH_CSR_CRMD)
  : "memory");
}

static inline void arch_local_irq_disable(void)
{
 u32 flags = 0;
 register u32 mask asm("t0") = CSR_CRMD_IE;

 __asm__ __volatile__(
  "csrxchg %[val], %[mask], %[reg]\n\t"
  : [val] "+r" (flags)
  : [mask] "r" (mask), [reg] "i" (LOONGARCH_CSR_CRMD)
  : "memory");
}

static inline unsigned long arch_local_irq_save(void)
{
 u32 flags = 0;
 register u32 mask asm("t0") = CSR_CRMD_IE;

 __asm__ __volatile__(
  "csrxchg %[val], %[mask], %[reg]\n\t"
  : [val] "+r" (flags)
  : [mask] "r" (mask), [reg] "i" (LOONGARCH_CSR_CRMD)
  : "memory");
 return flags;
}

static inline void arch_local_irq_restore(unsigned long flags)
{
 register u32 mask asm("t0") = CSR_CRMD_IE;

 __asm__ __volatile__(
  "csrxchg %[val], %[mask], %[reg]\n\t"
  : [val] "+r" (flags)
  : [mask] "r" (mask), [reg] "i" (LOONGARCH_CSR_CRMD)
  : "memory");
}

static inline unsigned long arch_local_save_flags(void)
{
 u32 flags;
 __asm__ __volatile__(
  "csrrd %[val], %[reg]\n\t"
  : [val] "=r" (flags)
  : [reg] "i" (LOONGARCH_CSR_CRMD)
  : "memory");
 return flags;
}

static inline int arch_irqs_disabled_flags(unsigned long flags)
{
 return !(flags & CSR_CRMD_IE);
}

static inline int arch_irqs_disabled(void)
{
 return arch_irqs_disabled_flags(arch_local_save_flags());
}

#endif /* #ifndef __ASSEMBLER__ */

#endif /* _ASM_IRQFLAGS_H */

Messung V0.5
C=96 H=88 G=91

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