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

Subversion Repositories openarty

[/] [openarty/] [trunk/] [sw/] [host/] [eqspiscope.cpp] - Diff between revs 16 and 30

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

Rev 16 Rev 30
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
//
//
// Filename:    eqspiscope.cpp
// Filename:    eqspiscope.cpp
//
//
// Project:     XuLA2-LX25 SoC based upon the ZipCPU
// Project:     XuLA2-LX25 SoC based upon the ZipCPU
//
//
// Purpose:     This program decodes the bits in the debugging wires output
// Purpose:     This program decodes the bits in the debugging wires output
//              from the eqspiflash module, and stored in the Wishbone Scope
//              from the eqspiflash module, and stored in the Wishbone Scope
//      device.  The result is placed on the screen output, so you can see what
//      device.  The result is placed on the screen output, so you can see what
//      is going on internal to the device.
//      is going on internal to the device.
//              
//              
//
//
// Creator:     Dan Gisselquist, Ph.D.
// Creator:     Dan Gisselquist, Ph.D.
//              Gisselquist Technology, LLC
//              Gisselquist Technology, LLC
//
//
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
//
//
// Copyright (C) 2015-2016, Gisselquist Technology, LLC
// Copyright (C) 2015-2016, Gisselquist Technology, LLC
//
//
// This program is free software (firmware): you can redistribute it and/or
// This program is free software (firmware): you can redistribute it and/or
// modify it under the terms of  the GNU General Public License as published
// modify it under the terms of  the GNU General Public License as published
// by the Free Software Foundation, either version 3 of the License, or (at
// by the Free Software Foundation, either version 3 of the License, or (at
// your option) any later version.
// your option) any later version.
//
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// for more details.
// for more details.
//
//
// You should have received a copy of the GNU General Public License along
// You should have received a copy of the GNU General Public License along
// with this program.  (It's in the $(ROOT)/doc directory, run make with no
// with this program.  (It's in the $(ROOT)/doc directory, run make with no
// target there if the PDF file isn't present.)  If not, see
// target there if the PDF file isn't present.)  If not, see
// <http://www.gnu.org/licenses/> for a copy.
// <http://www.gnu.org/licenses/> for a copy.
//
//
// License:     GPL, v3, as defined and found on www.gnu.org,
// License:     GPL, v3, as defined and found on www.gnu.org,
//              http://www.gnu.org/licenses/gpl.html
//              http://www.gnu.org/licenses/gpl.html
//
//
//
//
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
//
//
//
//
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <unistd.h>
#include <unistd.h>
#include <strings.h>
#include <strings.h>
#include <ctype.h>
#include <ctype.h>
#include <string.h>
#include <string.h>
#include <signal.h>
#include <signal.h>
#include <assert.h>
#include <assert.h>
 
 
#include "port.h"
#include "port.h"
#include "regdefs.h"
#include "regdefs.h"
#include "scopecls.h"
#include "scopecls.h"
 
 
#define WBSCOPE         R_QSCOPE
#define WBSCOPE         R_QSCOPE
#define WBSCOPEDATA     R_QSCOPED
#define WBSCOPEDATA     R_QSCOPED
 
 
FPGA    *m_fpga;
FPGA    *m_fpga;
void    closeup(int v) {
void    closeup(int v) {
        m_fpga->kill();
        m_fpga->kill();
        exit(0);
        exit(0);
}
}
 
 
class   EQSPISCOPE : public SCOPE {
class   EQSPISCOPE : public SCOPE {
        // While I put these in at one time, they really mess up other scopes,
        // While I put these in at one time, they really mess up other scopes,
        // since setting parameters based upon the debug word forces the decoder
        // since setting parameters based upon the debug word forces the decoder
        // to be non-constant, calling methods change, etc., etc., etc.
        // to be non-constant, calling methods change, etc., etc., etc.
        //
        //
        // int  m_oword[2], m_iword[2], m_p;
        // int  m_oword[2], m_iword[2], m_p;
public:
public:
        EQSPISCOPE(FPGA *fpga, unsigned addr, bool vecread)
        EQSPISCOPE(FPGA *fpga, unsigned addr, bool vecread)
                : SCOPE(fpga, addr, false, false) {};
                : SCOPE(fpga, addr, false, vecread) {};
        ~EQSPISCOPE(void) {}
        ~EQSPISCOPE(void) {}
        virtual void    decode(DEVBUS::BUSW val) const {
        virtual void    decode(DEVBUS::BUSW val) const {
                int     cyc, cstb, dstb, ack, back, accepted, valid, word,
                int     cyc, cstb, dstb, ack, back, accepted, valid, word,
                        out, cs, sck, mod, odat, idat;
                        out, cs, sck, mod, odat, idat;
 
 
                cyc      = (val>>31)&1;
                cyc      = (val>>31)&1;
                cstb     = (val>>30)&1;
                cstb     = (val>>30)&1;
                dstb     = (val>>29)&1;
                dstb     = (val>>29)&1;
                ack      = (val>>28)&1;
                ack      = (val>>28)&1;
                back     = (val>>27)&1;
                back     = (val>>27)&1;
                accepted = (val>>26)&1;
                accepted = (val>>26)&1;
                valid    = (val>>25)&1;
                valid    = (val>>25)&1;
                word     = (val>>18)&0x07f;
                word     = (val>>18)&0x07f;
                out      = (val>>12)&0x03f;
                out      = (val>>12)&0x03f;
                cs       = (val>>11)&1;
                cs       = (val>>11)&1;
                sck      = (val>>10)&1;
                sck      = (val>>10)&1;
                mod      = (val>> 8)&3;
                mod      = (val>> 8)&3;
                odat     = (val>> 4)&15;
                odat     = (val>> 4)&15;
                idat     = (val    )&15;
                idat     = (val    )&15;
 
 
                /*
                /*
                m_p = (m_p^1)&1;
                m_p = (m_p^1)&1;
                if (mod&2) {
                if (mod&2) {
                        m_oword[m_p] = (m_oword[m_p]<<4)|odat;
                        m_oword[m_p] = (m_oword[m_p]<<4)|odat;
                        m_iword[m_p] = (m_iword[m_p]<<4)|idat;
                        m_iword[m_p] = (m_iword[m_p]<<4)|idat;
                } else {
                } else {
                        m_oword[m_p] = (m_oword[m_p]<<1)|(odat&1);
                        m_oword[m_p] = (m_oword[m_p]<<1)|(odat&1);
                        m_iword[m_p] = (m_iword[m_p]<<1)|((idat&2)?1:0);
                        m_iword[m_p] = (m_iword[m_p]<<1)|((idat&2)?1:0);
                }
                }
                */
                */
 
 
                printf("%s%s%s%s%s%s%s %02x %02x %s%s %d %x.%d->  ->%x.%d",
                printf("%s%s%s%s%s%s%s %02x %02x %s%s %d %x.%d->  ->%x.%d",
                        (cyc)?"CYC ":"    ",
                        (cyc)?"CYC ":"    ",
                        (cstb)?"CSTB":"    ",
                        (cstb)?"CSTB":"    ",
                        (dstb)?"DSTB":"    ",
                        (dstb)?"DSTB":"    ",
                        (ack)?"AK":"  ",
                        (ack)?"AK":"  ",
                        (back)?"+":" ",
                        (back)?"+":" ",
                        (accepted)?"ACC":"   ",
                        (accepted)?"ACC":"   ",
                        (valid)?"V":" ",
                        (valid)?"V":" ",
                        word<<1, out<<2,
                        word<<1, out<<2,
                        (cs)?"  ":"CS",
                        (cs)?"  ":"CS",
                        (sck)?"CK":"  ",
                        (sck)?"CK":"  ",
                        (mod), odat, (odat&1)?1:0, idat, (idat&2)?1:0);
                        (mod), odat, (odat&1)?1:0, idat, (idat&2)?1:0);
 
 
                // printf("  / %08x -> %08x", m_oword[m_p], m_iword[m_p]);
                // printf("  / %08x -> %08x", m_oword[m_p], m_iword[m_p]);
 
 
        }
        }
};
};
 
 
int main(int argc, char **argv) {
int main(int argc, char **argv) {
        int     skp=0, port = FPGAPORT;
        int     skp=0, port = FPGAPORT;
        bool    use_usb = false;
        bool    use_usb = false;
 
 
        skp=1;
        skp=1;
        for(int argn=0; argn<argc-skp; argn++) {
        for(int argn=0; argn<argc-skp; argn++) {
                if (argv[argn+skp][0] == '-') {
                if (argv[argn+skp][0] == '-') {
                        if (argv[argn+skp][1] == 'u')
                        if (argv[argn+skp][1] == 'u')
                                use_usb = true;
                                use_usb = true;
                        else if (argv[argn+skp][1] == 'p') {
                        else if (argv[argn+skp][1] == 'p') {
                                use_usb = false;
                                use_usb = false;
                                if (isdigit(argv[argn+skp][2]))
                                if (isdigit(argv[argn+skp][2]))
                                        port = atoi(&argv[argn+skp][2]);
                                        port = atoi(&argv[argn+skp][2]);
                        }
                        }
                        skp++; argn--;
                        skp++; argn--;
                } else
                } else
                        argv[argn] = argv[argn+skp];
                        argv[argn] = argv[argn+skp];
        } argc -= skp;
        } argc -= skp;
 
 
        FPGAOPEN(m_fpga);
        FPGAOPEN(m_fpga);
 
 
        signal(SIGSTOP, closeup);
        signal(SIGSTOP, closeup);
        signal(SIGHUP, closeup);
        signal(SIGHUP, closeup);
 
 
        EQSPISCOPE *scope = new EQSPISCOPE(m_fpga, WBSCOPE, false);
        EQSPISCOPE *scope = new EQSPISCOPE(m_fpga, WBSCOPE, false);
        if (!scope->ready()) {
        if (!scope->ready()) {
                printf("Scope is not yet ready:\n");
                printf("Scope is not yet ready:\n");
                scope->decode_control();
                scope->decode_control();
        } else
        } else
                scope->read();
                scope->read();
        delete  m_fpga;
        delete  m_fpga;
}
}
 
 
 
 

powered by: WebSVN 2.1.0

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