Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8e0b8429 authored by Magnus Damm's avatar Magnus Damm Committed by Paul Mundt
Browse files

sh: setup timers in late_time_init()



This patch moves the SuperH timer setup code from time_init()
to late_time_init(). Good things about this change:
 - interrupts: they are enabled at late_time_init()
 - mm: regular kmalloc() can be used at late_time_init()

Together with moving to late_time_init() this patch changes
the sh_cmt driver to always allocate with kmalloc(). This
simplifies the code a bit and also fixes section mismatches.

Signed-off-by: default avatarMagnus Damm <damm@igel.co.jp>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 5b644c7a
Loading
Loading
Loading
Loading
+20 −14
Original line number Diff line number Diff line
@@ -237,21 +237,8 @@ unsigned long long sched_clock(void)
}
#endif

void __init time_init(void)
static void __init sh_late_time_init(void)
{
	if (board_time_init)
		board_time_init();

	clk_init();

	rtc_sh_get_time(&xtime);
	set_normalized_timespec(&wall_to_monotonic,
				-xtime.tv_sec, -xtime.tv_nsec);

#ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
	local_timer_setup(smp_processor_id());
#endif

	/*
	 * Make sure all compiled-in early timers register themselves.
	 * Run probe() for one "earlytimer" device.
@@ -270,3 +257,22 @@ void __init time_init(void)

	printk(KERN_INFO "Using %s for system timer\n", sys_timer->name);
}

void __init time_init(void)
{
	if (board_time_init)
		board_time_init();

	clk_init();

	rtc_sh_get_time(&xtime);
	set_normalized_timespec(&wall_to_monotonic,
				-xtime.tv_sec, -xtime.tv_nsec);

#ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
	local_timer_setup(smp_processor_id());
#endif

	late_time_init = sh_late_time_init;
}
+2 −11
Original line number Diff line number Diff line
@@ -18,7 +18,6 @@
 */

#include <linux/init.h>
#include <linux/bootmem.h>
#include <linux/platform_device.h>
#include <linux/spinlock.h>
#include <linux/interrupt.h>
@@ -645,11 +644,7 @@ static int __devinit sh_cmt_probe(struct platform_device *pdev)
		return 0;
	}

	if (is_early_platform_device(pdev))
		p = alloc_bootmem(sizeof(*p));
	else
	p = kmalloc(sizeof(*p), GFP_KERNEL);

	if (p == NULL) {
		dev_err(&pdev->dev, "failed to allocate driver data\n");
		return -ENOMEM;
@@ -657,11 +652,7 @@ static int __devinit sh_cmt_probe(struct platform_device *pdev)

	ret = sh_cmt_setup(p, pdev);
	if (ret) {
		if (is_early_platform_device(pdev))
			free_bootmem(__pa(p), sizeof(*p));
		else
		kfree(p);

		platform_set_drvdata(pdev, NULL);
	}
	return ret;