Merge tag 'usb-4.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
[deliverable/linux.git] / Documentation / devicetree / bindings / regmap / regmap.txt
CommitLineData
2596e07a 1Devicetree binding for regmap
275876e2 2
a06c488d 3Optional properties:
275876e2 4
2596e07a
AB
5 little-endian,
6 big-endian,
7 native-endian: See common-properties.txt for a definition
275876e2 8
2596e07a
AB
9Note:
10Regmap defaults to little-endian register access on MMIO based
11devices, this is by far the most common setting. On CPU
12architectures that typically run big-endian operating systems
13(e.g. PowerPC), registers can be defined as big-endian and must
14be marked that way in the devicetree.
275876e2 15
2596e07a 16On SoCs that can be operated in both big-endian and little-endian
7587eb18 17modes, with a single hardware switch controlling both the endianness
2596e07a
AB
18of the CPU and a byteswap for MMIO registers (e.g. many Broadcom MIPS
19chips), "native-endian" is used to allow using the same device tree
20blob in both cases.
275876e2 21
2596e07a
AB
22Examples:
23Scenario 1 : a register set in big-endian mode.
275876e2 24dev: dev@40031000 {
2596e07a 25 compatible = "syscon";
275876e2 26 reg = <0x40031000 0x1000>;
2596e07a 27 big-endian;
275876e2 28 ...
275876e2 29};
This page took 0.101716 seconds and 5 git commands to generate.