Project

General

Profile

Activity

From 12/14/2014 to 01/12/2015

01/12/2015

OM 05:48 AM MityDSP-L138 (ARM9 Based Platforms) FPGA Development: RE: FPGA programming
Thank for your reply Mike.
Is it possible to write an image FPGA through СОМ1 on MityDSP? Whether it is possible to make it under Windows?
Oleh
Oleh Mela

01/10/2015

MW 09:17 AM MityDSP-L138 (ARM9 Based Platforms) FPGA Development: RE: FPGA programming
Once you have a bit file that you like you can run the promgen tool to create the binary image to load per this wiki page:
https://support.criticallink.com/redmine/projects/arm9-platforms/wiki/FPGA_Overview
Once you have a binary i...
Michael Williamson
OM 09:10 AM MityDSP-L138 (ARM9 Based Platforms) FPGA Development: FPGA programming
Hi,
I have board L138-FI-236-RL.
Developed in Xilinx ISE the design fine works on FPGA at use ISE iMPACT.
Please, tell a step-by-step how to create an image for FPGA and how to provide working of the design at power off/power on.
...
Oleh Mela

01/09/2015

SN 05:48 AM MityDSP-L138 (ARM9 Based Platforms) Software Development: RE: Simple Code/Doc for FPGA toggle of GPIO from DSP
Thank you, you where spot, it solved the issue with only having one pin high at a time.
The following works
mpGpio->SetPinValue(0,0,1); //pin7
mpGpio->SetPinValue(0,1,1); //pin15
if i use
mpGpio->WritePins(0,0xFFFF,1); //al...
stefan nielsen

01/08/2015

