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

Subversion Repositories s6soc

[/] [s6soc/] [trunk/] [sw/] [host/] [readflash.cpp] - Blame information for rev 11

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 11 dgisselq
////////////////////////////////////////////////////////////////////////////////
2
//
3
// Filename:    readflash.cpp
4
//
5
// Project:     CMod S6 System on a Chip, ZipCPU demonstration project
6
//
7
// Purpose:     Read/Empty the entire contents of the flash memory to a file.
8
//              The flash is unchanged by this process.
9
//
10
// Creator:     Dan Gisselquist, Ph.D.
11
//              Gisselquist Technology, LLC
12
//
13
////////////////////////////////////////////////////////////////////////////////
14
//
15
// Copyright (C) 2015-2016, Gisselquist Technology, LLC
16
//
17
// This program is free software (firmware): you can redistribute it and/or
18
// modify it under the terms of  the GNU General Public License as published
19
// by the Free Software Foundation, either version 3 of the License, or (at
20
// your option) any later version.
21
//
22
// This program is distributed in the hope that it will be useful, but WITHOUT
23
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
24
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
25
// for more details.
26
//
27
// You should have received a copy of the GNU General Public License along
28
// with this program.  (It's in the $(ROOT)/doc directory, run make with no
29
// target there if the PDF file isn't present.)  If not, see
30
// <http://www.gnu.org/licenses/> for a copy.
31
//
32
// License:     GPL, v3, as defined and found on www.gnu.org,
33
//              http://www.gnu.org/licenses/gpl.html
34
//
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 "devbus.h"
50
#include "llcomms.h"
51
#include "deppi.h"
52
#include "ttybus.h"
53
#include "regdefs.h"
54
 
55
#define FPGAOPEN(SN)    new FPGA(new DEPPI(SN))
56
 
57
FPGA    *m_fpga;
58
void    closeup(int v) {
59
        m_fpga->kill();
60
        exit(0);
61
}
62
 
63
// #define      DUMPMEM         RAMBASE
64
// #define      DUMPWORDS       MEMWORDS
65
 
66
#define DUMPMEM         SPIFLASH
67
#define DUMPWORDS       FLASHWORDS      // 1MB Flash
68
 
69
int main(int argc, char **argv) {
70
        FILE    *fp;
71
        const int       BUFLN = DUMPWORDS;
72
        FPGA::BUSW      *buf = new FPGA::BUSW[BUFLN];
73
 
74
        char    szSel[64];
75
        strcpy(szSel, "SN:210282768825");
76
        m_fpga = FPGAOPEN(szSel);
77
 
78
        fprintf(stderr, "Before starting, nread = %ld\n",
79
                m_fpga->m_total_nread);
80
 
81
        // Start with testing the version:
82
        printf("VERSION: %08x\n", m_fpga->readio(R_VERSION));
83
 
84
        // SPI flash testing
85
        // Enable the faster (vector) reads
86
        bool    vector_read = true;
87
        unsigned        sz;
88
 
89
        if (vector_read) {
90
                try {
91
                for(int i=0; i<BUFLN; i+= 2048) {
92
                        printf("i = %02x / %04x, addr = i + %04x = %08x\n", i, BUFLN, DUMPMEM, i+DUMPMEM);
93
 
94
                        m_fpga->readi(DUMPMEM+i, 2048, &buf[i]);
95
                }} catch(BUSERR a) {
96
                        printf("%08x : BUS-ERR\n", a.addr);
97
                }
98
        } else {
99
                for(int i=0; i<BUFLN; i++) {
100
                        buf[i] = m_fpga->readio(DUMPMEM+i);
101
                        // if (0 == (i&0x0ff))
102
                                printf("i = %02x / %04x, addr = i + %04x = %08x\n", i, BUFLN, DUMPMEM, i+DUMPMEM);
103
                }
104
        }
105
        printf("\nREAD-COMPLETE\n");
106
 
107
        // Now, let's find the end
108
        sz = BUFLN-1;
109
        while((sz>0)&&(buf[sz] == 0xffffffff))
110
                sz--;
111
        sz+=1;
112
        printf("The size of the buffer is 0x%06x or %d words\n", sz, sz);
113
 
114
        fp = fopen("qspiflash.bin","w");
115
        fwrite(buf, sizeof(buf[0]), sz, fp);
116
        fclose(fp);
117
 
118
        printf("The read was accomplished in %ld bytes over the UART\n",
119
                m_fpga->m_total_nread);
120
 
121
        if (m_fpga->poll())
122
                printf("FPGA was interrupted\n");
123
        delete  m_fpga;
124
}
125
 
126
 

powered by: WebSVN 2.1.0

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