Searched refs:start (Results 76 - 100 of 931) sorted by relevance

1234567891011>>

/u-boot/drivers/scsi/
H A Dscsi.c38 void scsi_setup_read16(struct scsi_cmd *pccb, lbaint_t start, argument
43 pccb->cmd[2] = (unsigned char)(start >> 56) & 0xff;
44 pccb->cmd[3] = (unsigned char)(start >> 48) & 0xff;
45 pccb->cmd[4] = (unsigned char)(start >> 40) & 0xff;
46 pccb->cmd[5] = (unsigned char)(start >> 32) & 0xff;
47 pccb->cmd[6] = (unsigned char)(start >> 24) & 0xff;
48 pccb->cmd[7] = (unsigned char)(start >> 16) & 0xff;
49 pccb->cmd[8] = (unsigned char)(start >> 8) & 0xff;
50 pccb->cmd[9] = (unsigned char)start & 0xff;
82 static void scsi_setup_read_ext(struct scsi_cmd *pccb, lbaint_t start, argument
103 scsi_setup_write_ext(struct scsi_cmd *pccb, lbaint_t start, unsigned short blocks) argument
131 lbaint_t start, blks, max_blks; local
201 lbaint_t start, blks, max_blks; local
267 int start, end; local
[all...]
/u-boot/arch/x86/lib/
H A Dphysmem.c133 * @param offset How far into that page to start setting a value.
158 phys_addr_t arch_phys_memset(phys_addr_t start, int c, phys_size_t size) argument
161 const phys_addr_t orig_start = start;
167 if (start <= max_addr) {
168 phys_size_t low_size = min(max_addr + 1 - start, size);
169 void *start_ptr = (void *)(uintptr_t)start;
171 assert(((phys_addr_t)(uintptr_t)start) == start);
173 start += low_size;
179 phys_addr_t map_addr = start
[all...]
/u-boot/common/
H A Diotrace.c21 * @start: Start address of iotrace buffer
31 ulong start; member in struct:iotrace
62 iotrace.start + iotrace.offset,
141 void iotrace_set_region(ulong start, ulong size) argument
143 iotrace.region_start = start;
153 void iotrace_get_region(ulong *start, ulong *size) argument
155 *start = iotrace.region_start;
169 void iotrace_set_buffer(ulong start, ulong size) argument
171 iotrace.start = start;
177 iotrace_get_buffer(ulong *start, ulong *size, ulong *needed_size, ulong *offset, ulong *count) argument
[all...]
H A Diomux.c36 char *console_args, *temp, **start; local
47 * The array start[] has pointers to the beginning of
51 * commas and then again to populate start.
65 start = (char **)malloc(i * sizeof(char *));
66 if (start == NULL) {
71 start[0] = console_args;
73 temp = strchr(start[i++], ',');
77 start[i] = temp + 1;
81 free(start);
88 free(start);
[all...]
/u-boot/include/
H A Dlinker_lists.h116 * Since this macro defines an array start symbol, its leftmost index
127 static char start[0] __aligned(CONFIG_LINKER_LIST_ALIGN) \
130 _type * tmp = (_type *)&start; \
183 _type *start = ll_entry_start(_type, _list); \
185 unsigned int _ll_result = end - start; \
241 * Since this macro defines the start of the linker-generated arrays,
252 static char start[0] __aligned(4) __attribute__((unused)) \
254 _type * tmp = (_type *)&start; \
H A Dblk.h92 lbaint_t start,
96 lbaint_t start,
100 lbaint_t start,
116 * @param start - starting block number
124 lbaint_t start, lbaint_t blkcnt,
133 * @param start - starting block number
140 lbaint_t start, lbaint_t blkcnt,
184 lbaint_t start, lbaint_t blkcnt,
191 lbaint_t start, lbaint_t blkcnt,
209 * @start
183 blkcache_read(int iftype, int dev, lbaint_t start, lbaint_t blkcnt, unsigned long blksz, void *buffer) argument
190 blkcache_fill(int iftype, int dev, lbaint_t start, lbaint_t blkcnt, unsigned long blksz, void const *buffer) argument
539 blk_dread(struct blk_desc *block_dev, lbaint_t start, lbaint_t blkcnt, void *buffer) argument
560 blk_dwrite(struct blk_desc *block_dev, lbaint_t start, lbaint_t blkcnt, const void *buffer) argument
567 blk_derase(struct blk_desc *block_dev, lbaint_t start, lbaint_t blkcnt) argument
[all...]
H A Dusb_mass_storage.h18 ulong start, lbaint_t blkcnt, void *buf);
20 ulong start, lbaint_t blkcnt, const void *buf);
H A Diotrace.h93 * @start: address of the beginning of the region
96 void iotrace_set_region(ulong start, ulong size);
106 * @start: Returns start address of region
109 void iotrace_get_region(ulong *start, ulong *size);
132 * the start of the buffer.
138 * @start: Start address of buffer
141 void iotrace_set_buffer(ulong start, ulong size);
146 * @start: Returns start addres
[all...]
H A Dhandoff.h24 u64 start; member in struct:spl_handoff::__anon458
/u-boot/arch/mips/mach-mtmips/mt7621/spl/
H A DMakefile2 extra-y += start.o
/u-boot/arch/arc/lib/
H A DMakefile5 extra-y = start.o
6 head-y := start.o
/u-boot/arch/arm/mach-imx/mx5/
H A Dmx53_dram.c39 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
42 gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
/u-boot/net/
H A Dudp.c24 return udp_ops->start(udp_ops->data);
36 if (!ops->start) {
37 printf("%s: no start function defined\n", __func__);
/u-boot/drivers/net/fsl-mc/dpio/
H A Dqbman_private.h90 static inline void __hexdump(unsigned long start, unsigned long end, argument
93 while (start < end) {
98 pos += sprintf(buf + pos, "%08lx: ", start);
100 if ((start < p) || (start >= (p + sz)))
104 if (!(++start & 15)) {
109 if (!(start & 1))
111 if (!(start & 3))
114 } while (start & 15);
124 unsigned long start local
[all...]
/u-boot/arch/arm/mach-snapdragon/
H A Dboard.c48 phys_addr_t start; member in struct:__anon64
57 return (res1->start >> 24) - (res2->start >> 24);
319 mem_map[0].size = gd->bd->bi_dram[0].start - mem_map[0].phys;
325 mem_map[i].phys = gd->bd->bi_dram[j].start;
352 return res1->start - res2->start;
365 phys_addr_t start; local
398 res[i].start = fdt32_to_cpu(ptr[1]);
399 res[i].end = res[i].start
[all...]
/u-boot/disk/
H A Dpart_dos.c256 info->start = (lbaint_t)(ext_part_sector +
298 info->start = 0;
354 static void mbr_fill_pt_entry(dos_partition_t *pt, lbaint_t start, argument
359 lba_to_chs(start, &pt->cyl, &pt->head, &pt->sector);
360 lba_to_chs(start + size - 1, &pt->end_cyl, &pt->end_head, &pt->end_sector);
381 mbr_fill_pt_entry(pt, p[i].start, p[i].start, p[i].size,
384 ext_part_start = p[i].start;
386 ext_part_sect = p[i].start;
412 mbr_fill_pt_entry(pt, p[i].start,
[all...]
/u-boot/arch/powerpc/
H A DMakefile3 head-y := arch/powerpc/cpu/$(CPU)/start.o
/u-boot/arch/arm/include/asm/
H A Dcache.h31 int check_cache_range(unsigned long start, unsigned long stop);
/u-boot/arch/x86/include/asm/
H A Dtables.h49 * @start: start address to write PIRQ routing table
52 ulong write_pirq_routing_table(ulong start);
H A Dmrc_common.h33 * Note: @start and @end must not span the first 4GB boundary
36 * @start: Start of this memory area
39 int mrc_add_memory_area(struct memory_info *info, uint64_t start,
/u-boot/arch/microblaze/cpu/
H A DMakefile6 extra-y = start.o
/u-boot/arch/x86/cpu/ivybridge/
H A Dsdram_nop.c15 gd->bd->bi_dram[0].start = 0;
/u-boot/boot/
H A Dfdt_region.c42 int start = -1; local
129 if (include && start == -1) {
134 start = region[--count].offset - base;
136 start = offset;
139 if (!include && start != -1) {
141 region[count].offset = base + start;
142 region[count].size = stop_at - start;
145 start = -1;
154 region[count].offset = base + start;
155 region[count].size = nextoffset - start;
316 int start, stop_at; local
[all...]
/u-boot/arch/arm/mach-renesas/
H A Dmemmap-rzg2l.c57 u64 start, size; local
71 start = gd->bd->bi_dram[bank].start;
79 if (start == 0x48000000) {
89 start = 0x47E00000ULL;
93 rzg2l_mem_map[i].virt = start;
94 rzg2l_mem_map[i].phys = start;
/u-boot/cmd/
H A Dseama.c63 u32 *start; local
139 start = (u32 *)load_addr;
140 tmp = (u32)start;
147 (u32)offset, (u32)end, (u32)start);
148 for (; start < end; start++, offset++)
149 *start = be32_to_cpu(*offset);

Completed in 140 milliseconds

1234567891011>>