fpga manager device tree overlays moritz fischer
play

fpga manager & device tree overlays moritz fischer - PowerPoint PPT Presentation

fpga manager & device tree overlays moritz fischer moritz.fischer@ettus.com mfischer embedded sdr wtf?! what does that even mean embedded sdr? come see other talks tomorrow @ sdr track so why care about fpgas? performance


  1. fpga manager & device tree overlays

  2. moritz fischer moritz.fischer@ettus.com mfischer

  3. embedded sdr

  4. wtf?! what does that even mean embedded sdr?

  5. come see other talks tomorrow @ sdr track

  6. so why care about fpgas? performance

  7. so why care about fpgas? reconfigurability

  8. so why care about fpgas? also, they’re awesome

  9. i won’t go into details of fpga design

  10. bitstream (firmware) contains hardware behavior

  11. so how to configure an fpga in a sane way?

  12. let’s start off with a bit of history

  13. vendor solutions

  14. altera $ cat design.rbf > /dev/fpga0 xilinx $ cat design.bin > /dev/xdevcfg

  15. what could possibly go wrong?

  16. well … if you have more than one device implemented in the fpga

  17. userland just goes ahead and reloads the fpga

  18. you maybe have a kernel driver using fpga resources as well ...

  19. ehrm … whoopsie

  20. should the user really care what fpga is in the system?

  21. what if you had more than one fpga?

  22. even worse, hierarchy? (i’m not making these up...)

  23. partial reconfiguration anyone?

  24. fpga manager is vendor neutral as part of linux 4.4 basic support for socfpga and zynq

  25. api - driver ops write_init() /* prepare fpga for reload */ write() /* reconfigure fpga */ write_complete() /* callback when done */ state() /* returns framework internal state */ fpga_remove() /* called when removed */

  26. api usage (kernel) /* get reference from device node */ struct fpga_manager *mgr = of_fpga_mgr_get(dn); /* load bitstream via fw layer*/ fpga_mgr_firmware_load(mgr, flags, “fw.bin”); /* drop reference */ fpga_mgr_put(mgr);

  27. this covers the simple usecase: driver needs fpga bitstream loaded

  28. but we can do better than that ...

  29. let’s talk about device tree overlays

  30. device tree describes hardware, but what if hardware changes?

  31. device tree overlays allow us to add, remove, and modify nodes of the live tree

  32. -- foo.dts (abbrev.)-- example to foo0: foo@0 { compatible = “linux,foo”; status = “disabled”; modify status }; -- overlay.dts (abbrev.) -- property fragment@0 { target = <&foo0>; __overlay__ { status = “okay”; }; };

  33. -- foo.dts (abbrev.) -- example to foo0: foo@0 { compatible = “linux,foo”; [...] }; add bar -- overlay.dts (abbrev.) -- fragment@0 { target = <&foo0>; child __overlay__ { bar0: bar@42 { compatible = “linux,bar”; }; }; };

  34. seriously now, that’s pretty close to what we want, right?

  35. fpga area (still in dev) so DO NOT TRUST THE SLIDES

  36. -- overlay.dts (abbrev.) -- fragment@0 { will look target = <&fpga_mgr0>; __overlay__ { area0: area@40000000 { compatible = “fpga-area”; somewhat like firmware-name = “foo.bin”; c0: child@0 { compatible = “linux,foo” this }; c1: child@4 { compatible = “linux,bar” }; }; }; };

  37. discussion still ongoing, if you care about fpga join the discussion on lkml

  38. some open issues, but seem mostly solvable

  39. what if fpga is pass- through, i.e. soc spi routed through fabric out to a pin?

  40. notifiers? trying to let driver know device is gonna be gone for a bit

  41. fw subsystem doesn’t support (yet) streaming fw for wimpy systems

  42. buckle up … demo time

  43. if we got here, we’re probably out of time … questions?

  44. thanks to these guys alan tull - fpga mgr core, socfpga driver, reviews gregkh - taking my patches pantelis antoniou - dt overlays michal simek - reviews, initial fpga mgr josh cartwright - reviews

  45. -- foo.dts -- btn0: button@0 { compatible = “ettus, example to e3x0-button”; status = “disabled”; }; modify status -- overlay.dts (abbrev.) -- property fragment@0 { target = <&btn0>; __overlay__ { status = “okay”; }; };

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend