/linux-4.4.14/arch/xtensa/kernel/ |
D | module.c | 28 decode_calln_opcode (unsigned char *location) in decode_calln_opcode() argument 31 return (location[0] & 0xf0) == 0x50; in decode_calln_opcode() 34 return (location[0] & 0xf) == 0x5; in decode_calln_opcode() 39 decode_l32r_opcode (unsigned char *location) in decode_l32r_opcode() argument 42 return (location[0] & 0xf0) == 0x10; in decode_l32r_opcode() 45 return (location[0] & 0xf) == 0x1; in decode_l32r_opcode() 58 unsigned char *location; in apply_relocate_add() local 66 location = (char *)sechdrs[sechdrs[relsec].sh_info].sh_addr in apply_relocate_add() 82 *(uint32_t *)location += value; in apply_relocate_add() 86 if (decode_calln_opcode(location)) { in apply_relocate_add() [all …]
|
/linux-4.4.14/arch/mips/kernel/ |
D | module-rela.c | 26 extern int apply_r_mips_none(struct module *me, u32 *location, Elf_Addr v); 28 static int apply_r_mips_32_rela(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_32_rela() argument 30 *location = v; in apply_r_mips_32_rela() 35 static int apply_r_mips_26_rela(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_26_rela() argument 43 if ((v & 0xf0000000) != (((unsigned long)location + 4) & 0xf0000000)) { in apply_r_mips_26_rela() 50 *location = (*location & ~0x03ffffff) | ((v >> 2) & 0x03ffffff); in apply_r_mips_26_rela() 55 static int apply_r_mips_hi16_rela(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_hi16_rela() argument 57 *location = (*location & 0xffff0000) | in apply_r_mips_hi16_rela() 63 static int apply_r_mips_lo16_rela(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_lo16_rela() argument 65 *location = (*location & 0xffff0000) | (v & 0xffff); in apply_r_mips_lo16_rela() [all …]
|
D | module.c | 55 int apply_r_mips_none(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_none() argument 60 static int apply_r_mips_32_rel(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_32_rel() argument 62 *location += v; in apply_r_mips_32_rel() 67 static int apply_r_mips_26_rel(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_26_rel() argument 75 if ((v & 0xf0000000) != (((unsigned long)location + 4) & 0xf0000000)) { in apply_r_mips_26_rel() 82 *location = (*location & ~0x03ffffff) | in apply_r_mips_26_rel() 83 ((*location + (v >> 2)) & 0x03ffffff); in apply_r_mips_26_rel() 88 static int apply_r_mips_hi16_rel(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_hi16_rel() argument 101 n->addr = (Elf_Addr *)location; in apply_r_mips_hi16_rel() 120 static int apply_r_mips_lo16_rel(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_lo16_rel() argument [all …]
|
D | vpe.c | 228 static int apply_r_mips_none(struct module *me, uint32_t *location, in apply_r_mips_none() argument 234 static int apply_r_mips_gprel16(struct module *me, uint32_t *location, in apply_r_mips_gprel16() argument 239 if (!(*location & 0xffff)) { in apply_r_mips_gprel16() 245 (int)(short)(*location & 0xffff) - gp_addr); in apply_r_mips_gprel16() 254 *location = (*location & 0xffff0000) | (rel & 0xffff); in apply_r_mips_gprel16() 259 static int apply_r_mips_pc16(struct module *me, uint32_t *location, in apply_r_mips_pc16() argument 263 rel = (((unsigned int)v - (unsigned int)location)); in apply_r_mips_pc16() 273 *location = (*location & 0xffff0000) | (rel & 0xffff); in apply_r_mips_pc16() 278 static int apply_r_mips_32(struct module *me, uint32_t *location, in apply_r_mips_32() argument 281 *location += v; in apply_r_mips_32() [all …]
|
/linux-4.4.14/arch/microblaze/kernel/ |
D | module.c | 28 unsigned long int *location; in apply_relocate_add() local 39 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr + in apply_relocate_add() 56 old_value = *location; in apply_relocate_add() 57 *location = value + old_value; in apply_relocate_add() 62 *location = value; in apply_relocate_add() 69 old_value = ((location[0] & 0x0000FFFF) << 16) | in apply_relocate_add() 70 (location[1] & 0x0000FFFF); in apply_relocate_add() 73 location[0] = (location[0] & 0xFFFF0000) | in apply_relocate_add() 75 location[1] = (location[1] & 0xFFFF0000) | in apply_relocate_add() 85 old_value = (location[0] & 0xFFFF) << 16 | in apply_relocate_add() [all …]
|
/linux-4.4.14/arch/sh/kernel/ |
D | module.c | 47 uint32_t *location; in apply_relocate_add() local 54 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr in apply_relocate_add() 75 value = get_unaligned(location); in apply_relocate_add() 77 put_unaligned(value, location); in apply_relocate_add() 80 relocation = (relocation - (Elf32_Addr) location); in apply_relocate_add() 81 value = get_unaligned(location); in apply_relocate_add() 83 put_unaligned(value, location); in apply_relocate_add() 86 *location = (*location & ~0x3fffc00) | in apply_relocate_add() 90 *location = (*location & ~0x3fffc00) | in apply_relocate_add() 94 relocation -= (Elf32_Addr) location; in apply_relocate_add() [all …]
|
/linux-4.4.14/arch/c6x/kernel/ |
D | module.c | 53 u32 *location, opcode; in apply_relocate_add() local 63 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr in apply_relocate_add() 76 pr_debug("RELA ABS32: [%p] = 0x%x\n", location, v); in apply_relocate_add() 77 *location = v; in apply_relocate_add() 80 pr_debug("RELA ABS16: [%p] = 0x%x\n", location, v); in apply_relocate_add() 81 *(u16 *)location = v; in apply_relocate_add() 84 pr_debug("RELA ABS8: [%p] = 0x%x\n", location, v); in apply_relocate_add() 85 *(u8 *)location = v; in apply_relocate_add() 88 opcode = *location; in apply_relocate_add() 92 location, v, opcode); in apply_relocate_add() [all …]
|
/linux-4.4.14/arch/m32r/kernel/ |
D | module.c | 81 uint32_t *location; in apply_relocate_add() local 92 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr in apply_relocate_add() 99 align = (int)location & 3; in apply_relocate_add() 103 COPY_UNALIGNED_WORD (*location, value, align); in apply_relocate_add() 105 COPY_UNALIGNED_WORD (value, *location, align); in apply_relocate_add() 108 COPY_UNALIGNED_WORD (*location, value, align); in apply_relocate_add() 112 COPY_UNALIGNED_WORD (value, *location, align); in apply_relocate_add() 115 COPY_UNALIGNED_WORD (*location, value, align); in apply_relocate_add() 120 COPY_UNALIGNED_WORD (value, *location, align); in apply_relocate_add() 123 hlocation = (unsigned short *)location; in apply_relocate_add() [all …]
|
/linux-4.4.14/arch/hexagon/kernel/ |
D | module.c | 86 uint32_t *location; in apply_relocate_add() local 103 location = loc_base + rela[i].r_offset; in apply_relocate_add() 109 i, value, location, ELF32_R_TYPE(rela[i].r_info), in apply_relocate_add() 115 int dist = (int)(value - (uint32_t)location); in apply_relocate_add() 122 dist, value, (uint32_t)location, in apply_relocate_add() 127 DEBUGP("B22_PCREL contents: %08X.\n", *location); in apply_relocate_add() 128 *location &= ~0x01ff3fff; in apply_relocate_add() 129 *location |= 0x00003fff & dist; in apply_relocate_add() 130 *location |= 0x01ff0000 & (dist<<2); in apply_relocate_add() 131 DEBUGP("Contents after reloc: %08x\n", *location); in apply_relocate_add() [all …]
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | module_32.c | 182 static uint32_t do_plt_call(void *location, in do_plt_call() argument 189 pr_debug("Doing plt for call to 0x%x at 0x%x\n", val, (unsigned int)location); in do_plt_call() 191 if (location >= mod->module_core in do_plt_call() 192 && location < mod->module_core + mod->core_size) in do_plt_call() 221 uint32_t *location; in apply_relocate_add() local 228 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr in apply_relocate_add() 240 *(uint32_t *)location = value; in apply_relocate_add() 245 *(uint16_t *)location = value; in apply_relocate_add() 250 *(uint16_t *)location = (value >> 16); in apply_relocate_add() 258 *(uint16_t *)location = (value + 0x8000) >> 16; in apply_relocate_add() [all …]
|
D | module_64.c | 496 unsigned long *location; in apply_relocate_add() local 514 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr in apply_relocate_add() 521 location, (long)ELF64_R_TYPE(rela[i].r_info), in apply_relocate_add() 531 *(u32 *)location = value; in apply_relocate_add() 536 *(unsigned long *)location = value; in apply_relocate_add() 540 *(unsigned long *)location = my_r2(sechdrs, me); in apply_relocate_add() 551 *((uint16_t *) location) in apply_relocate_add() 552 = (*((uint16_t *) location) & ~0xffff) in apply_relocate_add() 559 *((uint16_t *) location) in apply_relocate_add() 560 = (*((uint16_t *) location) & ~0xffff) in apply_relocate_add() [all …]
|
/linux-4.4.14/arch/sparc/kernel/ |
D | module.c | 91 u8 *location; in apply_relocate_add() local 98 location = (u8 *)sechdrs[sechdrs[relsec].sh_info].sh_addr in apply_relocate_add() 100 loc32 = (u32 *) location; in apply_relocate_add() 103 BUG_ON(((u64)location >> (u64)32) != (u64)0); in apply_relocate_add() 114 v -= (Elf_Addr) location; in apply_relocate_add() 119 location[0] = v >> 56; in apply_relocate_add() 120 location[1] = v >> 48; in apply_relocate_add() 121 location[2] = v >> 40; in apply_relocate_add() 122 location[3] = v >> 32; in apply_relocate_add() 123 location[4] = v >> 24; in apply_relocate_add() [all …]
|
/linux-4.4.14/arch/tile/kernel/ |
D | backtrace.c | 252 static void find_caller_pc_and_caller_sp(CallerLocation *location, in find_caller_pc_and_caller_sp() argument 288 location->sp_location = SP_LOC_OFFSET; in find_caller_pc_and_caller_sp() 289 location->sp_offset = 0; in find_caller_pc_and_caller_sp() 292 location->pc_location = PC_LOC_UNKNOWN; in find_caller_pc_and_caller_sp() 327 location->pc_location = PC_LOC_IN_LR; in find_caller_pc_and_caller_sp() 376 location->pc_location = in find_caller_pc_and_caller_sp() 379 location->pc_location = in find_caller_pc_and_caller_sp() 384 location->pc_location = PC_LOC_UNKNOWN; in find_caller_pc_and_caller_sp() 385 location->sp_location = SP_LOC_UNKNOWN; in find_caller_pc_and_caller_sp() 390 location->sp_location = SP_LOC_IN_R52; in find_caller_pc_and_caller_sp() [all …]
|
D | module.c | 131 u64 *location; in apply_relocate_add() local 138 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr in apply_relocate_add() 152 (*location = ((*location & ~func(-1)) | func(value))) in apply_relocate_add() 159 (*location = swab64((swab64(*location) & ~func(-1)) | func(value))) in apply_relocate_add() 164 *(uint32_t *)location = value; in apply_relocate_add() 179 value -= (unsigned long) location; /* pc-relative */ in apply_relocate_add() 185 *location = value; in apply_relocate_add() 210 value -= (unsigned long) location; /* pc-relative */ in apply_relocate_add() 216 rel[i].r_offset, location); in apply_relocate_add()
|
/linux-4.4.14/arch/mn10300/kernel/ |
D | module.c | 66 uint8_t *location; in apply_relocate_add() local 74 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr in apply_relocate_add() 105 reloc_put32(location, relocation); in apply_relocate_add() 108 reloc_put24(location, relocation); in apply_relocate_add() 111 reloc_put16(location, relocation); in apply_relocate_add() 114 *location = relocation; in apply_relocate_add() 121 value = relocation - (uint32_t) location; in apply_relocate_add() 122 reloc_put32(location, value); in apply_relocate_add() 125 value = relocation - (uint32_t) location; in apply_relocate_add() 126 reloc_put16(location, value); in apply_relocate_add() [all …]
|
/linux-4.4.14/arch/alpha/kernel/ |
D | module.c | 152 void *base, *location; in apply_relocate_add() local 174 location = base + rela[i].r_offset; in apply_relocate_add() 186 ((u32 *)location)[0] = value; in apply_relocate_add() 187 ((u32 *)location)[1] = value >> 32; in apply_relocate_add() 193 *(u32 *)location = value; in apply_relocate_add() 200 *(u16 *)location = lo; in apply_relocate_add() 206 value = gp - (u64)location; in apply_relocate_add() 211 *(u16 *)location = hi >> 16; in apply_relocate_add() 212 *(u16 *)(location + rela[i].r_addend) = lo; in apply_relocate_add() 226 value -= (u64)location + 4; in apply_relocate_add() [all …]
|
/linux-4.4.14/arch/openrisc/kernel/ |
D | module.c | 29 uint32_t *location; in apply_relocate_add() local 36 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr in apply_relocate_add() 47 *location = value; in apply_relocate_add() 50 *((uint16_t *)location + 1) = value; in apply_relocate_add() 53 *((uint16_t *)location + 1) = value >> 16; in apply_relocate_add() 56 value -= (uint32_t)location; in apply_relocate_add() 59 value |= *location & 0xfc000000; in apply_relocate_add() 60 *location = value; in apply_relocate_add()
|
/linux-4.4.14/arch/metag/kernel/ |
D | module.c | 162 static uint32_t do_plt_call(void *location, Elf32_Addr val, in do_plt_call() argument 179 if (location >= mod->module_core in do_plt_call() 180 && location < mod->module_core + mod->core_size) in do_plt_call() 208 uint32_t *location; in apply_relocate_add() local 215 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr in apply_relocate_add() 229 *location = (*location & 0xfff80007) | in apply_relocate_add() 237 put_unaligned(relocation, location); in apply_relocate_add() 240 *location += ((relocation & 0xfff) << 7); in apply_relocate_add() 243 if (*location & (0x7ffff << 5)) { in apply_relocate_add() 253 (uint32_t)location) > 0xfffff) || in apply_relocate_add() [all …]
|
/linux-4.4.14/arch/avr32/kernel/ |
D | module.c | 160 uint32_t *location; in apply_relocate_add() local 163 location = (void *)dstsec->sh_addr + rel->r_offset; in apply_relocate_add() 194 *location = relocation; in apply_relocate_add() 197 relocation -= (Elf32_Addr)location; in apply_relocate_add() 205 value = *location; in apply_relocate_add() 210 *location = value; in apply_relocate_add() 213 relocation -= (Elf32_Addr)location; in apply_relocate_add() 219 value = get_u16(location); in apply_relocate_add() 223 put_u16(location, value); in apply_relocate_add() 226 relocation -= (Elf32_Addr)location; in apply_relocate_add() [all …]
|
/linux-4.4.14/arch/m68k/kernel/ |
D | module.c | 31 uint32_t *location; in apply_relocate() local 37 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr in apply_relocate() 47 *location += sym->st_value; in apply_relocate() 51 *location += sym->st_value - (uint32_t)location; in apply_relocate() 71 uint32_t *location; in apply_relocate_add() local 77 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr in apply_relocate_add() 87 *location = rel[i].r_addend + sym->st_value; in apply_relocate_add() 91 *location = rel[i].r_addend + sym->st_value - (uint32_t)location; in apply_relocate_add()
|
/linux-4.4.14/include/trace/events/ |
D | skb.h | 16 TP_PROTO(struct sk_buff *skb, void *location), 18 TP_ARGS(skb, location), 22 __field( void *, location ) 28 __entry->location = location; 33 __entry->skbaddr, __entry->protocol, __entry->location)
|
/linux-4.4.14/fs/nfs/ |
D | nfs4namespace.c | 239 const struct nfs4_fs_location *location) in try_location() argument 248 mnt_path = nfs4_pathname_string(&location->rootpath, page2, PAGE_SIZE); in try_location() 258 for (s = 0; s < location->nservers; s++) { in try_location() 259 const struct nfs4_string *buf = &location->servers[s]; in try_location() 329 const struct nfs4_fs_location *location = &locations->locations[loc]; in nfs_follow_referral() local 331 if (location == NULL || location->nservers <= 0 || in nfs_follow_referral() 332 location->rootpath.ncomponents == 0) in nfs_follow_referral() 335 mnt = try_location(&mountdata, page, page2, location); in nfs_follow_referral() 430 const struct nfs4_fs_location *location) in nfs4_try_replacing_one_location() argument 444 for (s = 0; s < location->nservers; s++) { in nfs4_try_replacing_one_location() [all …]
|
/linux-4.4.14/samples/seccomp/ |
D | bpf-helper.c | 36 if (labels->labels[filter->k].location == 0xffffffff) { in bpf_resolve_jumps() 41 filter->k = labels->labels[filter->k].location - in bpf_resolve_jumps() 47 if (labels->labels[filter->k].location != 0xffffffff) { in bpf_resolve_jumps() 52 labels->labels[filter->k].location = insn; in bpf_resolve_jumps() 74 begin->location = 0xffffffff; in seccomp_bpf_label() 84 begin->location = 0xffffffff; in seccomp_bpf_label()
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/nintendo/ |
D | wii.txt | 31 - reg : should contain the VI registers location and length 42 - reg : should contain the PI registers location and length 64 - reg : should contain the DSP registers location and length 76 - reg : should contain the SI registers location and length 87 - reg : should contain the AI registers location and length 97 - reg : should contain the EXI registers location and length 107 - reg : should contain the OHCI registers location and length 117 - reg : should contain the EHCI registers location and length 127 - reg : should contain the SDHCI registers location and length 136 - reg : should contain the IPC registers location and length [all …]
|
D | gamecube.txt | 22 - reg : should contain the VI registers location and length 33 - reg : should contain the PI registers location and length 53 - reg : should contain the DSP registers location and length 74 - reg : should contain the DI registers location and length 85 - reg : should contain the AI registers location and length 97 - reg : should contain the SI registers location and length 107 - reg : should contain the EXI registers location and length
|
/linux-4.4.14/arch/mips/include/asm/octeon/ |
D | cvmx-mdio.h | 300 static inline int cvmx_mdio_read(int bus_id, int phy_id, int location) in cvmx_mdio_read() argument 312 smi_cmd.s.reg_adr = location; in cvmx_mdio_read() 339 static inline int cvmx_mdio_write(int bus_id, int phy_id, int location, int val) in cvmx_mdio_write() argument 355 smi_cmd.s.reg_adr = location; in cvmx_mdio_write() 382 int location) in cvmx_mdio_45_read() argument 395 smi_wr.s.dat = location; in cvmx_mdio_45_read() 411 bus_id, phy_id, device, location); in cvmx_mdio_45_read() 429 bus_id, phy_id, device, location); in cvmx_mdio_45_read() 438 bus_id, phy_id, device, location); in cvmx_mdio_45_read() 458 int location, int val) in cvmx_mdio_45_write() argument [all …]
|
/linux-4.4.14/arch/blackfin/kernel/ |
D | module.c | 158 unsigned long location, value, size; in apply_relocate_add() local 165 location = sechdrs[sechdrs[relsec].sh_info].sh_addr + in apply_relocate_add() 176 if (location >= COREB_L1_DATA_A_START) { in apply_relocate_add() 184 location, value, ELF32_R_TYPE(rel[i].r_info)); in apply_relocate_add() 213 switch (bfin_mem_access_type(location, size)) { in apply_relocate_add() 216 memcpy((void *)location, &value, size); in apply_relocate_add() 219 dma_memcpy((void *)location, &value, size); in apply_relocate_add() 222 isram_memcpy((void *)location, &value, size); in apply_relocate_add() 225 pr_err("invalid relocation for %#lx\n", location); in apply_relocate_add()
|
/linux-4.4.14/arch/arc/kernel/ |
D | module.c | 71 Elf32_Addr location; in apply_relocate_add() local 89 location = sec_to_patch + rel_entry[i].r_offset; in apply_relocate_add() 99 sym_entry->st_value, location, relocation, in apply_relocate_add() 110 arc_write_me((unsigned short *)location, relocation); in apply_relocate_add() 112 *((Elf32_Addr *) location) = relocation; in apply_relocate_add()
|
/linux-4.4.14/scripts/ |
D | gen_initramfs_list.sh | 107 local location="$1" 114 local ftype=$(filetype "${location}") 121 [ "${location}" = "${srcdir}" ] && return 0 125 str="${ftype} ${name} ${location} ${str}" 128 local dev=`LC_ALL=C ls -l "${location}"` 133 [ -b "${location}" ] && dev="b" || dev="c" 138 local target=`readlink "${location}"`
|
/linux-4.4.14/arch/ia64/kernel/ |
D | module.c | 618 Elf64_Shdr *sec, void *location) in do_reloc() argument 634 case RV_PLTREL: val = get_plt(mod, location, val, &ok); break; in do_reloc() 642 if ((in_init(mod, val) && in_core(mod, (uint64_t)location)) || in do_reloc() 643 (in_core(mod, val) && in_init(mod, (uint64_t)location))) { in do_reloc() 648 uint64_t delta = ((int64_t)val - (int64_t)location) / 16; in do_reloc() 651 val = get_plt(mod, location, val, &ok); in do_reloc() 654 val = get_plt(mod, location, val, &ok); in do_reloc() 657 val -= bundle(location); in do_reloc() 664 val -= (uint64_t) location; in do_reloc() 696 val -= bundle(location); in do_reloc() [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/serial/ |
D | efm32-uart.txt | 9 - energymicro,location : Decides the location of the USART I/O pins. 19 energymicro,location = <0>;
|
D | nxp-lpc32xx-hsuart.txt | 5 - reg: Should contain registers location and length
|
D | cdns,uart.txt | 5 - reg: Should contain UART controller registers location and length.
|
D | qcom,msm-uart.txt | 10 - reg: Should contain UART register location and length.
|
D | digicolor-usart.txt | 9 - reg: Should contain USART controller registers location and length.
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | efm32gg-dk3750.dts | 29 energymicro,location = <3>; 46 energymicro,location = <1>; 60 energymicro,location = <1>; 73 energymicro,location = <2>;
|
/linux-4.4.14/drivers/edac/ |
D | edac_mc.c | 65 dimm->location[i]); in edac_dimm_info_location() 88 char location[80]; in edac_mc_dump_dimm() local 90 edac_dimm_info_location(dimm, location, sizeof(location)); in edac_mc_dump_dimm() 94 number, location, dimm->csrow, dimm->cschannel); in edac_mc_dump_dimm() 417 dimm->location[j] = pos[j]; in edac_mc_alloc() 988 const char *location, in edac_ce_error() argument 1008 location, detail, other_detail); in edac_ce_error() 1013 location, detail); in edac_ce_error() 1042 const char *location, in edac_ue_error() argument 1058 location, detail, other_detail); in edac_ue_error() [all …]
|
D | i82860_edac.c | 124 dimm->location[0], dimm->location[1], -1, in i82860_process_error_info() 129 dimm->location[0], dimm->location[1], -1, in i82860_process_error_info()
|
D | ghes_edac.c | 290 p = e->location; in ghes_edac_report_mem_error() 316 if (p > e->location) in ghes_edac_report_mem_error() 397 "APEI location: %s %s", e->location, e->other_detail); in ghes_edac_report_mem_error()
|
/linux-4.4.14/drivers/i2c/busses/ |
D | i2c-efm32.c | 120 u8 location; member 315 u32 location, frequency; in efm32_i2c_probe() local 374 ret = of_property_read_u32(np, "energymicro,location", &location); in efm32_i2c_probe() 378 ret = of_property_read_u32(np, "efm32,location", &location); in efm32_i2c_probe() 381 dev_dbg(&pdev->dev, "using location %u\n", location); in efm32_i2c_probe() 384 location = efm32_i2c_get_configured_location(ddata); in efm32_i2c_probe() 386 dev_info(&pdev->dev, "fall back to location %u\n", location); in efm32_i2c_probe() 389 ddata->location = location; in efm32_i2c_probe() 421 REG_ROUTE_LOCATION(ddata->location)); in efm32_i2c_probe()
|
/linux-4.4.14/Documentation/devicetree/bindings/i2c/ |
D | i2c-efm32.txt | 13 - energymicro,location : Decides the location of the USART I/O pins. 26 energymicro,location = <3>;
|
D | i2c-xiic.txt | 5 - reg : IIC register location and length
|
D | brcm,bcm2835-i2c.txt | 5 - reg: Should contain register location and length.
|
D | i2c-mxs.txt | 5 - reg: Should contain registers location and length
|
/linux-4.4.14/drivers/spi/ |
D | spi-efm32.c | 294 u32 location; in efm32_spi_probe_dt() local 297 ret = of_property_read_u32(np, "energymicro,location", &location); in efm32_spi_probe_dt() 301 ret = of_property_read_u32(np, "efm32,location", &location); in efm32_spi_probe_dt() 305 ret = of_property_read_u32(np, "location", &location); in efm32_spi_probe_dt() 308 dev_dbg(&pdev->dev, "using location %u\n", location); in efm32_spi_probe_dt() 311 location = efm32_spi_get_configured_location(ddata); in efm32_spi_probe_dt() 313 dev_info(&pdev->dev, "fall back to location %u\n", location); in efm32_spi_probe_dt() 316 ddata->pdata.location = location; in efm32_spi_probe_dt() 430 REG_ROUTE_LOCATION(ddata->pdata.location), REG_ROUTE); in efm32_spi_probe()
|
/linux-4.4.14/arch/s390/kernel/ |
D | traps.c | 184 __u16 __user *location; in illegal_op() local 188 location = get_trap_ip(regs); in illegal_op() 191 if (get_user(*((__u16 *) opcode), (__u16 __user *) location)) in illegal_op() 198 info.si_addr = location; in illegal_op() 263 __u16 __user *location; in data_exception() local 266 location = get_trap_ip(regs); in data_exception()
|
/linux-4.4.14/drivers/net/ethernet/dec/tulip/ |
D | media.c | 47 int tulip_mdio_read(struct net_device *dev, int phy_id, int location) in tulip_mdio_read() argument 51 int read_cmd = (0xf6 << 10) | ((phy_id & 0x1f) << 5) | location; in tulip_mdio_read() 57 if (location & ~0x1f) in tulip_mdio_read() 61 if (comet_miireg2offset[location]) in tulip_mdio_read() 62 return ioread32(ioaddr + comet_miireg2offset[location]); in tulip_mdio_read() 68 iowrite32(0x60020000 + (phy_id<<23) + (location<<18), ioaddr + 0xA0); in tulip_mdio_read() 109 void tulip_mdio_write(struct net_device *dev, int phy_id, int location, int val) in tulip_mdio_write() argument 113 int cmd = (0x5002 << 16) | ((phy_id & 0x1f) << 23) | (location<<18) | (val & 0xffff); in tulip_mdio_write() 118 if (location & ~0x1f) in tulip_mdio_write() 122 if (comet_miireg2offset[location]) in tulip_mdio_write() [all …]
|
D | eeprom.c | 341 int tulip_read_eeprom(struct net_device *dev, int location, int addr_len) in tulip_read_eeprom() argument 347 int read_cmd = location | (EE_READ_CMD << addr_len); in tulip_read_eeprom() 352 if (location > (1 << addr_len) - 1) in tulip_read_eeprom()
|
D | tulip.h | 485 int tulip_read_eeprom(struct net_device *dev, int location, int addr_len); 498 int tulip_mdio_read(struct net_device *dev, int phy_id, int location); 499 void tulip_mdio_write(struct net_device *dev, int phy_id, int location, int value);
|
D | winbond-840.c | 325 static int eeprom_read(void __iomem *ioaddr, int location); 326 static int mdio_read(struct net_device *dev, int phy_id, int location); 327 static void mdio_write(struct net_device *dev, int phy_id, int location, int value); 503 static int eeprom_read(void __iomem *addr, int location) in eeprom_read() argument 508 int read_cmd = location | EE_ReadCmd; in eeprom_read() 567 static int mdio_read(struct net_device *dev, int phy_id, int location) in mdio_read() argument 571 int mii_cmd = (0xf6 << 10) | (phy_id << 5) | location; in mdio_read() 597 static void mdio_write(struct net_device *dev, int phy_id, int location, int value) in mdio_write() argument 601 int mii_cmd = (0x5002 << 16) | (phy_id << 23) | (location<<18) | value; in mdio_write() 604 if (location == 4 && phy_id == np->phys[0]) in mdio_write()
|
/linux-4.4.14/sound/soc/au1x/ |
D | dma.c | 271 long location; in alchemy_pcm_pointer() local 273 location = get_dma_residue(stream->dma); in alchemy_pcm_pointer() 274 location = stream->buffer->relative_end - location; in alchemy_pcm_pointer() 275 if (location == -1) in alchemy_pcm_pointer() 276 location = 0; in alchemy_pcm_pointer() 277 return bytes_to_frames(ss->runtime, location); in alchemy_pcm_pointer()
|
/linux-4.4.14/tools/iio/ |
D | generic_buffer.c | 52 channels[i].location = bytes; in size_from_channelarray() 54 channels[i].location = bytes - bytes % channels[i].bytes in size_from_channelarray() 57 bytes = channels[i].location + channels[i].bytes; in size_from_channelarray() 173 print1byte(*(uint8_t *)(data + channels[k].location), in process_scan() 177 print2byte(*(uint16_t *)(data + channels[k].location), in process_scan() 181 print4byte(*(uint32_t *)(data + channels[k].location), in process_scan() 185 print8byte(*(uint64_t *)(data + channels[k].location), in process_scan()
|
D | iio_utils.h | 52 unsigned location; member
|
/linux-4.4.14/usr/ |
D | gen_init_cpio.c | 294 static int cpio_mkfile(const char *name, const char *location, in cpio_mkfile() argument 310 file = open (location, O_RDONLY); in cpio_mkfile() 312 fprintf (stderr, "File %s could not be opened for reading\n", location); in cpio_mkfile() 318 fprintf(stderr, "File %s could not be stat()'ed\n", location); in cpio_mkfile() 330 fprintf (stderr, "Can not read %s file\n", location); in cpio_mkfile() 403 char location[PATH_MAX + 1]; in cpio_mkfile_line() local 413 name, location, &mode, &uid, &gid, &end)) { in cpio_mkfile_line() 444 rc = cpio_mkfile(dname, cpio_replace_env(location), in cpio_mkfile_line()
|
/linux-4.4.14/arch/arc/lib/ |
D | memcpy-archs.S | 44 prefetch [r1] ; Prefetch the read location 45 prefetchw [r0] ; Prefetch the write location 120 prefetch [r1, 28] ;Prefetch the next read location 122 prefetchw [r3, 32] ;Prefetch the next write location 165 prefetch [r1, 28] ;Prefetch the next read location 167 prefetchw [r3, 32] ;Prefetch the next write location 207 prefetch [r1, 28] ;Prefetch the next read location 209 prefetchw [r3, 32] ;Prefetch the next write location
|
D | memset-archs.S | 14 prefetchw [r0] ; Prefetch the write location
|
/linux-4.4.14/arch/x86/kernel/ |
D | machine_kexec_64.c | 414 void *location; in arch_kexec_apply_relocations_add() local 459 location = (void *)(section->sh_offset + rel[i].r_offset); in arch_kexec_apply_relocations_add() 509 *(u64 *)location = value; in arch_kexec_apply_relocations_add() 512 *(u32 *)location = value; in arch_kexec_apply_relocations_add() 513 if (value != *(u32 *)location) in arch_kexec_apply_relocations_add() 517 *(s32 *)location = value; in arch_kexec_apply_relocations_add() 518 if ((s64)value != *(s32 *)location) in arch_kexec_apply_relocations_add() 523 *(u32 *)location = value; in arch_kexec_apply_relocations_add()
|
D | module.c | 108 uint32_t *location; in apply_relocate() local 114 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr in apply_relocate() 124 *location += sym->st_value; in apply_relocate() 128 *location += sym->st_value - (uint32_t)location; in apply_relocate()
|
/linux-4.4.14/fs/btrfs/ |
D | btrfs_inode.h | 67 struct btrfs_key location; member 226 u64 ino = BTRFS_I(inode)->location.objectid; in btrfs_ino() 232 if (!ino || BTRFS_I(inode)->location.type == BTRFS_ROOT_ITEM_KEY) in btrfs_ino() 250 if (BTRFS_I(inode)->location.objectid == BTRFS_FREE_INO_OBJECTID) in btrfs_is_free_space_inode()
|
D | disk-io.h | 69 struct btrfs_key *location); 80 struct btrfs_key *location) in btrfs_read_fs_root_no_name() argument 82 return btrfs_get_fs_root(fs_info, location, true); in btrfs_read_fs_root_no_name()
|
D | inode-item.c | 418 struct btrfs_key *location, int mod) in btrfs_lookup_inode() argument 427 ret = btrfs_search_slot(trans, root, location, path, ins_len, cow); in btrfs_lookup_inode() 428 if (ret > 0 && location->type == BTRFS_ROOT_ITEM_KEY && in btrfs_lookup_inode() 429 location->offset == (u64)-1 && path->slots[0] != 0) { in btrfs_lookup_inode() 433 if (found_key.objectid == location->objectid && in btrfs_lookup_inode() 434 found_key.type == location->type) { in btrfs_lookup_inode()
|
D | dir-item.c | 77 struct btrfs_key key, location; in btrfs_insert_xattr_item() local 93 memset(&location, 0, sizeof(location)); in btrfs_insert_xattr_item() 96 btrfs_cpu_key_to_disk(&disk_key, &location); in btrfs_insert_xattr_item() 122 struct inode *dir, struct btrfs_key *location, in btrfs_insert_dir_item() argument 144 btrfs_cpu_key_to_disk(&disk_key, location); in btrfs_insert_dir_item()
|
D | disk-io.c | 1542 struct btrfs_key *location) in btrfs_read_fs_root() argument 1546 root = btrfs_read_tree_root(tree_root, location); in btrfs_read_fs_root() 1644 struct btrfs_key *location, in btrfs_get_fs_root() argument 1652 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID) in btrfs_get_fs_root() 1654 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID) in btrfs_get_fs_root() 1656 if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID) in btrfs_get_fs_root() 1658 if (location->objectid == BTRFS_DEV_TREE_OBJECTID) in btrfs_get_fs_root() 1660 if (location->objectid == BTRFS_CSUM_TREE_OBJECTID) in btrfs_get_fs_root() 1662 if (location->objectid == BTRFS_QUOTA_TREE_OBJECTID) in btrfs_get_fs_root() 1665 if (location->objectid == BTRFS_UUID_TREE_OBJECTID) in btrfs_get_fs_root() [all …]
|
D | inode.c | 65 struct btrfs_key *location; member 3610 struct btrfs_key location; in btrfs_read_locked_inode() local 3626 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location)); in btrfs_read_locked_inode() 3628 ret = btrfs_lookup_inode(NULL, root, path, &location, 0); in btrfs_read_locked_inode() 3719 btrfs_item_key_to_cpu(leaf, &location, path->slots[0]); in btrfs_read_locked_inode() 3720 if (location.objectid != btrfs_ino(inode)) in btrfs_read_locked_inode() 3724 if (location.type == BTRFS_INODE_REF_KEY) { in btrfs_read_locked_inode() 3729 } else if (location.type == BTRFS_INODE_EXTREF_KEY) { in btrfs_read_locked_inode() 3855 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location, in btrfs_update_inode_item() 4185 BTRFS_I(inode)->location.objectid, in btrfs_rmdir() [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | atmel-at91.txt | 46 - reg: Should contain registers location and length 52 - reg: Should contain registers location and length 62 - reg: Should contain registers location and length 94 - reg: Should contain registers location and length 110 - reg: Should contain registers location and length 124 - reg: Should contain registers location and length 159 - reg: Should contain registers location and length
|
D | atmel-pmc.txt | 8 - reg: Should contain PMC registers location and length
|
D | mvebu-cpu-config.txt | 12 - reg: Should contain CPU config registers location and length, in
|
D | mvebu-system-controller.txt | 11 - reg: Should contain system controller registers location and length.
|
D | armada-370-xp-pmsu.txt | 13 - reg: Should contain PMSU registers location and length.
|
/linux-4.4.14/arch/ia64/sn/kernel/sn2/ |
D | sn_hwperf.c | 89 static int sn_hwperf_location_to_bpos(char *location, in sn_hwperf_location_to_bpos() argument 95 if (sscanf(location, "%03d%c%02d#%d", in sn_hwperf_location_to_bpos() 99 if (sscanf(location, "%03d%c%02d^%02d#%d", in sn_hwperf_location_to_bpos() 106 static int sn_hwperf_geoid_to_cnode(char *location) in sn_hwperf_geoid_to_cnode() argument 114 if (sn_hwperf_location_to_bpos(location, &rack, &bay, &slot, &slab)) in sn_hwperf_geoid_to_cnode() 143 return sn_hwperf_geoid_to_cnode(obj->location); in sn_hwperf_obj_to_cnode() 443 seq_printf(s, "%s %d %s %s asic %s", slabname, ordinal, obj->location, in sn_topology_show() 479 i, obj->location, slice, in sn_topology_show() 515 ordinal+pt, obj->location, ptdata[pt].port); in sn_topology_show() 541 p->location, ptdata[pt].conn_port, in sn_topology_show() [all …]
|
/linux-4.4.14/net/netfilter/ |
D | xt_u32.c | 36 pos = ct->location[0].number; in u32_match_it() 48 u_int32_t number = ct->location[i].number; in u32_match_it() 49 switch (ct->location[i].nextop) { in u32_match_it()
|
/linux-4.4.14/drivers/net/ethernet/freescale/fs_enet/ |
D | mii-fec.c | 52 static int fs_enet_fec_mii_read(struct mii_bus *bus , int phy_id, int location) in fs_enet_fec_mii_read() argument 61 out_be32(&fecp->fec_mii_data, (phy_id << 23) | mk_mii_read(location)); in fs_enet_fec_mii_read() 75 static int fs_enet_fec_mii_write(struct mii_bus *bus, int phy_id, int location, u16 val) in fs_enet_fec_mii_write() argument 85 out_be32(&fecp->fec_mii_data, (phy_id << 23) | mk_mii_write(location, val)); in fs_enet_fec_mii_write()
|
/linux-4.4.14/drivers/usb/core/ |
D | port.c | 204 if (left->location && left->location == right->location) in link_peers() 334 if (peer && peer->location == port_dev->location) { in match_location() 361 if (port_dev->location) { in find_and_link_peer() 397 if (peer && peer->location == 0) in find_and_link_peer()
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/4xx/ |
D | akebono.txt | 21 - reg : should contain the SDHCI registers location and length. 32 - reg : should contain the AHCI registers location and length. 44 - reg : should contain the FPGA registers location and length.
|
/linux-4.4.14/Documentation/filesystems/ |
D | udf.txt | 61 anchor= Override standard anchor location. (default= 256) 62 volume= Override the VolumeDesc location. (unused) 63 partition= Override the PartitionDesc location. (unused) 68 fileset= Override the fileset block location. (unused) 69 rootdir= Override the root directory location. (unused)
|
D | squashfs.txt | 116 by a 48-bit number which encodes the location of the compressed metadata block 153 location of the metadata block the filename is in has been found. 169 block index to datablock location on disk. 182 location on disk and compressed size using a fragment lookup table. This 202 an inode number to inode disk location lookup table. This is required to 204 location on disk, which is necessary when the export code reinstantiates 228 location of the xattr list inside each inode, a 32-bit xattr id 229 is stored. This xattr id is mapped into the location of the xattr
|
/linux-4.4.14/Documentation/ |
D | kselftest.txt | 61 location which is tools/testing/selftests/kselftest or an user specified 62 location. 64 To install selftests in default location: 68 To install selftests in an user specified location:
|
D | vme_api.txt | 164 VME bus location : 346 The VME API provides the following functionality to configure the location 353 The following functions are provided to request the use of a block of location 360 Each block may provide a number of location monitors, monitoring adjacent 370 Once a bank of location monitors has been allocated, the following functions 371 are provided to configure the location and mode of the location monitor: 384 location monitor location. Each location monitor can monitor a number of
|
/linux-4.4.14/net/core/ |
D | drop_monitor.c | 138 static void trace_drop_common(struct sk_buff *skb, void *location) in trace_drop_common() argument 160 if (!memcmp(&location, msg->points[i].pc, sizeof(void *))) { in trace_drop_common() 172 memcpy(msg->points[msg->entries].pc, &location, sizeof(void *)); in trace_drop_common() 185 static void trace_kfree_skb_hit(void *ignore, struct sk_buff *skb, void *location) in trace_kfree_skb_hit() argument 187 trace_drop_common(skb, location); in trace_kfree_skb_hit()
|
/linux-4.4.14/tools/perf/scripts/python/ |
D | net_dropmonitor.py | 70 skbaddr, location, protocol): argument 71 slocation = str(location)
|
/linux-4.4.14/drivers/block/ |
D | swim.c | 173 enum drive_location location; /* internal or external drive */ member 311 enum drive_location location) in swim_drive() argument 313 if (location == INTERNAL_DRIVE) { in swim_drive() 316 } else if (location == EXTERNAL_DRIVE) { in swim_drive() 449 swim_drive(base, fs->location); in floppy_eject() 506 swim_drive(base, fs->location); in floppy_read_sectors() 754 swim_drive(base, fs->location); in floppy_revalidate() 789 static int swim_add_floppy(struct swim_priv *swd, enum drive_location location) in swim_add_floppy() argument 794 fs->location = location; in swim_add_floppy() 796 swim_drive(base, location); in swim_add_floppy()
|
/linux-4.4.14/Documentation/devicetree/bindings/crypto/ |
D | atmel-crypto.txt | 9 - reg: Should contain AES registers location and length. 29 - reg: Should contain TDES registers location and length. 52 - reg: Should contain SHA registers location and length.
|
D | fsl-imx-sahara.txt | 6 - reg : Should contain SAHARA registers location and length
|
D | fsl-dcp.txt | 5 - reg : Should contain MXS DCP registers location and length
|
D | sun4i-ss.txt | 5 - reg: Should contain the Security System register location and length.
|
/linux-4.4.14/fs/isofs/ |
D | rock.h | 60 char location[8]; member 64 char location[8]; member
|
/linux-4.4.14/arch/powerpc/platforms/pasemi/ |
D | gpio_mdio.c | 128 static int gpio_mdio_read(struct mii_bus *bus, int phy_id, int location) in gpio_mdio_read() argument 133 u8 reg = location & 0xff; in gpio_mdio_read() 167 static int gpio_mdio_write(struct mii_bus *bus, int phy_id, int location, u16 val) in gpio_mdio_write() argument 172 u8 reg = location & 0xff; in gpio_mdio_write()
|
/linux-4.4.14/drivers/tty/serial/ |
D | efm32-uart.c | 303 UARTn_ROUTE_LOCATION(efm_port->pdata.location) | in efm32_uart_startup() 662 u32 location; in efm32_uart_probe_dt() local 668 ret = of_property_read_u32(np, "energymicro,location", &location); in efm32_uart_probe_dt() 672 ret = of_property_read_u32(np, "efm32,location", &location); in efm32_uart_probe_dt() 676 ret = of_property_read_u32(np, "location", &location); in efm32_uart_probe_dt() 679 if (location > 5) { in efm32_uart_probe_dt() 683 efm_debug(efm_port, "using location %u\n", location); in efm32_uart_probe_dt() 684 efm_port->pdata.location = location; in efm32_uart_probe_dt()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
D | dcb.c | 111 return (outp->extdev << 8) | (outp->location << 4) | outp->type; in dcb_outp_hasht() 130 outp->location = (conn & 0x00300000) >> 20; in dcb_outp_parse() 179 if (outp->location != 0) in dcb_outp_parse()
|
/linux-4.4.14/Documentation/devicetree/bindings/spi/ |
D | efm32-spi.txt | 13 - energymicro,location: Value to write to the ROUTE register's LOCATION 30 energymicro,location = <1>;
|
D | spi-sun4i.txt | 5 - reg: Should contain register location and length.
|
D | brcm,bcm2835-spi.txt | 9 - reg: Should contain register location and length.
|
D | spi-sun6i.txt | 5 - reg: Should contain register location and length.
|
D | ti_qspi.txt | 5 - reg: Should contain QSPI registers location and length.
|
D | spi-xlp.txt | 13 - reg : Should contain register location and length.
|
D | nvidia,tegra20-sflash.txt | 5 - reg: Should contain SFLASH registers location and length.
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ |
D | moxa,moxart-clock.txt | 16 - reg : Should contain registers location and length 28 - reg : Should contain registers location and length
|
D | qcom,lcc.txt | 11 - reg : shall contain base register location and length
|
D | qcom,mmcc.txt | 13 - reg : shall contain base register location and length
|
D | qcom,gcc.txt | 17 - reg : shall contain base register location and length
|
D | lsi,axm5516-clks.txt | 6 - reg : shall contain base register location and length
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-devices | 14 on the symlinks there to point to the proper location 18 the location of those devices.
|
/linux-4.4.14/fs/udf/ |
D | misc.c | 202 uint32_t location, uint16_t *ident) in udf_read_tagged() argument 215 block, location); in udf_read_tagged() 223 if (location != le32_to_cpu(tag_p->tagLocation)) { in udf_read_tagged() 225 block, le32_to_cpu(tag_p->tagLocation), location); in udf_read_tagged()
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/qe/ |
D | usb.txt | 5 - reg : the first two cells should contain usb registers location and 6 length, the next two two cells should contain PRAM location and
|
/linux-4.4.14/sound/mips/ |
D | au1x00.c | 411 long location; in snd_au1000_pointer() local 414 location = get_dma_residue(stream->dma); in snd_au1000_pointer() 416 location = stream->buffer->relative_end - location; in snd_au1000_pointer() 417 if (location == -1) in snd_au1000_pointer() 418 location = 0; in snd_au1000_pointer() 419 return bytes_to_frames(runtime,location); in snd_au1000_pointer()
|
/linux-4.4.14/Documentation/arm/ |
D | tcm.txt | 17 location and size of TCM memories. arch/arm/include/asm/cputype.h 26 Registers" at the ARM site) that can report and modify the location 28 TCM location and size. Notice that this is not a MMU table: you 29 actually move the physical location of the TCM around. At the 38 memory in the location specified by the kernel. Currently Linux
|
D | Booting | 98 The boot loader must pass at a minimum the size and location of 99 the system memory, and root filesystem location. Therefore, the 126 The boot loader must pass at a minimum the size and location of the 127 system memory, and the root filesystem location. The dtb must be 132 A safe location is just above the 128MiB boundary from start of RAM. 145 A safe location is just above the device tree blob which itself will
|
/linux-4.4.14/drivers/md/persistent-data/ |
D | dm-btree.c | 528 __le64 location; in btree_split_sibling() local 561 location = cpu_to_le64(dm_block_location(left)); in btree_split_sibling() 562 __dm_bless_for_disk(&location); in btree_split_sibling() 564 &location, sizeof(__le64)); in btree_split_sibling() 566 location = cpu_to_le64(dm_block_location(right)); in btree_split_sibling() 567 __dm_bless_for_disk(&location); in btree_split_sibling() 570 le64_to_cpu(rn->keys[0]), &location); in btree_split_sibling() 714 __le64 location = cpu_to_le64(dm_block_location(shadow_current(s))); in btree_insert_raw() local 716 __dm_bless_for_disk(&location); in btree_insert_raw() 718 &location, sizeof(__le64)); in btree_insert_raw()
|
/linux-4.4.14/include/linux/platform_data/ |
D | efm32-uart.h | 16 u8 location; member
|
D | efm32-spi.h | 12 u8 location; member
|
/linux-4.4.14/Documentation/devicetree/bindings/fuse/ |
D | nvidia,tegra20-fuse.txt | 15 the location of the spare (OEM programmable) bits and the location of
|
/linux-4.4.14/drivers/platform/x86/ |
D | alienware-wmi.c | 126 u8 location; member 204 zone_data[i].location); in match_zone() 223 wmax_args.led_mask = 1 << zone->location; in alienware_update_led() 241 method_id = zone->location + 1; in alienware_update_led() 412 zone_data[i].location = i; in alienware_zone_init()
|
D | hp-wmi.c | 537 u32 *location; in hp_wmi_notify() local 560 location = (u32 *)obj->buffer.pointer; in hp_wmi_notify() 562 event_id = *location; in hp_wmi_notify() 563 event_data = *(location + 1); in hp_wmi_notify() 565 event_id = *location; in hp_wmi_notify() 566 event_data = *(location + 2); in hp_wmi_notify()
|
/linux-4.4.14/Documentation/power/ |
D | swsusp-and-swap-files.txt | 13 In principle the location of a swap file's header may be determined with the 31 FIBMAP ioctl and determine the location of the file's swap header, as the 58 the location of its header need not be the same as before. Thus every time
|
/linux-4.4.14/drivers/net/phy/ |
D | bcm7xxx.c | 226 static int phy_set_clr_bits(struct phy_device *dev, int location, in phy_set_clr_bits() argument 231 v = phy_read(dev, location); in phy_set_clr_bits() 238 ret = phy_write(dev, location, v); in phy_set_clr_bits()
|
/linux-4.4.14/drivers/video/console/ |
D | mdacon.c | 149 static inline void mda_set_cursor(unsigned int location) in mda_set_cursor() argument 151 if (mda_cursor_loc == location) in mda_set_cursor() 154 write_mda_w(location >> 1, 0x0e); in mda_set_cursor() 156 mda_cursor_loc = location; in mda_set_cursor()
|
/linux-4.4.14/Documentation/devicetree/bindings/dma/ |
D | mmp-dma.txt | 8 - reg: Should contain DMA registers location and length. 55 - reg: Should contain DMA registers location and length.
|
D | zxdma.txt | 5 - reg: Should contain DMA registers location and length.
|
D | k3dma.txt | 7 - reg: Should contain DMA registers location and length.
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | nvidia,tegra20-das.txt | 5 - reg : Should contain DAS registers location and length
|
D | omap-mcpdm.txt | 5 - reg: Register location and size as an array:
|
D | ingenic,jz4740-i2s.txt | 5 - reg : I2S registers location and length
|
D | omap-dmic.txt | 5 - reg: Register location and size as an array:
|
D | mtk-afe-pcm.txt | 5 - reg: register location and size
|
D | nvidia,tegra20-i2s.txt | 5 - reg : Should contain I2S registers location and length
|
D | imx-audmux.txt | 9 - reg : Should contain AUDMUX registers location and length.
|
D | sun4i-codec.txt | 6 - reg: must contain the registers location and length
|
D | zte,zx-spdif.txt | 5 - reg : Must contain SPDIF core's registers location and length
|
D | mxs-saif.txt | 5 - reg: Should contain registers location and length
|
D | nvidia,tegra30-i2s.txt | 8 - reg : Should contain I2S registers location and length
|
D | nvidia,tegra30-hda.txt | 7 - reg : Should contain the HDA registers location and length.
|
/linux-4.4.14/arch/powerpc/boot/dts/fsl/ |
D | p1021rdb-pc.dtsi | 45 /* This location must not be altered */ 71 /* This location must not be altered */ 79 /* This location must not be altered */ 95 /* This location must not be altered */
|
D | p1024rdb.dtsi | 45 /* This location must not be altered */ 71 /* This location must not be altered */ 88 /* This location must not be altered */
|
D | p2020rdb.dts | 49 /* This location must not be altered */ 77 /* This location must not be altered */ 94 /* This location must not be altered */
|
D | p1020rdb.dtsi | 45 /* This location must not be altered */ 73 /* This location must not be altered */ 90 /* This location must not be altered */
|
D | p2020rdb-pc.dtsi | 45 /* This location must not be altered */ 71 /* This location must not be altered */ 88 /* This location must not be altered */
|
D | p1020rdb-pc.dtsi | 45 /* This location must not be altered */ 71 /* This location must not be altered */ 88 /* This location must not be altered */
|
D | p1020rdb-pd.dts | 80 /* This location must not be altered */ 88 /* This location must not be altered */ 105 /* This location must not be altered */
|
/linux-4.4.14/include/uapi/linux/netfilter/ |
D | xt_u32.h | 30 struct xt_u32_location_element location[XT_U32_MAXSIZE+1]; member
|
/linux-4.4.14/drivers/acpi/acpica/ |
D | dbmethod.c | 70 acpi_db_set_method_breakpoint(char *location, in acpi_db_set_method_breakpoint() argument 84 address = strtoul(location, NULL, 16); in acpi_db_set_method_breakpoint()
|
/linux-4.4.14/Documentation/devicetree/bindings/nvmem/ |
D | nvmem.txt | 3 This binding is intended to represent the location of hardware 29 bits: Is pair of bit location and number of bits, which specifies offset
|
D | allwinner,sunxi-sid.txt | 5 - reg: Should contain registers location and length
|
D | qfprom.txt | 7 - reg: Should contain registers location and length
|
D | rockchip-efuse.txt | 5 - reg: Should contain the registers location and exact eFuse size
|
/linux-4.4.14/drivers/net/ethernet/intel/ixgbe/ |
D | ixgbe_sysfs.c | 49 ixgbe_attr->sensor->location); in ixgbe_hwmon_show_location() 200 if (adapter->hw.mac.thermal_sensor_data.sensor[i].location == 0) in ixgbe_sysfs_init()
|
/linux-4.4.14/Documentation/devicetree/bindings/watchdog/ |
D | moxa,moxart-watchdog.txt | 6 - reg : Should contain registers location and length
|
D | lpc18xx-wdt.txt | 5 - reg: Should contain WDT registers location and length
|
D | imgpdc-wdt.txt | 5 - reg : Should contain WDT registers location and length
|
D | fsl-imx-wdt.txt | 5 - reg : Should contain WDT registers location and length
|
D | qcom-wdt.txt | 11 - reg : shall contain base register location and length
|
D | davinci-wdt.txt | 5 - reg : Should contain WDT registers location and length
|
/linux-4.4.14/Documentation/devicetree/bindings/net/can/ |
D | atmel-can.txt | 5 - reg: Should contain CAN controller registers location and length
|
/linux-4.4.14/Documentation/devicetree/bindings/net/ |
D | moxa,moxart-mac.txt | 6 - reg : Should contain register location and length
|
/linux-4.4.14/Documentation/devicetree/bindings/timer/ |
D | moxa,moxart-timer.txt | 6 - reg : Should contain registers location and length
|
D | mediatek,mtk-timer.txt | 12 - reg: Should contain location and length for timers register.
|
/linux-4.4.14/drivers/net/usb/ |
D | mcs7830.c | 319 int location) in mcs7830_mdio_read() argument 322 return mcs7830_read_phy(dev, location); in mcs7830_mdio_read() 326 int location, int val) in mcs7830_mdio_write() argument 329 mcs7830_write_phy(dev, location, val); in mcs7830_mdio_write()
|
/linux-4.4.14/Documentation/devicetree/bindings/mtd/ |
D | elm.txt | 1 Error location module
|
D | denali-nand.txt | 5 - reg : should contain registers location and length for data and reg.
|
D | st-fsm.txt | 5 - reg : Contains register's location and length.
|
/linux-4.4.14/scripts/kconfig/ |
D | menu.c | 550 struct menu *submenu[8], *menu, *location = NULL; in get_prompt_str() local 559 if (location == NULL && accessible) in get_prompt_str() 560 location = menu; in get_prompt_str() 562 if (head && location) { in get_prompt_str() 574 jump->target = location; in get_prompt_str() 589 if (jump && menu == location) in get_prompt_str()
|
/linux-4.4.14/mm/kasan/ |
D | kasan.h | 53 struct kasan_source_location *location; member
|
/linux-4.4.14/Documentation/devicetree/bindings/misc/ |
D | brcm,kona-smc.txt | 3 This binding defines the location of the bounce buffer
|
/linux-4.4.14/drivers/net/ethernet/packetengines/ |
D | yellowfin.c | 341 static int read_eeprom(void __iomem *ioaddr, int location); 342 static int mdio_read(void __iomem *ioaddr, int phy_id, int location); 343 static void mdio_write(void __iomem *ioaddr, int phy_id, int location, int value); 524 static int read_eeprom(void __iomem *ioaddr, int location) in read_eeprom() argument 528 iowrite8(location, ioaddr + EEAddr); in read_eeprom() 529 iowrite8(0x30 | ((location >> 8) & 7), ioaddr + EECtrl); in read_eeprom() 539 static int mdio_read(void __iomem *ioaddr, int phy_id, int location) in mdio_read() argument 543 iowrite16((phy_id<<8) + location, ioaddr + MII_Addr); in mdio_read() 551 static void mdio_write(void __iomem *ioaddr, int phy_id, int location, int value) in mdio_write() argument 555 iowrite16((phy_id<<8) + location, ioaddr + MII_Addr); in mdio_write()
|
/linux-4.4.14/drivers/net/ethernet/freescale/ |
D | gianfar_ethtool.c | 1392 if (comp->fs.location > flow->location) { in gfar_add_cls() 1396 if (comp->fs.location == flow->location) { in gfar_add_cls() 1399 flow->location); in gfar_add_cls() 1431 if (comp->fs.location == loc) { in gfar_del_cls() 1450 if (comp->fs.location == cmd->fs.location) { in gfar_get_cls() 1470 rule_locs[i] = comp->fs.location; in gfar_get_cls_all() 1497 cmd->fs.location >= MAX_FILER_IDX) { in gfar_set_nfc() 1504 ret = gfar_del_cls(priv, cmd->fs.location); in gfar_set_nfc()
|
/linux-4.4.14/drivers/net/ethernet/realtek/ |
D | 8139too.c | 638 static int read_eeprom (void __iomem *ioaddr, int location, int addr_len); 640 static int mdio_read (struct net_device *dev, int phy_id, int location); 641 static void mdio_write (struct net_device *dev, int phy_id, int location, 1159 static int read_eeprom(void __iomem *ioaddr, int location, int addr_len) in read_eeprom() argument 1163 int read_cmd = location | (EE_READ_CMD << addr_len); in read_eeprom() 1240 static int mdio_read (struct net_device *dev, int phy_id, int location) in mdio_read() argument 1246 int mii_cmd = (0xf6 << 10) | (phy_id << 5) | location; in mdio_read() 1252 return location < 8 && mii_2_8139_map[location] ? in mdio_read() 1253 RTL_R16 (mii_2_8139_map[location]) : 0; in mdio_read() 1282 static void mdio_write (struct net_device *dev, int phy_id, int location, in mdio_write() argument [all …]
|
D | 8139cp.c | 1309 static int mdio_read(struct net_device *dev, int phy_id, int location) in mdio_read() argument 1313 return location < 8 && mii_2_8139_map[location] ? in mdio_read() 1314 readw(cp->regs + mii_2_8139_map[location]) : 0; in mdio_read() 1318 static void mdio_write(struct net_device *dev, int phy_id, int location, in mdio_write() argument 1323 if (location == 0) { in mdio_write() 1327 } else if (location < 8 && mii_2_8139_map[location]) in mdio_write() 1328 cpw16(mii_2_8139_map[location], value); in mdio_write() 1715 static u16 read_eeprom (void __iomem *ioaddr, int location, int addr_len) in read_eeprom() argument 1720 int read_cmd = location | (EE_READ_CMD << addr_len); in read_eeprom() 1740 static void write_eeprom(void __iomem *ioaddr, int location, u16 val, in write_eeprom() argument [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/gpio/ |
D | moxa,moxart-gpio.txt | 10 - reg : Should contain registers location and length
|
D | gpio_atmel.txt | 5 - reg: Should contain GPIO controller registers location and length
|
D | gpio-clps711x.txt | 5 - reg: Physical base GPIO controller registers location and length.
|
/linux-4.4.14/Documentation/devicetree/bindings/usb/ |
D | usbmisc-imx.txt | 9 - reg: Should contain registers location and length
|
/linux-4.4.14/include/linux/ |
D | mii.h | 27 int (*mdio_read) (struct net_device *dev, int phy_id, int location); 28 void (*mdio_write) (struct net_device *dev, int phy_id, int location, int val);
|
D | edac.h | 549 unsigned location[EDAC_MAX_LAYERS]; member 639 char location[LOCATION_SIZE]; member
|
/linux-4.4.14/drivers/net/ethernet/intel/igb/ |
D | igb_hwmon.c | 50 igb_attr->sensor->location); in igb_hwmon_show_location() 202 if (adapter->hw.mac.thermal_sensor_data.sensor[i].location == 0) in igb_sysfs_init()
|
/linux-4.4.14/drivers/net/ethernet/broadcom/genet/ |
D | bcmmii.c | 31 static int bcmgenet_mii_read(struct mii_bus *bus, int phy_id, int location) in bcmgenet_mii_read() argument 39 (location << MDIO_REG_SHIFT)), UMAC_MDIO_CMD); in bcmgenet_mii_read() 63 int location, u16 val) in bcmgenet_mii_write() argument 70 (location << MDIO_REG_SHIFT) | (0xffff & val)), in bcmgenet_mii_write()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/disp/ |
D | conn.h | 28 _conn->index, _conn->info.location, _conn->info.type, ##a); \
|
D | base.c | 318 switch (dcbE.location) { in nvkm_disp_ctor() 323 "dcb %d locn %d unknown\n", i, dcbE.location); in nvkm_disp_ctor() 348 i, dcbE.location, dcbE.type); in nvkm_disp_ctor()
|
D | outp.c | 71 outp->info.type, outp->info.location, outp->info.or, in nvkm_output_ctor()
|
/linux-4.4.14/Documentation/networking/ |
D | fore200e.txt | 48 Name and location of the new firmware images can be set at kernel 54 2. Reconfigure your kernel to set the new firmware name and location.
|
/linux-4.4.14/Documentation/devicetree/bindings/leds/ |
D | leds-powernv.txt | 8 Each location code of FRU/Enclosure must be expressed in the
|
/linux-4.4.14/drivers/media/platform/vsp1/ |
D | vsp1_rwpf.h | 38 } location; member
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/ |
D | conn.h | 33 u8 location; member
|
D | dcb.h | 23 uint8_t location; member
|
/linux-4.4.14/Documentation/devicetree/bindings/phy/ |
D | mxs-usb-phy.txt | 11 - reg: Should contain registers location and length
|
/linux-4.4.14/Documentation/devicetree/bindings/iio/adc/ |
D | cc10001_adc.txt | 5 - reg: Should contain adc registers location and length.
|
/linux-4.4.14/Documentation/devicetree/bindings/mmc/ |
D | moxa,moxart-mmc.txt | 10 - reg : Should contain registers location and length
|
D | arasan,sdhci.txt | 13 - reg: From mmc bindings: Register location and length.
|
/linux-4.4.14/Documentation/devicetree/bindings/media/ |
D | exynos5-gsc.txt | 7 - reg: should contain G-Scaler physical address location and length.
|
D | st,stih4xx.txt | 7 - reg: BDISP physical address location and length.
|
/linux-4.4.14/Documentation/devicetree/bindings/rtc/ |
D | rtc-cmos.txt | 6 - reg : should contain registers location and length.
|
/linux-4.4.14/drivers/gpu/drm/nouveau/dispnv04/ |
D | dfp.c | 158 if (dcb->type != DCB_OUTPUT_TMDS || dcb->location == DCB_LOC_ON_CHIP) in get_tmds_slave() 209 if (nv_encoder->dcb->location != DCB_LOC_ON_CHIP) in nv04_dfp_prepare_sel_clk() 261 if (nv_encoder->dcb->location == DCB_LOC_ON_CHIP) in nv04_dfp_prepare() 340 if (nv_encoder->dcb->location != DCB_LOC_ON_CHIP && in nv04_dfp_mode_set() 716 entry->location != DCB_LOC_ON_CHIP) in nv04_dfp_create()
|
/linux-4.4.14/drivers/leds/ |
D | dell-led.c | 64 u16 location; member 155 args.arg1 = token->location; in dell_micmute_led_set()
|
/linux-4.4.14/drivers/usb/misc/sisusbvga/ |
D | sisusb_con.c | 116 sisusb_set_cursor(struct sisusb_usb_data *sisusb, unsigned int location) in sisusb_set_cursor() argument 118 if (sisusb->sisusb_cursor_loc == location) in sisusb_set_cursor() 121 sisusb->sisusb_cursor_loc = location; in sisusb_set_cursor() 128 if ((location & 0x0007) == 0x0007) { in sisusb_set_cursor() 130 location--; in sisusb_set_cursor() 139 if (sisusb_setidxreg(sisusb, SISCR, 0x0e, (location >> 8))) in sisusb_set_cursor() 141 sisusb_setidxreg(sisusb, SISCR, 0x0f, (location & 0xff)); in sisusb_set_cursor()
|
/linux-4.4.14/Documentation/trace/ |
D | ftrace-design.txt | 45 is a major issue at this point, especially in relation to the location of the 343 used to turn the mcount call site into a call to an arbitrary location (but 352 will be modifying the assembly code at the location of the ftrace_call symbol 354 at that location to support the new function calls you'll be inserting. Some 375 - add a nop stub after the ftrace_call location named ftrace_graph_call; 380 ftrace_graph_call location with a call to ftrace_graph_caller() 382 ftrace_graph_call location with nops
|
/linux-4.4.14/Documentation/devicetree/bindings/mfd/ |
D | syscon.txt | 9 OS driver) to determine the location of the registers, and access the
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/ |
D | gtm.txt | 8 - reg : should contain gtm registers location and length (0x40).
|
/linux-4.4.14/fs/btrfs/tests/ |
D | inode-tests.c | 238 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY; in test_btrfs_get_extent() 239 BTRFS_I(inode)->location.objectid = BTRFS_FIRST_FREE_OBJECTID; in test_btrfs_get_extent() 240 BTRFS_I(inode)->location.offset = 0; in test_btrfs_get_extent() 830 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY; in test_hole_first() 831 BTRFS_I(inode)->location.objectid = BTRFS_FIRST_FREE_OBJECTID; in test_hole_first() 832 BTRFS_I(inode)->location.offset = 0; in test_hole_first()
|
/linux-4.4.14/drivers/net/ethernet/3com/ |
D | 3c574_cs.c | 221 static int mdio_read(unsigned int ioaddr, int phy_id, int location); 222 static void mdio_write(unsigned int ioaddr, int phy_id, int location, 543 static int mdio_read(unsigned int ioaddr, int phy_id, int location) in mdio_read() argument 546 int read_cmd = (0xf6 << 10) | (phy_id << 5) | location; in mdio_read() 568 static void mdio_write(unsigned int ioaddr, int phy_id, int location, int value) in mdio_write() argument 570 int write_cmd = 0x50020000 | (phy_id << 23) | (location << 18) | value; in mdio_write()
|
/linux-4.4.14/drivers/soc/ti/ |
D | Kconfig | 17 to a particular memory mapped location in the Queue Manager module.
|
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/ |
D | nxp,lpc3220-mic.txt | 16 - reg: Should contain MIC registers location and length
|
/linux-4.4.14/net/dns_resolver/ |
D | Kconfig | 15 cell's volume location database servers.
|