Searched refs:el (Results 1 - 13 of 13) sorted by relevance

/u-boot/lib/
H A Dlist_sort.c219 struct debug_el *el; local
233 el = kmalloc(sizeof(*el), GFP_KERNEL);
234 if (!el) {
240 el->value = prandom_u32() % (TEST_LIST_LEN / 3);
241 el->serial = i;
242 el->poison1 = TEST_POISON1;
243 el->poison2 = TEST_POISON2;
244 elts[i] = el;
245 list_add_tail(&el
[all...]
/u-boot/scripts/
H A Dspdxcheck.py20 def __init__(self, el, txt):
21 self.el = el
42 for el in lictree[d].traverse():
43 if not os.path.isfile(el.path):
47 for l in open(el.path, encoding="utf-8").readlines():
51 raise SPDXException(el, 'Duplicate License Identifier: %s' %lid)
68 raise SPDXException(el, 'Exception %s is missing SPDX-Licenses' %exception)
207 for el in tree.traverse():
210 if el
[all...]
H A Dcheckpatch.pl5088 ## foreach my $el (@elements) {
5089 ## print("el: <$el>\n");
5095 foreach my $el (@elements) {
5096 push(@fix_elements, substr($rawline, $off, length($el)));
5097 $off += length($el);
/u-boot/arch/arm/include/asm/armv8/
H A Dmmu.h111 static inline void set_ttbr_tcr_mair(int el, u64 table, u64 tcr, u64 attr) argument
114 if (el == 1) {
118 } else if (el == 2) {
122 } else if (el == 3) {
/u-boot/arch/arm/include/asm/
H A Dsystem.h159 unsigned long el; local
161 asm volatile("mrs %0, CurrentEL" : "=r" (el) : : "cc");
162 return 3 & (el >> 2);
167 unsigned int el; local
170 el = current_el();
171 if (el == 1)
173 else if (el == 2)
183 unsigned int el; local
185 el = current_el();
186 if (el
[all...]
/u-boot/arch/arm/lib/
H A Dinterrupts_64.c42 unsigned long el, far; local
57 asm("mrs %0, CurrentEl": "=r" (el));
59 switch (el >> 2) {
/u-boot/drivers/mtd/nand/raw/
H A Datmel_nand_ecc.h134 u32 el[32]; /* 0xAC-0x128 Error Location Registers */ member in struct:pmecc_errloc_regs
143 u32 el[24]; /* 0x8C-0xE8 Error Location Registers */ member in struct:pmecc_errloc_regs
H A Datmel_nand.c455 tmp = pmecc_readl(host->pmerrloc, el[i]) - 1;
/u-boot/include/
H A Datf_common.h56 #define SPSR_64(el, sp, daif) \
58 ((el) & MODE_EL_MASK) << MODE_EL_SHIFT | \
/u-boot/tools/
H A Dkwbimage.c1649 struct image_cfg_element *el)
1664 el->type = keyword_id;
1675 el->version = atoi(value1);
1679 el->cpu_sheeva = 0;
1681 el->cpu_sheeva = 1;
1683 el->cpu_sheeva = 0;
1696 el->bootfrom = ret;
1699 el->nandblksz = strtoul(value1, NULL, 16);
1702 el->nandbadblklocation = strtoul(value1, NULL, 16);
1711 el
1648 image_create_config_parse_oneline(char *line, struct image_cfg_element *el) argument
[all...]
/u-boot/arch/arm/cpu/armv8/
H A Dcache_v8.c44 int el = current_el(); local
46 if (el == 2) {
58 return el;
63 int el = get_effective_el(); local
94 if (el == 1) {
96 } else if (el == 2) {
467 int el; local
473 el = current_el();
474 set_ttbr_tcr_mair(el, gd->arch.tlb_addr, get_tcr(NULL, NULL),
/u-boot/drivers/xen/
H A Dhypervisor.c267 int el = current_el(); local
271 if (el != 1) {
/u-boot/arch/arm/cpu/armv8/fsl-layerscape/
H A Dcpu.c442 unsigned int el = current_el(); local
445 if (el == 3)
456 set_ttbr_tcr_mair(el, gd->arch.tlb_addr,
523 unsigned int el = current_el(); local
573 if (el == 3) {
612 set_ttbr_tcr_mair(el, gd->arch.tlb_addr, get_tcr(NULL, NULL),

Completed in 287 milliseconds