Lines Matching +full:native +full:- +full:endian
1 Bindings for the Broadcom's brcm,bcm6345-gpio memory-mapped GPIO controllers.
5 BCM6338 have 8-bit data and dirout registers, where GPIO state can be read
7 BCM6345 have 16-bit data and dirout registers, where GPIO state can be read
11 - compatible: should be "brcm,bcm6345-gpio"
12 - reg-names: must contain
13 "dat" - data register
14 "dirout" - direction (output) register
15 - reg: address + size pairs describing the GPIO register sets;
16 order must correspond with the order of entries in reg-names
17 - #gpio-cells: must be set to 2. The first cell is the pin number and
21 - gpio-controller: Marks the device node as a gpio controller.
24 - native-endian: use native endian memory.
27 - BCM6338:
28 gpio: gpio-controller@fffe0407 {
29 compatible = "brcm,bcm6345-gpio";
30 reg-names = "dirout", "dat";
33 #gpio-cells = <2>;
34 gpio-controller;
37 - BCM6345:
38 gpio: gpio-controller@fffe0406 {
39 compatible = "brcm,bcm6345-gpio";
40 reg-names = "dirout", "dat";
42 native-endian;
44 #gpio-cells = <2>;
45 gpio-controller;