Lines Matching full:machine
71 `arch-*` machine/platform specific header files
73 `mach` descriptions of generic ARM to specific machine interfaces
79 Machine/Platform support
82 The ARM tree contains support for a lot of different machine types. To
84 machine-specific parts by directory. For this, the machine category is
86 $(MACHINE) to refer to the category)
88 To this end, we now have arch/arm/mach-$(MACHINE) directories which are
89 designed to house the non-driver files for a particular machine (eg, PCI,
91 machines, there should be a corresponding arch/arm/mach-$(MACHINE)/include/mach
99 each module on an ARM2/ARM250/ARM3 machine when is loaded will take
176 The initial entry into the kernel is via head.S, which uses machine
177 independent code. The machine is selected by the value of 'r1' on
184 We group machine (or platform) support code into machine classes. A
188 the source files and include/mach/ to support the machine class.
193 machine specific "personality."
195 For platforms that support device tree (DT), the machine selection is
197 compile-time, support for the machine type must be selected. This allows for
198 a single multiplatform kernel build to be used for several machine types.
200 For platforms that do not use device tree, this machine selection is
201 controlled by the machine type ID, which acts both as a run-time and a
202 compile-time code selection method. You can register a new machine via the
207 Note: Please do not register a machine type for DT-only platforms. If your
208 platform is DT-only, you do not need a registered machine type.