/Linux-v6.6/drivers/leds/ |
D | leds-is31fl32xx.c | 43 const struct is31fl32xx_chipdef *cdef; member 167 for (i = 0; i < priv->cdef->channels; i++) { in is31fl3216_reset() 168 ret = is31fl32xx_write(priv, priv->cdef->pwm_register_base+i, in is31fl3216_reset() 173 ret = is31fl32xx_write(priv, priv->cdef->pwm_update_reg, 0); in is31fl3216_reset() 227 const struct is31fl32xx_chipdef *cdef = led_data->priv->cdef; in is31fl32xx_brightness_set() local 234 if (cdef->pwm_registers_reversed) in is31fl32xx_brightness_set() 235 pwm_register_offset = cdef->channels - led_data->channel; in is31fl32xx_brightness_set() 240 cdef->pwm_register_base + pwm_register_offset, in is31fl32xx_brightness_set() 245 return is31fl32xx_write(led_data->priv, cdef->pwm_update_reg, 0); in is31fl32xx_brightness_set() 250 const struct is31fl32xx_chipdef *cdef = priv->cdef; in is31fl32xx_reset_regs() local [all …]
|
D | leds-is31fl319x.c | 90 const struct is31fl319x_chipdef *cdef; member 212 for (i = 0; i < is31->cdef->num_leds; i++) { in is31fl3190_brightness_set() 266 for (i = 0; i < is31->cdef->num_leds; i++) { in is31fl3196_brightness_set() 381 led->max_microamp = is31->cdef->current_default; in is31fl319x_parse_child_fw() 384 if (led->max_microamp < is31->cdef->current_min) in is31fl319x_parse_child_fw() 387 is31->cdef->current_max); in is31fl319x_parse_child_fw() 404 is31->cdef = device_get_match_data(dev); in is31fl319x_parse_fw() 412 if (!count || count > is31->cdef->num_leds) in is31fl319x_parse_fw() 415 is31->cdef->num_leds); in is31fl319x_parse_fw() 427 if (reg < 1 || reg > is31->cdef->num_leds) { in is31fl319x_parse_fw() [all …]
|
D | leds-spi-byte.c | 50 const struct spi_byte_chipdef *cdef; member 72 value = (u8) brightness + led->cdef->off_value; in spi_byte_brightness_set_blocking() 104 led->cdef = device_get_match_data(dev); in spi_byte_probe() 107 led->ldev.max_brightness = led->cdef->max_value - led->cdef->off_value; in spi_byte_probe()
|
D | leds-aw200xx.c | 109 const struct aw200xx_chipdef *cdef; member 137 u32 columns = chip->cdef->display_size_columns; in dim_store() 187 reg = AW200XX_REG_DIM(led->num, chip->cdef->display_size_columns); in aw200xx_brightness_set() 370 chip->display_rows > chip->cdef->display_size_rows_max) { in aw200xx_probe_fw() 393 if (source >= chip->cdef->channels) { in aw200xx_probe_fw() 395 source, chip->cdef->channels); in aw200xx_probe_fw() 487 const struct aw200xx_chipdef *cdef; in aw200xx_probe() local 492 cdef = device_get_match_data(&client->dev); in aw200xx_probe() 493 if (!cdef) in aw200xx_probe() 497 if (!count || count > cdef->channels) in aw200xx_probe() [all …]
|
/Linux-v6.6/Documentation/translations/zh_CN/admin-guide/ |
D | bootconfig.rst | 221 root = 01234567-89ab-cdef-0123-456789abcd 229 root="01234567-89ab-cdef-0123-456789abcd" -- splash 237 root="01234567-89ab-cdef-0123-456789abcd" ro bootconfig -- splash quiet
|
/Linux-v6.6/drivers/isdn/capi/ |
D | capiutil.c | 39 static _cdef cdef[] = variable 231 #define TYP (cdef[cmsg->par[cmsg->p]].typ) 232 #define OFF (((u8 *)cmsg) + cdef[cmsg->par[cmsg->p]].off)
|
/Linux-v6.6/drivers/media/platform/mediatek/vcodec/decoder/vdec/ |
D | vdec_av1_req_lat_if.c | 488 struct vdec_av1_slice_cdef cdef; member 1235 static void vdec_av1_slice_setup_cdef(struct vdec_av1_slice_cdef *cdef, in vdec_av1_slice_setup_cdef() argument 1240 cdef->cdef_damping = ctrl_cdef->damping_minus_3 + 3; in vdec_av1_slice_setup_cdef() 1241 cdef->cdef_bits = ctrl_cdef->bits; in vdec_av1_slice_setup_cdef() 1250 cdef->cdef_y_strength[i] = in vdec_av1_slice_setup_cdef() 1253 cdef->cdef_uv_strength[i] = in vdec_av1_slice_setup_cdef() 1375 vdec_av1_slice_setup_cdef(&uh->cdef, &ctrl_fh->cdef); in vdec_av1_slice_setup_uh()
|
/Linux-v6.6/drivers/media/v4l2-core/ |
D | v4l2-ctrls-core.c | 646 static int validate_av1_cdef(struct v4l2_av1_cdef *cdef) in validate_av1_cdef() argument 650 if (cdef->damping_minus_3 > GENMASK(1, 0) || in validate_av1_cdef() 651 cdef->bits > GENMASK(1, 0)) in validate_av1_cdef() 654 for (i = 0; i < 1 << cdef->bits; i++) { in validate_av1_cdef() 655 if (cdef->y_pri_strength[i] > GENMASK(3, 0) || in validate_av1_cdef() 656 cdef->y_sec_strength[i] > 4 || in validate_av1_cdef() 657 cdef->uv_pri_strength[i] > GENMASK(3, 0) || in validate_av1_cdef() 658 cdef->uv_sec_strength[i] > 4) in validate_av1_cdef() 721 ret = validate_av1_cdef(&f->cdef); in validate_av1_frame()
|
/Linux-v6.6/drivers/media/platform/verisilicon/ |
D | rockchip_vpu981_hw_av1_dec.c | 1395 const struct v4l2_av1_cdef *cdef = &frame->cdef; in rockchip_vpu981_av1_dec_set_cdef() local 1403 hantro_reg_write(vpu, &av1_cdef_bits, cdef->bits); in rockchip_vpu981_av1_dec_set_cdef() 1404 hantro_reg_write(vpu, &av1_cdef_damping, cdef->damping_minus_3); in rockchip_vpu981_av1_dec_set_cdef() 1406 for (i = 0; i < BIT(cdef->bits); i++) { in rockchip_vpu981_av1_dec_set_cdef() 1407 luma_pri_strength |= cdef->y_pri_strength[i] << (i * 4); in rockchip_vpu981_av1_dec_set_cdef() 1408 if (cdef->y_sec_strength[i] == 4) in rockchip_vpu981_av1_dec_set_cdef() 1411 luma_sec_strength |= cdef->y_sec_strength[i] << (i * 2); in rockchip_vpu981_av1_dec_set_cdef() 1413 chroma_pri_strength |= cdef->uv_pri_strength[i] << (i * 4); in rockchip_vpu981_av1_dec_set_cdef() 1414 if (cdef->uv_sec_strength[i] == 4) in rockchip_vpu981_av1_dec_set_cdef() 1417 chroma_sec_strength |= cdef->uv_sec_strength[i] << (i * 2); in rockchip_vpu981_av1_dec_set_cdef()
|
/Linux-v6.6/Documentation/admin-guide/ |
D | bootconfig.rst | 246 root = 01234567-89ab-cdef-0123-456789abcd 254 root="01234567-89ab-cdef-0123-456789abcd" -- splash 262 root="01234567-89ab-cdef-0123-456789abcd" ro bootconfig -- splash quiet
|
/Linux-v6.6/io_uring/ |
D | io_uring.c | 1780 const struct io_cold_def *cdef = &io_cold_defs[req->opcode]; in io_req_prep_async() local 1786 if (!cdef->prep_async) in io_req_prep_async() 1794 return cdef->prep_async(req); in io_req_prep_async()
|
/Linux-v6.6/include/uapi/linux/ |
D | v4l2-controls.h | 3356 struct v4l2_av1_cdef cdef; member
|
/Linux-v6.6/Documentation/userspace-api/media/v4l/ |
D | ext-ctrls-codec-stateless.rst | 3072 - If set, specifies that cdef filtering may be enabled. If not set, 3073 specifies that cdef filtering is disabled. 3819 - ``cdef``
|