On May 29, 10:32 am, greywol...@hotmail.it wrote:
> On 29 Mag, 14:14, Newman <newman5...@yahoo.com> wrote:
>
>
>
>
>
> > On May 29, 9:17 am, greywol...@hotmail.it wrote:
>
> > > Hi,
>
> > > I'm looking for a Linux device driver for FPGA Xilinx Virtex-4,
> > > somebody can help me?
>
> > > Thanks.
>
> > link to a Virtex II Pro articlehttp://www.xilinx.com/publications/xcellonline/xcell_48/xc_linux48.htm
>
> > Your question is too general. Are you thinking about running linux on
> > a PPC in a Virtex4 FX part. You will need to configure and adapt a
> > kernel (OS).
>
> > -Newman
>
> I'm working with a board MPC8548CDS-like (PowerPC). Connected to
> processor local bus and with pci express there is a Virtex 4
> (xc4vfx60).
>
> -Marco- Hide quoted text -
>
> - Show quoted text -
The O'Reilly book Linux Device Drivers is good. I'd guess that the
communication to the
FPGA is via memory mapped I/O through the local
bus You might browse sourceforge.net and see if you can find a similar
driver and adapt it. I ended up writing my own simple one. I did the
minimal in kernel (driver) space and put most of the end functionality
in user space by creating library routines because it was convenient
for the needs of my particular interface. It was my first driver.
The whole concept I used worked quite well, but initially, I got
criticized a lot by the snooty software folks.
Good luck and have fun!
-Newman