瀏覽代碼

[POWERPC] enable hardware watchpoints on cell blades

Ulrich Weigand has found that the hardware watchpoints on cell were not
working back in November :

http://ozlabs.org/pipermail/linuxppc-dev/2007-November/046135.html

This patch sets them during initialization.

Signed-off-by: Jens Osterkamp <jens@de.ibm.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Jens Osterkamp 17 年之前
父節點
當前提交
f3c1ed9720
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      arch/powerpc/platforms/cell/setup.c

+ 7 - 0
arch/powerpc/platforms/cell/setup.c

@@ -149,6 +149,11 @@ static void __init cell_init_irq(void)
 	mpic_init_IRQ();
 	mpic_init_IRQ();
 }
 }
 
 
+static void __init cell_set_dabrx(void)
+{
+	mtspr(SPRN_DABRX, DABRX_KERNEL | DABRX_USER);
+}
+
 static void __init cell_setup_arch(void)
 static void __init cell_setup_arch(void)
 {
 {
 #ifdef CONFIG_SPU_BASE
 #ifdef CONFIG_SPU_BASE
@@ -158,6 +163,8 @@ static void __init cell_setup_arch(void)
 
 
 	cbe_regs_init();
 	cbe_regs_init();
 
 
+	cell_set_dabrx();
+
 #ifdef CONFIG_CBE_RAS
 #ifdef CONFIG_CBE_RAS
 	cbe_ras_init();
 	cbe_ras_init();
 #endif
 #endif