mirror of https://github.com/OpenIPC/firmware.git
				
				
				
			
		
			
				
	
	
		
			264 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			Diff
		
	
	
			
		
		
	
	
			264 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			Diff
		
	
	
| --- linux-4.9.37/drivers/pwm/pwm-goke.c	1970-01-01 03:00:00.000000000 +0300
 | |
| +++ linux-4.9.y/drivers/pwm/pwm-goke.c	2021-06-07 13:01:34.000000000 +0300
 | |
| @@ -0,0 +1,260 @@
 | |
| +/*
 | |
| + * Copyright (c) Hunan Goke,Chengdu Goke,Shandong Goke. 2021. All rights reserved.
 | |
| + */
 | |
| +
 | |
| +#include <linux/bitops.h>
 | |
| +#include <linux/clk.h>
 | |
| +#include <linux/delay.h>
 | |
| +#include <linux/io.h>
 | |
| +#include <linux/module.h>
 | |
| +#include <linux/of_device.h>
 | |
| +#include <linux/platform_device.h>
 | |
| +#include <linux/pwm.h>
 | |
| +#include <linux/reset.h>
 | |
| +
 | |
| +#define PWM_CFG0_ADDR(x) (((x)*0x20) + 0x0)
 | |
| +#define PWM_CFG1_ADDR(x) (((x)*0x20) + 0x4)
 | |
| +#define PWM_CFG2_ADDR(x) (((x)*0x20) + 0x8)
 | |
| +#define PWM_CTRL_ADDR(x) (((x)*0x20) + 0xC)
 | |
| +
 | |
| +#define PWM_ENABLE_SHIFT 0
 | |
| +#define PWM_ENABLE_MASK  BIT(0)
 | |
| +
 | |
| +#define PWM_POLARITY_SHIFT 1
 | |
| +#define PWM_POLARITY_MASK  BIT(1)
 | |
| +
 | |
| +#define PWM_KEEP_SHIFT 2
 | |
| +#define PWM_KEEP_MASK  BIT(2)
 | |
| +
 | |
| +#define PWM_PERIOD_MASK GENMASK(31, 0)
 | |
| +#define PWM_DUTY_MASK   GENMASK(31, 0)
 | |
| +
 | |
| +struct goke_pwm_chip {
 | |
| +	struct pwm_chip chip;
 | |
| +	struct clk *clk;
 | |
| +	void __iomem *base;
 | |
| +	struct reset_control *rstc;
 | |
| +};
 | |
| +
 | |
| +struct goke_pwm_soc {
 | |
| +	u32 num_pwms;
 | |
| +};
 | |
| +
 | |
| +static const struct goke_pwm_soc pwm_soc[1] = {
 | |
| +	{ .num_pwms = 2 },
 | |
| +};
 | |
| +
 | |
| +static inline struct goke_pwm_chip *to_goke_pwm_chip(struct pwm_chip *chip)
 | |
| +{
 | |
| +	return container_of(chip, struct goke_pwm_chip, chip);
 | |
| +}
 | |
| +
 | |
| +static void goke_pwm_set_bits(void __iomem *base, u32 offset,
 | |
| +							   u32 mask, u32 data)
 | |
| +{
 | |
| +	void __iomem *address = base + offset;
 | |
| +	u32 value;
 | |
| +
 | |
| +	value = readl(address);
 | |
| +	value &= ~mask;
 | |
| +	value |= (data & mask);
 | |
| +	writel(value, address);
 | |
| +}
 | |
| +
 | |
| +static void goke_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
 | |
| +{
 | |
| +	struct goke_pwm_chip *bsp_pwm_chip = to_goke_pwm_chip(chip);
 | |
| +
 | |
| +	goke_pwm_set_bits(bsp_pwm_chip->base, PWM_CTRL_ADDR(pwm->hwpwm),
 | |
| +					  PWM_ENABLE_MASK, 0x1);
 | |
| +}
 | |
| +
 | |
| +static void goke_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
 | |
| +{
 | |
| +	struct goke_pwm_chip *bsp_pwm_chip = to_goke_pwm_chip(chip);
 | |
| +
 | |
| +	goke_pwm_set_bits(bsp_pwm_chip->base, PWM_CTRL_ADDR(pwm->hwpwm),
 | |
| +					  PWM_ENABLE_MASK, 0x0);
 | |
| +}
 | |
| +
 | |
| +static void goke_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
 | |
| +							 int duty_cycle_ns, int period_ns)
 | |
