Searched refs:start (Results 126 - 150 of 931) sorted by relevance

1234567891011>>

/u-boot/board/atmel/sama7g54_curiosity/
H A Dsama7g54_curiosity.c23 gd->bd->bi_boot_params = gd->bd->bi_dram[0].start + 0x100;
/u-boot/api/
H A Dapi_platform-arm.c32 platform_set_mr(si, gd->bd->bi_dram[i].start,
/u-boot/arch/x86/cpu/efi/
H A Dsdram.c28 gd->bd->bi_dram[0].start = efi_get_ram_base();
/u-boot/fs/
H A Dfs_internal.c44 /* read first part which isn't aligned with start of sector */
45 if (blk_dread(blk, partition->start + sector, 1,
68 blk_dread(blk, partition->start + sector, 1,
74 if (blk_dread(blk, partition->start + sector,
87 if (blk_dread(blk, partition->start + sector, 1,
/u-boot/scripts/dtc/libfdt/
H A Dfdt_wip.c51 static void fdt_nop_region_(void *start, int len) argument
55 for (p = start; (char *)p < ((char *)start + len); p++)
/u-boot/arch/arm/mach-tegra/
H A Dpowergate.c27 unsigned long start, timeout = 25; local
37 start = get_timer(0);
39 while (get_timer(start) < timeout) {
/u-boot/arch/x86/cpu/apollolake/
H A Dpunit.c26 ulong start; local
65 start = get_timer(0);
67 if (get_timer(start) > 1) {
/u-boot/arch/arm/cpu/armv7/ls102xa/
H A Dtimer.c105 unsigned long long start; local
108 start = get_ticks(); /* get current timestamp */
111 while ((get_ticks() - start) < tmo)
/u-boot/arch/arm/cpu/armv7/vf610/
H A Dtimer.c72 unsigned long long start; local
75 start = get_ticks(); /* get current timestamp */
77 while ((get_ticks() - start) < tmo)
/u-boot/board/cobra5272/
H A Dflash.c51 printf (" %08lX%s", info->start[i],
83 flash_info[i].start[j] = flashbase;
87 flash_info[i].start[j] =
92 flash_info[i].start[j] = flashbase + 0x8000;
96 flash_info[i].start[j] =
139 ulong start; local
183 start = get_timer(0);
187 (volatile u16 *) (info->start[sect]);
204 if (get_timer(start) > 1000) {
257 ulong start; local
[all...]
/u-boot/test/dm/
H A Dserial.c24 size_t start, putc_written; local
80 start = sandbox_serial_written();
86 ut_asserteq(putc_written - start,
/u-boot/arch/arc/lib/
H A Dcache.c477 /* IOC Aperture start is equal to DDR start */
496 /* IOC Aperture start must be aligned to the size of the aperture */
498 panic("IOC Aperture start must be aligned to the size of the aperture");
738 void invalidate_dcache_range(unsigned long start, unsigned long end) argument
740 if (start >= end)
750 __dc_line_op(start, end - start, OP_INV);
753 __slc_rgn_op(start, end - start, OP_IN
756 flush_dcache_range(unsigned long start, unsigned long end) argument
774 flush_cache(unsigned long start, unsigned long size) argument
[all...]
/u-boot/board/freescale/m5253demo/
H A Dflash.c65 info->start[0] = base;
68 info->start[i] = info->start[i - 1]
107 info->start[i], info->protect[i] ? " (RO)" : " ");
168 ulong type, start; local
207 start = get_timer(0);
211 addr = (FPWV *) info->start[0];
221 start = get_timer(0);
230 if (get_timer(start) > 1000) {
255 addr = (FPWV *) (info->start[sec
388 ulong start; local
[all...]
/u-boot/lib/acpi/
H A Dacpi_writer.c120 void acpi_setup_ctx(struct acpi_ctx *ctx, ulong start) argument
126 start = ALIGN(start, 16);
127 ctx->base = map_sysmem(start, 0);
130 gd_set_acpi_start(start);
/u-boot/drivers/power/regulator/
H A Dtps65090_regulator.c91 ulong start; local
97 start = get_timer(0);
103 if (get_timer(start) > 100)
112 __func__, fet_id, get_timer(start), loops);
115 __func__, fet_id, get_timer(start), loops);
/u-boot/arch/arm/mach-versal/
H A Dcpu.c90 if (gd->bd->bi_dram[i].start < 0x80000000UL ||
91 gd->bd->bi_dram[i].start > 0x100000000UL) {
93 gd->bd->bi_dram[i].start,
98 versal_mem_map[banks].virt = gd->bd->bi_dram[i].start;
99 versal_mem_map[banks].phys = gd->bd->bi_dram[i].start;
/u-boot/drivers/mtd/
H A Dcfi_mtd.c27 size_t a_start = fi->start[0] + instr->addr;
34 if (a_start == fi->start[sect])
38 if (a_end == fi->start[sect + 1]) {
71 u_char *f = (u_char*)(fi->start[0]) + from;
84 u_long t = fi->start[0] + to;
113 flash_protect(FLAG_PROTECT_SET, fi->start[0] + ofs,
114 fi->start[0] + ofs + len - 1, fi);
125 flash_protect(FLAG_PROTECT_CLEAR, fi->start[0] + ofs,
126 fi->start[0] + ofs + len - 1, fi);
168 base_addr = offset = fi->start[
[all...]
/u-boot/arch/mips/lib/
H A Dcache.c96 #define cache_loop(start, end, lsize, ops...) do { \
97 const void *addr = (const void *)(start & ~(lsize - 1)); \
212 phys_addr_t start, end; local
218 start = end - size;
220 debug("mapping memory %pa-%pa non-cached\n", &start, &end);
222 noncached_start = start;
224 noncached_next = start;
/u-boot/drivers/video/
H A Dconsole_normal.c76 void *start, *line; local
85 start = vid_priv->fb + linenum * vid_priv->line_length + x * pbytes;
86 line = start;
95 ret = vidconsole_sync_copy(dev, start, line);
111 void *start, *line; local
118 start = vid_priv->fb + y * vid_priv->line_length + x * pbytes;
120 /* place the cursor 1 pixel before the start of the next char */
123 line = start;
/u-boot/common/
H A Devent.c70 struct evspy_info *start = local
75 for (spy = start; spy != start + n_ents; spy++) {
161 struct evspy_info *start = local
168 for (spy = start; spy != start + n_ents; spy++) {
169 printf("%3x %-3x %-20s %*p %s\n", (uint)(spy - start),
/u-boot/drivers/dfu/
H A Ddfu_sf.c33 ret = spi_flash_read(dfu->data.sf.dev, dfu->data.sf.start + offset,
41 static u64 find_sector(struct dfu_entity *dfu, u64 start, u64 offset) argument
43 return (lldiv((start + offset), dfu->data.sf.dev->sector_size)) *
53 find_sector(dfu, dfu->data.sf.start, offset),
58 ret = spi_flash_write(dfu->data.sf.dev, dfu->data.sf.start + offset,
74 off = find_sector(dfu, dfu->data.sf.start, dfu->offset);
76 if (off != dfu->data.sf.start + dfu->offset)
78 length = dfu->data.sf.start + dfu->data.sf.size - off;
185 dfu->data.sf.start = hextoul(argv[1], &s);
218 dfu->data.sf.start
[all...]
/u-boot/boot/
H A Dvbe_simple.c38 int start; local
43 start = priv->area_start + priv->version_offset;
44 if (start & (MMC_MAX_BLOCK_LEN - 1))
46 start /= MMC_MAX_BLOCK_LEN;
48 if (blk_dread(desc, start, 1, buf) != 1)
62 int start; local
67 start = priv->area_start + priv->state_offset;
68 if (start & (MMC_MAX_BLOCK_LEN - 1))
70 start /= MMC_MAX_BLOCK_LEN;
72 if (blk_dread(desc, start,
[all...]
/u-boot/drivers/core/
H A Dacpi.c133 * @start: The start of the data (the end is obtained from ctx->current)
138 void *start)
152 item->size = end - start;
153 item->base = start;
160 memcpy(item->buf, start, item->size);
164 dev ? dev->name : "other", type, start, item->size);
170 void *start)
172 return add_item(ctx, NULL, writer, TYPE_OTHER, start);
217 * @start
136 add_item(struct acpi_ctx *ctx, struct udevice *dev, const struct acpi_writer *writer, enum gen_type_t type, void *start) argument
169 acpi_add_other_item(struct acpi_ctx *ctx, const struct acpi_writer *writer, void *start) argument
222 sort_acpi_item_type(struct acpi_ctx *ctx, void *start, enum gen_type_t type) argument
334 void *start = ctx->current; local
349 void *start = ctx->current; local
[all...]
/u-boot/arch/x86/cpu/
H A Dmtrr.c70 static void set_var_mtrr(uint reg, uint type, uint64_t start, uint64_t size) argument
74 wrmsrl(MTRR_PHYS_BASE_MSR(reg), start | type);
147 s64 diff = req1->start - req2->start;
169 set_var_mtrr(i, req->type, req->start, req->size);
188 int mtrr_add_request(int type, uint64_t start, uint64_t size) argument
204 req->start = start;
207 req->type, req->start, req->size);
211 debug(" %016llx %016llx\n", req->start | re
240 mtrr_set_next_var(uint type, uint64_t start, uint64_t size) argument
[all...]
/u-boot/include/mtd/
H A Dmtd-abi.h17 __u32 start; member in struct:erase_info_user
22 __u64 start; member in struct:erase_info_user64
27 __u32 start; member in struct:mtd_oob_buf
33 __u64 start; member in struct:mtd_oob_buf64
61 * @start: start address
75 __u64 start; member in struct:mtd_write_req
135 __u32 start; member in struct:otp_info

Completed in 118 milliseconds

1234567891011>>