blob: 2489f5b8b9830b317834183a68090c9bd3173905 [file] [log] [blame]
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -07001/*
2 * OMAP4 specific common source file.
3 *
4 * Copyright (C) 2010 Texas Instruments, Inc.
5 * Author:
6 * Santosh Shilimkar <santosh.shilimkar@ti.com>
7 *
8 *
9 * This program is free software,you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/io.h>
17#include <linux/platform_device.h>
18
19#include <asm/hardware/gic.h>
20#include <asm/hardware/cache-l2x0.h>
21
Tony Lindgren741e3a82011-05-17 03:51:26 -070022#include <plat/irqs.h>
23
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070024#include <mach/hardware.h>
Tony Lindgren4e653312011-11-10 22:45:17 +010025
26#include "common.h"
Santosh Shilimkar501f0c72011-01-01 19:56:04 +053027#include "omap4-sar-layout.h"
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070028
29#ifdef CONFIG_CACHE_L2X0
Santosh Shilimkar02afe8a2011-03-03 18:03:25 +053030static void __iomem *l2cache_base;
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070031#endif
32
Santosh Shilimkar501f0c72011-01-01 19:56:04 +053033static void __iomem *sar_ram_base;
34
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070035void __init gic_init_irq(void)
36{
Marc Zyngierab65be22011-11-15 17:22:45 +000037 void __iomem *omap_irq_base;
38 void __iomem *gic_dist_base_addr;
39
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070040 /* Static mapping, never released */
41 gic_dist_base_addr = ioremap(OMAP44XX_GIC_DIST_BASE, SZ_4K);
42 BUG_ON(!gic_dist_base_addr);
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070043
44 /* Static mapping, never released */
Tony Lindgren741e3a82011-05-17 03:51:26 -070045 omap_irq_base = ioremap(OMAP44XX_GIC_CPU_BASE, SZ_512);
46 BUG_ON(!omap_irq_base);
Russell Kingb580b892010-12-04 15:55:14 +000047
Tony Lindgren741e3a82011-05-17 03:51:26 -070048 gic_init(0, 29, gic_dist_base_addr, omap_irq_base);
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070049}
50
51#ifdef CONFIG_CACHE_L2X0
Santosh Shilimkar4e803c42010-07-31 21:40:10 +053052
Santosh Shilimkar02afe8a2011-03-03 18:03:25 +053053void __iomem *omap4_get_l2cache_base(void)
54{
55 return l2cache_base;
56}
57
Santosh Shilimkar4e803c42010-07-31 21:40:10 +053058static void omap4_l2x0_disable(void)
59{
60 /* Disable PL310 L2 Cache controller */
61 omap_smc1(0x102, 0x0);
62}
63
Santosh Shilimkar4bdb1572011-02-22 10:00:44 +010064static void omap4_l2x0_set_debug(unsigned long val)
65{
66 /* Program PL310 L2 Cache controller debug register */
67 omap_smc1(0x100, val);
68}
69
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070070static int __init omap_l2_cache_init(void)
71{
Santosh Shilimkar1773e602010-11-19 23:01:03 +053072 u32 aux_ctrl = 0;
73
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070074 /*
75 * To avoid code running on other OMAPs in
76 * multi-omap builds
77 */
78 if (!cpu_is_omap44xx())
79 return -ENODEV;
80
81 /* Static mapping, never released */
82 l2cache_base = ioremap(OMAP44XX_L2CACHE_BASE, SZ_4K);
Santosh Shilimkar0db18032011-03-03 17:36:52 +053083 if (WARN_ON(!l2cache_base))
84 return -ENOMEM;
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070085
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070086 /*
Santosh Shilimkara777b722010-09-16 18:44:47 +053087 * 16-way associativity, parity disabled
88 * Way size - 32KB (es1.0)
89 * Way size - 64KB (es2.0 +)
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -070090 */
Santosh Shilimkar1773e602010-11-19 23:01:03 +053091 aux_ctrl = ((1 << L2X0_AUX_CTRL_ASSOCIATIVITY_SHIFT) |
92 (0x1 << 25) |
93 (0x1 << L2X0_AUX_CTRL_NS_LOCKDOWN_SHIFT) |
94 (0x1 << L2X0_AUX_CTRL_NS_INT_CTRL_SHIFT));
95
Mans Rullgard11e02642010-11-19 23:01:04 +053096 if (omap_rev() == OMAP4430_REV_ES1_0) {
Santosh Shilimkar1773e602010-11-19 23:01:03 +053097 aux_ctrl |= 0x2 << L2X0_AUX_CTRL_WAY_SIZE_SHIFT;
Mans Rullgard11e02642010-11-19 23:01:04 +053098 } else {
99 aux_ctrl |= ((0x3 << L2X0_AUX_CTRL_WAY_SIZE_SHIFT) |
Santosh Shilimkarb0f20ff2010-11-19 23:01:05 +0530100 (1 << L2X0_AUX_CTRL_SHARE_OVERRIDE_SHIFT) |
Mans Rullgard11e02642010-11-19 23:01:04 +0530101 (1 << L2X0_AUX_CTRL_DATA_PREFETCH_SHIFT) |
Santosh Shilimkarb89cd712010-11-19 23:01:06 +0530102 (1 << L2X0_AUX_CTRL_INSTR_PREFETCH_SHIFT) |
103 (1 << L2X0_AUX_CTRL_EARLY_BRESP_SHIFT));
Mans Rullgard11e02642010-11-19 23:01:04 +0530104 }
105 if (omap_rev() != OMAP4430_REV_ES1_0)
106 omap_smc1(0x109, aux_ctrl);
107
108 /* Enable PL310 L2 Cache controller */
109 omap_smc1(0x102, 0x1);
Santosh Shilimkar1773e602010-11-19 23:01:03 +0530110
111 l2x0_init(l2cache_base, aux_ctrl, L2X0_AUX_CTRL_MASK);
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -0700112
Santosh Shilimkar4e803c42010-07-31 21:40:10 +0530113 /*
114 * Override default outer_cache.disable with a OMAP4
115 * specific one
116 */
117 outer_cache.disable = omap4_l2x0_disable;
Santosh Shilimkar4bdb1572011-02-22 10:00:44 +0100118 outer_cache.set_debug = omap4_l2x0_set_debug;
Santosh Shilimkar4e803c42010-07-31 21:40:10 +0530119
Santosh Shilimkarfbc9be12010-05-14 12:05:26 -0700120 return 0;
121}
122early_initcall(omap_l2_cache_init);
123#endif
Santosh Shilimkar501f0c72011-01-01 19:56:04 +0530124
125void __iomem *omap4_get_sar_ram_base(void)
126{
127 return sar_ram_base;
128}
129
130/*
131 * SAR RAM used to save and restore the HW
132 * context in low power modes
133 */
134static int __init omap4_sar_ram_init(void)
135{
136 /*
137 * To avoid code running on other OMAPs in
138 * multi-omap builds
139 */
140 if (!cpu_is_omap44xx())
141 return -ENOMEM;
142
143 /* Static mapping, never released */
144 sar_ram_base = ioremap(OMAP44XX_SAR_RAM_BASE, SZ_16K);
145 if (WARN_ON(!sar_ram_base))
146 return -ENOMEM;
147
148 return 0;
149}
150early_initcall(omap4_sar_ram_init);