X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/68beefa85564e151acd18e12733897a5201fe67e..f1584bb056629473dd1208034fed761cbaea8e29:/include/paging.h diff --git a/include/paging.h b/include/paging.h index 69c12eb..4a27bb9 100644 --- a/include/paging.h +++ b/include/paging.h @@ -1,7 +1,20 @@ +/* minilib.h + * Definitions for page-table mapping and demapping + * NetWatch system management mode administration console + * + * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved. + * This program is free software; you can redistribute and/or modify it under + * the terms found in the file LICENSE in the root of this source tree. + * + */ + #ifndef __PAGING_H #define __PAGING_H -extern unsigned long memory_v2p(void *virt); -extern void *memory_p2v(unsigned long phys); +extern unsigned long v2p(void *virt); +extern void *p2v(unsigned long phys); +extern int addmap(unsigned long vaddr, unsigned long paddr); +extern int addmap_4m(unsigned long vaddr, unsigned long paddr); +extern void *demap(unsigned long _pd, unsigned long vaddr); #endif