Jack Gassett Posted November 28, 2012 Report Share Posted November 28, 2012 Here is the Papilio Pro User Guide.Watch for the Papilio Pro to be available in the Seeed Studio Store tomorrow for $84.99.Jack. Link to comment Share on other sites More sharing options...
Felix Posted November 28, 2012 Report Share Posted November 28, 2012 Whenever they are released the should show up here :http://www.seeedstudio.com/depot/microcontrollers-fpga-c-132_192.html(yeah i know the link is on the front page) Link to comment Share on other sites More sharing options...
Felix Posted November 29, 2012 Report Share Posted November 29, 2012 It's out http://www.seeedstud...l?cPath=132_192edit:Ordered mine Link to comment Share on other sites More sharing options...
neslekkim Posted November 29, 2012 Report Share Posted November 29, 2012 Thanks for telling!, Ordered mine now, and the retrocade was also there, so ordered that one also Link to comment Share on other sites More sharing options...
hamster Posted November 29, 2012 Report Share Posted November 29, 2012 Congratulations on shipping the board!I should have started saving my pocket-money... but one will be under the Christmas tree for sure! Link to comment Share on other sites More sharing options...
neslekkim Posted November 29, 2012 Report Share Posted November 29, 2012 Regarding saving money, or not so. Would you say the Zedboard is something to desire? (yes, totally different pricerange and so, but Christmas is coming.. ) Link to comment Share on other sites More sharing options...
Jack Gassett Posted November 29, 2012 Author Report Share Posted November 29, 2012 Zynq is freaking awesome, if I had $300 I would buy one to play around with Zynq.Jack. Link to comment Share on other sites More sharing options...
neslekkim Posted November 29, 2012 Report Share Posted November 29, 2012 $395.. and for me I have to pay 25% tax on top which is like $100.. (god knows what shipping would be also) Link to comment Share on other sites More sharing options...
hamster Posted November 30, 2012 Report Share Posted November 30, 2012 (Being a little coy here) I have ported my Mandelbrot Fractal generator to a Zedboard from the Papillio Plus and it clocks at 360MHz on the Zynq (vs 240MHz on the Pap+).The Zynq has 220 DSP blocks, and I was only using 12, so I chained four calculation blocks together and got 1,280,000,000 "loop iterations" per second (I had to run at 320MHz). As each iteration has about 14 or so operations, this get about 18 Giga-ops of mixed integer and 36 bit fixed point.Here's the C code for the loop iterationunsigned char mandelbrot(double cx, double cy) { int i = 0; double x = cx, y = cy; while(i < 255 && x*x+y*y < 4.0) { double t = x; x = x*x-y*y+cx; y = 2*t*y+cy; i++; } return i;}Once I get the frame buffer moved into the DDR RAM and out of block RAM I am going to try to use 16 stages, or 72 giga-ops.Oh, I have also booted Xillinux (http://xillybus.com/xillinux) on a Zedboard the other night, and it makes the Raspberry Pi look very shabby - dual 1.3 core + DDR3 rmem slays the Pi's single 0.7GHz core + LPDDR.However it is not all shiny goodness. Place and route takes an absolute age, even when it is exactly the same design size.- On big projects P+R has gone from "make a cup of tea" to "make dinner, and eat it, and maybe do the dishes too"..- The board is too big and requires too much stuff carry around in my bag- It requires a separate power pack, so you can't work on the sofa- It would not be a good choice to learn on - apart from LEDs + Switches everything else is way too complex- It is yet another huge learning curve, even when you are comfortable with FPGAs.I'll still be hacking on my Papilio (and soon on a Papilio Pro) for a while yet! Link to comment Share on other sites More sharing options...
jacklsw86 Posted December 4, 2012 Report Share Posted December 4, 2012 seems like the papilio pro should be able to use microblaze soft processor with an external SDRAM. Link to comment Share on other sites More sharing options...
Jack Gassett Posted December 4, 2012 Author Report Share Posted December 4, 2012 Before Alvie finished the SDRAM controller for the ZPUino I tried to test the SDRAM of the Papilio Pro using an evaluation version of the EDK and microblaze. What I ran into was that there is no soft SDRAM controller for the Spartan 6... Hopefully that is something that Xilinx will make available soon, then microblaze will work with the Papilio Pro.Jack. Link to comment Share on other sites More sharing options...
alex Posted December 5, 2012 Report Share Posted December 5, 2012 I don't quite follow your comment re soft SDRAM controller. For starters I think you're supposed to use the MCB on Spartan 6 but if you want a soft controller, these have been done before including by ours truly, Mike as per his SDRAM_Memory_Controller not sure why that wouldn't work on a Spartan 6. Link to comment Share on other sites More sharing options...
jbb Posted December 5, 2012 Report Share Posted December 5, 2012 I've ordered myself one of these...Slightly concerned though about the comments about the SDRAM. My understanding is that it's not too difficult to use with your own controller, as long as you're not looking to get every last bit of speed out of it, is that correct? Link to comment Share on other sites More sharing options...
Stefano Posted December 5, 2012 Report Share Posted December 5, 2012 Hi, I'm really new at Papilio Pro, though already very excited about it, congratulations for such a nice board!And, not really a HW board design expert, thus my apologies in advance if this is a silly question...I was just wondering, to what extent, and how difficult it would be to reuse the board design and upgrade it with more powerful Spartan 6 FPGAs devices? And if so, up to which one, say X45, X75 or even beyond???Thanks! Link to comment Share on other sites More sharing options...
Jack Gassett Posted December 5, 2012 Author Report Share Posted December 5, 2012 I don't quite follow your comment re soft SDRAM controller. For starters I think you're supposed to use the MCB on Spartan 6 but if you want a soft controller, these have been done before including by ours truly, Mike as per his SDRAM_Memory_Controller not sure why that wouldn't work on a Spartan 6.The EDK has a system builder that lets you add a memory controller to your automatically generated microblaze system. For the Papilio Plus, with SRAM, I was able to use the system builder to generate a microblaze system that included a SRAM memory controller and a memory test program. I tried to do the same thing for the Papilio Pro but there is no option in the system builder for SDRAM when you use the Spartan 6, there are options for SRAM and DDR SDRAM, but there is no support for SDRAM in the system builder. It's weird because there is definitely a xilinx SDRAM controller... If you change the chip to a Spartan 3E you then have the option to include a SDRAM controller. I did a search through Xilinx's forums and there was confirmation that there is no SDRAM controller for the Spartan 6 in the EDK. We can of course add our own, but that's not as easy as using their system builder... So there is no technical reason that a SDRAM controller doesn't work with Spartan 6 microblaze. For some unfathomable reason there is just not one included in the EDK system builder for the Spartan 6... Link to comment Share on other sites More sharing options...
Jack Gassett Posted December 5, 2012 Author Report Share Posted December 5, 2012 Hi, I'm really new at Papilio Pro, though already very excited about it, congratulations for such a nice board!And, not really a HW board design expert, thus my apologies in advance if this is a silly question...I was just wondering, to what extent, and how difficult it would be to reuse the board design and upgrade it with more powerful Spartan 6 FPGAs devices? And if so, up to which one, say X45, X75 or even beyond???Thanks!Hello Stefano,Unfortunately there is no option for a more powerful chip, the Papilio Pro is already using the most powerful chip available in the tqfp footprint... In order to use the next step up beyond the LX9 we would need to use a BGA footprint, and I've been burned on bringing BGA based designs to the market in the past. I might make another attempt this year, but it would be a ZYNQ board.Jack. Link to comment Share on other sites More sharing options...
Stefano Posted December 6, 2012 Report Share Posted December 6, 2012 Hello Stefano,Unfortunately there is no option for a more powerful chip, the Papilio Pro is already using the most powerful chip available in the tqfp footprint... In order to use the next step up beyond the LX9 we would need to use a BGA footprint, and I've been burned on bringing BGA based designs to the market in the past. I might make another attempt this year, but it would be a ZYNQ board.Jack.Thanks Jack for your prompt answer. I would be definitely interested in your attempt with ZYNQ. The reason is that I've developed a guitar synth on prototyping hardware which I'm very excited about. It actually requires more computational power compared to LX9, but for sure ZYNQ would be more than enough!It looks like a ZYNQ based Papilio-like board would provide the best match with my system requirements in terms of flexibility, customization/configurability, computational power and hopefully costs.Just let me know if you're interested in getting more details.Thanks again!Stefano Link to comment Share on other sites More sharing options...
alvieboy Posted December 7, 2012 Report Share Posted December 7, 2012 Thanks Jack for your prompt answer. I would be definitely interested in your attempt with ZYNQ. The reason is that I've developed a guitar synth on prototyping hardware which I'm very excited about. It actually requires more computational power compared to LX9, but for sure ZYNQ would be more than enough!It looks like a ZYNQ based Papilio-like board would provide the best match with my system requirements in terms of flexibility, customization/configurability, computational power and hopefully costs.Just let me know if you're interested in getting more details.Thanks again!StefanoHi Stefano,Why you say you require more computational power than Spartan6 LX9 ? What are your exact requirements ? The DSP slices on S6 can go up to 100MHz, so it can be a pretty good DSP option.Alvie Link to comment Share on other sites More sharing options...
Jack Gassett Posted December 7, 2012 Author Report Share Posted December 7, 2012 Stefano,I would definitely love to hear more details about your guitar synth, I'm a guitar player myself so I'd be excited to hear about it.Jack. Link to comment Share on other sites More sharing options...
Stefano Posted December 8, 2012 Report Share Posted December 8, 2012 Stefano,I would definitely love to hear more details about your guitar synth, I'm a guitar player myself so I'd be excited to hear about it.Jack.Hi Jack,that's great! I would actually be more than happy to discuss that with you into deeper details. If you don't mind, feel free to contact me at stefano@bentidigital.com so that we can see how we could do that.Thanks,Stefano Link to comment Share on other sites More sharing options...
Stefano Posted December 9, 2012 Report Share Posted December 9, 2012 Hi Stefano,Why you say you require more computational power than Spartan6 LX9 ? What are your exact requirements ? The DSP slices on S6 can go up to 100MHz, so it can be a pretty good DSP option.AlvieHi Alvie,fitting my current synth design into the 16 DSP48 slices available from LX9 would require significant architecture elaboration and algorithm complexity reduction, which at the end might result in affecting the sound quality quite significantly.I roughly estimate it would currently require the resources provided by something in between x45 and x75. That's why I was asking about upgrading the Papilio board with those devices.Anyhow, I agree with you DSP slices working at 100MHz are a very good DSP option, and indeed I plan to explore carefully what the actual resource optimization opportunities would be. To this respect, any suggestions are more than welcome!Thanks,Stefano Link to comment Share on other sites More sharing options...
veqtor Posted December 9, 2012 Report Share Posted December 9, 2012 Hello Stefano,Unfortunately there is no option for a more powerful chip, the Papilio Pro is already using the most powerful chip available in the tqfp footprint... In order to use the next step up beyond the LX9 we would need to use a BGA footprint, and I've been burned on bringing BGA based designs to the market in the past. I might make another attempt this year, but it would be a ZYNQ board.Jack.A zynq board would be really cool! Wow! Link to comment Share on other sites More sharing options...
Felix Posted December 11, 2012 Report Share Posted December 11, 2012 received my ppro today Link to comment Share on other sites More sharing options...
alvieboy Posted December 11, 2012 Report Share Posted December 11, 2012 Hi Alvie,fitting my current synth design into the 16 DSP48 slices available from LX9 would require significant architecture elaboration and algorithm complexity reduction, which at the end might result in affecting the sound quality quite significantly.I roughly estimate it would currently require the resources provided by something in between x45 and x75. That's why I was asking about upgrading the Papilio board with those devices.Anyhow, I agree with you DSP slices working at 100MHz are a very good DSP option, and indeed I plan to explore carefully what the actual resource optimization opportunities would be. To this respect, any suggestions are more than welcome!Thanks,StefanoThe trick here is often to pipeline as much as you can. Unless of course your design is very sensitive to jitter, or if you're already using the full bandwidth.Alvie Link to comment Share on other sites More sharing options...
neslekkim Posted December 12, 2012 Report Share Posted December 12, 2012 received my ppro today And I got mine today, with the retrocade, awesome looking stuff, just trying to find my audioplugs now.. I have plenty of these 6.3mm plugs, but of course I cannot find them now .) Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.