OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [arch/] [i960/] [mm/] [fault.c] - Diff between revs 1623 and 1765

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 1623 Rev 1765
/*
/*
 *  linux/arch/m68knommu/mm/fault.c
 *  linux/arch/m68knommu/mm/fault.c
 *
 *
 *  Copyright (C) 1998  D. Jeff Dionne <jeff@ryeham.ee.ryerson.ca>,
 *  Copyright (C) 1998  D. Jeff Dionne <jeff@ryeham.ee.ryerson.ca>,
 *                      The Silver Hammer Group, Ltd.
 *                      The Silver Hammer Group, Ltd.
 *
 *
 *  Based on:
 *  Based on:
 *
 *
 *  linux/arch/m68k/mm/fault.c
 *  linux/arch/m68k/mm/fault.c
 *
 *
 *  Copyright (C) 1995  Hamish Macdonald
 *  Copyright (C) 1995  Hamish Macdonald
 */
 */
 
 
#include <linux/mman.h>
#include <linux/mman.h>
#include <linux/mm.h>
#include <linux/mm.h>
#include <linux/kernel.h>
#include <linux/kernel.h>
#include <linux/ptrace.h>
#include <linux/ptrace.h>
 
 
#include <asm/system.h>
#include <asm/system.h>
#include <asm/pgtable.h>
#include <asm/pgtable.h>
 
 
extern void die_if_kernel(char *, struct pt_regs *, long);
extern void die_if_kernel(char *, struct pt_regs *, long);
 
 
/*
/*
 * This routine handles page faults.  It determines the problem, and
 * This routine handles page faults.  It determines the problem, and
 * then passes it off to one of the appropriate routines.
 * then passes it off to one of the appropriate routines.
 *
 *
 * error_code:
 * error_code:
 *      bit 0 == 0 means no page found, 1 means protection fault
 *      bit 0 == 0 means no page found, 1 means protection fault
 *      bit 1 == 0 means read, 1 means write
 *      bit 1 == 0 means read, 1 means write
 *
 *
 * If this routine detects a bad access, it returns 1, otherwise it
 * If this routine detects a bad access, it returns 1, otherwise it
 * returns 0.
 * returns 0.
 */
 */
asmlinkage int do_page_fault(struct pt_regs *regs, unsigned long address,
asmlinkage int do_page_fault(struct pt_regs *regs, unsigned long address,
                              unsigned long error_code)
                              unsigned long error_code)
{
{
#ifdef DEBUG
#ifdef DEBUG
        printk("page fault!\n");
        printk("page fault!\n");
        show_regs(regs);
        show_regs(regs);
#endif
#endif
 
 
/*
/*
 * Oops. The kernel tried to access some bad page. We'll have to
 * Oops. The kernel tried to access some bad page. We'll have to
 * terminate things with extreme prejudice.
 * terminate things with extreme prejudice.
 */
 */
        if ((unsigned long) address < PAGE_SIZE) {
        if ((unsigned long) address < PAGE_SIZE) {
                printk(KERN_ALERT "Unable to handle kernel NULL pointer dereference");
                printk(KERN_ALERT "Unable to handle kernel NULL pointer dereference");
        } else
        } else
                printk(KERN_ALERT "Unable to handle kernel access");
                printk(KERN_ALERT "Unable to handle kernel access");
        printk(" at virtual address %08lx\n",address);
        printk(" at virtual address %08lx\n",address);
        die_if_kernel("Oops", regs, error_code);
        die_if_kernel("Oops", regs, error_code);
        do_exit(SIGKILL);
        do_exit(SIGKILL);
 
 
        return 1;
        return 1;
}
}
 
 
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.