Linux Audio

Check our new training course

Loading...
v4.17
 
  1/*
  2 * Mediatek Pulse Width Modulator driver
  3 *
  4 * Copyright (C) 2015 John Crispin <blogic@openwrt.org>
  5 * Copyright (C) 2017 Zhi Mao <zhi.mao@mediatek.com>
  6 *
  7 * This file is licensed under the terms of the GNU General Public
  8 * License version 2. This program is licensed "as is" without any
  9 * warranty of any kind, whether express or implied.
 10 */
 11
 12#include <linux/err.h>
 13#include <linux/io.h>
 14#include <linux/ioport.h>
 15#include <linux/kernel.h>
 16#include <linux/module.h>
 17#include <linux/clk.h>
 18#include <linux/of.h>
 19#include <linux/of_device.h>
 20#include <linux/platform_device.h>
 21#include <linux/pwm.h>
 22#include <linux/slab.h>
 23#include <linux/types.h>
 24
 25/* PWM registers and bits definitions */
 26#define PWMCON			0x00
 27#define PWMHDUR			0x04
 28#define PWMLDUR			0x08
 29#define PWMGDUR			0x0c
 30#define PWMWAVENUM		0x28
 31#define PWMDWIDTH		0x2c
 32#define PWM45DWIDTH_FIXUP	0x30
 33#define PWMTHRES		0x30
 34#define PWM45THRES_FIXUP	0x34
 
 35
 36#define PWM_CLK_DIV_MAX		7
 37
 38enum {
 39	MTK_CLK_MAIN = 0,
 40	MTK_CLK_TOP,
 41	MTK_CLK_PWM1,
 42	MTK_CLK_PWM2,
 43	MTK_CLK_PWM3,
 44	MTK_CLK_PWM4,
 45	MTK_CLK_PWM5,
 46	MTK_CLK_PWM6,
 47	MTK_CLK_PWM7,
 48	MTK_CLK_PWM8,
 49	MTK_CLK_MAX,
 50};
 51
 52static const char * const mtk_pwm_clk_name[MTK_CLK_MAX] = {
 53	"main", "top", "pwm1", "pwm2", "pwm3", "pwm4", "pwm5", "pwm6", "pwm7",
 54	"pwm8"
 55};
 56
 57struct mtk_pwm_platform_data {
 58	unsigned int num_pwms;
 59	bool pwm45_fixup;
 
 
 60};
 61
 62/**
 63 * struct mtk_pwm_chip - struct representing PWM chip
 64 * @chip: linux PWM chip representation
 65 * @regs: base address of PWM chip
 66 * @clks: list of clocks
 
 
 
 
 67 */
 68struct mtk_pwm_chip {
 69	struct pwm_chip chip;
 70	void __iomem *regs;
 71	struct clk *clks[MTK_CLK_MAX];
 72	const struct mtk_pwm_platform_data *soc;
 
 
 73};
 74
 75static const unsigned int mtk_pwm_reg_offset[] = {
 76	0x0010, 0x0050, 0x0090, 0x00d0, 0x0110, 0x0150, 0x0190, 0x0220
 77};
 78
 79static inline struct mtk_pwm_chip *to_mtk_pwm_chip(struct pwm_chip *chip)
 
 
 
 
 
 80{
 81	return container_of(chip, struct mtk_pwm_chip, chip);
 82}
 83
 84static int mtk_pwm_clk_enable(struct pwm_chip *chip, struct pwm_device *pwm)
 
 85{
 86	struct mtk_pwm_chip *pc = to_mtk_pwm_chip(chip);
 87	int ret;
 88
 89	ret = clk_prepare_enable(pc->clks[MTK_CLK_TOP]);
 90	if (ret < 0)
 91		return ret;
 92
 93	ret = clk_prepare_enable(pc->clks[MTK_CLK_MAIN]);
 94	if (ret < 0)
 95		goto disable_clk_top;
 96
 97	ret = clk_prepare_enable(pc->clks[MTK_CLK_PWM1 + pwm->hwpwm]);
 98	if (ret < 0)
 99		goto disable_clk_main;
100
101	return 0;
102
103disable_clk_main:
104	clk_disable_unprepare(pc->clks[MTK_CLK_MAIN]);
105disable_clk_top:
106	clk_disable_unprepare(pc->clks[MTK_CLK_TOP]);
107
108	return ret;
109}
110
111static void mtk_pwm_clk_disable(struct pwm_chip *chip, struct pwm_device *pwm)
 
