1. 16 May, 2014 2 commits
    • Catalin Marinas's avatar
      Revert "arm64: Introduce execute-only page access permissions" · 5a0fdfad
      Catalin Marinas authored
      This reverts commit bc07c2c6.
      
      While the aim is increased security for --x memory maps, it does not
      protect against kernel level reads. Until SECCOMP is implemented for
      arm64, revert this patch to avoid giving a false idea of execute-only
      mappings.
      Signed-off-by: default avatarCatalin Marinas <catalin.marinas@arm.com>
      5a0fdfad
    • Catalin Marinas's avatar
      Merge tag 'for-3.16' of git://git.linaro.org/people/ard.biesheuvel/linux-arm into upstream · cf5c95db
      Catalin Marinas authored
      FPSIMD register bank context switching and crypto algorithms
      optimisations for arm64 from Ard Biesheuvel.
      
      * tag 'for-3.16' of git://git.linaro.org/people/ard.biesheuvel/linux-arm:
        arm64/crypto: AES-ECB/CBC/CTR/XTS using ARMv8 NEON and Crypto Extensions
        arm64: pull in <asm/simd.h> from asm-generic
        arm64/crypto: AES in CCM mode using ARMv8 Crypto Extensions
        arm64/crypto: AES using ARMv8 Crypto Extensions
        arm64/crypto: GHASH secure hash using ARMv8 Crypto Extensions
        arm64/crypto: SHA-224/SHA-256 using ARMv8 Crypto Extensions
        arm64/crypto: SHA-1 using ARMv8 Crypto Extensions
        arm64: add support for kernel mode NEON in interrupt context
        arm64: defer reloading a task's FPSIMD state to userland resume
        arm64: add abstractions for FPSIMD state manipulation
        asm-generic: allow generic unaligned access if the arch supports it
      
      Conflicts:
      	arch/arm64/include/asm/thread_info.h
      cf5c95db
  2. 14 May, 2014 7 commits
  3. 12 May, 2014 5 commits
  4. 09 May, 2014 17 commits
  5. 08 May, 2014 4 commits
    • Ard Biesheuvel's avatar
      arm64: add support for kernel mode NEON in interrupt context · 190f1ca8
      Ard Biesheuvel authored
      This patch modifies kernel_neon_begin() and kernel_neon_end(), so
      they may be called from any context. To address the case where only
      a couple of registers are needed, kernel_neon_begin_partial(u32) is
      introduced which takes as a parameter the number of bottom 'n' NEON
      q-registers required. To mark the end of such a partial section, the
      regular kernel_neon_end() should be used.
      Signed-off-by: default avatarArd Biesheuvel <ard.biesheuvel@linaro.org>
      190f1ca8
    • Ard Biesheuvel's avatar
      arm64: defer reloading a task's FPSIMD state to userland resume · 005f78cd
      Ard Biesheuvel authored
      If a task gets scheduled out and back in again and nothing has touched
      its FPSIMD state in the mean time, there is really no reason to reload
      it from memory. Similarly, repeated calls to kernel_neon_begin() and
      kernel_neon_end() will preserve and restore the FPSIMD state every time.
      
      This patch defers the FPSIMD state restore to the last possible moment,
      i.e., right before the task returns to userland. If a task does not return to
      userland at all (for any reason), the existing FPSIMD state is preserved
      and may be reused by the owning task if it gets scheduled in again on the
      same CPU.
      
      This patch adds two more functions to abstract away from straight FPSIMD
      register file saves and restores:
      - fpsimd_restore_current_state -> ensure current's FPSIMD state is loaded
      - fpsimd_flush_task_state -> invalidate live copies of a task's FPSIMD state
      Signed-off-by: default avatarArd Biesheuvel <ard.biesheuvel@linaro.org>
      005f78cd
    • Ard Biesheuvel's avatar
      arm64: add abstractions for FPSIMD state manipulation · c51f9269
      Ard Biesheuvel authored
      There are two tacit assumptions in the FPSIMD handling code that will no longer
      hold after the next patch that optimizes away some FPSIMD state restores:
      . the FPSIMD registers of this CPU contain the userland FPSIMD state of
        task 'current';
      . when switching to a task, its FPSIMD state will always be restored from
        memory.
      
      This patch adds the following functions to abstract away from straight FPSIMD
      register file saves and restores:
      - fpsimd_preserve_current_state -> ensure current's FPSIMD state is saved
      - fpsimd_update_current_state -> replace current's FPSIMD state
      
      Where necessary, the signal handling and fork code are updated to use the above
      wrappers instead of poking into the FPSIMD registers directly.
      Signed-off-by: default avatarArd Biesheuvel <ard.biesheuvel@linaro.org>
      c51f9269
    • Ard Biesheuvel's avatar
      asm-generic: allow generic unaligned access if the arch supports it · 0567f5fa
      Ard Biesheuvel authored
      Switch the default unaligned access method to 'hardware implemented'
      if HAVE_EFFICIENT_UNALIGNED_ACCESS is set.
      Signed-off-by: default avatarArd Biesheuvel <ard.biesheuvel@linaro.org>
      Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
      0567f5fa
  6. 05 May, 2014 1 commit
  7. 04 May, 2014 4 commits