segment.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: segment.c,v 1.7 2000/08/26 02:38:03 anton 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.
  5.  *
  6.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  7.  */
  8. #include <linux/types.h>
  9. #include <linux/kernel.h>
  10. #include <linux/sched.h>
  11. #include <asm/openprom.h>
  12. #include <asm/oplib.h>
  13. extern void restore_current(void);
  14. /* Set physical segment 'segment' at virtual address 'vaddr' in
  15.  * context 'ctx'.
  16.  */
  17. void
  18. prom_putsegment(int ctx, unsigned long vaddr, int segment)
  19. {
  20. unsigned long flags;
  21. spin_lock_irqsave(&prom_lock, flags);
  22. (*(romvec->pv_setctxt))(ctx, (char *) vaddr, segment);
  23. restore_current();
  24. spin_unlock_irqrestore(&prom_lock, flags);
  25. return;
  26. }