Lines Matching defs:cells
22 * Read cells from a given property of the given node. Any number of 32-bit
23 * cells of the property can be read. Returns 0 on success, or a negative
27 unsigned int cells, uint32_t *value)
45 if (NCELLS((unsigned int)value_len) < cells) {
50 for (unsigned int i = 0U; i < cells; i++) {
192 * Write cells in place to a given property of the given node. At most 2 cells
196 unsigned int cells, void *value)
206 assert(cells <= 2U);
208 if (cells == 2U)
213 len = (int)cells * 4;
435 * The number of cells in one translation entry in ranges is the sum of
437 * self#address-cells + parent#address-cells + self#size-cells
438 * Ex: the iofpga ranges property has one translation entry with 4 cells
439 * They represent iofpga#addr-cells + motherboard#addr-cells + iofpga#size-cells
448 /* Number of cells per translation entry i.e., mapping */
489 #address-cells = <2>;
490 #size-cells = <1>;
501 #address-cells = <2>;
502 #size-cells = <1>;
507 #address-cells = <1>;
508 #size-cells = <1>;