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

Subversion Repositories openmsp430

[/] [openmsp430/] [trunk/] [fpga/] [altera_de0_nano_soc/] [synthesis/] [altera/] [2_program_flash.sh] - Rev 221

Compare with Previous | Blame | View Log

#!/bin/bash
 
###############################################################################
#                            Parameter Check                                  #
###############################################################################
EXPECTED_ARGS=1
if [ $# -ne $EXPECTED_ARGS ]; then
    echo ""
    echo "ERROR          : wrong number of arguments"
    echo "USAGE          : ./2_program_flash.sh <bitstream name>"
    echo "EXAMPLE        : ./2_program_flash.sh    leds"
    echo ""
    echo "AVAILABLE BITSTREAMS:"
    for fullfile in ./bitstreams/*.sof ; do
        filename=$(basename "$fullfile")
        filename="${filename%.*}"
        echo "                       - $filename"
    done
    echo ""
  exit 1
fi
 
###############################################################################
#                     Check if the required files exist                       #
###############################################################################
soffile=./bitstreams/$1.sof;
jicfile=./bitstreams/$1.jic;
 
if [ ! -e $soffile ]; then
    echo ""
    echo "ERROR: Specified SOF file doesn't exist: $soffile"
    echo ""
    exit 1
fi
 
###############################################################################
#                             Generate JIC file
###############################################################################
echo " ---------------------------------------------------------"
echo "|  GENERATE JIC FILE"
echo "|"
echo "|  $soffile --> $jicfile"
echo "|"
echo " ---------------------------------------------------------"
echo ""
 
# Copy and process COF file
cp scripts/sof2jic.cof ./bitstreams/.
sed -ie "s/BITSTREAM_NAME/$1/g"  ./bitstreams/sof2jic.cof
 
# Convert SOF file to JIC
quartus_cpf -c ./bitstreams/sof2jic.cof
 
# Cleanup
rm -rf ./bitstreams/sof2jic.cof*
 
 
###############################################################################
#                             Program FLASH                                   #
###############################################################################
echo ""
echo " ---------------------------------------------------------"
echo "|  PROGRAM FLASH: $jicfile"
echo " ---------------------------------------------------------"
echo ""
echo "Note: if failing:"
echo "                  - try killing 'jtagd', running 'jtagconfig'"
echo "                  - try as 'root'"
echo "                  - check dev usb permissions"
echo ""
 
# Copy and process CDF file
cp scripts/chain_with_flash.cdf  ./bitstreams/.
sed -ie "s/BITSTREAM_NAME/$1/g"  ./bitstreams/chain_with_flash.cdf
 
# Program flash
quartus_pgm ./bitstreams/chain_with_flash.cdf
 
# Cleanup
rm -rf ./bitstreams/chain_with_flash.*
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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