Lines Matching refs:platdata
26 As an alternative, a new 'of-platdata' feature is provided. This converts the
145 .platdata = &dtv_dwmmc_at_ff0c0000,
165 Converting of-platdata to a useful form
168 Of course it would be possible use the of-platdata directly in your driver
170 driver will not be able to support device tree, since the of-platdata
175 Therefore it is recommended that the of-platdata structure should be used
184 Drivers should always support device tree as an option. The of-platdata
187 Your driver should convert the platdata struct in its probe() method. The
202 * the device tree (or the C structures when of-platdata is used).
226 /* Decode the of-platdata from the C structures */
253 the normal behaviour and is triggered by the use of of-platdata (strictly
256 The of-platdata struct contents is copied from the C structure data to the
260 of-platdata struct will not be present).
262 SPL must use either of-platdata or device tree. Drivers cannot use both at
263 the same time, but they must support device tree. Supporting of-platdata is
268 a board can only move to using of-platdata if all the drivers it uses support
282 The dt-platdata.c file contains the device declarations and is is built in
283 spl/dt-platdata.c.