Import 2.3.16
[davej-history.git] / arch / sparc / prom / segment.c
blob62b3f85425ecc839d4827c8381b3bab86efc551b
1 /* $Id: segment.c,v 1.6 1998/03/09 14:04:27 jj Exp $
2 * segment.c: Prom routine to map segments in other contexts before
3 * a standalone is completely mapped. This is for sun4 and
4 * sun4c architectures only.
6 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
7 */
9 #include <linux/types.h>
10 #include <linux/kernel.h>
11 #include <linux/sched.h>
12 #include <asm/openprom.h>
13 #include <asm/oplib.h>
15 extern void restore_current(void);
17 /* Set physical segment 'segment' at virtual address 'vaddr' in
18 * context 'ctx'.
20 void
21 prom_putsegment(int ctx, unsigned long vaddr, int segment)
23 unsigned long flags;
24 save_flags(flags); cli();
25 (*(romvec->pv_setctxt))(ctx, (char *) vaddr, segment);
26 restore_current();
27 restore_flags(flags);
28 return;