Home
last modified time | relevance | path

Searched refs:el (Results 1 – 14 of 14) sorted by relevance

/u-boot/lib/
A Dlist_sort.c219 struct debug_el *el; in list_sort_test() local
233 el = kmalloc(sizeof(*el), GFP_KERNEL); in list_sort_test()
234 if (!el) { in list_sort_test()
240 el->value = prandom_u32() % (TEST_LIST_LEN / 3); in list_sort_test()
241 el->serial = i; in list_sort_test()
242 el->poison1 = TEST_POISON1; in list_sort_test()
243 el->poison2 = TEST_POISON2; in list_sort_test()
244 elts[i] = el; in list_sort_test()
245 list_add_tail(&el->list, &head); in list_sort_test()
267 el = container_of(cur, struct debug_el, list); in list_sort_test()
[all …]
/u-boot/scripts/
A Dspdxcheck.py20 def __init__(self, el, txt): argument
21 self.el = el
42 for el in lictree[d].traverse():
43 if not os.path.isfile(el.path):
207 for el in tree.traverse():
210 if el.path.startswith("LICENSES"):
212 if el.path.find("license-rules.rst") >= 0:
214 if not os.path.isfile(el.path):
216 with open(el.path, 'rb') as fd:
217 parser.parse_lines(fd, args.maxlines, el.path)
[all …]
A Dcheckpatch.pl5089 foreach my $el (@elements) {
5090 push(@fix_elements, substr($rawline, $off, length($el)));
5091 $off += length($el);
/u-boot/arch/arm/include/asm/
A Dsystem.h158 unsigned long el; in current_el() local
160 asm volatile("mrs %0, CurrentEL" : "=r" (el) : : "cc"); in current_el()
161 return 3 & (el >> 2); in current_el()
166 unsigned int el; in get_sctlr() local
169 el = current_el(); in get_sctlr()
170 if (el == 1) in get_sctlr()
172 else if (el == 2) in get_sctlr()
182 unsigned int el; in set_sctlr() local
184 el = current_el(); in set_sctlr()
185 if (el == 1) in set_sctlr()
[all …]
/u-boot/arch/arm/include/asm/armv8/
A Dmmu.h121 static inline void set_ttbr_tcr_mair(int el, u64 table, u64 tcr, u64 attr) in set_ttbr_tcr_mair() argument
124 if (el == 1) { in set_ttbr_tcr_mair()
128 } else if (el == 2) { in set_ttbr_tcr_mair()
132 } else if (el == 3) { in set_ttbr_tcr_mair()
/u-boot/tools/
A Dkwbimage.c1664 el->type = keyword_id; in image_create_config_parse_oneline()
1675 el->version = atoi(value1); in image_create_config_parse_oneline()
1679 el->cpu_sheeva = 0; in image_create_config_parse_oneline()
1681 el->cpu_sheeva = 1; in image_create_config_parse_oneline()
1683 el->cpu_sheeva = 0; in image_create_config_parse_oneline()
1696 el->bootfrom = ret; in image_create_config_parse_oneline()
1711 el->nandeccmode = ret; in image_create_config_parse_oneline()
1718 if (el->satablksz & (el->satablksz-1)) { in image_create_config_parse_oneline()
1770 el->binary.nargs = argi; in image_create_config_parse_oneline()
1789 if (el->regdata_delay > 255) { in image_create_config_parse_oneline()
[all …]
/u-boot/arch/arm/lib/
A Dinterrupts_64.c42 unsigned long el, far; in dump_far() local
57 asm("mrs %0, CurrentEl": "=r" (el)); in dump_far()
59 switch (el >> 2) { in dump_far()
/u-boot/arch/arm/cpu/armv8/
A Dcache_v8.c44 int el = current_el(); in get_effective_el() local
46 if (el == 2) { in get_effective_el()
58 return el; in get_effective_el()
63 int el = get_effective_el(); in get_tcr() local
94 if (el == 1) { in get_tcr()
98 } else if (el == 2) { in get_tcr()
489 int el; in mmu_setup() local
495 el = current_el(); in mmu_setup()
496 set_ttbr_tcr_mair(el, gd->arch.tlb_addr, get_tcr(NULL, NULL), in mmu_setup()
/u-boot/drivers/mtd/nand/raw/
A Datmel_nand_ecc.h134 u32 el[32]; /* 0xAC-0x128 Error Location Registers */ member
143 u32 el[24]; /* 0x8C-0xE8 Error Location Registers */ member
A Datmel_nand.c453 tmp = pmecc_readl(host->pmerrloc, el[i]) - 1; in pmecc_correct_data()
/u-boot/include/
A Datf_common.h56 #define SPSR_64(el, sp, daif) \ argument
58 ((el) & MODE_EL_MASK) << MODE_EL_SHIFT | \
/u-boot/arch/arm/cpu/armv8/fsl-layerscape/
A Dppa.c37 unsigned int el = current_el(); in ppa_init() local
53 if (el < 3) { in ppa_init()
54 debug("Skipping PPA init, running at EL%d\n", el); in ppa_init()
A Dcpu.c442 unsigned int el = current_el(); in early_mmu_setup() local
445 if (el == 3) in early_mmu_setup()
456 set_ttbr_tcr_mair(el, gd->arch.tlb_addr, in early_mmu_setup()
523 unsigned int el = current_el(); in final_mmu_setup() local
573 if (el == 3) { in final_mmu_setup()
612 set_ttbr_tcr_mair(el, gd->arch.tlb_addr, get_tcr(NULL, NULL), in final_mmu_setup()
/u-boot/drivers/xen/
A Dhypervisor.c267 int el = current_el(); in xen_init() local
271 if (el != 1) { in xen_init()

Completed in 147 milliseconds