aboutsummaryrefslogtreecommitdiffstats
path: root/arch/tile/include/asm/processor.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2010-09-16 12:54:54 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2010-09-16 12:54:54 -0700
commit8be7eb359d96a6503de18b1a73fd6a24d8c983c9 (patch)
tree36795b7369a137ab6663bc018d452b58bf1d5e72 /arch/tile/include/asm/processor.h
parent3a919cf0bfb7b51205e7f8bacc491996e958b1a2 (diff)
parent7040dea4d2a0609241c7a98a944b7c432c69db2e (diff)
downloadkernel_samsung_espresso10-8be7eb359d96a6503de18b1a73fd6a24d8c983c9.zip
kernel_samsung_espresso10-8be7eb359d96a6503de18b1a73fd6a24d8c983c9.tar.gz
kernel_samsung_espresso10-8be7eb359d96a6503de18b1a73fd6a24d8c983c9.tar.bz2
Merge branch 'stable' of git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile
* 'stable' of git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile: arch/tile: fix formatting bug in register dumps arch/tile: fix memcpy_fromio()/memcpy_toio() signatures arch/tile: Save and restore extra user state for tilegx arch/tile: Change struct sigcontext to be more useful arch/tile: finish const-ifying sys_execve()
Diffstat (limited to 'arch/tile/include/asm/processor.h')
-rw-r--r--arch/tile/include/asm/processor.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/tile/include/asm/processor.h b/arch/tile/include/asm/processor.h
index d942d09..ccd5f84 100644
--- a/arch/tile/include/asm/processor.h
+++ b/arch/tile/include/asm/processor.h
@@ -103,6 +103,18 @@ struct thread_struct {
/* Any other miscellaneous processor state bits */
unsigned long proc_status;
#endif
+#if !CHIP_HAS_FIXED_INTVEC_BASE()
+ /* Interrupt base for PL0 interrupts */
+ unsigned long interrupt_vector_base;
+#endif
+#if CHIP_HAS_TILE_RTF_HWM()
+ /* Tile cache retry fifo high-water mark */
+ unsigned long tile_rtf_hwm;
+#endif
+#if CHIP_HAS_DSTREAM_PF()
+ /* Data stream prefetch control */
+ unsigned long dstream_pf;
+#endif
#ifdef CONFIG_HARDWALL
/* Is this task tied to an activated hardwall? */
struct hardwall_info *hardwall;