| /u-boot/scripts/dtc/libfdt/ |
| A D | fdt.c | 246 if (depth) in fdt_next_node() 247 (*depth)++; in fdt_next_node() 251 if (depth && ((--(*depth)) < 0)) in fdt_next_node() 257 || ((nextoffset == -FDT_ERR_TRUNCATED) && !depth)) in fdt_next_node() 269 int depth = 0; in fdt_first_subnode() local 271 offset = fdt_next_node(fdt, offset, &depth); in fdt_first_subnode() 272 if (offset < 0 || depth != 1) in fdt_first_subnode() 280 int depth = 1; in fdt_next_subnode() local 287 offset = fdt_next_node(fdt, offset, &depth); in fdt_next_subnode() 288 if (offset < 0 || depth < 1) in fdt_next_subnode() [all …]
|
| A D | fdt_ro.c | 228 int depth; in fdt_subnode_offset_namelen() local 232 for (depth = 0; in fdt_subnode_offset_namelen() 235 if ((depth == 1) in fdt_subnode_offset_namelen() 239 if (depth < 0) in fdt_subnode_offset_namelen() 597 int offset, depth; in fdt_supernode_atdepth_offset() local 867 unsigned depth = 0; in fdt_check_full() local 900 if (depth != 0) in fdt_check_full() 905 depth++; in fdt_check_full() 921 if (depth == 0) in fdt_check_full() 923 depth--; in fdt_check_full() [all …]
|
| A D | fdt_wip.c | 75 int depth = 0; in fdt_node_end_offset_() local 77 while ((offset >= 0) && (depth >= 0)) in fdt_node_end_offset_() 78 offset = fdt_next_node(fdt, offset, &depth); in fdt_node_end_offset_()
|
| /u-boot/arch/arm/mach-tegra/tegra20/ |
| A D | emc.c | 121 int depth; in find_emc_tables() local 134 depth = 0; in find_emc_tables() 140 offset = fdt_next_node(blob, offset, &depth); in find_emc_tables() 141 if (depth <= 0) in find_emc_tables() 145 if (depth != 1) in find_emc_tables() 179 int depth; in decode_emc() local 206 depth = 0; in decode_emc() 211 COMPAT_NVIDIA_TEGRA20_EMC_TABLE, &depth); in decode_emc()
|
| /u-boot/boot/ |
| A D | fdt_region.c | 43 int depth = -1; in fdt_find_regions() local 85 depth++; in fdt_find_regions() 91 if (!depth && *name) in fdt_find_regions() 99 stack[depth] = want; in fdt_find_regions() 113 if (depth < 0) in fdt_find_regions() 116 want = stack[depth--]; in fdt_find_regions() 120 if (depth == -1) in fdt_find_regions() 381 p->depth = -1; in fdt_first_region() 552 p.depth++; in fdt_next_region() 607 if (p.depth < 0) in fdt_next_region() [all …]
|
| /u-boot/fs/reiserfs/ |
| A D | reiserfs.c | 394 char* cache = CACHE(depth); in read_tree_node() 396 if (depth < num_cached) in read_tree_node() 409 blockNr, depth); in read_tree_node() 420 INFO->blocks[depth] = blockNr; in read_tree_node() 430 int depth; in next_key() local 458 depth++; in next_key() 460 printf (" depth=%d, i=%d\n", depth, INFO->next_key_nr[depth]); in next_key() 468 cache = CACHE (depth); in next_key() 471 cache = read_tree_node (INFO->blocks[depth], depth); in next_key() 523 int depth; in search_stat() local [all …]
|
| /u-boot/arch/mips/mach-octeon/ |
| A D | cvmx-cmd-queue.c | 188 int depth; in cvmx_cmd_queue_initialize() local 192 depth = (max_depth + qstate->pool_size_m1 - 1) / in cvmx_cmd_queue_initialize() 194 if (depth != qstate->max_depth) { in cvmx_cmd_queue_initialize() 195 depth = qstate->max_depth * qstate->pool_size_m1; in cvmx_cmd_queue_initialize() 197 depth); in cvmx_cmd_queue_initialize() 315 unsigned int depth = cvmx_cmd_queue_length(queue_id); in __cvmx_cmd_queue_write_raw() local 317 depth /= qptr->pool_size_m1; in __cvmx_cmd_queue_write_raw() 319 if (cvmx_unlikely(depth > qptr->max_depth)) in __cvmx_cmd_queue_write_raw()
|
| /u-boot/doc/device-tree-bindings/video/ |
| A D | sandbox-fb.txt | 7 log2-depth: Log base 2 of the U-Boot display buffer depth (4=16bpp, 5=32bpp). 16 log2-depth = <5>;
|
| /u-boot/cmd/ |
| A D | clk.c | 17 static void show_clks(struct udevice *dev, int depth, int last_flag) in show_clks() argument 27 if (!IS_ERR(parent) && depth == -1) in show_clks() 29 depth++; in show_clks() 34 for (i = depth; i >= 0; i--) { in show_clks() 58 show_clks(child, depth, (last_flag << 1) | is_last); in show_clks()
|
| A D | fdt.c | 31 static int fdt_print(const char *pathp, char *prop, int depth); 504 int depth = MAX_LEVEL; /* how deep to print */ in do_fdt() local 514 depth = 1; in do_fdt() 530 ret = fdt_print(pathp, prop, depth); in do_fdt() 998 static int fdt_print(const char *pathp, char *prop, int depth) in fdt_print() argument 1051 if (level <= depth) { in fdt_print() 1067 if (level <= depth) in fdt_print() 1086 if (level <= depth) in fdt_print() 1091 if (level <= depth) { in fdt_print() 1106 if (level <= depth) in fdt_print()
|
| /u-boot/doc/usage/cmd/ |
| A D | trace.rst | 40 depth limit. 54 maximum observed call depth 55 Maximum observed call depth while tracing. 57 calls not traced due to depth 59 exceeded the maximum call depth. 118 17 maximum observed call depth 119 15 call depth limit 120 68,667,432 calls not traced due to depth 134 17 maximum observed call depth 135 15 call depth limit [all …]
|
| /u-boot/tools/binman/etype/ |
| A D | fit.py | 388 def _add_entries(base_node, depth, node): argument 401 has_images = depth == 2 and in_images 416 _add_entries(base_node, depth + 1, subnode) 557 def _gen_fdt_nodes(base_node, node, depth, in_images): argument 599 if depth == 1 and in_images: 646 _add_node(node, depth + 1, subnode) 648 def _gen_node(base_node, node, depth, in_images, entry): argument 675 _gen_fdt_nodes(base_node, node, depth, in_images) 703 def _add_node(base_node, depth, node): argument 724 has_images = depth == 2 and in_images [all …]
|
| /u-boot/arch/mips/mach-octeon/include/mach/ |
| A D | cvmx-pko3.h | 180 u64 depth : 48; member 426 s32 depth; member 448 dummy.depth = 0; in cvmx_pko3_dq_parameters() 651 pko_status.s.depth = wm_cnt.s.count; in __cvmx_pko3_lmtdma() 652 pparam->depth = pko_status.s.depth; in __cvmx_pko3_lmtdma() 654 if (pparam->depth > pparam->limit) { in __cvmx_pko3_lmtdma() 660 cvmx_atomic_add32_nosync(&pparam->depth, 1); in __cvmx_pko3_lmtdma() 691 pparam->depth = pko_status.s.depth; in __cvmx_pko3_lmtdma() 762 pko_status.s.depth = wm_cnt.s.count; in __cvmx_pko3_do_dma() 763 pparam->depth = pko_status.s.depth; in __cvmx_pko3_do_dma() [all …]
|
| /u-boot/doc/device-tree-bindings/i2c/ |
| A D | i2c-cdns.txt | 13 - fifo-depth : To specify the FIFO depth of the controller. 22 fifo-depth = <32>;
|
| /u-boot/doc/device-tree-bindings/net/ |
| A D | altera_tse.txt | 20 - rx-fifo-depth: MAC receive FIFO buffer depth in bytes 21 - tx-fifo-depth: MAC transmit FIFO buffer depth in bytes 65 rx-fifo-depth = <2048>; 66 tx-fifo-depth = <2048>; 103 rx-fifo-depth = <2048>; 104 tx-fifo-depth = <2048>;
|
| /u-boot/lib/ |
| A D | trace.c | 38 int depth; /* Depth of function calls */ member 109 if (hdr->depth > hdr->depth_limit) { in add_ftrace() 154 hdr->depth++; in __cyg_profile_func_enter() 155 if (hdr->depth > hdr->max_depth) in __cyg_profile_func_enter() 156 hdr->max_depth = hdr->depth; in __cyg_profile_func_enter() 172 hdr->depth--; in __cyg_profile_func_exit() 174 if (hdr->depth < hdr->min_depth) in __cyg_profile_func_exit() 175 hdr->min_depth = hdr->depth; in __cyg_profile_func_exit()
|
| A D | of_live.c | 53 static int depth; in unflatten_dt_node() local 218 old_depth = depth; in unflatten_dt_node() 219 *poffset = fdt_next_node(blob, *poffset, &depth); in unflatten_dt_node() 220 if (depth < 0) in unflatten_dt_node() 221 depth = 0; in unflatten_dt_node() 222 while (*poffset > 0 && depth > old_depth) { in unflatten_dt_node()
|
| /u-boot/drivers/video/sunxi/ |
| A D | lcdc.c | 46 void lcdc_enable(struct sunxi_lcdc_reg * const lcdc, int depth) in lcdc_enable() argument 57 if (depth == 18) in lcdc_enable() 75 int depth, int dclk_phase) in lcdc_tcon0_mode_set() argument 113 val = (depth == 18) ? 1 : 0; in lcdc_tcon0_mode_set() 118 if (depth == 18 || depth == 16) { in lcdc_tcon0_mode_set() 129 writel(((depth == 18) ? in lcdc_tcon0_mode_set()
|
| /u-boot/drivers/video/ |
| A D | videomodes.c | 236 unsigned int *depth, unsigned int *freq, const char **options) in video_get_video_mode() argument 264 *depth = simple_strtoul(p, &p, 10); in video_get_video_mode() 265 if (!*depth) in video_get_video_mode() 298 unsigned int i, xres, yres, depth, refresh; in video_get_ctfb_res_modes() local 304 if (!video_get_video_mode(&xres, &yres, &depth, &refresh, options)) in video_get_ctfb_res_modes() 312 *depth_ret = depth; in video_get_ctfb_res_modes() 318 xres, yres, depth, refresh, (*mode_ret)->xres, in video_get_ctfb_res_modes()
|
| /u-boot/arch/arm/mach-imx/imx8/ |
| A D | fdt.c | 54 int offset = 0, depth = 0; in update_fdt_with_owned_resources() local 58 for (offset = fdt_next_node(blob, offset, &depth); offset > 0; in update_fdt_with_owned_resources() 59 offset = fdt_next_node(blob, offset, &depth)) { in update_fdt_with_owned_resources() 61 fdt_get_name(blob, offset, NULL), depth); in update_fdt_with_owned_resources()
|
| /u-boot/doc/device-tree-bindings/mmc/ |
| A D | snps,dw-mmc.txt | 14 * fifo-depth: The maximum size of the tx/rx fifo's. If this property is not 28 fifo-depth = <256>;
|
| /u-boot/drivers/usb/host/ |
| A D | xhci-exynos5.c | 61 int depth; in xhci_usb_of_to_plat() local 72 depth = 0; in xhci_usb_of_to_plat() 74 COMPAT_SAMSUNG_EXYNOS5_USB3_PHY, &depth); in xhci_usb_of_to_plat()
|
| /u-boot/common/ |
| A D | usb_hub.c | 82 static int usb_set_hub_depth(struct usb_device *dev, int depth) in usb_set_hub_depth() argument 84 if (depth < 0 || depth > 4) in usb_set_hub_depth() 89 depth, 0, NULL, 0, USB_CNTL_TIMEOUT); in usb_set_hub_depth() 811 int depth = 0; in usb_hub_configure() local 815 depth++; in usb_hub_configure() 819 hub->hub_depth = depth; in usb_hub_configure() 822 debug("set hub (%p) depth to %d\n", dev, depth); in usb_hub_configure() 828 ret = usb_set_hub_depth(dev, depth); in usb_hub_configure()
|
| /u-boot/drivers/net/ |
| A D | higmacv300.c | 412 int depth; in higmac_init_hw_queue() local 420 depth = RX_DESC_NUM; in higmac_init_hw_queue() 427 depth = RX_DESC_NUM; in higmac_init_hw_queue() 434 depth = TX_DESC_NUM; in higmac_init_hw_queue() 441 depth = TX_DESC_NUM; in higmac_init_hw_queue() 448 writel(depth << DESC_WORD_SHIFT, priv->base + regdep); in higmac_init_hw_queue() 451 len = depth * sizeof(*desc); in higmac_init_hw_queue() 461 higmac_init_rx_descs(desc, depth); in higmac_init_hw_queue()
|
| /u-boot/test/py/tests/ |
| A D | vboot_evil.py | 67 depth = -1 79 depth += 1 95 object_depth = depth 122 if depth == object_depth: 125 depth -= 1
|