summaryrefslogtreecommitdiffstats
path: root/arch/avr32/lib/interrupts.c
blob: 5f3a49e15212edf55cc34ba955c31d78ed455f2b (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
/*
 * Copyright (C) 2006 Atmel Corporation
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */
#include <common.h>

#include <asm/sysreg.h>

int interrupt_init(void)
{
	return 0;
}

void enable_interrupts(void)
{
	asm volatile("csrf	%0" : : "n"(SYSREG_GM_OFFSET));
}

int disable_interrupts(void)
{
	unsigned long sr;

	sr = sysreg_read(SR);
	asm volatile("ssrf	%0" : : "n"(SYSREG_GM_OFFSET));

#ifdef CONFIG_AT32UC3A0xxx
	/* Two NOPs are required after masking interrupts on the
	 * AT32UC3A0512ES. See errata 41.4.5.5. */
	asm("nop");
	asm("nop");
#endif

	return !SYSREG_BFEXT(GM, sr);
}
OpenPOWER on IntegriCloud