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