Lines Matching +full:little +full:- +full:endian
5 ----------
13 - big-endian: Boolean; force big endian register accesses
15 know the peripheral always needs to be accessed in big endian (BE) mode.
16 - little-endian: Boolean; force little endian register accesses
18 peripheral always needs to be accessed in little endian (LE) mode.
19 - native-endian: Boolean; always use register accesses matched to the
20 endianness of the kernel binary (e.g. LE vmlinux -> readl/writel,
21 BE vmlinux -> ioread32be/iowrite32be). In this case no byte swaps
22 will ever be performed. Use this if the hardware "self-adjusts"
27 In such cases, little-endian is the preferred default, but it is not
28 a requirement. Some implementations assume that little-endian is
29 the default, because most existing (PCI-based) drivers implicitly
38 native-endian;
46 big-endian;
54 native-endian;
62 little-endian;
65 Daisy-chained devices
66 ---------------------
68 Many serially-attached GPIO and IIO devices are daisy-chainable. To the
69 host controller, a daisy-chain appears as a single device, but the number
72 daisy-chain comprises to determine the amount of data exchanged, how many
76 - #daisy-chained-devices: Number of devices in the daisy-chain (default is 1).
82 gpio-controller;
83 #gpio-cells = <2>;
84 #daisy-chained-devices = <3>;