Searched refs:range (Results 1 - 25 of 204) sorted by relevance

123456789

/arch/arm/boot/dts/
H A Dat91sam9g20.dtsi35 atmel,clk-input-range = <2000000 32000000>;
48 atmel,clk-input-range = <2000000 32000000>;
53 atmel,clk-output-range = <0 133000000>;
H A Dvexpress-v2p-ca5s.dts135 freq-range = <50000000 100000000>;
144 freq-range = <5000000 50000000>;
153 freq-range = <80000000 120000000>;
162 freq-range = <23750000 165000000>;
171 freq-range = <80000000 80000000>;
180 freq-range = <25000000 60000000>;
H A Dsama5d3_can.dtsi40 atmel,clk-output-range = <0 66000000>;
46 atmel,clk-output-range = <0 66000000>;
H A Dsama5d3_uart.dtsi45 atmel,clk-output-range = <0 66000000>;
51 atmel,clk-output-range = <0 66000000>;
H A Dvexpress-v2p-ca15_a7.dts212 freq-range = <17000000 50000000>;
221 freq-range = <17000000 50000000>;
230 freq-range = <17000000 50000000>;
239 freq-range = <17000000 50000000>;
248 freq-range = <20000000 40000000>;
257 freq-range = <23750000 165000000>;
266 freq-range = <20000000 40000000>;
275 freq-range = <17000000 50000000>;
284 freq-range = <20000000 50000000>;
H A Dvexpress-v2p-ca15-tc1.dts133 freq-range = <50000000 60000000>;
142 freq-range = <20000000 40000000>;
151 freq-range = <23750000 165000000>;
160 freq-range = <20000000 50000000>;
169 freq-range = <20000000 60000000>;
178 freq-range = <40000000 40000000>;
/arch/sparc/mm/
H A Dextable.c13 /* Caller knows they are in a range if ret->fixup == 0 */
41 /* A range entry, skip both parts. */
54 /* 2. Try to find a range match. */
73 bool range; local
75 for (i = 0; i < m->num_exentries; i += range ? 2 : 1) {
76 range = m->extable[i].fixup == 0;
80 if (range)
83 if (range)
98 /* Inside range? Fix g2 and return correct fixup */
/arch/x86/pci/
H A Damd_bus.c5 #include <linux/range.h>
72 struct range range[RANGE_NUM]; local
118 /* Check if that register is enabled for bus range */
147 memset(range, 0, sizeof(range));
148 add_range(range, RANGE_NUM, 0, 0, 0xffff + 1);
172 subtract_range(range, RANGE_NUM, start, end + 1);
174 /* add left over io port range to def node/link, [0, 0xffff] */
179 if (!range[
[all...]
/arch/powerpc/kernel/
H A Disa-bridge.c65 const struct isa_range *range; local
71 range = of_get_property(isa_node, "ranges", &rlen);
72 if (range == NULL || (rlen < sizeof(struct isa_range)))
81 * cell 5: the size of the range
83 if ((range->isa_addr.a_hi & ISA_SPACE_MASK) != ISA_SPACE_IO) {
84 range++;
89 if ((range->isa_addr.a_hi & ISA_SPACE_MASK) != ISA_SPACE_IO)
92 isa_addr = range->isa_addr.a_lo;
93 pci_addr = (unsigned long) range->pci_addr.a_mid << 32 |
94 range
[all...]
/arch/x86/kernel/
H A Dmmconf-fam10h_64.c10 #include <linux/range.h>
36 const struct range *r1 = x1;
37 const struct range *r2 = x2;
65 struct range range[8]; local
114 * need to check if the range is in the high mmio range that is
133 range[hi_mmio_num].start = start;
134 range[hi_mmio_num].end = end;
141 /* sort the range */
[all...]
/arch/sparc/kernel/
H A Dof_device_common.h16 int of_bus_default_map(u32 *addr, const u32 *range, int na, int ns, int pna);
31 int (*map)(u32 *addr, const u32 *range,
H A Dof_device_common.c92 /* Make sure the least significant 64-bits are in-range. Even
111 int of_bus_default_map(u32 *addr, const u32 *range, int na, int ns, int pna) argument
121 if (of_out_of_range(addr, range, range + na + pna, na, ns))
124 /* Start with the parent range base. */
125 memcpy(result, range + na, pna * 4);
131 range[na - 1 - i]);
/arch/x86/kernel/cpu/mtrr/
H A Dcleanup.c28 #include <linux/range.h>
54 static struct range __initdata range[RANGE_NUM]; variable in typeref:struct:__initdata
66 x86_get_mtrr_mem_range(struct range *range, int nr_range, argument
80 nr_range = add_range_with_merge(range, RANGE_NUM, nr_range,
87 range[i].start, range[i].end);
109 subtract_range(range, RANGE_NUM, base, base + size);
112 subtract_range(range, RANGE_NU
139 sum_ranges(struct range *range, int nr_range) argument
474 x86_setup_var_mtrrs(struct range *range, int nr_range, u64 chunk_size, u64 gran_size) argument
[all...]
/arch/mips/pci/
H A Dpci.c123 struct of_pci_range range; local
132 for_each_of_pci_range(&parser, &range) {
135 switch (range.flags & IORESOURCE_TYPE_BITS) {
138 range.cpu_addr,
139 range.cpu_addr + range.size - 1);
141 (unsigned long)ioremap(range.cpu_addr,
142 range.size);
147 range.cpu_addr,
148 range
[all...]
/arch/microblaze/pci/
H A Dpci-common.c217 /* In the range of this resource? */
284 /* In the range of this resource? */
533 * - We can only cope with one IO space range and up to 3 Memory space
559 struct of_pci_range range; local
570 for_each_of_pci_range(&parser, &range) {
573 range.pci_space, range.pci_addr);
575 range.cpu_addr, range.size);
582 if (range
[all...]
/arch/tile/kernel/
H A Dsetup.c396 HV_PhysAddrRange range = hv_inquire_physical(i); local
397 if (range.size == 0)
402 range.size, range.start + range.size);
407 if ((unsigned long)range.start) {
409 range.start, range.start + range.size);
413 if ((range
1248 HV_VirtAddrRange range = hv_inquire_virtual(i); local
[all...]
/arch/frv/lib/
H A Dcache.S20 # Write back a range of dcache
40 # Invalidate a range of dcache and icache
61 # Invalidate a range of icache
81 # Write back and invalidate a range of dcache and icache
H A D__ashldi3.S29 # deal with a shift in the range 1<=N<=31
36 # deal with a shift in the range 32<=N<=63
H A D__ashrdi3.S30 # deal with a shift in the range 1<=N<=31
37 # deal with a shift in the range 32<=N<=63
H A D__lshrdi3.S29 # deal with a shift in the range 1<=N<=31
36 # deal with a shift in the range 32<=N<=63
/arch/mn10300/lib/
H A D__ashldi3.S32 # the count is in the range 1-31
44 # the count is in the range 32-63
H A D__ashrdi3.S32 # the count is in the range 1-31
44 # the count is in the range 32-63
H A D__lshrdi3.S33 # the count is in the range 1-31
45 # the count is in the range 32-63
/arch/x86/include/asm/
H A Dpage.h20 #include <linux/range.h>
21 extern struct range pfn_mapped[];
/arch/s390/pci/
H A Dpci_insn.c47 static inline u8 __rpcit(u64 fn, u64 addr, u64 range, u8 *status) argument
50 register u64 __range asm("3") = range;
64 int zpci_refresh_trans(u64 fn, u64 addr, u64 range) argument
69 cc = __rpcit(fn, addr, range, &status);
76 __func__, cc, status, addr, range);

Completed in 481 milliseconds

123456789