| /rk3399_rockchip-uboot/scripts/dtc/libfdt/ |
| H A D | fdt.c | 162 int fdt_next_node(const void *fdt, int offset, int *depth) in fdt_next_node() argument 181 if (depth) in fdt_next_node() 182 (*depth)++; in fdt_next_node() 186 if (depth && ((--(*depth)) < 0)) in fdt_next_node() 192 || ((nextoffset == -FDT_ERR_TRUNCATED) && !depth)) in fdt_next_node() 204 int depth = 0; in fdt_first_subnode() local 206 offset = fdt_next_node(fdt, offset, &depth); in fdt_first_subnode() 207 if (offset < 0 || depth != 1) in fdt_first_subnode() 215 int depth = 1; in fdt_next_subnode() local 222 offset = fdt_next_node(fdt, offset, &depth); in fdt_next_subnode() [all …]
|
| H A D | fdt_ro.c | 161 int depth; in fdt_subnode_offset_namelen() local 165 for (depth = 0; in fdt_subnode_offset_namelen() 166 (offset >= 0) && (depth >= 0); in fdt_subnode_offset_namelen() 167 offset = fdt_next_node(fdt, offset, &depth)) in fdt_subnode_offset_namelen() 168 if ((depth == 1) in fdt_subnode_offset_namelen() 172 if (depth < 0) in fdt_subnode_offset_namelen() 392 int offset, depth, namelen; in fdt_get_path() local 400 for (offset = 0, depth = 0; in fdt_get_path() 402 offset = fdt_next_node(fdt, offset, &depth)) { in fdt_get_path() 403 while (pdepth > depth) { in fdt_get_path() [all …]
|
| H A D | fdt_wip.c | 120 int depth = 0; in _fdt_node_end_offset() local 122 while ((offset >= 0) && (depth >= 0)) in _fdt_node_end_offset() 123 offset = fdt_next_node(fdt, offset, &depth); in _fdt_node_end_offset()
|
| /rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/ |
| H 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()
|
| /rk3399_rockchip-uboot/fs/reiserfs/ |
| H A D | reiserfs.c | 393 read_tree_node (unsigned int blockNr, int depth) in read_tree_node() argument 395 char* cache = CACHE(depth); in read_tree_node() 397 if (depth < num_cached) in read_tree_node() 402 if (blockNr == INFO->blocks[depth]) in read_tree_node() 410 blockNr, depth); in read_tree_node() 415 if (__le16_to_cpu(BLOCKHEAD (cache)->blk_level) != depth) in read_tree_node() 421 INFO->blocks[depth] = blockNr; in read_tree_node() 431 int depth; in next_key() local 446 depth = DISK_LEAF_NODE_LEVEL; in next_key() 452 if (depth == INFO->tree_depth) in next_key() [all …]
|
| /rk3399_rockchip-uboot/lib/libfdt/ |
| H A D | fdt_region.c | 43 int depth = -1; in fdt_find_regions() local 78 depth++; in fdt_find_regions() 79 if (depth == FDT_MAX_DEPTH) in fdt_find_regions() 88 stack[depth] = want; in fdt_find_regions() 102 want = stack[depth--]; in fdt_find_regions() 295 static int fdt_include_supernodes(struct fdt_region_state *info, int depth) in fdt_include_supernodes() argument 307 for (i = 0; i <= depth; i++) { in fdt_include_supernodes() 356 p->depth = -1; in fdt_first_region() 527 p.depth++; in fdt_next_region() 528 if (p.depth == FDT_MAX_DEPTH) in fdt_next_region() [all …]
|
| H A D | fdt_ro.c | 120 int depth; in fdt_subnode_offset_namelen() local 124 for (depth = 0; in fdt_subnode_offset_namelen() 125 (offset >= 0) && (depth >= 0); in fdt_subnode_offset_namelen() 126 offset = fdt_next_node(fdt, offset, &depth)) in fdt_subnode_offset_namelen() 127 if ((depth == 1) in fdt_subnode_offset_namelen() 131 if (depth < 0) in fdt_subnode_offset_namelen() 371 int offset, depth, namelen; in fdt_get_path() local 379 for (offset = 0, depth = 0; in fdt_get_path() 381 offset = fdt_next_node(fdt, offset, &depth)) { in fdt_get_path() 382 while (pdepth > depth) { in fdt_get_path() [all …]
|
| /rk3399_rockchip-uboot/doc/device-tree-bindings/net/ |
| H 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>;
|
| H A D | ti,dp83867.txt | 9 - ti,fifo-depth - Transmitt FIFO depth- see dt-bindings/net/ti-dp83867.h 21 ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_4_B_NIB>;
|
| /rk3399_rockchip-uboot/drivers/video/sunxi/ |
| H A D | lcdc.c | 44 void lcdc_enable(struct sunxi_lcdc_reg * const lcdc, int depth) in lcdc_enable() argument 55 if (depth == 18) in lcdc_enable() 73 int depth, int dclk_phase) in lcdc_tcon0_mode_set() argument 111 val = (depth == 18) ? 1 : 0; in lcdc_tcon0_mode_set() 116 if (depth == 18 || depth == 16) { in lcdc_tcon0_mode_set() 127 writel(((depth == 18) ? in lcdc_tcon0_mode_set()
|
| /rk3399_rockchip-uboot/lib/ |
| H A D | of_live.c | 55 static int depth; in unflatten_dt_node() local 215 old_depth = depth; in unflatten_dt_node() 216 *poffset = fdt_next_node(blob, *poffset, &depth); in unflatten_dt_node() 217 if (depth < 0) in unflatten_dt_node() 218 depth = 0; in unflatten_dt_node() 219 while (*poffset > 0 && depth > old_depth) { in unflatten_dt_node()
|
| H A D | trace.c | 37 int depth; member 63 if (hdr->depth > hdr->depth_limit) { in add_ftrace() 112 hdr->depth++; in __cyg_profile_func_enter() 113 if (hdr->depth > hdr->depth_limit) in __cyg_profile_func_enter() 114 hdr->max_depth = hdr->depth; in __cyg_profile_func_enter() 131 hdr->depth--; in __cyg_profile_func_exit()
|
| /rk3399_rockchip-uboot/drivers/video/ |
| H 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()
|
| H A D | fsl_diu_fb.c | 223 unsigned int depth, char **fb) in allocate_fb() argument 225 unsigned long size = xres * yres * depth; in allocate_fb() 381 unsigned int depth = 0, freq = 0; in video_hw_init() local 383 if (!video_get_video_mode(&ctfb.winSizeX, &ctfb.winSizeY, &depth, &freq, in video_hw_init() 398 ctfb.winSizeX, ctfb.winSizeY, depth, 64, freq); in video_hw_init()
|
| /rk3399_rockchip-uboot/drivers/core/ |
| H A D | dump.c | 13 static void show_devices(struct udevice *dev, int depth, int last_flag) in show_devices() argument 23 for (i = depth; i >= 0; i--) { in show_devices() 49 show_devices(child, depth + 1, (last_flag << 1) | is_last); in show_devices()
|
| /rk3399_rockchip-uboot/cmd/ |
| H A D | bedbug.c | 332 int depth; /* Stack iteration level */ in do_bedbug_stack() local 344 depth = 0; in do_bedbug_stack() 348 printf ("%5d %08lx\n", depth++, bug_ctx.regs->nip); in do_bedbug_stack() 355 printf ("%5d %08lx\n", depth++, func); in do_bedbug_stack()
|
| H A D | fdt.c | 32 static int fdt_print(const char *pathp, char *prop, int depth); 419 int depth = MAX_LEVEL; /* how deep to print */ in do_fdt() local 429 depth = 1; in do_fdt() 445 ret = fdt_print(pathp, prop, depth); in do_fdt() 948 static int fdt_print(const char *pathp, char *prop, int depth) in fdt_print() argument 1001 if (level <= depth) { in fdt_print() 1017 if (level <= depth) in fdt_print() 1036 if (level <= depth) in fdt_print() 1041 if (level <= depth) { in fdt_print() 1056 if (level <= depth) in fdt_print()
|
| /rk3399_rockchip-uboot/drivers/usb/host/ |
| H A D | xhci-exynos5.c | 59 int depth; in xhci_usb_ofdata_to_platdata() local 70 depth = 0; in xhci_usb_ofdata_to_platdata() 72 COMPAT_SAMSUNG_EXYNOS5_USB3_PHY, &depth); in xhci_usb_ofdata_to_platdata()
|
| H A D | ehci-exynos.c | 50 int depth; in ehci_usb_ofdata_to_platdata() local 61 depth = 0; in ehci_usb_ofdata_to_platdata() 63 COMPAT_SAMSUNG_EXYNOS_USB_PHY, &depth); in ehci_usb_ofdata_to_platdata()
|
| /rk3399_rockchip-uboot/common/ |
| H A D | usb_hub.c | 79 static int usb_set_hub_depth(struct usb_device *dev, int depth) in usb_set_hub_depth() argument 81 if (depth < 0 || depth > 4) in usb_set_hub_depth() 86 depth, 0, NULL, 0, USB_CNTL_TIMEOUT); in usb_set_hub_depth() 828 int depth = 0; in usb_hub_configure() local 832 depth++; in usb_hub_configure() 836 hub->hub_depth = depth; in usb_hub_configure() 839 debug("set hub (%p) depth to %d\n", dev, depth); in usb_hub_configure() 845 ret = usb_set_hub_depth(dev, depth); in usb_hub_configure()
|
| /rk3399_rockchip-uboot/arch/arm/mach-bcm283x/ |
| H A D | msg.c | 34 struct bcm2835_mbox_tag_depth depth; member 123 BCM2835_MBOX_INIT_TAG(&msg_setup->depth, SET_DEPTH); in bcm2835_set_video_params() 124 msg_setup->depth.body.req.bpp = 32; in bcm2835_set_video_params()
|
| /rk3399_rockchip-uboot/arch/arm/dts/ |
| H A D | dra72-evm-revc.dts | 69 ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_8_B_NIB>; 77 ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_8_B_NIB>;
|
| /rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/ |
| H A D | lcdc.h | 119 void lcdc_enable(struct sunxi_lcdc_reg * const lcdc, int depth); 123 int depth, int dclk_phase);
|
| /rk3399_rockchip-uboot/arch/sandbox/cpu/ |
| H A D | sdl.c | 17 int depth; member 80 sdl.depth = 1 << log2_bpp; in sandbox_sdl_init_display() 81 sdl.pitch = sdl.width * sdl.depth / 8; in sandbox_sdl_init_display() 93 sdl.depth, sdl.pitch, in sandbox_sdl_sync()
|
| /rk3399_rockchip-uboot/doc/ |
| H A D | README.trace | 70 16 maximum observed call depth 71 15 call depth limit 72 66,491 calls not traced due to depth 78 16 maximum observed call depth 79 15 call depth limit 80 1,275,767 calls not traced due to depth 327 There is a function call depth limit (set to 15 by default). When the 328 stack depth goes above this then no tracing information is recorded. 329 The maximum depth reached is recorded and displayed by the 'trace stats' 343 - Better control over trace depth
|