2010-05-14 19:05:26 +00:00
|
|
|
/*
|
|
|
|
* OMAP4 specific common source file.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Texas Instruments, Inc.
|
|
|
|
* Author:
|
|
|
|
* Santosh Shilimkar <santosh.shilimkar@ti.com>
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This program is free software,you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/io.h>
|
2012-10-18 09:20:08 +00:00
|
|
|
#include <linux/irq.h>
|
2012-11-05 22:18:28 +00:00
|
|
|
#include <linux/irqchip.h>
|
2010-05-14 19:05:26 +00:00
|
|
|
#include <linux/platform_device.h>
|
2011-06-26 01:04:31 +00:00
|
|
|
#include <linux/memblock.h>
|
2012-08-28 00:43:01 +00:00
|
|
|
#include <linux/of_irq.h>
|
|
|
|
#include <linux/of_platform.h>
|
|
|
|
#include <linux/export.h>
|
2012-12-27 19:10:24 +00:00
|
|
|
#include <linux/irqchip/arm-gic.h>
|
2013-12-03 10:27:25 +00:00
|
|
|
#include <linux/irqchip/irq-crossbar.h>
|
2013-02-25 08:42:58 +00:00
|
|
|
#include <linux/of_address.h>
|
2013-07-08 23:01:40 +00:00
|
|
|
#include <linux/reboot.h>
|
2010-05-14 19:05:26 +00:00
|
|
|
|
|
|
|
#include <asm/hardware/cache-l2x0.h>
|
2011-06-26 01:04:31 +00:00
|
|
|
#include <asm/mach/map.h>
|
2012-01-13 15:00:51 +00:00
|
|
|
#include <asm/memblock.h>
|
2012-10-18 09:20:08 +00:00
|
|
|
#include <asm/smp_twd.h>
|
2010-05-14 19:05:26 +00:00
|
|
|
|
2012-09-20 18:41:16 +00:00
|
|
|
#include "omap-wakeupgen.h"
|
2012-08-31 17:59:07 +00:00
|
|
|
#include "soc.h"
|
2012-10-30 02:50:21 +00:00
|
|
|
#include "iomap.h"
|
2011-11-10 21:45:17 +00:00
|
|
|
#include "common.h"
|
2012-10-15 19:09:43 +00:00
|
|
|
#include "mmc.h"
|
2012-10-30 02:56:07 +00:00
|
|
|
#include "prminst44xx.h"
|
2012-10-30 02:57:39 +00:00
|
|
|
#include "prcm_mpu44xx.h"
|
2011-01-01 14:26:04 +00:00
|
|
|
#include "omap4-sar-layout.h"
|
2012-10-01 18:47:06 +00:00
|
|
|
#include "omap-secure.h"
|
2012-10-29 16:35:35 +00:00
|
|
|
#include "sram.h"
|
2010-05-14 19:05:26 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_CACHE_L2X0
|
2011-03-03 12:33:25 +00:00
|
|
|
static void __iomem *l2cache_base;
|
2010-05-14 19:05:26 +00:00
|
|
|
#endif
|
|
|
|
|
2011-01-01 14:26:04 +00:00
|
|
|
static void __iomem *sar_ram_base;
|
ARM: OMAP4460: Workaround for ROM bug because of CA9 r2pX GIC control register change.
On OMAP4+ devices, GIC register context is lost when MPUSS hits
the OSWR(Open Switch Retention). On the CPU wakeup path, ROM code
gets executed and one of the steps in it is to restore the
saved context of the GIC. The ROM Code GIC distributor restoration
is split in two parts: CPU specific register done by each CPU and
common register done by only one CPU.
Below is the abstract flow.
...............................................................
- MPUSS in OSWR state.
- CPU0 wakes up on the event(interrupt) and start executing ROM code.
[..]
- CPU0 executes "GIC Restoration:"
[...]
- CPU0 swicthes to non-secure mode and jumps to OS resume code.
[...]
- CPU0 is online in OS
- CPU0 enables the GIC distributor. GICD.Enable Non-secure = 1
- CPU0 wakes up CPU1 with clock-domain force wakeup method.
- CPU0 continues it's execution.
[..]
- CPU1 wakes up and start executing ROM code.
[..]
- CPU1 executes "GIC Restoration:"
[..]
- CPU1 swicthes to non-secure mode and jumps to OS resume code.
[...]
- CPU1 is online in OS and start executing.
[...] -
GIC Restoration: /* Common routine for HS and GP devices */
{
if (GICD != 1) { /* This will be true in OSWR state */
if (GIC_SAR_BACKUP_STATE == SAVED)
- CPU restores GIC distributor
else
- reconfigure GIC distributor to boot values.
GICD.Enable secure = 1
}
if (GIC_SAR_BACKUP_STATE == SAVED)
- CPU restore its GIC CPU interface registers if saved.
else
- reconfigure its GIC CPU interface registers to boot
values.
}
...............................................................
So as mentioned in the flow, GICD != 1 condition decides how
the GIC registers are handled in ROM code wakeup path from
OSWR. As evident from the flow, ROM code relies on the entire
GICD register value and not specific register bits.
The assumption was valid till CortexA9 r1pX version since there
was only one banked bit to control secure and non-secure GICD.
Secure view which ROM code sees:
bit 0 == Enable Non-secure
Non-secure view which HLOS sees:
bit 0 == Enable secure
But GICD register has changed between CortexA9 r1pX and r2pX.
On r2pX GICD register is composed of 2 bits.
Secure view which ROM code sees:
bit 1 == Enable Non-secure
bit 0 == Enable secure
Non-secure view which HLOS sees:
bit 0 == Enable Non-secure
Hence on OMAP4460(r2pX) devices, if you go through the
above flow again during CPU1 wakeup, GICD == 3 and hence
ROM code fails to understand the real wakeup power state
and reconfigures GIC distributor to boot values. This is
nasty since you loose the entire interrupt controller
context in a live system.
The ROM code fix done on next OMAP4 device (OMAP4470 - r2px) is to
check "GICD.Enable secure != 1" for GIC restoration in OSWR wakeup path.
Since ROM code can't be fixed on OMAP4460 devices, a work around
needs to be implemented. As evident from the flow, as long as
CPU1 sees GICD == 1 in it's wakeup path from OSWR, the issue
won't happen. Below is the flow with the work-around.
...............................................................
- MPUSS in OSWR state.
- CPU0 wakes up on the event(interrupt) and start executing ROM code.
[..]
- CPU0 executes "GIC Restoration:"
[..]
- CPU0 swicthes to non-secure mode and jumps to OS resume code.
[..]
- CPU0 is online in OS.
- CPU0 does GICD.Enable Non-secure = 0
- CPU0 wakes up CPU1 with clock domain force wakeup method.
- CPU0 waits for GICD.Enable Non-secure = 1
- CPU0 coninues it's execution.
[..]
- CPU1 wakes up and start executing ROM code.
[..]
- CPU1 executes "GIC Restoration:"
[..]
- CPU1 swicthes to non-secure mode and jumps to OS resume code.
[..]
- CPU1 is online in OS
- CPU1 does GICD.Enable Non-secure = 1
- CPU1 start executing
[...]
...............................................................
With this procedure, the GIC configuration done between the
CPU0 wakeup and CPU1 wakeup will not be lost but during this
short windows, the CPU0 will not receive interrupts.
The BUG is applicable to only OMAP4460(r2pX) devices.
OMAP4470 (also r2pX) is not affected by this bug because
ROM code has been fixed.
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Signed-off-by: Kevin Hilman <khilman@ti.com>
2012-10-18 09:20:05 +00:00
|
|
|
static void __iomem *gic_dist_base_addr;
|
2012-10-18 09:20:08 +00:00
|
|
|
static void __iomem *twd_base;
|
|
|
|
|
|
|
|
#define IRQ_LOCALTIMER 29
|
2011-01-01 14:26:04 +00:00
|
|
|
|
2011-06-26 01:04:31 +00:00
|
|
|
#ifdef CONFIG_OMAP4_ERRATA_I688
|
|
|
|
/* Used to implement memory barrier on DRAM path */
|
|
|
|
#define OMAP4_DRAM_BARRIER_VA 0xfe600000
|
|
|
|
|
|
|
|
void __iomem *dram_sync, *sram_sync;
|
|
|
|
|
2012-02-02 14:03:55 +00:00
|
|
|
static phys_addr_t paddr;
|
|
|
|
static u32 size;
|
|
|
|
|
2011-06-26 01:04:31 +00:00
|
|
|
void omap_bus_sync(void)
|
|
|
|
{
|
|
|
|
if (dram_sync && sram_sync) {
|
|
|
|
writel_relaxed(readl_relaxed(dram_sync), dram_sync);
|
|
|
|
writel_relaxed(readl_relaxed(sram_sync), sram_sync);
|
|
|
|
isb();
|
|
|
|
}
|
|
|
|
}
|
2012-03-02 11:01:18 +00:00
|
|
|
EXPORT_SYMBOL(omap_bus_sync);
|
2011-06-26 01:04:31 +00:00
|
|
|
|
2012-02-02 14:03:55 +00:00
|
|
|
/* Steal one page physical memory for barrier implementation */
|
|
|
|
int __init omap_barrier_reserve_memblock(void)
|
2011-06-26 01:04:31 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
size = ALIGN(PAGE_SIZE, SZ_1M);
|
2012-01-13 15:00:51 +00:00
|
|
|
paddr = arm_memblock_steal(size, SZ_1M);
|
|
|
|
|
2012-02-02 14:03:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void __init omap_barriers_init(void)
|
|
|
|
{
|
|
|
|
struct map_desc dram_io_desc[1];
|
|
|
|
|
2011-06-26 01:04:31 +00:00
|
|
|
dram_io_desc[0].virtual = OMAP4_DRAM_BARRIER_VA;
|
|
|
|
dram_io_desc[0].pfn = __phys_to_pfn(paddr);
|
|
|
|
dram_io_desc[0].length = size;
|
2013-10-24 09:26:40 +00:00
|
|
|
dram_io_desc[0].type = MT_MEMORY_RW_SO;
|
2011-06-26 01:04:31 +00:00
|
|
|
iotable_init(dram_io_desc, ARRAY_SIZE(dram_io_desc));
|
|
|
|
dram_sync = (void __iomem *) dram_io_desc[0].virtual;
|
|
|
|
sram_sync = (void __iomem *) OMAP4_SRAM_VA;
|
|
|
|
|
|
|
|
pr_info("OMAP4: Map 0x%08llx to 0x%08lx for dram barrier\n",
|
|
|
|
(long long) paddr, dram_io_desc[0].virtual);
|
|
|
|
|
|
|
|
}
|
2012-02-02 14:03:55 +00:00
|
|
|
#else
|
|
|
|
void __init omap_barriers_init(void)
|
|
|
|
{}
|
2011-06-26 01:04:31 +00:00
|
|
|
#endif
|
|
|
|
|
ARM: OMAP4460: Workaround for ROM bug because of CA9 r2pX GIC control register change.
On OMAP4+ devices, GIC register context is lost when MPUSS hits
the OSWR(Open Switch Retention). On the CPU wakeup path, ROM code
gets executed and one of the steps in it is to restore the
saved context of the GIC. The ROM Code GIC distributor restoration
is split in two parts: CPU specific register done by each CPU and
common register done by only one CPU.
Below is the abstract flow.
...............................................................
- MPUSS in OSWR state.
- CPU0 wakes up on the event(interrupt) and start executing ROM code.
[..]
- CPU0 executes "GIC Restoration:"
[...]
- CPU0 swicthes to non-secure mode and jumps to OS resume code.
[...]
- CPU0 is online in OS
- CPU0 enables the GIC distributor. GICD.Enable Non-secure = 1
- CPU0 wakes up CPU1 with clock-domain force wakeup method.
- CPU0 continues it's execution.
[..]
- CPU1 wakes up and start executing ROM code.
[..]
- CPU1 executes "GIC Restoration:"
[..]
- CPU1 swicthes to non-secure mode and jumps to OS resume code.
[...]
- CPU1 is online in OS and start executing.
[...] -
GIC Restoration: /* Common routine for HS and GP devices */
{
if (GICD != 1) { /* This will be true in OSWR state */
if (GIC_SAR_BACKUP_STATE == SAVED)
- CPU restores GIC distributor
else
- reconfigure GIC distributor to boot values.
GICD.Enable secure = 1
}
if (GIC_SAR_BACKUP_STATE == SAVED)
- CPU restore its GIC CPU interface registers if saved.
else
- reconfigure its GIC CPU interface registers to boot
values.
}
...............................................................
So as mentioned in the flow, GICD != 1 condition decides how
the GIC registers are handled in ROM code wakeup path from
OSWR. As evident from the flow, ROM code relies on the entire
GICD register value and not specific register bits.
The assumption was valid till CortexA9 r1pX version since there
was only one banked bit to control secure and non-secure GICD.
Secure view which ROM code sees:
bit 0 == Enable Non-secure
Non-secure view which HLOS sees:
bit 0 == Enable secure
But GICD register has changed between CortexA9 r1pX and r2pX.
On r2pX GICD register is composed of 2 bits.
Secure view which ROM code sees:
bit 1 == Enable Non-secure
bit 0 == Enable secure
Non-secure view which HLOS sees:
bit 0 == Enable Non-secure
Hence on OMAP4460(r2pX) devices, if you go through the
above flow again during CPU1 wakeup, GICD == 3 and hence
ROM code fails to understand the real wakeup power state
and reconfigures GIC distributor to boot values. This is
nasty since you loose the entire interrupt controller
context in a live system.
The ROM code fix done on next OMAP4 device (OMAP4470 - r2px) is to
check "GICD.Enable secure != 1" for GIC restoration in OSWR wakeup path.
Since ROM code can't be fixed on OMAP4460 devices, a work around
needs to be implemented. As evident from the flow, as long as
CPU1 sees GICD == 1 in it's wakeup path from OSWR, the issue
won't happen. Below is the flow with the work-around.
...............................................................
- MPUSS in OSWR state.
- CPU0 wakes up on the event(interrupt) and start executing ROM code.
[..]
- CPU0 executes "GIC Restoration:"
[..]
- CPU0 swicthes to non-secure mode and jumps to OS resume code.
[..]
- CPU0 is online in OS.
- CPU0 does GICD.Enable Non-secure = 0
- CPU0 wakes up CPU1 with clock domain force wakeup method.
- CPU0 waits for GICD.Enable Non-secure = 1
- CPU0 coninues it's execution.
[..]
- CPU1 wakes up and start executing ROM code.
[..]
- CPU1 executes "GIC Restoration:"
[..]
- CPU1 swicthes to non-secure mode and jumps to OS resume code.
[..]
- CPU1 is online in OS
- CPU1 does GICD.Enable Non-secure = 1
- CPU1 start executing
[...]
...............................................................
With this procedure, the GIC configuration done between the
CPU0 wakeup and CPU1 wakeup will not be lost but during this
short windows, the CPU0 will not receive interrupts.
The BUG is applicable to only OMAP4460(r2pX) devices.
OMAP4470 (also r2pX) is not affected by this bug because
ROM code has been fixed.
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Signed-off-by: Kevin Hilman <khilman@ti.com>
2012-10-18 09:20:05 +00:00
|
|
|
void gic_dist_disable(void)
|
|
|
|
{
|
|
|
|
if (gic_dist_base_addr)
|
2014-04-15 17:37:46 +00:00
|
|
|
writel_relaxed(0x0, gic_dist_base_addr + GIC_DIST_CTRL);
|
ARM: OMAP4460: Workaround for ROM bug because of CA9 r2pX GIC control register change.
On OMAP4+ devices, GIC register context is lost when MPUSS hits
the OSWR(Open Switch Retention). On the CPU wakeup path, ROM code
gets executed and one of the steps in it is to restore the
saved context of the GIC. The ROM Code GIC distributor restoration
is split in two parts: CPU specific register done by each CPU and
common register done by only one CPU.
Below is the abstract flow.
...............................................................
- MPUSS in OSWR state.
- CPU0 wakes up on the event(interrupt) and start executing ROM code.
[..]
- CPU0 executes "GIC Restoration:"
[...]
- CPU0 swicthes to non-secure mode and jumps to OS resume code.
[...]
- CPU0 is online in OS
- CPU0 enables the GIC distributor. GICD.Enable Non-secure = 1
- CPU0 wakes up CPU1 with clock-domain force wakeup method.
- CPU0 continues it's execution.
[..]
- CPU1 wakes up and start executing ROM code.
[..]
- CPU1 executes "GIC Restoration:"
[..]
- CPU1 swicthes to non-secure mode and jumps to OS resume code.
[...]
- CPU1 is online in OS and start executing.
[...] -
GIC Restoration: /* Common routine for HS and GP devices */
{
if (GICD != 1) { /* This will be true in OSWR state */
if (GIC_SAR_BACKUP_STATE == SAVED)
- CPU restores GIC distributor
else
- reconfigure GIC distributor to boot values.
GICD.Enable secure = 1
}
if (GIC_SAR_BACKUP_STATE == SAVED)
- CPU restore its GIC CPU interface registers if saved.
else
- reconfigure its GIC CPU interface registers to boot
values.
}
...............................................................
So as mentioned in the flow, GICD != 1 condition decides how
the GIC registers are handled in ROM code wakeup path from
OSWR. As evident from the flow, ROM code relies on the entire
GICD register value and not specific register bits.
The assumption was valid till CortexA9 r1pX version since there
was only one banked bit to control secure and non-secure GICD.
Secure view which ROM code sees:
bit 0 == Enable Non-secure
Non-secure view which HLOS sees:
bit 0 == Enable secure
But GICD register has changed between CortexA9 r1pX and r2pX.
On r2pX GICD register is composed of 2 bits.
Secure view which ROM code sees:
bit 1 == Enable Non-secure
bit 0 == Enable secure
Non-secure view which HLOS sees:
bit 0 == Enable Non-secure
Hence on OMAP4460(r2pX) devices, if you go through the
above flow again during CPU1 wakeup, GICD == 3 and hence
ROM code fails to understand the real wakeup power state
and reconfigures GIC distributor to boot values. This is
nasty since you loose the entire interrupt controller
context in a live system.
The ROM code fix done on next OMAP4 device (OMAP4470 - r2px) is to
check "GICD.Enable secure != 1" for GIC restoration in OSWR wakeup path.
Since ROM code can't be fixed on OMAP4460 devices, a work around
needs to be implemented. As evident from the flow, as long as
CPU1 sees GICD == 1 in it's wakeup path from OSWR, the issue
won't happen. Below is the flow with the work-around.
...............................................................
- MPUSS in OSWR state.
- CPU0 wakes up on the event(interrupt) and start executing ROM code.
[..]
- CPU0 executes "GIC Restoration:"
[..]
- CPU0 swicthes to non-secure mode and jumps to OS resume code.
[..]
- CPU0 is online in OS.
- CPU0 does GICD.Enable Non-secure = 0
- CPU0 wakes up CPU1 with clock domain force wakeup method.
- CPU0 waits for GICD.Enable Non-secure = 1
- CPU0 coninues it's execution.
[..]
- CPU1 wakes up and start executing ROM code.
[..]
- CPU1 executes "GIC Restoration:"
[..]
- CPU1 swicthes to non-secure mode and jumps to OS resume code.
[..]
- CPU1 is online in OS
- CPU1 does GICD.Enable Non-secure = 1
- CPU1 start executing
[...]
...............................................................
With this procedure, the GIC configuration done between the
CPU0 wakeup and CPU1 wakeup will not be lost but during this
short windows, the CPU0 will not receive interrupts.
The BUG is applicable to only OMAP4460(r2pX) devices.
OMAP4470 (also r2pX) is not affected by this bug because
ROM code has been fixed.
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Signed-off-by: Kevin Hilman <khilman@ti.com>
2012-10-18 09:20:05 +00:00
|
|
|
}
|
|
|
|
|
2013-10-22 19:07:15 +00:00
|
|
|
void gic_dist_enable(void)
|
|
|
|
{
|
|
|
|
if (gic_dist_base_addr)
|
2014-04-15 17:37:46 +00:00
|
|
|
writel_relaxed(0x1, gic_dist_base_addr + GIC_DIST_CTRL);
|
2013-10-22 19:07:15 +00:00
|
|
|
}
|
|
|
|
|
2012-10-18 09:20:08 +00:00
|
|
|
bool gic_dist_disabled(void)
|
|
|
|
{
|
2014-04-15 17:37:46 +00:00
|
|
|
return !(readl_relaxed(gic_dist_base_addr + GIC_DIST_CTRL) & 0x1);
|
2012-10-18 09:20:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void gic_timer_retrigger(void)
|
|
|
|
{
|
2014-04-15 17:37:46 +00:00
|
|
|
u32 twd_int = readl_relaxed(twd_base + TWD_TIMER_INTSTAT);
|
|
|
|
u32 gic_int = readl_relaxed(gic_dist_base_addr + GIC_DIST_PENDING_SET);
|
|
|
|
u32 twd_ctrl = readl_relaxed(twd_base + TWD_TIMER_CONTROL);
|
2012-10-18 09:20:08 +00:00
|
|
|
|
|
|
|
if (twd_int && !(gic_int & BIT(IRQ_LOCALTIMER))) {
|
|
|
|
/*
|
|
|
|
* The local timer interrupt got lost while the distributor was
|
|
|
|
* disabled. Ack the pending interrupt, and retrigger it.
|
|
|
|
*/
|
|
|
|
pr_warn("%s: lost localtimer interrupt\n", __func__);
|
2014-04-15 17:37:46 +00:00
|
|
|
writel_relaxed(1, twd_base + TWD_TIMER_INTSTAT);
|
2012-10-18 09:20:08 +00:00
|
|
|
if (!(twd_ctrl & TWD_TIMER_CONTROL_PERIODIC)) {
|
2014-04-15 17:37:46 +00:00
|
|
|
writel_relaxed(1, twd_base + TWD_TIMER_COUNTER);
|
2012-10-18 09:20:08 +00:00
|
|
|
twd_ctrl |= TWD_TIMER_CONTROL_ENABLE;
|
2014-04-15 17:37:46 +00:00
|
|
|
writel_relaxed(twd_ctrl, twd_base + TWD_TIMER_CONTROL);
|
2012-10-18 09:20:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-14 19:05:26 +00:00
|
|
|
#ifdef CONFIG_CACHE_L2X0
|
2010-07-31 16:10:10 +00:00
|
|
|
|
2011-03-03 12:33:25 +00:00
|
|
|
void __iomem *omap4_get_l2cache_base(void)
|
|
|
|
{
|
|
|
|
return l2cache_base;
|
|
|
|
}
|
|
|
|
|
2014-03-16 17:45:56 +00:00
|
|
|
static void omap4_l2c310_write_sec(unsigned long val, unsigned reg)
|
2010-07-31 16:10:10 +00:00
|
|
|
{
|
2014-03-16 17:45:56 +00:00
|
|
|
unsigned smc_op;
|
2010-07-31 16:10:10 +00:00
|
|
|
|
2014-03-16 17:45:56 +00:00
|
|
|
switch (reg) {
|
|
|
|
case L2X0_CTRL:
|
|
|
|
smc_op = OMAP4_MON_L2X0_CTRL_INDEX;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case L2X0_AUX_CTRL:
|
|
|
|
smc_op = OMAP4_MON_L2X0_AUXCTRL_INDEX;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case L2X0_DEBUG_CTRL:
|
|
|
|
smc_op = OMAP4_MON_L2X0_DBG_CTRL_INDEX;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case L310_PREFETCH_CTRL:
|
|
|
|
smc_op = OMAP4_MON_L2X0_PREFETCH_INDEX;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
WARN_ONCE(1, "OMAP L2C310: ignoring write to reg 0x%x\n", reg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
omap_smc1(smc_op, val);
|
2011-02-22 09:00:44 +00:00
|
|
|
}
|
|
|
|
|
2014-04-22 08:28:01 +00:00
|
|
|
int __init omap_l2_cache_init(void)
|
2010-05-14 19:05:26 +00:00
|
|
|
{
|
2014-03-19 13:38:10 +00:00
|
|
|
u32 aux_ctrl;
|
2010-05-14 19:05:26 +00:00
|
|
|
|
|
|
|
/* Static mapping, never released */
|
|
|
|
l2cache_base = ioremap(OMAP44XX_L2CACHE_BASE, SZ_4K);
|
2011-03-03 12:06:52 +00:00
|
|
|
if (WARN_ON(!l2cache_base))
|
|
|
|
return -ENOMEM;
|
2010-05-14 19:05:26 +00:00
|
|
|
|
2014-03-19 13:38:10 +00:00
|
|
|
/* 16-way associativity, parity disabled, way size - 64KB (es2.0 +) */
|
2014-04-22 08:28:02 +00:00
|
|
|
aux_ctrl = L2C_AUX_CTRL_SHARED_OVERRIDE |
|
2014-03-16 20:52:25 +00:00
|
|
|
L310_AUX_CTRL_DATA_PREFETCH |
|
2014-03-19 12:44:41 +00:00
|
|
|
L310_AUX_CTRL_INSTR_PREFETCH;
|
2010-11-19 17:31:03 +00:00
|
|
|
|
2014-03-16 17:45:56 +00:00
|
|
|
outer_cache.write_sec = omap4_l2c310_write_sec;
|
2012-07-04 12:27:34 +00:00
|
|
|
if (of_have_populated_dt())
|
2014-04-22 08:28:02 +00:00
|
|
|
l2x0_of_init(aux_ctrl, 0xcf9fffff);
|
2012-07-04 12:27:34 +00:00
|
|
|
else
|
2014-04-22 08:28:02 +00:00
|
|
|
l2x0_init(l2cache_base, aux_ctrl, 0xcf9fffff);
|
2010-07-31 16:10:10 +00:00
|
|
|
|
2010-05-14 19:05:26 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2011-01-01 14:26:04 +00:00
|
|
|
|
|
|
|
void __iomem *omap4_get_sar_ram_base(void)
|
|
|
|
{
|
|
|
|
return sar_ram_base;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* SAR RAM used to save and restore the HW
|
|
|
|
* context in low power modes
|
|
|
|
*/
|
|
|
|
static int __init omap4_sar_ram_init(void)
|
|
|
|
{
|
2013-02-06 12:24:39 +00:00
|
|
|
unsigned long sar_base;
|
|
|
|
|
2011-01-01 14:26:04 +00:00
|
|
|
/*
|
|
|
|
* To avoid code running on other OMAPs in
|
|
|
|
* multi-omap builds
|
|
|
|
*/
|
2013-02-06 12:24:39 +00:00
|
|
|
if (cpu_is_omap44xx())
|
|
|
|
sar_base = OMAP44XX_SAR_RAM_BASE;
|
|
|
|
else if (soc_is_omap54xx())
|
|
|
|
sar_base = OMAP54XX_SAR_RAM_BASE;
|
|
|
|
else
|
2011-01-01 14:26:04 +00:00
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
/* Static mapping, never released */
|
2013-02-06 12:24:39 +00:00
|
|
|
sar_ram_base = ioremap(sar_base, SZ_16K);
|
2011-01-01 14:26:04 +00:00
|
|
|
if (WARN_ON(!sar_ram_base))
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2013-01-11 19:24:18 +00:00
|
|
|
omap_early_initcall(omap4_sar_ram_init);
|
2012-04-25 11:57:46 +00:00
|
|
|
|
2012-06-05 11:01:06 +00:00
|
|
|
void __init omap_gic_of_init(void)
|
|
|
|
{
|
2013-02-25 08:42:58 +00:00
|
|
|
struct device_node *np;
|
|
|
|
|
|
|
|
/* Extract GIC distributor and TWD bases for OMAP4460 ROM Errata WA */
|
|
|
|
if (!cpu_is_omap446x())
|
|
|
|
goto skip_errata_init;
|
|
|
|
|
|
|
|
np = of_find_compatible_node(NULL, NULL, "arm,cortex-a9-gic");
|
|
|
|
gic_dist_base_addr = of_iomap(np, 0);
|
|
|
|
WARN_ON(!gic_dist_base_addr);
|
|
|
|
|
|
|
|
np = of_find_compatible_node(NULL, NULL, "arm,cortex-a9-twd-timer");
|
|
|
|
twd_base = of_iomap(np, 0);
|
|
|
|
WARN_ON(!twd_base);
|
|
|
|
|
|
|
|
skip_errata_init:
|
2012-06-05 11:01:06 +00:00
|
|
|
omap_wakeupgen_init();
|
2013-12-03 10:27:25 +00:00
|
|
|
#ifdef CONFIG_IRQ_CROSSBAR
|
|
|
|
irqcrossbar_init();
|
|
|
|
#endif
|
2012-11-05 22:18:28 +00:00
|
|
|
irqchip_init();
|
2012-06-05 11:01:06 +00:00
|
|
|
}
|