Lines Matching refs:zcr
636 unsigned long zcr; in sve_probe_vqs() local
640 zcr = ZCR_ELx_LEN_MASK; in sve_probe_vqs()
641 zcr = read_sysreg_s(SYS_ZCR_EL1) & ~zcr; in sve_probe_vqs()
644 write_sysreg_s(zcr | (vq - 1), SYS_ZCR_EL1); /* self-syncing */ in sve_probe_vqs()
726 u64 zcr; in read_zcr_features() local
736 zcr = read_sysreg_s(SYS_ZCR_EL1); in read_zcr_features()
737 zcr &= ~(u64)ZCR_ELx_LEN_MASK; /* find sticky 1s outside LEN field */ in read_zcr_features()
739 zcr |= vq_max - 1; /* set LEN field to maximum effective value */ in read_zcr_features()
741 return zcr; in read_zcr_features()
746 u64 zcr; in sve_setup() local
759 zcr = read_sanitised_ftr_reg(SYS_ZCR_EL1); in sve_setup()
760 sve_max_vl = sve_vl_from_vq((zcr & ZCR_ELx_LEN_MASK) + 1); in sve_setup()