| 
									
										
										
										
											2012-04-04 10:50:52 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright 2012 Freescale Semiconductor, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The code contained herein is licensed under the GNU General Public | 
					
						
							|  |  |  |  * License. You may obtain a copy of the GNU General Public License | 
					
						
							|  |  |  |  * Version 2 or later at the following locations: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * http://www.opensource.org/licenses/gpl-license.html
 | 
					
						
							|  |  |  |  * http://www.gnu.org/copyleft/gpl.html
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/clk.h>
 | 
					
						
							|  |  |  | #include <linux/err.h>
 | 
					
						
							|  |  |  | #include <linux/io.h>
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/of.h>
 | 
					
						
							|  |  |  | #include <linux/of_address.h>
 | 
					
						
							|  |  |  | #include <linux/platform_device.h>
 | 
					
						
							|  |  |  | #include <linux/pwm.h>
 | 
					
						
							|  |  |  | #include <linux/slab.h>
 | 
					
						
							| 
									
										
										
										
											2012-06-26 16:58:09 +08:00
										 |  |  | #include <linux/stmp_device.h>
 | 
					
						
							| 
									
										
										
										
											2012-04-04 10:50:52 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define SET	0x4
 | 
					
						
							|  |  |  | #define CLR	0x8
 | 
					
						
							|  |  |  | #define TOG	0xc
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PWM_CTRL		0x0
 | 
					
						
							|  |  |  | #define PWM_ACTIVE0		0x10
 | 
					
						
							|  |  |  | #define PWM_PERIOD0		0x20
 | 
					
						
							|  |  |  | #define  PERIOD_PERIOD(p)	((p) & 0xffff)
 | 
					
						
							|  |  |  | #define  PERIOD_PERIOD_MAX	0x10000
 | 
					
						
							|  |  |  | #define  PERIOD_ACTIVE_HIGH	(3 << 16)
 | 
					
						
							|  |  |  | #define  PERIOD_INACTIVE_LOW	(2 << 18)
 | 
					
						
							|  |  |  | #define  PERIOD_CDIV(div)	(((div) & 0x7) << 20)
 | 
					
						
							|  |  |  | #define  PERIOD_CDIV_MAX	8
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct mxs_pwm_chip { | 
					
						
							|  |  |  | 	struct pwm_chip chip; | 
					
						
							|  |  |  | 	struct clk *clk; | 
					
						
							|  |  |  | 	void __iomem *base; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define to_mxs_pwm_chip(_chip) container_of(_chip, struct mxs_pwm_chip, chip)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int mxs_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, | 
					
						
							|  |  |  | 			  int duty_ns, int period_ns) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mxs_pwm_chip *mxs = to_mxs_pwm_chip(chip); | 
					
						
							|  |  |  | 	int ret, div = 0; | 
					
						
							|  |  |  | 	unsigned int period_cycles, duty_cycles; | 
					
						
							|  |  |  | 	unsigned long rate; | 
					
						
							|  |  |  | 	unsigned long long c; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rate = clk_get_rate(mxs->clk); | 
					
						
							|  |  |  | 	while (1) { | 
					
						
							|  |  |  | 		c = rate / (1 << div); | 
					
						
							|  |  |  | 		c = c * period_ns; | 
					
						
							|  |  |  | 		do_div(c, 1000000000); | 
					
						
							|  |  |  | 		if (c < PERIOD_PERIOD_MAX) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		div++; | 
					
						
							|  |  |  | 		if (div > PERIOD_CDIV_MAX) | 
					
						
							|  |  |  | 			return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	period_cycles = c; | 
					
						
							|  |  |  | 	c *= duty_ns; | 
					
						
							|  |  |  | 	do_div(c, period_ns); | 
					
						
							|  |  |  | 	duty_cycles = c; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * If the PWM channel is disabled, make sure to turn on the clock | 
					
						
							|  |  |  | 	 * before writing the register. Otherwise, keep it enabled. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!test_bit(PWMF_ENABLED, &pwm->flags)) { | 
					
						
							|  |  |  | 		ret = clk_prepare_enable(mxs->clk); | 
					
						
							|  |  |  | 		if (ret) | 
					
						
							|  |  |  | 			return ret; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	writel(duty_cycles << 16, | 
					
						
							|  |  |  | 			mxs->base + PWM_ACTIVE0 + pwm->hwpwm * 0x20); | 
					
						
							|  |  |  | 	writel(PERIOD_PERIOD(period_cycles) | PERIOD_ACTIVE_HIGH | | 
					
						
							|  |  |  | 	       PERIOD_INACTIVE_LOW | PERIOD_CDIV(div), | 
					
						
							|  |  |  | 			mxs->base + PWM_PERIOD0 + pwm->hwpwm * 0x20); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * If the PWM is not enabled, turn the clock off again to save power. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!test_bit(PWMF_ENABLED, &pwm->flags)) | 
					
						
							|  |  |  | 		clk_disable_unprepare(mxs->clk); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int mxs_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mxs_pwm_chip *mxs = to_mxs_pwm_chip(chip); | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = clk_prepare_enable(mxs->clk); | 
					
						
							|  |  |  | 	if (ret) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	writel(1 << pwm->hwpwm, mxs->base + PWM_CTRL + SET); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void mxs_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mxs_pwm_chip *mxs = to_mxs_pwm_chip(chip); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	writel(1 << pwm->hwpwm, mxs->base + PWM_CTRL + CLR); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	clk_disable_unprepare(mxs->clk); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct pwm_ops mxs_pwm_ops = { | 
					
						
							|  |  |  | 	.config = mxs_pwm_config, | 
					
						
							|  |  |  | 	.enable = mxs_pwm_enable, | 
					
						
							|  |  |  | 	.disable = mxs_pwm_disable, | 
					
						
							|  |  |  | 	.owner = THIS_MODULE, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int mxs_pwm_probe(struct platform_device *pdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct device_node *np = pdev->dev.of_node; | 
					
						
							|  |  |  | 	struct mxs_pwm_chip *mxs; | 
					
						
							| 
									
										
										
										
											2012-06-26 16:58:10 +08:00
										 |  |  | 	struct resource *res; | 
					
						
							| 
									
										
										
										
											2012-04-04 10:50:52 +08:00
										 |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mxs = devm_kzalloc(&pdev->dev, sizeof(*mxs), GFP_KERNEL); | 
					
						
							|  |  |  | 	if (!mxs) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-26 16:58:10 +08:00
										 |  |  | 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 
					
						
							| 
									
										
										
										
											2013-01-21 11:09:16 +01:00
										 |  |  | 	mxs->base = devm_ioremap_resource(&pdev->dev, res); | 
					
						
							|  |  |  | 	if (IS_ERR(mxs->base)) | 
					
						
							|  |  |  | 		return PTR_ERR(mxs->base); | 
					
						
							| 
									
										
										
										
											2012-04-04 10:50:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-26 16:58:10 +08:00
										 |  |  | 	mxs->clk = devm_clk_get(&pdev->dev, NULL); | 
					
						
							|  |  |  | 	if (IS_ERR(mxs->clk)) | 
					
						
							|  |  |  | 		return PTR_ERR(mxs->clk); | 
					
						
							| 
									
										
										
										
											2012-04-04 10:50:52 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	mxs->chip.dev = &pdev->dev; | 
					
						
							|  |  |  | 	mxs->chip.ops = &mxs_pwm_ops; | 
					
						
							|  |  |  | 	mxs->chip.base = -1; | 
					
						
							| 
									
										
										
										
											2014-04-08 19:29:57 +08:00
										 |  |  | 	mxs->chip.can_sleep = true; | 
					
						
							| 
									
										
										
										
											2012-04-04 10:50:52 +08:00
										 |  |  | 	ret = of_property_read_u32(np, "fsl,pwm-number", &mxs->chip.npwm); | 
					
						
							|  |  |  | 	if (ret < 0) { | 
					
						
							|  |  |  | 		dev_err(&pdev->dev, "failed to get pwm number: %d\n", ret); | 
					
						
							| 
									
										
										
										
											2012-06-26 16:58:10 +08:00
										 |  |  | 		return ret; | 
					
						
							| 
									
										
										
										
											2012-04-04 10:50:52 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = pwmchip_add(&mxs->chip); | 
					
						
							|  |  |  | 	if (ret < 0) { | 
					
						
							|  |  |  | 		dev_err(&pdev->dev, "failed to add pwm chip %d\n", ret); | 
					
						
							| 
									
										
										
										
											2012-06-26 16:58:10 +08:00
										 |  |  | 		return ret; | 
					
						
							| 
									
										
										
										
											2012-04-04 10:50:52 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	platform_set_drvdata(pdev, mxs); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-09 23:25:37 -03:00
										 |  |  | 	ret = stmp_reset_block(mxs->base); | 
					
						
							|  |  |  | 	if (ret) | 
					
						
							|  |  |  | 		goto pwm_remove; | 
					
						
							| 
									
										
										
										
											2012-04-04 10:50:52 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2013-07-09 23:25:37 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | pwm_remove: | 
					
						
							|  |  |  | 	pwmchip_remove(&mxs->chip); | 
					
						
							|  |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2012-04-04 10:50:52 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-19 13:26:09 -05:00
										 |  |  | static int mxs_pwm_remove(struct platform_device *pdev) | 
					
						
							| 
									
										
										
										
											2012-04-04 10:50:52 +08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mxs_pwm_chip *mxs = platform_get_drvdata(pdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-01 12:58:00 +08:00
										 |  |  | 	return pwmchip_remove(&mxs->chip); | 
					
						
							| 
									
										
										
										
											2012-04-04 10:50:52 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-18 10:04:14 +02:00
										 |  |  | static const struct of_device_id mxs_pwm_dt_ids[] = { | 
					
						
							| 
									
										
										
										
											2012-06-26 16:58:08 +08:00
										 |  |  | 	{ .compatible = "fsl,imx23-pwm", }, | 
					
						
							| 
									
										
										
										
											2012-04-04 10:50:52 +08:00
										 |  |  | 	{ /* sentinel */ } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | MODULE_DEVICE_TABLE(of, mxs_pwm_dt_ids); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_driver mxs_pwm_driver = { | 
					
						
							|  |  |  | 	.driver = { | 
					
						
							|  |  |  | 		.name = "mxs-pwm", | 
					
						
							| 
									
										
										
										
											2013-06-12 13:18:29 +02:00
										 |  |  | 		.owner = THIS_MODULE, | 
					
						
							| 
									
										
										
										
											2013-09-30 08:56:39 +05:30
										 |  |  | 		.of_match_table = mxs_pwm_dt_ids, | 
					
						
							| 
									
										
										
										
											2012-04-04 10:50:52 +08:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	.probe = mxs_pwm_probe, | 
					
						
							| 
									
										
										
										
											2012-11-19 13:21:28 -05:00
										 |  |  | 	.remove = mxs_pwm_remove, | 
					
						
							| 
									
										
										
										
											2012-04-04 10:50:52 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | module_platform_driver(mxs_pwm_driver); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_ALIAS("platform:mxs-pwm"); | 
					
						
							|  |  |  | MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>"); | 
					
						
							|  |  |  | MODULE_DESCRIPTION("Freescale MXS PWM Driver"); | 
					
						
							|  |  |  | MODULE_LICENSE("GPL v2"); |