Files
openbios/arch/sparc64/ofmem_sparc64.h
Blue Swirl 44ede105c1 switch sparc64 to ofmem module implementation (Igor Kovalenko)
git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@528 f158a5a8-5612-0410-a976-696ce0be7e32
2009-08-02 11:08:01 +00:00

29 lines
686 B
C

/*
* <ofmem_sparc64.h>
*
* OF Memory manager
*
* Copyright (C) 1999, 2002 Samuel Rydh (samuel@ibrium.se)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation
*
*/
#ifndef _H_OFMEM_SPARC64
#define _H_OFMEM_SPARC64
#include "ofmem.h"
extern void ofmem_map_pages(ucell phys, ucell virt, ucell size, ucell mode);
typedef int (*translation_entry_cb)(ucell phys, ucell virt,
ucell size, ucell mode);
extern void ofmem_walk_boot_map(translation_entry_cb cb);
extern translation_t **g_ofmem_translations;
#endif /* _H_OFMEM_SPARC64 */