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
54 actually exists; sometimes platform setup code can't be sure. The probing
57 Platform drivers register themselves the normal way::
68 Kernel modules can be composed of several platform drivers. The platform core
85 As a rule, platform specific (and often board-specific) setup code will
86 register platform devices::
104 In many cases, the memory and IRQ resources associated with the platform
109 Embedded systems frequently need one or more clocks for platform devices,
118 on a non-driver role: the driver registers its platform device, rather than
135 were created by PNP or by platform device setup.
176 checked for matches. Platform devices should be registered very
189 Early Platform Devices and Drivers
191 The early platform interfaces provide platform data to platform device
197 1. Registering early platform device data
199 The architecture code registers platform device data using the function
202 at this point will later on be matched against early platform drivers.
208 User specified early platform devices will be registered at this point.
211 the class string, "serial" is the name of the platform driver and
212 0 is the platform device id. If the id is -1 then the dot and the
215 3. Installing early platform drivers belonging to a certain class
218 platform drivers belonging to a certain class using the function
224 4. Early platform driver registration
226 Compiled-in platform drivers making use of early_platform_init() are
230 5. Probing of early platform drivers belonging to a certain class
233 registered early platform devices associated with a certain class with
234 registered early platform drivers. Matched devices will get probed().
238 6. Inside the early platform driver probe()
243 it is called at early platform device or at the regular platform device