blob: 3387319b0964f5c6ac8352da791e052f6630bb0d [file] [log] [blame]
Quinn Jensen52c543f2007-07-09 22:06:53 +01001/*
2 * Copyright (C) 1999,2000 Arm Limited
3 * Copyright (C) 2000 Deep Blue Solutions Ltd
4 * Copyright (C) 2002 Shane Nay (shane@minirl.com)
5 * Copyright 2005-2007 Freescale Semiconductor, Inc. All Rights Reserved.
6 * - add MX31 specific definitions
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
Quinn Jensen52c543f2007-07-09 22:06:53 +010017 */
18
19#include <linux/mm.h>
20#include <linux/init.h>
Sascha Hauercb882142009-02-08 02:00:50 +010021#include <linux/err.h>
22
Quinn Jensen52c543f2007-07-09 22:06:53 +010023#include <asm/pgtable.h>
24#include <asm/mach/map.h>
Sascha Hauercb882142009-02-08 02:00:50 +010025#include <asm/hardware/cache-l2x0.h>
26
Russell Kinga09e64f2008-08-05 16:14:15 +010027#include <mach/common.h>
Sascha Hauercb882142009-02-08 02:00:50 +010028#include <mach/hardware.h>
Sascha Hauer6134b2c2009-06-04 11:16:22 +020029#include <mach/iomux-v3.h>
Quinn Jensen52c543f2007-07-09 22:06:53 +010030
31/*!
32 * @file mm.c
33 *
34 * @brief This file creates static virtual to physical mappings, common to all MX3 boards.
35 *
36 * @ingroup Memory
37 */
38
Uwe Kleine-Königa528bc82010-11-12 10:11:42 +010039#ifdef CONFIG_SOC_IMX31
Uwe Kleine-König08ff97b2010-10-25 15:38:09 +020040static struct map_desc mx31_io_desc[] __initdata = {
41 imx_map_entry(MX31, X_MEMC, MT_DEVICE),
42 imx_map_entry(MX31, AVIC, MT_DEVICE_NONSHARED),
43 imx_map_entry(MX31, AIPS1, MT_DEVICE_NONSHARED),
44 imx_map_entry(MX31, AIPS2, MT_DEVICE_NONSHARED),
45 imx_map_entry(MX31, SPBA0, MT_DEVICE_NONSHARED),
Quinn Jensen52c543f2007-07-09 22:06:53 +010046};
47
Uwe Kleine-König08ff97b2010-10-25 15:38:09 +020048/*
Quinn Jensen52c543f2007-07-09 22:06:53 +010049 * This function initializes the memory map. It is called during the
50 * system startup to create static physical to virtual memory mappings
51 * for the IO modules.
52 */
Sascha Hauercd4a05f2009-04-02 22:32:10 +020053void __init mx31_map_io(void)
Quinn Jensen52c543f2007-07-09 22:06:53 +010054{
Uwe Kleine-König97976e22011-02-07 16:35:20 +010055 iotable_init(mx31_io_desc, ARRAY_SIZE(mx31_io_desc));
56}
57
58void __init imx31_init_early(void)
59{
Sascha Hauercd4a05f2009-04-02 22:32:10 +020060 mxc_set_cpu_type(MXC_CPU_MX31);
Uwe Kleine-König9651b7d2010-10-22 14:49:45 +020061 mxc_arch_reset_init(MX31_IO_ADDRESS(MX31_WDOG_BASE_ADDR));
Sascha Hauercd4a05f2009-04-02 22:32:10 +020062}
Uwe Kleine-Königd7e09512010-11-11 18:50:50 +010063
64int imx31_register_gpios(void);
65void __init mx31_init_irq(void)
66{
67 mxc_init_irq(MX31_IO_ADDRESS(MX31_AVIC_BASE_ADDR));
68 imx31_register_gpios();
69}
Uwe Kleine-Königa528bc82010-11-12 10:11:42 +010070#endif /* ifdef CONFIG_SOC_IMX31 */
Sascha Hauercd4a05f2009-04-02 22:32:10 +020071
Uwe Kleine-Königa528bc82010-11-12 10:11:42 +010072#ifdef CONFIG_SOC_IMX35
Uwe Kleine-König08ff97b2010-10-25 15:38:09 +020073static struct map_desc mx35_io_desc[] __initdata = {
74 imx_map_entry(MX35, X_MEMC, MT_DEVICE),
75 imx_map_entry(MX35, AVIC, MT_DEVICE_NONSHARED),
76 imx_map_entry(MX35, AIPS1, MT_DEVICE_NONSHARED),
77 imx_map_entry(MX35, AIPS2, MT_DEVICE_NONSHARED),
78 imx_map_entry(MX35, SPBA0, MT_DEVICE_NONSHARED),
79};
80
Sascha Hauercd4a05f2009-04-02 22:32:10 +020081void __init mx35_map_io(void)
82{
Uwe Kleine-König97976e22011-02-07 16:35:20 +010083 iotable_init(mx35_io_desc, ARRAY_SIZE(mx35_io_desc));
84}
85
86void __init imx35_init_early(void)
87{
Sascha Hauercd4a05f2009-04-02 22:32:10 +020088 mxc_set_cpu_type(MXC_CPU_MX35);
Uwe Kleine-König9651b7d2010-10-22 14:49:45 +020089 mxc_iomux_v3_init(MX35_IO_ADDRESS(MX35_IOMUXC_BASE_ADDR));
Uwe Kleine-König86f8efd2010-11-12 08:27:14 +010090 mxc_arch_reset_init(MX35_IO_ADDRESS(MX35_WDOG_BASE_ADDR));
Quinn Jensen52c543f2007-07-09 22:06:53 +010091}
Sascha Hauercb882142009-02-08 02:00:50 +010092
Uwe Kleine-Königd7e09512010-11-11 18:50:50 +010093int imx35_register_gpios(void);
Sascha Hauerc5aa0ad2009-05-25 17:36:19 +020094void __init mx35_init_irq(void)
95{
Uwe Kleine-Königd7e09512010-11-11 18:50:50 +010096 mxc_init_irq(MX35_IO_ADDRESS(MX35_AVIC_BASE_ADDR));
97 imx35_register_gpios();
Sascha Hauerc5aa0ad2009-05-25 17:36:19 +020098}
Uwe Kleine-Königa528bc82010-11-12 10:11:42 +010099#endif /* ifdef CONFIG_SOC_IMX35 */
Sascha Hauerc5aa0ad2009-05-25 17:36:19 +0200100
Sascha Hauercb882142009-02-08 02:00:50 +0100101#ifdef CONFIG_CACHE_L2X0
102static int mxc_init_l2x0(void)
103{
104 void __iomem *l2x0_base;
Juergen Beisert95247052010-09-22 09:42:15 +0200105 void __iomem *clkctl_base;
106/*
107 * First of all, we must repair broken chip settings. There are some
108 * i.MX35 CPUs in the wild, comming with bogus L2 cache settings. These
109 * misconfigured CPUs will run amok immediately when the L2 cache gets enabled.
110 * Workaraound is to setup the correct register setting prior enabling the
111 * L2 cache. This should not hurt already working CPUs, as they are using the
112 * same value
113 */
114#define L2_MEM_VAL 0x10
115
116 clkctl_base = ioremap(MX35_CLKCTL_BASE_ADDR, 4096);
117 if (clkctl_base != NULL) {
118 writel(0x00000515, clkctl_base + L2_MEM_VAL);
119 iounmap(clkctl_base);
120 } else {
121 pr_err("L2 cache: Cannot fix timing. Trying to continue without\n");
122 }
Sascha Hauercb882142009-02-08 02:00:50 +0100123
Uwe Kleine-König9651b7d2010-10-22 14:49:45 +0200124 l2x0_base = ioremap(MX3x_L2CC_BASE_ADDR, 4096);
Sascha Hauercb882142009-02-08 02:00:50 +0100125 if (IS_ERR(l2x0_base)) {
126 printk(KERN_ERR "remapping L2 cache area failed with %ld\n",
127 PTR_ERR(l2x0_base));
128 return 0;
129 }
130
131 l2x0_init(l2x0_base, 0x00030024, 0x00000000);
132
133 return 0;
134}
135
136arch_initcall(mxc_init_l2x0);
137#endif
138