⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exception.c

📁 完整的Bell实验室的嵌入式文件系统TFS
💻 C
字号:
/* except.c:    This code handles exceptions that are caught by the exception vectors    that have been installed by the monitor through vinit().    General notice:    This code is part of a boot-monitor package developed as a generic base    platform for embedded system designs.  As such, it is likely to be    distributed to various projects beyond the control of the original    author.  Please notify the author of any enhancements made or bugs found    so that all may benefit from the changes.  In addition, notification back    to the author will allow the new user to pick up changes that may have    been made by other users after this version of the code was distributed.    Author: Ed Sutter    email:  esutter@lucent.com      (home: lesutter@worldnet.att.net)    phone:  908-582-2351            (home: 908-889-5161)*/#include "config.h"#include "cpu.h"#include "cpuio.h"#include "monapp.h"#include "genlib.h"#include "stddefs.h"void busadderr();extern  int getreg(), putreg();extern  void putsr();voidexception(){    char    *vname;    ulong   d0, pc;    putsr(0x2700);    getreg("D0",&d0);    d0 &= 0xff;    switch(d0) {    case 2:        vname = "(Bus error)";        break;    case 3:        vname = "(Address error)";        break;    case 4:        vname = "(Illegal instruction)";        break;    case 5:        vname = "(Zero divide)";        break;    case 6:        vname = "(Check instr)";        break;    case 7:        vname = "(Trapv instr)";        break;    case 8:        vname = "(Privilege violation)";        break;    case 10:        vname = "(Line 1010)";        break;    case 11:        vname = "(Line 1111)";        break;    default:        vname = "";        break;    }    getreg("PC",&pc);    printf("\nEXCEPTION: #%ld %s @ 0x%lx\n \b \b",d0,vname,pc);    if ((d0 == 2) || (d0 == 3))        busadderr(d0);    monrestart(EXCEPTION);}voidbusadderr(int type){    ulong   reg, reg1;    getreg("A0",&reg);    printf("  Stat word:    0x%04x\n",(ushort)reg);    getreg("A1",&reg);     getreg("A2",&reg1);    printf("  Address:      0x%04x%04x\n",(ushort)reg,(ushort)reg1);    getreg("A3",&reg);    printf("  Instr reg:    0x%04x\n",(ushort)reg);    getreg("SR",&reg);    printf("  Status reg:   0x%04x\n \b \b",(ushort)reg);    if (type == 2)        printf("  SysCtrl reg:  0x%04lx\n \b \b",*(ulong*)0xf4);    monrestart(EXCEPTION);}voidvinit(void){    extern void vbase(), vnext(), buserr(), adderr(), async_brk_hdlr();    extern void vbase128(), vnext128();    ulong   *vtab, vfunc;    int i, delta;    vtab = 0;    vfunc = (ulong)vbase;    delta = (ulong)vnext - (ulong)vbase;    for(i=2;i<128;i++) {        /* Don't overwrite the MBAR and SysCfg registers... */        if ((&vtab[i] < (ulong *)0xec) || (&vtab[i] > (ulong *)0xff))            vtab[i] = (ulong)vfunc;        vfunc += delta;    }    vfunc = (ulong)vbase128;    delta = (ulong)vnext128 - (ulong)vbase128;    for(;i<256;i++) {        /* Don't overwrite the MBAR and SysCfg registers... */        if ((&vtab[i] < (ulong *)0xec) || (&vtab[i] > (ulong *)0xff))            vtab[i] = (ulong)vfunc;        vfunc += delta;    }    /* Special handlers for bus and address error: */    vtab[2] = (ulong)buserr;    vtab[3] = (ulong)adderr;}void    (*GlobalIntFtbl[24])();int GlobalIntBaseVector;ulongGlobalIntSet(ino,func)int ino;void    (*func)();{    ulong   ofunc;    if (ino == GLOBALINTBASE)        return((ulong)GlobalIntBaseVector);    if (ino > 23)        return(0);    ofunc = (ulong)GlobalIntFtbl[ino];    GlobalIntFtbl[ino] = func;    return(ofunc);}voidGlobalInt(ino)int ino;{    printf("Global Interrupt #%d (vector #%d) caught by monitor.\n",        ino,GlobalIntBaseVector+ino);    *(ushort *)IPR = *(ushort *)IPR;    *(ushort *)ISR = *(ushort *)ISR;    monrestart(INITIALIZE);}voidGint0(){    GlobalInt(0);}voidGint1(){    GlobalInt(1);}voidGint2(){    GlobalInt(2);}voidGint3(){    GlobalInt(3);}voidGint4(){    GlobalInt(4);}voidGint5(){    GlobalInt(5);}voidGint6(){    GlobalInt(6);}voidGint7(){    GlobalInt(7);}voidGint8(){    GlobalInt(8);}voidGint9(){    GlobalInt(9);}voidGint10(){    GlobalInt(10);}voidGint11(){    GlobalInt(11);}voidGint12(){    GlobalInt(12);}voidGint13(){    GlobalInt(13);}voidGint14(){    GlobalInt(14);}voidGint15(){    GlobalInt(15);}voidGint16(){    GlobalInt(16);}voidGint17(){    GlobalInt(17);}voidGint18(){    GlobalInt(18);}voidGint19(){    GlobalInt(19);}voidGint20(){    GlobalInt(20);}voidGint21(){    GlobalInt(21);}voidGint22(){    GlobalInt(22);}voidGint23(){    GlobalInt(23);}voidhandler23(){    asm("movm.l &0xffff, -(%sp)");    GlobalIntFtbl[23]();    asm("movm.l (%sp)+, &0xffff");    asm("rte");}voidhandler22(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[22]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler17(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[17]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler15(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[15]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler14(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[14]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler13(){        asm("movm.l &0xffff, -(%sp)");        if (*(uchar *)SCCE1 & 0x10) {   /* BREAK received */            *(uchar *)SCCE1 = 0x10; /* Clear event */            *(ushort *)ISR = 0x2000;/* Clear isr bit */            asm("movm.l (%sp)+, &0xffff");            asm("jmp async_brk_hdlr");        }        else            GlobalIntFtbl[13]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler12(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[12]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler11(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[11]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler10(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[10]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler09(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[9]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler08(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[8]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler07(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[7]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler06(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[6]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler05(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[5]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler04(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[4]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler03(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[3]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler02(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[2]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler01(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[1]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}voidhandler00(){        asm("movm.l &0xffff, -(%sp)");        GlobalIntFtbl[0]();        asm("movm.l (%sp)+, &0xffff");        asm("rte");}/* GlobalIntInit():   Initialized the interrupt handlers for the GLOBAL Interrupt within the   68302.*/voidGlobalIntInit(ushort gimr){    extern  void async_brk_hdlr();    GlobalIntFtbl[0] = Gint0;    GlobalIntFtbl[1] = Gint1;    GlobalIntFtbl[2] = Gint2;    GlobalIntFtbl[3] = Gint3;    GlobalIntFtbl[4] = Gint4;    GlobalIntFtbl[5] = Gint5;    GlobalIntFtbl[6] = Gint6;    GlobalIntFtbl[7] = Gint7;    GlobalIntFtbl[8] = Gint8;    GlobalIntFtbl[9] = Gint9;    GlobalIntFtbl[10] = Gint10;    GlobalIntFtbl[11] = Gint11;    GlobalIntFtbl[12] = Gint12;    GlobalIntFtbl[13] = Gint13;    GlobalIntFtbl[14] = Gint14;    GlobalIntFtbl[15] = Gint15;    GlobalIntFtbl[16] = Gint16;    GlobalIntFtbl[17] = Gint17;    GlobalIntFtbl[18] = Gint18;    GlobalIntFtbl[19] = Gint19;    GlobalIntFtbl[20] = Gint20;    GlobalIntFtbl[21] = Gint21;    GlobalIntFtbl[22] = Gint22;    GlobalIntFtbl[23] = Gint23;    /* Clear any possibly queued up ints... */    *(uchar *)SCCM1 = 0x00;    *(uchar *)SCCE1 = 0xff;    *(ushort *)IMR = 0x0000;    *(ushort *)IPR = 0xffff;    *(ushort *)ISR = 0xffff;    /* Clear any currently pending state: */    *(ushort *)IPR = *(ushort *)IPR;    *(ushort *)ISR = *(ushort *)ISR;    *(ushort *)INTR_EVENT = *(ushort *)INTR_EVENT;#if CPU_68EN302    /* Assign GIMR and extract the base vector: */    /* For EN302, the IER sets up MOD and ET[7,6,1], so */    /* they must be zero in GIMR of core 302. */    /* Set Module Interrupt Level (for EN302 extensions) to 5. */    /* See note above. */    *(ushort *)GIMR = gimr & ~0x8700;    *(ushort *)IER = (gimr & 0x8700);   /* MIL=0 */#elif CPU_68302    /* Assign GIMR and extract the base vector: */    *(ushort *)GIMR = gimr;#endif    GlobalIntBaseVector = gimr & 0x00e0;    VECTOR(GlobalIntBaseVector+0) = (ulong)handler00 + 6;    VECTOR(GlobalIntBaseVector+1) = (ulong)handler01 + 6;    VECTOR(GlobalIntBaseVector+2) = (ulong)handler02 + 6;    VECTOR(GlobalIntBaseVector+3) = (ulong)handler03 + 6;    VECTOR(GlobalIntBaseVector+4) = (ulong)handler04 + 6;    VECTOR(GlobalIntBaseVector+5) = (ulong)handler05 + 6;    VECTOR(GlobalIntBaseVector+6) = (ulong)handler06 + 6;    VECTOR(GlobalIntBaseVector+7) = (ulong)handler07 + 6;    VECTOR(GlobalIntBaseVector+8) = (ulong)handler08 + 6;    VECTOR(GlobalIntBaseVector+9) = (ulong)handler09 + 6;    VECTOR(GlobalIntBaseVector+10) = (ulong)handler10 + 6;    VECTOR(GlobalIntBaseVector+11) = (ulong)handler11 + 6;    VECTOR(GlobalIntBaseVector+12) = (ulong)handler12 + 6;    VECTOR(GlobalIntBaseVector+13) = (ulong)handler13 + 6;    VECTOR(GlobalIntBaseVector+14) = (ulong)handler14 + 6;    VECTOR(GlobalIntBaseVector+15) = (ulong)handler15 + 6;    VECTOR(GlobalIntBaseVector+17) = (ulong)handler17 + 6;    VECTOR(GlobalIntBaseVector+22) = (ulong)handler22 + 6;    VECTOR(GlobalIntBaseVector+23) = (ulong)handler23 + 6;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -