summaryrefslogtreecommitdiffstats
path: root/arch/sparc/include/asm/irq.h
blob: 5d0f7564e9b8e8656b7b9c2ebb07ee89e28a1a9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* IRQ functions
 *
 * (C) Copyright 2007
 * Daniel Hellstrom, Gaisler Research, daniel@gaisler.com.
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#ifndef __SPARC_IRQ_H__
#define __SPARC_IRQ_H__

#include <asm/psr.h>

/* Set SPARC Processor Interrupt Level */
static inline void set_pil(unsigned int level)
{
	unsigned int psr = get_psr();

	put_psr((psr & ~PSR_PIL) | ((level & 0xf) << PSR_PIL_OFS));
}

/* Get SPARC Processor Interrupt Level */
static inline unsigned int get_pil(void)
{
	unsigned int psr = get_psr();
	return (psr & PSR_PIL) >> PSR_PIL_OFS;
}

/* Disables interrupts and return current PIL value */
extern int intLock(void);

/* Sets the PIL to oldLevel */
extern void intUnlock(int oldLevel);

/* Return non-zero if interrupts are currently enabled */
extern int interrupt_is_enabled(void);

#endif
OpenPOWER on IntegriCloud