diff options
| author | David Lechner <[email protected]> | 2026-03-30 11:00:36 -0500 |
|---|---|---|
| committer | David Lechner <[email protected]> | 2026-04-07 10:47:04 -0500 |
| commit | 29739f15c06ad59340fa638cf1af65567ea37e13 (patch) | |
| tree | ba2e993da060649796243f619316cf2668a23960 /drivers | |
| parent | 76da7482cf39633a05a3ffc2b3c77e9c576cb0c3 (diff) | |
pinctrl: mediatek: mtk8189: set get_pinconf functions
Set the get_pinconf functions for the mt8189 pinctrl driver. This will
append pinconf bias info to the output of the pinmux status command.
This is useful for debugging pin configuration issues.
Reviewed-by: Macpaul Lin <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: David Lechner <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/pinctrl/mediatek/pinctrl-mt8189.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8189.c b/drivers/pinctrl/mediatek/pinctrl-mt8189.c index 9bcabe03151..b01533ed80b 100644 --- a/drivers/pinctrl/mediatek/pinctrl-mt8189.c +++ b/drivers/pinctrl/mediatek/pinctrl-mt8189.c @@ -1273,18 +1273,21 @@ static const struct mtk_io_type_desc mt8189_io_type_desc[] = { .bias_set = mtk_pinconf_bias_set_pu_pd, .drive_set = mtk_pinconf_drive_set_v1, .input_enable = mtk_pinconf_input_enable_v1, + .get_pinconf = mtk_pinconf_get_pu_pd, }, [IO_TYPE_GRP1] = { .name = "MSDC", .bias_set = mtk_pinconf_bias_set_pupd_r1_r0, .drive_set = mtk_pinconf_drive_set_v1, .input_enable = mtk_pinconf_input_enable_v1, + .get_pinconf = mtk_pinconf_get_pupd_r1_r0, }, [IO_TYPE_GRP2] = { .name = "I2C", .bias_set = mtk_pinconf_bias_set_pu_pd_rsel, .drive_set = mtk_pinconf_drive_set_v1, .input_enable = mtk_pinconf_input_enable_v1, + .get_pinconf = mtk_pinconf_get_pu_pd_rsel, }, }; |
