/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/arch/arm/boot/dts/ |
D | efm32gg-dk3750.dts | 29 efm32,location = <3>; 46 location = <1>; 60 location = <1>; 73 location = <2>;
|
/linux-4.1.27/arch/ia64/kernel/ |
D | module.c | 626 Elf64_Shdr *sec, void *location) in do_reloc() argument 642 case RV_PLTREL: val = get_plt(mod, location, val, &ok); break; in do_reloc() 650 if ((in_init(mod, val) && in_core(mod, (uint64_t)location)) || in do_reloc() 651 (in_core(mod, val) && in_init(mod, (uint64_t)location))) { in do_reloc() 656 uint64_t delta = ((int64_t)val - (int64_t)location) / 16; in do_reloc() 659 val = get_plt(mod, location, val, &ok); in do_reloc() 662 val = get_plt(mod, location, val, &ok); in do_reloc() 665 val -= bundle(location); in do_reloc() 672 val -= (uint64_t) location; in do_reloc() 704 val -= bundle(location); in do_reloc() [all …]
|
/linux-4.1.27/drivers/edac/ |
D | edac_mc.c | 60 dimm->location[i]); in edac_dimm_info_location() 83 char location[80]; in edac_mc_dump_dimm() local 85 edac_dimm_info_location(dimm, location, sizeof(location)); in edac_mc_dump_dimm() 89 number, location, dimm->csrow, dimm->cschannel); in edac_mc_dump_dimm() 412 dimm->location[j] = pos[j]; in edac_mc_alloc() 983 const char *location, in edac_ce_error() argument 1003 location, detail, other_detail); in edac_ce_error() 1008 location, detail); in edac_ce_error() 1037 const char *location, in edac_ue_error() argument 1053 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 | 310 p = e->location; in ghes_edac_report_mem_error() 336 if (p > e->location) in ghes_edac_report_mem_error() 417 "APEI location: %s %s", e->location, e->other_detail); in ghes_edac_report_mem_error()
|
/linux-4.1.27/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.1.27/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.1.27/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() 56 bytes = channels[i].location + channels[i].bytes; in size_from_channelarray() 107 print2byte(*(uint16_t *)(data + channels[k].location), in process_scan() 113 (data + channels[k].location); in process_scan() 124 channels[k].location); in process_scan()
|
D | iio_utils.h | 47 unsigned location; member
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/arch/x86/kernel/ |
D | machine_kexec_64.c | 412 void *location; in arch_kexec_apply_relocations_add() local 457 location = (void *)(section->sh_offset + rel[i].r_offset); in arch_kexec_apply_relocations_add() 507 *(u64 *)location = value; in arch_kexec_apply_relocations_add() 510 *(u32 *)location = value; in arch_kexec_apply_relocations_add() 511 if (value != *(u32 *)location) in arch_kexec_apply_relocations_add() 515 *(s32 *)location = value; in arch_kexec_apply_relocations_add() 516 if ((s64)value != *(s32 *)location) in arch_kexec_apply_relocations_add() 521 *(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.1.27/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.1.27/fs/btrfs/ |
D | btrfs_inode.h | 67 struct btrfs_key location; member 230 u64 ino = BTRFS_I(inode)->location.objectid; in btrfs_ino() 236 if (!ino || BTRFS_I(inode)->location.type == BTRFS_ROOT_ITEM_KEY) in btrfs_ino() 254 if (BTRFS_I(inode)->location.objectid == BTRFS_FREE_INO_OBJECTID) in btrfs_is_free_space_inode()
|
D | disk-io.h | 67 struct btrfs_key *location); 78 struct btrfs_key *location) in btrfs_read_fs_root_no_name() argument 80 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 | 1534 struct btrfs_key *location) in btrfs_read_fs_root() argument 1538 root = btrfs_read_tree_root(tree_root, location); in btrfs_read_fs_root() 1636 struct btrfs_key *location, in btrfs_get_fs_root() argument 1644 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID) in btrfs_get_fs_root() 1646 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID) in btrfs_get_fs_root() 1648 if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID) in btrfs_get_fs_root() 1650 if (location->objectid == BTRFS_DEV_TREE_OBJECTID) in btrfs_get_fs_root() 1652 if (location->objectid == BTRFS_CSUM_TREE_OBJECTID) in btrfs_get_fs_root() 1654 if (location->objectid == BTRFS_QUOTA_TREE_OBJECTID) in btrfs_get_fs_root() 1657 if (location->objectid == BTRFS_UUID_TREE_OBJECTID) in btrfs_get_fs_root() [all …]
|
D | inode.c | 65 struct btrfs_key *location; member 3578 struct btrfs_key location; in btrfs_read_locked_inode() local 3594 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location)); in btrfs_read_locked_inode() 3596 ret = btrfs_lookup_inode(NULL, root, path, &location, 0); in btrfs_read_locked_inode() 3658 btrfs_item_key_to_cpu(leaf, &location, path->slots[0]); in btrfs_read_locked_inode() 3659 if (location.objectid != btrfs_ino(inode)) in btrfs_read_locked_inode() 3663 if (location.type == BTRFS_INODE_REF_KEY) { in btrfs_read_locked_inode() 3668 } else if (location.type == BTRFS_INODE_EXTREF_KEY) { in btrfs_read_locked_inode() 3794 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location, in btrfs_update_inode_item() 4146 BTRFS_I(inode)->location.objectid, in btrfs_rmdir() [all …]
|
D | super.c | 852 struct btrfs_key location; in get_default_root() local 862 location.objectid = subvol_objectid; in get_default_root() 863 location.type = BTRFS_ROOT_ITEM_KEY; in get_default_root() 864 location.offset = (u64)-1; in get_default_root() 896 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location); in get_default_root() 900 new_root = btrfs_read_fs_root_no_name(fs_info, &location); in get_default_root() 915 location.objectid = dir_id; in get_default_root() 916 location.type = BTRFS_INODE_ITEM_KEY; in get_default_root() 917 location.offset = 0; in get_default_root() 919 inode = btrfs_iget(sb, &location, new_root, &new); in get_default_root()
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/ |
D | atmel-at91.txt | 44 - reg: Should contain registers location and length 50 - reg: Should contain registers location and length 59 - reg: Should contain registers location and length 91 - reg: Should contain registers location and length 105 - reg: Should contain registers location and length 119 - reg: Should contain registers location and length 152 - reg: Should contain registers location and length
|
D | atmel-pmc.txt | 8 - reg: Should contain PMC registers location and length
|
D | mvebu-system-controller.txt | 11 - reg: Should contain system controller registers location and length.
|
D | arm-boards | 22 - regs: the location and size of the core module registers, one 33 - regs: the location and size of the system controller registers, 134 - regs: the location and size of the system controller registers,
|
D | armada-370-xp-pmsu.txt | 13 - reg: Should contain PMSU registers location and length.
|
D | lpc32xx-mic.txt | 16 - reg: Should contain MIC registers location and length
|
D | coherency-fabric.txt | 18 - reg: Should contain coherency fabric registers location and
|
/linux-4.1.27/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.1.27/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.1.27/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() 295 __u16 __user *location; in data_exception() local 298 location = get_trap_ip(regs); in data_exception()
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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
|
D | afs.txt | 65 list of volume location server IP addresses: 85 volume location servers within that cell, with the latter separated by colons. 144 (*) A directory per cell that contains files that list volume location 163 IP addresses of the volume location servers for those cells. The cell to which
|
D | xfs-self-describing-metadata.txt | 13 Almost all metadata on XFS is dynamically allocated. The only fixed location 61 location. This allows us to identify the expected contents of the block and 94 look at any other metadata. This means it needs to contain location information. 97 written to the "correct block" of the wrong filesystem. Hence location 101 block belongs to. We already know the type, the location, that it is valid 174 further checks are made against the location information, followed by extensive 195 __be64 blkno; /* location on disk */ 208 number for location. The two of these combined provide the same
|
/linux-4.1.27/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.1.27/tools/perf/scripts/python/ |
D | net_dropmonitor.py | 70 skbaddr, location, protocol): argument 71 slocation = str(location)
|
/linux-4.1.27/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.1.27/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
|
/linux-4.1.27/fs/isofs/ |
D | rock.h | 60 char location[8]; member 64 char location[8]; member
|
/linux-4.1.27/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.1.27/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.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
D | dcb.c | 112 return (outp->extdev << 8) | (outp->location << 4) | outp->type; in dcb_outp_hasht() 131 outp->location = (conn & 0x00300000) >> 20; in dcb_outp_parse() 181 if (outp->location != 0) in dcb_outp_parse()
|
/linux-4.1.27/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.1.27/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 | nvidia,tegra20-sflash.txt | 5 - reg: Should contain SFLASH registers location and length.
|
D | nvidia,tegra20-slink.txt | 5 - reg: Should contain SLINK registers location and length.
|
/linux-4.1.27/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.1.27/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.1.27/drivers/md/persistent-data/ |
D | dm-btree.c | 431 __le64 location; in btree_split_sibling() local 464 location = cpu_to_le64(dm_block_location(left)); in btree_split_sibling() 465 __dm_bless_for_disk(&location); in btree_split_sibling() 467 &location, sizeof(__le64)); in btree_split_sibling() 469 location = cpu_to_le64(dm_block_location(right)); in btree_split_sibling() 470 __dm_bless_for_disk(&location); in btree_split_sibling() 473 le64_to_cpu(rn->keys[0]), &location); in btree_split_sibling() 615 __le64 location = cpu_to_le64(dm_block_location(shadow_current(s))); in btree_insert_raw() local 617 __dm_bless_for_disk(&location); in btree_insert_raw() 619 &location, sizeof(__le64)); in btree_insert_raw()
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/include/linux/platform_data/ |
D | efm32-uart.h | 16 u8 location; member
|
D | efm32-spi.h | 12 u8 location; member
|
/linux-4.1.27/Documentation/devicetree/bindings/fuse/ |
D | nvidia,tegra20-fuse.txt | 15 the location of the spare (OEM programmable) bits and the location of
|
/linux-4.1.27/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.1.27/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.1.27/Documentation/ |
D | vme_api.txt | 164 VME bus location : 340 The VME API provides the following functionality to configure the location 347 The following functions are provided to request the use of a block of location 354 Each block may provide a number of location monitors, monitoring adjacent 364 Once a bank of location monitors has been allocated, the following functions 365 are provided to configure the location and mode of the location monitor: 378 location monitor location. Each location monitor can monitor a number of
|
/linux-4.1.27/arch/powerpc/boot/dts/ |
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 | p2020rdb.dts | 49 /* This location must not be altered */ 77 /* This location must not be altered */ 94 /* 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-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.dtsi | 45 /* This location must not be altered */ 73 /* This location must not be altered */ 90 /* 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 */
|
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 */
|
/linux-4.1.27/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.1.27/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 | k3dma.txt | 7 - reg: Should contain DMA registers location and length.
|
D | moxa,moxart-dma.txt | 8 - reg : Should contain registers location and length
|
D | mv-xor.txt | 5 - reg: Should contain registers location and length (two sets)
|
/linux-4.1.27/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 | imx-audmux.txt | 9 - reg : Should contain AUDMUX registers location and length.
|
D | nvidia,tegra20-i2s.txt | 5 - reg : Should contain I2S 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.
|
D | designware-i2s.txt | 5 - reg : Must contain the I2S core's registers location and length
|
/linux-4.1.27/include/uapi/linux/netfilter/ |
D | xt_u32.h | 30 struct xt_u32_location_element location[XT_U32_MAXSIZE+1]; member
|
/linux-4.1.27/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.1.27/Documentation/devicetree/bindings/watchdog/ |
D | moxa,moxart-watchdog.txt | 6 - reg : Should contain 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.1.27/Documentation/devicetree/bindings/net/can/ |
D | atmel-can.txt | 5 - reg: Should contain CAN controller registers location and length
|
/linux-4.1.27/Documentation/devicetree/bindings/usb/ |
D | ci-hdrc-zevio.txt | 5 - reg: Should contain registers location and length
|
D | usbmisc-imx.txt | 9 - reg: Should contain registers location and length
|
D | mxs-phy.txt | 11 - reg: Should contain registers location and length
|
/linux-4.1.27/Documentation/devicetree/bindings/net/ |
D | moxa,moxart-mac.txt | 6 - reg : Should contain register location and length
|
/linux-4.1.27/drivers/net/phy/ |
D | bcm7xxx.c | 290 static int phy_set_clr_bits(struct phy_device *dev, int location, in phy_set_clr_bits() argument 295 v = phy_read(dev, location); in phy_set_clr_bits() 302 ret = phy_write(dev, location, v); in phy_set_clr_bits()
|
/linux-4.1.27/Documentation/devicetree/bindings/timer/ |
D | moxa,moxart-timer.txt | 6 - reg : Should contain registers location and length
|
D | mediatek,mtk-timer.txt | 6 - reg: Should contain location and length for timers register.
|
D | arm,sp804.txt | 10 - reg: Should contain location and length for dual timer register.
|
D | marvell,armada-370-xp-timer.txt | 11 - reg: Should contain location and length for timers register. First
|
/linux-4.1.27/Documentation/devicetree/bindings/misc/ |
D | allwinner,sunxi-sid.txt | 5 - reg: Should contain registers location and length
|
D | brcm,kona-smc.txt | 3 This binding defines the location of the bounce buffer
|
/linux-4.1.27/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() 58 int location, u16 val) in bcmgenet_mii_write() argument 65 (location << MDIO_REG_SHIFT) | (0xffff & val)), in bcmgenet_mii_write()
|
/linux-4.1.27/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.1.27/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.1.27/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()
|
D | hamachi.c | 545 static int read_eeprom(void __iomem *ioaddr, int location); 546 static int mdio_read(struct net_device *dev, int phy_id, int location); 547 static void mdio_write(struct net_device *dev, int phy_id, int location, int value); 792 static int read_eeprom(void __iomem *ioaddr, int location) in read_eeprom() argument 798 writew(location, ioaddr + EEAddr); in read_eeprom() 812 static int mdio_read(struct net_device *dev, int phy_id, int location) in mdio_read() argument 822 writew((phy_id<<8) + location, ioaddr + MII_Addr); in mdio_read() 830 static void mdio_write(struct net_device *dev, int phy_id, int location, int value) in mdio_write() argument 840 writew((phy_id<<8) + location, ioaddr + MII_Addr); in mdio_write()
|
/linux-4.1.27/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.1.27/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 | 1304 static int mdio_read(struct net_device *dev, int phy_id, int location) in mdio_read() argument 1308 return location < 8 && mii_2_8139_map[location] ? in mdio_read() 1309 readw(cp->regs + mii_2_8139_map[location]) : 0; in mdio_read() 1313 static void mdio_write(struct net_device *dev, int phy_id, int location, in mdio_write() argument 1318 if (location == 0) { in mdio_write() 1322 } else if (location < 8 && mii_2_8139_map[location]) in mdio_write() 1323 cpw16(mii_2_8139_map[location], value); in mdio_write() 1710 static u16 read_eeprom (void __iomem *ioaddr, int location, int addr_len) in read_eeprom() argument 1715 int read_cmd = location | (EE_READ_CMD << addr_len); in read_eeprom() 1735 static void write_eeprom(void __iomem *ioaddr, int location, u16 val, in write_eeprom() argument [all …]
|
/linux-4.1.27/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.1.27/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.1.27/mm/kasan/ |
D | kasan.h | 54 struct kasan_source_location *location; member
|
/linux-4.1.27/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.1.27/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.1.27/drivers/media/platform/vsp1/ |
D | vsp1_rwpf.h | 38 } location; member
|
D | vsp1_rpf.c | 147 (rpf->location.left << VI6_RPF_LOC_HCOORD_SHIFT) | in rpf_s_stream() 148 (rpf->location.top << VI6_RPF_LOC_VCOORD_SHIFT)); in rpf_s_stream()
|
/linux-4.1.27/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.1.27/Documentation/devicetree/bindings/mmc/ |
D | moxa,moxart-mmc.txt | 10 - reg : Should contain registers location and length
|
D | arasan,sdhci.txt | 12 - reg: From mmc bindings: Register location and length.
|
/linux-4.1.27/Documentation/devicetree/bindings/iio/adc/ |
D | cc10001_adc.txt | 5 - reg: Should contain adc registers location and length.
|
/linux-4.1.27/Documentation/devicetree/bindings/rtc/ |
D | rtc-cmos.txt | 6 - reg : should contain registers location and length.
|
/linux-4.1.27/Documentation/devicetree/bindings/media/ |
D | exynos5-gsc.txt | 7 - reg: should contain G-Scaler physical address location and length.
|
/linux-4.1.27/drivers/net/ethernet/freescale/ |
D | gianfar_ethtool.c | 1712 if (comp->fs.location > flow->location) { in gfar_add_cls() 1716 if (comp->fs.location == flow->location) { in gfar_add_cls() 1719 flow->location); in gfar_add_cls() 1750 if (comp->fs.location == loc) { in gfar_del_cls() 1769 if (comp->fs.location == cmd->fs.location) { in gfar_get_cls() 1789 rule_locs[i] = comp->fs.location; in gfar_get_cls_all() 1816 cmd->fs.location >= MAX_FILER_IDX) { in gfar_set_nfc() 1823 ret = gfar_del_cls(priv, cmd->fs.location); in gfar_set_nfc()
|
/linux-4.1.27/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() 717 entry->location != DCB_LOC_ON_CHIP) in nv04_dfp_create()
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/disp/ |
D | conn.h | 53 _conn->info.location, _conn->info.type, ##a); \
|
/linux-4.1.27/drivers/leds/ |
D | dell-led.c | 64 u16 location; member 155 args.arg1 = token->location; in dell_micmute_led_set()
|
/linux-4.1.27/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.1.27/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.1.27/Documentation/devicetree/bindings/powerpc/fsl/ |
D | gtm.txt | 8 - reg : should contain gtm registers location and length (0x40).
|
/linux-4.1.27/Documentation/devicetree/bindings/mfd/ |
D | syscon.txt | 9 OS driver) to determine the location of the registers, and access the
|
/linux-4.1.27/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.1.27/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.1.27/drivers/soc/ti/ |
D | Kconfig | 17 to a particular memory mapped location in the Queue Manager module.
|
/linux-4.1.27/net/dns_resolver/ |
D | Kconfig | 15 cell's volume location database servers.
|
/linux-4.1.27/fs/proc/ |
D | Kconfig | 20 meaning it has to be given a location in the directory hierarchy. 21 That location should be /proc. A command such as "mount -t proc proc
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/exynos/ |
D | smp-sysram.txt | 6 code that is residing at some specific location of the SYSRAM.
|
/linux-4.1.27/sound/firewire/bebob/ |
D | bebob_stream.c | 203 unsigned int pcm, midi, location; in map_data_channels() local 301 location = pcm + sec_loc; in map_data_channels() 302 if (location >= AMDTP_MAX_CHANNELS_FOR_PCM) { in map_data_channels() 306 s->pcm_positions[location] = stm_pos; in map_data_channels()
|
/linux-4.1.27/drivers/net/ethernet/xscale/ |
D | ixp4xx_eth.c | 442 static int ixp4xx_mdio_cmd(struct mii_bus *bus, int phy_id, int location, in ixp4xx_mdio_cmd() argument 456 __raw_writel(((phy_id << 5) | location) & 0xFF, in ixp4xx_mdio_cmd() 493 static int ixp4xx_mdio_read(struct mii_bus *bus, int phy_id, int location) in ixp4xx_mdio_read() argument 499 ret = ixp4xx_mdio_cmd(bus, phy_id, location, 0, 0); in ixp4xx_mdio_read() 503 phy_id, location, ret); in ixp4xx_mdio_read() 508 static int ixp4xx_mdio_write(struct mii_bus *bus, int phy_id, int location, in ixp4xx_mdio_write() argument 515 ret = ixp4xx_mdio_cmd(bus, phy_id, location, 1, val); in ixp4xx_mdio_write() 519 bus->name, phy_id, location, val, ret); in ixp4xx_mdio_write()
|
/linux-4.1.27/arch/arm/nwfpe/ |
D | softfloat-macros | 39 The result is stored in the location pointed to by `zPtr'. 64 The result is stored in the location pointed to by `zPtr'. 89 64 nonzero bits; this is stored at the location pointed to by `z0Ptr'. The 93 bits shifted off were all zero. This extra result is stored in the location 98 integer part of the result is returned at the location pointed to by 100 described above, and is returned at the location pointed to by `z1Ptr'.) 218 were all zero. This extra result is stored in the location pointed to by 225 corrupted as described above, and is returned at the location pointed to by
|