Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 211073
b: refs/heads/master
c: 2de59fe
h: refs/heads/master
i:
  211071: 9e808b6
v: v3
  • Loading branch information
Will Deacon authored and Russell King committed Sep 27, 2010
1 parent 3a1987e commit 3800e6a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2de5c00ac06c8983ab33ad51a8341584f1cf42c3
refs/heads/master: 2de59fea8b3095d1df4c729fda041625930aab4f
8 changes: 7 additions & 1 deletion trunk/arch/arm/mach-vexpress/ct-ca9x4.c
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,13 @@ static void ct_ca9x4_init(void)
int i;

#ifdef CONFIG_CACHE_L2X0
l2x0_init(MMIO_P2V(CT_CA9X4_L2CC), 0x00400000, 0xfe0fffff);
void __iomem *l2x0_base = MMIO_P2V(CT_CA9X4_L2CC);

/* set RAM latencies to 1 cycle for this core tile. */
writel(0, l2x0_base + L2X0_TAG_LATENCY_CTRL);
writel(0, l2x0_base + L2X0_DATA_LATENCY_CTRL);

l2x0_init(l2x0_base, 0x00400000, 0xfe0fffff);
#endif

clkdev_add_table(lookups, ARRAY_SIZE(lookups));
Expand Down

0 comments on commit 3800e6a

Please sign in to comment.