Thomas Gleixner | fcaf203 | 2019-05-27 08:55:08 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Shawn Guo | 9daaf31a | 2011-10-17 08:42:17 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved. |
| 4 | * Copyright 2011 Linaro Ltd. |
Shawn Guo | 9daaf31a | 2011-10-17 08:42:17 +0800 | [diff] [blame] | 5 | */ |
| 6 | |
Shawn Guo | ff4ab23 | 2014-05-20 15:34:06 +0800 | [diff] [blame] | 7 | #include <linux/io.h> |
Shawn Guo | 9daaf31a | 2011-10-17 08:42:17 +0800 | [diff] [blame] | 8 | #include <linux/irq.h> |
Fabio Estevam | 11d973d | 2018-07-09 15:19:15 -0300 | [diff] [blame] | 9 | #include <linux/of_address.h> |
Shawn Guo | 9daaf31a | 2011-10-17 08:42:17 +0800 | [diff] [blame] | 10 | #include <linux/of_irq.h> |
| 11 | #include <linux/of_platform.h> |
| 12 | #include <asm/mach/arch.h> |
| 13 | #include <asm/mach/time.h> |
Shawn Guo | 9daaf31a | 2011-10-17 08:42:17 +0800 | [diff] [blame] | 14 | |
Shawn Guo | e337247 | 2012-09-13 21:01:00 +0800 | [diff] [blame] | 15 | #include "common.h" |
Shawn Guo | ff4ab23 | 2014-05-20 15:34:06 +0800 | [diff] [blame] | 16 | #include "hardware.h" |
Shawn Guo | e337247 | 2012-09-13 21:01:00 +0800 | [diff] [blame] | 17 | |
Shawn Guo | ff4ab23 | 2014-05-20 15:34:06 +0800 | [diff] [blame] | 18 | static void __init imx51_init_early(void) |
| 19 | { |
| 20 | mxc_set_cpu_type(MXC_CPU_MX51); |
| 21 | } |
| 22 | |
| 23 | /* |
| 24 | * The MIPI HSC unit has been removed from the i.MX51 Reference Manual by |
| 25 | * the Freescale marketing division. However this did not remove the |
| 26 | * hardware from the chip which still needs to be configured for proper |
| 27 | * IPU support. |
| 28 | */ |
| 29 | #define MX51_MIPI_HSC_BASE 0x83fdc000 |
| 30 | static void __init imx51_ipu_mipi_setup(void) |
| 31 | { |
| 32 | void __iomem *hsc_addr; |
| 33 | |
| 34 | hsc_addr = ioremap(MX51_MIPI_HSC_BASE, SZ_16K); |
| 35 | WARN_ON(!hsc_addr); |
| 36 | |
| 37 | /* setup MIPI module to legacy mode */ |
Johannes Berg | c553138 | 2016-01-27 17:59:35 +0100 | [diff] [blame] | 38 | imx_writel(0xf00, hsc_addr); |
Shawn Guo | ff4ab23 | 2014-05-20 15:34:06 +0800 | [diff] [blame] | 39 | |
| 40 | /* CSI mode: reserved; DI control mode: legacy (from Freescale BSP) */ |
Johannes Berg | c553138 | 2016-01-27 17:59:35 +0100 | [diff] [blame] | 41 | imx_writel(imx_readl(hsc_addr + 0x800) | 0x30ff, hsc_addr + 0x800); |
Shawn Guo | ff4ab23 | 2014-05-20 15:34:06 +0800 | [diff] [blame] | 42 | |
| 43 | iounmap(hsc_addr); |
| 44 | } |
| 45 | |
Fabio Estevam | 11d973d | 2018-07-09 15:19:15 -0300 | [diff] [blame] | 46 | static void __init imx51_m4if_setup(void) |
| 47 | { |
| 48 | void __iomem *m4if_base; |
| 49 | struct device_node *np; |
| 50 | |
| 51 | np = of_find_compatible_node(NULL, NULL, "fsl,imx51-m4if"); |
| 52 | if (!np) |
| 53 | return; |
| 54 | |
| 55 | m4if_base = of_iomap(np, 0); |
Wen Yang | 0c17e83 | 2019-03-01 16:56:46 +0800 | [diff] [blame] | 56 | of_node_put(np); |
Fabio Estevam | 11d973d | 2018-07-09 15:19:15 -0300 | [diff] [blame] | 57 | if (!m4if_base) { |
| 58 | pr_err("Unable to map M4IF registers\n"); |
| 59 | return; |
| 60 | } |
| 61 | |
| 62 | /* |
| 63 | * Configure VPU and IPU with higher priorities |
| 64 | * in order to avoid artifacts during video playback |
| 65 | */ |
| 66 | writel_relaxed(0x00000203, m4if_base + 0x40); |
| 67 | writel_relaxed(0x00000000, m4if_base + 0x44); |
| 68 | writel_relaxed(0x00120125, m4if_base + 0x9c); |
| 69 | writel_relaxed(0x001901A3, m4if_base + 0x48); |
| 70 | iounmap(m4if_base); |
| 71 | } |
| 72 | |
Shawn Guo | 9daaf31a | 2011-10-17 08:42:17 +0800 | [diff] [blame] | 73 | static void __init imx51_dt_init(void) |
| 74 | { |
Shawn Guo | ff4ab23 | 2014-05-20 15:34:06 +0800 | [diff] [blame] | 75 | imx51_ipu_mipi_setup(); |
| 76 | imx_src_init(); |
Fabio Estevam | 11d973d | 2018-07-09 15:19:15 -0300 | [diff] [blame] | 77 | imx51_m4if_setup(); |
Fabio Estevam | 26b754f | 2018-07-10 13:31:48 -0300 | [diff] [blame] | 78 | imx5_pmu_init(); |
Alexander Shiyan | 463f90f | 2016-06-25 08:26:15 +0300 | [diff] [blame] | 79 | imx_aips_allow_unprivileged_access("fsl,imx51-aipstz"); |
Shawn Guo | 9daaf31a | 2011-10-17 08:42:17 +0800 | [diff] [blame] | 80 | } |
| 81 | |
Shawn Guo | ff4ab23 | 2014-05-20 15:34:06 +0800 | [diff] [blame] | 82 | static void __init imx51_init_late(void) |
| 83 | { |
| 84 | mx51_neon_fixup(); |
| 85 | imx51_pm_init(); |
| 86 | } |
| 87 | |
Shawn Guo | 8756dd9 | 2014-07-01 16:03:00 +0800 | [diff] [blame] | 88 | static const char * const imx51_dt_board_compat[] __initconst = { |
Sascha Hauer | 3f8976d | 2012-02-17 12:07:00 +0100 | [diff] [blame] | 89 | "fsl,imx51", |
Shawn Guo | 9daaf31a | 2011-10-17 08:42:17 +0800 | [diff] [blame] | 90 | NULL |
| 91 | }; |
| 92 | |
| 93 | DT_MACHINE_START(IMX51_DT, "Freescale i.MX51 (Device Tree Support)") |
Shawn Guo | 9daaf31a | 2011-10-17 08:42:17 +0800 | [diff] [blame] | 94 | .init_early = imx51_init_early, |
Shawn Guo | 9daaf31a | 2011-10-17 08:42:17 +0800 | [diff] [blame] | 95 | .init_machine = imx51_dt_init, |
Shawn Guo | 8321b75 | 2012-04-26 11:42:34 +0800 | [diff] [blame] | 96 | .init_late = imx51_init_late, |
Shawn Guo | 9daaf31a | 2011-10-17 08:42:17 +0800 | [diff] [blame] | 97 | .dt_compat = imx51_dt_board_compat, |
Shawn Guo | 9daaf31a | 2011-10-17 08:42:17 +0800 | [diff] [blame] | 98 | MACHINE_END |