Boards often have the need to store variables in persistent memory. The constraints are often different from what the regular environment can do:
barebox,state is a framework to describe, access, store and restore a set of variables. A state variable set can be fully described in a devicetree node. This node could be part of the regular devicetree blob or it could be an extra devicetree solely for the state. The state variable set contains variables of different types and a place to store the variable set.
A state node contains a description of a set of variables along with a place where the variables are stored.
Required properties:
These are subnodes of a state node each describing a single variable. The node name may end with @<ADDRESS>, but the suffix is sripped from the variable name.
State variables have a type. Currenty supported types are: uint8, uint32, enum32, mac address or string. Variable length strings are not planned.
Required properties:
Optional properties:
Example:
state: state@0 {
magic = <0x27031977>;
compatible = "barebox,state";
backend-type = "raw";
backend = &eeprom, "partname:state";
foo {
reg = <0x00 0x4>;
type = "uint32";
default = <0x0>;
};
bar {
reg = <0x10 0x4>;
type = "enum32";
names = "baz", "qux";
default = <1>;
};
};
Currently two backends exist. The raw backend is a very compact format consisting of a magic value for identification, the raw values and a CRC. Two copies are maintained for making sure that during update the storage device still contains a valid state. The dtb backend stores the state as a devicetree binary blob. This is exactly the original devicetree description of the state itself, but additionally contains the actual values of the variables. Unlike the raw state backend the dtb state backend can describe itself.
As frontend a state instance is a regular barebox device which has device parameters for the state variables. With this the variables can be accessed like normal shell variables. The state command is used to save/restore a state to the backend device.
After initializing the variable can be accessed with $state.foo. state -s stores the state to eeprom.