summaryrefslogtreecommitdiffstats
path: root/arch/sparc/include/asm/irq.h
blob: 2faf7a074e14000cf7c49990fedae34ff1285e8c (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
/* 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);

#endif
OpenPOWER on IntegriCloud