MW 09:18 AM MityDSP-L138 (ARM9 Based Platforms) Software Development: RE: Simple Code/Doc for FPGA toggle of GPIO from DSP
Also, you should not be calling the destructor. This line is not OK: Michael Williamson
MW 08:29 AM MityDSP-L138 (ARM9 Based Platforms) Software Development: RE: Simple Code/Doc for FPGA toggle of GPIO from DSP
The driver could be rewritten to contain a shadow mask of the desired output register, but that is not the current implementation.
-Mike
Michael Williamson
MW 08:28 AM MityDSP-L138 (ARM9 Based Platforms) Software Development: RE: Simple Code/Doc for FPGA toggle of GPIO from DSP
The code for the DSP GPIO control does a read modify write. It Reads the input state of the entire bank, masks the value you are trying to change into the register, and writes the register back out.
If, in your VHDL, you do not conne...
Michael Williamson
SN 08:04 AM MityDSP-L138 (ARM9 Based Platforms) Software Development: RE: Simple Code/Doc for FPGA toggle of GPIO from DSP
Not sure what you mean with input ?,
both are mapped in the VHDL code as output. and set as output with SetPinDirection()
I can set both pin high, only not at the same time.
stefan nielsen
MW 07:52 AM MityDSP-L138 (ARM9 Based Platforms) Software Development: RE: Simple Code/Doc for FPGA toggle of GPIO from DSP
Do you have the inputs of the GPIO core for offsets 0 and 1 connected in you FPGA design?
Michael Williamson
SN 04:22 AM MityDSP-L138 (ARM9 Based Platforms) Software Development: RE: Simple Code/Doc for FPGA toggle of GPIO from DSP
Hi
If i want to toggle both pin 7 and pin 15 at the same time i have an issue (both work independently). Pin 7 goes high, but as soon an i write to pin 15 it goes low again. I tried with mpGpio->WritePins(0,0x3,1)/mpGpio->WritePins(0,...
stefan nielsen
SK 08:29 AM MityDSP-L138 (ARM9 Based Platforms) Software Development: Interrupt source code for DSP
Hi All,
I try to figure out how to serve an interrupt in the DSP code and how to register an ISR for a FPGA interrupt.
How can I register an interrupt system in the DSP code (interrupt from FPGA --> execute ISR)? Could anyone provide...
Stefan Krassin

01/06/2015

DV 01:07 PM MitySOM-5CSX Altera Cyclone V Software Development: RE: Auto-start script
Hi Jack,
Is your software designed to be executed in linux?
If so then you will need to have linux execute it on startup and not uBoot. Here is a brief description of what needs to be done: https://support.criticallink.com/redmine/...
Daniel Vincelette
DV 10:44 AM MitySOM-5CSX Altera Cyclone V Software Development: RE: Mounting the backing_file
Hi Paul,
loopback devices are not built into the provided kernel. You will need to either build it in or add it as a module to your kernel.
Once loopback support is added to your kernel, you should be able mount it with following:
Daniel Vincelette
PE 04:28 AM MitySOM-5CSX Altera Cyclone V Software Development: Mounting the backing_file
Ok so the enable-usb script works and my PC sees the storage made available by the dev kit but what is the mount command to get the backing_file available on the arm processor?
The docs state -
-------------------------------
On you...
Paul Easton
DV 09:52 AM MitySOM-5CSX Altera Cyclone V FPGA Development: RE: Load FPGA from uboot
Hi Jack,
You would use the *editenv* command.
Daniel Vincelette

01/05/2015

FA 07:08 PM MityDSP-L138 (ARM9 Based Platforms) FPGA Development: RE: Programming the FPGA
Hi
What was the solution to the last problem (add source error)? I get the same warning when trying to add pwm.ngc etc into a lx45 project.
thanks, Flemming
Flemming Abrahamsen
04:46 PM MitySOM-5CSX Altera Cyclone V FPGA Development: RE: Load FPGA from uboot
Hi Dan,
How do I change the fpgaimage uboot variable?
Thanks,
Jack
Anonymous
DV 04:28 PM MitySOM-5CSX Altera Cyclone V FPGA Development: RE: Load FPGA from uboot
Hi Jack,
That SD card image will automatically load the rbf file that is on the second partition at /home/root/mityarm_5csx_dev_board.rbf during uboot.
If you would like to boot a different rbf then you will need to update the *fpg...
Daniel Vincelette
03:28 PM MitySOM-5CSX Altera Cyclone V FPGA Development: Load FPGA from uboot
Hi,
I tried to follow the instruction in "http://rocketboards.org/foswiki/Documentation/LoadingFPGAFromUBoot".
But I ran into difficulties where it complains that my file format is not correct.
The development kit sd card image ...
Anonymous
02:42 PM MitySOM-5CSX Altera Cyclone V Software Development: Auto-start script
Hi,
I'm trying to have both my FPGA loaded and a software script running on initializing the system.
Any suggestions?
I know the FPGA can be loaded via uboot, but what about the script. Also, if FPGA is loaded via uboot, will be...
Anonymous

12/23/2014

SN 06:28 AM MityDSP-L138 (ARM9 Based Platforms) Software Development: Simple Code/Doc for FPGA toggle of GPIO from DSP
Hi im trying to toggle a pin in the FPGA(busy/awake LED would do for now) from the DSP. Is there a doc(howto) describing the order of configuration/initialization and usage?.
Been looking at files from MDK_2014-01-13\sw\DSP\lib\core a...
stefan nielsen

12/22/2014

OM 06:27 AM MityDSP-L138 (ARM9 Based Platforms) Software Development: RE: DSP/BIOS issue MityDSP-L138
Thank Alex for your answer.
I think a problem was in incorrect PINMUX for UART-1.
My design works fine for UART-0 and UART-2.
Best regards,
Oleh
Oleh Mela

12/18/2014

AB 10:41 PM MityDSP-L138 (ARM9 Based Platforms) Software Development: RE: DSP/BIOS issue MityDSP-L138
Oleh,
Can you please share some more details about this issue if it is still occurring?
It looks to me like Uboot is interpreting the file as text and trying to execute the commands.
Presumably the DSP has not taken control of t...
Alexander Block
 

Also available in: Atom