112{
113	struct mtk_pwm_chip *pc = to_mtk_pwm_chip(chip);
114
115	clk_disable_unprepare(pc->clks[MTK_CLK_PWM1 + pwm->hwpwm]);
116	clk_disable_unprepare(pc->clks[MTK_CLK_MAIN]);
117	clk_disable_unprepare(pc->clks[MTK_CLK_TOP]);
118}
119
120static inline u32 mtk_pwm_readl(struct mtk_pwm_chip *chip, unsigned int num,
121				unsigned int offset)
 
122{
123	return readl(chip->regs + mtk_pwm_reg_offset[num] + offset);
124}
125
126static inline void mtk_pwm_writel(struct mtk_pwm_chip *chip,
127				  unsigned int num, unsigned int offset,
128				  u32 value)
129{
130	writel(value, chip->regs + mtk_pwm_reg_offset[num] + offset);
131}
132
133static int mtk_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
134			  int duty_ns, int period_ns)
135{
136	struct mtk_pwm_chip *pc = to_mtk_pwm_chip(chip);
137	struct clk *clk = pc->clks[MTK_CLK_PWM1 + pwm->hwpwm];
138	u32 clkdiv = 0, cnt_period, cnt_duty, reg_width = PWMDWIDTH,
139	    reg_thres = PWMTHRES;
140	u64 resolution;
141	int ret;
142
143	ret = mtk_pwm_clk_enable(chip, pwm);
 
144	if (ret < 0)
145		return ret;
146
 
 
 
 
147	/* Using resolution in picosecond gets accuracy higher */
148	resolution = (u64)NSEC_PER_SEC * 1000;
149	do_div(resolution, clk_get_rate(clk));
150
151	cnt_period = DIV_ROUND_CLOSEST_ULL((u64)period_ns * 1000, resolution);
152	while (cnt_period > 8191) {
153		resolution *= 2;
154		clkdiv++;
155		cnt_period = DIV_ROUND_CLOSEST_ULL((u64)period_ns * 1000,
156						   resolution);
157	}
158
159	if (clkdiv > PWM_CLK_DIV_MAX) {
160		mtk_pwm_clk_disable(chip, pwm);
161		dev_err(chip->dev, "period %d not supported\n", period_ns);
162		return -EINVAL;
163	}
164
165	if (pc->soc->pwm45_fixup && pwm->hwpwm > 2) {
166		/*
167		 * PWM[4,5] has distinct offset for PWMDWIDTH and PWMTHRES
168		 * from the other PWMs on MT7623.
169		 */
170		reg_width = PWM45DWIDTH_FIXUP;
171		reg_thres = PWM45THRES_FIXUP;
172	}
173
174	cnt_duty = DIV_ROUND_CLOSEST_ULL((u64)duty_ns * 1000, resolution);
175	mtk_pwm_writel(pc, pwm->hwpwm, PWMCON, BIT(15) | clkdiv);
176	mtk_pwm_writel(pc, pwm->hwpwm, reg_width, cnt_period);
177	mtk_pwm_writel(pc, pwm->hwpwm, reg_thres, cnt_duty);
178
179	mtk_pwm_clk_disable(chip, pwm);
180
181	return 0;
182}
183
184static int mtk_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
185{
186	struct mtk_pwm_chip *pc = to_mtk_pwm_chip(chip);
187	u32 value;
188	int ret;
189
190	ret = mtk_pwm_clk_enable(chip, pwm);
191	if (ret < 0)
192		return ret;
193
194	value = readl(pc->regs);
195	value |= BIT(pwm->hwpwm);
196	writel(value, pc->regs);
197
198	return 0;
199}
200
201static void mtk_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
202{
203	struct mtk_pwm_chip *pc = to_mtk_pwm_chip(chip);
204	u32 value;
205
206	value = readl(pc->regs);
207	value &= ~BIT(pwm->hwpwm);
208	writel(value, pc->regs);
209
210	mtk_pwm_clk_disable(chip, pwm);
211}
212
213static const struct pwm_ops mtk_pwm_ops = {
214	.config = mtk_pwm_config,
215	.enable = mtk_pwm_enable,
216	.disable = mtk_pwm_disable,
217	.owner = THIS_MODULE,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
218};
219
220static int mtk_pwm_probe(struct platform_device *pdev)
221{
222	const struct mtk_pwm_platform_data *data;
223	struct mtk_pwm_chip *pc;
224	struct resource *res;
225	unsigned int i;
226	int ret;
227
228	pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
229	if (!pc)
230		return -ENOMEM;
231
232	data = of_device_get_match_data(&pdev->dev);
233	if (data == NULL)
234		return -EINVAL;
235	pc->soc = data;
236
237	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
238	pc->regs = devm_ioremap_resource(&pdev->dev, res);
239	if (IS_ERR(pc->regs))
240		return PTR_ERR(pc->regs);
241
242	for (i = 0; i < data->num_pwms + 2; i++) {
243		pc->clks[i] = devm_clk_get(&pdev->dev, mtk_pwm_clk_name[i]);
244		if (IS_ERR(pc->clks[i])) {
245			dev_err(&pdev->dev, "clock: %s fail: %ld\n",
246				mtk_pwm_clk_name[i], PTR_ERR(pc->clks[i]));
247			return PTR_ERR(pc->clks[i]);
248		}
249	}
250
251	platform_set_drvdata(pdev, pc);
252
253	pc->chip.dev = &pdev->dev;
254	pc->chip.ops = &mtk_pwm_ops;
255	pc->chip.base = -1;
256	pc->chip.npwm = data->num_pwms;
257
258	ret = pwmchip_add(&pc->chip);
259	if (ret < 0) {
260		dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret);
261		return ret;
 
 
 
 
 
 
 
 
 
 
262	}
263
264	return 0;
265}
 
