Home
last modified time | relevance | path

Searched refs:bypass (Results 1 – 108 of 108) sorted by relevance

/linux-4.1.27/drivers/regulator/
Danatop-regulator.c54 bool bypass; member
89 sel = anatop_reg->bypass ? LDO_FET_FULL_ON : anatop_reg->sel; in anatop_regmap_enable()
109 if (anatop_reg->bypass || !anatop_regmap_is_enabled(reg)) { in anatop_regmap_core_set_voltage_sel()
124 if (anatop_reg->bypass || !anatop_regmap_is_enabled(reg)) in anatop_regmap_core_get_voltage_sel()
137 WARN_ON(!anatop_reg->bypass); in anatop_regmap_get_bypass()
139 WARN_ON(anatop_reg->bypass); in anatop_regmap_get_bypass()
141 *enable = anatop_reg->bypass; in anatop_regmap_get_bypass()
150 if (enable == anatop_reg->bypass) in anatop_regmap_set_bypass()
154 anatop_reg->bypass = enable; in anatop_regmap_set_bypass()
285 sreg->bypass = true; in anatop_regulator_probe()
Dinternal.h28 unsigned int bypass:1; member
Dcore.c623 bool bypass; in regulator_bypass_show() local
626 ret = rdev->desc->ops->get_bypass(rdev, &bypass); in regulator_bypass_show()
630 else if (bypass) in regulator_bypass_show()
637 static DEVICE_ATTR(bypass, 0444,
3133 if (enable && !regulator->bypass) { in regulator_allow_bypass()
3142 } else if (!enable && regulator->bypass) { in regulator_allow_bypass()
3153 regulator->bypass = enable; in regulator_allow_bypass()
/linux-4.1.27/sound/soc/codecs/
Drl6231.c63 bool bypass = false; in rl6231_pll_calc() local
77 bypass = true; in rl6231_pll_calc()
83 bypass = true; in rl6231_pll_calc()
94 bypass = false; in rl6231_pll_calc()
107 pll_code->m_bp = bypass; in rl6231_pll_calc()
Dwm2200.c2351 !wm2200->pdata.micbias[i].bypass) in wm2200_i2c_probe()
2368 if (wm2200->pdata.micbias[i].bypass) in wm2200_i2c_probe()
/linux-4.1.27/include/trace/events/
Dbcache.h123 TP_PROTO(struct bio *bio, bool hit, bool bypass),
124 TP_ARGS(bio, hit, bypass),
132 __field(bool, bypass )
141 __entry->bypass = bypass;
147 __entry->nr_sector, __entry->cache_hit, __entry->bypass)
152 bool writeback, bool bypass),
153 TP_ARGS(c, inode, bio, writeback, bypass),
162 __field(bool, bypass )
172 __entry->bypass = bypass;
178 __entry->nr_sector, __entry->writeback, __entry->bypass)
/linux-4.1.27/arch/arm/mach-omap2/
Dsram.h16 extern u32 omap2_set_prcm(u32 dpll_ctrl_val, u32 sdrc_rfr_val, int bypass);
35 int bypass);
48 int bypass);
Dclkt2xxx_dpllcore.c116 u32 bypass = 0; in omap2_reprogram_dpllcore() local
163 bypass = 1; in omap2_reprogram_dpllcore()
170 bypass); in omap2_reprogram_dpllcore()
Dclkt2xxx_virt_prcm_set.c101 u32 cur_rate, done_rate, bypass = 0; in omap2_select_table_rate() local
136 bypass = 1; in omap2_select_table_rate()
154 bypass); in omap2_select_table_rate()
Dsram.c162 static u32 (*_omap2_set_prcm)(u32 dpll_ctrl_val, u32 sdrc_rfr_val, int bypass);
164 u32 omap2_set_prcm(u32 dpll_ctrl_val, u32 sdrc_rfr_val, int bypass) in omap2_set_prcm() argument
167 return _omap2_set_prcm(dpll_ctrl_val, sdrc_rfr_val, bypass); in omap2_set_prcm()
Dsram243x.S280 cmp r2, #0x1 @ stay in bypass?
Dsram242x.S280 cmp r2, #0x1 @ stay in bypass?
/linux-4.1.27/Documentation/devicetree/bindings/c6x/
Dclocks.txt24 - ti,c64x+pll-bypass-delay: CPU cycles to delay when entering bypass mode
37 ti,c64x+pll-bypass-delay = <200>;
/linux-4.1.27/net/sched/
Dsch_fifo.c53 bool bypass; in fifo_init() local
73 bypass = sch->limit >= psched_mtu(qdisc_dev(sch)); in fifo_init()
75 bypass = sch->limit >= 1; in fifo_init()
77 if (bypass) in fifo_init()
/linux-4.1.27/Documentation/devicetree/bindings/clock/ti/
Ddpll.txt7 (reference clock and bypass clock), with digital phase locked
38 and second entry bypass clock
52 - ti,low-power-bypass : DPLL output matches rate of parent bypass clock
68 ti,low-power-bypass;
Dfapll.txt7 (reference clock and bypass clock), and one or more child
15 - clocks : link phandles of parent clocks (clk-ref and clk-bypass)
Dapll.txt7 (reference clock and bypass clock), with analog phase locked
19 - clocks : link phandles of parent clocks (clk-ref and clk-bypass)
/linux-4.1.27/drivers/md/bcache/
Dstats.c184 bool hit, bool bypass) in mark_cache_stats() argument
186 if (!bypass) in mark_cache_stats()
199 bool hit, bool bypass) in bch_mark_cache_accounting() argument
202 mark_cache_stats(&dc->accounting.collector, hit, bypass); in bch_mark_cache_accounting()
203 mark_cache_stats(&c->accounting.collector, hit, bypass); in bch_mark_cache_accounting()
Drequest.c201 if (op->bypass) in bch_data_insert_start()
274 op->bypass = true; in bch_data_insert_start()
315 op->writeback, op->bypass); in bch_data_insert()
765 !s->cache_miss, s->iop.bypass); in cached_dev_read_done_bh()
766 trace_bcache_read(s->orig_bio, !s->cache_miss, s->iop.bypass); in cached_dev_read_done_bh()
784 if (s->cache_miss || s->iop.bypass) { in cached_dev_cache_miss()
882 s->iop.bypass = false; in cached_dev_write()
894 s->iop.bypass = true; in cached_dev_write()
898 s->iop.bypass)) { in cached_dev_write()
899 s->iop.bypass = false; in cached_dev_write()
[all …]
Drequest.h19 unsigned bypass:1; member
/linux-4.1.27/drivers/clk/socfpga/
Dclk-pll.c55 unsigned long bypass; in clk_pll_recalc_rate() local
58 bypass = readl(clk_mgr_base_addr + CLKMGR_BYPASS); in clk_pll_recalc_rate()
59 if (bypass & MAINPLL_BYPASS) in clk_pll_recalc_rate()
/linux-4.1.27/arch/mips/cavium-octeon/executive/
Dcvmx-helper-jtag.c66 jtgc.s.bypass = 0x3; in cvmx_helper_qlm_jtag_init()
68 jtgc.s.bypass = 0xf; in cvmx_helper_qlm_jtag_init()
/linux-4.1.27/drivers/clk/at91/
Dclk-slow.c126 bool bypass) in at91_clk_register_slow_osc() argument
149 if (bypass) in at91_clk_register_slow_osc()
167 bool bypass; in of_at91sam9x5_clk_slow_osc_setup() local
172 bypass = of_property_read_bool(np, "atmel,osc-bypass"); in of_at91sam9x5_clk_slow_osc_setup()
175 bypass); in of_at91sam9x5_clk_slow_osc_setup()
Dclk-main.c146 bool bypass) in at91_clk_register_main_osc() argument
177 if (bypass) in at91_clk_register_main_osc()
199 bool bypass; in of_at91rm9200_clk_main_osc_setup() local
202 bypass = of_property_read_bool(np, "atmel,osc-bypass"); in of_at91rm9200_clk_main_osc_setup()
209 clk = at91_clk_register_main_osc(pmc, irq, name, parent_name, bypass); in of_at91rm9200_clk_main_osc_setup()
/linux-4.1.27/arch/mips/include/asm/octeon/
Dcvmx-asxx-defs.h224 uint64_t bypass:1; member
226 uint64_t bypass:1;
557 uint64_t bypass:1; member
563 uint64_t bypass:1;
583 uint64_t bypass:1; member
593 uint64_t bypass:1;
Dcvmx-ciu-defs.h8231 uint64_t bypass:4; member
8233 uint64_t bypass:4;
8249 uint64_t bypass:2; member
8251 uint64_t bypass:2;
8266 uint64_t bypass:4; member
8268 uint64_t bypass:4;
8283 uint64_t bypass:3; member
8285 uint64_t bypass:3;
Dcvmx-lmcx-defs.h2462 uint64_t bypass:1; member
2488 uint64_t bypass:1;
/linux-4.1.27/drivers/base/regmap/
Dregcache.c304 unsigned int bypass; in regcache_sync() local
310 bypass = map->cache_bypass; in regcache_sync()
344 map->cache_bypass = bypass; in regcache_sync()
372 unsigned int bypass; in regcache_sync_region() local
379 bypass = map->cache_bypass; in regcache_sync_region()
398 map->cache_bypass = bypass; in regcache_sync_region()
Dregmap.c1969 bool bypass; in regmap_multi_reg_write_bypassed() local
1973 bypass = map->cache_bypass; in regmap_multi_reg_write_bypassed()
1978 map->cache_bypass = bypass; in regmap_multi_reg_write_bypassed()
2560 bool bypass; in regmap_register_patch() local
2579 bypass = map->cache_bypass; in regmap_register_patch()
2590 map->cache_bypass = bypass; in regmap_register_patch()
/linux-4.1.27/arch/c6x/platforms/
Dpll.c272 u8 bypass; in clk_pllclk_recalc() local
283 bypass = 0; in clk_pllclk_recalc()
285 bypass = 1; in clk_pllclk_recalc()
306 if (!bypass) { in clk_pllclk_recalc()
/linux-4.1.27/include/uapi/linux/netfilter/
Dxt_NFQUEUE.h26 __u16 bypass; member
/linux-4.1.27/arch/arm/mach-davinci/
Dclock.c411 u8 bypass; in clk_pllclk_recalc() local
419 bypass = 0; in clk_pllclk_recalc()
426 bypass = 1; in clk_pllclk_recalc()
448 if (!bypass) { in clk_pllclk_recalc()
456 if (bypass) in clk_pllclk_recalc()
/linux-4.1.27/include/sound/
Dwm2200.h44 unsigned int bypass:1; /** Use bypass mode */ member
/linux-4.1.27/Documentation/devicetree/bindings/mfd/
Domap-usb-host.txt32 - single-ulpi-bypass: Must be present if the controller contains a single
33 ULPI bypass control bit. e.g. OMAP3 silicon <= ES2.1
Dqcom-rpm.txt212 QCOM_RPM_FORCE_MODE_BYPASS - set regulator to use bypass
/linux-4.1.27/include/linux/mfd/arizona/
Dpdata.h63 unsigned int bypass:1; /** Use bypass mode */ member
/linux-4.1.27/arch/powerpc/boot/
D4xx.c447 goto bypass; in __ibm440eplike_fixup_clocks()
454 bypass: in __ibm440eplike_fixup_clocks()
775 goto bypass; in ibm405ex_fixup_clocks()
780 bypass: in ibm405ex_fixup_clocks()
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/clk/
Dgt215.c347 u32 bypass; in prog_pll() local
351 bypass = nv_rd32(priv, ctrl) & 0x00000008; in prog_pll()
352 if (!bypass) { in prog_pll()
/linux-4.1.27/arch/c6x/boot/dts/
Dtms320c6457.dtsi63 ti,c64x+pll-bypass-delay = <300>;
Dtms320c6474.dtsi84 ti,c64x+pll-bypass-delay = <120>;
Dtms320c6455.dtsi73 ti,c64x+pll-bypass-delay = <1440>;
Dtms320c6472.dtsi107 ti,c64x+pll-bypass-delay = <200>;
Dtms320c6678.dtsi129 ti,c64x+pll-bypass-delay = <200>;
/linux-4.1.27/arch/arm/mach-omap1/
Dsram.S39 strh r0, [r2] @ set dpll into bypass mode
/linux-4.1.27/Documentation/devicetree/bindings/regulator/
Dregulator.txt12 - regulator-allow-bypass: allow the regulator to go into bypass mode
Dti-abb-regulator.txt32 0-bypass
/linux-4.1.27/arch/arm/boot/dts/
Dexynos5260-xyref5260.dts71 bypass-smu;
Dimx27-phytec-phycore-rdk.dts321 nxp,no-comparator-bypass;
Domap34xx-omap36xx-clocks.dtsi173 ti,low-power-bypass;
Datlas7.dtsi473 regulator-allow-bypass;
/linux-4.1.27/net/netfilter/
Dxt_NFQUEUE.c57 if (info->bypass) in nfqueue_tg_v2()
/linux-4.1.27/Documentation/device-mapper/
Dcache-policies.txt51 considered sequential it will bypass the cache. The random threshold
63 disabled and sequential I/O will no longer implicitly bypass the cache.
Dlog-writes.txt38 Any REQ_FUA requests bypass this flushing mechanism and are logged as soon as
39 they complete as those requests will obviously bypass the device cache.
/linux-4.1.27/drivers/media/usb/dvb-usb/
Dvp702x.c155 static int vp702x_set_pld_mode(struct dvb_usb_adapter *adap, u8 bypass) in vp702x_set_pld_mode() argument
166 ret = vp702x_usb_in_op(adap->dev, 0xe0, (bypass << 8) | 0x0e, in vp702x_set_pld_mode()
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-class-regulator353 What: /sys/class/regulator/.../bypass
359 bypass. This indicates if the device is in bypass mode.
367 'enabled' means the regulator is in bypass mode.
/linux-4.1.27/drivers/irqchip/
Dirq-gic.c368 u32 bypass = 0; in gic_cpu_if_up() local
373 bypass = readl(cpu_base + GIC_CPU_CTRL); in gic_cpu_if_up()
374 bypass &= GICC_DIS_BYPASS_MASK; in gic_cpu_if_up()
376 writel_relaxed(bypass | GICC_ENABLE, cpu_base + GIC_CPU_CTRL); in gic_cpu_if_up()
/linux-4.1.27/drivers/crypto/amcc/
Dcrypto4xx_core.h130 u32 bypass; member
Dcrypto4xx_reg_def.h266 u32 bypass:8; member
Dcrypto4xx_core.c981 pd->pd_ctl_len.w = 0x00400000 | (ctx->bypass << 24) | datalen; in crypto4xx_build_pd()
/linux-4.1.27/Documentation/devicetree/bindings/net/can/
Dsja1000.txt44 - nxp,no-comparator-bypass : Allows to disable the CAN input comparator.
/linux-4.1.27/Documentation/video4linux/cx88/
Dhauppauge-wintv-cx88-ir.txt7 1 1 Mono tuner bypass or CD passthru (tuner specific)
/linux-4.1.27/Documentation/video4linux/
Dhauppauge-wintv-cx88-ir.txt7 1 1 Mono tuner bypass or CD passthru (tuner specific)
/linux-4.1.27/Documentation/sound/oss/
DWaveArtist62 rbyps: right bypass
Dmwave11 latest MWAVE patches. So, in other words, don't bypass the test for MWAVES!
/linux-4.1.27/Documentation/sound/alsa/
DREADME.maya4426 - analogue monitor a.k.a bypass
125 Bypass: analogue bypass from ADC input to output for channel 1+2. Same as "Monitor" in the windows …
DCMIPCI.txt154 output (aka bypass)
187 the alsa-lib. If you need to bypass the software conversion of IEC958
DOSS-Emulation.txt149 The direct option is used, as mentioned above, to bypass the automatic
/linux-4.1.27/Documentation/devicetree/bindings/interrupt-controller/
Dbrcm,bcm7120-l2-intc.txt75 respective interrupt outputs bypass this 2nd level interrupt controller
/linux-4.1.27/net/atm/
DKconfig55 subnetwork boundaries. These shortcut connections bypass routers
/linux-4.1.27/drivers/staging/media/davinci_vpfe/
Ddm365_resizer.c106 resizer_configure_passthru(struct vpfe_resizer_device *resizer, int bypass) in resizer_configure_passthru() argument
125 if (bypass) { in resizer_configure_passthru()
534 param->rsz_common.passthrough = cont_config->bypass; in resizer_configure_in_continious_mode()
535 if (cont_config->bypass) in resizer_configure_in_continious_mode()
795 param->rsz_common.passthrough = config->bypass; in resizer_configure_in_single_shot_mode()
796 if (config->bypass) in resizer_configure_in_single_shot_mode()
Ddavinci_vpfe_user.h1282 unsigned char bypass; member
/linux-4.1.27/drivers/media/platform/exynos4-is/
Dfimc-is-param.c467 drc->control.bypass = val; in __is_set_drc_control()
689 isp->control.bypass = CONTROL_BYPASS_DISABLE; in fimc_is_set_initial_params()
861 fd->control.bypass = CONTROL_BYPASS_DISABLE; in fimc_is_set_initial_params()
Dfimc-is-param.h454 u32 bypass; member
/linux-4.1.27/drivers/gpu/drm/exynos/
Dexynos_drm_fimc.c111 bool bypass; member
132 u32 bypass; member
1015 sc->range, sc->bypass, sc->up_h, sc->up_v); in fimc_set_scaler()
1030 if (sc->bypass) in fimc_set_scaler()
/linux-4.1.27/Documentation/hwmon/
Dw83627hf35 Use 'init=0' to bypass initializing the chip.
Dw83792d18 Use 'init=0' to bypass initializing the chip.
Dw83781d32 Use 'init=0' to bypass initializing the chip.
Dsysfs-interface31 this reason, it is still not recommended to bypass the library.
/linux-4.1.27/drivers/mfd/
Darizona-core.c940 !arizona->pdata.micbias[i].bypass) in arizona_dev_init()
960 if (arizona->pdata.micbias[i].bypass) in arizona_dev_init()
/linux-4.1.27/Documentation/
Dclk.txt258 Sometimes during development it can be useful to be able to bypass the
264 To bypass this disabling, include "clk_ignore_unused" in the bootargs to the
Dbcache.txt30 thus entirely bypass the cache.
170 cranking down the sequential bypass).
232 A sequential IO will bypass the cache once it passes this threshold; the
D00-INDEX177 - How to use the EFI boot stub to bypass GRUB or elilo on EFI systems.
Dmd.txt611 to 1. Setting this to 0 disables bypass accounting and
Dmemory-barriers.txt2691 [!] MMIO or other device accesses may bypass the cache system. This depends on
2858 Amongst these properties is usually the fact that such accesses bypass the
Dkernel-parameters.txt1547 Disable IOMMU bypass, using IOMMU for PCI devices.
/linux-4.1.27/arch/frv/kernel/
Dentry-table.S49 # single-step bypass management
/linux-4.1.27/arch/sh/kernel/cpu/sh3/
Dentry.S484 * that isn't a valid hard IRQ, therefore we bypass the do_IRQ()
/linux-4.1.27/Documentation/devicetree/bindings/clock/
Dat91-clock.txt116 - atmel,osc-bypass : boolean property. Set this when a clock signal is directly
192 - atmel,osc-bypass : boolean property. Specified if a clock signal is provided
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4.h322 unsigned char bypass; member
1083 return adap->params.bypass; in is_bypass()
Dcxgb4_main.c3688 adap->params.bypass = 1; in adap_init0()
/linux-4.1.27/Documentation/arm/
Dkernel_user_helpers.txt23 User space is expected to bypass those helpers and implement those things
/linux-4.1.27/drivers/cpufreq/
DKconfig.x86295 option lets the probing code bypass some of those checks if the
/linux-4.1.27/drivers/infiniband/hw/cxgb3/
Dcxio_wr.h402 struct t3_bypass_wr bypass; member
/linux-4.1.27/drivers/iommu/
DKconfig161 Floppy disk drivers are known to bypass DMA API calls
/linux-4.1.27/arch/powerpc/platforms/powernv/
Dpci-ioda.c1610 bool bypass = false; in pnv_pci_ioda_dma_set_mask() local
1618 bypass = (dma_mask >= top); in pnv_pci_ioda_dma_set_mask()
1621 if (bypass) { in pnv_pci_ioda_dma_set_mask()
/linux-4.1.27/sound/soc/intel/atom/
Dsst-atom-controls.h788 bool bypass; member
/linux-4.1.27/Documentation/development-process/
D7.AdvancedTopics127 importantly, do not use a git tree to bypass the review process. Post an
/linux-4.1.27/mm/
Dmemcontrol.c2262 goto bypass; in try_charge()
2308 goto bypass; in try_charge()
2311 goto bypass; in try_charge()
2319 bypass: in try_charge()
/linux-4.1.27/drivers/acpi/
DKconfig361 to bypass certain security measures (e.g. if root is not allowed to
/linux-4.1.27/Documentation/vm/
Dcleancache.txt275 apps that bypass the page cache (e.g. O_DIRECT).
/linux-4.1.27/Documentation/input/
Delantech.txt125 this knob you can bypass that check.
/linux-4.1.27/Documentation/cdrom/
Dide-cd252 you can bypass the ATA probing which confuses these CDROM drives, by
/linux-4.1.27/arch/alpha/
DKconfig532 motherboards), you can bypass it altogether and boot Linux directly
/linux-4.1.27/Documentation/filesystems/
Dntfs.txt300 You can also bypass using the LDM driver by using the main device (e.g.
Dvfs.txt745 direct_IO - that is IO requests which bypass the page cache
/linux-4.1.27/Documentation/block/
Dbiodoc.txt52 1.3 Direct access/bypass to lower layers for diagnostics and special
498 off the queue. Control or diagnostic functions might bypass block and directly
/linux-4.1.27/Documentation/networking/
Dpacket_mmap.txt997 This has the side-effect, that packets sent through PF_PACKET will bypass the
Dbonding.txt1876 may bypass the bonding driver (because outgoing traffic to, in this