p1275.c 1.2 KB
Newer Older
A
Adrian Bunk 已提交
1
/*
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
 * p1275.c: Sun IEEE 1275 PROM low level interface routines
 *
 * Copyright (C) 1996,1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
 */

#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/smp.h>
#include <linux/string.h>
#include <linux/spinlock.h>

#include <asm/openprom.h>
#include <asm/oplib.h>
#include <asm/spitfire.h>
#include <asm/pstate.h>
17
#include <asm/ldc.h>
L
Linus Torvalds 已提交
18 19 20 21 22 23 24 25 26

struct {
	long prom_callback;			/* 0x00 */
	void (*prom_cif_handler)(long *);	/* 0x08 */
	unsigned long prom_cif_stack;		/* 0x10 */
} p1275buf;

extern void prom_world(int);

27
extern void prom_cif_direct(unsigned long *args);
L
Linus Torvalds 已提交
28 29 30
extern void prom_cif_callback(void);

/*
31
 * This provides SMP safety on the p1275buf.
L
Linus Torvalds 已提交
32
 */
33
DEFINE_RAW_SPINLOCK(prom_entry_lock);
L
Linus Torvalds 已提交
34

35
void p1275_cmd_direct(unsigned long *args)
L
Linus Torvalds 已提交
36 37 38
{
	unsigned long flags;

39
	raw_local_save_flags(flags);
D
David Howells 已提交
40
	raw_local_irq_restore((unsigned long)PIL_NMI);
41
	raw_spin_lock(&prom_entry_lock);
L
Linus Torvalds 已提交
42 43

	prom_world(1);
44
	prom_cif_direct(args);
L
Linus Torvalds 已提交
45 46
	prom_world(0);

47 48
	raw_spin_unlock(&prom_entry_lock);
	raw_local_irq_restore(flags);
L
Linus Torvalds 已提交
49 50 51 52 53 54 55
}

void prom_cif_init(void *cif_handler, void *cif_stack)
{
	p1275buf.prom_cif_handler = (void (*)(long *))cif_handler;
	p1275buf.prom_cif_stack = (unsigned long)cif_stack;
}