#!/bin/bash
|
#!/bin/bash
|
|
|
#new boards have to udpate this
|
#new boards have to udpate this
|
BOARD=std #this has to have the name of the directory this file is in
|
BOARD=std #this has to have the name of the directory this file is in
|
DEVICE_PART='NONE'
|
DEVICE_PART='NONE'
|
CONSTRAINT_FILE='NONE'
|
CONSTRAINT_FILE='NONE'
|
#~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=$SYN_DIR/src
|
SYNSRC_DIR=$SYN_DIR/src
|
SYNSUPPORT_DIR=$SYN_DIR/buildSupport
|
SYNSUPPORT_DIR=$SYN_DIR/buildSupport
|
|
|
SYN_FILES=(eth_top.xst uart_top.xst adbg_top.xst or1200_top.xst minsoc_top.xst Makefile)
|
SYN_FILES=(eth_top.xst uart_top.xst adbg_top.xst or1200_top.xst minsoc_top.xst Makefile)
|
|
|
FIND_PART='DEVICE_PART'
|
FIND_PART='DEVICE_PART'
|
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 $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 out of a board directory inside minsoc/backend,"
|
echo "This script cannot be run out of 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 ""
|
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 for files under minsoc/syn/src will be patched and stored "
|
echo "Device part for files under minsoc/syn/src will be 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 ""
|
for file in "${SYN_FILES[@]}"
|
for file in "${SYN_FILES[@]}"
|
do
|
do
|
echo "Updating synthesis file, $file..."
|
echo "Updating synthesis file, $file..."
|
echo "Copying $file to synthesis directory..."
|
echo "Copying $file to synthesis directory..."
|
echo ""
|
echo ""
|
sed "s/$FIND_PART/$DEVICE_PART/g" $SYNSRC_DIR/$file > TMPFILE
|
sed "s/$FIND_PART/$DEVICE_PART/g" $SYNSRC_DIR/$file > TMPFILE
|
sed "s/$FIND_CONSTRAINT/$CONSTRAINT_FILE/g" TMPFILE > TMPFILE2 && mv TMPFILE2 $SYNSUPPORT_DIR/$file
|
sed "s/$FIND_CONSTRAINT/$CONSTRAINT_FILE/g" TMPFILE > TMPFILE2 && mv TMPFILE2 $SYNSUPPORT_DIR/$file
|
rm TMPFILE
|
rm TMPFILE
|
done
|
done
|
|
|
echo "Moving Makefile back from minsoc/syn/buildSupport to minsoc/syn..."
|
echo "Moving Makefile back from minsoc/syn/buildSupport to minsoc/syn..."
|
mv $SYNSUPPORT_DIR/Makefile $SYN_DIR
|
mv $SYNSUPPORT_DIR/Makefile $SYN_DIR
|
fi
|
fi
|
echo ""
|
echo ""
|
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 ""
|
echo ""
|
|
|