Lines Matching refs:pdata

165 	struct sta350_platform_data *pdata;  member
910 struct sta350_platform_data *pdata = sta350->pdata; in sta350_probe() local
927 if (!pdata->thermal_warning_recovery) in sta350_probe()
929 if (!pdata->thermal_warning_adjustment) in sta350_probe()
931 if (!pdata->fault_detect_recovery) in sta350_probe()
941 pdata->ffx_power_output_mode in sta350_probe()
945 pdata->drop_compensation_ns in sta350_probe()
950 pdata->oc_warning_adjustment ? in sta350_probe()
956 pdata->max_power_use_mpcc ? in sta350_probe()
960 pdata->max_power_correction ? in sta350_probe()
964 pdata->am_reduction_mode ? in sta350_probe()
968 pdata->odd_pwm_speed_mode ? in sta350_probe()
972 pdata->distortion_compensation ? in sta350_probe()
977 pdata->invalid_input_detect_mute ? in sta350_probe()
981 pdata->output_conf in sta350_probe()
987 pdata->ch1_output_mapping in sta350_probe()
991 pdata->ch2_output_mapping in sta350_probe()
995 pdata->ch3_output_mapping in sta350_probe()
1001 pdata->activate_mute_output ? in sta350_probe()
1005 pdata->bridge_immediate_off ? in sta350_probe()
1009 pdata->noise_shape_dc_cut ? in sta350_probe()
1013 pdata->powerdown_master_vol ? in sta350_probe()
1018 pdata->powerdown_delay_divider in sta350_probe()
1091 struct sta350_platform_data *pdata; in sta350_probe_dt() local
1096 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL); in sta350_probe_dt()
1097 if (!pdata) in sta350_probe_dt()
1101 &pdata->output_conf); in sta350_probe_dt()
1103 &pdata->ch1_output_mapping); in sta350_probe_dt()
1105 &pdata->ch2_output_mapping); in sta350_probe_dt()
1107 &pdata->ch3_output_mapping); in sta350_probe_dt()
1109 pdata->thermal_warning_recovery = in sta350_probe_dt()
1111 pdata->thermal_warning_adjustment = in sta350_probe_dt()
1113 pdata->fault_detect_recovery = in sta350_probe_dt()
1116 pdata->ffx_power_output_mode = STA350_FFX_PM_VARIABLE_DROP_COMP; in sta350_probe_dt()
1129 pdata->ffx_power_output_mode = mode; in sta350_probe_dt()
1134 pdata->drop_compensation_ns = clamp_t(u16, tmp, 0, 300) / 20; in sta350_probe_dt()
1136 pdata->oc_warning_adjustment = in sta350_probe_dt()
1140 pdata->max_power_use_mpcc = in sta350_probe_dt()
1142 pdata->max_power_correction = in sta350_probe_dt()
1144 pdata->am_reduction_mode = in sta350_probe_dt()
1146 pdata->odd_pwm_speed_mode = in sta350_probe_dt()
1148 pdata->distortion_compensation = in sta350_probe_dt()
1152 pdata->invalid_input_detect_mute = in sta350_probe_dt()
1156 pdata->activate_mute_output = in sta350_probe_dt()
1158 pdata->bridge_immediate_off = in sta350_probe_dt()
1160 pdata->noise_shape_dc_cut = in sta350_probe_dt()
1162 pdata->powerdown_master_vol = in sta350_probe_dt()
1167 pdata->powerdown_delay_divider = ilog2(tmp8); in sta350_probe_dt()
1173 sta350->pdata = pdata; in sta350_probe_dt()
1190 sta350->pdata = dev_get_platdata(dev); in sta350_i2c_probe()