OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [include/] [asm-m68knommu/] [irq.h] - Diff between revs 1765 and 1782

Only display areas with differences | Details | Blame | View Log

Rev 1765 Rev 1782
#ifndef _M68K_IRQ_H_
#ifndef _M68K_IRQ_H_
#define _M68K_IRQ_H_
#define _M68K_IRQ_H_
 
 
extern void disable_irq(unsigned int);
extern void disable_irq(unsigned int);
extern void enable_irq(unsigned int);
extern void enable_irq(unsigned int);
 
 
#include <linux/config.h>
#include <linux/config.h>
 
 
#ifdef CONFIG_COLDFIRE
#ifdef CONFIG_COLDFIRE
/*
/*
 *      On the ColdFire we keep track of all vectors. That way drivers
 *      On the ColdFire we keep track of all vectors. That way drivers
 *      can register whatever vector number they wish, and we can deal
 *      can register whatever vector number they wish, and we can deal
 *      with it.
 *      with it.
 */
 */
#define SYS_IRQS        256
#define SYS_IRQS        256
#define NR_IRQS         SYS_IRQS
#define NR_IRQS         SYS_IRQS
 
 
#else
#else
 
 
/*
/*
 * # of m68k interrupts
 * # of m68k interrupts
 */
 */
 
 
#define SYS_IRQS 8
#define SYS_IRQS 8
 
 
/*
/*
 * This should be the same as the max(NUM_X_SOURCES) for all the
 * This should be the same as the max(NUM_X_SOURCES) for all the
 * different m68k hosts compiled into the kernel.
 * different m68k hosts compiled into the kernel.
 * Currently the Atari has 72 and the Amiga 24, but if both are
 * Currently the Atari has 72 and the Amiga 24, but if both are
 * supported in the kernel it is better to make room for 72.
 * supported in the kernel it is better to make room for 72.
 */
 */
#if defined(CONFIG_ATARI)
#if defined(CONFIG_ATARI)
#define NR_IRQS (72+SYS_IRQS)
#define NR_IRQS (72+SYS_IRQS)
#else
#else
#define NR_IRQS (24+SYS_IRQS)
#define NR_IRQS (24+SYS_IRQS)
#endif
#endif
#endif /* CONFIG_COLDFIRE */
#endif /* CONFIG_COLDFIRE */
 
 
 
 
/*
/*
 * Interrupt source definitions
 * Interrupt source definitions
 * General interrupt sources are the level 1-7.
 * General interrupt sources are the level 1-7.
 * Adding an interrupt service routine for one of these sources
 * Adding an interrupt service routine for one of these sources
 * results in the addition of that routine to a chain of routines.
 * results in the addition of that routine to a chain of routines.
 * Each one is called in succession.  Each individual interrupt
 * Each one is called in succession.  Each individual interrupt
 * service routine should determine if the device associated with
 * service routine should determine if the device associated with
 * that routine requires service.
 * that routine requires service.
 */
 */
 
 
#define IRQ1            (1)     /* level 1 interrupt */
#define IRQ1            (1)     /* level 1 interrupt */
#define IRQ2            (2)     /* level 2 interrupt */
#define IRQ2            (2)     /* level 2 interrupt */
#define IRQ3            (3)     /* level 3 interrupt */
#define IRQ3            (3)     /* level 3 interrupt */
#define IRQ4            (4)     /* level 4 interrupt */
#define IRQ4            (4)     /* level 4 interrupt */
#define IRQ5            (5)     /* level 5 interrupt */
#define IRQ5            (5)     /* level 5 interrupt */
#define IRQ6            (6)     /* level 6 interrupt */
#define IRQ6            (6)     /* level 6 interrupt */
#define IRQ7            (7)     /* level 7 interrupt (non-maskable) */
#define IRQ7            (7)     /* level 7 interrupt (non-maskable) */
 
 
/*
/*
 * "Generic" interrupt sources
 * "Generic" interrupt sources
 */
 */
 
 
#define IRQ_SCHED_TIMER (8)    /* interrupt source for scheduling timer */
#define IRQ_SCHED_TIMER (8)    /* interrupt source for scheduling timer */
 
 
/*
/*
 * Machine specific interrupt sources.
 * Machine specific interrupt sources.
 *
 *
 * Adding an interrupt service routine for a source with this bit
 * Adding an interrupt service routine for a source with this bit
 * set indicates a special machine specific interrupt source.
 * set indicates a special machine specific interrupt source.
 * The machine specific files define these sources.
 * The machine specific files define these sources.
 */
 */
 
 
#define IRQ_MACHSPEC    (0x10000000L)
#define IRQ_MACHSPEC    (0x10000000L)
#define IRQ_IDX(irq)    ((irq) & ~IRQ_MACHSPEC)
#define IRQ_IDX(irq)    ((irq) & ~IRQ_MACHSPEC)
 
 
/*
/*
 * various flags for request_irq()
 * various flags for request_irq()
 */
 */
#define IRQ_FLG_LOCK    (0x0001)        /* handler is not replaceable   */
#define IRQ_FLG_LOCK    (0x0001)        /* handler is not replaceable   */
#define IRQ_FLG_REPLACE (0x0002)        /* replace existing handler     */
#define IRQ_FLG_REPLACE (0x0002)        /* replace existing handler     */
#define IRQ_FLG_FAST    (0x0004)
#define IRQ_FLG_FAST    (0x0004)
#define IRQ_FLG_SLOW    (0x0008)
#define IRQ_FLG_SLOW    (0x0008)
#define IRQ_FLG_STD     (0x8000)        /* internally used              */
#define IRQ_FLG_STD     (0x8000)        /* internally used              */
 
 
#ifndef CONFIG_COLDFIRE
#ifndef CONFIG_COLDFIRE
 
 
/*
/*
 * This structure is used to chain together the ISRs for a particular
 * This structure is used to chain together the ISRs for a particular
 * interrupt source (if it supports chaining).
 * interrupt source (if it supports chaining).
 */
 */
typedef struct irq_node {
typedef struct irq_node {
        void            (*handler)(int, void *, struct pt_regs *);
        void            (*handler)(int, void *, struct pt_regs *);
        unsigned long   flags;
        unsigned long   flags;
        void            *dev_id;
        void            *dev_id;
        const char      *devname;
        const char      *devname;
        struct irq_node *next;
        struct irq_node *next;
} irq_node_t;
} irq_node_t;
 
 
/*
/*
 * This function returns a new irq_node_t
 * This function returns a new irq_node_t
 */
 */
extern irq_node_t *new_irq_node(void);
extern irq_node_t *new_irq_node(void);
 
 
#endif
#endif
 
 
/*
/*
 * This structure has only 4 elements for speed reasons
 * This structure has only 4 elements for speed reasons
 */
 */
typedef struct irq_handler {
typedef struct irq_handler {
        void            (*handler)(int, void *, struct pt_regs *);
        void            (*handler)(int, void *, struct pt_regs *);
        unsigned long   flags;
        unsigned long   flags;
        void            *dev_id;
        void            *dev_id;
        const char      *devname;
        const char      *devname;
} irq_handler_t;
} irq_handler_t;
 
 
/* count of spurious interrupts */
/* count of spurious interrupts */
extern volatile unsigned int num_spurious;
extern volatile unsigned int num_spurious;
 
 
#endif /* _M68K_IRQ_H_ */
#endif /* _M68K_IRQ_H_ */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.