Home
last modified time | relevance | path

Searched refs:din (Results 1 – 25 of 39) sorted by relevance

12

/linux/drivers/platform/chrome/
H A Dcros_ec_spi.c157 if (buf - ec_dev->din + n > ec_dev->din_size) in receive_n_bytes()
204 ec_dev->din, in cros_ec_spi_receive_packet()
209 ptr = ec_dev->din; in cros_ec_spi_receive_packet()
213 ptr - ec_dev->din); in cros_ec_spi_receive_packet()
237 memmove(ec_dev->din, ptr, todo); in cros_ec_spi_receive_packet()
238 ptr = ec_dev->din + todo; in cros_ec_spi_receive_packet()
252 response = (struct ec_host_response *)ec_dev->din; in cros_ec_spi_receive_packet()
268 todo, need_len, ptr - ec_dev->din); in cros_ec_spi_receive_packet()
278 dev_dbg(ec_dev->dev, "loop done, ptr=%zd\n", ptr - ec_dev->din); in cros_ec_spi_receive_packet()
312 ec_dev->din, in cros_ec_spi_receive_response()
[all …]
H A Dcros_ec_rpmsg.c111 response = (struct ec_host_response *)ec_dev->din; in cros_ec_pkt_xfer_rpmsg()
126 memcpy(ec_msg->data, ec_dev->din + sizeof(*response), in cros_ec_pkt_xfer_rpmsg()
131 sum += ec_dev->din[i]; in cros_ec_pkt_xfer_rpmsg()
180 memcpy(ec_dev->din, resp->data, len); in cros_ec_rpmsg_callback()
H A Dcros_ec_uart.c144 resp->data = ec_dev->din; in cros_ec_uart_pkt_xfer()
172 host_response = (struct ec_host_response *)ec_dev->din; in cros_ec_uart_pkt_xfer()
185 sum += ec_dev->din[i]; in cros_ec_uart_pkt_xfer()
193 memcpy(ec_msg->data, ec_dev->din + sizeof(*host_response), host_response->data_len); in cros_ec_uart_pkt_xfer()
H A Dcros_ec_proto.c520 devm_kfree(dev, ec_dev->din); in cros_ec_query_all()
523 ec_dev->din = devm_kzalloc(dev, ec_dev->din_size, GFP_KERNEL); in cros_ec_query_all()
524 if (!ec_dev->din) { in cros_ec_query_all()
531 devm_kfree(dev, ec_dev->din); in cros_ec_query_all()
H A Dcros_ec.c195 ec_dev->din = devm_kzalloc(dev, ec_dev->din_size, GFP_KERNEL); in cros_ec_register()
196 if (!ec_dev->din) in cros_ec_register()
/linux/drivers/siox/
H A Dsiox-bus-gpio.c18 struct gpio_desc *din; member
53 if (gpiod_get_value_cansleep(ddata->din)) in siox_gpio_pushpull()
102 ddata->din = devm_gpiod_get(dev, "din", GPIOD_IN); in siox_gpio_probe()
103 if (IS_ERR(ddata->din)) in siox_gpio_probe()
104 return dev_err_probe(dev, PTR_ERR(ddata->din), in siox_gpio_probe()
/linux/Documentation/devicetree/bindings/siox/
H A Deckelmann,siox-gpio.txt5 - din-gpios, dout-gpios, dclk-gpios, dld-gpios: references gpios for the
15 din-gpios = <&gpio6 11 0>;
/linux/drivers/pinctrl/starfive/
H A Dpinctrl-starfive-jh7110.h59 unsigned int din, u32 dout,
69 unsigned int din, u32 dout, u32 doen);
H A Dpinctrl-starfive-jh7110-aon.c78 unsigned int din, u32 dout, in jh7110_aon_set_one_pin_mux() argument
82 jh7110_set_gpiomux(sfp, pin, din, dout, doen); in jh7110_aon_set_one_pin_mux()
H A Dpinctrl-starfive-jh7100.c657 u32 din = starfive_pinmux_to_din(v); in starfive_set_mux() local
664 gpio, dout, doen, din); in starfive_set_mux()
668 if (din != GPI_NONE) in starfive_set_mux()
669 reg_din = sfp->base + GPI_CFG_OFFSET + 4 * din; in starfive_set_mux()
967 void __iomem *din = sfp->base + GPIODIN + 4 * (gpio / 32); in starfive_gpio_get() local
969 return !!(readl_relaxed(din) & BIT(gpio % 32)); in starfive_gpio_get()
H A Dpinctrl-starfive-jh7110-sys.c338 unsigned int din, u32 dout, in jh7110_sys_set_one_pin_mux() argument
342 jh7110_set_gpiomux(sfp, pin, din, dout, doen); in jh7110_sys_set_one_pin_mux()
H A Dpinctrl-starfive-jh7110.c252 unsigned int din, u32 dout, u32 doen) in jh7110_set_gpiomux() argument
270 if (din != GPI_NONE) { in jh7110_set_gpiomux()
271 unsigned int ioffset = 4 * (din / 4); in jh7110_set_gpiomux()
272 unsigned int ishift = 8 * (din % 4); in jh7110_set_gpiomux()
/linux/arch/microblaze/kernel/cpu/
H A Dcache.c523 .din = __invalidate_dcache_all_wb,
539 .din = __invalidate_dcache_all_wb,
555 .din = __invalidate_dcache_all_msr_irq,
570 .din = __invalidate_dcache_all_nomsr_irq,
586 .din = __invalidate_dcache_all_noirq_wt,
601 .din = __invalidate_dcache_all_noirq_wt,
/linux/drivers/iio/adc/
H A Dltc2309.c107 u8 din; in ltc2309_read_raw_channel() local
109 din = FIELD_PREP(LTC2309_DIN_CH_MASK, address & 0x0f) | in ltc2309_read_raw_channel()
113 ret = i2c_smbus_write_byte(ltc2309->client, din); in ltc2309_read_raw_channel()
/linux/arch/microblaze/include/asm/
H A Dcacheflush.h44 void (*din)(void); /* invalidate */ member
63 #define invalidate_dcache() mbc->din();
/linux/tools/testing/selftests/drivers/net/mlxsw/
H A Dqos_pfc.sh396 local din=$((in1 - in0))
399 local pct_in=$((din * 100 / size))
404 ((dout == din))
405 check_err $? "$((din - dout)) bytes out of $din ingressed got lost"
/linux/arch/riscv/boot/dts/starfive/
H A Djh7110-pinfunc.h21 #define GPIOMUX(n, dout, doen, din) ( \ argument
22 (((din) & 0xff) << 24) | \
/linux/include/dt-bindings/pinctrl/
H A Dpinctrl-starfive-jh7100.h26 #define GPIOMUX(n, dout, doen, din) ( \ argument
29 (((din) & 0xff) << 8) | \
/linux/arch/mips/include/asm/
H A Dtxx9pio.h16 __u32 din; member
/linux/drivers/infiniband/hw/mlx5/
H A Dqpc.c235 u32 din[MLX5_ST_SZ_DW(destroy_qp_in)] = {}; in mlx5_qpc_create_qp() local
258 MLX5_SET(destroy_qp_in, din, opcode, MLX5_CMD_OP_DESTROY_QP); in mlx5_qpc_create_qp()
259 MLX5_SET(destroy_qp_in, din, qpn, qp->qpn); in mlx5_qpc_create_qp()
260 MLX5_SET(destroy_qp_in, din, uid, qp->uid); in mlx5_qpc_create_qp()
261 mlx5_cmd_exec_in(dev->mdev, destroy_qp, din); in mlx5_qpc_create_qp()
/linux/Documentation/translations/sp_SP/process/
H A Ddeprecated.rst61 Los cálculos dinámicos de tamaño (especialmente multiplicaciones) no
213 dinámico del array en la pila, puede exceder la memoria restante en
261 un grupo de elementos consecutivos de tamaño dinámico en una estructura.
266 En el código C más antiguo, los elementos finales de tamaño dinámico se
274 En código C más antiguo, elementos seguidos de tamaño dinámico eran creados
309 de tamaño dinámico concatenados. Esto permite al compilador generar
332 podría esperar que representa el tamaño total en bytes de la memoria dinámica
348 memoria dinámica para reservar una estructura que contenga un array de este
/linux/arch/mips/kernel/
H A Dgpio_txx9.c21 return !!(__raw_readl(&txx9_pioptr->din) & (1 << offset)); in txx9_gpio_get()
/linux/arch/arm64/boot/dts/qcom/
H A Dsdm845-wcd9340.dtsi63 qcom,din-ports = <2>;
/linux/include/linux/platform_data/
H A Dcros_ec_proto.h172 u8 *din; member
/linux/fs/gfs2/
H A Dxattr.c458 const char *din, char *dout) in gfs2_iter_unstuffed() argument
507 if (din) { in gfs2_iter_unstuffed()
509 memcpy(pos, din, cp_size); in gfs2_iter_unstuffed()
510 din += sdp->sd_jbsize; in gfs2_iter_unstuffed()

12