mm-imx5.c 4.3 KB
Newer Older
1
/*
2
 * Copyright 2008-2010 Freescale Semiconductor, Inc. All Rights Reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15
 *
 * The code contained herein is licensed under the GNU General Public
 * License.  You may obtain a copy of the GNU General Public License
 * Version 2 or later at the following locations:
 *
 * http://www.opensource.org/licenses/gpl-license.html
 * http://www.gnu.org/copyleft/gpl.html
 *
 * Create static mapping between physical to virtual memory.
 */

#include <linux/mm.h>
#include <linux/init.h>
16
#include <linux/clk.h>
17
#include <linux/pinctrl/machine.h>
18 19 20

#include <asm/mach/map.h>

21
#include "common.h"
22
#include "devices/devices-common.h"
23
#include "hardware.h"
24
#include "iomux-v3.h"
25 26 27 28

/*
 * Define the MX51 memory map.
 */
29
static struct map_desc mx51_io_desc[] __initdata = {
30
	imx_map_entry(MX51, TZIC, MT_DEVICE),
31 32 33 34
	imx_map_entry(MX51, IRAM, MT_DEVICE),
	imx_map_entry(MX51, AIPS1, MT_DEVICE),
	imx_map_entry(MX51, SPBA0, MT_DEVICE),
	imx_map_entry(MX51, AIPS2, MT_DEVICE),
35 36
};

37 38 39 40
/*
 * Define the MX53 memory map.
 */
static struct map_desc mx53_io_desc[] __initdata = {
41
	imx_map_entry(MX53, TZIC, MT_DEVICE),
42 43 44 45 46
	imx_map_entry(MX53, AIPS1, MT_DEVICE),
	imx_map_entry(MX53, SPBA0, MT_DEVICE),
	imx_map_entry(MX53, AIPS2, MT_DEVICE),
};

47 48 49 50 51 52
/*
 * This function initializes the memory map. It is called during the
 * system startup to create static physical to virtual memory mappings
 * for the IO modules.
 */
void __init mx51_map_io(void)
53 54 55 56
{
	iotable_init(mx51_io_desc, ARRAY_SIZE(mx51_io_desc));
}

57 58 59 60 61
void __init mx53_map_io(void)
{
	iotable_init(mx53_io_desc, ARRAY_SIZE(mx53_io_desc));
}

62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
/*
 * The MIPI HSC unit has been removed from the i.MX51 Reference Manual by
 * the Freescale marketing division. However this did not remove the
 * hardware from the chip which still needs to be configured for proper
 * IPU support.
 */
static void __init imx51_ipu_mipi_setup(void)
{
	void __iomem *hsc_addr;
	hsc_addr = MX51_IO_ADDRESS(MX51_MIPI_HSC_BASE_ADDR);

	/* setup MIPI module to legacy mode */
	__raw_writel(0xf00, hsc_addr);

	/* CSI mode: reserved; DI control mode: legacy (from Freescale BSP) */
	__raw_writel(__raw_readl(hsc_addr + 0x800) | 0x30ff,
		hsc_addr + 0x800);
}

81
void __init imx51_init_early(void)
82
{
83
	imx51_ipu_mipi_setup();
84 85
	mxc_set_cpu_type(MXC_CPU_MX51);
	mxc_iomux_v3_init(MX51_IO_ADDRESS(MX51_IOMUXC_BASE_ADDR));
86
	imx_src_init();
87 88
}

89
void __init imx53_init_early(void)
90 91 92
{
	mxc_set_cpu_type(MXC_CPU_MX53);
	mxc_iomux_v3_init(MX53_IO_ADDRESS(MX53_IOMUXC_BASE_ADDR));
93
	imx_src_init();
94 95
}

96 97
void __init mx51_init_irq(void)
{
98
	tzic_init_irq(MX51_IO_ADDRESS(MX51_TZIC_BASE_ADDR));
99
}
100 101 102

void __init mx53_init_irq(void)
{
103
	tzic_init_irq(MX53_IO_ADDRESS(MX53_TZIC_BASE_ADDR));
104 105
}

106 107 108 109 110 111 112 113 114 115 116 117 118 119
static struct sdma_script_start_addrs imx51_sdma_script __initdata = {
	.ap_2_ap_addr = 642,
	.uart_2_mcu_addr = 817,
	.mcu_2_app_addr = 747,
	.mcu_2_shp_addr = 961,
	.ata_2_mcu_addr = 1473,
	.mcu_2_ata_addr = 1392,
	.app_2_per_addr = 1033,
	.app_2_mcu_addr = 683,
	.shp_2_per_addr = 1251,
	.shp_2_mcu_addr = 892,
};

static struct sdma_platform_data imx51_sdma_pdata __initdata = {
120
	.fw_name = "sdma-imx51.bin",
121 122 123
	.script_addrs = &imx51_sdma_script,
};

124 125 126 127
static const struct resource imx51_audmux_res[] __initconst = {
	DEFINE_RES_MEM(MX51_AUDMUX_BASE_ADDR, SZ_16K),
};

128 129
void __init imx51_soc_init(void)
{
130
	mxc_arch_reset_init(MX51_IO_ADDRESS(MX51_WDOG1_BASE_ADDR));
131 132
	mxc_device_init();

133 134 135 136 137
	/* i.mx51 has the i.mx35 type gpio */
	mxc_register_gpio("imx35-gpio", 0, MX51_GPIO1_BASE_ADDR, SZ_16K, MX51_INT_GPIO1_LOW, MX51_INT_GPIO1_HIGH);
	mxc_register_gpio("imx35-gpio", 1, MX51_GPIO2_BASE_ADDR, SZ_16K, MX51_INT_GPIO2_LOW, MX51_INT_GPIO2_HIGH);
	mxc_register_gpio("imx35-gpio", 2, MX51_GPIO3_BASE_ADDR, SZ_16K, MX51_INT_GPIO3_LOW, MX51_INT_GPIO3_HIGH);
	mxc_register_gpio("imx35-gpio", 3, MX51_GPIO4_BASE_ADDR, SZ_16K, MX51_INT_GPIO4_LOW, MX51_INT_GPIO4_HIGH);
138

139 140
	pinctrl_provide_dummies();

141 142
	/* i.mx51 has the i.mx35 type sdma */
	imx_add_imx_sdma("imx35-sdma", MX51_SDMA_BASE_ADDR, MX51_INT_SDMA, &imx51_sdma_pdata);
143 144 145 146

	/* Setup AIPS registers */
	imx_set_aips(MX51_IO_ADDRESS(MX51_AIPS1_BASE_ADDR));
	imx_set_aips(MX51_IO_ADDRESS(MX51_AIPS2_BASE_ADDR));
147

148 149 150
	/* i.mx51 has the i.mx31 type audmux */
	platform_device_register_simple("imx31-audmux", 0, imx51_audmux_res,
					ARRAY_SIZE(imx51_audmux_res));
151 152
}

153 154 155
void __init imx51_init_late(void)
{
	mx51_neon_fixup();
156
	imx51_pm_init();
157
}
158 159 160 161

void __init imx53_init_late(void)
{
	imx53_pm_init();
162
}