Merge branches 'acpi-soc', 'acpi-misc', 'acpi-pci' and 'device-properties'
[deliverable/linux.git] / arch / arm / mach-imx / mach-imx53.c
CommitLineData
73d2b4cd
SG
1/*
2 * Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
3 * Copyright 2011 Linaro Ltd.
4 *
5 * The code contained herein is licensed under the GNU General Public
6 * License. You may obtain a copy of the GNU General Public License
7 * Version 2 or later at the following locations:
8 *
9 * http://www.opensource.org/licenses/gpl-license.html
10 * http://www.gnu.org/copyleft/gpl.html
11 */
12
394025ef
SG
13#include <linux/clk.h>
14#include <linux/clkdev.h>
15#include <linux/err.h>
73d2b4cd
SG
16#include <linux/io.h>
17#include <linux/irq.h>
73d2b4cd
SG
18#include <linux/of_irq.h>
19#include <linux/of_platform.h>
20#include <asm/mach/arch.h>
21#include <asm/mach/time.h>
73d2b4cd 22
e3372474 23#include "common.h"
18cb680f 24#include "hardware.h"
e3372474 25
ff4ab231
SG
26static void __init imx53_init_early(void)
27{
28 mxc_set_cpu_type(MXC_CPU_MX53);
29}
30
73d2b4cd
SG
31static void __init imx53_dt_init(void)
32{
ff4ab231 33 imx_src_init();
18cb680f 34
f40f38d1 35 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
6befda9a
ST
36
37 imx_aips_allow_unprivileged_access("fsl,imx53-aipstz");
73d2b4cd
SG
38}
39
ff4ab231
SG
40static void __init imx53_init_late(void)
41{
42 imx53_pm_init();
9a31634d
LS
43
44 platform_device_register_simple("cpufreq-dt", -1, NULL, 0);
ff4ab231
SG
45}
46
8756dd92 47static const char * const imx53_dt_board_compat[] __initconst = {
3f8976d9 48 "fsl,imx53",
73d2b4cd
SG
49 NULL
50};
51
52DT_MACHINE_START(IMX53_DT, "Freescale i.MX53 (Device Tree Support)")
73d2b4cd 53 .init_early = imx53_init_early,
fffa0512 54 .init_irq = tzic_init_irq,
73d2b4cd 55 .init_machine = imx53_dt_init,
aa96a18d 56 .init_late = imx53_init_late,
73d2b4cd
SG
57 .dt_compat = imx53_dt_board_compat,
58MACHINE_END
This page took 0.223933 seconds and 5 git commands to generate.