Home
last modified time | relevance | path

Searched refs:rstate (Results 1 – 24 of 24) sorted by relevance

/Linux-v5.15/drivers/net/slip/
Dslhc.c107 comp->rstate = kzalloc(rsize, GFP_KERNEL); in slhc_init()
108 if (! comp->rstate) in slhc_init()
144 kfree(comp->rstate); in slhc_init()
162 if ( comp->rstate != NULLSLSTATE ) in slhc_free()
163 kfree( comp->rstate ); in slhc_free()
519 if (!comp->rstate[x].initialized) in slhc_uncompress()
533 cs = &comp->rstate[comp->recv_current]; in slhc_uncompress()
677 cs = &comp->rstate[comp->recv_current = index]; in slhc_remember()
/Linux-v5.15/drivers/gpu/drm/rcar-du/
Drcar_du_vsp.c225 struct rcar_du_vsp_plane_state *rstate = to_rcar_vsp_plane_state(state); in rcar_du_vsp_plane_prepare_fb() local
236 ret = rcar_du_vsp_map_fb(vsp, state->fb, rstate->sg_tables); in rcar_du_vsp_plane_prepare_fb()
259 struct rcar_du_vsp_plane_state *rstate = to_rcar_vsp_plane_state(state); in rcar_du_vsp_plane_cleanup_fb() local
265 rcar_du_vsp_unmap_fb(vsp, state->fb, rstate->sg_tables); in rcar_du_vsp_plane_cleanup_fb()
273 struct rcar_du_vsp_plane_state *rstate = to_rcar_vsp_plane_state(new_plane_state); in rcar_du_vsp_plane_atomic_check() local
276 &rstate->format); in rcar_du_vsp_plane_atomic_check()
Drcar_du_plane.c614 struct rcar_du_plane_state *rstate = to_rcar_plane_state(new_plane_state); in rcar_du_plane_atomic_check() local
617 &rstate->format); in rcar_du_plane_atomic_check()
707 struct rcar_du_plane_state *rstate = to_rcar_plane_state(state); in rcar_du_plane_atomic_set_property() local
711 rstate->colorkey = val; in rcar_du_plane_atomic_set_property()
722 const struct rcar_du_plane_state *rstate = in rcar_du_plane_atomic_get_property() local
727 *val = rstate->colorkey; in rcar_du_plane_atomic_get_property()
Drcar_du_group.c328 struct rcar_du_crtc_state *rstate; in rcar_du_group_set_dpad_levels() local
332 rstate = to_rcar_crtc_state(rcrtc->crtc.state); in rcar_du_group_set_dpad_levels()
334 if (!(rstate->outputs & dpad_mask)) in rcar_du_group_set_dpad_levels()
Drcar_du_crtc.c689 struct rcar_du_crtc_state *rstate = to_rcar_crtc_state(crtc_state); in rcar_du_crtc_atomic_check() local
698 rstate->outputs = 0; in rcar_du_crtc_atomic_check()
709 rstate->outputs |= BIT(renc->output); in rcar_du_crtc_atomic_check()
719 struct rcar_du_crtc_state *rstate = to_rcar_crtc_state(crtc->state); in rcar_du_crtc_atomic_enable() local
732 rstate->outputs == BIT(RCAR_DU_OUTPUT_DPAD0)) { in rcar_du_crtc_atomic_enable()
756 struct rcar_du_crtc_state *rstate = to_rcar_crtc_state(old_state); in rcar_du_crtc_atomic_disable() local
763 rstate->outputs == BIT(RCAR_DU_OUTPUT_DPAD0)) { in rcar_du_crtc_atomic_disable()
/Linux-v5.15/drivers/regulator/
Dcore.c563 const struct regulator_state *rstate; in regulator_get_suspend_state_check() local
565 rstate = regulator_get_suspend_state(rdev, state); in regulator_get_suspend_state_check()
566 if (rstate == NULL) in regulator_get_suspend_state_check()
573 if (rstate->enabled != ENABLE_IN_SUSPEND && in regulator_get_suspend_state_check()
574 rstate->enabled != DISABLE_IN_SUSPEND) { in regulator_get_suspend_state_check()
581 return rstate; in regulator_get_suspend_state_check()
995 const struct regulator_state *rstate) in __suspend_set_state() argument
999 if (rstate->enabled == ENABLE_IN_SUSPEND && in __suspend_set_state()
1002 else if (rstate->enabled == DISABLE_IN_SUSPEND && in __suspend_set_state()
1013 if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) { in __suspend_set_state()
[all …]
/Linux-v5.15/tools/perf/util/
Dthread-stack.c101 enum retpoline_state_t rstate; member
164 ts->rstate = X86_RETPOLINE_POSSIBLE; in thread_stack__init()
1109 enum retpoline_state_t rstate; in thread_stack__process() local
1125 rstate = ts->rstate; in thread_stack__process()
1126 if (rstate == X86_RETPOLINE_DETECTED) in thread_stack__process()
1127 ts->rstate = X86_RETPOLINE_POSSIBLE; in thread_stack__process()
1172 if (!err && rstate == X86_RETPOLINE_POSSIBLE && to_al->sym && in thread_stack__process()
1175 ts->rstate = X86_RETPOLINE_DETECTED; in thread_stack__process()
1193 if (rstate == X86_RETPOLINE_DETECTED && ts->cnt > 2 && in thread_stack__process()
/Linux-v5.15/sound/pci/lx6464es/
Dlx_core.h110 int lx_pipe_state(struct lx6464es *chip, u32 pipe, int is_capture, u16 *rstate);
122 int *rstate);
Dlx_core.c597 int lx_pipe_state(struct lx6464es *chip, u32 pipe, int is_capture, u16 *rstate) in lx_pipe_state() argument
612 *rstate = (chip->rmh.stat[0] >> PSTATE_OFFSET) & 0x0F; in lx_pipe_state()
699 int *rstate) in lx_stream_state() argument
711 *rstate = (chip->rmh.stat[0] & SF_START) ? START_STATE : PAUSE_STATE; in lx_stream_state()
/Linux-v5.15/drivers/xen/xenbus/
Dxenbus_probe_frontend.c264 enum xenbus_state rstate = XenbusStateUnknown; in print_device_status() local
266 rstate = xenbus_read_driver_state(xendev->otherend); in print_device_status()
268 xendev->nodename, xendev->state, rstate); in print_device_status()
/Linux-v5.15/drivers/net/ppp/
Dppp_generic.c124 unsigned int rstate; /* receive state bits 6c */ member
814 val = ppp->flags | ppp->xstate | ppp->rstate; in ppp_ioctl()
2375 if (ppp->rc_state && (ppp->rstate & SC_DECOMP_RUN) && in ppp_receive_nonmp_frame()
2376 (ppp->rstate & (SC_DC_FERROR | SC_DC_ERROR)) == 0) in ppp_receive_nonmp_frame()
2379 if (ppp->flags & SC_MUST_COMP && ppp->rstate & SC_DC_FERROR) in ppp_receive_nonmp_frame()
2546 ppp->rstate |= SC_DC_FERROR; in ppp_decompress_frame()
2570 ppp->rstate |= SC_DC_ERROR; in ppp_decompress_frame()
3054 ppp->rstate &= ~SC_DECOMP_RUN; in ppp_set_compress()
3102 ppp->rstate &= ~SC_DECOMP_RUN; in ppp_ccp_peek()
3111 ppp->rstate &= ~SC_DECOMP_RUN; in ppp_ccp_peek()
[all …]
/Linux-v5.15/include/net/
Dslhc_vj.h145 struct cstate *rstate; /* receive connection states (array)*/ member
/Linux-v5.15/include/soc/fsl/
Dcpm.h20 __be32 rstate; /* Internal */ member
/Linux-v5.15/drivers/net/wan/
Dfsl_ucc_hdlc.h29 __be32 rstate; member
Dfsl_ucc_hdlc.c270 iowrite32be(BMR_GBL | BMR_BIG_ENDIAN, &priv->ucc_pram->rstate); in uhdlc_init()
/Linux-v5.15/drivers/spi/
Dspi-fsl-cpm.c58 out_be32(&mspi->pram->rstate, 0); in fsl_spi_cpm_reinit_txrx()
359 out_be32(&mspi->pram->rstate, 0); in fsl_spi_cpm_init()
/Linux-v5.15/arch/powerpc/boot/
Dcpm-serial.c48 u32 rstate; member
/Linux-v5.15/drivers/usb/gadget/udc/
Dfsl_qe_udc.h115 u32 rstate; member
Dfsl_qe_udc.c2355 out_be32(&usbpram->rstate, 0); in qe_udc_config()
/Linux-v5.15/drivers/i2c/busses/
Di2c-cpm.c55 uint rstate; /* Internal */ member
156 out_be32(&i2c_ram->rstate, 0); in cpm_reset_i2c_params()
/Linux-v5.15/drivers/net/ethernet/chelsio/inline_crypto/chtls/
Dchtls.h254 u16 rstate; member
/Linux-v5.15/include/soc/fsl/qe/
Dqe.h590 __be32 rstate; /* Rx internal state */ member
/Linux-v5.15/drivers/net/ethernet/freescale/
Ducc_geth.h607 u8 rstate; /* rx internal state. High byte contains member
Ducc_geth.c819 (u32)&ugeth->p_rx_glbl_pram->rstate, in dump_regs()
820 ugeth->p_rx_glbl_pram->rstate); in dump_regs()
2720 out_8(&ugeth->p_rx_glbl_pram->rstate, function_code); in ucc_geth_startup()