URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rc203soc/] [sw/] [uClinux/] [arch/] [sparc/] [prom/] [segment.c] - Rev 1777
Go to most recent revision | Compare with Previous | Blame | View Log
/* $Id: segment.c,v 1.1 2005-12-20 09:49:32 jcastillo Exp $ * segment.c: Prom routine to map segments in other contexts before * a standalone is completely mapped. This is for sun4 and * sun4c architectures only. * * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) */ #include <asm/openprom.h> #include <asm/oplib.h> /* Set physical segment 'segment' at virtual address 'vaddr' in * context 'ctx'. */ void prom_putsegment(int ctx, unsigned long vaddr, int segment) { (*(romvec->pv_setctxt))(ctx, (char *) vaddr, segment); return; }
Go to most recent revision | Compare with Previous | Blame | View Log