Hi Alan, I tried getting a simple example to work with overlays, however so far I failed getting the child nodes to probe drivers, maybe you have an idea? The fpga image is loaded just fine. in dts: fpga_bus@0 { compatible = "altr,fpga-bus", "simple-bus"; #address-cells = <1>; #size-cells = <1>; ranges; fpga_mgr0: devcfg@f8007000 { compatible = "xlnx,zynq-devcfg-1.0", "simple-bus"; reg = <0xf8007000 0x100>; interrupt-parent = <&intc>; interrupts = <0 8 4>; clocks = <&clkc 12>; clock-names = "ref_clk"; syscon = <&slcr>; #address-cells = <1>; #size-cells = <1>; ranges; }; }; overlay: fragment@0 { target-path = "/amba/devcfg@f8007000"; __overlay__ { #address-cells = <1>; #size-cells = <1>; area@0 { compatible = "fpga-area"; #address-cells = <1>; #size-cells = <1>; ranges; firmware-name = "dmac.bin"; axi_dma0: axidma@40000000 { compatible = "xlnx,axi-dma-1.00.a"; reg = <0x40000000 0x10000>; #dma-cells = <1>; xlnx,include-sg = <1>; xlnx,include-dre = <1>; status = "okay"; [...] }; }; }; }; I also stumbled across those while looking through the examples: > +Example: > + > +/dts-v1/; > +/plugin/; /dts-v1/ / plugin/; the above syntax is deprecated: Warning (deprecated_plugin_syntax): Use '/dts-v1/ /plugin/'; syntax. /dts-v1/; /plugin/; is going to be removed in next versions > +Device Tree Example: Partial Reconfiguration with no Bridges > +============================================================ > + > +Live Device Tree contains: > + fpgamgr@ffd03000 { > + compatible = "altr,socfpga-a10-fpga-mgr", "simple-bus"; > + clocks = <&l4_mp_clk>; > + resets = <&rst FPGAMGR_RESET>; > + reset-names = "fpgamgr"; > + reg = <0xffd03000 0x1000 > + 0xffcfe400 0x1000>; > + > + #address-cells = <0x1>; > + #size-cells = <0x1>; > + ranges; > + }; > + > +DT Overlay contains: > +/dts-v1/; > +/plugin/; see above Cheers, Moritz -- To unsubscribe from this list: send the line "unsubscribe linux-doc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html