|
@@ -16,6 +16,7 @@
|
|
|
* along with this program; if not, write to the Free Software
|
|
* along with this program; if not, write to the Free Software
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
*/
|
|
*/
|
|
|
|
|
+#include <linux/clk-provider.h>
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/kernel.h>
|
|
|
#include <linux/init.h>
|
|
#include <linux/init.h>
|
|
|
#include <linux/interrupt.h>
|
|
#include <linux/interrupt.h>
|
|
@@ -197,6 +198,16 @@ void __init emev2_init_delay(void)
|
|
|
|
|
|
|
|
#ifdef CONFIG_USE_OF
|
|
#ifdef CONFIG_USE_OF
|
|
|
|
|
|
|
|
|
|
+static void __init emev2_add_standard_devices_dt(void)
|
|
|
|
|
+{
|
|
|
|
|
+#ifdef CONFIG_COMMON_CLK
|
|
|
|
|
+ of_clk_init(NULL);
|
|
|
|
|
+#else
|
|
|
|
|
+ emev2_clock_init();
|
|
|
|
|
+#endif
|
|
|
|
|
+ of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
static const char *emev2_boards_compat_dt[] __initdata = {
|
|
static const char *emev2_boards_compat_dt[] __initdata = {
|
|
|
"renesas,emev2",
|
|
"renesas,emev2",
|
|
|
NULL,
|
|
NULL,
|
|
@@ -206,6 +217,7 @@ DT_MACHINE_START(EMEV2_DT, "Generic Emma Mobile EV2 (Flattened Device Tree)")
|
|
|
.smp = smp_ops(emev2_smp_ops),
|
|
.smp = smp_ops(emev2_smp_ops),
|
|
|
.map_io = emev2_map_io,
|
|
.map_io = emev2_map_io,
|
|
|
.init_early = emev2_init_delay,
|
|
.init_early = emev2_init_delay,
|
|
|
|
|
+ .init_machine = emev2_add_standard_devices_dt,
|
|
|
.dt_compat = emev2_boards_compat_dt,
|
|
.dt_compat = emev2_boards_compat_dt,
|
|
|
MACHINE_END
|
|
MACHINE_END
|
|
|
|
|
|