Subversion Repositories HelenOS-historic

Rev

Rev 548 | Rev 689 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 548 Rev 687
Line 27... Line 27...
27
 */
27
 */
28
#include <print.h>
28
#include <print.h>
29
#include <test.h>
29
#include <test.h>
30
#include <mm/page.h>
30
#include <mm/page.h>
31
#include <mm/frame.h>
31
#include <mm/frame.h>
-
 
32
#include <mm/asid.h>
32
#include <arch/mm/page.h>
33
#include <arch/mm/page.h>
33
#include <arch/types.h>
34
#include <arch/types.h>
34
#include <debug.h>
35
#include <debug.h>
35
 
36
 
36
#define PAGE0   0x10000000
37
#define PAGE0   0x10000000
Line 53... Line 54...
53
    *((__u32 *) frame0) = VALUE0;
54
    *((__u32 *) frame0) = VALUE0;
54
    printf("Writing %L to physical address %P.\n", VALUE1, KA2PA(frame1));
55
    printf("Writing %L to physical address %P.\n", VALUE1, KA2PA(frame1));
55
    *((__u32 *) frame1) = VALUE1;
56
    *((__u32 *) frame1) = VALUE1;
56
   
57
   
57
    printf("Mapping virtual address %P to physical address %P.\n", PAGE0, KA2PA(frame0));
58
    printf("Mapping virtual address %P to physical address %P.\n", PAGE0, KA2PA(frame0));
58
    page_mapping_insert(PAGE0, KA2PA(frame0), PAGE_PRESENT | PAGE_WRITE, 0);
59
    page_mapping_insert(PAGE0, ASID_KERNEL, KA2PA(frame0), PAGE_PRESENT | PAGE_WRITE, 0);
59
    printf("Mapping virtual address %P to physical address %P.\n", PAGE1, KA2PA(frame1));  
60
    printf("Mapping virtual address %P to physical address %P.\n", PAGE1, KA2PA(frame1));  
60
    page_mapping_insert(PAGE1, KA2PA(frame1), PAGE_PRESENT | PAGE_WRITE, 0);
61
    page_mapping_insert(PAGE1, ASID_KERNEL, KA2PA(frame1), PAGE_PRESENT | PAGE_WRITE, 0);
61
   
62
   
62
    printf("Value at virtual address %P is %L.\n", PAGE0, v0 = *((__u32 *) PAGE0));
63
    printf("Value at virtual address %P is %L.\n", PAGE0, v0 = *((__u32 *) PAGE0));
63
    printf("Value at virtual address %P is %L.\n", PAGE1, v1 = *((__u32 *) PAGE1));
64
    printf("Value at virtual address %P is %L.\n", PAGE1, v1 = *((__u32 *) PAGE1));
64
   
65
   
65
    ASSERT(v0 == VALUE0);
66
    ASSERT(v0 == VALUE0);