summaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/mtd/partition.rst
blob: 0ba117dffcd3fa4d0ba1a94cf1a7c4335750d6f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
.. _devicetree_binding_mtd_partition:

Representing flash partitions in devicetree
===========================================

In addition to the upstream binding, another property is added:

Optional properties:

* ``partuuid``: The global partition UUID for this partition.
  For GPT partitions, the partuuid is the 16-byte GPT Partition UUID (e.g.
  ``de6f4f5c-c055-4374-09f7-8c6821dfb60e``).
  For MBR partitions, the partuuid is the 4-byte disk identifier
  followed by a dash and the partition number (starting with 1, e.g.
  ``c9178f9d-01``).

  The partuuid is case-insensitive.

Additionally, barebox also supports partitioning the eMMC boot partitions if
the partition table node is named appropriately:

* ``partitions`` : user partition
* ``boot0-partitions`` : boot0 partition
* ``boot1-partitions`` : boot1 partition

Examples:

.. code-block:: none

  / {
  	partitions {
  		compatible = "fixed-partitions";
  		#address-cells = <1>;
  		#size-cells = <1>;

  		state_part: state {
  			partuuid = "16367da7-c518-499f-9aad-e1f366692365";
  		};
  	};
  };

  emmc@1 {
  	boot0-partitions {
  		compatible = "fixed-partitions";
  		#address-cells = <1>;
  		#size-cells = <1>;

  		barebox@0 {
  			label = "barebox";
  			reg = <0x0 0x300000>;
  		};
  	};
  };