Home
last modified time | relevance | path

Searched refs:top (Results 1 – 25 of 129) sorted by relevance

123456

/u-boot/arch/x86/lib/fsp/
A Dfsp_support.c17 u32 top; in fsp_get_usable_lowmem_top() local
27 top = FSP_LOWMEM_BASE; in fsp_get_usable_lowmem_top()
36 top += (u32)(res_desc->len); in fsp_get_usable_lowmem_top()
65 if (top > (u32)hob_list) { in fsp_get_usable_lowmem_top()
67 top = (u32)mem_base; in fsp_get_usable_lowmem_top()
71 return top; in fsp_get_usable_lowmem_top()
79 u64 top; in fsp_get_usable_highmem_top() local
85 top = FSP_HIGHMEM_BASE; in fsp_get_usable_highmem_top()
93 top += (u32)(res_desc->len); in fsp_get_usable_highmem_top()
99 return top; in fsp_get_usable_highmem_top()
/u-boot/common/init/
A Dboard_init.c78 ulong board_init_f_alloc_reserve(ulong top) in board_init_f_alloc_reserve() argument
82 top -= CONFIG_VAL(SYS_MALLOC_F_LEN); in board_init_f_alloc_reserve()
85 top = rounddown(top-sizeof(struct global_data), 16); in board_init_f_alloc_reserve()
87 return top; in board_init_f_alloc_reserve()
/u-boot/lib/
A Dcircbuf.c23 buf->top = buf->data; in buf_init()
49 p = buf->top; in buf_pop()
64 buf->top = p; in buf_pop()
90 buf->top++; in buf_push()
91 if (buf->top == buf->end) { in buf_push()
92 buf->top = buf->data; in buf_push()
/u-boot/arch/arm/mach-nexell/include/mach/
A Ddisplay.h132 int top; member
219 struct dp_plane_top top; member
228 struct dp_plane_top *top,
234 struct dp_plane_top *top, struct dp_plane_info *planes,
239 struct dp_plane_top *top,
245 struct dp_plane_top *top,
258 int dp_plane_screen_setup(int module, struct dp_plane_top *top);
A Ddisplay_dev.h27 struct dp_plane_top top; member
/u-boot/arch/arm/mach-rockchip/
A Dsdram.c40 size_t top = min((unsigned long)(gd->ram_size + CONFIG_SYS_SDRAM_BASE), in dram_init_banksize() local
46 gd->bd->bi_dram[0].size = top - gd->bd->bi_dram[0].start; in dram_init_banksize()
60 gd->bd->bi_dram[1].size = top - gd->bd->bi_dram[1].start; in dram_init_banksize()
67 gd->bd->bi_dram[1].size = top - gd->bd->bi_dram[1].start; in dram_init_banksize()
71 gd->bd->bi_dram[0].size = top - gd->bd->bi_dram[0].start; in dram_init_banksize()
210 unsigned long top = CONFIG_SYS_SDRAM_BASE + SDRAM_MAX_SIZE; in board_get_usable_ram_top() local
212 return (gd->ram_top > top) ? top : gd->ram_top; in board_get_usable_ram_top()
/u-boot/drivers/video/
A Dnexell_display.c134 top->plane_num = DP_PLANS_NUM; in nx_display_parse_dp_top_layer()
137 top->interlace ? "Interlace" : " Progressive"); in nx_display_parse_dp_top_layer()
139 top->screen_width, top->screen_height, in nx_display_parse_dp_top_layer()
140 top->video_prior, top->back_color); in nx_display_parse_dp_top_layer()
147 plane->top = ofnode_read_s32_default(node, "top", 0); in nx_display_parse_dp_layer()
186 nx_display_parse_dp_top_layer(subnode, &dp->top); in nx_display_parse_dp_planes()
429 for (i = 0; dp->top.plane_num > i; i++) { in nx_display_setup()
442 &dp->sync, &dp->ctrl, &dp->top, in nx_display_setup()
449 &dp->sync, &dp->ctrl, &dp->top, in nx_display_setup()
456 &dp->sync, &dp->ctrl, &dp->top, in nx_display_setup()
[all …]
/u-boot/test/dm/
A Dcore.c572 struct udevice *top[NODE_COUNT]; in dm_test_children() local
634 ut_asserteq_ptr(dev, top[5]); in dm_test_children()
640 ut_assertok(device_unbind(top[2])); in dm_test_children()
646 ut_asserteq_ptr(dev, top[6]); in dm_test_children()
647 ut_assertok(device_unbind(top[5])); in dm_test_children()
658 struct udevice *top[NODE_COUNT]; in dm_test_device_reparent() local
692 ut_assertok(device_reparent(top[3], top[0])); in dm_test_device_reparent()
701 ut_assertok(device_reparent(top[4], top[0])); in dm_test_device_reparent()
711 ut_assertok(device_reparent(top[2], top[0])); in dm_test_device_reparent()
720 ut_assertok(device_reparent(top[5], top[2])); in dm_test_device_reparent()
[all …]
/u-boot/drivers/video/nexell/
A Ds5pxx18_dp_rgb.c40 struct dp_plane_top *top, struct dp_plane_info *planes, in nx_rgb_display() argument
45 int count = top->plane_num; in nx_rgb_display()
54 dp_plane_screen_setup(module, top); in nx_rgb_display()
A Ds5pxx18_dp_hdmi.c494 struct dp_plane_top *top, struct dp_plane_info *planes, in nx_hdmi_display() argument
499 int count = top->plane_num; in nx_hdmi_display()
507 top->screen_width = 1280; in nx_hdmi_display()
508 top->screen_height = 720; in nx_hdmi_display()
513 top->screen_width = 1920; in nx_hdmi_display()
514 top->screen_height = 1080; in nx_hdmi_display()
524 module, preset, top->screen_width, top->screen_height); in nx_hdmi_display()
532 dp_plane_screen_setup(module, top); in nx_hdmi_display()
A Ds5pxx18_dp.c203 int dp_plane_screen_setup(int module, struct dp_plane_top *top) in dp_plane_screen_setup() argument
205 int width = top->screen_width; in dp_plane_screen_setup()
206 int height = top->screen_height; in dp_plane_screen_setup()
207 int interlace = top->interlace; in dp_plane_screen_setup()
208 int video_prior = top->video_prior; in dp_plane_screen_setup()
209 unsigned int bg_color = top->back_color; in dp_plane_screen_setup()
243 int sy = plane->top; in dp_plane_layer_setup()
A Ds5pxx18_dp_lvds.c239 struct dp_plane_top *top, struct dp_plane_info *planes, in nx_lvds_display() argument
244 int count = top->plane_num; in nx_lvds_display()
255 dp_plane_screen_setup(module, top); in nx_lvds_display()
/u-boot/common/
A Ddlmalloc.c781 if (p != top)
844 if (next == top)
1169 top = (mchunkptr)brk;
1511 victim = top;
1601 top = p;
1767 if (next == top)
1805 if (next == top)
2112 mchunkptr oldtop = top;
2212 top_size = chunksize(top);
2239 check_chunk(top);
[all …]
A Ddlmalloc.src1606 if (p != top)
1669 if (next == top)
1939 mchunkptr old_top = top; /* Record state of old top */
2072 (`top') is split off. (This use of `top' is in accord with
2328 victim = top;
2399 if (next == top) /* merge with top */
2412 top = p;
2604 /* into top */
2605 if (next == top)
2982 check_chunk(top);
[all …]
/u-boot/cmd/
A Dbedbug.c343 unsigned long top; /* Top of memory address */ in do_bedbug_stack() local
352 top = gd->ram_start + gd->ram_size; in do_bedbug_stack()
362 while ((func < top) && (sp < top)) { in do_bedbug_stack()
/u-boot/board/efi/
A DKconfig10 This target is used for running U-Boot on top of EFI. In
18 This target is used for running U-Boot on top of EFI. In
/u-boot/test/py/
A Dmultiplexed_log.css19 margin-top: 0px;
37 margin-top: 5px;
/u-boot/include/
A Dcircbuf.h14 char *top; /* pointer to current buffer start */ member
/u-boot/doc/
A DREADME.JFFS2_NAND8 for JFFS2 on top NOR flash.
A DREADME.mpc85xx-spin-table9 Core 0 sets up the reset page on the top 4K of memory (or 4GB if total memory
16 relocated to the top of mapped memory) into a variable __spin_table_addr so
/u-boot/doc/SPL/
A DREADME.omap321 This is an example of a typical setup. See top-level README for documentation
26 starts at the top of SRAM (which is configurable) and grows downward. The
27 space between the top of SRAM and the enforced upper bound on the size of the
/u-boot/arch/arm/mach-uniphier/
A Ddram_init.c274 unsigned long base, top; in dram_init_banksize() local
293 top = dram_map[i].base + dram_map[i].size; in dram_init_banksize()
301 uniphier_mem_map_init(base, top - base); in dram_init_banksize()
/u-boot/scripts/kconfig/tests/
A Dpytest.ini5 # them as top-level modules. It is silly to prefix or suffix a test file with
/u-boot/arch/arm/mach-rockchip/px30/
A DKconfig20 * PX30.Core needs to mount on top of EDIMM2.2 for creating complete
27 * PX30.Core needs to mount on top of CTOUCH2.0 for creating complete
/u-boot/doc/driver-model/
A Ddebugging.rst19 - Put '#define DEBUG' at the top of a file, to activate all the debug() and
45 at the very top of malloc_simple.c to get an idea of where your memory is
61 If you are really stuck, putting '#define LOG_DEBUG' at the top of

Completed in 39 milliseconds

123456