soc.txt 591 B

123456789101112131415161718192021
  1. Exynos SoC model
  2. The "cpu-model" property is a non-standard extension for the device tree root
  3. node. Since the cpu id of some Exynos variants does not correspond to product
  4. name, this property fills the gap.
  5. For almost all Exynos based boards in the kernel, the product name corresponds
  6. to the device tree file name. The same name is generated in U-Boot, so the new
  7. property allows doing it automatically.
  8. Required properties:
  9. - cpu-model : Exynos product name
  10. Example:
  11. / {
  12. model = "Samsung/Google Peach Pi board based on Exynos5800";
  13. cpu-model = "Exynos5800";
  14. compatible = ...
  15. };