| /rk3399_rockchip-uboot/lib/ |
| H A D | list_sort.c | 217 struct debug_el *el; in list_sort_test() local 231 el = kmalloc(sizeof(*el), GFP_KERNEL); in list_sort_test() 232 if (!el) { in list_sort_test() 238 el->value = prandom_u32() % (TEST_LIST_LEN / 3); in list_sort_test() 239 el->serial = i; in list_sort_test() 240 el->poison1 = TEST_POISON1; in list_sort_test() 241 el->poison2 = TEST_POISON2; in list_sort_test() 242 elts[i] = el; in list_sort_test() 243 list_add_tail(&el->list, &head); in list_sort_test() 265 el = container_of(cur, struct debug_el, list); in list_sort_test() [all …]
|
| /rk3399_rockchip-uboot/arch/arm/include/asm/armv8/ |
| H A D | mmu.h | 105 static inline void set_ttbr_tcr_mair(int el, u64 table, u64 tcr, u64 attr) in set_ttbr_tcr_mair() argument 108 if (el == 1) { in set_ttbr_tcr_mair() 112 } else if (el == 2) { in set_ttbr_tcr_mair() 116 } else if (el == 3) { in set_ttbr_tcr_mair() 135 u64 get_tcr(int el, u64 *pips, u64 *pva_bits);
|
| /rk3399_rockchip-uboot/arch/arm/include/asm/ |
| H A D | system.h | 138 unsigned int el; in current_el() local 139 asm volatile("mrs %0, CurrentEL" : "=r" (el) : : "cc"); in current_el() 140 return el >> 2; in current_el() 145 unsigned int el, val; in get_sctlr() local 147 el = current_el(); in get_sctlr() 148 if (el == 1) in get_sctlr() 150 else if (el == 2) in get_sctlr() 160 unsigned int el; in set_sctlr() local 162 el = current_el(); in set_sctlr() 163 if (el == 1) in set_sctlr() [all …]
|
| /rk3399_rockchip-uboot/board/el/el6x/ |
| H A D | Kconfig | 7 default "el" 20 default "el"
|
| H A D | MAINTAINERS | 4 F: board/el/el6x/
|
| /rk3399_rockchip-uboot/tools/ |
| H A D | kwbimage.c | 1318 struct image_cfg_element *el) in image_create_config_parse_oneline() argument 1333 el->type = keyword_id; in image_create_config_parse_oneline() 1344 el->version = atoi(value1); in image_create_config_parse_oneline() 1353 el->bootfrom = ret; in image_create_config_parse_oneline() 1356 el->nandblksz = strtoul(value1, NULL, 16); in image_create_config_parse_oneline() 1359 el->nandbadblklocation = strtoul(value1, NULL, 16); in image_create_config_parse_oneline() 1368 el->nandeccmode = ret; in image_create_config_parse_oneline() 1371 el->nandpagesz = strtoul(value1, NULL, 16); in image_create_config_parse_oneline() 1376 el->binary.file = strdup(value1); in image_create_config_parse_oneline() 1382 el->binary.args[argi] = strtoul(value, NULL, 16); in image_create_config_parse_oneline() [all …]
|
| /rk3399_rockchip-uboot/arch/arm/cpu/armv8/ |
| H A D | cache_v8.c | 38 u64 get_tcr(int el, u64 *pips, u64 *pva_bits) in get_tcr() argument 70 if (el == 1) { in get_tcr() 72 } else if (el == 2) { in get_tcr() 407 int el; in mmu_setup() local 413 el = current_el(); in mmu_setup() 414 set_ttbr_tcr_mair(el, gd->arch.tlb_addr, get_tcr(el, NULL, NULL), in mmu_setup()
|
| /rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/ |
| H A D | ppa.c | 35 unsigned int el = current_el(); in ppa_init() local 50 if (el < 3) { in ppa_init() 51 debug("Skipping PPA init, running at EL%d\n", el); in ppa_init()
|
| H A D | cpu.c | 72 unsigned int el = current_el(); in early_mmu_setup() local 83 set_ttbr_tcr_mair(el, gd->arch.tlb_addr, in early_mmu_setup() 84 get_tcr(el, NULL, NULL) & in early_mmu_setup() 146 unsigned int el = current_el(); in final_mmu_setup() local 196 if (el == 3) { in final_mmu_setup() 235 set_ttbr_tcr_mair(el, gd->arch.tlb_addr, get_tcr(el, NULL, NULL), in final_mmu_setup()
|
| /rk3399_rockchip-uboot/drivers/mtd/nand/raw/ |
| H A D | atmel_nand_ecc.h | 135 u32 el[32]; /* 0xAC-0x128 Error Location Registers */ member 144 u32 el[24]; /* 0x8C-0xE8 Error Location Registers */ member
|
| H A D | atmel_nand.c | 450 tmp = pmecc_readl(host->pmerrloc, el[i]) - 1; in pmecc_correct_data()
|
| /rk3399_rockchip-uboot/include/ |
| H A D | atf_common.h | 52 #define SPSR_64(el, sp, daif) \ argument 54 ((el) & MODE_EL_MASK) << MODE_EL_SHIFT | \
|
| /rk3399_rockchip-uboot/arch/arm/lib/ |
| H A D | interrupts_64.c | 41 int el = current_el(); in show_regs() local 93 printf("* ESR_EL%d = %016lx\n", el, regs->esr); in show_regs()
|
| /rk3399_rockchip-uboot/doc/ |
| H A D | README.qemu-mips | 49 # qemu-system-mips[64][el] [-cpu MIPS64R2-generic] -M mips -pflash flash -nographic
|
| /rk3399_rockchip-uboot/arch/arm/mach-imx/mx6/ |
| H A D | Kconfig | 431 source "board/el/el6x/Kconfig"
|
| /rk3399_rockchip-uboot/scripts/ |
| H A D | checkpatch.pl | 4084 foreach my $el (@elements) { 4085 push(@fix_elements, substr($rawline, $off, length($el))); 4086 $off += length($el);
|