/linux-4.4.14/drivers/video/fbdev/omap2/dss/ |
D | hdmi_wp.c | 22 void hdmi_wp_dump(struct hdmi_wp_data *wp, struct seq_file *s) in hdmi_wp_dump() argument 24 #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, hdmi_read_reg(wp->base, r)) in hdmi_wp_dump() 46 u32 hdmi_wp_get_irqstatus(struct hdmi_wp_data *wp) in hdmi_wp_get_irqstatus() argument 48 return hdmi_read_reg(wp->base, HDMI_WP_IRQSTATUS); in hdmi_wp_get_irqstatus() 51 void hdmi_wp_set_irqstatus(struct hdmi_wp_data *wp, u32 irqstatus) in hdmi_wp_set_irqstatus() argument 53 hdmi_write_reg(wp->base, HDMI_WP_IRQSTATUS, irqstatus); in hdmi_wp_set_irqstatus() 55 hdmi_read_reg(wp->base, HDMI_WP_IRQSTATUS); in hdmi_wp_set_irqstatus() 58 void hdmi_wp_set_irqenable(struct hdmi_wp_data *wp, u32 mask) in hdmi_wp_set_irqenable() argument 60 hdmi_write_reg(wp->base, HDMI_WP_IRQENABLE_SET, mask); in hdmi_wp_set_irqenable() 63 void hdmi_wp_clear_irqenable(struct hdmi_wp_data *wp, u32 mask) in hdmi_wp_clear_irqenable() argument [all …]
|
D | hdmi.h | 243 struct hdmi_wp_data *wp; member 287 int hdmi_wp_video_start(struct hdmi_wp_data *wp); 288 void hdmi_wp_video_stop(struct hdmi_wp_data *wp); 289 void hdmi_wp_dump(struct hdmi_wp_data *wp, struct seq_file *s); 290 u32 hdmi_wp_get_irqstatus(struct hdmi_wp_data *wp); 291 void hdmi_wp_set_irqstatus(struct hdmi_wp_data *wp, u32 irqstatus); 292 void hdmi_wp_set_irqenable(struct hdmi_wp_data *wp, u32 mask); 293 void hdmi_wp_clear_irqenable(struct hdmi_wp_data *wp, u32 mask); 294 int hdmi_wp_set_phy_pwr(struct hdmi_wp_data *wp, enum hdmi_phy_pwr val); 295 int hdmi_wp_set_pll_pwr(struct hdmi_wp_data *wp, enum hdmi_pll_pwr val); [all …]
|
D | hdmi5.c | 76 struct hdmi_wp_data *wp = data; in hdmi_irq_handler() local 79 irqstatus = hdmi_wp_get_irqstatus(wp); in hdmi_irq_handler() 80 hdmi_wp_set_irqstatus(wp, irqstatus); in hdmi_irq_handler() 92 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_OFF); in hdmi_irq_handler() 104 hdmi_wp_set_irqstatus(wp, HDMI_IRQ_LINK_CONNECT | in hdmi_irq_handler() 107 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON); in hdmi_irq_handler() 112 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_TXON); in hdmi_irq_handler() 114 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON); in hdmi_irq_handler() 199 hdmi_wp_clear_irqenable(&hdmi.wp, 0xffffffff); in hdmi_power_on_full() 200 hdmi_wp_set_irqstatus(&hdmi.wp, in hdmi_power_on_full() [all …]
|
D | hdmi4.c | 72 struct hdmi_wp_data *wp = data; in hdmi_irq_handler() local 75 irqstatus = hdmi_wp_get_irqstatus(wp); in hdmi_irq_handler() 76 hdmi_wp_set_irqstatus(wp, irqstatus); in hdmi_irq_handler() 86 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_OFF); in hdmi_irq_handler() 88 hdmi_wp_set_irqstatus(wp, HDMI_IRQ_LINK_CONNECT | in hdmi_irq_handler() 91 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON); in hdmi_irq_handler() 93 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_TXON); in hdmi_irq_handler() 95 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON); in hdmi_irq_handler() 169 struct hdmi_wp_data *wp = &hdmi.wp; in hdmi_power_on_full() local 177 hdmi_wp_clear_irqenable(wp, 0xffffffff); in hdmi_power_on_full() [all …]
|
D | hdmi_pll.c | 104 struct hdmi_wp_data *wp = pll->wp; in hdmi_pll_enable() local 109 r = hdmi_wp_set_pll_pwr(wp, HDMI_PLLPWRCMD_BOTHON_ALLCLKS); in hdmi_pll_enable() 119 struct hdmi_wp_data *wp = pll->wp; in hdmi_pll_disable() local 121 hdmi_wp_set_pll_pwr(wp, HDMI_PLLPWRCMD_ALLOFF); in hdmi_pll_disable() 222 struct hdmi_wp_data *wp) in hdmi_pll_init() argument 227 pll->wp = wp; in hdmi_pll_init()
|
D | hdmi4_core.h | 264 void hdmi4_configure(struct hdmi_core_data *core, struct hdmi_wp_data *wp, 269 int hdmi4_audio_start(struct hdmi_core_data *core, struct hdmi_wp_data *wp); 270 void hdmi4_audio_stop(struct hdmi_core_data *core, struct hdmi_wp_data *wp); 271 int hdmi4_audio_config(struct hdmi_core_data *core, struct hdmi_wp_data *wp,
|
D | hdmi4_core.c | 310 struct hdmi_wp_data *wp, struct hdmi_config *cfg) in hdmi4_configure() argument 323 hdmi_wp_video_config_timing(wp, &video_timing); in hdmi4_configure() 328 hdmi_wp_video_config_format(wp, &video_format); in hdmi4_configure() 330 hdmi_wp_video_config_interface(wp, &video_timing); in hdmi4_configure() 687 int hdmi4_audio_config(struct hdmi_core_data *core, struct hdmi_wp_data *wp, in hdmi4_audio_config() argument 857 hdmi_wp_audio_config_dma(wp, &audio_dma); in hdmi4_audio_config() 858 hdmi_wp_audio_config_format(wp, &audio_format); in hdmi4_audio_config() 869 int hdmi4_audio_start(struct hdmi_core_data *core, struct hdmi_wp_data *wp) in hdmi4_audio_start() argument 874 hdmi_wp_audio_core_req_enable(wp, true); in hdmi4_audio_start() 879 void hdmi4_audio_stop(struct hdmi_core_data *core, struct hdmi_wp_data *wp) in hdmi4_audio_stop() argument [all …]
|
D | hdmi5_core.c | 600 void hdmi5_configure(struct hdmi_core_data *core, struct hdmi_wp_data *wp, in hdmi5_configure() argument 613 hdmi_wp_video_config_timing(wp, &video_timing); in hdmi5_configure() 618 hdmi_wp_video_config_format(wp, &video_format); in hdmi5_configure() 620 hdmi_wp_video_config_interface(wp, &video_timing); in hdmi5_configure() 798 int hdmi5_audio_config(struct hdmi_core_data *core, struct hdmi_wp_data *wp, in hdmi5_audio_config() argument 887 hdmi_wp_audio_config_dma(wp, &audio_dma); in hdmi5_audio_config() 888 hdmi_wp_audio_config_format(wp, &audio_format); in hdmi5_audio_config()
|
D | hdmi5_core.h | 298 void hdmi5_configure(struct hdmi_core_data *core, struct hdmi_wp_data *wp, 302 int hdmi5_audio_config(struct hdmi_core_data *core, struct hdmi_wp_data *wp,
|
/linux-4.4.14/arch/powerpc/math-emu/ |
D | math_efp.c | 112 u32 wp[2]; member 203 vc.wp[0] = current->thread.evr[fc]; in do_spe_mathemu() 204 vc.wp[1] = regs->gpr[fc]; in do_spe_mathemu() 205 va.wp[0] = current->thread.evr[fa]; in do_spe_mathemu() 206 va.wp[1] = regs->gpr[fa]; in do_spe_mathemu() 207 vb.wp[0] = current->thread.evr[fb]; in do_spe_mathemu() 208 vb.wp[1] = regs->gpr[fb]; in do_spe_mathemu() 213 pr_debug("vc: %08x %08x\n", vc.wp[0], vc.wp[1]); in do_spe_mathemu() 214 pr_debug("va: %08x %08x\n", va.wp[0], va.wp[1]); in do_spe_mathemu() 215 pr_debug("vb: %08x %08x\n", vb.wp[0], vb.wp[1]); in do_spe_mathemu() [all …]
|
/linux-4.4.14/sound/hda/ |
D | hdac_controller.c | 66 bus->rirb.wp = bus->rirb.rp = 0; in snd_hdac_bus_init_cmd_io() 118 unsigned int wp, rp; in snd_hdac_bus_send_cmd() local 125 wp = snd_hdac_chip_readw(bus, CORBWP); in snd_hdac_bus_send_cmd() 126 if (wp == 0xffff) { in snd_hdac_bus_send_cmd() 131 wp++; in snd_hdac_bus_send_cmd() 132 wp %= AZX_MAX_CORB_ENTRIES; in snd_hdac_bus_send_cmd() 135 if (wp == rp) { in snd_hdac_bus_send_cmd() 142 bus->corb.buf[wp] = cpu_to_le32(val); in snd_hdac_bus_send_cmd() 143 snd_hdac_chip_writew(bus, CORBWP, wp); in snd_hdac_bus_send_cmd() 161 unsigned int rp, wp; in snd_hdac_bus_update_rirb() local [all …]
|
D | hdac_bus.c | 131 unsigned int wp; in snd_hdac_bus_queue_event() local 137 wp = (bus->unsol_wp + 1) % HDA_UNSOL_QUEUE_SIZE; in snd_hdac_bus_queue_event() 138 bus->unsol_wp = wp; in snd_hdac_bus_queue_event() 140 wp <<= 1; in snd_hdac_bus_queue_event() 141 bus->unsol_queue[wp] = res; in snd_hdac_bus_queue_event() 142 bus->unsol_queue[wp + 1] = res_ex; in snd_hdac_bus_queue_event()
|
/linux-4.4.14/lib/mpi/ |
D | generic_mpih-lshift.c | 41 mpihelp_lshift(mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize, unsigned int cnt) in mpihelp_lshift() argument 49 wp += 1; in mpihelp_lshift() 57 wp[i] = (high_limb << sh_1) | (low_limb >> sh_2); in mpihelp_lshift() 60 wp[i] = high_limb << sh_1; in mpihelp_lshift()
|
D | generic_mpih-rshift.c | 42 mpihelp_rshift(mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize, unsigned cnt) in mpihelp_rshift() argument 50 wp -= 1; in mpihelp_rshift() 57 wp[i] = (low_limb >> sh_1) | (high_limb << sh_2); in mpihelp_rshift() 60 wp[i] = low_limb >> sh_1; in mpihelp_rshift()
|
D | mpi-internal.h | 232 mpi_limb_t mpihelp_lshift(mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize, 234 mpi_limb_t mpihelp_rshift(mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize,
|
/linux-4.4.14/arch/ia64/kernel/ |
D | patch.c | 146 u64 *wp; in ia64_patch_mckinley_e9() local 159 wp = (u64 *) ia64_imva((char *) offp + *offp); in ia64_patch_mckinley_e9() 160 wp[0] = 0x0000000100000011UL; /* nop.m 0; nop.i 0; br.ret.sptk.many b6 */ in ia64_patch_mckinley_e9() 161 wp[1] = 0x0084006880000200UL; in ia64_patch_mckinley_e9() 162 wp[2] = 0x0000000100000000UL; /* nop.m 0; nop.i 0; nop.i 0 */ in ia64_patch_mckinley_e9() 163 wp[3] = 0x0004000000000200UL; in ia64_patch_mckinley_e9() 164 ia64_fc(wp); ia64_fc(wp + 2); in ia64_patch_mckinley_e9()
|
/linux-4.4.14/lib/raid6/ |
D | neon.uc | 59 register unative_t wd$$, wq$$, wp$$, w1$$, w2$$; 67 wq$$ = wp$$ = vld1q_u8(&dptr[z0][d+$$*NSIZE]); 70 wp$$ = veorq_u8(wp$$, wd$$); 78 vst1q_u8(&p[d+NSIZE*$$], wp$$); 90 register unative_t wd$$, wq$$, wp$$, w1$$, w2$$; 99 wp$$ = veorq_u8(vld1q_u8(&p[d+$$*NSIZE]), wq$$); 104 wp$$ = veorq_u8(wp$$, wd$$); 123 vst1q_u8(&p[d+NSIZE*$$], wp$$);
|
D | int.uc | 88 unative_t wd$$, wq$$, wp$$, w1$$, w2$$; 95 wq$$ = wp$$ = *(unative_t *)&dptr[z0][d+$$*NSIZE]; 98 wp$$ ^= wd$$; 105 *(unative_t *)&p[d+NSIZE*$$] = wp$$; 117 unative_t wd$$, wq$$, wp$$, w1$$, w2$$; 125 wq$$ = wp$$ = *(unative_t *)&dptr[z0][d+$$*NSIZE]; 128 wp$$ ^= wd$$; 142 *(unative_t *)&p[d+NSIZE*$$] ^= wp$$;
|
D | tilegx.uc | 56 u64 wd$$, wq$$, wp$$, w1$$, w2$$; 66 wq$$ = wp$$ = *z0ptr++; 69 wp$$ = wp$$ ^ wd$$; 76 *p++ = wp$$;
|
D | altivec.uc | 74 unative_t wd$$, wq$$, wp$$, w1$$, w2$$; 82 wq$$ = wp$$ = *(unative_t *)&dptr[z0][d+$$*NSIZE]; 85 wp$$ = vec_xor(wp$$, wd$$); 92 *(unative_t *)&p[d+NSIZE*$$] = wp$$;
|
/linux-4.4.14/sound/pci/lola/ |
D | lola.c | 102 unsigned int wp = chip->corb.wp + 1; in corb_send_verb() local 103 wp %= LOLA_CORB_ENTRIES; in corb_send_verb() 104 chip->corb.wp = wp; in corb_send_verb() 105 chip->corb.buf[wp * 2] = cpu_to_le32(data); in corb_send_verb() 106 chip->corb.buf[wp * 2 + 1] = cpu_to_le32(extdata); in corb_send_verb() 107 lola_writew(chip, BAR0, CORBWP, wp); in corb_send_verb() 125 unsigned int rp, wp; in lola_update_rirb() local 128 wp = lola_readw(chip, BAR0, RIRBWP); in lola_update_rirb() 129 if (wp == chip->rirb.wp) in lola_update_rirb() 131 chip->rirb.wp = wp; in lola_update_rirb() [all …]
|
D | lola.h | 225 unsigned short rp, wp; /* read/write pointers */ member
|
/linux-4.4.14/arch/arm/kernel/ |
D | hw_breakpoint.c | 696 struct perf_event *wp, **slots; in watchpoint_handler() local 705 wp = slots[i]; in watchpoint_handler() 707 if (wp == NULL) in watchpoint_handler() 710 info = counter_arch_bp(wp); in watchpoint_handler() 719 info->trigger = wp->attr.bp_addr; in watchpoint_handler() 741 if (!(access & hw_breakpoint_type(wp))) in watchpoint_handler() 750 perf_bp_event(wp, regs); in watchpoint_handler() 757 if (!wp->overflow_handler) in watchpoint_handler() 758 enable_single_step(wp, instruction_pointer(regs)); in watchpoint_handler() 768 struct perf_event *wp, **slots; in watchpoint_single_step_handler() local [all …]
|
/linux-4.4.14/arch/powerpc/platforms/pseries/ |
D | dtl.c | 79 struct dtl_entry *wp = dtlr->write_ptr; in consume_dtle() local 82 if (!wp) in consume_dtle() 85 *wp = *dtle; in consume_dtle() 92 ++wp; in consume_dtle() 93 if (wp == dtlr->buf_end) in consume_dtle() 94 wp = dtlr->buf; in consume_dtle() 95 dtlr->write_ptr = wp; in consume_dtle()
|
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/ |
D | marvell,dove-pinctrl.txt | 19 mpp1 1 gpio, pmu, uart2(cts), sdio0(wp), lcd1(pwm), pmu* 25 mpp5 5 gpio, pmu, uart3(cts), sdio1(wp), spi1(cs), pmu* 35 mpp13 13 gpio, pmu, uart2(cts), audio1(extclk), sdio1(wp), 40 mpp17 17 gpio, uart3(cts), sdio0(wp), ac97(sdi2), twsi(sda), 46 mpp21 21 gpio, sdio0(wp), sdio1(wp), spi1(cs), lcd-spi(cs0),
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | zx296702-ad1.dts | 24 disable-wp; 37 disable-wp;
|
D | omap5-sbc-t54.dts | 35 wp-inverted; 37 wp-gpios = <&gpio8 5 GPIO_ACTIVE_LOW>; /* gpio8_229 */
|
D | kirkwood-sheevaplug-esata.dts | 28 wp-gpios = <&gpio1 15 GPIO_ACTIVE_HIGH>;
|
D | rk3288-evb.dtsi | 167 disable-wp; 185 disable-wp; /* wp not hooked up */
|
D | rk3288-veyron-pinky.dts | 99 sdmmc_wp_gpio: sdmmc-wp-gpio { 122 wp-gpios = <&gpio7 10 GPIO_ACTIVE_HIGH>;
|
D | kirkwood-db.dtsi | 52 wp-gpios = <&gpio1 5 GPIO_ACTIVE_HIGH>;
|
D | omap3-sbc-t3517.dts | 59 wp-gpios = <&gpio2 27 GPIO_ACTIVE_HIGH>; /* gpio_59 */
|
D | exynos5410-smdk5410.dts | 61 disable-wp;
|
D | imx23-stmp378x_devb.dts | 30 wp-gpios = <&gpio1 30 0>;
|
D | zynq-zc706.dts | 235 mux-wp { 240 conf-wp {
|
D | rk3288-rock2-square.dts | 96 disable-wp; /* wp not hooked up */
|
D | kirkwood-sheevaplug-common.dtsi | 42 pmx_sdio_wp: pmx-sdio-wp {
|
D | omap3-lilly-dbb056.dts | 88 OMAP3_CORE1_IOPAD(0x219a, PIN_INPUT_PULLUP | MUX_MODE4) /* uart3_cts_rctx.gpio_163 -> wp */ 118 wp-gpios = <&gpio6 3 GPIO_ACTIVE_HIGH>; /* gpio_163 */
|
D | imx6qdl-rex.dtsi | 343 wp-gpios = <&gpio2 3 GPIO_ACTIVE_HIGH>; 352 wp-gpios = <&gpio2 1 GPIO_ACTIVE_HIGH>;
|
D | exynos5260-xyref5260.dts | 94 disable-wp;
|
D | zynq-zc702.dts | 314 mux-wp { 319 conf-wp {
|
D | rk3066a-bqcurie2.dts | 191 disable-wp; 203 disable-wp;
|
D | rk3066a-rayeager.dts | 176 disable-wp; 328 disable-wp; 341 disable-wp;
|
D | imx6q-tx6q-1020-comtft.dts | 134 fsl,wp-controller;
|
D | imx28-evk.dts | 38 wp-gpios = <&gpio2 12 0>; 46 wp-gpios = <&gpio0 28 0>;
|
D | imx6qdl-phytec-pfla02.dtsi | 413 wp-gpios = <&gpio1 2 GPIO_ACTIVE_HIGH>; 422 wp-gpios = <&gpio1 29 GPIO_ACTIVE_HIGH>;
|
D | rk3288-firefly.dtsi | 214 disable-wp; 490 disable-wp; 505 disable-wp;
|
D | rk3288-popmetal.dts | 168 disable-wp; 183 disable-wp; /* wp not hooked up */
|
D | imx6sx-sabreauto.dts | 53 wp-gpios = <&gpio3 19 GPIO_ACTIVE_HIGH>;
|
D | imx53-voipac-bsb.dts | 123 wp-gpios = <&gpio2 19 GPIO_ACTIVE_HIGH>;
|
D | imx23-evk.dts | 36 wp-gpios = <&gpio1 30 0>;
|
D | imx6q-tx6q-1020.dts | 208 fsl,wp-controller;
|
D | at91sam9263ek.dts | 69 wp-gpios = <&pioE 19 GPIO_ACTIVE_HIGH>;
|
D | ste-nomadik-nhk15.dts | 172 wp-gpios = <&stmpe_gpio44 18 GPIO_ACTIVE_HIGH>;
|
D | phy3250.dts | 161 wp-gpios = <&gpio 3 0 0>;
|
D | imx6dl-riotboard.dts | 309 wp-gpios = <&gpio1 2 GPIO_ACTIVE_HIGH>; 318 wp-gpios = <&gpio7 1 GPIO_ACTIVE_HIGH>;
|
D | imx6sx-sdb.dtsi | 297 wp-gpios = <&gpio2 15 GPIO_ACTIVE_HIGH>; 308 wp-gpios = <&gpio6 20 GPIO_ACTIVE_HIGH>;
|
D | r8a7778-bockw.dts | 178 wp-gpios = <&gpio3 18 GPIO_ACTIVE_HIGH>;
|
D | imx53-ard.dts | 107 wp-gpios = <&gpio1 9 GPIO_ACTIVE_HIGH>;
|
D | dm8168-evm.dts | 159 wp-gpios = <&gpio2 8 GPIO_ACTIVE_LOW>;
|
D | berlin2q-marvell-dmp.dts | 92 sdhci,wp-inverted;
|
D | omap3-pandora-common.dtsi | 497 * your board has good switches, feel free to uncomment wp-gpios below. 505 /*wp-gpios = <&gpio4 30 GPIO_ACTIVE_HIGH>;*/ /* GPIO_126 */ 514 /*wp-gpios = <&gpio4 31 GPIO_ACTIVE_HIGH>;*/ /* GPIO_127 */
|
D | imx6qdl-sabresd.dtsi | 573 wp-gpios = <&gpio2 3 GPIO_ACTIVE_HIGH>; 582 wp-gpios = <&gpio2 1 GPIO_ACTIVE_HIGH>;
|
D | imx53-tx53.dtsi | 187 fsl,wp-controller; 195 fsl,wp-controller;
|
D | imx6q-arm2.dts | 201 wp-gpios = <&gpio6 14 GPIO_ACTIVE_HIGH>;
|
D | imx6sl-evk.dts | 621 wp-gpios = <&gpio4 6 GPIO_ACTIVE_HIGH>; 631 wp-gpios = <&gpio4 29 GPIO_ACTIVE_HIGH>;
|
D | imx51-babbage.dts | 309 wp-gpios = <&gpio1 1 GPIO_ACTIVE_HIGH>; 317 wp-gpios = <&gpio1 5 GPIO_ACTIVE_HIGH>;
|
D | bcm5301x.dtsi | 190 brcm,nand-has-wp;
|
D | imx53-smd.dts | 45 wp-gpios = <&gpio4 11 GPIO_ACTIVE_HIGH>;
|
D | r8a7791-porter.dts | 169 wp-gpios = <&gpio6 7 GPIO_ACTIVE_HIGH>;
|
D | armada-388-rd.dts | 95 wp-inverted;
|
D | imx53-tqma53.dtsi | 44 wp-gpios = <&gpio1 2 GPIO_ACTIVE_HIGH>;
|
D | ea3250.dts | 143 wp-gpios = <&pca9532 5 0>;
|
D | imx28-m28evk.dts | 28 wp-gpios = <&gpio3 10 0>;
|
D | r8a7791-koelsch.dts | 450 wp-gpios = <&gpio6 7 GPIO_ACTIVE_HIGH>; 461 wp-gpios = <&gpio6 15 GPIO_ACTIVE_HIGH>;
|
D | imx6qdl-tx6.dtsi | 685 fsl,wp-controller; 695 fsl,wp-controller;
|
D | rk3288-veyron-speedy.dts | 97 disable-wp;
|
D | armada-388-db.dts | 157 wp-inverted;
|
D | r8a7791-henninger.dts | 185 wp-gpios = <&gpio6 7 GPIO_ACTIVE_HIGH>;
|
D | imx27-phytec-phycore-rdk.dts | 280 wp-gpios = <&gpio3 28 GPIO_ACTIVE_HIGH>;
|
D | at91sam9m10g45ek.dts | 109 wp-gpios = <&pioD 29 GPIO_ACTIVE_HIGH>;
|
D | imx53-m53evk.dts | 128 wp-gpios = <&gpio1 9 GPIO_ACTIVE_HIGH>;
|
D | rk3288-veyron-jaq.dts | 112 disable-wp;
|
D | armada-375-db.dts | 160 wp-gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>;
|
D | rk3288-veyron.dtsi | 153 disable-wp; 554 fw_wp_ap: fw-wp-ap {
|
D | rk3188.dtsi | 442 sd0_wp: sd0-wp { 475 sd1_wp: sd1-wp {
|
D | rk3288-veyron-minnie.dts | 150 disable-wp;
|
D | imx25-pdk.dts | 119 wp-gpios = <&gpio2 0 GPIO_ACTIVE_HIGH>;
|
D | rk3288-veyron-jerry.dts | 109 disable-wp;
|
D | imx53-qsb-common.dtsi | 151 wp-gpios = <&gpio3 12 GPIO_ACTIVE_HIGH>;
|
D | rk3066a.dtsi | 487 sd0_wp: sd0-wp { 516 sd1_wp: sd1-wp {
|
D | bcm-cygnus.dtsi | 242 brcm,nand-has-wp;
|
D | dove-sbc-a510.dts | 175 wp-gpios = <&gpio_ext 10 GPIO_ACTIVE_LOW>;
|
D | rk3288-rock2-som.dtsi | 81 disable-wp;
|
D | stih416-pinctrl.dtsi | 388 spi-fsm-wp = <&pio12 7 ALT1 OUT>; 530 wp = <&pio15 3 ALT4 IN>;
|
D | exynos5250-smdk5250.dts | 377 disable-wp;
|
D | tegra20-harmony.dts | 614 wp-gpios = <&gpio TEGRA_GPIO(H, 1) GPIO_ACTIVE_HIGH>; 622 wp-gpios = <&gpio TEGRA_GPIO(H, 3) GPIO_ACTIVE_HIGH>;
|
D | imx6q-tbs2910.dts | 264 wp-gpios = <&gpio2 1 GPIO_ACTIVE_HIGH>;
|
D | vexpress-v2m-rs1.dtsi | 135 wp-gpios = <&v2m_mmc_gpios 1 0>;
|
D | tegra20-trimslice.dts | 371 wp-gpios = <&gpio TEGRA_GPIO(P, 2) GPIO_ACTIVE_HIGH>;
|
D | vexpress-v2m.dtsi | 134 wp-gpios = <&v2m_mmc_gpios 1 0>;
|
D | rk3188-radxarock.dts | 309 disable-wp;
|
D | rk3288-r89.dts | 344 disable-wp;
|
D | am335x-nano.dts | 375 wp-gpios = <&gpio3 18 0>;
|
D | armada-388-gp.dts | 225 wp-inverted;
|
D | imx7d-sdb.dts | 288 wp-gpios = <&gpio5 1 GPIO_ACTIVE_HIGH>;
|
D | imx6qdl-sabreauto.dtsi | 608 wp-gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>;
|
D | tegra20-tamonten.dtsi | 495 wp-gpios = <&gpio TEGRA_GPIO(H, 3) GPIO_ACTIVE_HIGH>;
|
D | arm-realview-pb1176.dts | 324 wp-gpios = <&fpga_gpio1 1 GPIO_ACTIVE_HIGH>;
|
D | exynos5250-arndale.dts | 551 disable-wp;
|
D | tegra20-paz00.dts | 481 wp-gpios = <&gpio TEGRA_GPIO(H, 1) GPIO_ACTIVE_HIGH>;
|
D | imx6qdl-sabrelite.dtsi | 595 wp-gpios = <&gpio7 1 GPIO_ACTIVE_HIGH>;
|
D | imx6qdl-aristainetos2.dtsi | 404 wp-gpios = <&gpio2 10 GPIO_ACTIVE_HIGH>;
|
D | exynos5250-snow-common.dtsi | 544 wp-gpios = <&gpc2 1 GPIO_ACTIVE_HIGH>;
|
D | tegra20-whistler.dts | 551 wp-gpios = <&gpio TEGRA_GPIO(V, 5) GPIO_ACTIVE_HIGH>;
|
D | tegra20-ventana.dts | 562 wp-gpios = <&gpio TEGRA_GPIO(H, 1) GPIO_ACTIVE_HIGH>;
|
D | tegra30-cardhu.dtsi | 384 wp-gpios = <&gpio TEGRA_GPIO(T, 3) GPIO_ACTIVE_HIGH>;
|
D | stih415-pinctrl.dtsi | 442 wp = <&pio15 3 ALT4 IN>;
|
D | rk3288.dtsi | 1187 sdio0_wp: sdio0-wp { 1220 sdio1_wp: sdio1-wp {
|
D | tegra20-seaboard.dts | 768 wp-gpios = <&gpio TEGRA_GPIO(H, 1) GPIO_ACTIVE_HIGH>;
|
D | omap4.dtsi | 1000 reg-names = "wp", "pll", "phy", "core";
|
D | tegra124-venice2.dts | 901 wp-gpios = <&gpio TEGRA_GPIO(Q, 4) GPIO_ACTIVE_LOW>;
|
D | omap5.dtsi | 1068 reg-names = "wp", "pll", "phy", "core";
|
D | tegra114-dalmore.dts | 1110 wp-gpios = <&gpio TEGRA_GPIO(Q, 4) GPIO_ACTIVE_HIGH>;
|
D | atlas7.dtsi | 1475 wp-inverted;
|
D | stih407-pinctrl.dtsi | 1156 spi-fsm-wp = <&pio40 4 ALT1 OUT>;
|
D | tegra124-nyan-big.dts | 19 wp-gpios = <&gpio TEGRA_GPIO(Q, 4) GPIO_ACTIVE_LOW>;
|
D | dra7.dtsi | 1599 reg-names = "wp", "pll", "phy", "core";
|
D | tegra124-jetson-tk1.dts | 1693 wp-gpios = <&gpio TEGRA_GPIO(Q, 4) GPIO_ACTIVE_HIGH>;
|
D | tegra30-beaver.dts | 1914 wp-gpios = <&gpio TEGRA_GPIO(T, 3) GPIO_ACTIVE_HIGH>;
|
/linux-4.4.14/drivers/media/pci/saa7164/ |
D | saa7164-core.c | 371 u32 wp, mcb, rp, cnt = 0; in saa7164_work_enchandler() local 398 wp = saa7164_readl(port->bufcounter); in saa7164_work_enchandler() 399 if (wp > (port->hwcfg.buffercount - 1)) { in saa7164_work_enchandler() 400 printk(KERN_ERR "%s() illegal buf count %d\n", __func__, wp); in saa7164_work_enchandler() 405 if (wp == 0) in saa7164_work_enchandler() 408 mcb = wp - 1; in saa7164_work_enchandler() 448 u32 wp, mcb, rp, cnt = 0; in saa7164_work_vbihandler() local 474 wp = saa7164_readl(port->bufcounter); in saa7164_work_vbihandler() 475 if (wp > (port->hwcfg.buffercount - 1)) { in saa7164_work_vbihandler() 476 printk(KERN_ERR "%s() illegal buf count %d\n", __func__, wp); in saa7164_work_vbihandler() [all …]
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/ |
D | pci.h | 330 static inline u16 calc_fifo_space(u16 rp, u16 wp) in calc_fifo_space() argument 332 if (rp <= wp) in calc_fifo_space() 333 return RTL_PCI_MAX_RX_COUNT - 1 + rp - wp; in calc_fifo_space() 334 return rp - wp - 1; in calc_fifo_space()
|
/linux-4.4.14/Documentation/devicetree/bindings/mmc/ |
D | fsl-imx-esdhc.txt | 21 - fsl,wp-controller : Indicate to use controller internal write protection 43 fsl,wp-controller; 51 wp-gpios = <&gpio1 5 0>; /* GPIO1_5 */
|
D | mmc.txt | 19 - wp-gpios: Specify GPIOs for write protection, see gpio binding 22 - wp-inverted: when present, polarity on the WP line is inverted. See the note 24 - disable-wp: When set no physical WP line is present. This property should 27 logic it is sufficient to not specify wp-gpios property in the absence of a WP 57 logic applies to the "wp-inverted" property. 60 specified in cd-gpios and wp-gpios properties, or as dedicated pins. Polarity of 119 wp-gpios = <&gpio 70 0>;
|
D | fsl-esdhc.txt | 14 - sdhci,wp-inverted : specifies that eSDHC controller reports 16 "wp-inverted" property.
|
D | k3-dw-mshc.txt | 44 disable-wp; 56 disable-wp;
|
D | synopsys-dw-mshc.txt | 28 * wp-gpios: specifies the write protect gpio line. The format of the 32 * disable-wp: If the wp-gpios property isn't present then (by default) 36 want write protect. In that case specify 'disable-wp'.
|
D | pxa-mmc.txt | 23 wp-gpios = <&gpio 24 0>;
|
D | img-dw-mshc.txt | 28 disable-wp;
|
D | nvidia,tegra20-sdhci.txt | 35 wp-gpios = <&gpio 57 0>; /* gpio PH1 */
|
D | atmel-hsmci.txt | 45 - wp-gpios: specify GPIOs for write protection
|
/linux-4.4.14/lib/ |
D | inflate.c | 169 #define wp outcnt macro 170 #define flush_output(w) (wp=(w),flush_window()) 609 w = wp; /* initialize window position */ in inflate_codes() 690 wp = w; /* restore global window pointer */ in inflate_codes() 716 w = wp; /* initialize window position */ in inflate_stored() 749 wp = w; /* restore global window pointer */ in inflate_stored() 1092 wp = 0; in inflate() 1120 flush_output(wp); in inflate()
|
/linux-4.4.14/arch/arm64/kernel/ |
D | hw_breakpoint.c | 664 struct perf_event *wp, **slots; in watchpoint_handler() local 675 wp = slots[i]; in watchpoint_handler() 677 if (wp == NULL) in watchpoint_handler() 680 info = counter_arch_bp(wp); in watchpoint_handler() 708 if (!(access & hw_breakpoint_type(wp))) in watchpoint_handler() 712 perf_bp_event(wp, regs); in watchpoint_handler() 715 if (!wp->overflow_handler) in watchpoint_handler()
|
/linux-4.4.14/drivers/bus/ |
D | arm-ccn.c | 962 unsigned long wp = hw->config_base; in arm_ccn_pmu_xp_watchpoint_config() local 969 hw->event_base = CCN_XP_DT_CONFIG__DT_CFG__WATCHPOINT(wp); in arm_ccn_pmu_xp_watchpoint_config() 974 CCN_XP_DT_INTERFACE_SEL__DT_IO_SEL__SHIFT(wp)); in arm_ccn_pmu_xp_watchpoint_config() 976 CCN_XP_DT_INTERFACE_SEL__DT_IO_SEL__SHIFT(wp); in arm_ccn_pmu_xp_watchpoint_config() 978 CCN_XP_DT_INTERFACE_SEL__DT_DEV_SEL__SHIFT(wp)); in arm_ccn_pmu_xp_watchpoint_config() 980 CCN_XP_DT_INTERFACE_SEL__DT_DEV_SEL__SHIFT(wp); in arm_ccn_pmu_xp_watchpoint_config() 982 CCN_XP_DT_INTERFACE_SEL__DT_VC_SEL__SHIFT(wp)); in arm_ccn_pmu_xp_watchpoint_config() 984 CCN_XP_DT_INTERFACE_SEL__DT_VC_SEL__SHIFT(wp); in arm_ccn_pmu_xp_watchpoint_config() 988 writel(cmp_l & 0xffffffff, source->base + CCN_XP_DT_CMP_VAL_L(wp)); in arm_ccn_pmu_xp_watchpoint_config() 990 source->base + CCN_XP_DT_CMP_VAL_L(wp) + 4); in arm_ccn_pmu_xp_watchpoint_config() [all …]
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | mmu.txt | 52 pages, pae, pse, pse36, cr0.wp, and 1GB pages. Work is in progress to support 167 Contains the value of cr0.wp for which the page is valid. 169 Contains the value of cr4.smep && !cr0.wp for which the page is valid 171 treatment of cr0.wp=0 below). 173 Contains the value of cr4.smap && !cr0.wp for which the page is valid 175 treatment of cr0.wp=0 below). 338 Emulating cr0.wp 341 If tdp is not enabled, the host must keep cr0.wp=1 so page write protection 343 cr0.wp=1, this does not present a problem. However when the guest cr0.wp=0, 369 To prevent an spte that was converted into a kernel page with cr0.wp=0 [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/display/ti/ |
D | ti,dra7-dss.txt | 55 - reg: addresses and lengths of the register spaces for 'wp', 'pll', 'phy', 57 - reg-names: "wp", "pll", "phy", "core"
|
D | ti,omap5-dss.txt | 82 - reg: addresses and lengths of the register spaces for 'wp', 'pll', 'phy', 84 - reg-names: "wp", "pll", "phy", "core"
|
D | ti,omap4-dss.txt | 101 - reg: addresses and lengths of the register spaces for 'wp', 'pll', 'phy', 103 - reg-names: "wp", "pll", "phy", "core"
|
D | ti,omap-dss.txt | 74 reg-names = "wp", "pll", "phy", "core";
|
/linux-4.4.14/drivers/mtd/nand/ |
D | nandsim.c | 206 #define NS_STATUS_OK(ns) (NAND_STATUS_READY | (NAND_STATUS_WP * ((ns)->lines.wp == 0))) 363 int wp; /* write Protect */ member 900 struct weak_page *wp; in parse_weakpages() local 919 wp = kzalloc(sizeof(*wp), GFP_KERNEL); in parse_weakpages() 920 if (!wp) { in parse_weakpages() 924 wp->page_no = page_no; in parse_weakpages() 925 wp->max_writes = max_writes; in parse_weakpages() 926 list_add(&wp->list, &weak_pages); in parse_weakpages() 933 struct weak_page *wp; in write_error() local 935 list_for_each_entry(wp, &weak_pages, list) in write_error() [all …]
|
/linux-4.4.14/drivers/block/ |
D | pktcdvd.c | 1685 write_param_page *wp; in pkt_set_write_settings() local 1694 init_cdrom_command(&cgc, buffer, sizeof(*wp), CGC_DATA_READ); in pkt_set_write_settings() 1719 wp = (write_param_page *) &buffer[sizeof(struct mode_page_header) + pd->mode_offset]; in pkt_set_write_settings() 1721 wp->fp = pd->settings.fp; in pkt_set_write_settings() 1722 wp->track_mode = pd->settings.track_mode; in pkt_set_write_settings() 1723 wp->write_type = pd->settings.write_type; in pkt_set_write_settings() 1724 wp->data_block_type = pd->settings.block_mode; in pkt_set_write_settings() 1726 wp->multi_session = 0; in pkt_set_write_settings() 1729 wp->link_size = 7; in pkt_set_write_settings() 1730 wp->ls_v = 1; in pkt_set_write_settings() [all …]
|
/linux-4.4.14/drivers/block/drbd/ |
D | drbd_proc.c | 245 char wp; in drbd_seq_show() local 294 wp = nc ? nc->wire_protocol - DRBD_PROT_A + 'A' : ' '; in drbd_seq_show() 304 wp, in drbd_seq_show()
|
/linux-4.4.14/drivers/media/platform/sti/c8sectpfe/ |
D | c8sectpfe-core.c | 87 unsigned long wp, rp; in channel_swdemux_tsklet() local 94 wp = readl(channel->irec + DMA_PRDS_BUSWP_TP(0)); in channel_swdemux_tsklet() 100 if (wp < rp) in channel_swdemux_tsklet() 101 wp = channel->back_buffer_busaddr + FEI_BUFFER_SIZE; in channel_swdemux_tsklet() 103 size = wp - rp; in channel_swdemux_tsklet() 117 channel->tsin_id, channel, num_packets, buf, pos, rp, wp); in channel_swdemux_tsklet() 129 if (wp == (channel->back_buffer_busaddr + FEI_BUFFER_SIZE)) in channel_swdemux_tsklet() 133 writel(wp, channel->irec + DMA_PRDS_BUSWP_TP(0)); in channel_swdemux_tsklet()
|
/linux-4.4.14/arch/s390/include/asm/ |
D | nmi.h | 46 u64 wp : 1; /* 20 psw mwp validity */ member
|
/linux-4.4.14/drivers/atm/ |
D | firestream.c | 596 u32 wp; in submit_qentry() local 602 while ((wp = read_fs (dev, Q_WP (q->offset))) & Q_FULL) { in submit_qentry() 608 wp &= ~0xf; in submit_qentry() 609 cqe = bus_to_virt (wp); in submit_qentry() 620 int rp, wp; in submit_qentry() local 622 wp = read_fs (dev, Q_WP(q->offset)); in submit_qentry() 624 q->offset, rp, wp, wp-rp); in submit_qentry()
|
/linux-4.4.14/drivers/net/hamradio/ |
D | baycom_epp.c | 372 unsigned char *wp, *bp; in encode_hdlc() local 385 wp = bc->hdlctx.buf; in encode_hdlc() 390 *wp++ = 0x7e; in encode_hdlc() 411 *wp++ = bitbuf; in encode_hdlc() 419 *wp++ = bitbuf; in encode_hdlc() 424 bc->hdlctx.bufcnt = wp - bc->hdlctx.buf; in encode_hdlc()
|
/linux-4.4.14/arch/arm64/boot/dts/exynos/ |
D | exynos7-espresso.dts | 83 disable-wp;
|
/linux-4.4.14/arch/cris/include/arch-v32/arch/hwregs/ |
D | rt_trace_defs.h | 92 unsigned int wp : 1; member
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | ac14xx.dts | 170 wp-gpios = <&gpio_pic 24 0>; /* write protect */ 171 wp-inverted; /* WP active high */
|
D | mpc8377_wlan.dts | 153 sdhci,wp-inverted;
|
D | mpc8379_rdb.dts | 174 sdhci,wp-inverted;
|
D | mpc8377_rdb.dts | 176 sdhci,wp-inverted;
|
D | mpc8379_mds.dts | 160 sdhci,wp-inverted;
|
D | mpc8378_rdb.dts | 176 sdhci,wp-inverted;
|
D | mpc8378_mds.dts | 162 sdhci,wp-inverted;
|
D | mpc8377_mds.dts | 162 sdhci,wp-inverted;
|
/linux-4.4.14/arch/s390/kernel/ |
D | nmi.c | 226 if (!mci.wp) in s390_validate_registers()
|
/linux-4.4.14/drivers/acpi/ |
D | resource.c | 204 bool wp = addr->info.mem.write_protect; in acpi_decode_space() local 245 acpi_dev_memresource_flags(res, len, wp); in acpi_decode_space()
|
/linux-4.4.14/drivers/net/ethernet/smsc/ |
D | smc91x.h | 156 u16 *wp = (u16 *) p; in mcf_insw() local 158 *wp++ = readw(a); in mcf_insw() 163 u16 *wp = (u16 *) p; in mcf_outsw() local 165 writew(*wp++, a); in mcf_outsw()
|
/linux-4.4.14/Documentation/hwmon/ |
D | thmc50 | 14 Author: Krzysztof Helt <krzysztof.h1@wp.pl>
|
/linux-4.4.14/drivers/usb/gadget/udc/ |
D | omap_udc.c | 335 u16 *wp; in write_packet() local 342 wp = (u16 *)buf; in write_packet() 344 omap_writew(*wp++, UDC_DATA); in write_packet() 347 buf = (u8 *)wp; in write_packet() 400 u16 *wp; in read_packet() local 407 wp = (u16 *)buf; in read_packet() 409 *wp++ = omap_readw(UDC_DATA); in read_packet() 412 buf = (u8 *)wp; in read_packet()
|
/linux-4.4.14/Documentation/DocBook/ |
D | mtdnand.xml.db | 38 API-nand-check-wp
|
/linux-4.4.14/drivers/media/pci/ttpci/ |
D | av7110_av.c | 885 int wp; in dvb_video_add_event() local 889 wp = (events->eventw + 1) % MAX_VIDEO_EVENT; in dvb_video_add_event() 890 if (wp == events->eventr) { in dvb_video_add_event() 897 events->eventw = wp; in dvb_video_add_event()
|
/linux-4.4.14/arch/arm64/boot/dts/arm/ |
D | rtsm_ve-motherboard.dtsi | 94 wp-gpios = <&v2m_sysreg 1 0>;
|
D | juno-motherboard.dtsi | 231 wp-gpios = <&v2m_mmc_gpios 1 0>; */
|
D | vexpress-v2m-rs1.dtsi | 135 wp-gpios = <&v2m_mmc_gpios 1 0>;
|
/linux-4.4.14/drivers/mtd/nand/brcmnand/ |
D | brcmnand.c | 907 static void brcmnand_wp(struct mtd_info *mtd, int wp) in brcmnand_wp() argument 916 if (old_wp != wp) { in brcmnand_wp() 917 dev_dbg(ctrl->dev, "WP %s\n", wp ? "on" : "off"); in brcmnand_wp() 918 old_wp = wp; in brcmnand_wp() 920 brcmnand_set_wp(ctrl, wp); in brcmnand_wp()
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | l2cc.txt | 7 https://www.power.org/wp-content/uploads/2012/06/Power_ePAPR_APPROVED_v1.1.pdf
|
/linux-4.4.14/include/pcmcia/ |
D | cistpl.h | 110 u_char wp; member
|
/linux-4.4.14/Documentation/devicetree/bindings/mtd/ |
D | brcm,brcmnand.txt | 48 - brcm,nand-has-wp : Some versions of this IP include a write-protect
|
/linux-4.4.14/arch/arm64/boot/dts/rockchip/ |
D | rk3368-r88.dts | 191 disable-wp;
|
D | rk3368.dtsi | 739 sdio0_wp: sdio0-wp {
|
/linux-4.4.14/include/sound/ |
D | hdaudio.h | 239 unsigned short rp, wp; /* RIRB read/write pointers */ member
|
/linux-4.4.14/drivers/scsi/fcoe/ |
D | fcoe_ctlr.c | 1319 struct fip_wwn_desc *wp; in fcoe_ctlr_recv_clr_vlink() local 1387 wp = (struct fip_wwn_desc *)desc; in fcoe_ctlr_recv_clr_vlink() 1388 if (dlen < sizeof(*wp)) in fcoe_ctlr_recv_clr_vlink() 1390 if (get_unaligned_be64(&wp->fd_wwn) != fcf->switch_name) in fcoe_ctlr_recv_clr_vlink()
|
/linux-4.4.14/drivers/media/dvb-core/ |
D | dvb_frontend.c | 207 int wp; in dvb_frontend_add_event() local 216 wp = (events->eventw + 1) % MAX_EVENT; in dvb_frontend_add_event() 217 if (wp == events->eventr) { in dvb_frontend_add_event() 226 events->eventw = wp; in dvb_frontend_add_event()
|
/linux-4.4.14/drivers/mtd/maps/ |
D | pcmciamtd.c | 382 pr_debug("Region %d, wp = %u\n", i, t->dev[i].wp); in pcmciamtd_cistpl_device()
|
/linux-4.4.14/drivers/staging/slicoss/ |
D | slicoss.c | 1167 u16 *wp = eeprom; in slic_eeprom_cksum() local 1171 checksum += *(wp++); in slic_eeprom_cksum() 1176 checksum += *(u8 *)wp; in slic_eeprom_cksum()
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb3/ |
D | sge.c | 1078 struct work_request_hdr *wp = wrp; in write_wr_hdr_sgl() local 1118 wp->wr_lo = htonl(V_WR_LEN(WR_FLITS) | V_WR_GEN(ogen)) | wr_lo; in write_wr_hdr_sgl() 1119 wr_gen2((struct tx_desc *)wp, ogen); in write_wr_hdr_sgl()
|
/linux-4.4.14/drivers/pcmcia/ |
D | cistpl.c | 675 device->dev[i].wp = (*p & 0x08) ? 1 : 0; in parse_device()
|
/linux-4.4.14/drivers/pinctrl/sh-pfc/ |
D | pfc-r8a7778.c | 1561 #define SDHI_PFC_WPPN(name, wp) SH_PFC_MUX1(name, wp) argument
|
/linux-4.4.14/ |
D | MAINTAINERS | 5390 M: Stanislaw Gruszka <stf_xl@wp.pl> 6906 M: Jakub Kicinski <kubakici@wp.pl>
|