Merge branch 'linux-linaro-lsk' into linux-linaro-lsk-android
authorMark Brown <broonie@linaro.org>
Mon, 31 Mar 2014 09:43:50 +0000 (10:43 +0100)
committerMark Brown <broonie@linaro.org>
Mon, 31 Mar 2014 09:43:50 +0000 (10:43 +0100)
Conflicts:
arch/arm/include/asm/hardware/coresight.h

1  2 
arch/arm/Kconfig
arch/arm/Makefile
arch/arm/boot/compressed/head.S
arch/arm/include/asm/hardware/coresight.h
arch/arm64/mm/proc.S

Simple merge
Simple merge
Simple merge
index 4aee45da6d599501cc1afd08bc1bdf6593f240ec,ad774f37c47cda0f6201d7a7aad7d967cec4786b..fc53019c304b6c15c70f6302f54a17671ad1543d
  #define ETBFF_TRIGIN          BIT(8)
  #define ETBFF_TRIGEVT         BIT(9)
  #define ETBFF_TRIGFL          BIT(10)
 +#define ETBFF_STOPFL          BIT(12)
  
  #define etb_writel(t, v, x) \
-       (__raw_writel((v), (t)->etb_regs + (x)))
- #define etb_readl(t, x) (__raw_readl((t)->etb_regs + (x)))
+       (writel_relaxed((v), (t)->etb_regs + (x)))
+ #define etb_readl(t, x) (readl_relaxed((t)->etb_regs + (x)))
  
 -#define etm_lock(t) do { etm_writel((t), 0, CSMR_LOCKACCESS); } while (0)
 -#define etm_unlock(t) \
 -      do { etm_writel((t), CS_LAR_KEY, CSMR_LOCKACCESS); } while (0)
 +#define etm_lock(t, id) \
 +      do { etm_writel((t), (id), 0, CSMR_LOCKACCESS); } while (0)
 +#define etm_unlock(t, id) \
 +      do { etm_writel((t), (id), CS_LAR_KEY, CSMR_LOCKACCESS); } while (0)
  
  #define etb_lock(t) do { etb_writel((t), 0, CSMR_LOCKACCESS); } while (0)
  #define etb_unlock(t) \
Simple merge