Lines Matching full:platform

2 Platform Devices and Drivers
6 platform bus: platform_device, and platform_driver. This pseudo-bus
13 Platform devices
15 Platform devices are devices that typically appear as autonomous
23 Platform devices are given a name, used in driver binding, and a
35 Platform drivers
37 Platform drivers follow the standard driver model convention, where
55 actually exists; sometimes platform setup code can't be sure. The probing
58 Platform drivers register themselves the normal way::
69 Kernel modules can be composed of several platform drivers. The platform core
86 As a rule, platform specific (and often board-specific) setup code will
87 register platform devices::
105 In many cases, the memory and IRQ resources associated with the platform
110 Embedded systems frequently need one or more clocks for platform devices,
119 on a non-driver role: the driver registers its platform device, rather than
136 were created by PNP or by platform device setup.
177 checked for matches. Platform devices should be registered very
190 Early Platform Devices and Drivers
192 The early platform interfaces provide platform data to platform device
198 1. Registering early platform device data
200 The architecture code registers platform device data using the function
203 at this point will later on be matched against early platform drivers.
209 User specified early platform devices will be registered at this point.
212 the class string, "serial" is the name of the platform driver and
213 0 is the platform device id. If the id is -1 then the dot and the
216 3. Installing early platform drivers belonging to a certain class
219 platform drivers belonging to a certain class using the function
225 4. Early platform driver registration
227 Compiled-in platform drivers making use of early_platform_init() are
231 5. Probing of early platform drivers belonging to a certain class
234 registered early platform devices associated with a certain class with
235 registered early platform drivers. Matched devices will get probed().
239 6. Inside the early platform driver probe()
244 it is called at early platform device or at the regular platform device