@@ -111,6 +111,20 @@ static int rzg2l_poeg_output_disable_both_low(struct rzg2l_poeg_chip *chip,
return 0;
}
+static int rzg2l_poeg_output_disable_deadtime_err(struct rzg2l_poeg_chip *chip,
+ bool enable)
+{
+ if (enable)
+ set_bit(RZG2L_GPT_DTEF, chip->gpt_irq);
+ else
+ clear_bit(RZG2L_GPT_DTEF, chip->gpt_irq);
+
+ rzg2l_gpt_poeg_disable_req_deadtime_error(chip->gpt_dev, chip->index,
+ test_bit(RZG2L_GPT_DTEF, chip->gpt_irq));
+
+ return 0;
+}
+
static int rzg2l_poeg_cb(void *context, const char *fname, const char *gname,
enum pin_output_disable_conf conf,
unsigned int conf_val)
@@ -140,6 +154,8 @@ static int rzg2l_poeg_cb(void *context, const char *fname, const char *gname,
ret = rzg2l_poeg_output_disable_both_low(context, !!conf_val);
break;
case PINCTRL_OUTPUT_DISABLE_BY_SOC_ON_DEAD_TIME_ERROR:
+ ret = rzg2l_poeg_output_disable_deadtime_err(context, !!conf_val);
+ break;
default:
return -EINVAL;
}
This patch adds support for output-disable requests from GPT, when dead time error occurs. Added sysfs to enable/disable for configuring GPT output disable request for dead time error. Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> --- drivers/pinctrl/renesas/poeg/rzg2l-poeg.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+)