266
267static int mtk_pwm_remove(struct platform_device *pdev)
268{
269	struct mtk_pwm_chip *pc = platform_get_drvdata(pdev);
270
271	return pwmchip_remove(&pc->chip);
272}
273
274static const struct mtk_pwm_platform_data mt2712_pwm_data = {
275	.num_pwms = 8,
276	.pwm45_fixup = false,
 
 
277};
278
279static const struct mtk_pwm_platform_data mt7622_pwm_data = {
 
 
 
 
 
 
 
280	.num_pwms = 6,
281	.pwm45_fixup = false,
 
 
282};
283
284static const struct mtk_pwm_platform_data mt7623_pwm_data = {
285	.num_pwms = 5,
286	.pwm45_fixup = true,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
287};
288
289static const struct of_device_id mtk_pwm_of_match[] = {
290	{ .compatible = "mediatek,mt2712-pwm", .data = &mt2712_pwm_data },
 
291	{ .compatible = "mediatek,mt7622-pwm", .data = &mt7622_pwm_data },
292	{ .compatible = "mediatek,mt7623-pwm", .data = &mt7623_pwm_data },
 
 
 
 
 
 
 
293	{ },
294};
295MODULE_DEVICE_TABLE(of, mtk_pwm_of_match);
296
297static struct platform_driver mtk_pwm_driver = {
298	.driver = {
299		.name = "mtk-pwm",
300		.of_match_table = mtk_pwm_of_match,
301	},
302	.probe = mtk_pwm_probe,
303	.remove = mtk_pwm_remove,
304};
305module_platform_driver(mtk_pwm_driver);
306
307MODULE_AUTHOR("John Crispin <blogic@openwrt.org>");
308MODULE_LICENSE("GPL");
v6.8
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * MediaTek Pulse Width Modulator driver
  4 *
  5 * Copyright (C) 2015 John Crispin <blogic@openwrt.org>
  6 * Copyright (C) 2017 Zhi Mao <zhi.mao@mediatek.com>
  7 *
 
 
 
  8 */
  9
 10#include <linux/err.h>
 11#include <linux/io.h>
 12#include <linux/ioport.h>
 13#include <linux/kernel.h>
 14#include <linux/module.h>
 15#include <linux/clk.h>
 16#include <linux/of.h>
 
 17#include <linux/platform_device.h>
 18#include <linux/pwm.h>
 19#include <linux/slab.h>
 20#include <linux/types.h>
 21
 22/* PWM registers and bits definitions */
 23#define PWMCON			0x00
 24#define PWMHDUR			0x04
 25#define PWMLDUR			0x08
 26#define PWMGDUR			0x0c
 27#define PWMWAVENUM		0x28
 28#define PWMDWIDTH		0x2c
 29#define PWM45DWIDTH_FIXUP	0x30
 30#define PWMTHRES		0x30
 31#define PWM45THRES_FIXUP	0x34
 32#define PWM_CK_26M_SEL		0x210
 33
 34#define PWM_CLK_DIV_MAX		7
 35
 36struct pwm_mediatek_of_data {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 37	unsigned int num_pwms;
 38	bool pwm45_fixup;
 39	bool has_ck_26m_sel;
 40	const unsigned int *reg_offset;
 41};
 42
 43/**
 44 * struct pwm_mediatek_chip - struct representing PWM chip
 45 * @chip: linux PWM chip representation
 46 * @regs: base address of PWM chip
 47 * @clk_top: the top clock generator
 48 * @clk_main: the clock used by PWM core
 49 * @clk_pwms: the clock used by each PWM channel
 50 * @clk_freq: the fix clock frequency of legacy MIPS SoC
 51 * @soc: pointer to chip's platform data
 52 */
 53struct pwm_mediatek_chip {
 54	struct pwm_chip chip;
 55	void __iomem *regs;
 56	struct clk *clk_top;
 57	struct clk *clk_main;
 58	struct clk **clk_pwms;
 59	const struct pwm_mediatek_of_data *soc;
 60};
 61
 62static const unsigned int mtk_pwm_reg_offset_v1[] = {
 63	0x0010, 0x0050, 0x0090, 0x00d0, 0x0110, 0x0150, 0x0190, 0x0220
 64};
 65
 66static const unsigned int mtk_pwm_reg_offset_v2[] = {
 67	0x0080, 0x00c0, 0x0100, 0x0140, 0x0180, 0x01c0, 0x0200, 0x0240
 68};
 69
 70static inline struct pwm_mediatek_chip *
 71to_pwm_mediatek_chip(struct pwm_chip *chip)
 72{
 73	return container_of(chip, struct pwm_mediatek_chip, chip);
 74}
 75
 76static int pwm_mediatek_clk_enable(struct pwm_chip *chip,
 77				   struct pwm_device *pwm)
 78{
 79	struct pwm_mediatek_chip *pc = to_pwm_mediatek_chip(chip);
 80	int ret;
 81
 82	ret = clk_prepare_enable(pc->clk_top);
 83	if (ret < 0)
 84		return ret;
 85
 86	ret = clk_prepare_enable(pc->clk_main);
 87	if (ret < 0)
 88		goto disable_clk_top;
 89
 90	ret = clk_prepare_enable(pc->clk_pwms[pwm->hwpwm]);
 91	if (ret < 0)
 92		goto disable_clk_main;
 93
 94	return 0;
 95
 96disable_clk_main:
 97	clk_disable_unprepare(pc->clk_main);
 98disable_clk_top:
 99	clk_disable_unprepare(pc->clk_top);
100
101	return ret;
102}
103
104static void pwm_mediatek_clk_disable(struct pwm_chip *chip,
105				     struct pwm_device *pwm)
106{
107	struct pwm_mediatek_chip *pc = to_pwm_mediatek_chip(chip);
108
109	clk_disable_unprepare(pc->clk_pwms[pwm->hwpwm]);
110	clk_disable_unprepare(pc->clk_main);
111	clk_disable_unprepare(pc->clk_top);
112}
113
114static inline void pwm_mediatek_writel(struct pwm_mediatek_chip *chip,
115				       unsigned int num, unsigned int offset,
116				       u32 value)
117{
118	writel(value, chip->regs + chip->soc->reg_offset[num] + offset);
119}
120
121static int pwm_mediatek_config(struct pwm_chip *chip, struct pwm_device *pwm,
122			       int duty_ns, int period_ns)
 
