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

Subversion Repositories openarty

[/] [openarty/] [trunk/] [sw/] [host/] [zprog.sh] - Blame information for rev 34

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

Line No. Rev Author Line
1 31 dgisselq
#!/bin/bash
2
################################################################################
3
##
4
## Filename:    zprog.sh
5
##
6
## Project:     OpenArty, an entirely open SoC based upon the Arty platform
7
##
8
## Purpose:     To install a new program into the Arty, using the main
9
##              programming slot (slot 0).
10
##
11
## Creator:     Dan Gisselquist, Ph.D.
12
##              Gisselquist Technology, LLC
13
##
14
################################################################################
15
##
16
## Copyright (C) 2015-2016, Gisselquist Technology, LLC
17
##
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
## with this program.  (It's in the $(ROOT)/doc directory, run make with no
30
## 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
export PATH=$PATH:.
41
export BINFILE=../../xilinx/openarty.runs/impl_1/toplevel.bin
42
 
43
WBREGS=wbregs
44
WBPROG=wbprogram
45
 
46
#
47
# $WBREGS qspiv 0x8b    # Accomplished by the flash driver
48
#
49
$WBREGS stopwatch 2     # Clear and stop the stopwatch
50
$WBREGS stopwatch 1     # Start the stopwatch
51
echo $WBPROG @0x0400000 $BINFILE
52
$WBPROG @0x0400000 $BINFILE
53
$WBREGS stopwatch 0     # Stop the stopwatch, we are done
54
$WBREGS stopwatch       # Print out the time on the stopwatch
55
 
56
$WBREGS wbstar 0
57
$WBREGS fpgacmd 15
58
sleep 1
59
 
60
 
61
RED=0x00ff0000
62
GREEN=0x0000ff00
63
WHITE=0x000f0f0f
64
BLACK=0x00000000
65
DIMGREEN=0x00001f00
66
 
67
$WBREGS led 0x0f
68
$WBREGS clrled0 $RED
69
$WBREGS clrled1 $RED
70
$WBREGS clrled2 $RED
71
$WBREGS clrled3 $RED
72
 
73
sleep 1
74
$WBREGS clrled0 $GREEN
75
$WBREGS led 0x10
76
sleep 1
77
$WBREGS clrled1 $GREEN
78
$WBREGS clrled0 $DIMGREEN
79
$WBREGS led 0x20
80
sleep 1
81
$WBREGS clrled2 $GREEN
82
$WBREGS clrled1 $DIMGREEN
83
$WBREGS led 0x40
84
 
85
if [[ -x ./wbsettime ]]; then
86
  ./wbsettime
87
fi
88
 
89
$WBREGS clrled3 $GREEN
90
$WBREGS clrled2 $DIMGREEN
91
$WBREGS led 0x80
92
sleep 1
93
$WBREGS clrled0 $WHITE
94
$WBREGS clrled1 $BLACK
95
$WBREGS clrled2 $BLACK
96
$WBREGS clrled3 $WHITE
97
$WBREGS led 0x00
98
 
99
 

powered by: WebSVN 2.1.0

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