addr-map.c 2.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * arch/arm/mach-mv78xx0/addr-map.c
 *
 * Address map functions for Marvell MV78xx0 SoCs
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2.  This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/mbus.h>
14
#include <linux/io.h>
15
#include <plat/addr-map.h>
16
#include <mach/mv78xx0.h>
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
#include "common.h"

/*
 * Generic Address Decode Windows bit settings
 */
#define TARGET_DEV_BUS		1
#define TARGET_PCIE0		4
#define TARGET_PCIE1		8
#define TARGET_PCIE(i)		((i) ? TARGET_PCIE1 : TARGET_PCIE0)
#define ATTR_DEV_SPI_ROM	0x1f
#define ATTR_DEV_BOOT		0x2f
#define ATTR_DEV_CS3		0x37
#define ATTR_DEV_CS2		0x3b
#define ATTR_DEV_CS1		0x3d
#define ATTR_DEV_CS0		0x3e
#define ATTR_PCIE_IO(l)		(0xf0 & ~(0x10 << (l)))
#define ATTR_PCIE_MEM(l)	(0xf8 & ~(0x10 << (l)))

/*
 * CPU Address Decode Windows registers
 */
#define WIN0_OFF(n)		(BRIDGE_VIRT_BASE + 0x0000 + ((n) << 4))
#define WIN8_OFF(n)		(BRIDGE_VIRT_BASE + 0x0900 + (((n) - 8) << 4))

41
static void __init __iomem *win_cfg_base(const struct orion_addr_map_cfg *cfg, int win)
42 43 44 45 46 47 48 49 50
{
	/*
	 * Find the control register base address for this window.
	 *
	 * BRIDGE_VIRT_BASE points to the right (CPU0's or CPU1's)
	 * MBUS bridge depending on which CPU core we're running on,
	 * so we don't need to take that into account here.
	 */

51
	return (win < 8) ? WIN0_OFF(win) : WIN8_OFF(win);
52 53
}

54 55 56
/*
 * Description of the windows needed by the platform code
 */
57
static struct orion_addr_map_cfg addr_map_cfg __initdata = {
58 59 60 61
	.num_wins = 14,
	.remappable_wins = 8,
	.win_cfg_base = win_cfg_base,
};
62 63 64 65

void __init mv78xx0_setup_cpu_mbus(void)
{
	/*
66
	 * Disable, clear and configure windows.
67
	 */
68
	orion_config_wins(&addr_map_cfg, NULL);
69 70 71 72 73

	/*
	 * Setup MBUS dram target info.
	 */
	if (mv78xx0_core_index() == 0)
74
		orion_setup_cpu_mbus_target(&addr_map_cfg,
75
					    (void __iomem *) DDR_WINDOW_CPU0_BASE);
76
	else
77
		orion_setup_cpu_mbus_target(&addr_map_cfg,
78
					    (void __iomem *) DDR_WINDOW_CPU1_BASE);
79 80 81 82 83
}

void __init mv78xx0_setup_pcie_io_win(int window, u32 base, u32 size,
				      int maj, int min)
{
84
	orion_setup_cpu_win(&addr_map_cfg, window, base, size,
85
			    TARGET_PCIE(maj), ATTR_PCIE_IO(min), 0);
86 87 88 89 90
}

void __init mv78xx0_setup_pcie_mem_win(int window, u32 base, u32 size,
				       int maj, int min)
{
91 92
	orion_setup_cpu_win(&addr_map_cfg, window, base, size,
			    TARGET_PCIE(maj), ATTR_PCIE_MEM(min), -1);
93
}