blob: 3835b6a3423c9ec2fb73d692f9b7f6050e5c0a70 [file] [log] [blame]
Shawn Guo9daaf312011-10-17 08:42:17 +08001/*
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
Shawn Guoff4ab232014-05-20 15:34:06 +080013#include <linux/io.h>
Shawn Guo9daaf312011-10-17 08:42:17 +080014#include <linux/irq.h>
Shawn Guo9daaf312011-10-17 08:42:17 +080015#include <linux/of_irq.h>
16#include <linux/of_platform.h>
17#include <asm/mach/arch.h>
18#include <asm/mach/time.h>
Shawn Guo9daaf312011-10-17 08:42:17 +080019
Shawn Guoe3372472012-09-13 21:01:00 +080020#include "common.h"
Shawn Guoff4ab232014-05-20 15:34:06 +080021#include "hardware.h"
Shawn Guoe3372472012-09-13 21:01:00 +080022
Shawn Guoff4ab232014-05-20 15:34:06 +080023static void __init imx51_init_early(void)
24{
25 mxc_set_cpu_type(MXC_CPU_MX51);
26}
27
28/*
29 * The MIPI HSC unit has been removed from the i.MX51 Reference Manual by
30 * the Freescale marketing division. However this did not remove the
31 * hardware from the chip which still needs to be configured for proper
32 * IPU support.
33 */
34#define MX51_MIPI_HSC_BASE 0x83fdc000
35static void __init imx51_ipu_mipi_setup(void)
36{
37 void __iomem *hsc_addr;
38
39 hsc_addr = ioremap(MX51_MIPI_HSC_BASE, SZ_16K);
40 WARN_ON(!hsc_addr);
41
42 /* setup MIPI module to legacy mode */
Johannes Bergc5531382016-01-27 17:59:35 +010043 imx_writel(0xf00, hsc_addr);
Shawn Guoff4ab232014-05-20 15:34:06 +080044
45 /* CSI mode: reserved; DI control mode: legacy (from Freescale BSP) */
Johannes Bergc5531382016-01-27 17:59:35 +010046 imx_writel(imx_readl(hsc_addr + 0x800) | 0x30ff, hsc_addr + 0x800);
Shawn Guoff4ab232014-05-20 15:34:06 +080047
48 iounmap(hsc_addr);
49}
50
Shawn Guo9daaf312011-10-17 08:42:17 +080051static void __init imx51_dt_init(void)
52{
Shawn Guoff4ab232014-05-20 15:34:06 +080053 imx51_ipu_mipi_setup();
54 imx_src_init();
Shawn Guo18cb6802013-05-10 09:13:44 +080055
Alexander Shiyan463f90f2016-06-25 08:26:15 +030056 imx_aips_allow_unprivileged_access("fsl,imx51-aipstz");
Shawn Guo9daaf312011-10-17 08:42:17 +080057}
58
Shawn Guoff4ab232014-05-20 15:34:06 +080059static void __init imx51_init_late(void)
60{
61 mx51_neon_fixup();
62 imx51_pm_init();
63}
64
Shawn Guo8756dd92014-07-01 16:03:00 +080065static const char * const imx51_dt_board_compat[] __initconst = {
Sascha Hauer3f8976d2012-02-17 12:07:00 +010066 "fsl,imx51",
Shawn Guo9daaf312011-10-17 08:42:17 +080067 NULL
68};
69
70DT_MACHINE_START(IMX51_DT, "Freescale i.MX51 (Device Tree Support)")
Shawn Guo9daaf312011-10-17 08:42:17 +080071 .init_early = imx51_init_early,
Shawn Guo9daaf312011-10-17 08:42:17 +080072 .init_machine = imx51_dt_init,
Shawn Guo8321b752012-04-26 11:42:34 +080073 .init_late = imx51_init_late,
Shawn Guo9daaf312011-10-17 08:42:17 +080074 .dt_compat = imx51_dt_board_compat,
Shawn Guo9daaf312011-10-17 08:42:17 +080075MACHINE_END