123{
124	struct pwm_mediatek_chip *pc = to_pwm_mediatek_chip(chip);
 
 
 
 
 
 
 
125	u32 clkdiv = 0, cnt_period, cnt_duty, reg_width = PWMDWIDTH,
126	    reg_thres = PWMTHRES;
127	u64 resolution;
128	int ret;
129
130	ret = pwm_mediatek_clk_enable(chip, pwm);
131
132	if (ret < 0)
133		return ret;
134
135	/* Make sure we use the bus clock and not the 26MHz clock */
136	if (pc->soc->has_ck_26m_sel)
137		writel(0, pc->regs + PWM_CK_26M_SEL);
138
139	/* Using resolution in picosecond gets accuracy higher */
140	resolution = (u64)NSEC_PER_SEC * 1000;
141	do_div(resolution, clk_get_rate(pc->clk_pwms[pwm->hwpwm]));
142
143	cnt_period = DIV_ROUND_CLOSEST_ULL((u64)period_ns * 1000, resolution);
144	while (cnt_period > 8191) {
145		resolution *= 2;
146		clkdiv++;
147		cnt_period = DIV_ROUND_CLOSEST_ULL((u64)period_ns * 1000,
148						   resolution);
149	}
150
151	if (clkdiv > PWM_CLK_DIV_MAX) {
152		pwm_mediatek_clk_disable(chip, pwm);
153		dev_err(chip->dev, "period of %d ns not supported\n", period_ns);
154		return -EINVAL;
155	}
156
157	if (pc->soc->pwm45_fixup && pwm->hwpwm > 2) {
158		/*
159		 * PWM[4,5] has distinct offset for PWMDWIDTH and PWMTHRES
160		 * from the other PWMs on MT7623.
161		 */
162		reg_width = PWM45DWIDTH_FIXUP;
163		reg_thres = PWM45THRES_FIXUP;
164	}
165
166	cnt_duty = DIV_ROUND_CLOSEST_ULL((u64)duty_ns * 1000, resolution);
167	pwm_mediatek_writel(pc, pwm->hwpwm, PWMCON, BIT(15) | clkdiv);
168	pwm_mediatek_writel(pc, pwm->hwpwm, reg_width, cnt_period);
169	pwm_mediatek_writel(pc, pwm->hwpwm, reg_thres, cnt_duty);
170
171	pwm_mediatek_clk_disable(chip, pwm);
172
173	return 0;
174}
175
176static int pwm_mediatek_enable(struct pwm_chip *chip, struct pwm_device *pwm)
177{
178	struct pwm_mediatek_chip *pc = to_pwm_mediatek_chip(chip);
179	u32 value;
180	int ret;
181
182	ret = pwm_mediatek_clk_enable(chip, pwm);
183	if (ret < 0)
184		return ret;
185
186	value = readl(pc->regs);
187	value |= BIT(pwm->hwpwm);
188	writel(value, pc->regs);
189
190	return 0;
191}
192
193static void pwm_mediatek_disable(struct pwm_chip *chip, struct pwm_device *pwm)
194{
195	struct pwm_mediatek_chip *pc = to_pwm_mediatek_chip(chip);
196	u32 value;
197
198	value = readl(pc->regs);
199	value &= ~BIT(pwm->hwpwm);
200	writel(value, pc->regs);
201
202	pwm_mediatek_clk_disable(chip, pwm);
203}
204
205static int pwm_mediatek_apply(struct pwm_chip *chip, struct pwm_device *pwm,
206			      const struct pwm_state *state)
207{
208	int err;
209
210	if (state->polarity != PWM_POLARITY_NORMAL)
211		return -EINVAL;
212
213	if (!state->enabled) {
214		if (pwm->state.enabled)
215			pwm_mediatek_disable(chip, pwm);
216
217		return 0;
218	}
219
220	err = pwm_mediatek_config(chip, pwm, state->duty_cycle, state->period);
221	if (err)
222		return err;
223
224	if (!pwm->state.enabled)
225		err = pwm_mediatek_enable(chip, pwm);
226
227	return err;
228}
229
230static const struct pwm_ops pwm_mediatek_ops = {
231	.apply = pwm_mediatek_apply,
232};
233
234static int pwm_mediatek_probe(struct platform_device *pdev)
235{
236	struct pwm_mediatek_chip *pc;
 
 
237	unsigned int i;
238	int ret;
239
240	pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
241	if (!pc)
242		return -ENOMEM;
243
244	pc->soc = of_device_get_match_data(&pdev->dev);
 
 
 
245
246	pc->regs = devm_platform_ioremap_resource(pdev, 0);
 
247	if (IS_ERR(pc->regs))
248		return PTR_ERR(pc->regs);
249
250	pc->clk_pwms = devm_kmalloc_array(&pdev->dev, pc->soc->num_pwms,
251				    sizeof(*pc->clk_pwms), GFP_KERNEL);
252	if (!pc->clk_pwms)
253		return -ENOMEM;
 
 
 
 
 
 
254
255	pc->clk_top = devm_clk_get(&pdev->dev, "top");
256	if (IS_ERR(pc->clk_top))
257		return dev_err_probe(&pdev->dev, PTR_ERR(pc->clk_top),
258				     "Failed to get top clock\n");
259
260	pc->clk_main = devm_clk_get(&pdev->dev, "main");
261	if (IS_ERR(pc->clk_main))
262		return dev_err_probe(&pdev->dev, PTR_ERR(pc->clk_main),
263				     "Failed to get main clock\n");
264
265	for (i = 0; i < pc->soc->num_pwms; i++) {
266		char name[8];
267
268		snprintf(name, sizeof(name), "pwm%d", i + 1);
269
270		pc->clk_pwms[i] = devm_clk_get(&pdev->dev, name);
271		if (IS_ERR(pc->clk_pwms[i]))
272			return dev_err_probe(&pdev->dev, PTR_ERR(pc->clk_pwms[i]),
273					     "Failed to get %s clock\n", name);
274	}
275
276	pc->chip.dev = &pdev->dev;
277	pc->chip.ops = &pwm_mediatek_ops;
278	pc->chip.npwm = pc->soc->num_pwms;
279
280	ret = devm_pwmchip_add(&pdev->dev, &pc->chip);
281	if (ret < 0)
282		return dev_err_probe(&pdev->dev, ret, "pwmchip_add() failed\n");
283
284	return 0;
285}
286
287static const struct pwm_mediatek_of_data mt2712_pwm_data = {
288	.num_pwms = 8,
289	.pwm45_fixup = false,
290	.has_ck_26m_sel = false,
291	.reg_offset = mtk_pwm_reg_offset_v1,
292};
293
294static const struct pwm_mediatek_of_data mt6795_pwm_data = {
295	.num_pwms = 7,
296	.pwm45_fixup = false,
297	.has_ck_26m_sel = false,
298	.reg_offset = mtk_pwm_reg_offset_v1,
299};
300
301static const struct pwm_mediatek_of_data mt7622_pwm_data = {
302	.num_pwms = 6,
303	.pwm45_fixup = false,
304	.has_ck_26m_sel = true,
305	.reg_offset = mtk_pwm_reg_offset_v1,
306};
307
308static const struct pwm_mediatek_of_data mt7623_pwm_data = {
309	.num_pwms = 5,
310	.pwm45_fixup = true,
311	.has_ck_26m_sel = false,
312	.reg_offset = mtk_pwm_reg_offset_v1,
313};
314
315static const struct pwm_mediatek_of_data mt7628_pwm_data = {
316	.num_pwms = 4,
317	.pwm45_fixup = true,
318	.has_ck_26m_sel = false,
319	.reg_offset = mtk_pwm_reg_offset_v1,
320};
321
322static const struct pwm_mediatek_of_data mt7629_pwm_data = {
323	.num_pwms = 1,
324	.pwm45_fixup = false,
325	.has_ck_26m_sel = false,
326	.reg_offset = mtk_pwm_reg_offset_v1,
327};
328
329static const struct pwm_mediatek_of_data mt7981_pwm_data = {
330	.num_pwms = 3,
331	.pwm45_fixup = false,
332	.has_ck_26m_sel = true,
333	.reg_offset = mtk_pwm_reg_offset_v2,
334};
335
336static const struct pwm_mediatek_of_data mt7986_pwm_data = {
337	.num_pwms = 2,
338	.pwm45_fixup = false,
339	.has_ck_26m_sel = true,
340	.reg_offset = mtk_pwm_reg_offset_v1,
341};
342
343static const struct pwm_mediatek_of_data mt8183_pwm_data = {
344	.num_pwms = 4,
345	.pwm45_fixup = false,
346	.has_ck_26m_sel = true,
347	.reg_offset = mtk_pwm_reg_offset_v1,
348};
349
350static const struct pwm_mediatek_of_data mt8365_pwm_data = {
351	.num_pwms = 3,
352	.pwm45_fixup = false,
353	.has_ck_26m_sel = true,
354	.reg_offset = mtk_pwm_reg_offset_v1,
355};
356
357static const struct pwm_mediatek_of_data mt8516_pwm_data = {
358	.num_pwms = 5,
359	.pwm45_fixup = false,
360	.has_ck_26m_sel = true,
361	.reg_offset = mtk_pwm_reg_offset_v1,
362};
363
364static const struct of_device_id pwm_mediatek_of_match[] = {
365	{ .compatible = "mediatek,mt2712-pwm", .data = &mt2712_pwm_data },
366	{ .compatible = "mediatek,mt6795-pwm", .data = &mt6795_pwm_data },
367	{ .compatible = "mediatek,mt7622-pwm", .data = &mt7622_pwm_data },
368	{ .compatible = "mediatek,mt7623-pwm", .data = &mt7623_pwm_data },
369	{ .compatible = "mediatek,mt7628-pwm", .data = &mt7628_pwm_data },
370	{ .compatible = "mediatek,mt7629-pwm", .data = &mt7629_pwm_data },
371	{ .compatible = "mediatek,mt7981-pwm", .data = &mt7981_pwm_data },
372	{ .compatible = "mediatek,mt7986-pwm", .data = &mt7986_pwm_data },
373	{ .compatible = "mediatek,mt8183-pwm", .data = &mt8183_pwm_data },
374	{ .compatible = "mediatek,mt8365-pwm", .data = &mt8365_pwm_data },
375	{ .compatible = "mediatek,mt8516-pwm", .data = &mt8516_pwm_data },
376	{ },
377};
378MODULE_DEVICE_TABLE(of, pwm_mediatek_of_match);
379
380static struct platform_driver pwm_mediatek_driver = {
381	.driver = {
382		.name = "pwm-mediatek",
383		.of_match_table = pwm_mediatek_of_match,
384	},
385	.probe = pwm_mediatek_probe,
 
386};
387module_platform_driver(pwm_mediatek_driver);
388
389MODULE_AUTHOR("John Crispin <blogic@openwrt.org>");
390MODULE_LICENSE("GPL v2");