Commit f3c65c28 authored by Arnd Bergmann's avatar Arnd Bergmann

Merge tag 'at91-cleanup-4.4' of...

Merge tag 'at91-cleanup-4.4' of git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux into next/drivers

Merge "First batch of cleanups for 4.4:" from Alexandre Belloni:
 - properly get the slow clock from timer-atmel-st, tcb_clksrc and pwm-atmel-tcb
 - small fix in an error path for tcb_clksrc

* tag 'at91-cleanup-4.4' of git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux:
  misc: atmel_tclib: get and use slow clock
  clocksource: tcb_clksrc: fix setup_clkevents error path
  clocksource: atmel-st: get and use slow clock
parents a67e5c32 7d8d05d1
...@@ -193,10 +193,17 @@ static int __init setup_clkevents(struct atmel_tc *tc, int clk32k_divisor_idx) ...@@ -193,10 +193,17 @@ static int __init setup_clkevents(struct atmel_tc *tc, int clk32k_divisor_idx)
struct clk *t2_clk = tc->clk[2]; struct clk *t2_clk = tc->clk[2];
int irq = tc->irq[2]; int irq = tc->irq[2];
ret = clk_prepare_enable(tc->slow_clk);
if (ret)
return ret;
/* try to enable t2 clk to avoid future errors in mode change */ /* try to enable t2 clk to avoid future errors in mode change */
ret = clk_prepare_enable(t2_clk); ret = clk_prepare_enable(t2_clk);
if (ret) if (ret) {
clk_disable_unprepare(tc->slow_clk);
return ret; return ret;
}
clk_disable(t2_clk); clk_disable(t2_clk);
clkevt.regs = tc->regs; clkevt.regs = tc->regs;
...@@ -208,7 +215,8 @@ static int __init setup_clkevents(struct atmel_tc *tc, int clk32k_divisor_idx) ...@@ -208,7 +215,8 @@ static int __init setup_clkevents(struct atmel_tc *tc, int clk32k_divisor_idx)
ret = request_irq(irq, ch2_irq, IRQF_TIMER, "tc_clkevt", &clkevt); ret = request_irq(irq, ch2_irq, IRQF_TIMER, "tc_clkevt", &clkevt);
if (ret) { if (ret) {
clk_disable_unprepare(t2_clk); clk_unprepare(t2_clk);
clk_disable_unprepare(tc->slow_clk);
return ret; return ret;
} }
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/irq.h> #include <linux/irq.h>
#include <linux/clk.h>
#include <linux/clockchips.h> #include <linux/clockchips.h>
#include <linux/export.h> #include <linux/export.h>
#include <linux/mfd/syscon.h> #include <linux/mfd/syscon.h>
...@@ -33,9 +34,7 @@ static unsigned long last_crtr; ...@@ -33,9 +34,7 @@ static unsigned long last_crtr;
static u32 irqmask; static u32 irqmask;
static struct clock_event_device clkevt; static struct clock_event_device clkevt;
static struct regmap *regmap_st; static struct regmap *regmap_st;
static int timer_latch;
#define AT91_SLOW_CLOCK 32768
#define RM9200_TIMER_LATCH ((AT91_SLOW_CLOCK + HZ/2) / HZ)
/* /*
* The ST_CRTR is updated asynchronously to the master clock ... but * The ST_CRTR is updated asynchronously to the master clock ... but
...@@ -82,8 +81,8 @@ static irqreturn_t at91rm9200_timer_interrupt(int irq, void *dev_id) ...@@ -82,8 +81,8 @@ static irqreturn_t at91rm9200_timer_interrupt(int irq, void *dev_id)
if (sr & AT91_ST_PITS) { if (sr & AT91_ST_PITS) {
u32 crtr = read_CRTR(); u32 crtr = read_CRTR();
while (((crtr - last_crtr) & AT91_ST_CRTV) >= RM9200_TIMER_LATCH) { while (((crtr - last_crtr) & AT91_ST_CRTV) >= timer_latch) {
last_crtr += RM9200_TIMER_LATCH; last_crtr += timer_latch;
clkevt.event_handler(&clkevt); clkevt.event_handler(&clkevt);
} }
return IRQ_HANDLED; return IRQ_HANDLED;
...@@ -144,7 +143,7 @@ static int clkevt32k_set_periodic(struct clock_event_device *dev) ...@@ -144,7 +143,7 @@ static int clkevt32k_set_periodic(struct clock_event_device *dev)
/* PIT for periodic irqs; fixed rate of 1/HZ */ /* PIT for periodic irqs; fixed rate of 1/HZ */
irqmask = AT91_ST_PITS; irqmask = AT91_ST_PITS;
regmap_write(regmap_st, AT91_ST_PIMR, RM9200_TIMER_LATCH); regmap_write(regmap_st, AT91_ST_PIMR, timer_latch);
regmap_write(regmap_st, AT91_ST_IER, irqmask); regmap_write(regmap_st, AT91_ST_IER, irqmask);
return 0; return 0;
} }
...@@ -197,7 +196,8 @@ static struct clock_event_device clkevt = { ...@@ -197,7 +196,8 @@ static struct clock_event_device clkevt = {
*/ */
static void __init atmel_st_timer_init(struct device_node *node) static void __init atmel_st_timer_init(struct device_node *node)
{ {
unsigned int val; struct clk *sclk;
unsigned int sclk_rate, val;
int irq, ret; int irq, ret;
regmap_st = syscon_node_to_regmap(node); regmap_st = syscon_node_to_regmap(node);
...@@ -221,6 +221,19 @@ static void __init atmel_st_timer_init(struct device_node *node) ...@@ -221,6 +221,19 @@ static void __init atmel_st_timer_init(struct device_node *node)
if (ret) if (ret)
panic(pr_fmt("Unable to setup IRQ\n")); panic(pr_fmt("Unable to setup IRQ\n"));
sclk = of_clk_get(node, 0);
if (IS_ERR(sclk))
panic(pr_fmt("Unable to get slow clock\n"));
clk_prepare_enable(sclk);
if (ret)
panic(pr_fmt("Could not enable slow clock\n"));
sclk_rate = clk_get_rate(sclk);
if (!sclk_rate)
panic(pr_fmt("Invalid slow clock rate\n"));
timer_latch = (sclk_rate + HZ / 2) / HZ;
/* The 32KiHz "Slow Clock" (tick every 30517.58 nanoseconds) is used /* The 32KiHz "Slow Clock" (tick every 30517.58 nanoseconds) is used
* directly for the clocksource and all clockevents, after adjusting * directly for the clocksource and all clockevents, after adjusting
* its prescaler from the 1 Hz default. * its prescaler from the 1 Hz default.
...@@ -229,11 +242,11 @@ static void __init atmel_st_timer_init(struct device_node *node) ...@@ -229,11 +242,11 @@ static void __init atmel_st_timer_init(struct device_node *node)
/* Setup timer clockevent, with minimum of two ticks (important!!) */ /* Setup timer clockevent, with minimum of two ticks (important!!) */
clkevt.cpumask = cpumask_of(0); clkevt.cpumask = cpumask_of(0);
clockevents_config_and_register(&clkevt, AT91_SLOW_CLOCK, clockevents_config_and_register(&clkevt, sclk_rate,
2, AT91_ST_ALMV); 2, AT91_ST_ALMV);
/* register clocksource */ /* register clocksource */
clocksource_register_hz(&clk32k, AT91_SLOW_CLOCK); clocksource_register_hz(&clk32k, sclk_rate);
} }
CLOCKSOURCE_OF_DECLARE(atmel_st_timer, "atmel,at91rm9200-st", CLOCKSOURCE_OF_DECLARE(atmel_st_timer, "atmel,at91rm9200-st",
atmel_st_timer_init); atmel_st_timer_init);
...@@ -125,6 +125,10 @@ static int __init tc_probe(struct platform_device *pdev) ...@@ -125,6 +125,10 @@ static int __init tc_probe(struct platform_device *pdev)
if (IS_ERR(clk)) if (IS_ERR(clk))
return PTR_ERR(clk); return PTR_ERR(clk);
tc->slow_clk = devm_clk_get(&pdev->dev, "slow_clk");
if (IS_ERR(tc->slow_clk))
return PTR_ERR(tc->slow_clk);
r = platform_get_resource(pdev, IORESOURCE_MEM, 0); r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
tc->regs = devm_ioremap_resource(&pdev->dev, r); tc->regs = devm_ioremap_resource(&pdev->dev, r);
if (IS_ERR(tc->regs)) if (IS_ERR(tc->regs))
......
...@@ -305,7 +305,7 @@ static int atmel_tcb_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, ...@@ -305,7 +305,7 @@ static int atmel_tcb_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
*/ */
if (i == 5) { if (i == 5) {
i = slowclk; i = slowclk;
rate = 32768; rate = clk_get_rate(tc->slow_clk);
min = div_u64(NSEC_PER_SEC, rate); min = div_u64(NSEC_PER_SEC, rate);
max = min << tc->tcb_config->counter_width; max = min << tc->tcb_config->counter_width;
...@@ -387,9 +387,9 @@ static int atmel_tcb_pwm_probe(struct platform_device *pdev) ...@@ -387,9 +387,9 @@ static int atmel_tcb_pwm_probe(struct platform_device *pdev)
tcbpwm = devm_kzalloc(&pdev->dev, sizeof(*tcbpwm), GFP_KERNEL); tcbpwm = devm_kzalloc(&pdev->dev, sizeof(*tcbpwm), GFP_KERNEL);
if (tcbpwm == NULL) { if (tcbpwm == NULL) {
atmel_tc_free(tc); err = -ENOMEM;
dev_err(&pdev->dev, "failed to allocate memory\n"); dev_err(&pdev->dev, "failed to allocate memory\n");
return -ENOMEM; goto err_free_tc;
} }
tcbpwm->chip.dev = &pdev->dev; tcbpwm->chip.dev = &pdev->dev;
...@@ -400,17 +400,27 @@ static int atmel_tcb_pwm_probe(struct platform_device *pdev) ...@@ -400,17 +400,27 @@ static int atmel_tcb_pwm_probe(struct platform_device *pdev)
tcbpwm->chip.npwm = NPWM; tcbpwm->chip.npwm = NPWM;
tcbpwm->tc = tc; tcbpwm->tc = tc;
err = clk_prepare_enable(tc->slow_clk);
if (err)
goto err_free_tc;
spin_lock_init(&tcbpwm->lock); spin_lock_init(&tcbpwm->lock);
err = pwmchip_add(&tcbpwm->chip); err = pwmchip_add(&tcbpwm->chip);
if (err < 0) { if (err < 0)
atmel_tc_free(tc); goto err_disable_clk;
return err;
}
platform_set_drvdata(pdev, tcbpwm); platform_set_drvdata(pdev, tcbpwm);
return 0; return 0;
err_disable_clk:
clk_disable_unprepare(tcbpwm->tc->slow_clk);
err_free_tc:
atmel_tc_free(tc);
return err;
} }
static int atmel_tcb_pwm_remove(struct platform_device *pdev) static int atmel_tcb_pwm_remove(struct platform_device *pdev)
...@@ -418,6 +428,8 @@ static int atmel_tcb_pwm_remove(struct platform_device *pdev) ...@@ -418,6 +428,8 @@ static int atmel_tcb_pwm_remove(struct platform_device *pdev)
struct atmel_tcb_pwm_chip *tcbpwm = platform_get_drvdata(pdev); struct atmel_tcb_pwm_chip *tcbpwm = platform_get_drvdata(pdev);
int err; int err;
clk_disable_unprepare(tcbpwm->tc->slow_clk);
err = pwmchip_remove(&tcbpwm->chip); err = pwmchip_remove(&tcbpwm->chip);
if (err < 0) if (err < 0)
return err; return err;
......
...@@ -67,6 +67,7 @@ struct atmel_tc { ...@@ -67,6 +67,7 @@ struct atmel_tc {
const struct atmel_tcb_config *tcb_config; const struct atmel_tcb_config *tcb_config;
int irq[3]; int irq[3];
struct clk *clk[3]; struct clk *clk[3];
struct clk *slow_clk;
struct list_head node; struct list_head node;
bool allocated; bool allocated;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment