MX3: Adapt mx31lite to new timer init style
This patch converts the external "add_mx31lite-basic_defconfig.diff" to our MXC implementation. Note: This patch fixes a board reference only. Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
This commit is contained in:
parent
9a4cd7a5c8
commit
9e8a30dce1
1 changed files with 12 additions and 1 deletions
|
@ -26,6 +26,7 @@
|
||||||
#include <asm/hardware.h>
|
#include <asm/hardware.h>
|
||||||
#include <asm/mach-types.h>
|
#include <asm/mach-types.h>
|
||||||
#include <asm/mach/arch.h>
|
#include <asm/mach/arch.h>
|
||||||
|
#include <asm/mach/time.h>
|
||||||
#include <asm/mach/map.h>
|
#include <asm/mach/map.h>
|
||||||
#include <asm/arch/common.h>
|
#include <asm/arch/common.h>
|
||||||
#include <asm/page.h>
|
#include <asm/page.h>
|
||||||
|
@ -79,6 +80,16 @@ static void __init mxc_board_init(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void __init mx31lite_timer_init(void)
|
||||||
|
{
|
||||||
|
mxc_clocks_init(26000000);
|
||||||
|
mxc_timer_init("ipg_clk.0");
|
||||||
|
}
|
||||||
|
|
||||||
|
struct sys_timer mx31lite_timer = {
|
||||||
|
.init = mx31lite_timer_init,
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The following uses standard kernel macros defined in arch.h in order to
|
* The following uses standard kernel macros defined in arch.h in order to
|
||||||
* initialize __mach_desc_MX31LITE data structure.
|
* initialize __mach_desc_MX31LITE data structure.
|
||||||
|
@ -92,5 +103,5 @@ MACHINE_START(MX31LITE, "LogicPD MX31 LITEKIT")
|
||||||
.map_io = mx31lite_map_io,
|
.map_io = mx31lite_map_io,
|
||||||
.init_irq = mxc_init_irq,
|
.init_irq = mxc_init_irq,
|
||||||
.init_machine = mxc_board_init,
|
.init_machine = mxc_board_init,
|
||||||
.timer = &mxc_timer,
|
.timer = &mx31lite_timer,
|
||||||
MACHINE_END
|
MACHINE_END
|
||||||
|
|
Loading…
Reference in a new issue