| +{
 | |
| +	struct goke_pwm_chip *bsp_pwm_chip = to_goke_pwm_chip(chip);
 | |
| +	u32 duty;
 | |
| +	u64 period, freq;
 | |
| +
 | |
| +	freq = div_u64(clk_get_rate(bsp_pwm_chip->clk), 1000000);
 | |
| +
 | |
| +	period = div_u64(freq * period_ns, 1000);
 | |
| +	duty = div_u64(period * duty_cycle_ns, period_ns);
 | |
| +
 | |
| +	goke_pwm_set_bits(bsp_pwm_chip->base, PWM_CFG0_ADDR(pwm->hwpwm),
 | |
| +					  PWM_PERIOD_MASK, period);
 | |
| +
 | |
| +	goke_pwm_set_bits(bsp_pwm_chip->base, PWM_CFG1_ADDR(pwm->hwpwm),
 | |
| +					  PWM_DUTY_MASK, duty);
 | |
| +}
 | |
| +
 | |
| +static void goke_pwm_set_polarity(struct pwm_chip *chip,
 | |
| +								  struct pwm_device *pwm,
 | |
| +								  enum pwm_polarity polarity)
 | |
| +{
 | |
| +	struct goke_pwm_chip *bsp_pwm_chip = to_goke_pwm_chip(chip);
 | |
| +
 | |
| +	if (polarity == PWM_POLARITY_INVERSED)
 | |
| +		goke_pwm_set_bits(bsp_pwm_chip->base, PWM_CTRL_ADDR(pwm->hwpwm),
 | |
| +						   PWM_POLARITY_MASK, (0x1 << PWM_POLARITY_SHIFT));
 | |
| +	else
 | |
| +		goke_pwm_set_bits(bsp_pwm_chip->base, PWM_CTRL_ADDR(pwm->hwpwm),
 | |
| +						   PWM_POLARITY_MASK, (0x0 << PWM_POLARITY_SHIFT));
 | |
| +}
 | |
| +
 | |
| +static void goke_pwm_get_state(struct pwm_chip *chip, struct pwm_device *pwm,
 | |
| +								struct pwm_state *state) {
 | |
| +	struct goke_pwm_chip *bsp_pwm_chip = to_goke_pwm_chip(chip);
 | |
| +	void __iomem *base;
 | |
| +	u32 freq;
 | |
| +	u64 value;
 | |
| +
 | |
| +	freq = div_u64(clk_get_rate(bsp_pwm_chip->clk), 1000000);
 | |
| +	base = bsp_pwm_chip->base;
 | |
| +
 | |
| +	value = readl(base + PWM_CFG0_ADDR(pwm->hwpwm));
 | |
| +	state->period = div_u64(value * 1000, freq);
 | |
| +
 | |
| +	value = readl(base + PWM_CFG1_ADDR(pwm->hwpwm));
 | |
| +	state->duty_cycle = div_u64(value * 1000, freq);
 | |
| +
 | |
| +	value = readl(base + PWM_CTRL_ADDR(pwm->hwpwm));
 | |
| +	state->enabled = (PWM_ENABLE_MASK & value);
 | |
| +}
 | |
| +
 | |
| +static int goke_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
 | |
| +						  struct pwm_state *state)
 | |
| +{
 | |
| +	if (state->polarity != pwm->state.polarity) {
 | |
| +		goke_pwm_set_polarity(chip, pwm, state->polarity);
 | |
| +	}
 | |
| +
 | |
| +	if (state->period != pwm->state.period ||
 | |
| +		state->duty_cycle != pwm->state.duty_cycle) {
 | |
| +		goke_pwm_config(chip, pwm, state->duty_cycle, state->period);
 | |
| +	}
 | |
| +
 | |
| +	if (state->enabled != pwm->state.enabled) {
 | |
| +		if (state->enabled) {
 | |
| +			goke_pwm_enable(chip, pwm);
 | |
| +		}
 | |
| +		else {
 | |
| +			goke_pwm_disable(chip, pwm);
 | |
| +		}
 | |
| +	}
 | |
| +
 | |
| +	return 0;
 | |
| +}
 | |
| +
 | |
| +static struct pwm_ops goke_pwm_ops = {
 | |
| +	.get_state = goke_pwm_get_state,
 | |
| +	.apply = goke_pwm_apply,
 | |
| +
 | |
| +	.owner = THIS_MODULE,
 | |
| +};
 | |
| +
 | |
| +static int goke_pwm_probe(struct platform_device *pdev)
 | |
