Home
last modified time | relevance | path

Searched refs:location (Results 1 – 200 of 581) sorted by relevance

123

/linux-4.4.14/arch/xtensa/kernel/
Dmodule.c28 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/
Dmodule-rela.c26 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 …]
Dmodule.c55 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 …]
Dvpe.c228 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/
Dmodule.c28 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/
Dmodule.c47 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/
Dmodule.c53 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/
Dmodule.c81 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/
Dmodule.c86 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/
Dmodule_32.c182 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 …]
Dmodule_64.c496 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/
Dmodule.c91 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/
Dbacktrace.c252 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 …]
Dmodule.c131 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/
Dmodule.c66 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/
Dmodule.c152 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/
Dmodule.c29 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/
Dmodule.c162 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/
Dmodule.c160 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/
Dmodule.c31 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/
Dskb.h16 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/
Dnfs4namespace.c239 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/
Dbpf-helper.c36 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/
Dwii.txt31 - 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 …]
Dgamecube.txt22 - 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/
Dcvmx-mdio.h300 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/
Dmodule.c158 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/
Dmodule.c71 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/
Dgen_initramfs_list.sh107 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/
Dmodule.c618 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/
Defm32-uart.txt9 - energymicro,location : Decides the location of the USART I/O pins.
19 energymicro,location = <0>;
Dnxp-lpc32xx-hsuart.txt5 - reg: Should contain registers location and length
Dcdns,uart.txt5 - reg: Should contain UART controller registers location and length.
Dqcom,msm-uart.txt10 - reg: Should contain UART register location and length.
Ddigicolor-usart.txt9 - reg: Should contain USART controller registers location and length.
/linux-4.4.14/arch/arm/boot/dts/
Defm32gg-dk3750.dts29 energymicro,location = <3>;
46 energymicro,location = <1>;
60 energymicro,location = <1>;
73 energymicro,location = <2>;
/linux-4.4.14/drivers/edac/
Dedac_mc.c65 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 …]
Di82860_edac.c124 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()
Dghes_edac.c290 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/
Di2c-efm32.c120 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/
Di2c-efm32.txt13 - energymicro,location : Decides the location of the USART I/O pins.
26 energymicro,location = <3>;
Di2c-xiic.txt5 - reg : IIC register location and length
Dbrcm,bcm2835-i2c.txt5 - reg: Should contain register location and length.
Di2c-mxs.txt5 - reg: Should contain registers location and length
/linux-4.4.14/drivers/spi/
Dspi-efm32.c294 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/
Dtraps.c184 __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/
Dmedia.c47 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 …]
Deeprom.c341 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()
Dtulip.h485 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);
Dwinbond-840.c325 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/
Ddma.c271 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/
Dgeneric_buffer.c52 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()
Diio_utils.h52 unsigned location; member
/linux-4.4.14/usr/
Dgen_init_cpio.c294 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/
Dmemcpy-archs.S44 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
Dmemset-archs.S14 prefetchw [r0] ; Prefetch the write location
/linux-4.4.14/arch/x86/kernel/
Dmachine_kexec_64.c414 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()
Dmodule.c108 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/
Dbtrfs_inode.h67 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()
Ddisk-io.h69 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()
Dinode-item.c418 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()
Ddir-item.c77 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()
Ddisk-io.c1542 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 …]
Dinode.c65 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/
Datmel-at91.txt46 - 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
Datmel-pmc.txt8 - reg: Should contain PMC registers location and length
Dmvebu-cpu-config.txt12 - reg: Should contain CPU config registers location and length, in
Dmvebu-system-controller.txt11 - reg: Should contain system controller registers location and length.
Darmada-370-xp-pmsu.txt13 - reg: Should contain PMSU registers location and length.
/linux-4.4.14/arch/ia64/sn/kernel/sn2/
Dsn_hwperf.c89 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/
Dxt_u32.c36 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/
Dmii-fec.c52 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/
Dport.c204 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/
Dakebono.txt21 - 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/
Dudf.txt61 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)
Dsquashfs.txt116 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/
Dkselftest.txt61 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:
Dvme_api.txt164 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/
Ddrop_monitor.c138 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/
Dnet_dropmonitor.py70 skbaddr, location, protocol): argument
71 slocation = str(location)
/linux-4.4.14/drivers/block/
Dswim.c173 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/
Datmel-crypto.txt9 - 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.
Dfsl-imx-sahara.txt6 - reg : Should contain SAHARA registers location and length
Dfsl-dcp.txt5 - reg : Should contain MXS DCP registers location and length
Dsun4i-ss.txt5 - reg: Should contain the Security System register location and length.
/linux-4.4.14/fs/isofs/
Drock.h60 char location[8]; member
64 char location[8]; member
/linux-4.4.14/arch/powerpc/platforms/pasemi/
Dgpio_mdio.c128 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/
Defm32-uart.c303 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/
Ddcb.c111 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/
Defm32-spi.txt13 - energymicro,location: Value to write to the ROUTE register's LOCATION
30 energymicro,location = <1>;
Dspi-sun4i.txt5 - reg: Should contain register location and length.
Dbrcm,bcm2835-spi.txt9 - reg: Should contain register location and length.
Dspi-sun6i.txt5 - reg: Should contain register location and length.
Dti_qspi.txt5 - reg: Should contain QSPI registers location and length.
Dspi-xlp.txt13 - reg : Should contain register location and length.
Dnvidia,tegra20-sflash.txt5 - reg: Should contain SFLASH registers location and length.
/linux-4.4.14/Documentation/devicetree/bindings/clock/
Dmoxa,moxart-clock.txt16 - reg : Should contain registers location and length
28 - reg : Should contain registers location and length
Dqcom,lcc.txt11 - reg : shall contain base register location and length
Dqcom,mmcc.txt13 - reg : shall contain base register location and length
Dqcom,gcc.txt17 - reg : shall contain base register location and length
Dlsi,axm5516-clks.txt6 - reg : shall contain base register location and length
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-devices14 on the symlinks there to point to the proper location
18 the location of those devices.
/linux-4.4.14/fs/udf/
Dmisc.c202 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/
Dusb.txt5 - 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/
Dau1x00.c411 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/
Dtcm.txt17 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
DBooting98 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/
Ddm-btree.c528 __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/
Defm32-uart.h16 u8 location; member
Defm32-spi.h12 u8 location; member
/linux-4.4.14/Documentation/devicetree/bindings/fuse/
Dnvidia,tegra20-fuse.txt15 the location of the spare (OEM programmable) bits and the location of
/linux-4.4.14/drivers/platform/x86/
Dalienware-wmi.c126 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()
Dhp-wmi.c537 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/
Dswsusp-and-swap-files.txt13 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/
Dbcm7xxx.c226 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/
Dmdacon.c149 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/
Dmmp-dma.txt8 - reg: Should contain DMA registers location and length.
55 - reg: Should contain DMA registers location and length.
Dzxdma.txt5 - reg: Should contain DMA registers location and length.
Dk3dma.txt7 - reg: Should contain DMA registers location and length.
/linux-4.4.14/Documentation/devicetree/bindings/sound/
Dnvidia,tegra20-das.txt5 - reg : Should contain DAS registers location and length
Domap-mcpdm.txt5 - reg: Register location and size as an array:
Dingenic,jz4740-i2s.txt5 - reg : I2S registers location and length
Domap-dmic.txt5 - reg: Register location and size as an array:
Dmtk-afe-pcm.txt5 - reg: register location and size
Dnvidia,tegra20-i2s.txt5 - reg : Should contain I2S registers location and length
Dimx-audmux.txt9 - reg : Should contain AUDMUX registers location and length.
Dsun4i-codec.txt6 - reg: must contain the registers location and length
Dzte,zx-spdif.txt5 - reg : Must contain SPDIF core's registers location and length
Dmxs-saif.txt5 - reg: Should contain registers location and length
Dnvidia,tegra30-i2s.txt8 - reg : Should contain I2S registers location and length
Dnvidia,tegra30-hda.txt7 - reg : Should contain the HDA registers location and length.
/linux-4.4.14/arch/powerpc/boot/dts/fsl/
Dp1021rdb-pc.dtsi45 /* 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 */
Dp1024rdb.dtsi45 /* This location must not be altered */
71 /* This location must not be altered */
88 /* This location must not be altered */
Dp2020rdb.dts49 /* This location must not be altered */
77 /* This location must not be altered */
94 /* This location must not be altered */
Dp1020rdb.dtsi45 /* This location must not be altered */
73 /* This location must not be altered */
90 /* This location must not be altered */
Dp2020rdb-pc.dtsi45 /* This location must not be altered */
71 /* This location must not be altered */
88 /* This location must not be altered */
Dp1020rdb-pc.dtsi45 /* This location must not be altered */
71 /* This location must not be altered */
88 /* This location must not be altered */
Dp1020rdb-pd.dts80 /* 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/
Dxt_u32.h30 struct xt_u32_location_element location[XT_U32_MAXSIZE+1]; member
/linux-4.4.14/drivers/acpi/acpica/
Ddbmethod.c70 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/
Dnvmem.txt3 This binding is intended to represent the location of hardware
29 bits: Is pair of bit location and number of bits, which specifies offset
Dallwinner,sunxi-sid.txt5 - reg: Should contain registers location and length
Dqfprom.txt7 - reg: Should contain registers location and length
Drockchip-efuse.txt5 - reg: Should contain the registers location and exact eFuse size
/linux-4.4.14/drivers/net/ethernet/intel/ixgbe/
Dixgbe_sysfs.c49 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/
Dmoxa,moxart-watchdog.txt6 - reg : Should contain registers location and length
Dlpc18xx-wdt.txt5 - reg: Should contain WDT registers location and length
Dimgpdc-wdt.txt5 - reg : Should contain WDT registers location and length
Dfsl-imx-wdt.txt5 - reg : Should contain WDT registers location and length
Dqcom-wdt.txt11 - reg : shall contain base register location and length
Ddavinci-wdt.txt5 - reg : Should contain WDT registers location and length
/linux-4.4.14/Documentation/devicetree/bindings/net/can/
Datmel-can.txt5 - reg: Should contain CAN controller registers location and length
/linux-4.4.14/Documentation/devicetree/bindings/net/
Dmoxa,moxart-mac.txt6 - reg : Should contain register location and length
/linux-4.4.14/Documentation/devicetree/bindings/timer/
Dmoxa,moxart-timer.txt6 - reg : Should contain registers location and length
Dmediatek,mtk-timer.txt12 - reg: Should contain location and length for timers register.
/linux-4.4.14/drivers/net/usb/
Dmcs7830.c319 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/
Delm.txt1 Error location module
Ddenali-nand.txt5 - reg : should contain registers location and length for data and reg.
Dst-fsm.txt5 - reg : Contains register's location and length.
/linux-4.4.14/scripts/kconfig/
Dmenu.c550 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/
Dkasan.h53 struct kasan_source_location *location; member
/linux-4.4.14/Documentation/devicetree/bindings/misc/
Dbrcm,kona-smc.txt3 This binding defines the location of the bounce buffer
/linux-4.4.14/drivers/net/ethernet/packetengines/
Dyellowfin.c341 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/
Dgianfar_ethtool.c1392 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/
D8139too.c638 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 …]
D8139cp.c1309 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/
Dmoxa,moxart-gpio.txt10 - reg : Should contain registers location and length
Dgpio_atmel.txt5 - reg: Should contain GPIO controller registers location and length
Dgpio-clps711x.txt5 - reg: Physical base GPIO controller registers location and length.
/linux-4.4.14/Documentation/devicetree/bindings/usb/
Dusbmisc-imx.txt9 - reg: Should contain registers location and length
/linux-4.4.14/include/linux/
Dmii.h27 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);
Dedac.h549 unsigned location[EDAC_MAX_LAYERS]; member
639 char location[LOCATION_SIZE]; member
/linux-4.4.14/drivers/net/ethernet/intel/igb/
Digb_hwmon.c50 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/
Dbcmmii.c31 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/
Dconn.h28 _conn->index, _conn->info.location, _conn->info.type, ##a); \
Dbase.c318 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()
Doutp.c71 outp->info.type, outp->info.location, outp->info.or, in nvkm_output_ctor()
/linux-4.4.14/Documentation/networking/
Dfore200e.txt48 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/
Dleds-powernv.txt8 Each location code of FRU/Enclosure must be expressed in the
/linux-4.4.14/drivers/media/platform/vsp1/
Dvsp1_rwpf.h38 } location; member
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/
Dconn.h33 u8 location; member
Ddcb.h23 uint8_t location; member
/linux-4.4.14/Documentation/devicetree/bindings/phy/
Dmxs-usb-phy.txt11 - reg: Should contain registers location and length
/linux-4.4.14/Documentation/devicetree/bindings/iio/adc/
Dcc10001_adc.txt5 - reg: Should contain adc registers location and length.
/linux-4.4.14/Documentation/devicetree/bindings/mmc/
Dmoxa,moxart-mmc.txt10 - reg : Should contain registers location and length
Darasan,sdhci.txt13 - reg: From mmc bindings: Register location and length.
/linux-4.4.14/Documentation/devicetree/bindings/media/
Dexynos5-gsc.txt7 - reg: should contain G-Scaler physical address location and length.
Dst,stih4xx.txt7 - reg: BDISP physical address location and length.
/linux-4.4.14/Documentation/devicetree/bindings/rtc/
Drtc-cmos.txt6 - reg : should contain registers location and length.
/linux-4.4.14/drivers/gpu/drm/nouveau/dispnv04/
Ddfp.c158 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/
Ddell-led.c64 u16 location; member
155 args.arg1 = token->location; in dell_micmute_led_set()
/linux-4.4.14/drivers/usb/misc/sisusbvga/
Dsisusb_con.c116 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/
Dftrace-design.txt45 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/
Dsyscon.txt9 OS driver) to determine the location of the registers, and access the
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/
Dgtm.txt8 - reg : should contain gtm registers location and length (0x40).
/linux-4.4.14/fs/btrfs/tests/
Dinode-tests.c238 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/
D3c574_cs.c221 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/
DKconfig17 to a particular memory mapped location in the Queue Manager module.
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/
Dnxp,lpc3220-mic.txt16 - reg: Should contain MIC registers location and length
/linux-4.4.14/net/dns_resolver/
DKconfig15 cell's volume location database servers.

123