• Hou Tao's avatar
    arm64: insn: add encoders for atomic operations · fa1114d9
    Hou Tao authored
    It is a preparation patch for eBPF atomic supports under arm64. eBPF
    needs support atomic[64]_fetch_add, atomic[64]_[fetch_]{and,or,xor} and
    atomic[64]_{xchg|cmpxchg}. The ordering semantics of eBPF atomics are
    the same with the implementations in linux kernel.
    
    Add three helpers to support LDCLR/LDEOR/LDSET/SWP, CAS and DMB
    instructions. STADD/STCLR/STEOR/STSET are simply encoded as aliases for
    LDADD/LDCLR/LDEOR/LDSET with XZR as the destination register, so no extra
    helper is added. atomic_fetch_add() and other atomic ops needs support for
    STLXR instruction, so extend enum aarch64_insn_ldst_type to do that.
    
    LDADD/LDEOR/LDSET/SWP and CAS instructions are only available when LSE
    atomics is enabled, so just return AARCH64_BREAK_FAULT directly in
    these newly-added helpers if CONFIG_ARM64_LSE_ATOMICS is disabled.
    Signed-off-by: default avatarHou Tao <houtao1@huawei.com>
    Link: https://lore.kernel.org/r/20220217072232.1186625-3-houtao1@huawei.comSigned-off-by: default avatarWill Deacon <will@kernel.org>
    fa1114d9
insn.c 38.9 KB