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

Subversion Repositories xulalx25soc

[/] [xulalx25soc/] [trunk/] [sw/] [zipstate.cpp] - Diff between revs 17 and 118

Show entire file | Details | Blame | View Log

Rev 17 Rev 118
Line 13... Line 13...
// Creator:     Dan Gisselquist, Ph.D.
// Creator:     Dan Gisselquist, Ph.D.
//              Gisselquist Technology, LLC
//              Gisselquist Technology, LLC
//
//
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
//
//
// Copyright (C) 2015, 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.
Line 25... Line 25...
// 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
 
// 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
 
// <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
//
//
//
//
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
Line 65... Line 70...
                errcount++;
                errcount++;
        if (errcount >= MAXERR) {
        if (errcount >= MAXERR) {
                printf("ERR: errcount(%d) >= MAXERR on cmd_read(a=%02x)\n",
                printf("ERR: errcount(%d) >= MAXERR on cmd_read(a=%02x)\n",
                        errcount, r);
                        errcount, r);
                printf("ZIPCTRL = 0x%08x", s);
                printf("ZIPCTRL = 0x%08x", s);
                if ((s & 0x0200)==0) printf(" STALL");
                if ((s & 0x0200)==0) printf(" BUSY");
                if  (s & 0x0400)     printf(" HALTED");
                if  (s & 0x0400)     printf(" HALTED");
                if ((s & 0x03000)==0x01000)
                if ((s & 0x03000)==0x01000)
                        printf(" SW-HALT");
                        printf(" SW-HALT");
                else {
                else {
                        if (s & 0x01000) printf(" SLEEPING");
                        if (s & 0x01000) printf(" SLEEPING");
Line 114... Line 119...
                v = m_fpga->readio(R_ZIPCTRL);
                v = m_fpga->readio(R_ZIPCTRL);
 
 
                printf("0x%08x: ", v);
                printf("0x%08x: ", v);
                if (v & 0x0080) printf("PINT ");
                if (v & 0x0080) printf("PINT ");
                // if (v & 0x0100) printf("STEP "); // self resetting
                // if (v & 0x0100) printf("STEP "); // self resetting
                if((v & 0x00200)==0) printf("STALL ");
                if((v & 0x00200)==0) printf("BUSY ");
                if (v & 0x00400) printf("HALTED ");
                if (v & 0x00400) printf("HALTED ");
                if((v & 0x03000)==0x01000) {
                if((v & 0x03000)==0x01000) {
                        printf("SW-HALT");
                        printf("SW-HALT");
                } else {
                } else {
                        if (v & 0x01000) printf("SLEEPING ");
                        if (v & 0x01000) printf("SLEEPING ");

powered by: WebSVN 2.1.0

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