/* SPDX-License-Identifier: GPL-2.0 */ /* * arch/arm/include/asm/fiq.h * * Support for FIQ on ARM architectures. * Written by Philip Blundell <philb@gnu.org>, 1998 * Re-written by Russell King * * NOTE: The FIQ mode registers are not magically preserved across * suspend/resume. * * Drivers which require these registers to be preserved across power * management operations must implement appropriate suspend/resume handlers to * save and restore them.
*/
#ifndef __ASM_FIQ_H #define __ASM_FIQ_H
#include <asm/ptrace.h>
struct fiq_handler { struct fiq_handler *next; /* Name
*/ constchar *name; /* Called to ask driver to relinquish/ * reacquire FIQ * return zero to accept, or -<errno>
*/ int (*fiq_op)(void *, int relinquish); /* data for the relinquish/reacquire functions
*/ void *dev_id;
};
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.