summaryrefslogtreecommitdiffstats
path: root/drivers/pwm
diff options
context:
space:
mode:
authorFabien Parent <fparent@baylibre.com>2020-10-19 16:07:03 +0200
committerThierry Reding <thierry.reding@gmail.com>2020-12-17 14:18:58 +0100
commit8b2fbaed90f6291a221d02c31e16a1ce722f79fc (patch)
tree5ef0afa7e5c067f3c05d0a8a5b3694451d1f74da /drivers/pwm
parent0c0ead76235db0bcfaab83f04db546995449d002 (diff)
downloadlinux-stable-8b2fbaed90f6291a221d02c31e16a1ce722f79fc.tar.gz
linux-stable-8b2fbaed90f6291a221d02c31e16a1ce722f79fc.tar.bz2
linux-stable-8b2fbaed90f6291a221d02c31e16a1ce722f79fc.zip
pwm: mediatek: Add MT8183 SoC support
Add PWM support for the MT8183 SoC. Signed-off-by: Fabien Parent <fparent@baylibre.com> Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com> Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'drivers/pwm')
-rw-r--r--drivers/pwm/pwm-mediatek.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/pwm/pwm-mediatek.c b/drivers/pwm/pwm-mediatek.c
index ad3770bfc202..fcfc3b147e5f 100644
--- a/drivers/pwm/pwm-mediatek.c
+++ b/drivers/pwm/pwm-mediatek.c
@@ -312,6 +312,12 @@ static const struct pwm_mediatek_of_data mt7629_pwm_data = {
.has_ck_26m_sel = false,
};
+static const struct pwm_mediatek_of_data mt8183_pwm_data = {
+ .num_pwms = 4,
+ .pwm45_fixup = false,
+ .has_ck_26m_sel = true,
+};
+
static const struct pwm_mediatek_of_data mt8516_pwm_data = {
.num_pwms = 5,
.pwm45_fixup = false,
@@ -324,6 +330,7 @@ static const struct of_device_id pwm_mediatek_of_match[] = {
{ .compatible = "mediatek,mt7623-pwm", .data = &mt7623_pwm_data },
{ .compatible = "mediatek,mt7628-pwm", .data = &mt7628_pwm_data },
{ .compatible = "mediatek,mt7629-pwm", .data = &mt7629_pwm_data },
+ { .compatible = "mediatek,mt8183-pwm", .data = &mt8183_pwm_data },
{ .compatible = "mediatek,mt8516-pwm", .data = &mt8516_pwm_data },
{ },
};