2 * linux/arch/unicore32/kernel/pwm.c
4 * Code specific to PKUnity SoC and UniCore ISA
6 * Maintained by GUAN Xue-tao <gxt@mprc.pku.edu.cn>
7 * Copyright (C) 2001-2010 Guan Xuetao
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/platform_device.h>
17 #include <linux/slab.h>
18 #include <linux/err.h>
19 #include <linux/clk.h>
21 #include <linux/pwm.h>
23 #include <asm/div64.h>
24 #include <mach/hardware.h>
26 struct puv3_pwm_chip
{
33 static inline struct puv3_pwm_chip
*to_puv3(struct pwm_chip
*chip
)
35 return container_of(chip
, struct puv3_pwm_chip
, chip
);
39 * period_ns = 10^9 * (PRESCALE + 1) * (PV + 1) / PWM_CLK_RATE
40 * duty_ns = 10^9 * (PRESCALE + 1) * DC / PWM_CLK_RATE
42 static int puv3_pwm_config(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
43 int duty_ns
, int period_ns
)
45 unsigned long period_cycles
, prescale
, pv
, dc
;
46 struct puv3_pwm_chip
*puv3
= to_puv3(chip
);
49 c
= clk_get_rate(puv3
->clk
);
51 do_div(c
, 1000000000);
54 if (period_cycles
< 1)
57 prescale
= (period_cycles
- 1) / 1024;
58 pv
= period_cycles
/ (prescale
+ 1) - 1;
63 if (duty_ns
== period_ns
)
64 dc
= OST_PWMDCCR_FDCYCLE
;
66 dc
= (pv
+ 1) * duty_ns
/ period_ns
;
69 * NOTE: the clock to PWM has to be enabled first
70 * before writing to the registers
72 clk_prepare_enable(puv3
->clk
);
74 writel(prescale
, puv3
->base
+ OST_PWM_PWCR
);
75 writel(pv
- dc
, puv3
->base
+ OST_PWM_DCCR
);
76 writel(pv
, puv3
->base
+ OST_PWM_PCR
);
78 clk_disable_unprepare(puv3
->clk
);
83 static int puv3_pwm_enable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
85 struct puv3_pwm_chip
*puv3
= to_puv3(chip
);
87 return clk_prepare_enable(puv3
->clk
);
90 static void puv3_pwm_disable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
92 struct puv3_pwm_chip
*puv3
= to_puv3(chip
);
94 clk_disable_unprepare(puv3
->clk
);
97 static const struct pwm_ops puv3_pwm_ops
= {
98 .config
= puv3_pwm_config
,
99 .enable
= puv3_pwm_enable
,
100 .disable
= puv3_pwm_disable
,
101 .owner
= THIS_MODULE
,
104 static int pwm_probe(struct platform_device
*pdev
)
106 struct puv3_pwm_chip
*puv3
;
110 puv3
= devm_kzalloc(&pdev
->dev
, sizeof(*puv3
), GFP_KERNEL
);
112 dev_err(&pdev
->dev
, "failed to allocate memory\n");
116 puv3
->clk
= devm_clk_get(&pdev
->dev
, "OST_CLK");
117 if (IS_ERR(puv3
->clk
))
118 return PTR_ERR(puv3
->clk
);
120 r
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
122 dev_err(&pdev
->dev
, "no memory resource defined\n");
126 puv3
->base
= devm_request_and_ioremap(&pdev
->dev
, r
);
127 if (puv3
->base
== NULL
)
128 return -EADDRNOTAVAIL
;
130 puv3
->chip
.dev
= &pdev
->dev
;
131 puv3
->chip
.ops
= &puv3_pwm_ops
;
132 puv3
->chip
.base
= -1;
135 ret
= pwmchip_add(&puv3
->chip
);
137 dev_err(&pdev
->dev
, "pwmchip_add() failed: %d\n", ret
);
141 platform_set_drvdata(pdev
, puv3
);
145 static int pwm_remove(struct platform_device
*pdev
)
147 struct puv3_pwm_chip
*puv3
= platform_get_drvdata(pdev
);
149 return pwmchip_remove(&puv3
->chip
);
152 static struct platform_driver puv3_pwm_driver
= {
154 .name
= "PKUnity-v3-PWM",
157 .remove
= pwm_remove
,
159 module_platform_driver(puv3_pwm_driver
);
161 MODULE_LICENSE("GPL v2");