Searched refs:start (Results 151 - 175 of 931) sorted by relevance

1234567891011>>

/u-boot/tools/u_boot_pylib/
H A Dterminal.py114 before = text[pos:m.start()]
123 pos = m.start() + len(m.group())
224 def start(self, color, bright=True): member in class:Color
225 """Returns a start color code.
231 If color is enabled, returns an ANSI sequence to start the given
266 start = self.BOLD_START
269 start = base % (color + 30)
270 return start + text + self.RESET
/u-boot/arch/arm/cpu/armv8/
H A Dcache_v8.c519 void invalidate_dcache_range(unsigned long start, unsigned long stop) argument
521 __asm_invalidate_dcache_range(start, stop);
527 void flush_dcache_range(unsigned long start, unsigned long stop) argument
529 __asm_flush_dcache_range(start, stop);
532 void invalidate_dcache_range(unsigned long start, unsigned long stop) argument
536 void flush_dcache_range(unsigned long start, unsigned long stop) argument
600 static u64 set_one_region(u64 start, u64 size, u64 attrs, bool flag, int level) argument
604 u64 *pte = find_pte(start, level);
607 if (is_aligned(start, size, levelsize)) {
621 debug("addr=%llx level=%d pte=%p (%llx)\n", start, leve
636 mmu_set_region_dcache_behaviour(phys_addr_t start, size_t size, enum dcache_option option) argument
694 u64 r, size, start; local
775 mmu_set_region_dcache_behaviour(phys_addr_t start, size_t size, enum dcache_option option) argument
[all...]
/u-boot/board/broadcom/bcmns3/
H A Dns3.c23 * @start: DDR bank start address
27 u64 start[BCM_NS3_MAX_NR_BANKS]; member in struct:ns3_dram_bank
127 hdr.bank.start[i] = *p64;
130 printf("mem[%u] 0x%llx - 0x%llx\n", i, hdr.bank.start[i],
131 hdr.bank.start[i] + hdr.bank.len[i] - 1);
140 return fdt_fixup_memory_banks(fdt, hdr.bank.start, hdr.bank.len,
179 gd->bd->bi_dram[0].start = (BCM_NS3_MEM_END - SZ_16M);
/u-boot/arch/x86/lib/
H A Dcoreboot_table.c126 map->start.lo = e820[i].addr & 0xffffffff;
127 map->start.hi = e820[i].addr >> 32;
136 map->start.lo = cfg_tables->start & 0xffffffff;
137 map->start.hi = cfg_tables->start >> 32;
/u-boot/drivers/pci/
H A Dpci_octeontx.c107 address = PCIE_ECAM_OFFSET(PCI_BUS(bdf) + pcie->bus.start - hose->first_busno,
109 *valuep = readl_size(pcie->cfg.start + address, size);
125 address = PCIE_ECAM_OFFSET(PCI_BUS(bdf) + pcie->bus.start - hose->first_busno,
127 writel_size(pcie->cfg.start + address, size, value);
143 u8 pri_bus = pcie->bus.start + 1 - hose->first_busno;
153 *valuep = readl_size(pcie->cfg.start + address + offset, size);
155 hdrtype = readb(pcie->cfg.start + address + PCI_HEADER_TYPE);
173 u8 pri_bus = pcie->bus.start + 1 - hose->first_busno;
179 hdrtype = readb(pcie->cfg.start + address + PCI_HEADER_TYPE);
189 writel_size(pcie->cfg.start
[all...]
/u-boot/test/py/tests/
H A Dtest_dm.py25 # The number of '| ' and '--' matches indicate the indent level. We start
33 start = False
37 if not start:
40 start = True
/u-boot/arch/arm/include/asm/
H A Darmv7.h132 void v7_outer_cache_flush_range(u32 start, u32 end);
133 void v7_outer_cache_inval_range(u32 start, u32 end);
138 int armv7_apply_memory_carveout(u64 *start, u64 *size);
/u-boot/lib/
H A Dfdtdec_test.c150 .start = 0x180000000,
153 .start = 0x80000000,
164 upper = upper_32_bits(carveout.start);
165 lower = lower_32_bits(carveout.start);
179 size = carveout.end - carveout.start + 1;
201 .start = 0x180000000,
207 .start = 0x80000000,
213 printf("carveout: %pap-%pap na=%u ns=%u: ", &expected.start,
219 if ((carveout.start != expected.start) ||
[all...]
/u-boot/drivers/dfu/
H A Ddfu_ram.c32 memcpy(map_sysmem(dfu->data.ram.start + offset, 0), buf, *len);
34 memcpy(buf, map_sysmem(dfu->data.ram.start + offset, 0), *len);
74 dfu->data.ram.start = hextoul(argv[1], &s);
/u-boot/drivers/tpm/
H A Dtpm_atmel_twi.c80 unsigned long start; local
94 start = get_timer(0);
99 if (get_timer(start) > ATMEL_TPM_TIMEOUT_MS) {
/u-boot/board/qualcomm/dragonboard410c/
H A Ddragonboard410c.c27 #define UNSTUFF_BITS(resp, start, size) \
31 const int __off = 3 - ((start) / 32); \
32 const int __shft = (start) & 31; \
/u-boot/drivers/input/
H A Dkeyboard-uclass.c18 if (ops->start)
19 return ops->start(dev);
75 sdev->start = keyboard_start;
/u-boot/arch/powerpc/include/asm/
H A Dcache.h42 extern void flush_dcache_range(unsigned long start, unsigned long stop);
43 extern void clean_dcache_range(unsigned long start, unsigned long stop);
44 extern void invalidate_dcache_range(unsigned long start, unsigned long stop);
/u-boot/arch/x86/cpu/coreboot/
H A Dsdram.c38 uint64_t start = roundup(memrange->base, 1 << 12); local
49 if (end - start < total_size)
93 gd->bd->bi_dram[j].start = memrange->base;
/u-boot/test/common/
H A Dcread.c59 ulong start; local
96 start = get_timer(0);
99 duration = get_timer(start) - 1000;
/u-boot/test/boot/
H A Dbootstd_common.c3 * Test for bootdev functions. All start with 'bootdev'
73 struct bootdev_hunter *start, *mmc; local
84 start = ll_entry_start(struct bootdev_hunter, bootdev_hunter);
86 seq = mmc - start;
/u-boot/arch/xtensa/include/asm/
H A Dbootparam.h40 unsigned long start; member in struct:meminfo
/u-boot/arch/x86/cpu/
H A Dstart_from_tpl.S12 .section .text.start
/u-boot/arch/mips/mach-octeon/
H A Dcvmx-coremask.c295 int start; local
303 start = 0;
308 start = 1;
309 if (start) {
316 if (start)
334 start = 0;
340 /* Don't start printing until we get a non-zero word. */
342 start = 1;
344 if (start) {
350 if (start)
[all...]
/u-boot/include/
H A Dwdt.h33 * Stop the timer, thus disabling the Watchdog. Use wdt_start to start it again.
50 * the value configured by start()
84 int (*start)(struct udevice *dev, u64 timeout_ms, ulong flags); member in struct:wdt_ops
94 * the value configured by start()
/u-boot/arch/sandbox/
H A DMakefile3 head-y := arch/sandbox/cpu/start.o arch/sandbox/cpu/os.o
/u-boot/include/asm-generic/
H A Du-boot.h30 unsigned long bi_flashstart; /* start of FLASH memory */
33 unsigned long bi_sramstart; /* start of SRAM memory */
65 phys_addr_t start; member in struct:bd_info::__anon56
/u-boot/arch/mips/
H A DMakefile3 head-y := arch/mips/cpu/start.o
6 head-$(CONFIG_ARCH_JZ47XX) := arch/mips/mach-jz47xx/start.o
7 head-$(CONFIG_SOC_MT7621) := arch/mips/mach-mtmips/mt7621/spl/start.o
11 head-$(CONFIG_SOC_MT7621) := arch/mips/mach-mtmips/mt7621/tpl/start.o
/u-boot/tools/
H A Denvcrc.c94 size_t i, start, end, step; local
96 start = 0;
100 start = ENV_HEADER_SIZE - 1;
104 for (i = start; i != end; i += step)
/u-boot/arch/arm/cpu/arm926ejs/
H A DMakefile6 extra-y = start.o

Completed in 185 milliseconds

1234567891011>>