| +{
 | |
| +	const struct goke_pwm_soc *soc =
 | |
| +		of_device_get_match_data(&pdev->dev);
 | |
| +	struct goke_pwm_chip *pwm_chip;
 | |
| +	struct resource *res;
 | |
| +	int ret;
 | |
| +	int i;
 | |
| +
 | |
| +	pwm_chip = devm_kzalloc(&pdev->dev, sizeof(*pwm_chip), GFP_KERNEL);
 | |
| +	if (pwm_chip == NULL) {
 | |
| +		return -ENOMEM;
 | |
| +	}
 | |
| +
 | |
| +	pwm_chip->clk = devm_clk_get(&pdev->dev, NULL);
 | |
| +	if (IS_ERR(pwm_chip->clk)) {
 | |
| +		dev_err(&pdev->dev, "getting clock failed with %ld\n",
 | |
| +				PTR_ERR(pwm_chip->clk));
 | |
| +		return PTR_ERR(pwm_chip->clk);
 | |
| +	}
 | |
| +
 | |
| +	pwm_chip->chip.ops = &goke_pwm_ops;
 | |
| +	pwm_chip->chip.dev = &pdev->dev;
 | |
| +	pwm_chip->chip.base = -1;
 | |
| +	pwm_chip->chip.npwm = soc->num_pwms;
 | |
| +
 | |
| +	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 | |
| +	pwm_chip->base = devm_ioremap_resource(&pdev->dev, res);
 | |
| +	if (IS_ERR(pwm_chip->base)) {
 | |
| +		return PTR_ERR(pwm_chip->base);
 | |
| +	}
 | |
| +
 | |
| +	ret = clk_prepare_enable(pwm_chip->clk);
 | |
| +	if (ret < 0) {
 | |
| +		return ret;
 | |
| +	}
 | |
| +
 | |
| +	pwm_chip->rstc = devm_reset_control_get(&pdev->dev, NULL);
 | |
| +	if (IS_ERR(pwm_chip->rstc)) {
 | |
| +		clk_disable_unprepare(pwm_chip->clk);
 | |
| +		return PTR_ERR(pwm_chip->rstc);
 | |
| +	}
 | |
| +
 | |
| +	reset_control_assert(pwm_chip->rstc);
 | |
| +	msleep(30);
 | |
| +	reset_control_deassert(pwm_chip->rstc);
 | |
| +
 | |
| +	ret = pwmchip_add(&pwm_chip->chip);
 | |
| +	if (ret < 0) {
 | |
| +		clk_disable_unprepare(pwm_chip->clk);
 | |
| +		return ret;
 | |
| +	}
 | |
| +
 | |
| +	for (i = 0; i < pwm_chip->chip.npwm; i++) {
 | |
| +		goke_pwm_set_bits(pwm_chip->base, PWM_CTRL_ADDR(i),
 | |
| +						   PWM_KEEP_MASK, (0x1 << PWM_KEEP_SHIFT));
 | |
| +	}
 | |
| +
 | |
| +	platform_set_drvdata(pdev, pwm_chip);
 | |
| +
 | |
| +	return 0;
 | |
| +}
 | |
| +
 | |
| +static int goke_pwm_remove(struct platform_device *pdev)
 | |
| +{
 | |
| +	struct goke_pwm_chip *pwm_chip;
 | |
| +
 | |
| +	pwm_chip = platform_get_drvdata(pdev);
 | |
| +
 | |
| +	reset_control_assert(pwm_chip->rstc);
 | |
| +	msleep(30);
 | |
| +	reset_control_deassert(pwm_chip->rstc);
 | |
| +
 | |
| +	clk_disable_unprepare(pwm_chip->clk);
 | |
| +
 | |
| +	return pwmchip_remove(&pwm_chip->chip);
 | |
| +}
 | |
| +
 | |
| +static const struct of_device_id goke_pwm_of_match[] = {
 | |
| +	{ .compatible = "goke,goke-pwm" },
 | |
| +	{ .compatible = "goke,pwm", .data = &pwm_soc[0] }, {}
 | |
| +};
 | |
| +MODULE_DEVICE_TABLE(of, goke_pwm_of_match);
 | |
| +
 | |
| +static struct platform_driver goke_pwm_driver = {
 | |
| +	.driver = {
 | |
| +		.name = "goke-pwm",
 | |
| +		.of_match_table = goke_pwm_of_match,
 | |
| +	},
 | |
| +	.probe = goke_pwm_probe,
 | |
| +	.remove = goke_pwm_remove,
 | |
| +};
 | |
| +module_platform_driver(goke_pwm_driver);
 | |
| +
 | |
| +MODULE_AUTHOR("Goke");
 | |
| +MODULE_DESCRIPTION("Goke SoCs PWM driver");
 | |
| +MODULE_LICENSE("GPL");
 |