/drivers/net/wireless/intel/iwlwifi/mvm/ |
D | sf.c | 212 enum iwl_sf_state new_state) in iwl_mvm_sf_config() argument 215 .state = cpu_to_le32(new_state), in iwl_mvm_sf_config() 227 if (new_state != SF_FULL_ON && mvm->sf_state == new_state) in iwl_mvm_sf_config() 230 switch (new_state) { in iwl_mvm_sf_config() 255 new_state); in iwl_mvm_sf_config() 262 mvm->sf_state = new_state; in iwl_mvm_sf_config() 275 enum iwl_sf_state new_state; in iwl_mvm_sf_update() local 304 new_state = SF_INIT_OFF; in iwl_mvm_sf_update() 311 new_state = data.sta_vif_state; in iwl_mvm_sf_update() 317 new_state = SF_UNINIT; in iwl_mvm_sf_update() [all …]
|
/drivers/gpu/drm/msm/disp/mdp5/ |
D | mdp5_mixer.c | 45 struct mdp5_hw_mixer_state *new_state; in mdp5_mixer_assign() local 51 new_state = &global_state->hwmixer; in mdp5_mixer_assign() 63 if (new_state->hwmixer_to_crtc[cur->idx] && in mdp5_mixer_assign() 64 new_state->hwmixer_to_crtc[cur->idx] != crtc) in mdp5_mixer_assign() 78 if (new_state->hwmixer_to_crtc[pair_idx]) in mdp5_mixer_assign() 109 new_state->hwmixer_to_crtc[(*mixer)->idx] = crtc; in mdp5_mixer_assign() 113 new_state->hwmixer_to_crtc[(*r_mixer)->idx] = crtc; in mdp5_mixer_assign() 122 struct mdp5_hw_mixer_state *new_state = &global_state->hwmixer; in mdp5_mixer_release() local 127 if (WARN_ON(!new_state->hwmixer_to_crtc[mixer->idx])) in mdp5_mixer_release() 131 new_state->hwmixer_to_crtc[mixer->idx]->name); in mdp5_mixer_release() [all …]
|
D | mdp5_pipe.c | 17 struct mdp5_hw_pipe_state *old_state, *new_state; in mdp5_pipe_assign() local 28 new_state = &new_global_state->hwpipe; in mdp5_pipe_assign() 40 if (new_state->hwpipe_to_plane[cur->idx] || in mdp5_pipe_assign() 111 new_state->hwpipe_to_plane[(*hwpipe)->idx] = plane; in mdp5_pipe_assign() 116 new_state->hwpipe_to_plane[(*r_hwpipe)->idx] = plane; in mdp5_pipe_assign() 127 struct mdp5_hw_pipe_state *new_state = &state->hwpipe; in mdp5_pipe_release() local 132 if (WARN_ON(!new_state->hwpipe_to_plane[hwpipe->idx])) in mdp5_pipe_release() 136 new_state->hwpipe_to_plane[hwpipe->idx]->name); in mdp5_pipe_release() 143 new_state->hwpipe_to_plane[hwpipe->idx] = NULL; in mdp5_pipe_release()
|
/drivers/input/keyboard/ |
D | pmic8xxx-keypad.c | 171 static int pmic8xxx_kp_read_matrix(struct pmic8xxx_kp *kp, u16 *new_state, in pmic8xxx_kp_read_matrix() argument 194 rc = pmic8xxx_kp_read_data(kp, new_state, KEYP_RECENT_DATA, in pmic8xxx_kp_read_matrix() 219 static void __pmic8xxx_kp_scan_matrix(struct pmic8xxx_kp *kp, u16 *new_state, in __pmic8xxx_kp_scan_matrix() argument 225 int bits_changed = new_state[row] ^ old_state[row]; in __pmic8xxx_kp_scan_matrix() 235 !(new_state[row] & (1 << col)) ? in __pmic8xxx_kp_scan_matrix() 243 !(new_state[row] & (1 << col))); in __pmic8xxx_kp_scan_matrix() 250 static bool pmic8xxx_detect_ghost_keys(struct pmic8xxx_kp *kp, u16 *new_state) in pmic8xxx_detect_ghost_keys() argument 257 row_state = (~new_state[row]) & in pmic8xxx_detect_ghost_keys() 276 u16 new_state[PM8XXX_MAX_ROWS]; in pmic8xxx_kp_scan_matrix() local 282 rc = pmic8xxx_kp_read_matrix(kp, new_state, NULL); in pmic8xxx_kp_scan_matrix() [all …]
|
D | pxa27x_keypad.c | 413 uint32_t new_state[MAX_MATRIX_KEY_COLS]; in pxa27x_keypad_scan_matrix() local 418 memset(new_state, 0, sizeof(new_state)); in pxa27x_keypad_scan_matrix() 432 new_state[col] = (1 << row); in pxa27x_keypad_scan_matrix() 442 new_state[0] = kpasmkp0 & KPASMKP_MKC_MASK; in pxa27x_keypad_scan_matrix() 443 new_state[1] = (kpasmkp0 >> 16) & KPASMKP_MKC_MASK; in pxa27x_keypad_scan_matrix() 444 new_state[2] = kpasmkp1 & KPASMKP_MKC_MASK; in pxa27x_keypad_scan_matrix() 445 new_state[3] = (kpasmkp1 >> 16) & KPASMKP_MKC_MASK; in pxa27x_keypad_scan_matrix() 446 new_state[4] = kpasmkp2 & KPASMKP_MKC_MASK; in pxa27x_keypad_scan_matrix() 447 new_state[5] = (kpasmkp2 >> 16) & KPASMKP_MKC_MASK; in pxa27x_keypad_scan_matrix() 448 new_state[6] = kpasmkp3 & KPASMKP_MKC_MASK; in pxa27x_keypad_scan_matrix() [all …]
|
D | twl4030_keypad.c | 166 u8 new_state[TWL4030_MAX_ROWS]; in twl4030_read_kp_matrix_state() local 168 int ret = twl4030_kpread(kp, new_state, in twl4030_read_kp_matrix_state() 172 state[row] = twl4030_col_xlate(kp, new_state[row]); in twl4030_read_kp_matrix_state() 197 u16 new_state[TWL4030_MAX_ROWS]; in twl4030_kp_scan() local 201 memset(new_state, 0, sizeof(new_state)); in twl4030_kp_scan() 204 int ret = twl4030_read_kp_matrix_state(kp, new_state); in twl4030_kp_scan() 209 if (twl4030_is_in_ghost_state(kp, new_state)) in twl4030_kp_scan() 215 int changed = new_state[row] ^ kp->kp_state[row]; in twl4030_kp_scan() 228 (new_state[row] & (1 << col)) ? in twl4030_kp_scan() 234 new_state[row] & (1 << col)); in twl4030_kp_scan() [all …]
|
D | omap-keypad.c | 96 unsigned char new_state[8], changed, key_down = 0; in omap_kp_tasklet() local 100 omap_kp_scan_keypad(omap_kp_data, new_state); in omap_kp_tasklet() 104 changed = new_state[col] ^ keypad_state[col]; in omap_kp_tasklet() 105 key_down |= new_state[col]; in omap_kp_tasklet() 115 row, (new_state[col] & (1 << row)) ? in omap_kp_tasklet() 126 new_state[col] & (1 << row)); in omap_kp_tasklet() 131 memcpy(keypad_state, new_state, sizeof(keypad_state)); in omap_kp_tasklet()
|
D | matrix_keypad.c | 121 uint32_t new_state[MATRIX_MAX_COLS]; in matrix_keypad_scan() local 127 memset(new_state, 0, sizeof(new_state)); in matrix_keypad_scan() 135 new_state[col] |= in matrix_keypad_scan() 144 bits_changed = keypad->last_key_state[col] ^ new_state[col]; in matrix_keypad_scan() 156 new_state[col] & (1 << row)); in matrix_keypad_scan() 161 memcpy(keypad->last_key_state, new_state, sizeof(new_state)); in matrix_keypad_scan()
|
/drivers/gpu/drm/nouveau/nvkm/subdev/therm/ |
D | g84.c | 102 enum nvkm_therm_thrs_state prev_state, new_state; in g84_therm_threshold_hyst_emulation() local 111 new_state = NVKM_THERM_THRS_HIGHER; in g84_therm_threshold_hyst_emulation() 114 new_state = NVKM_THERM_THRS_LOWER; in g84_therm_threshold_hyst_emulation() 119 if (new_state == NVKM_THERM_THRS_LOWER && cur > thrs->temp) in g84_therm_threshold_hyst_emulation() 120 new_state = NVKM_THERM_THRS_HIGHER; in g84_therm_threshold_hyst_emulation() 121 else if (new_state == NVKM_THERM_THRS_HIGHER && in g84_therm_threshold_hyst_emulation() 123 new_state = NVKM_THERM_THRS_LOWER; in g84_therm_threshold_hyst_emulation() 124 nvkm_therm_sensor_set_threshold_state(therm, thrs_name, new_state); in g84_therm_threshold_hyst_emulation() 127 if (prev_state < new_state) in g84_therm_threshold_hyst_emulation() 129 else if (prev_state > new_state) in g84_therm_threshold_hyst_emulation()
|
/drivers/platform/x86/ |
D | dell-laptop.c | 1537 struct kbd_state new_state; in kbd_led_timeout_store() local 1630 new_state = state; in kbd_led_timeout_store() 1633 new_state.timeout_value_ac = value; in kbd_led_timeout_store() 1634 new_state.timeout_unit_ac = unit; in kbd_led_timeout_store() 1636 new_state.timeout_value = value; in kbd_led_timeout_store() 1637 new_state.timeout_unit = unit; in kbd_led_timeout_store() 1640 ret = kbd_set_state_safe(&new_state, &state); in kbd_led_timeout_store() 1703 struct kbd_state new_state; in kbd_led_triggers_store() local 1754 new_state = state; in kbd_led_triggers_store() 1756 new_state.triggers |= BIT(trigger_bit); in kbd_led_triggers_store() [all …]
|
/drivers/net/can/usb/peak_usb/ |
D | pcan_usb.c | 403 enum can_state new_state; in pcan_usb_decode_error() local 410 new_state = mc->pdev->dev.can.state; in pcan_usb_decode_error() 415 new_state = CAN_STATE_ERROR_WARNING; in pcan_usb_decode_error() 422 new_state = CAN_STATE_ERROR_PASSIVE; in pcan_usb_decode_error() 426 new_state = CAN_STATE_BUS_OFF; in pcan_usb_decode_error() 434 new_state = CAN_STATE_MAX; in pcan_usb_decode_error() 439 new_state = CAN_STATE_ERROR_ACTIVE; in pcan_usb_decode_error() 446 new_state = CAN_STATE_BUS_OFF; in pcan_usb_decode_error() 450 new_state = CAN_STATE_ERROR_WARNING; in pcan_usb_decode_error() 458 new_state = CAN_STATE_MAX; in pcan_usb_decode_error() [all …]
|
/drivers/gpu/drm/vboxvideo/ |
D | vbox_mode.c | 264 struct drm_plane_state *new_state) in vbox_primary_atomic_check() argument 268 if (new_state->crtc) { in vbox_primary_atomic_check() 270 new_state->state, new_state->crtc); in vbox_primary_atomic_check() 275 return drm_atomic_helper_check_plane_state(new_state, crtc_state, in vbox_primary_atomic_check() 304 struct drm_plane_state *new_state) in vbox_primary_prepare_fb() argument 309 if (!new_state->fb) in vbox_primary_prepare_fb() 312 gbo = drm_gem_vram_of_gem(to_vbox_framebuffer(new_state->fb)->obj); in vbox_primary_prepare_fb() 333 struct drm_plane_state *new_state) in vbox_cursor_atomic_check() argument 336 u32 width = new_state->crtc_w; in vbox_cursor_atomic_check() 337 u32 height = new_state->crtc_h; in vbox_cursor_atomic_check() [all …]
|
/drivers/irqchip/ |
D | irq-al-fic.c | 47 enum al_fic_state new_state) in al_fic_set_trigger() argument 52 if (new_state == AL_FIC_CONFIGURED_LEVEL) { in al_fic_set_trigger() 60 fic->state = new_state; in al_fic_set_trigger() 68 enum al_fic_state new_state; in al_fic_irq_set_type() local 80 new_state = (flow_type & IRQ_TYPE_LEVEL_HIGH) ? in al_fic_irq_set_type() 93 al_fic_set_trigger(fic, gc, new_state); in al_fic_irq_set_type() 94 } else if (fic->state != new_state) { in al_fic_irq_set_type()
|
/drivers/pcmcia/ |
D | sa1111_lubbock.c | 95 struct pcmcia_state new_state; in lubbock_pcmcia_configure_socket() local 109 sa1111_pcmcia_socket_state(skt, &new_state); in lubbock_pcmcia_configure_socket() 111 if (!new_state.vs_3v && !new_state.vs_Xv) { in lubbock_pcmcia_configure_socket()
|
/drivers/cpufreq/ |
D | speedstep-smi.c | 150 unsigned int result = 0, command, new_state, dummy; in speedstep_set_state() local 189 : "=b" (new_state), "=D" (result), in speedstep_set_state() 195 } while ((new_state != state) && (retry <= SMI_TRIES)); in speedstep_set_state() 201 if (new_state == state) in speedstep_set_state() 204 (speedstep_freqs[new_state].frequency / 1000), in speedstep_set_state() 208 state, new_state, result); in speedstep_set_state()
|
/drivers/gpu/drm/radeon/ |
D | rs780_dpm.c | 432 struct igp_ps *new_state = rs780_get_ps(new_ps); in rs780_set_engine_clock_scaling() local 436 if ((new_state->sclk_high == old_state->sclk_high) && in rs780_set_engine_clock_scaling() 437 (new_state->sclk_low == old_state->sclk_low)) in rs780_set_engine_clock_scaling() 441 new_state->sclk_low, false, &min_dividers); in rs780_set_engine_clock_scaling() 446 new_state->sclk_high, false, &max_dividers); in rs780_set_engine_clock_scaling() 479 struct igp_ps *new_state = rs780_get_ps(new_ps); in rs780_set_engine_clock_spc() local 483 if ((new_state->sclk_high == old_state->sclk_high) && in rs780_set_engine_clock_spc() 484 (new_state->sclk_low == old_state->sclk_low)) in rs780_set_engine_clock_spc() 498 struct igp_ps *new_state = rs780_get_ps(new_ps); in rs780_activate_engine_clk_scaling() local 501 if ((new_state->sclk_high == old_state->sclk_high) && in rs780_activate_engine_clk_scaling() [all …]
|
D | rv6xx_dpm.c | 969 struct rv6xx_ps *new_state = rv6xx_get_ps(new_ps); in rv6xx_enable_static_voltage_control() local 973 new_state->low.vddc, in rv6xx_enable_static_voltage_control() 1048 struct rv6xx_ps *new_state = rv6xx_get_ps(new_ps); in rv6xx_calculate_stepping_parameters() local 1050 rv6xx_calculate_engine_speed_stepping_parameters(rdev, new_state); in rv6xx_calculate_stepping_parameters() 1051 rv6xx_calculate_memory_clock_stepping_parameters(rdev, new_state); in rv6xx_calculate_stepping_parameters() 1052 rv6xx_calculate_voltage_stepping_parameters(rdev, new_state); in rv6xx_calculate_stepping_parameters() 1053 rv6xx_calculate_ap(rdev, new_state); in rv6xx_calculate_stepping_parameters() 1202 struct rv6xx_ps *new_state = rv6xx_get_ps(new_ps); in rv6xx_set_sw_voltage_to_safe() local 1206 safe_voltage = (new_state->low.vddc >= old_state->low.vddc) ? in rv6xx_set_sw_voltage_to_safe() 1207 new_state->low.vddc : old_state->low.vddc; in rv6xx_set_sw_voltage_to_safe() [all …]
|
/drivers/macintosh/ |
D | windfarm_rm31.c | 121 int new_state = 0; in cpu_check_overtemp() local 127 new_state |= FAILURE_LOW_OVERTEMP; in cpu_check_overtemp() 133 new_state |= FAILURE_HIGH_OVERTEMP; in cpu_check_overtemp() 170 new_state |= FAILURE_LOW_OVERTEMP; in cpu_check_overtemp() 176 new_state |= FAILURE_HIGH_OVERTEMP; in cpu_check_overtemp() 186 if (new_state) { in cpu_check_overtemp() 188 if (new_state & FAILURE_HIGH_OVERTEMP) in cpu_check_overtemp() 190 if ((failure_state & new_state) != new_state) in cpu_check_overtemp() 192 failure_state |= new_state; in cpu_check_overtemp()
|
D | windfarm_pm112.c | 197 int new_state = 0; in cpu_check_overtemp() local 202 new_state |= FAILURE_LOW_OVERTEMP; in cpu_check_overtemp() 208 new_state |= FAILURE_HIGH_OVERTEMP; in cpu_check_overtemp() 229 new_state |= FAILURE_LOW_OVERTEMP; in cpu_check_overtemp() 235 new_state |= FAILURE_HIGH_OVERTEMP; in cpu_check_overtemp() 245 if (new_state) { in cpu_check_overtemp() 247 if (new_state & FAILURE_HIGH_OVERTEMP) in cpu_check_overtemp() 249 if ((failure_state & new_state) != new_state) in cpu_check_overtemp() 251 failure_state |= new_state; in cpu_check_overtemp()
|
D | windfarm_pm72.c | 127 int new_state = 0; in cpu_check_overtemp() local 133 new_state |= FAILURE_LOW_OVERTEMP; in cpu_check_overtemp() 139 new_state |= FAILURE_HIGH_OVERTEMP; in cpu_check_overtemp() 176 new_state |= FAILURE_LOW_OVERTEMP; in cpu_check_overtemp() 182 new_state |= FAILURE_HIGH_OVERTEMP; in cpu_check_overtemp() 192 if (new_state) { in cpu_check_overtemp() 194 if (new_state & FAILURE_HIGH_OVERTEMP) in cpu_check_overtemp() 196 if ((failure_state & new_state) != new_state) in cpu_check_overtemp() 198 failure_state |= new_state; in cpu_check_overtemp()
|
/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_vcn.c | 302 struct dpg_pause_state new_state; in amdgpu_vcn_idle_work_handler() local 305 new_state.fw_based = VCN_DPG_STATE__PAUSE; in amdgpu_vcn_idle_work_handler() 307 new_state.fw_based = VCN_DPG_STATE__UNPAUSE; in amdgpu_vcn_idle_work_handler() 310 new_state.jpeg = VCN_DPG_STATE__PAUSE; in amdgpu_vcn_idle_work_handler() 312 new_state.jpeg = VCN_DPG_STATE__UNPAUSE; in amdgpu_vcn_idle_work_handler() 314 adev->vcn.pause_dpg_mode(adev, &new_state); in amdgpu_vcn_idle_work_handler() 349 struct dpg_pause_state new_state; in amdgpu_vcn_ring_begin_use() local 357 new_state.fw_based = VCN_DPG_STATE__PAUSE; in amdgpu_vcn_ring_begin_use() 359 new_state.fw_based = VCN_DPG_STATE__UNPAUSE; in amdgpu_vcn_ring_begin_use() 362 new_state.jpeg = VCN_DPG_STATE__PAUSE; in amdgpu_vcn_ring_begin_use() [all …]
|
/drivers/staging/isdn/gigaset/ |
D | interface.c | 413 unsigned int control_state, new_state; in if_set_termios() local 442 new_state = control_state | TIOCM_DTR; in if_set_termios() 445 new_state |= TIOCM_RTS; in if_set_termios() 448 (new_state & TIOCM_RTS) ? " only" : "/RTS"); in if_set_termios() 449 cs->ops->set_modem_ctrl(cs, control_state, new_state); in if_set_termios() 450 control_state = new_state; in if_set_termios() 458 new_state = control_state & ~(TIOCM_DTR | TIOCM_RTS); in if_set_termios() 459 cs->ops->set_modem_ctrl(cs, control_state, new_state); in if_set_termios() 460 control_state = new_state; in if_set_termios()
|
/drivers/xen/xen-pciback/ |
D | conf_space_capability.c | 119 pci_power_t new_state; in pm_ctrl_write() local 125 new_state = (pci_power_t)(new_value & PCI_PM_CTRL_STATE_MASK); in pm_ctrl_write() 136 dev_dbg(&dev->dev, "set power state to %x\n", new_state); in pm_ctrl_write() 137 err = pci_set_power_state(dev, new_state); in pm_ctrl_write()
|
/drivers/net/can/ |
D | at91_can.c | 876 struct can_frame *cf, enum can_state new_state) in at91_irq_err_state() argument 891 if (new_state >= CAN_STATE_ERROR_WARNING && in at91_irq_err_state() 892 new_state <= CAN_STATE_BUS_OFF) { in at91_irq_err_state() 908 if (new_state >= CAN_STATE_ERROR_PASSIVE && in at91_irq_err_state() 909 new_state <= CAN_STATE_BUS_OFF) { in at91_irq_err_state() 924 if (new_state <= CAN_STATE_ERROR_PASSIVE) { in at91_irq_err_state() 940 switch (new_state) { in at91_irq_err_state() 1013 enum can_state new_state; in at91_irq_err() local 1022 new_state = CAN_STATE_BUS_OFF; in at91_irq_err() 1024 new_state = CAN_STATE_ERROR_PASSIVE; in at91_irq_err() [all …]
|
/drivers/net/can/usb/kvaser_usb/ |
D | kvaser_usb_leaf.c | 633 enum can_state cur_state, new_state, tx_state, rx_state; in kvaser_usb_leaf_rx_error_update_can_state() local 637 new_state = priv->can.state; in kvaser_usb_leaf_rx_error_update_can_state() 641 new_state = CAN_STATE_BUS_OFF; in kvaser_usb_leaf_rx_error_update_can_state() 643 new_state = CAN_STATE_ERROR_PASSIVE; in kvaser_usb_leaf_rx_error_update_can_state() 648 new_state = CAN_STATE_ERROR_PASSIVE; in kvaser_usb_leaf_rx_error_update_can_state() 650 new_state = CAN_STATE_ERROR_WARNING; in kvaser_usb_leaf_rx_error_update_can_state() 652 new_state = CAN_STATE_ERROR_ACTIVE; in kvaser_usb_leaf_rx_error_update_can_state() 657 new_state = CAN_STATE_ERROR_ACTIVE; in kvaser_usb_leaf_rx_error_update_can_state() 659 if (new_state != cur_state) { in kvaser_usb_leaf_rx_error_update_can_state() 660 tx_state = (es->txerr >= es->rxerr) ? new_state : 0; in kvaser_usb_leaf_rx_error_update_can_state() [all …]
|