|
@@ -13,6 +13,7 @@
|
|
|
#include <linux/gpio.h>
|
|
|
#include <linux/of.h>
|
|
|
#include <linux/of_irq.h>
|
|
|
+#include <linux/clk-provider.h>
|
|
|
|
|
|
#include <asm/setup.h>
|
|
|
#include <asm/irq.h>
|
|
@@ -25,6 +26,14 @@
|
|
|
#include "generic.h"
|
|
|
|
|
|
|
|
|
+static void __init sam9_dt_timer_init(void)
|
|
|
+{
|
|
|
+#if defined(CONFIG_COMMON_CLK)
|
|
|
+ of_clk_init(NULL);
|
|
|
+#endif
|
|
|
+ at91sam926x_pit_init();
|
|
|
+}
|
|
|
+
|
|
|
static const struct of_device_id irq_of_match[] __initconst = {
|
|
|
|
|
|
{ .compatible = "atmel,at91rm9200-aic", .data = at91_aic_of_init },
|
|
@@ -43,7 +52,7 @@ static const char *at91_dt_board_compat[] __initdata = {
|
|
|
|
|
|
DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM (Device Tree)")
|
|
|
/* Maintainer: Atmel */
|
|
|
- .init_time = at91sam926x_pit_init,
|
|
|
+ .init_time = sam9_dt_timer_init,
|
|
|
.map_io = at91_map_io,
|
|
|
.handle_irq = at91_aic_handle_irq,
|
|
|
.init_early = at91_dt_initialize,
|