On Monday 19 March 2012, Stephen Warren wrote: > > Maybe one can use named properties in a new device node in that case, > > like this: > > > > bus { > > dma: dma-controller { > > #dma-cells = <1>; > > }; > > > > device { > > compatible = "device"; > > channel: dma-channel { > > type = <0x1>; > > name = "foo"; > > number = <23>; > > direction = <3>; > > }; > > dma-requests = <&dma &channel>; > > }; > > }; > > For reference, this is very similar to how the pinctrl bindings work, > except that they require the "channel" node to be a child of the DMA > controller, and hence "dma-requests" doesn't contain <&dma &channel>, > just <&channel>, since "dma" is the parent (or grand-parent) of "channel". Right, but the difference beytween the pinctrl binding and what I describe here is that the channel description would be part of the dma engine driver specific binding, not the generic binding that is visible to device drivers. As I said, one dmaengine could use a phandle while another one could just use a single number or nothing at all. If it chooses to use a phandle (or possible a combination of phandle and number), the binding could mandate for the device node to be either a child of the dma controller or the device using it. In either case it would be sensible to do it the same way for all dmaengine drivers that want to have a phandle in the argument. Arnd -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html