Home
last modified time | relevance | path

Searched refs:low (Results 1 – 200 of 1127) sorted by relevance

123456

/linux-4.4.14/drivers/net/ethernet/sfc/
Dbitfield.h126 #define EFX_EXTRACT_NATIVE(native_element, min, max, low, high) \ argument
127 ((low) > (max) || (high) < (min) ? 0 : \
128 (low) > (min) ? \
129 (native_element) >> ((low) - (min)) : \
130 (native_element) << ((min) - (low)))
136 #define EFX_EXTRACT64(element, min, max, low, high) \ argument
137 EFX_EXTRACT_NATIVE(le64_to_cpu(element), min, max, low, high)
143 #define EFX_EXTRACT32(element, min, max, low, high) \ argument
144 EFX_EXTRACT_NATIVE(le32_to_cpu(element), min, max, low, high)
146 #define EFX_EXTRACT_OWORD64(oword, low, high) \ argument
[all …]
/linux-4.4.14/arch/x86/include/asm/
Dmsr.h37 unsigned long low, high; in native_read_tscp() local
39 : "=a" (low), "=d" (high), "=c" (*aux)); in native_read_tscp()
40 return low | ((u64)high << 32); in native_read_tscp()
51 #define DECLARE_ARGS(val, low, high) unsigned long low, high argument
52 #define EAX_EDX_VAL(val, low, high) ((low) | (high) << 32) argument
53 #define EAX_EDX_RET(val, low, high) "=a" (low), "=d" (high) argument
55 #define DECLARE_ARGS(val, low, high) unsigned long long val argument
56 #define EAX_EDX_VAL(val, low, high) (val) argument
57 #define EAX_EDX_RET(val, low, high) "=A" (val) argument
62 DECLARE_ARGS(val, low, high); in native_read_msr()
[all …]
Datomic64_32.h91 unsigned low = (unsigned)n; in atomic64_xchg() local
93 "S" (v), "b" (low), "c" (high) in atomic64_xchg()
108 unsigned low = (unsigned)i; in atomic64_set() local
110 "S" (v), "b" (low), "c" (high) in atomic64_set()
288 unsigned low = (unsigned)u; in atomic64_add_unless() local
291 ASM_OUTPUT2("+A" (a), "+c" (low), "+D" (high)), in atomic64_add_unless()
Dapic.h106 extern void native_apic_icr_write(u32 low, u32 id);
219 static inline void native_x2apic_icr_write(u32 low, u32 id) in native_x2apic_icr_write() argument
221 wrmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), ((__u64) id) << 32 | low); in native_x2apic_icr_write()
330 void (*icr_write)(u32 low, u32 high);
405 static inline void apic_icr_write(u32 low, u32 high) in apic_icr_write() argument
407 apic->icr_write(low, high); in apic_icr_write()
428 static inline void apic_icr_write(u32 low, u32 high) { } in apic_icr_write() argument
Dcmpxchg_32.h25 u32 low = value; in set_64bit() local
33 : "b" (low), "c" (high) in set_64bit()
/linux-4.4.14/arch/alpha/kernel/
Dmachvec_impl.h76 #define IO_LITE(UP,low) \ argument
79 .mv_ioread8 = CAT(low,_ioread8), \
80 .mv_ioread16 = CAT(low,_ioread16), \
81 .mv_ioread32 = CAT(low,_ioread32), \
82 .mv_iowrite8 = CAT(low,_iowrite8), \
83 .mv_iowrite16 = CAT(low,_iowrite16), \
84 .mv_iowrite32 = CAT(low,_iowrite32), \
85 .mv_readb = CAT(low,_readb), \
86 .mv_readw = CAT(low,_readw), \
87 .mv_readl = CAT(low,_readl), \
[all …]
/linux-4.4.14/arch/x86/kernel/cpu/mtrr/
Dcentaur.c11 unsigned long low; member
52 centaur_mcr[mcr].low = lo; in mtrr_centaur_report_mcr()
61 *size = -(centaur_mcr[reg].low & 0xfffff000) >> PAGE_SHIFT; in centaur_get_mcr()
64 if (centaur_mcr_type == 1 && ((centaur_mcr[reg].low & 31) & 2)) in centaur_get_mcr()
66 if (centaur_mcr_type == 1 && (centaur_mcr[reg].low & 31) == 25) in centaur_get_mcr()
68 if (centaur_mcr_type == 0 && (centaur_mcr[reg].low & 31) == 31) in centaur_get_mcr()
76 unsigned long low, high; in centaur_set_mcr() local
80 high = low = 0; in centaur_set_mcr()
85 low = -size << PAGE_SHIFT | 0x1f; in centaur_set_mcr()
88 low = -size << PAGE_SHIFT | 0x02; /* NC */ in centaur_set_mcr()
[all …]
Damd.c12 unsigned long low, high; in amd_get_mtrr() local
14 rdmsr(MSR_K6_UWCCR, low, high); in amd_get_mtrr()
17 low = high; in amd_get_mtrr()
19 *base = (low & 0xFFFE0000) >> PAGE_SHIFT; in amd_get_mtrr()
21 if (low & 1) in amd_get_mtrr()
23 if (low & 2) in amd_get_mtrr()
25 if (!(low & 3)) { in amd_get_mtrr()
44 low = (~low) & 0x1FFFC; in amd_get_mtrr()
45 *size = (low + 4) << (15 - PAGE_SHIFT); in amd_get_mtrr()
/linux-4.4.14/drivers/rtc/
Drtc-max8925.c116 unsigned char high, low; in data_calc() local
122 low = (tm->tm_year + 1900) / 100; in data_calc()
123 low = low - high * 10; in data_calc()
124 buf[RTC_YEAR2] = (high << 4) + low; in data_calc()
126 low = tm->tm_year + 1900; in data_calc()
127 low = low - high * 10; in data_calc()
129 buf[RTC_YEAR1] = (high << 4) + low; in data_calc()
131 low = tm->tm_mon; in data_calc()
132 low = low - high * 10; in data_calc()
133 buf[RTC_MONTH] = (high << 4) + low; in data_calc()
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/leds/
Dleds-bcm6358.txt18 - brcm,clk-dat-low : Boolean, makes clock and data signals active low.
28 - active-low : Boolean, makes LED active low.
45 active-low;
50 active-low;
55 active-low;
60 active-low;
71 brcm,pol-low;
76 active-low;
81 active-low;
91 active-low;
[all …]
Dleds-bcm6328.txt34 - brcm,serial-clk-low : Boolean, makes clock signal active low.
36 - brcm,serial-dat-low : Boolean, makes data signal active low.
49 - active-low : Boolean, makes LED active low.
82 active-low;
87 active-low;
92 active-low;
121 brcm,serial-dat-low;
136 active-low;
141 active-low;
146 active-low;
[all …]
/linux-4.4.14/arch/arm/nwfpe/
Dfpopcode.c31 { .high = 0x0000, .low = 0x0000000000000000ULL},/* extended 0.0 */
32 { .high = 0x3fff, .low = 0x8000000000000000ULL},/* extended 1.0 */
33 { .high = 0x4000, .low = 0x8000000000000000ULL},/* extended 2.0 */
34 { .high = 0x4000, .low = 0xc000000000000000ULL},/* extended 3.0 */
35 { .high = 0x4001, .low = 0x8000000000000000ULL},/* extended 4.0 */
36 { .high = 0x4001, .low = 0xa000000000000000ULL},/* extended 5.0 */
37 { .high = 0x3ffe, .low = 0x8000000000000000ULL},/* extended 0.5 */
38 { .high = 0x4002, .low = 0xa000000000000000ULL},/* extended 10.0 */
Dsoftfloat-specialize66 bits64 high, low;
115 z.low = 0;
209 z.low = 0;
263 `high' and `low' values hold the most- and least-significant bits,
279 return ( ( a.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( a.low<<1 );
296 aLow = a.low & ~ LIT64( 0x4000000000000000 );
300 && ( a.low == aLow );
317 z.low = 0;
318 z.high = a.low<<1;
333 z.low = LIT64( 0xC000000000000000 ) | ( a.high>>1 );
[all …]
Dsoftfloat.c473 return a.low; in extractFloatx80Frac()
532 z.low = zSig; in packFloatx80()
2718 z.low += lastBitMask>>1; in floatx80_round_to_int()
2719 if ( ( z.low & roundBitsMask ) == 0 ) z.low &= ~ lastBitMask; in floatx80_round_to_int()
2723 z.low += roundBitsMask; in floatx80_round_to_int()
2726 z.low &= ~ roundBitsMask; in floatx80_round_to_int()
2727 if ( z.low == 0 ) { in floatx80_round_to_int()
2729 z.low = LIT64( 0x8000000000000000 ); in floatx80_round_to_int()
2731 if ( z.low != a.low ) roundData->exception |= float_flag_inexact; in floatx80_round_to_int()
2833 z.low = floatx80_default_nan_low; in subFloatx80Sigs()
[all …]
/linux-4.4.14/arch/powerpc/kernel/
Dtau_6xx.c33 unsigned char low; member
59 mtspr(SPRN_THRM1, THRM1_THRES(tau[cpu].low) | THRM1_V | THRM1_TIE | THRM1_TID); in set_thresholds()
67 mtspr(SPRN_THRM1, THRM1_THRES(tau[cpu].low) | THRM1_V | THRM1_TID); in set_thresholds()
84 if (tau[cpu].low >= step_size){ in TAUupdate()
85 tau[cpu].low -= step_size; in TAUupdate()
97 tau[cpu].low += (step_size - window_expand); in TAUupdate()
151 size = tau[cpu].high - tau[cpu].low; in tau_timeout()
156 tau[cpu].low += shrink; in tau_timeout()
159 tau[cpu].low += 1; in tau_timeout()
161 if ((tau[cpu].high - tau[cpu].low) != min_window){ in tau_timeout()
[all …]
Dmachine_kexec_64.c52 unsigned long low, high; /* limits of blocked memory range */ in default_machine_kexec_prepare() local
80 low = __pa(htab_address); in default_machine_kexec_prepare()
81 high = low + htab_size_bytes; in default_machine_kexec_prepare()
87 if ((begin < high) && (end > low)) in default_machine_kexec_prepare()
99 low = *basep; in default_machine_kexec_prepare()
100 high = low + (*sizep); in default_machine_kexec_prepare()
106 if ((begin < high) && (end > low)) in default_machine_kexec_prepare()
Dsys_ppc32.c95 unsigned long high, unsigned long low) in compat_sys_truncate64() argument
97 return sys_truncate(path, (high << 32) | low); in compat_sys_truncate64()
108 unsigned long low) in compat_sys_ftruncate64() argument
110 return sys_ftruncate(fd, (high << 32) | low); in compat_sys_ftruncate64()
/linux-4.4.14/arch/mn10300/kernel/
DMakefile6 fpu-obj-y := fpu-nofpu.o fpu-nofpu-low.o
7 fpu-obj-$(CONFIG_FPU) := fpu.o fpu-low.o
14 obj-$(CONFIG_SMP) += smp.o smp-low.o
16 obj-$(CONFIG_MN10300_WD_TIMER) += mn10300-watchdog.o mn10300-watchdog-low.o
18 obj-$(CONFIG_MN10300_TTYSM) += mn10300-serial.o mn10300-serial-low.o \
20 obj-$(CONFIG_GDBSTUB) += gdb-stub.o gdb-low.o
21 obj-$(CONFIG_GDBSTUB_ON_TTYSx) += gdb-io-serial.o gdb-io-serial-low.o
22 obj-$(CONFIG_GDBSTUB_ON_TTYSMx) += gdb-io-ttysm.o gdb-io-ttysm-low.o
25 obj-$(CONFIG_PROFILE) += profile.o profile-low.o
/linux-4.4.14/arch/arm/
DKconfig.debug81 bool "Kernel low-level debugging functions (read help!)"
94 prompt "Kernel low-level debugging port"
98 bool "Kernel low-level debugging messages via Alpine UART0"
102 Say Y here if you want kernel low-level debugging support
106 bool "Kernel low-level debugging via asm9260 UART"
127 bool "Kernel low-level debugging on Atmel SoCs"
145 bool "Kernel low-level debugging on BCM2835 PL011 UART"
150 bool "Kernel low-level debugging on BCM5301X UART1"
155 bool "Kernel low-level debugging messages via BCM KONA UART"
159 Say Y here if you want kernel low-level debugging support
[all …]
/linux-4.4.14/arch/s390/kernel/
Dstacktrace.c15 unsigned long low, in save_context_stack() argument
25 if (sp < low || sp > high) in save_context_stack()
36 low = sp; in save_context_stack()
40 if (sp <= low || sp > high - sizeof(*sf)) in save_context_stack()
46 if (sp <= low || sp > high - sizeof(*regs)) in save_context_stack()
58 low = sp; in save_context_stack()
87 unsigned long sp, low, high; in save_stack_trace_tsk() local
90 low = (unsigned long) task_stack_page(tsk); in save_stack_trace_tsk()
92 save_context_stack(trace, sp, low, high, 0); in save_stack_trace_tsk()
Dprocess.c53 struct stack_frame *sf, *low, *high; in thread_saved_pc() local
57 low = task_stack_page(tsk); in thread_saved_pc()
60 if (sf <= low || sf > high) in thread_saved_pc()
63 if (sf <= low || sf > high) in thread_saved_pc()
215 struct stack_frame *sf, *low, *high; in get_wchan() local
221 low = task_stack_page(p); in get_wchan()
224 if (sf <= low || sf > high) in get_wchan()
228 if (sf <= low || sf > high) in get_wchan()
Dcompat_linux.h109 long compat_sys_s390_truncate64(const char __user *path, u32 high, u32 low);
110 long compat_sys_s390_ftruncate64(unsigned int fd, u32 high, u32 low);
111 …ompat_sys_s390_pread64(unsigned int fd, char __user *ubuf, compat_size_t count, u32 high, u32 low);
112 …ys_s390_pwrite64(unsigned int fd, const char __user *ubuf, compat_size_t count, u32 high, u32 low);
113 long compat_sys_s390_readahead(int fd, u32 high, u32 low, s32 count);
122 long compat_sys_s390_fadvise64(int fd, u32 high, u32 low, compat_size_t len, int advise);
Ddumpstack.c30 __show_trace(unsigned long sp, unsigned long low, unsigned long high) in __show_trace() argument
38 if (sp < low || sp > high - sizeof(*sf)) in __show_trace()
45 low = sp; in __show_trace()
49 if (sp <= low || sp > high - sizeof(*sf)) in __show_trace()
57 if (sp <= low || sp > high - sizeof(*regs)) in __show_trace()
62 low = sp; in __show_trace()
Dcompat_linux.c302 COMPAT_SYSCALL_DEFINE3(s390_truncate64, const char __user *, path, u32, high, u32, low) in COMPAT_SYSCALL_DEFINE3() argument
304 return sys_truncate(path, (unsigned long)high << 32 | low); in COMPAT_SYSCALL_DEFINE3()
307 COMPAT_SYSCALL_DEFINE3(s390_ftruncate64, unsigned int, fd, u32, high, u32, low) in COMPAT_SYSCALL_DEFINE3() argument
309 return sys_ftruncate(fd, (unsigned long)high << 32 | low); in COMPAT_SYSCALL_DEFINE3()
313 compat_size_t, count, u32, high, u32, low) in COMPAT_SYSCALL_DEFINE5() argument
317 return sys_pread64(fd, ubuf, count, (unsigned long)high << 32 | low); in COMPAT_SYSCALL_DEFINE5()
321 compat_size_t, count, u32, high, u32, low) in COMPAT_SYSCALL_DEFINE5() argument
325 return sys_pwrite64(fd, ubuf, count, (unsigned long)high << 32 | low); in COMPAT_SYSCALL_DEFINE5()
328 COMPAT_SYSCALL_DEFINE4(s390_readahead, int, fd, u32, high, u32, low, s32, count) in COMPAT_SYSCALL_DEFINE4() argument
330 return sys_readahead(fd, (unsigned long)high << 32 | low, count); in COMPAT_SYSCALL_DEFINE4()
[all …]
Dperf_event.c228 unsigned long low, unsigned long high) in __store_trace() argument
235 if (sp < low || sp > high - sizeof(*sf)) in __store_trace()
241 low = sp; in __store_trace()
245 if (sp <= low || sp > high - sizeof(*sf)) in __store_trace()
253 if (sp <= low || sp > high - sizeof(*regs)) in __store_trace()
257 low = sp; in __store_trace()
Dsetup.c557 phys_addr_t low, high; in reserve_crashkernel() local
574 low = crash_base ?: OLDMEM_BASE; in reserve_crashkernel()
575 high = low + crash_size; in reserve_crashkernel()
576 if (low >= OLDMEM_BASE && high <= OLDMEM_BASE + OLDMEM_SIZE) { in reserve_crashkernel()
578 crash_base = low; in reserve_crashkernel()
581 low = max_t(unsigned long, crash_size, sclp.hsa_size); in reserve_crashkernel()
584 if (crash_base && crash_base < low) { in reserve_crashkernel()
589 low = crash_base ?: low; in reserve_crashkernel()
590 crash_base = memblock_find_in_range(low, high, crash_size, in reserve_crashkernel()
/linux-4.4.14/arch/arm/mach-omap2/
Dclkt2xxx_dpllcore.c79 u32 high, low, core_clk_src; in omap2_dpllcore_round_rate() local
85 low = curr_prcm_set->dpll_speed; in omap2_dpllcore_round_rate()
88 low = curr_prcm_set->dpll_speed / 2; in omap2_dpllcore_round_rate()
97 if (target_rate > low) in omap2_dpllcore_round_rate()
100 return low; in omap2_dpllcore_round_rate()
115 u32 cur_rate, low, mult, div, valid_rate, done_rate; in omap2_reprogram_dpllcore() local
133 low = curr_prcm_set->dpll_speed; in omap2_reprogram_dpllcore()
135 low = curr_prcm_set->dpll_speed / 2; in omap2_reprogram_dpllcore()
147 if (rate > low) { in omap2_reprogram_dpllcore()
/linux-4.4.14/arch/tile/kernel/
Dcompat.c36 u32, low, u32, high) in COMPAT_SYSCALL_DEFINE4() argument
38 return sys_truncate(filename, ((loff_t)high << 32) | low); in COMPAT_SYSCALL_DEFINE4()
42 u32, low, u32, high) in COMPAT_SYSCALL_DEFINE4() argument
44 return sys_ftruncate(fd, ((loff_t)high << 32) | low); in COMPAT_SYSCALL_DEFINE4()
48 size_t, count, u32, dummy, u32, low, u32, high) in COMPAT_SYSCALL_DEFINE6() argument
50 return sys_pread64(fd, ubuf, count, ((loff_t)high << 32) | low); in COMPAT_SYSCALL_DEFINE6()
54 size_t, count, u32, dummy, u32, low, u32, high) in COMPAT_SYSCALL_DEFINE6() argument
56 return sys_pwrite64(fd, ubuf, count, ((loff_t)high << 32) | low); in COMPAT_SYSCALL_DEFINE6()
Dtime.c51 unsigned int low = __insn_mfspr(SPR_CYCLE_LOW); in get_cycles() local
55 low = __insn_mfspr(SPR_CYCLE_LOW); in get_cycles()
60 return (((cycles_t)high) << 32) | low; in get_cycles()
/linux-4.4.14/include/linux/
Dmath64.h178 u32 high, low; in mul_u64_u64_shr() member
180 u32 low, high; in mul_u64_u64_shr()
189 rl.ll = (u64)a0.l.low * b0.l.low; in mul_u64_u64_shr()
190 rm.ll = (u64)a0.l.low * b0.l.high; in mul_u64_u64_shr()
191 rn.ll = (u64)a0.l.high * b0.l.low; in mul_u64_u64_shr()
199 rl.l.high = c = (u64)rl.l.high + rm.l.low + rn.l.low; in mul_u64_u64_shr()
200 rh.l.low = c = (c >> 32) + rm.l.high + rn.l.high + rh.l.low; in mul_u64_u64_shr()
224 u32 high, low; in mul_u64_u32_div() member
226 u32 low, high; in mul_u64_u32_div()
232 rl.ll = (u64)u.l.low * mul; in mul_u64_u32_div()
[all …]
Dio-64-nonatomic-hi-lo.h10 u32 low, high; in hi_lo_readq() local
13 low = readl(p); in hi_lo_readq()
15 return low + ((u64)high << 32); in hi_lo_readq()
Dio-64-nonatomic-lo-hi.h10 u32 low, high; in lo_hi_readq() local
12 low = readl(p); in lo_hi_readq()
15 return low + ((u64)high << 32); in lo_hi_readq()
/linux-4.4.14/arch/m68k/lib/
Dashldi3.c23 struct DIstruct {SItype high, low;}; member
46 w.s.low = 0; in __ashldi3()
47 w.s.high = (USItype)uu.s.low << -bm; in __ashldi3()
51 USItype carries = (USItype)uu.s.low >> bm; in __ashldi3()
52 w.s.low = (USItype)uu.s.low << b; in __ashldi3()
Dmuldi3.c62 umul_ppmm (__w.s.high, __w.s.low, u, v); \
70 struct DIstruct {SItype high, low;}; member
87 w.ll = __umulsidi3 (uu.s.low, vv.s.low); in __muldi3()
88 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high in __muldi3()
89 + (USItype) uu.s.high * (USItype) vv.s.low); in __muldi3()
Dlshrdi3.c23 struct DIstruct {SItype high, low;}; member
47 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3()
53 w.s.low = ((USItype)uu.s.low >> b) | carries; in __lshrdi3()
Dashrdi3.c23 struct DIstruct {SItype high, low;}; member
48 w.s.low = uu.s.high >> -bm; in __ashrdi3()
54 w.s.low = ((USItype)uu.s.low >> b) | carries; in __ashrdi3()
/linux-4.4.14/arch/parisc/lib/
Ducmpdi2.c7 unsigned int low; member
20 if (au.ui.low < bu.ui.low) in __ucmpdi2()
22 else if (au.ui.low > bu.ui.low) in __ucmpdi2()
/linux-4.4.14/Documentation/infiniband/
Dcore_locking.txt5 both low-level drivers that sit below the midlayer and upper level
10 With the following exceptions, a low-level driver implementation of
46 used by low-level drivers to dispatch asynchronous events through
51 All of the methods in struct ib_device exported by a low-level
52 driver must be fully reentrant. The low-level driver is required to
59 Because low-level drivers are reentrant, upper level protocol
68 A low-level driver must not perform a callback directly from the
70 allowed for a low-level driver to call a consumer's completion event
71 handler directly from its post_send method. Instead, the low-level
75 The low-level driver is responsible for ensuring that multiple
[all …]
/linux-4.4.14/arch/s390/include/asm/
Dctl_reg.h12 #define __ctl_load(array, low, high) { \ argument
15 BUILD_BUG_ON(sizeof(addrtype) != (high - low + 1) * sizeof(long));\
18 : : "Q" (*(addrtype *)(&array)), "i" (low), "i" (high));\
21 #define __ctl_store(array, low, high) { \ argument
24 BUILD_BUG_ON(sizeof(addrtype) != (high - low + 1) * sizeof(long));\
28 : "i" (low), "i" (high)); \
/linux-4.4.14/arch/avr32/kernel/
Dstacktrace.c27 unsigned long low, high; in save_stack_trace() local
32 low = (unsigned long)task_stack_page(current); in save_stack_trace()
33 high = low + THREAD_SIZE; in save_stack_trace()
36 while (fp >= low && fp <= (high - 8)) { in save_stack_trace()
51 low = fp + 8; in save_stack_trace()
/linux-4.4.14/arch/microblaze/lib/
Dashldi3.c17 w.s.low = 0; in __ashldi3()
18 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
20 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
22 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3()
Ducmpdi2.c14 if ((unsigned int) au.s.low < (unsigned int) bu.s.low) in __ucmpdi2()
16 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low) in __ucmpdi2()
Dcmpdi2.c19 if ((unsigned int) au.s.low < (unsigned int) bu.s.low) in __cmpdi2()
21 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low) in __cmpdi2()
Dmuldi3.c41 umul_ppmm(__w.s.high, __w.s.low, u, v); \
50 DWunion w = {.ll = __umulsidi3(uu.s.low, vv.s.low)}; in __muldi3()
52 w.s.high += ((unsigned long) uu.s.low * (unsigned long) vv.s.high in __muldi3()
53 + (unsigned long) uu.s.high * (unsigned long) vv.s.low); in __muldi3()
Dlshrdi3.c18 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
Dashrdi3.c20 w.s.low = uu.s.high >> -bm; in __ashrdi3()
25 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
Dlibgcc.h10 int high, low; member
14 int low, high; member
/linux-4.4.14/arch/hexagon/kernel/
Dstacktrace.c38 unsigned long low, high; in save_stack_trace() local
43 low = (unsigned long)task_stack_page(current); in save_stack_trace()
44 high = low + THREAD_SIZE; in save_stack_trace()
47 while (fp >= low && fp <= (high - sizeof(*frame))) { in save_stack_trace()
62 low = fp + sizeof(*frame); in save_stack_trace()
Dtraps.c99 unsigned long low, high; in do_show_stack() local
131 low = (unsigned long)task_stack_page(task); in do_show_stack()
132 high = low + THREAD_SIZE - 8; in do_show_stack()
133 low += sizeof(struct thread_info); in do_show_stack()
141 if (((unsigned long) fp < low) || (high < (unsigned long) fp)) in do_show_stack()
/linux-4.4.14/arch/score/lib/
Dashldi3.c35 w.s.low = 0; in __ashldi3()
36 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
38 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
40 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3()
Ducmpdi2.c32 if ((unsigned int) au.s.low < (unsigned int) bu.s.low) in __ucmpdi2()
34 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low) in __ucmpdi2()
Dcmpdi2.c37 if ((unsigned int) au.s.low < (unsigned int) bu.s.low) in __cmpdi2()
39 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low) in __cmpdi2()
Dlshrdi3.c37 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
42 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
Dashrdi3.c38 w.s.low = uu.s.high >> -bm; in __ashrdi3()
43 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
/linux-4.4.14/arch/blackfin/kernel/
Dstacktrace.c25 unsigned long low, high; in save_stack_trace() local
30 low = (unsigned long)task_stack_page(current); in save_stack_trace()
31 high = low + THREAD_SIZE; in save_stack_trace()
34 while (fp >= low && fp <= (high - sizeof(*frame))) { in save_stack_trace()
49 low = fp + sizeof(*frame); in save_stack_trace()
/linux-4.4.14/arch/sh/lib/
Dashldi3.c17 w.s.low = 0; in __ashldi3()
18 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
20 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
22 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3()
Dlshrdi3.c18 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
Dashrdi3.c20 w.s.low = uu.s.high >> -bm; in __ashrdi3()
25 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
Dlibgcc.h10 int high, low; member
14 int low, high; member
/linux-4.4.14/arch/mips/lib/
Dashldi3.c17 w.s.low = 0; in __ashldi3()
18 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
20 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
22 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3()
Dcmpdi2.c19 if ((unsigned int) au.s.low < (unsigned int) bu.s.low) in __cmpdi2()
21 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low) in __cmpdi2()
Ducmpdi2.c14 if ((unsigned int) au.s.low < (unsigned int) bu.s.low) in __ucmpdi2()
16 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low) in __ucmpdi2()
Dlshrdi3.c18 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
Dashrdi3.c20 w.s.low = uu.s.high >> -bm; in __ashrdi3()
25 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
Dlibgcc.h10 int high, low; member
14 int low, high; member
/linux-4.4.14/arch/s390/oprofile/
Dbacktrace.c13 unsigned long low, unsigned long high) in __show_trace() argument
20 if (sp < low || sp > high - sizeof(*sf)) in __show_trace()
28 low = sp; in __show_trace()
32 if (sp <= low || sp > high - sizeof(*sf)) in __show_trace()
45 if (sp <= low || sp > high - sizeof(*regs)) in __show_trace()
50 low = sp; in __show_trace()
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/
Dste,abx500.txt40 output-low;
52 output-low;
76 output-low;
88 output-low;
100 output-low;
117 output-low;
129 output-low;
145 output-low;
162 output-low;
178 output-low;
[all …]
/linux-4.4.14/arch/h8300/lib/
Dashldi3.c14 w.s.low = 0; in __ashldi3()
15 w.s.high = (UWtype) uu.s.low << -bm; in __ashldi3()
17 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3()
19 w.s.low = (UWtype) uu.s.low << b; in __ashldi3()
Ducmpdi2.c12 if ((UWtype) au.s.low < (UWtype) bu.s.low) in __ucmpdi2()
14 else if ((UWtype) au.s.low > (UWtype) bu.s.low) in __ucmpdi2()
Dmuldi3.c30 umul_ppmm(__w.s.high, __w.s.low, u, v); \
38 DWunion w = {.ll = __umulsidi3(uu.s.low, vv.s.low)}; in __muldi3()
40 w.s.high += ((UWtype) uu.s.low * (UWtype) vv.s.high in __muldi3()
41 + (UWtype) uu.s.high * (UWtype) vv.s.low); in __muldi3()
Dlshrdi3.c14 w.s.low = (UWtype) uu.s.high >> -bm; in __lshrdi3()
19 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __lshrdi3()
Dashrdi3.c15 w.s.low = uu.s.high >> -bm; in __ashrdi3()
20 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __ashrdi3()
/linux-4.4.14/arch/m32r/mm/
Dinit.c63 unsigned long low; in zone_sizes_init() local
69 low = MAX_LOW_PFN(0); in zone_sizes_init()
71 if (low < max_dma){ in zone_sizes_init()
72 zones_size[ZONE_DMA] = low - start_pfn; in zone_sizes_init()
75 zones_size[ZONE_DMA] = low - start_pfn; in zone_sizes_init()
76 zones_size[ZONE_NORMAL] = low - max_dma; in zone_sizes_init()
Dmmu.S54 or3 r2, r2, #low(tlb_entry_d_dat)
58 or3 r2, r2, #low(tlb_entry_d_dat)
65 or3 r1, r1, #low(DTLB_BASE)
87 or3 r2, r2, #low(tlb_entry_i_dat)
91 or3 r2, r2, #low(tlb_entry_i_dat)
98 or3 r1, r1, #low(ITLB_BASE)
232 ld r4, @(low(tlb_entry_i_dat),r3)
235 or3 r1, r1, #low(ITLB_BASE)
239 st r4, @(low(tlb_entry_i_dat),r3)
246 ld r4, @(low(tlb_entry_d_dat),r3)
[all …]
Ddiscontig.c135 unsigned long low, start_pfn; in zone_sizes_init() local
146 low = MAX_LOW_PFN(nid); in zone_sizes_init()
147 zones_size[ZONE_DMA] = low - start_pfn; in zone_sizes_init()
/linux-4.4.14/arch/parisc/kernel/
Dsys_parisc.c290 unsigned int high, unsigned int low) in parisc_truncate64() argument
292 return sys_truncate(path, (long)high << 32 | low); in parisc_truncate64()
296 unsigned int high, unsigned int low) in parisc_ftruncate64() argument
298 return sys_ftruncate(fd, (long)high << 32 | low); in parisc_ftruncate64()
318 unsigned int high, unsigned int low) in parisc_truncate64() argument
320 return sys_truncate64(path, (loff_t)high << 32 | low); in parisc_truncate64()
324 unsigned int high, unsigned int low) in parisc_ftruncate64() argument
326 return sys_ftruncate64(fd, (loff_t)high << 32 | low); in parisc_ftruncate64()
331 unsigned int high, unsigned int low) in parisc_pread64() argument
333 return sys_pread64(fd, buf, count, (loff_t)high << 32 | low); in parisc_pread64()
[all …]
/linux-4.4.14/arch/x86/oprofile/
Dop_model_p4.c573 unsigned int low, high; in p4_setup_ctrs() local
578 rdmsr(MSR_IA32_MISC_ENABLE, low, high); in p4_setup_ctrs()
579 if (!MISC_PMC_ENABLED_P(low)) { in p4_setup_ctrs()
588 rdmsr(p4_counters[VIRT_CTR(stag, i)].cccr_address, low, high); in p4_setup_ctrs()
589 CCCR_CLEAR(low); in p4_setup_ctrs()
590 CCCR_SET_REQUIRED_BITS(low); in p4_setup_ctrs()
591 wrmsr(p4_counters[VIRT_CTR(stag, i)].cccr_address, low, high); in p4_setup_ctrs()
618 unsigned long ctr, low, high, stag, real; in p4_check_ctrs() local
647 rdmsr(p4_counters[real].cccr_address, low, high); in p4_check_ctrs()
649 if (CCCR_OVF_P(low) || !(ctr & OP_CTR_OVERFLOW)) { in p4_check_ctrs()
[all …]
/linux-4.4.14/arch/blackfin/lib/
Dashldi3.c26 w.s.low = 0; in __ashldi3()
27 w.s.high = (USItype) uu.s.low << -bm; in __ashldi3()
29 USItype carries = (USItype) uu.s.low >> bm; in __ashldi3()
30 w.s.low = (USItype) uu.s.low << b; in __ashldi3()
Dlshrdi3.c27 w.s.low = (USItype) uu.s.high >> -bm; in __lshrdi3()
31 w.s.low = ((USItype) uu.s.low >> b) | carries; in __lshrdi3()
Dashrdi3.c28 w.s.low = uu.s.high >> -bm; in __ashrdi3()
32 w.s.low = ((USItype) uu.s.low >> b) | carries; in __ashrdi3()
/linux-4.4.14/arch/mn10300/lib/
Dnegdi2.c41 s32 low; member
53 w.s.low = -uu.s.low; in __negdi2()
54 w.s.high = -uu.s.high - ((u32) w.s.low > 0); in __negdi2()
Dlshrdi3.c29 SItype low; member
52 w.s.low = (USItype) uu.s.high >> -bm; in __lshrdi3()
56 w.s.low = ((USItype) uu.s.low >> b) | carries; in __lshrdi3()
Dashrdi3.c29 SItype low; member
53 w.s.low = uu.s.high >> -bm; in __ashrdi3()
57 w.s.low = ((USItype)uu.s.low >> b) | carries; in __ashrdi3()
/linux-4.4.14/arch/sparc/lib/
Dcmpdi2.c19 if ((unsigned int) au.s.low < (unsigned int) bu.s.low) in __cmpdi2()
21 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low) in __cmpdi2()
Ducmpdi2.c13 if ((unsigned int) au.s.low < (unsigned int) bu.s.low) in __ucmpdi2()
15 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low) in __ucmpdi2()
/linux-4.4.14/drivers/net/wireless/iwlegacy/
D3945-rs.c547 u8 low = RATE_INVALID; in il3945_get_adjacent_rate() local
560 low = i; in il3945_get_adjacent_rate()
574 return (high << 8) | low; in il3945_get_adjacent_rate()
577 low = idx; in il3945_get_adjacent_rate()
578 while (low != RATE_INVALID) { in il3945_get_adjacent_rate()
580 low = il3945_rates[low].prev_rs_tgg; in il3945_get_adjacent_rate()
582 low = il3945_rates[low].prev_rs; in il3945_get_adjacent_rate()
583 if (low == RATE_INVALID) in il3945_get_adjacent_rate()
585 if (rate_mask & (1 << low)) in il3945_get_adjacent_rate()
587 D_RATE("Skipping masked lower rate: %d\n", low); in il3945_get_adjacent_rate()
[all …]
D4965-rs.c676 u8 low = RATE_INVALID; in il4965_rs_get_adjacent_rate() local
688 low = i; in il4965_rs_get_adjacent_rate()
702 return (high << 8) | low; in il4965_rs_get_adjacent_rate()
705 low = idx; in il4965_rs_get_adjacent_rate()
706 while (low != RATE_INVALID) { in il4965_rs_get_adjacent_rate()
707 low = il_rates[low].prev_rs; in il4965_rs_get_adjacent_rate()
708 if (low == RATE_INVALID) in il4965_rs_get_adjacent_rate()
710 if (rate_mask & (1 << low)) in il4965_rs_get_adjacent_rate()
712 D_RATE("Skipping masked lower rate: %d\n", low); in il4965_rs_get_adjacent_rate()
725 return (high << 8) | low; in il4965_rs_get_adjacent_rate()
[all …]
/linux-4.4.14/arch/m32r/boot/compressed/
Dhead.S40 or3 r3, r3, #low(_GLOBAL_OFFSET_TABLE_+12)
44 ldi r1, #low(got_len)
64 or3 r2, r2, #low(__bss_start)
67 or3 r3, r3, #low(_ebss)
97 or3 r2, r2, #low(__bss_start)
100 or3 r3, r3, #low(_ebss)
117 or3 r1, r1, #low(end)
127 or3 r1, r1, #low(zimage_data)
130 or3 r2, r2, #low(zimage_len)
/linux-4.4.14/kernel/
Dkallsyms.c220 unsigned long i, low, high, mid; in get_symbol_pos() local
226 low = 0; in get_symbol_pos()
229 while (high - low > 1) { in get_symbol_pos()
230 mid = low + (high - low) / 2; in get_symbol_pos()
232 low = mid; in get_symbol_pos()
241 while (low && kallsyms_addresses[low-1] == kallsyms_addresses[low]) in get_symbol_pos()
242 --low; in get_symbol_pos()
244 symbol_start = kallsyms_addresses[low]; in get_symbol_pos()
247 for (i = low + 1; i < kallsyms_num_syms; i++) { in get_symbol_pos()
269 return low; in get_symbol_pos()
/linux-4.4.14/Documentation/devicetree/bindings/net/
Dmdio-mux-gpio.txt47 interrupts = <10 8>; /* Pin 10, active low */
57 interrupts = <10 8>; /* Pin 10, active low */
67 interrupts = <10 8>; /* Pin 10, active low */
77 interrupts = <10 8>; /* Pin 10, active low */
94 interrupts = <12 8>; /* Pin 12, active low */
104 interrupts = <12 8>; /* Pin 12, active low */
114 interrupts = <12 8>; /* Pin 12, active low */
124 interrupts = <12 8>; /* Pin 12, active low */
Dmdio-mux.txt56 interrupts = <10 8>; /* Pin 10, active low */
66 interrupts = <10 8>; /* Pin 10, active low */
76 interrupts = <10 8>; /* Pin 10, active low */
86 interrupts = <10 8>; /* Pin 10, active low */
103 interrupts = <12 8>; /* Pin 12, active low */
113 interrupts = <12 8>; /* Pin 12, active low */
123 interrupts = <12 8>; /* Pin 12, active low */
133 interrupts = <12 8>; /* Pin 12, active low */
Dsh_eth.txt31 - renesas,ether-link-active-low: boolean, specify when the Ether LINK signal is
32 active-low instead of normal active-high.
46 renesas,ether-link-active-low;
/linux-4.4.14/lib/zlib_inflate/
Dinftrees.c37 unsigned low; /* low bits for current root entry */ in zlib_inflate_table() local
193 low = (unsigned)(-1); /* trigger new sub-table when len > root */ in zlib_inflate_table()
246 if (len > root && (huff & mask) != low) { in zlib_inflate_table()
270 low = huff & mask; in zlib_inflate_table()
271 (*table)[low].op = (unsigned char)curr; in zlib_inflate_table()
272 (*table)[low].bits = (unsigned char)root; in zlib_inflate_table()
273 (*table)[low].val = (unsigned short)(next - *table); in zlib_inflate_table()
289 if (drop != 0 && (huff & mask) != low) { in zlib_inflate_table()
/linux-4.4.14/drivers/gpu/drm/radeon/
Dbtc_dpm.c1798 if (state->low.mclk != ulv_pl->mclk) in btc_is_state_ulv_compatible()
1801 if (state->low.vddci != ulv_pl->vddci) in btc_is_state_ulv_compatible()
2134 if (ps->low.mclk > max_limits->mclk) in btc_apply_state_adjust_rules()
2135 ps->low.mclk = max_limits->mclk; in btc_apply_state_adjust_rules()
2136 if (ps->low.sclk > max_limits->sclk) in btc_apply_state_adjust_rules()
2137 ps->low.sclk = max_limits->sclk; in btc_apply_state_adjust_rules()
2138 if (ps->low.vddc > max_limits->vddc) in btc_apply_state_adjust_rules()
2139 ps->low.vddc = max_limits->vddc; in btc_apply_state_adjust_rules()
2140 if (ps->low.vddci > max_limits->vddci) in btc_apply_state_adjust_rules()
2141 ps->low.vddci = max_limits->vddci; in btc_apply_state_adjust_rules()
[all …]
Drv6xx_dpm.c241 u32 low, u32 high, in rv6xx_generate_steps() argument
249 rv6xx_convert_clock_to_stepping(rdev, low, &cur); in rv6xx_generate_steps()
440 state->low.sclk; in rv6xx_calculate_engine_speed_stepping_parameters()
463 state->low.mclk; in rv6xx_calculate_memory_clock_stepping_parameters()
474 if (state->medium.mclk == state->low.mclk) in rv6xx_calculate_memory_clock_stepping_parameters()
489 pi->hw.vddc[R600_POWER_LEVEL_LOW] = state->low.vddc; in rv6xx_calculate_voltage_stepping_parameters()
498 (state->low.flags & ATOM_PPLIB_R600_FLAGS_BACKBIASENABLE) ? true : false; in rv6xx_calculate_voltage_stepping_parameters()
505 (state->low.flags & ATOM_PPLIB_R600_FLAGS_PCIEGEN2) ? true : false; in rv6xx_calculate_voltage_stepping_parameters()
517 if ((state->medium.vddc == state->low.vddc) && in rv6xx_calculate_voltage_stepping_parameters()
519 (state->low.flags & ATOM_PPLIB_R600_FLAGS_BACKBIASENABLE))) in rv6xx_calculate_voltage_stepping_parameters()
[all …]
Dradeon_asic.h430 u32 rv6xx_dpm_get_sclk(struct radeon_device *rdev, bool low);
431 u32 rv6xx_dpm_get_mclk(struct radeon_device *rdev, bool low);
448 u32 rs780_dpm_get_sclk(struct radeon_device *rdev, bool low);
449 u32 rs780_dpm_get_mclk(struct radeon_device *rdev, bool low);
488 u32 rv770_dpm_get_sclk(struct radeon_device *rdev, bool low);
489 u32 rv770_dpm_get_mclk(struct radeon_device *rdev, bool low);
571 u32 btc_dpm_get_sclk(struct radeon_device *rdev, bool low);
572 u32 btc_dpm_get_mclk(struct radeon_device *rdev, bool low);
588 u32 sumo_dpm_get_sclk(struct radeon_device *rdev, bool low);
589 u32 sumo_dpm_get_mclk(struct radeon_device *rdev, bool low);
[all …]
Drv730_dpm.c343 cpu_to_be32(initial_state->low.mclk); in rv730_populate_smc_initial_state()
357 cpu_to_be32(initial_state->low.sclk); in rv730_populate_smc_initial_state()
362 rv770_get_seq_value(rdev, &initial_state->low); in rv730_populate_smc_initial_state()
365 initial_state->low.vddc, in rv730_populate_smc_initial_state()
380 if (initial_state->low.flags & ATOM_PPLIB_R600_FLAGS_PCIEGEN2) in rv730_populate_smc_initial_state()
406 (POWERMODE1(rv770_calculate_memory_refresh_rate(rdev, state->low.sclk)) | in rv730_program_memory_timing_parameters()
436 state->low.sclk, in rv730_program_memory_timing_parameters()
437 state->low.mclk); in rv730_program_memory_timing_parameters()
Drv770_dpm.c273 (int)state->low.sclk * (R600_AH_DFLT - pi->rlp); in rv770_populate_smc_t()
274 a_d = (int)state->low.sclk * (100 - (int)pi->rlp) + in rv770_populate_smc_t()
685 &state->low, in rv770_convert_power_state_to_smc()
710 &state->low); in rv770_convert_power_state_to_smc()
748 if (state->high.sclk < (state->low.sclk * 0xFF / 0x40)) in rv770_program_memory_timing_parameters()
751 high_clock = (state->low.sclk * 0xFF / 0x40); in rv770_program_memory_timing_parameters()
758 STATE1(64 * high_clock / state->low.sclk) | in rv770_program_memory_timing_parameters()
765 POWERMODE1(rv770_calculate_memory_refresh_rate(rdev, state->low.sclk)) | in rv770_program_memory_timing_parameters()
1050 cpu_to_be32(initial_state->low.mclk); in rv770_populate_smc_initial_state()
1064 cpu_to_be32(initial_state->low.sclk); in rv770_populate_smc_initial_state()
[all …]
/linux-4.4.14/Documentation/hwmon/
Dadm924074 with resolution of 0.5 degrees Celsius. High and low temperature limits
90 - low speed alarm is disabled
94 * User sets fan_min limit too low
95 - low speed alarm is enabled
99 - low speed alarm will be asserted if fan speed is
104 - low speed alarm is enabled
108 * User sets unreasonably high low fan speed limit
109 - resolution of the low speed limit may be reduced
156 a 20 ms active low pulse to reset an external Chassis Intrusion latch.
164 0 +2.5 V_Error high or low limit exceeded
[all …]
Dmax2075149 in1_min_alarm Input voltage low alarm.
50 in1_lcrit_alarm Input voltage critical low alarm.
51 in1_min_alarm Input voltage low alarm.
60 in2_min_alarm Output voltage low alarm.
61 in2_lcrit_alarm Output voltage critical low alarm.
62 in2_min_alarm Output voltage low alarm.
Dzl6100119 in1_min_alarm Input voltage low alarm.
121 in1_lcrit_alarm Input voltage critical low alarm.
130 in2_lcrit_alarm VMON/VDRV voltage critical low alarm.
140 inX_lcrit_alarm Critical output voltage critical low alarm.
149 curr1_lcrit_alarm Output current critical low alarm.
155 temp[12]_lcrit Critical low temperature.
157 temp[12]_min_alarm Chip temperature low alarm.
159 temp[12]_lcrit_alarm Chip temperature critical low alarm.
Dlm2506673 in1_lcrit Critical low input voltage (LM25063 only).
74 in1_min_alarm Input voltage low alarm.
76 in1_lcrit_alarm Input voltage critical low alarm (LM25063 only).
83 in2_min_alarm VAUX voltage low alarm (LM25056 only).
91 in3_min_alarm Output voltage low alarm.
Dltc2978107 in1_min_alarm Input voltage low alarm.
111 in1_lcrit_alarm Input voltage critical low alarm.
133 in[N]_min_alarm Output voltage low alarm.
135 in[N]_lcrit_alarm Output voltage critical low alarm.
156 temp[N]_lcrit Critical low temperature.
158 temp[N]_min_alarm Temperature low alarm.
162 temp[N]_lcrit_alarm Temperature critical low alarm.
204 curr[N]_lcrit Critical low output current. LTC2974 and LTC2975 only.
207 curr[N]_lcrit_alarm Output current critical low alarm.
Dds62019 high and low temperature limits which can be user defined (i.e. programmed
26 PO is always low. If .pomode == 1, the thermostat is in PO_LOW mode. I.e., the
34 The PO output pin of the DS620 operates active-low.
Dpmbus50 Each monitored channel has its own high and low limits, plus a critical
160 inX_min_alarm Voltage low alarm. From VOLTAGE_UV_WARNING status.
162 inX_lcrit_alarm Voltage critical low alarm.
179 currX_lcrit_alarm Output current critical low alarm.
201 tempX_lcrit Critical low temperature.
205 tempX_min_alarm Chip temperature low alarm. Set by comparing
211 tempX_lcrit_alarm Chip temperature critical low alarm. Set by comparing
Dvt121199 Each measured voltage has an associated low and high limit which triggers an
167 Each PWM has 4 associated distinct output duty-cycles: full, high, low and
169 respectively. High and low can be programmed via
183 pwm[1-2]_auto_point2_pwm low speed duty-cycle
190 pwm[1-2]_auto_point2_temp low speed temp
203 low speed duty-cycle high speed duty-cycle
204 low speed temp
205 off duty-cycle low speed duty-cycle
Dds162140 Output's polarity: 0 = active high, 1 = active low
46 both high and low temperature limits which can be user defined (i.e.
54 Tout, will trigger when the low limit temperature is met or underrun and
56 ("cooler"), vice versa. That way "heater" equals "active low", whereas
63 readings. Be sure to have a high vs. low temperature limit gap of al least
66 The alarm bits are set when the high or low limits are met or exceeded and
Ddme1737168 duty-cycles: full, low, and min. Full is internally hard-wired to 255 (100%)
169 and low and min can be programmed via pwm[1-3]_auto_point1_pwm and
175 pwm[1-3]_auto_point1_pwm low-speed duty-cycle
180 zone[1-3]_auto_point1_temp low-speed temp
188 fan either turns completely off or keeps spinning with the low-speed
202 low-speed low-speed low-speed
203 min-speed low-speed
254 the low-speed temp, auto_point2 is the
306 low-speed duty-cycle.
/linux-4.4.14/tools/perf/arch/x86/tests/
Drdpmc.c14 unsigned int low, high; in rdpmc() local
16 asm volatile("rdpmc" : "=a" (low), "=d" (high) : "c" (counter)); in rdpmc()
18 return low | ((u64)high) << 32; in rdpmc()
23 unsigned int low, high; in rdtsc() local
25 asm volatile("rdtsc" : "=a" (low), "=d" (high)); in rdtsc()
27 return low | ((u64)high) << 32; in rdtsc()
/linux-4.4.14/arch/x86/kernel/cpu/mcheck/
Dmce_amd.c228 u32 low = 0, high = 0; in deferred_error_interrupt_enable() local
231 if (rdmsr_safe(MSR_CU_DEF_ERR, &low, &high)) in deferred_error_interrupt_enable()
234 def_new = (low & MASK_DEF_LVTOFF) >> 4; in deferred_error_interrupt_enable()
235 if (!(low & MASK_DEF_LVTOFF)) { in deferred_error_interrupt_enable()
238 low = (low & ~MASK_DEF_LVTOFF) | (DEF_LVT_OFF << 4); in deferred_error_interrupt_enable()
246 low = (low & ~MASK_DEF_INT_TYPE) | DEF_INT_TYPE_APIC; in deferred_error_interrupt_enable()
247 wrmsr(MSR_CU_DEF_ERR, low, high); in deferred_error_interrupt_enable()
255 u32 low = 0, high = 0, address = 0; in mce_amd_feature_init() local
264 address = (low & MASK_BLKPTR_LO) >> 21; in mce_amd_feature_init()
272 if (rdmsr_safe(address, &low, &high)) in mce_amd_feature_init()
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/gpio/
Dfsl-imx-gpio.txt8 by low 16 pins and the second one is for high 16 pins.
13 1 = active low
17 1 = low-to-high edge triggered.
18 2 = high-to-low edge triggered.
20 8 = active low level-sensitive.
Dgpio-vf610.txt16 1 = active low
20 1 = low-to-high edge triggered.
21 2 = high-to-low edge triggered.
23 8 = active low level-sensitive.
Dgpio-nmk.txt11 1 = low-to-high edge triggered.
12 2 = high-to-low edge triggered.
14 8 = active low level-sensitive.
Dbrcm,kona-gpio.txt29 1 = low-to-high edge triggered.
30 2 = high-to-low edge triggered.
31 3 = low-to-high or high-to-low edge triggered
Dgpio-zynq.txt18 1 = low-to-high edge triggered.
19 2 = high-to-low edge triggered.
21 8 = active low level-sensitive.
Dnvidia,tegra20-gpio.txt17 1 = low-to-high edge triggered.
18 2 = high-to-low edge triggered.
20 8 = active low level-sensitive.
Dgpio-mxs.txt18 1 = active low
22 1 = low-to-high edge triggered.
23 2 = high-to-low edge triggered.
25 8 = active low level-sensitive.
Dgpio-omap.txt17 1 = low-to-high edge triggered.
18 2 = high-to-low edge triggered.
20 8 = active low level-sensitive.
Dgpio-xlp.txt25 1 = low to high edge triggered.
26 2 = high to low edge triggered.
28 8 = active low level-sensitive.
Dbrcm,brcmstb-gpio.txt19 bit[0]: polarity (0 for active-high, 1 for active-low)
47 1 = low-to-high edge triggered
48 2 = high-to-low edge triggered
50 8 = active low level-sensitive
Dgpio-mvebu.txt29 1 = low-to-high edge triggered.
30 2 = high-to-low edge triggered.
32 8 = active low level-sensitive.
Dgpio_lpc32xx.txt33 gpios = <&gpio 5 1 1>; /* GPO_P3 1, active low */
39 gpios = <&gpio 5 14 1>; /* GPO_P3 14, active low */
Dgpio-pcf857x.txt4 driven high by a pull-up current source or driven low to ground. This combines
7 (a) as output and driving the signal low/high, or (b) as input and reporting a
8 low/high value, without knowing the last value written since the chip came out
42 initialized the low-level output state. If the property is not specified
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-bus-iio-adc-hi843516 Channel Y low voltage threshold. If sensor input voltage goes lower then
18 Depending on in_voltageY_sensing_mode the low voltage threshold
20 Channels 0..31 have common low threshold values, but could have different
22 The low voltage threshold range is between 2..21V.
23 Hysteresis between low and high thresholds can not be lower then 2 and
40 Hysteresis between low and high thresholds can not be lower then 2 and
/linux-4.4.14/arch/avr32/mm/
Dinit.c78 unsigned long low, start_pfn; in paging_init() local
81 low = pgdat->bdata->node_low_pfn; in paging_init()
84 zones_size[ZONE_NORMAL] = low - start_pfn; in paging_init()
87 nid, start_pfn, low); in paging_init()
/linux-4.4.14/arch/x86/kernel/
Dkvmclock.c56 int low, high; in kvm_get_wallclock() local
59 low = (int)__pa_symbol(&wall_clock); in kvm_get_wallclock()
62 native_write_msr(msr_kvm_wall_clock, low, high); in kvm_get_wallclock()
183 int low, high, ret; in kvm_register_clock() local
190 low = (int)slow_virt_to_phys(src) | 1; in kvm_register_clock()
192 ret = native_write_msr_safe(msr_kvm_system_time, low, high); in kvm_register_clock()
194 cpu, high, low, txt); in kvm_register_clock()
Dresource.c7 resource_size_t low = 0, high = 0; in resource_clip() local
13 low = start - res->start; in resource_clip()
19 if (low > high) in resource_clip()
/linux-4.4.14/net/dccp/ccids/lib/
Dtfrc_equation.c597 u32 try, low = 0, high = TFRC_CALC_X_ARRSIZE - 1; in tfrc_binsearch() local
599 while (low < high) { in tfrc_binsearch()
600 try = (low + high) / 2; in tfrc_binsearch()
604 low = try + 1; in tfrc_binsearch()
/linux-4.4.14/tools/perf/arch/x86/util/
Dtsc.c43 unsigned int low, high; in rdtsc() local
45 asm volatile("rdtsc" : "=a" (low), "=d" (high)); in rdtsc()
47 return low | ((u64)high) << 32; in rdtsc()
/linux-4.4.14/arch/arm64/boot/dts/qcom/
Dapq8016-sbc-pmic-pins.dtsi9 output-low;
26 output-low;
37 output-low;
/linux-4.4.14/Documentation/devicetree/bindings/power_supply/
Dtps65090.txt7 -ti,enable-low-current-chrg: Enables charging when a low current is detected
16 ti,enable-low-current-chrg;
/linux-4.4.14/drivers/cpufreq/
Dspeedstep-smi.c100 static int speedstep_smi_get_freqs(unsigned int *low, unsigned int *high) in speedstep_smi_get_freqs() argument
138 *low = low_mhz * 1000; in speedstep_smi_get_freqs()
233 unsigned int *low, *high; in speedstep_cpu_init() local
246 low = &speedstep_freqs[SPEEDSTEP_LOW].frequency; in speedstep_cpu_init()
249 result = speedstep_smi_get_freqs(low, high); in speedstep_cpu_init()
256 low, high, in speedstep_cpu_init()
/linux-4.4.14/arch/arm64/kernel/
Dstacktrace.c40 unsigned long high, low; in unwind_frame() local
43 low = frame->sp; in unwind_frame()
44 high = ALIGN(low, THREAD_SIZE); in unwind_frame()
46 if (fp < low || fp > high - 0x18 || fp & 0xf) in unwind_frame()
/linux-4.4.14/drivers/thermal/
Drockchip_thermal.c251 int high, low, mid; in rk_tsadcv2_temp_to_code() local
253 low = 0; in rk_tsadcv2_temp_to_code()
255 mid = (high + low) / 2; in rk_tsadcv2_temp_to_code()
257 if (temp < table.id[low].temp || temp > table.id[high].temp) in rk_tsadcv2_temp_to_code()
260 while (low <= high) { in rk_tsadcv2_temp_to_code()
266 low = mid + 1; in rk_tsadcv2_temp_to_code()
267 mid = (low + high) / 2; in rk_tsadcv2_temp_to_code()
276 unsigned int low = 1; in rk_tsadcv2_code_to_temp() local
278 unsigned int mid = (low + high) / 2; in rk_tsadcv2_code_to_temp()
290 while (low <= high) { in rk_tsadcv2_code_to_temp()
[all …]
/linux-4.4.14/arch/unicore32/kernel/
Dstacktrace.c37 unsigned long high, low; in unwind_frame() local
41 low = frame->sp; in unwind_frame()
42 high = ALIGN(low, THREAD_SIZE); in unwind_frame()
45 if (fp < (low + 12) || fp + 4 >= high) in unwind_frame()
/linux-4.4.14/drivers/net/irda/
Dvia-ircc.h283 __u16 low, high; in SetMaxRxPacketSize() local
285 low = size & 0x00ff; in SetMaxRxPacketSize()
287 WriteReg(iobase, I_CF_L_2, low); in SetMaxRxPacketSize()
417 __u32 low, high; in SetSendByte() local
420 low = count & 0x00ff; in SetSendByte()
422 WriteReg(iobase, TX_C_L, low); in SetSendByte()
437 __u8 low, high; in CkRxRecv() local
440 low = ReadReg(iobase, RX_C_L); in CkRxRecv()
443 wTmp = (wTmp1 << 8) | low; in CkRxRecv()
445 low = ReadReg(iobase, RX_C_L); in CkRxRecv()
[all …]
/linux-4.4.14/Documentation/power/
Dstates.txt6 of them depend on the platform support code to implement the low-level details
33 space and putting all I/O devices into low-power states (possibly
47 providing a relatively low-latency transition back to a working system. No
51 In addition to freezing user space and putting all I/O devices into low-power
53 and all low-level system functions are suspended during transitions into this
64 system is put into a low-power state, except for memory, which should be placed
70 powering down some more low-level components that aren't directly controlled by
74 and put into low-power states. In many cases, all peripheral buses lose power
87 the absence of low-level platform support for power management. This
106 low-power state (like ACPI S4), or it may simply power down. Powering
[all …]
/linux-4.4.14/arch/mips/include/asm/netlogic/xlr/
Dpic.h269 uint32_t up1, up2, low; in nlm_pic_read_timer() local
272 low = nlm_read_reg(base, PIC_TIMER_COUNT_0(timer)); in nlm_pic_read_timer()
276 low = nlm_read_reg(base, PIC_TIMER_COUNT_0(timer)); in nlm_pic_read_timer()
277 return ((uint64_t)up2 << 32) | low; in nlm_pic_read_timer()
290 uint32_t up, low; in nlm_pic_set_timer() local
296 low = value & 0xFFFFFFFF; in nlm_pic_set_timer()
297 nlm_write_reg(base, PIC_TIMER_MAXVAL_0(timer), low); in nlm_pic_set_timer()
/linux-4.4.14/Documentation/scsi/
Dmegaraid.txt11 interfaces with the applications on one side and all the low level drivers
16 i. Avoid duplicate code from the low level drivers.
17 ii. Unburden the low level drivers from having to export the
21 multiple low level drivers.
53 module acts as a registry for low level hba drivers. The low level drivers
68 can easily be more than one. But since megaraid is the only low level driver
/linux-4.4.14/Documentation/devicetree/bindings/usb/
Dpxa-usb.txt16 - "marvell,power-sense-low" - power sense pin is low-active.
17 - "marvell,power-control-low" - power control pin is low-active.
/linux-4.4.14/Documentation/devicetree/bindings/display/panel/
Ddisplay-timing.txt26 - hsync-active: hsync pulse is active low/high/ignored
27 - vsync-active: vsync pulse is active low/high/ignored
28 - de-active: data-enable pulse is active low/high/ignored
32 - active low = drive pixel data on falling edge/
41 <0>: low active
/linux-4.4.14/arch/frv/kernel/
Dgdb-io.c83 unsigned value, high, low; in gdbstub_set_baud() local
91 low = __serial_clock_speed_HZ / 16 / (value + 1); in gdbstub_set_baud()
94 if (low + (high - low) / 2 > baud) in gdbstub_set_baud()
Ddebug-stub.c203 unsigned value, high, low; in console_set_baud() local
211 low = __serial_clock_speed_HZ / 16 / (value + 1); in console_set_baud()
214 if (low + (high - low) / 2 > baud) in console_set_baud()
/linux-4.4.14/arch/m32r/kernel/
Dhead.S146 or3 r4, r4, #low(MATM)
158 or3 r4, r4, #low(M32R_ICU_ISTS_ADDR)
164 or3 r4, r4, #low(M32R_ICU_IMASK_ADDR)
169 or3 r4, r4, #low(M32R_IRQ_IPI5)
176 or3 r5, r5, #low(M32R_CPUID_PORTL)
208 or3 r4, r4, #low(MATM)
214 or3 r5, r5, #low(__PAGE_OFFSET)
224 or3 r5, r5, #low(__PAGE_OFFSET)
/linux-4.4.14/arch/arm/boot/dts/
Dste-hrefv60plus.dtsi74 * from GPIO21 so pull up 0, 1 and drive 4 and GPIO21 low as output.
97 * Drive D19-D23 for the ETM PTM trace interface low,
115 /* NAHJ CTRL on GPIO76 to low, CTRL_INV on GPIO216 to high */
128 /* NFC ENA and RESET to low, pulldown IRQ line */
176 * pull low to reset state
198 * reset signals low.
215 * Drive DISP1 reset high (not reset), driver DISP2 reset low (reset)
Dea3250.dts62 gpios = <&gpio 5 19 1>; /* GPO_P3 19, active low */
226 gpios = <&gpio 5 14 1>; /* GPO_P3 14, GPIO 93, active low */
232 gpios = <&gpio 2 10 1>; /* P2.10, active low */
237 gpios = <&gpio 2 11 1>; /* P2.11, active low */
242 gpios = <&gpio 2 12 1>; /* P2.12, active low */
Ddove-cm-a510.dtsi73 * 1 GbE PHY reset (active low)
75 * 8 PowerOff (active low)
76 * 13 Touchscreen pen irq (active low)
78 * 69 USB Hub reset (active low)
79 * 70 WLAN reset (active low)
/linux-4.4.14/Documentation/devicetree/bindings/clock/ti/
Ddpll.txt10 modes (locked, low power stop etc.) This binding has several
51 - ti,low-power-stop : DPLL supports low power stop mode, gating output
52 - ti,low-power-bypass : DPLL output matches rate of parent bypass clock
67 ti,low-power-stop;
68 ti,low-power-bypass;
/linux-4.4.14/Documentation/gpio/
Dgpio.txt43 - Output values are writable (high=1, low=0). Some chips also have
55 wakeup events, to wake the system from a low power state.
79 ("high"), and inactive when it is 0 ("low"). However in practice the signal of a
83 being either active-high ("1" means "active", the default) or active-low ("0"
89 Sometimes shared signals need to use "open drain" (where only the low signal
92 used for TTL. A pullup or pulldown resistor causes the high or low signal level.
94 logic (low=true) perspective this is a "wire-OR".
96 One common example of an open drain signal is a shared active-low IRQ line.
111 high signal and configuring the GPIO as input for low. This open drain/open
114 If you are "driving" the signal high but gpiod_get_value(gpio) reports a low
[all …]
Dconsumer.txt183 The values are boolean, zero for low, nonzero for high. When reading the value
221 Active-low State and Raw GPIO Values
226 following set of calls ignore the active-low property of a GPIO and work on the
235 The active-low state of a GPIO can also be queried using the following call:
243 The active-low property
248 the *logical* value. With this they take the active-low property into account.
249 This means that they check whether the GPIO is configured to be active-low,
257 As an example, if the active-low property for a dedicated GPIO is set, and the
259 will be driven low.
263 Function (example) active-low proporty physical line
[all …]
/linux-4.4.14/arch/m32r/boot/
Dsetup.S102 ld r5, @(low(M32R_CPUID_PORTL), r5)
125 or3 r0, r0, #low(MMU_REG_BASE) ; Set MMU_REG_BASE lower
132 or3 r0,r0,#low(M32R_MCDCAR)
154 or3 r5, r5, #low(__PAGE_OFFSET)
160 or3 r4, r4, #low(M32R_ICU_IMASK_PORTL)
/linux-4.4.14/drivers/clk/
Dclk-axi-clkgen.c185 static void axi_clkgen_calc_clk_params(unsigned int divider, unsigned int *low, in axi_clkgen_calc_clk_params() argument
195 *low = divider - *high; in axi_clkgen_calc_clk_params()
365 unsigned int low; in axi_clkgen_set_rate() local
380 axi_clkgen_calc_clk_params(dout, &low, &high, &edge, &nocount); in axi_clkgen_set_rate()
382 (high << 6) | low, 0xefff); in axi_clkgen_set_rate()
386 axi_clkgen_calc_clk_params(d, &low, &high, &edge, &nocount); in axi_clkgen_set_rate()
388 (edge << 13) | (nocount << 12) | (high << 6) | low, 0x3fff); in axi_clkgen_set_rate()
390 axi_clkgen_calc_clk_params(m, &low, &high, &edge, &nocount); in axi_clkgen_set_rate()
392 (high << 6) | low, 0xefff); in axi_clkgen_set_rate()
/linux-4.4.14/fs/adfs/
Dinode.c172 unsigned int high, low; in adfs_adfs2unix_time() local
184 low = ADFS_I(inode)->execaddr; /* bottom 32 bits of timestamp */ in adfs_adfs2unix_time()
189 nsec = (((s64) high << 32) | (s64) low) * 10000000; /* cs to ns */ in adfs_adfs2unix_time()
217 unsigned int high, low; in adfs_unix2adfs_time() local
221 low = (secs & 255) * 100; in adfs_unix2adfs_time()
222 high = (secs / 256) * 100 + (low >> 8) + 0x336e996a; in adfs_unix2adfs_time()
226 ADFS_I(inode)->execaddr = (low & 255) | (high << 8); in adfs_unix2adfs_time()
/linux-4.4.14/net/ieee802154/
DKconfig4 IEEE Std 802.15.4 defines a low data rate, low power and low
/linux-4.4.14/arch/sh/include/asm/
Dpgtable_32.h364 PTE_BIT_FUNC(low, wrprotect, &= ~_PAGE_RW);
365 PTE_BIT_FUNC(low, mkwrite, |= _PAGE_RW);
366 PTE_BIT_FUNC(low, mkhuge, |= _PAGE_SZHUGE);
369 PTE_BIT_FUNC(low, mkclean, &= ~_PAGE_DIRTY);
370 PTE_BIT_FUNC(low, mkdirty, |= _PAGE_DIRTY);
371 PTE_BIT_FUNC(low, mkold, &= ~_PAGE_ACCESSED);
372 PTE_BIT_FUNC(low, mkyoung, |= _PAGE_ACCESSED);
373 PTE_BIT_FUNC(low, mkspecial, |= _PAGE_SPECIAL);
/linux-4.4.14/sound/isa/msnd/
Dmsnd.h186 #define MAKELONG(low, hi) ((long)(((u16)(low))|(((u32)((u16)(hi)))<<16))) argument
187 #define MAKEWORD(low, hi) ((u16)(((u8)(low))|(((u16)((u8)(hi)))<<8))) argument
292 unsigned char low);
/linux-4.4.14/sound/oss/
Dmsnd.h147 #define MAKELONG(low,hi) ((long)(((WORD)(low))|(((DWORD)((WORD)(hi)))<<16))) argument
148 #define MAKEWORD(low,hi) ((WORD)(((BYTE)(low))|(((WORD)((BYTE)(hi)))<<8))) argument
273 unsigned char mid, unsigned char low);
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/
Dnxp,lpc3220-mic.txt11 1 = low-to-high edge triggered
12 2 = high-to-low edge triggered
14 8 = active low level-sensitive
Datmel,aic.txt12 1 = low-to-high edge triggered.
13 2 = high-to-low edge triggered.
15 8 = active low level-sensitive.
Dimg,pdc-intc.txt41 1 = low-to-high edge triggered
42 2 = high-to-low edge triggered
45 8 = active-low level-sensitive
102 // Interrupt source SysWake 0 that is active-low level-sensitive
/linux-4.4.14/arch/arm/kernel/
Dstacktrace.c27 unsigned long high, low; in unwind_frame() local
31 low = frame->sp; in unwind_frame()
32 high = ALIGN(low, THREAD_SIZE); in unwind_frame()
35 if (fp < low + 12 || fp > high - 4) in unwind_frame()
/linux-4.4.14/arch/arc/plat-axs10x/
Daxs10x.c329 unsigned int pad:17, noupd:1, bypass:1, edge:1, high:6, low:6; member
331 unsigned int low:6, high:6, edge:1, bypass:1, noupd:1, pad:17;
347 f = f / (idiv.low + idiv.high); in axs103_get_freq()
350 f = f * (fbdiv.low + fbdiv.high); in axs103_get_freq()
353 f = f / (odiv.low + odiv.high); in axs103_get_freq()
368 div.low = (id%2 == 0) ? id >> 1 : (id >> 1)+1; in encode_div()
/linux-4.4.14/drivers/media/platform/vivid/
Dvivid-radio-rx.c162 unsigned low, high; in vivid_radio_rx_s_hw_freq_seek() local
191 low = a->rangelow; in vivid_radio_rx_s_hw_freq_seek()
200 low = vivid_radio_bands[band].rangelow; in vivid_radio_rx_s_hw_freq_seek()
204 freq = clamp(dev->radio_rx_freq, low, high); in vivid_radio_rx_s_hw_freq_seek()
211 freq = spacing * (low / spacing) + spacing; in vivid_radio_rx_s_hw_freq_seek()
217 if (freq < low) { in vivid_radio_rx_s_hw_freq_seek()
/linux-4.4.14/Documentation/devicetree/bindings/mtd/
Dlpc32xx-mlc.txt37 nxp,rd-low = <45454545>;
39 nxp,wr-low = <83333333>;
40 gpios = <&gpio 5 19 1>; /* GPO_P3 19, active low */
/linux-4.4.14/arch/arc/boot/dts/
Dnsim_hs.dts20 /* CONFIG_LINUX_LINK_BASE needs to match low mem start */
21 reg = <0x0 0x80000000 0x0 0x20000000 /* 512 MB low mem */
38 /* only perip space at end of low mem accessible */
/linux-4.4.14/Documentation/devicetree/bindings/display/
Dssd1307fb.txt18 - reset-active-low: Is the reset gpio is active on physical low?
38 reset-active-low;
46 reset-active-low;
/linux-4.4.14/drivers/scsi/fnic/
Dfnic_trace.h62 u32 low; member
92 trace_buf->timestamp.low = jiffies; \
93 trace_buf->fnaddr.low = (u32)(unsigned long)_fn; \
/linux-4.4.14/sound/
Dsound_core.c174 …nit * s, struct sound_unit **list, const struct file_operations *fops, int index, int low, int top) in __sound_insert_unit() argument
176 int n=low; in __sound_insert_unit()
195 n = low+(index*16); in __sound_insert_unit()
254 …ruct sound_unit **list, const struct file_operations *fops, int index, int low, int top, const cha… in sound_insert_unit() argument
264 r = __sound_insert_unit(s, list, fops, index, low, top); in sound_insert_unit()
286 low = s->unit_minor + SOUND_STEP; in sound_insert_unit()
/linux-4.4.14/drivers/net/wireless/b43legacy/
Dphy.c1294 value = (u8)(pair->low); in b43legacy_lo_write()
1299 if (pair->low < -8 || pair->low > 8 || in b43legacy_lo_write()
1304 pair->low, pair->high); in b43legacy_lo_write()
1382 { .high = 1, .low = 1, }, in b43legacy_phy_lo_g_state()
1383 { .high = 1, .low = 0, }, in b43legacy_phy_lo_g_state()
1384 { .high = 1, .low = -1, }, in b43legacy_phy_lo_g_state()
1385 { .high = 0, .low = -1, }, in b43legacy_phy_lo_g_state()
1386 { .high = -1, .low = -1, }, in b43legacy_phy_lo_g_state()
1387 { .high = -1, .low = 0, }, in b43legacy_phy_lo_g_state()
1388 { .high = -1, .low = 1, }, in b43legacy_phy_lo_g_state()
[all …]
/linux-4.4.14/net/ipv4/
Dsysctl_net_ipv4.c93 static void inet_get_ping_group_range_table(struct ctl_table *table, kgid_t *low, kgid_t *high) in inet_get_ping_group_range_table() argument
102 *low = data[0]; in inet_get_ping_group_range_table()
108 static void set_ping_group_range(struct ctl_table *table, kgid_t low, kgid_t high) in set_ping_group_range() argument
114 data[0] = low; in set_ping_group_range()
127 kgid_t low, high; in ipv4_ping_group_range() local
136 inet_get_ping_group_range_table(table, &low, &high); in ipv4_ping_group_range()
137 urange[0] = from_kgid_munged(user_ns, low); in ipv4_ping_group_range()
142 low = make_kgid(user_ns, urange[0]); in ipv4_ping_group_range()
144 if (!gid_valid(low) || !gid_valid(high) || in ipv4_ping_group_range()
145 (urange[1] < urange[0]) || gid_lt(high, low)) { in ipv4_ping_group_range()
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/input/
Dti,nspire-keypad.txt22 - active-low: Specify that the keypad is active low (i.e. logical low signifies
/linux-4.4.14/drivers/net/ethernet/stmicro/stmmac/
Ddwmac_lib.c223 unsigned int high, unsigned int low) in stmmac_set_mac_addr() argument
234 writel(data, ioaddr + low); in stmmac_set_mac_addr()
251 unsigned int high, unsigned int low) in stmmac_get_mac_addr() argument
257 lo_addr = readl(ioaddr + low); in stmmac_get_mac_addr()
/linux-4.4.14/arch/metag/lib/
Ducmpdi2.S10 ! low high
19 ! or if equal, low words
Dcmpdi2.S10 ! low high
21 ! unsigned compare low words
/linux-4.4.14/arch/arm/mach-dove/include/mach/
Dentry-macro.S18 @ check low interrupts
24 @ if no low interrupts set, check high interrupts
/linux-4.4.14/arch/sh/kernel/cpu/sh2a/
Dfpu.c134 unsigned long long high, low; in mult64() local
140 low = sub3; in mult64()
143 if (low > sub3) in mult64()
145 low = sub3; in mult64()
147 if (low > sub3) in mult64()
149 low = sub3; in mult64()
152 *lowp = low; in mult64()
/linux-4.4.14/Documentation/virtual/
Dparavirt_ops.txt13 corresponding to low level critical instructions and high level
15 time by enabling binary patching of the low-ops critical operations
25 Usually these operations correspond to low level critical instructions. They
/linux-4.4.14/arch/arc/kernel/
Dtime.c126 struct { u32 high, low; }; in arc_counter_read() member
128 struct { u32 low, high; }; in arc_counter_read()
140 : "=r" (stamp.low), "=r" (stamp.high), "=r" (status)); in arc_counter_read()
/linux-4.4.14/drivers/soc/rockchip/
DKconfig12 In order to meet high performance and low power requirements, a power
13 management unit is designed or saving power when RK3288 in low power
/linux-4.4.14/arch/metag/mm/
Dinit.c359 unsigned long low, start_pfn; in paging_init() local
362 low = pgdat->bdata->node_low_pfn; in paging_init()
364 if (max_zone_pfns[ZONE_NORMAL] < low) in paging_init()
365 max_zone_pfns[ZONE_NORMAL] = low; in paging_init()
371 nid, start_pfn, low); in paging_init()
/linux-4.4.14/drivers/net/ethernet/hisilicon/hns/
Dhns_dsaf_main.c1178 (soft_mac_entry->tcam_key.low.val == mac_key->low.val)) in hns_dsaf_find_soft_mac_entry()
1236 mac_key->low.bits.mac_4 = addr[4]; in hns_dsaf_set_mac_key()
1237 mac_key->low.bits.mac_5 = addr[5]; in hns_dsaf_set_mac_key()
1238 mac_key->low.bits.vlan = vlan_id; in hns_dsaf_set_mac_key()
1239 mac_key->low.bits.port = port; in hns_dsaf_set_mac_key()
1281 mac_key.high.val, mac_key.low.val); in hns_dsaf_set_mac_uc_entry()
1289 mac_key.low.val, entry_index); in hns_dsaf_set_mac_uc_entry()
1306 soft_mac_entry->tcam_key.low.val = mac_key.low.val; in hns_dsaf_set_mac_uc_entry()
1350 mac_key.high.val, mac_key.low.val); in hns_dsaf_set_mac_mc_entry()
1371 mac_key.low.val, entry_index); in hns_dsaf_set_mac_mc_entry()
[all …]
/linux-4.4.14/arch/tile/include/asm/
Dcompat.h277 long compat_sys_truncate64(char __user *filename, u32 dummy, u32 low, u32 high);
278 long compat_sys_ftruncate64(unsigned int fd, u32 dummy, u32 low, u32 high);
280 u32 dummy, u32 low, u32 high);
282 u32 dummy, u32 low, u32 high);
/linux-4.4.14/arch/arm/mach-mv78xx0/include/mach/
Dentry-macro.S18 @ check low interrupts
25 @ if no low interrupts set, check high interrupts
/linux-4.4.14/sound/synth/emux/
Demux_effect.c53 int low, high; /* value range */ member
112 if (effect < parm_defs[type].low) in effect_set_byte()
113 effect = parm_defs[type].low; in effect_set_byte()
129 if (effect < parm_defs[type].low) in effect_set_word()
130 effect = parm_defs[type].low; in effect_set_word()
/linux-4.4.14/Documentation/devicetree/bindings/sound/
Dcs4265.txt11 If it is low, the i2c address is 0x4e.
26 codec_ad0_low: cs4265@4e { /* AD0 Pin is low */
/linux-4.4.14/Documentation/ABI/removed/
Draw13945 /dev/raw1394 was a character device file that allowed low-level
7 to implement sensible device security policies, and its low level
/linux-4.4.14/sound/pci/emu10k1/
Demuproc.c300 u32 low, high; in snd_emu10k1_proc_acode_read() local
302 low = snd_emu10k1_efx_read(emu, pc * 2); in snd_emu10k1_proc_acode_read()
309 (low >> 12) & 0x7ff, in snd_emu10k1_proc_acode_read()
310 (low >> 0) & 0x7ff, in snd_emu10k1_proc_acode_read()
312 high, low); in snd_emu10k1_proc_acode_read()
318 (low >> 10) & 0x3ff, in snd_emu10k1_proc_acode_read()
319 (low >> 0) & 0x3ff, in snd_emu10k1_proc_acode_read()
321 high, low); in snd_emu10k1_proc_acode_read()
/linux-4.4.14/drivers/hwmon/
Dntc_thermistor.c448 int low, high; in get_temp_mc() local
451 lookup_comp(data, ohm, &low, &high); in get_temp_mc()
452 if (low == high) { in get_temp_mc()
454 temp = data->comp[low].temp_c * 1000; in get_temp_mc()
456 temp = data->comp[low].temp_c * 1000 + in get_temp_mc()
457 ((data->comp[high].temp_c - data->comp[low].temp_c) * in get_temp_mc()
458 1000 * ((int)ohm - (int)data->comp[low].ohm)) / in get_temp_mc()
459 ((int)data->comp[high].ohm - (int)data->comp[low].ohm); in get_temp_mc()
/linux-4.4.14/Documentation/devicetree/bindings/media/
Dpxa-camera.txt38 hsync-active = <0>; /* Active low */
39 vsync-active = <0>; /* Active low */
/linux-4.4.14/drivers/target/sbp/
Dsbp_target.h88 __be32 low; member
190 (be32_to_cpu(ptr->low) & 0xfffffffc); in sbp2_pointer_to_addr()
196 ptr->low = cpu_to_be32(addr); in addr_to_sbp2_pointer()
/linux-4.4.14/drivers/ide/
Dide-lib.c38 u32 high, low; in ide_get_lba_addr() local
40 low = (tf->lbah << 16) | (tf->lbam << 8) | tf->lbal; in ide_get_lba_addr()
47 return ((u64)high << 24) | low; in ide_get_lba_addr()
/linux-4.4.14/Documentation/devicetree/bindings/mfd/
Dqcom-pm8xxx.txt41 1 = low-to-high edge triggered
42 2 = high-to-low edge triggered
44 8 = active low level-sensitive
/linux-4.4.14/net/wireless/
Dwext-spy.c123 memcpy(&(spydata->spy_thr_low), &(threshold->low), in iw_handler_set_thrspy()
150 memcpy(&(threshold->low), &(spydata->spy_thr_low), in iw_handler_get_thrspy()
178 memcpy(&(threshold.low), &(spydata->spy_thr_low), in iw_send_thrspy_event()
/linux-4.4.14/arch/tile/kernel/vdso/
Dvgettimeofday.c25 unsigned int low = __insn_mfspr(SPR_CYCLE_LOW); in get_cycles_inline() local
29 low = __insn_mfspr(SPR_CYCLE_LOW); in get_cycles_inline()
34 return (((cycles_t)high) << 32) | low; in get_cycles_inline()
/linux-4.4.14/include/uapi/linux/
Dbcache.h24 __u64 low; member
57 return k->low; in KEY_OFFSET()
62 k->low = v; in SET_KEY_OFFSET()
73 .low = (offset) \
/linux-4.4.14/arch/sh/mm/
Dinit.c383 unsigned long low, start_pfn; in paging_init() local
386 low = pgdat->bdata->node_low_pfn; in paging_init()
388 if (max_zone_pfns[ZONE_NORMAL] < low) in paging_init()
389 max_zone_pfns[ZONE_NORMAL] = low; in paging_init()
392 nid, start_pfn, low); in paging_init()
/linux-4.4.14/Documentation/arm/pxa/
Dmfp.txt15 also controls the low power state, driving strength, pull-up/down and event
130 from low power state, it can be 'OR'ed with any of:
167 Bit 7: SLEEP_OE_N - enable outputs during low power modes
168 Bit 8: SLEEP_DATA - output data on the pin during low power modes
169 Bit 9: SLEEP_SEL - selection control for low power modes signals
250 * low power mode = default
257 * low power mode
259 * pin drive strength and low power mode
267 selection of 1, driving strength of 0b101, and a float state in low power
281 ones and the low power mode ones, to allow different settings.
/linux-4.4.14/drivers/net/wireless/iwlwifi/dvm/
Drs.c736 u8 low = IWL_RATE_INVALID; in rs_get_adjacent_rate() local
748 low = i; in rs_get_adjacent_rate()
762 return (high << 8) | low; in rs_get_adjacent_rate()
765 low = index; in rs_get_adjacent_rate()
766 while (low != IWL_RATE_INVALID) { in rs_get_adjacent_rate()
767 low = iwl_rates[low].prev_rs; in rs_get_adjacent_rate()
768 if (low == IWL_RATE_INVALID) in rs_get_adjacent_rate()
770 if (rate_mask & (1 << low)) in rs_get_adjacent_rate()
772 IWL_DEBUG_RATE(priv, "Skipping masked lower rate: %d\n", low); in rs_get_adjacent_rate()
785 return (high << 8) | low; in rs_get_adjacent_rate()
[all …]
/linux-4.4.14/arch/sparc/kernel/
Dsys_sparc32.c54 asmlinkage long sys32_truncate64(const char __user * path, unsigned long high, unsigned long low) in sys32_truncate64() argument
59 return sys_truncate(path, (high << 32) | low); in sys32_truncate64()
62 asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long high, unsigned long low) in sys32_ftruncate64() argument
67 return sys_ftruncate(fd, (high << 32) | low); in sys32_ftruncate64()
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmsmac/
Dtypes.h135 #define MSK_RANGE(low, hi) ((1 << ((hi)+1)) - (1 << (low))) argument
136 #define CONF_RANGE(config, low, hi) (CONF_MSK(config, MSK_RANGE(low, high))) argument

123456