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

Subversion Repositories minsoc

[/] [minsoc/] [branches/] [rc-1.0/] [backend/] [altera_3c25_board/] [configure] - Diff between revs 95 and 96

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 95 Rev 96
#!/bin/bash
#!/bin/bash
#new boards have to udpate this
#new boards have to udpate this
BOARD=altera_3c25_board                                         #this has to have the name of the directory this file is in
BOARD=altera_3c25_board                                         #this has to have the name of the directory this file is in
DEVICE_PART=EP3C25Q240C8
DEVICE_PART=EP3C25Q240C8
FAMILY_PART="Cyclone III"
FAMILY_PART="Cyclone III"
CONSTRAINT_FILE='altera_3c25_board.ucf'
CONSTRAINT_FILE='altera_3c25_board.ucf'
PROJECT_FILE=minsoc_top.qsf
PROJECT_FILE=minsoc_top.qsf
#SW_VERSION=`quartus_map -v | grep Version`
#SW_VERSION=`quartus_map -v | grep Version`
#~new boards update
#~new boards update
#system workings
#system workings
MINSOC_DIR=`pwd`/../..
MINSOC_DIR=`pwd`/../..
BACKEND_DIR=$MINSOC_DIR/backend
BACKEND_DIR=$MINSOC_DIR/backend
SYN_DIR=$MINSOC_DIR/syn
SYN_DIR=$MINSOC_DIR/syn
SYNSRC_DIR=$MINSOC_DIR/prj/altera
SYNSRC_DIR=$MINSOC_DIR/prj/altera
SYNSUPPORT_DIR=$SYN_DIR/buildSupport
SYNSUPPORT_DIR=$SYN_DIR/buildSupport
MAKEFILE_DIR=$SYN_DIR/altera
MAKEFILE_DIR=$SYN_DIR/altera
 
 
SYN_FILES=(adbg_top.prj jtag_top.prj or1200_top.prj uart_top.prj minsoc_top.prj)
SYN_FILES=(adbg_top.prj jtag_top.prj or1200_top.prj uart_top.prj minsoc_top.prj altera_virtual_jtag.prj)
MAKEFILE=Makefile
MAKEFILE=Makefile
FIND_PART='DEVICE_PART'
FIND_PART='DEVICE_PART'
FIND_FAMILY='FAMILY_PART'
FIND_FAMILY='FAMILY_PART'
FIND_VERSION='SW_VERSION'
FIND_VERSION='SW_VERSION'
FIND_CONSTRAINT='CONSTRAINT_FILE'
FIND_CONSTRAINT='CONSTRAINT_FILE'
BOARD_DIR=$BACKEND_DIR/$BOARD
BOARD_DIR=$BACKEND_DIR/$BOARD
BOARD_FILES=(board.h orp.ld minsoc_defines.v minsoc_bench_defines.v gcc-opt.mk $CONSTRAINT_FILE)
BOARD_FILES=(board.h orp.ld minsoc_defines.v minsoc_bench_defines.v gcc-opt.mk $CONSTRAINT_FILE)
in_minsoc=`pwd | grep minsoc/backend/${BOARD}$`
in_minsoc=`pwd | grep minsoc/backend/${BOARD}$`
if [ -z $in_minsoc ]
if [ -z $in_minsoc ]
then
then
        echo ""
        echo ""
        echo "                  !!!WARNING!!!"
        echo "                  !!!WARNING!!!"
        echo "This script cannot be run if not in a board directory inside minsoc/backend,"
        echo "This script cannot be run if not in a board directory inside minsoc/backend,"
        echo "because it relies on the directory structure of the minsoc system."
        echo "because it relies on the directory structure of the minsoc system."
        echo ""
        echo ""
        echo "Possibly your minsoc directory is named differently, minsoc_trunk for example."
        echo "Possibly your minsoc directory is named differently, minsoc_trunk for example."
        echo "Its name must be minsoc only."
        echo "Its name must be minsoc only."
        echo ""
        echo ""
        exit 1
        exit 1
