Lines Matching defs:size
196 NOTICE("BL2: Cannot append FCNL reg size prop (ret=%i)\n", ret);
263 ret = fdt_setprop_u32(fdt, fcnlnode, "#size-cells", 2);
265 NOTICE("BL2: Cannot add FCNL #size-cells prop (ret=%i)\n", ret);
536 fdt_setprop_u32(dt, 0, "#size-cells", 2);
644 static void bl2_add_dram_entry(uint64_t start, uint64_t size)
650 fdtsize = cpu_to_fdt64(size);
678 start, start + size - 1, ret);
684 uint64_t start, size, size32;
689 size = dram_config[2 * chan + 1];
690 if (!size)
694 chan, start, start + size - 1,
695 (size >> 30) ? : size >> 20,
696 (size >> 30) ? "G" : "M");
707 size = dram_config[2 * chan + 1];
708 if (!size)
713 * 128 MiB are reserved and the maximum size is 2GiB.
717 size32 = size - 0x8000000U;
730 if (size <= 0x80000000U) {
741 * address, size is 2 GiB shorter than total
742 * size of the channel.
745 size -= 0x80000000U;
748 bl2_add_dram_entry(start, size);