- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
VFBC_FIFO_ RDWD
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
11-15-2011 11:17 AM
Hello,
I need your help in order
to correctly manage the vfbc video fifo data in the mpmc core.
In particular, I'm trying to develop
a pcore that concurrently read and writes data from a single vfbc port.
I suppose that, since there are two separate data interfaces on the vfbc port,
there is also a separate data fifo on each interface.
The problem is that when I active both the vfbc_rd_read and vfbc_wd_write
signals, the vfbc_wd_full signal becomes high even if I've only written half data in the "wd fifo".
(at C_VFBC_RDWD_FIFO_DEPTH/2).
Maybe there is a just single fifo data on each vfbc port?
Thank you in advance,
Giovanni
Solved! Go to Solution.
Re: VFBC_FIFO_ RDWD
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
11-15-2011 11:28 AM
Giovanni,
There is a seperate FIFO for each of the read and write ports.
The length of the FIFO is configurable via the PCORE parameters.
Be aware that there is one command port per VFBC, and the command port will service one command at a time.
If you are receiving and sending an image at the same time, you cannot issue a frame read command and a frame write command since the first one received will starve the other.
The way to do this is to break the frame transfer command into seperate line transfer commands.
In this way, the line reads and line writes will be interleaved.
One may starve the other, but only during a line transfer.
As long as the FIFOs are long enough, this will work.
Regards,
Mario.
Re: VFBC_FIFO_ RDWD
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
11-18-2011 12:12 AM
Thank you Mario,
it finally works.
Your help is always precious.
Regards,
Giovanni
Re: VFBC_FIFO_ RDWD
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
11-18-2011 04:43 AM
Giovanni,
That's great news !
Regards,
Mario.