fi
fi
echo ""
echo ""
echo "Configuring SoC board's specific files for firmware compilation, "
echo "Configuring SoC board's specific files for firmware compilation, "
echo "testbench generation and synthesis."
echo "testbench generation and synthesis."
echo "Firmware and testbench looks for board specific files under minsoc/backend."
echo "Firmware and testbench looks for board specific files under minsoc/backend."
echo "Synthesis work under minsoc/syn."
echo "Synthesis work under minsoc/syn."
echo ""
echo ""
echo ""
echo ""
if [ $CONSTRAINT_FILE == 'NONE' ]
if [ $CONSTRAINT_FILE == 'NONE' ]
then
then
    echo "Skipping synthesis preparation. Standard implementation can only be simulated."
    echo "Skipping synthesis preparation. Standard implementation can only be simulated."
else
else
    echo "Device part and family for qsf file under $MAKEFILE_DIR will patched and stored "
    echo "Device part and family for qsf file under $MAKEFILE_DIR will patched and stored "
    echo "temporarily."
    echo "temporarily."
    echo "Afterwards, they are copied to minsoc/syn/buildSupport."
    echo "Afterwards, they are copied to minsoc/syn/buildSupport."
    echo "__________________________________________________________________________"
    echo "__________________________________________________________________________"
    echo ""
    echo ""
    sed "s/$FIND_PART/$DEVICE_PART/g" $MAKEFILE_DIR/$PROJECT_FILE > TMPFILE
    sed "s/$FIND_PART/$DEVICE_PART/g" $MAKEFILE_DIR/$PROJECT_FILE > TMPFILE
    sed "s/$FIND_FAMILY/$FAMILY_PART/g" TMPFILE > TMPFILE2
    sed "s/$FIND_FAMILY/$FAMILY_PART/g" TMPFILE > TMPFILE2
    #sed "s/$FIND_VERSION/$SW_VERSION/g" TMPFILE> TMPFILE
    #sed "s/$FIND_VERSION/$SW_VERSION/g" TMPFILE> TMPFILE
    echo "Adding settings from constraint file..."
    echo "Adding settings from constraint file..."
    cat $CONSTRAINT_FILE >> TMPFILE2
    cat $CONSTRAINT_FILE >> TMPFILE2
    echo "Generating quartus settings from prj files in $SYNSRC_DIR"
    echo "Generating quartus settings from prj files in $SYNSRC_DIR"
    for file in "${SYN_FILES[@]}"
    for file in "${SYN_FILES[@]}"
    do
    do
        echo "Adding settings from file $file..."
        echo "Adding settings from file $file..."
        cat $SYNSRC_DIR/$file >> TMPFILE2
        cat $SYNSRC_DIR/$file >> TMPFILE2
    done
    done
    mv TMPFILE2 $SYNSUPPORT_DIR/$PROJECT_FILE
    mv TMPFILE2 $SYNSUPPORT_DIR/$PROJECT_FILE
    rm TMPFILE
    rm TMPFILE
    echo ""
    echo ""
    echo "Generated quartus settings file in $SYNSUPPORT_DIR/$PROJECT_FILE"
    echo "Generated quartus settings file in $SYNSUPPORT_DIR/$PROJECT_FILE"
    echo ""
    echo ""
    echo "Copying Makefile to synthesis directory..."
    echo "Copying Makefile to synthesis directory..."
    cp $MAKEFILE_DIR/$MAKEFILE $SYN_DIR/$MAKEFILE
    cp $MAKEFILE_DIR/$MAKEFILE $SYN_DIR/$MAKEFILE
    echo ""
    echo ""
    echo "Copying board specific SoC files to backend directory."
    echo "Copying board specific SoC files to backend directory."
    echo "__________________________________________________________________________"
    echo "__________________________________________________________________________"
    echo ""
    echo ""
    for file in "${BOARD_FILES[@]}"
    for file in "${BOARD_FILES[@]}"
    do
    do
        if [ $file != NONE ]
        if [ $file != NONE ]
        then
        then
            echo "Copying $file, to backend directory..."
            echo "Copying $file, to backend directory..."
            cp $BOARD_DIR/$file $BACKEND_DIR
            cp $BOARD_DIR/$file $BACKEND_DIR
        fi
        fi
    done
    done
    echo ""
    echo ""
    echo "Configuration done."
    echo "Configuration done."
    echo "For synthesis help go to $SYN_DIR and type \"make\"."
    echo "For synthesis help go to $SYN_DIR and type \"make\"."
fi
fi
 
 

powered by: WebSVN 2.1.0

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