Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vdt-plugin
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
vdt-plugin
Commits
89c6c1fe
Commit
89c6c1fe
authored
Jul 25, 2015
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'altera'
parents
3968e7c4
97b1bfc2
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
1235 additions
and
347 deletions
+1235
-347
quartus_interface.xml
tools/Altera_Quartus/quartus_interface.xml
+120
-0
quartus_launch.xml
tools/Altera_Quartus/quartus_launch.xml
+135
-0
quartus_place.xml
tools/Altera_Quartus/quartus_place.xml
+224
-0
quartus_proto.xml
tools/Altera_Quartus/quartus_proto.xml
+39
-0
quartus_synthesis.xml
tools/Altera_Quartus/quartus_synthesis.xml
+273
-0
BasicInterface.xml
tools/BasicInterface.xml
+2
-0
DesignMenu.xml
tools/DesignMenu.xml
+258
-244
FPGA_project.xml
tools/FPGA_project.xml
+184
-103
No files found.
tools/Altera_Quartus/quartus_interface.xml
0 → 100644
View file @
89c6c1fe
<?xml version="1.0" encoding="UTF-8"?>
<!--
/*******************************************************************************
* Copyright (c) 2015 Elphel, Inc.
* This file is a part of VDT plug-in.
* VDT plug-in is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* VDT plug-in is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Additional permission under GNU GPL version 3 section 7:
* If you modify this Program, or any covered work, by linking or combining it
* with Eclipse or Eclipse plugins (or a modified version of those libraries),
* containing parts covered by the terms of EPL/CPL, the licensors of this
* Program grant you additional permission to convey the resulting work.
* {Corresponding Source for a non-source form of such a combination shall
* include the source code for the parts of Eclipse or Eclipse plugins used
* as well as that of the covered work.}
*******************************************************************************/
-->
<vdt-project>
<interface
name=
"QuartusInterface"
extends=
"FPGAPprojectInterface"
>
<syntax
name=
"GrepFilterProblemSyntax"
format=
'| grep --line-buffered -v "\[%%ParamName"'
/>
<syntax
name=
"GrepFilterProblemOtherSyntax"
format=
'%(| grep --line-buffered -v "\[%%ParamValue"%|\n%)'
/>
<typedef
name=
"ParserModeType"
>
<paramtype
kind=
"enum"
base=
"String"
>
<item
value=
"0"
label=
"Tool output is parsed immediately"
/>
<item
value=
"1"
label=
"Tool output is delayed by not more than 1 line when consolidating bits"
/>
<item
value=
"2"
label=
"As '1', but do not show same bits again"
/>
<item
value=
"3"
label=
"All tool output containg hierarchical output is delayed to the very end"
/>
</paramtype>
</typedef>
</interface>
<!-- Abstract tools to be inherited by instances used for various Quartus tools -->
<!-- Restore tool for Quartus -->
<tool
name=
"RestoreQuartus"
label=
"Restore state after Quartus tool"
project=
"FPGA_project"
interface=
"QuartusInterface"
package=
"FPGA_package"
shell=
"/bin/bash"
abstract=
"true"
>
<output>
<line
name=
"quartus_pre_restore"
>
"-c"
<!-- Create project directory on remote server if it did not exist -->
"ssh"
"-oBatchMode=yes"
"-l %RemoteUser %RemoteHost"
"'"
"mkdir -p"
"%QuartusProjectRoot"
"' ;"
<!-- Copy snapshot generated after synthesis from local to remote -->
"rsync -avr -e ssh"
<!-- from: -->
"%QuartusLocalDir/%%StateFile"
<!-- to: -->
"%RemoteUser@%RemoteHost:%QuartusProjectRoot"
";"
</line>
<line
name=
"quartus_restore"
dest=
"QuartusConsole"
mark=
"``"
sep=
"\n"
failure=
"ERROR"
prompt=
"@@FINISH@@"
log=
""
>
"puts \"\Restoring snapshot %%StateFile""
"cd ~/%QuartusProjectRoot"
"set outputDir ~/%QuartusProjectRoot/%QuartusRemoteDir"
"file mkdir $outputDir"
"project_restore %QuartusRemoteDir/%%StateFile"
"puts \"@@FINISH@@\""
</line>
</output>
</tool>
<!-- Save tool for Quartus tool -->
<tool
name=
"SaveQuartus"
label=
"SaveQuartus"
project=
"FPGA_project"
interface=
"QuartusInterface"
package=
"FPGA_package"
shell=
"/bin/bash"
abstract=
"true"
>
<output>
<line
name=
"quartus_save"
dest=
"QuartusConsole"
mark=
"``"
sep=
"\n"
prompt=
"@@FINISH@@"
failure=
"ERROR"
log=
""
>
"puts \"Saving snapshot %%StateFile\""
"cd ~/%QuartusProjectRoot"
"set outputDir ~/%QuartusProjectRoot/%QuartusRemoteDir"
"file mkdir $outputDir"
"project_archive -overwrite %QuartusRemoteDir/%%StateFile"
"puts \"@@FINISH@@\""
</line>
<line
name=
"quartus_copy_after_save"
>
"-c"
"mkdir -p %QuartusLocalDir ;"
"rsync -avr -e ssh"
"%RemoteUser@%RemoteHost:%QuartusProjectRoot/%QuartusRemoteDir/%%StateFile"
"%%StateDir/"
</line>
</output>
</tool>
</vdt-project>
tools/Altera_Quartus/quartus_launch.xml
0 → 100644
View file @
89c6c1fe
<?xml version="1.0" encoding="UTF-8"?>
<!--
/*******************************************************************************
* Copyright (c) 2015 Elphel, Inc.
* This file is a part of VDT plug-in.
* VDT plug-in is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* VDT plug-in is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Additional permission under GNU GPL version 3 section 7:
* If you modify this Program, or any covered work, by linking or combining it
* with Eclipse or Eclipse plugins (or a modified version of those libraries),
* containing parts covered by the terms of EPL/CPL, the licensors of this
* Program grant you additional permission to convey the resulting work.
* {Corresponding Source for a non-source form of such a combination shall
* include the source code for the parts of Eclipse or Eclipse plugins used
* as well as that of the covered work.}
*******************************************************************************/
-->
<vdt-project>
<tool
name=
"Quartus"
label=
"Launch Quartus"
project=
"FPGA_project"
package=
"FPGA_package"
shell=
"/bin/bash"
interface=
"QuartusInterface"
description=
"Launching remote Quartus in console"
>
<action-menu>
<action
label=
"Launch Quartus"
resource=
""
icon=
"door_in.png"
/>
<action
label=
"Generate public key"
resource=
""
icon=
"key.png"
/>
<action
label=
"Setup connection to"
resource=
"%RemoteUser@%RemoteHost"
check-extension=
"false"
check-existence=
"false"
icon=
"setup.png"
/>
</action-menu>
<parameter
id=
"command"
label=
"Shell command"
default=
"bash"
type=
"String"
format=
"CopyValue"
visible=
"true"
readonly=
"false"
/>
<parameter
id=
"actionIndex"
default=
"%%ChosenActionIndex"
type=
"String"
format=
"CopyValue"
visible=
"false"
/>
<input>
<group
name=
"General"
>
"QuartusRemoteCommand"
</group>
<group
name=
"Shell"
>
"command"
</group>
</input>
<output>
<if
actionIndex=
"0"
>
<line
name=
"Quartus"
timeout=
"1"
keep-open=
"true"
>
"%QuartusShellSwitches"
"%QuartusPreSSH"
"ssh"
"-oBatchMode=yes"
<if
TerminalMode =
"true"
>
"-t -t"
</if>
"%QuartusSSHSwitches"
"-l"
"%RemoteUser"
"%RemoteHost"
"'"
"%QuartusRemoteCommand"
"'"
"%QuartusSSHExtra"
"|| { echo '*** ssh connection to the server %RemoteUser@%RemoteHost failed ***';"
"echo 'You may need to configure connection - it is done in \"Package Setup\"';"
"echo 'Then generate a public key (if it is not done already), and post it to';"
"echo 'the remote server (currently set as %RemoteUser@%RemoteHost)';"
"exit 1; } ;"
</line>
<line
name=
"quartus_check"
dest=
"QuartusConsole"
mark=
"``"
sep=
""
success=
"All rights reserved."
prompt=
"@@FINISH@@"
>
<!--success="Finished parsing RTL primitives"-->
"puts \"@@FINISH@@\"\n"
</line>
</if>
<if
actionIndex=
"1"
>
<line
name=
"Keygen"
>
"%QuartusShellSwitches"
"echo \"Generating public key with command:\";"
"echo \"ssh-keygen -t rsa -q -f ~/.ssh/id_rsa -N ''\";"
"ssh-keygen -t rsa -q -f ~/.ssh/id_rsa -N ''"
</line>
</if>
<if
actionIndex=
"2"
>
<line
name=
"SSHCopyID"
>
"%QuartusShellSwitches"
"echo \"*********************************************\";"
"echo \"** **\";"
"echo \"** This command requires you to be able **\";"
"echo \"** to login to the remote system and enter **\";"
"echo \"** a password once to post your public key **\";"
"echo \"** there. **\";"
"echo \"** **\";"
"echo \"** For this you need 'ssh-askpass' to be **\";"
"echo \"** installed in your system. **\";"
"echo \"** **\";"
"echo \"** If the command will fail, you need to **\";"
"echo \"** install 'ssh-askpass' and try again or **\";"
"echo \"** just manually run: **\";"
"echo \"\n ssh-copy-id %RemoteUser@%RemoteHost\n\";"
"echo \"** from the system terminal and enter your **\";"
"echo \"** password when prompted. **\";"
"echo \"** **\";"
"echo \"** If you see nothing below this box, that **\";"
"echo \"** likely means that Eclipse is launched **\";"
"echo \"** from the terminal, and the system asks **\";"
"echo \"** your password (or permission to add **\";"
"echo \"** key of the remote host first) in that **\";"
"echo \"** terminal - just switch to it and **\";"
"echo \"** complete the setup. **\";"
"echo \"** **\";"
"echo \"*********************************************\";"
"ssh-copy-id %RemoteUser@%RemoteHost;"
</line>
</if>
</output>
</tool>
</vdt-project>
tools/Altera_Quartus/quartus_place.xml
0 → 100644
View file @
89c6c1fe
This diff is collapsed.
Click to expand it.
tools/Altera_Quartus/quartus_proto.xml
0 → 100644
View file @
89c6c1fe
<?xml version="1.0" encoding="UTF-8"?>
<!--
/*******************************************************************************
* Copyright (c) 2015 Elphel, Inc.
* This file is a part of VDT plug-in.
* VDT plug-in is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* VDT plug-in is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Additional permission under GNU GPL version 3 section 7:
* If you modify this Program, or any covered work, by linking or combining it
* with Eclipse or Eclipse plugins (or a modified version of those libraries),
* containing parts covered by the terms of EPL/CPL, the licensors of this
* Program grant you additional permission to convey the resulting work.
* {Corresponding Source for a non-source form of such a combination shall
* include the source code for the parts of Eclipse or Eclipse plugins used
* as well as that of the covered work.}
*******************************************************************************/
-->
<vdt-project>
<tool
name=
"QuartusToolPrototype"
label=
"QuartusToolPrototype"
project=
"FPGA_project"
interface=
"QuartusInterface"
package=
"FPGA_package"
shell=
"/bin/bash"
description=
"Quartus tool prototype"
abstract=
"true"
>
</tool>
</vdt-project>
tools/Altera_Quartus/quartus_synthesis.xml
0 → 100644
View file @
89c6c1fe
This diff is collapsed.
Click to expand it.
tools/BasicInterface.xml
View file @
89c6c1fe
...
...
@@ -123,6 +123,8 @@
<syntax
name=
"DashName"
format=
" -%%ParamName"
/>
<syntax
name=
"QuotedDash"
format=
' -%%ParamName "%%ParamValue"'
/>
<syntax
name=
"NameValue"
format=
" %%ParamName %%ParamValue"
/>
<syntax
name=
"DoubleDash"
format=
"--%%ParamName=%%ParamValue"
/>
<syntax
name=
"DoubleDashName"
format=
"--%%ParamName"
/>
<!--
Does not work according to 2.2.1. "Inside text-repetitor, one and only one pattern-generator is mandatory".
...
...
tools/DesignMenu.xml
View file @
89c6c1fe
This diff is collapsed.
Click to expand it.
tools/FPGA_project.xml
View file @
89c6c1fe
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment