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

Subversion Repositories openarty

[/] [openarty/] [trunk/] [sw/] [host/] [etxscope.cpp] - Blame information for rev 51

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 dgisselq
////////////////////////////////////////////////////////////////////////////////
2
//
3
// Filename:    etxscope.cpp
4
//
5 51 dgisselq
// Project:     OpenArty, an entirely open SoC based upon the Arty platform
6 30 dgisselq
//
7
// Purpose:     This file decodes the debug bits produced by the enetpackets.v
8
//              Verilog module, and stored in a Wishbone Scope.  It is useful
9
//      for determining if the packet transmitter works at all or not.
10
//
11
// Creator:     Dan Gisselquist, Ph.D.
12
//              Gisselquist Technology, LLC
13
//
14
////////////////////////////////////////////////////////////////////////////////
15
//
16 51 dgisselq
// Copyright (C) 2015-2017, Gisselquist Technology, LLC
17 30 dgisselq
//
18
// This program is free software (firmware): you can redistribute it and/or
19
// modify it under the terms of  the GNU General Public License as published
20
// by the Free Software Foundation, either version 3 of the License, or (at
21
// your option) any later version.
22
//
23
// This program is distributed in the hope that it will be useful, but WITHOUT
24
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
25
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
26
// for more details.
27
//
28
// You should have received a copy of the GNU General Public License along
29 51 dgisselq
// with this program.  (It's in the $(ROOT)/doc directory.  Run make with no
30 30 dgisselq
// target there if the PDF file isn't present.)  If not, see
31
// <http://www.gnu.org/licenses/> for a copy.
32
//
33
// License:     GPL, v3, as defined and found on www.gnu.org,
34
//              http://www.gnu.org/licenses/gpl.html
35
//
36
//
37
////////////////////////////////////////////////////////////////////////////////
38
//
39
//
40
#include <stdio.h>
41
#include <stdlib.h>
42
#include <unistd.h>
43
#include <strings.h>
44
#include <ctype.h>
45
#include <string.h>
46
#include <signal.h>
47
#include <assert.h>
48
 
49
#include "port.h"
50
#include "regdefs.h"
51
#include "scopecls.h"
52
 
53
#define WBSCOPE         R_NETSCOPE
54
#define WBSCOPEDATA     R_NETSCOPED
55
 
56
FPGA    *m_fpga;
57
void    closeup(int v) {
58
        m_fpga->kill();
59
        exit(0);
60
}
61
 
62
class   ETXSCOPE : public SCOPE {
63
public:
64
        ETXSCOPE(FPGA *fpga, unsigned addr, bool vecread = true)
65
                : SCOPE(fpga, addr, false, vecread) {};
66
        ~ETXSCOPE(void) {}
67
        virtual void    decode(DEVBUS::BUSW val) const {
68
                int     trigger, addr, cancel, cmd, complete, busy, en, txd;
69
                int     lrxclk, ltxclk, txstb;
70
 
71
                trigger = (val>>31)&1;
72
                ltxclk  = (val>>30)&1;
73
                lrxclk  = (val>>29)&1;
74
                addr    = (val>>10)&0x0ffff;
75
                txstb   = (val>> 9)&1;
76
                cancel  = (val>> 8)&1;
77
                cmd     = (val>> 7)&1;
78
                complete= (val>> 6)&1;
79
                busy    = (val>> 5)&1;
80
                en      = (val>> 4)&1;
81
                txd     = (val    )&15;
82
 
83
                printf("%s %s %s ",
84
                        (lrxclk)?"LRX":"   ",
85
                        (ltxclk)?"LTX":"   ",
86
                        (txstb)?"TXSTB":"     ");
87
                printf("%s %04x %s%s%s%s %s/%x",
88
                        (trigger)?"TR":"  ",
89
                        (addr),
90
                        (cancel)?"X":"   ",
91
                        (cmd)?" CMD":"    ",
92
                        (complete)?"DON":"   ",
93
                        (busy)?"BSY":"   ",
94
                        (en)?"EN":"  ", txd);
95
        }
96
};
97
 
98
int main(int argc, char **argv) {
99
        FPGAOPEN(m_fpga);
100
 
101
        signal(SIGSTOP, closeup);
102
        signal(SIGHUP, closeup);
103
 
104
        ETXSCOPE *scope = new ETXSCOPE(m_fpga, WBSCOPE);
105
        if (!scope->ready()) {
106
                printf("Scope is not yet ready:\n");
107
                scope->decode_control();
108
        } else
109
                scope->read();
110
        delete  m_fpga;
111
}
112
 

powered by: WebSVN 2.1.0

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