├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── issue_template.md └── pull_request_template.md ├── Jenkinsfile ├── LICENSE ├── README.md ├── amp ├── rpmsg-pingpong │ ├── LICENSE │ ├── Makefile │ ├── README.md │ └── rpmsg-pingpong.c └── rpmsg-tty-example │ ├── LICENSE │ ├── Makefile │ ├── README.md │ └── rpmsg-tty.c ├── can └── README.md ├── dma ├── LICENSE ├── Makefile ├── README.md ├── fdma.h └── uio-dma-interrupt.c ├── dt-overlays ├── README.md └── overlay.sh ├── ethernet └── iio-http-server │ ├── LICENSE │ ├── README.md │ ├── app │ ├── __init__.py │ ├── static │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── chartist.css │ │ │ ├── chartist.css.map │ │ │ ├── chartist.min.css │ │ │ ├── jumbotron-narrow.css │ │ │ ├── microchip.min.css │ │ │ └── scss │ │ │ │ ├── chartist.scss │ │ │ │ └── settings │ │ │ │ └── _chartist-settings.scss │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrap.min.js.map │ │ │ ├── chartist.js │ │ │ ├── chartist.min.js │ │ │ ├── chartist.min.js.map │ │ │ ├── jquery-3.5.1.min.js │ │ │ ├── locales.js │ │ │ ├── locales.min.js │ │ │ ├── locales.min.js.map │ │ │ ├── moment-with-locales.js │ │ │ ├── moment-with-locales.min.js │ │ │ ├── moment-with-locales.min.js.map │ │ │ ├── moment.min.js │ │ │ ├── moment.min.js.map │ │ │ └── tests.js │ ├── templates │ │ ├── about.html │ │ ├── base.html │ │ ├── chart.html │ │ ├── index.html │ │ └── waiting.html │ └── views.py │ ├── collection │ ├── collectd.conf │ ├── collectdiio.busybox │ ├── collectdiio.service │ └── iio.py │ ├── config.py │ ├── run.busybox │ ├── run.py │ └── run.sh ├── fpga-fabric-interfaces └── lsram │ ├── LICENSE │ ├── Makefile │ ├── README.md │ └── uio-lsram-read-write.c ├── gateware ├── README.md └── update-gateware.sh ├── gpio ├── LICENSE.md ├── Makefile ├── README.md ├── gpiod-event.c └── gpiod-test.c ├── japll-pi-controller ├── Makefile ├── README.md ├── configs │ ├── default.cfg │ ├── gPTP.cfg │ └── japll-pi.cfg ├── japll-pi.c ├── print.c └── print.h ├── multimedia └── v4l2 │ ├── LICENSE │ ├── README.md │ ├── auto_enhance_osd │ ├── LICENSE │ ├── Makefile │ ├── README.md │ └── auto-enhance-osd.c │ ├── fswebcam_1280x720.sh │ ├── fswebcam_1920x1080.sh │ ├── imx334_1280x720.sh │ └── imx334_1920x1080.sh ├── opcua ├── README.md ├── icicle-kit │ ├── icicle-motor-server.py │ ├── icicle-video-proxy-server.py │ └── opcua_run_motor.sh └── video-kit │ └── video-kit-server.py ├── pdma ├── Makefile ├── README.md ├── mchp-dma-proxy.h └── pdma-ex.c ├── system-services ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── signature-verification-demo.c └── system-services-example.c └── tsn ├── LICENSE ├── Makefile ├── README.md ├── microchip-tsn-cli.c ├── microchip-tsn-cmds.h ├── microchip-tsn-lib.c ├── microchip-tsn-lib.h ├── microchip-tsn-replace-tsnbasetime.c └── tsninit.sh /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/README.md -------------------------------------------------------------------------------- /amp/rpmsg-pingpong/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/amp/rpmsg-pingpong/LICENSE -------------------------------------------------------------------------------- /amp/rpmsg-pingpong/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/amp/rpmsg-pingpong/Makefile -------------------------------------------------------------------------------- /amp/rpmsg-pingpong/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/amp/rpmsg-pingpong/README.md -------------------------------------------------------------------------------- /amp/rpmsg-pingpong/rpmsg-pingpong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/amp/rpmsg-pingpong/rpmsg-pingpong.c -------------------------------------------------------------------------------- /amp/rpmsg-tty-example/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/amp/rpmsg-tty-example/LICENSE -------------------------------------------------------------------------------- /amp/rpmsg-tty-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/amp/rpmsg-tty-example/Makefile -------------------------------------------------------------------------------- /amp/rpmsg-tty-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/amp/rpmsg-tty-example/README.md -------------------------------------------------------------------------------- /amp/rpmsg-tty-example/rpmsg-tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/amp/rpmsg-tty-example/rpmsg-tty.c -------------------------------------------------------------------------------- /can/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/can/README.md -------------------------------------------------------------------------------- /dma/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/dma/LICENSE -------------------------------------------------------------------------------- /dma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/dma/Makefile -------------------------------------------------------------------------------- /dma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/dma/README.md -------------------------------------------------------------------------------- /dma/fdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/dma/fdma.h -------------------------------------------------------------------------------- /dma/uio-dma-interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/dma/uio-dma-interrupt.c -------------------------------------------------------------------------------- /dt-overlays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/dt-overlays/README.md -------------------------------------------------------------------------------- /dt-overlays/overlay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/dt-overlays/overlay.sh -------------------------------------------------------------------------------- /ethernet/iio-http-server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/LICENSE -------------------------------------------------------------------------------- /ethernet/iio-http-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/README.md -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/__init__.py -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/bootstrap-grid.css -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/bootstrap.css -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/chartist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/chartist.css -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/chartist.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/chartist.css.map -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/chartist.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/chartist.min.css -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/jumbotron-narrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/jumbotron-narrow.css -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/microchip.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/microchip.min.css -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/scss/chartist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/scss/chartist.scss -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/css/scss/settings/_chartist-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/css/scss/settings/_chartist-settings.scss -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/bootstrap.js -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/bootstrap.js.map -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/chartist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/chartist.js -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/chartist.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/chartist.min.js -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/chartist.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/chartist.min.js.map -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/locales.js -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/locales.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/locales.min.js -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/locales.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/locales.min.js.map -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/moment-with-locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/moment-with-locales.js -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/moment-with-locales.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/moment-with-locales.min.js -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/moment-with-locales.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/moment-with-locales.min.js.map -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/moment.min.js -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/moment.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/moment.min.js.map -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/static/js/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/static/js/tests.js -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/templates/about.html -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/templates/base.html -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/templates/chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/templates/chart.html -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/templates/index.html -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/templates/waiting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/templates/waiting.html -------------------------------------------------------------------------------- /ethernet/iio-http-server/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/app/views.py -------------------------------------------------------------------------------- /ethernet/iio-http-server/collection/collectd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/collection/collectd.conf -------------------------------------------------------------------------------- /ethernet/iio-http-server/collection/collectdiio.busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/collection/collectdiio.busybox -------------------------------------------------------------------------------- /ethernet/iio-http-server/collection/collectdiio.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/collection/collectdiio.service -------------------------------------------------------------------------------- /ethernet/iio-http-server/collection/iio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/collection/iio.py -------------------------------------------------------------------------------- /ethernet/iio-http-server/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/config.py -------------------------------------------------------------------------------- /ethernet/iio-http-server/run.busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/run.busybox -------------------------------------------------------------------------------- /ethernet/iio-http-server/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/run.py -------------------------------------------------------------------------------- /ethernet/iio-http-server/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/ethernet/iio-http-server/run.sh -------------------------------------------------------------------------------- /fpga-fabric-interfaces/lsram/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/fpga-fabric-interfaces/lsram/LICENSE -------------------------------------------------------------------------------- /fpga-fabric-interfaces/lsram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/fpga-fabric-interfaces/lsram/Makefile -------------------------------------------------------------------------------- /fpga-fabric-interfaces/lsram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/fpga-fabric-interfaces/lsram/README.md -------------------------------------------------------------------------------- /fpga-fabric-interfaces/lsram/uio-lsram-read-write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/fpga-fabric-interfaces/lsram/uio-lsram-read-write.c -------------------------------------------------------------------------------- /gateware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/gateware/README.md -------------------------------------------------------------------------------- /gateware/update-gateware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/gateware/update-gateware.sh -------------------------------------------------------------------------------- /gpio/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/gpio/LICENSE.md -------------------------------------------------------------------------------- /gpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/gpio/Makefile -------------------------------------------------------------------------------- /gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/gpio/README.md -------------------------------------------------------------------------------- /gpio/gpiod-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/gpio/gpiod-event.c -------------------------------------------------------------------------------- /gpio/gpiod-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/gpio/gpiod-test.c -------------------------------------------------------------------------------- /japll-pi-controller/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/japll-pi-controller/Makefile -------------------------------------------------------------------------------- /japll-pi-controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/japll-pi-controller/README.md -------------------------------------------------------------------------------- /japll-pi-controller/configs/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/japll-pi-controller/configs/default.cfg -------------------------------------------------------------------------------- /japll-pi-controller/configs/gPTP.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/japll-pi-controller/configs/gPTP.cfg -------------------------------------------------------------------------------- /japll-pi-controller/configs/japll-pi.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/japll-pi-controller/configs/japll-pi.cfg -------------------------------------------------------------------------------- /japll-pi-controller/japll-pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/japll-pi-controller/japll-pi.c -------------------------------------------------------------------------------- /japll-pi-controller/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/japll-pi-controller/print.c -------------------------------------------------------------------------------- /japll-pi-controller/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/japll-pi-controller/print.h -------------------------------------------------------------------------------- /multimedia/v4l2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/multimedia/v4l2/LICENSE -------------------------------------------------------------------------------- /multimedia/v4l2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/multimedia/v4l2/README.md -------------------------------------------------------------------------------- /multimedia/v4l2/auto_enhance_osd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/multimedia/v4l2/auto_enhance_osd/LICENSE -------------------------------------------------------------------------------- /multimedia/v4l2/auto_enhance_osd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/multimedia/v4l2/auto_enhance_osd/Makefile -------------------------------------------------------------------------------- /multimedia/v4l2/auto_enhance_osd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/multimedia/v4l2/auto_enhance_osd/README.md -------------------------------------------------------------------------------- /multimedia/v4l2/auto_enhance_osd/auto-enhance-osd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/multimedia/v4l2/auto_enhance_osd/auto-enhance-osd.c -------------------------------------------------------------------------------- /multimedia/v4l2/fswebcam_1280x720.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/multimedia/v4l2/fswebcam_1280x720.sh -------------------------------------------------------------------------------- /multimedia/v4l2/fswebcam_1920x1080.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/multimedia/v4l2/fswebcam_1920x1080.sh -------------------------------------------------------------------------------- /multimedia/v4l2/imx334_1280x720.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/multimedia/v4l2/imx334_1280x720.sh -------------------------------------------------------------------------------- /multimedia/v4l2/imx334_1920x1080.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/multimedia/v4l2/imx334_1920x1080.sh -------------------------------------------------------------------------------- /opcua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/opcua/README.md -------------------------------------------------------------------------------- /opcua/icicle-kit/icicle-motor-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/opcua/icicle-kit/icicle-motor-server.py -------------------------------------------------------------------------------- /opcua/icicle-kit/icicle-video-proxy-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/opcua/icicle-kit/icicle-video-proxy-server.py -------------------------------------------------------------------------------- /opcua/icicle-kit/opcua_run_motor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/opcua/icicle-kit/opcua_run_motor.sh -------------------------------------------------------------------------------- /opcua/video-kit/video-kit-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/opcua/video-kit/video-kit-server.py -------------------------------------------------------------------------------- /pdma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/pdma/Makefile -------------------------------------------------------------------------------- /pdma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/pdma/README.md -------------------------------------------------------------------------------- /pdma/mchp-dma-proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/pdma/mchp-dma-proxy.h -------------------------------------------------------------------------------- /pdma/pdma-ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/pdma/pdma-ex.c -------------------------------------------------------------------------------- /system-services/.gitignore: -------------------------------------------------------------------------------- 1 | signature-verification-demo 2 | system-services-example -------------------------------------------------------------------------------- /system-services/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/system-services/LICENSE -------------------------------------------------------------------------------- /system-services/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/system-services/Makefile -------------------------------------------------------------------------------- /system-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/system-services/README.md -------------------------------------------------------------------------------- /system-services/signature-verification-demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/system-services/signature-verification-demo.c -------------------------------------------------------------------------------- /system-services/system-services-example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/system-services/system-services-example.c -------------------------------------------------------------------------------- /tsn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/tsn/LICENSE -------------------------------------------------------------------------------- /tsn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/tsn/Makefile -------------------------------------------------------------------------------- /tsn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/tsn/README.md -------------------------------------------------------------------------------- /tsn/microchip-tsn-cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/tsn/microchip-tsn-cli.c -------------------------------------------------------------------------------- /tsn/microchip-tsn-cmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/tsn/microchip-tsn-cmds.h -------------------------------------------------------------------------------- /tsn/microchip-tsn-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/tsn/microchip-tsn-lib.c -------------------------------------------------------------------------------- /tsn/microchip-tsn-lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/tsn/microchip-tsn-lib.h -------------------------------------------------------------------------------- /tsn/microchip-tsn-replace-tsnbasetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/tsn/microchip-tsn-replace-tsnbasetime.c -------------------------------------------------------------------------------- /tsn/tsninit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polarfire-soc/polarfire-soc-linux-examples/HEAD/tsn/tsninit.sh --------------------------------------------------------------------------------