Received: by 2002:a05:6a10:f347:0:0:0:0 with SMTP id d7csp3174043pxu; Tue, 8 Dec 2020 05:35:29 -0800 (PST) X-Google-Smtp-Source: ABdhPJyt1YM9Ll9JHii/sXBuksPcPeeBI9qEhzUlohk3aebBYNES0sj/TY7rWmwQUGQpBtVzS0y8 X-Received: by 2002:a05:6402:a5b:: with SMTP id bt27mr10190352edb.222.1607434529564; Tue, 08 Dec 2020 05:35:29 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1607434529; cv=none; d=google.com; s=arc-20160816; b=rPIZzdee0TdGFJbDgW/H7fFdRheNqU4R7FZLbQnK3UAtKB0c+vmHSk08Z0PX4S3KSK gwkPWwFJznMBDnNqWd+M24tk5YIfLA+UOa1pWZJAhmVL03Zluuw7AGUYn+5o1isxQY7B H6N+fpvE/WflUtF5q2A2/+zeYtfAJHHWzLVs/cBiOKmy4S0/qF2BbmelML1c+QpqJ6AI zSStGS4mPNyFGrs3hKODz0xqJ+4Wb4FcDOrDhuGUyszNLu4fDUtbnXxIF5GT6BXBFpwr OxD3Xe47ZaDkFAv7MzCYkCpQLatNUC9I4Ep0b9/Lo4wF+djANDp0QWAe1E6AtpYAm6N8 zCRQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=6QdeiEWkf5FY80DAzIAKxJXCILmmxPNNOMAWQeKTqIw=; b=PcaggiKBrwhJGeNtBHvs8tq9yLuMK9Ieg+RQfeZoYnMoE2g24TDMlKCdbRpzlT6ySG 5Gbn+lvHJSwMSwGKgdiiC5RTi3mTUIXDAprapfKQpNZO8oKentCOYnqzxUtcUTnKfG8E 4X6jv3OUlLvyhtAItTf90yjgCuKtyCaH/ltuvD/KjV+eGMADEzPlahBjUuSLT+FrNgZ7 NJNkn09psuVVtZgpD8fP0x8JlgYGfLXTuB87wJHHZc0bbTxy639qBJwlDhaUsD+mqtnV RiaRgtmjxdeiNSimmT74wbYDw1wBHpBipiRYJ2yxVx+Pok3g8MhJ1KAePMozTygWv8WN kzew== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id e9si9162661ejq.721.2020.12.08.05.35.07; Tue, 08 Dec 2020 05:35:29 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729385AbgLHNaK (ORCPT + 99 others); Tue, 8 Dec 2020 08:30:10 -0500 Received: from mail.kernel.org ([198.145.29.99]:48588 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729149AbgLHNaJ (ORCPT ); Tue, 8 Dec 2020 08:30:09 -0500 From: Will Deacon Authentication-Results: mail.kernel.org; dkim=permerror (bad message/signature format) To: linux-arm-kernel@lists.infradead.org Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org, Will Deacon , Catalin Marinas , Marc Zyngier , Greg Kroah-Hartman , Peter Zijlstra , Morten Rasmussen , Qais Yousef , Suren Baghdasaryan , Quentin Perret , Tejun Heo , Li Zefan , Johannes Weiner , Ingo Molnar , Juri Lelli , Vincent Guittot , kernel-team@android.com Subject: [PATCH v5 05/15] arm64: Advertise CPUs capable of running 32-bit applications in sysfs Date: Tue, 8 Dec 2020 13:28:25 +0000 Message-Id: <20201208132835.6151-6-will@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20201208132835.6151-1-will@kernel.org> References: <20201208132835.6151-1-will@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Since 32-bit applications will be killed if they are caught trying to execute on a 64-bit-only CPU in a mismatched system, advertise the set of 32-bit capable CPUs to userspace in sysfs. Reviewed-by: Greg Kroah-Hartman Signed-off-by: Will Deacon --- .../ABI/testing/sysfs-devices-system-cpu | 9 +++++++++ arch/arm64/kernel/cpufeature.c | 19 +++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/Documentation/ABI/testing/sysfs-devices-system-cpu b/Documentation/ABI/testing/sysfs-devices-system-cpu index 1a04ca8162ad..8a2e377b0dde 100644 --- a/Documentation/ABI/testing/sysfs-devices-system-cpu +++ b/Documentation/ABI/testing/sysfs-devices-system-cpu @@ -493,6 +493,15 @@ Description: AArch64 CPU registers 'identification' directory exposes the CPU ID registers for identifying model and revision of the CPU. +What: /sys/devices/system/cpu/aarch32_el0 +Date: November 2020 +Contact: Linux ARM Kernel Mailing list +Description: Identifies the subset of CPUs in the system that can execute + AArch32 (32-bit ARM) applications. If present, the same format as + /sys/devices/system/cpu/{offline,online,possible,present} is used. + If absent, then all or none of the CPUs can execute AArch32 + applications and execve() will behave accordingly. + What: /sys/devices/system/cpu/cpu#/cpu_capacity Date: December 2016 Contact: Linux kernel mailing list diff --git a/arch/arm64/kernel/cpufeature.c b/arch/arm64/kernel/cpufeature.c index bb53af53ce8d..088bf668cbe7 100644 --- a/arch/arm64/kernel/cpufeature.c +++ b/arch/arm64/kernel/cpufeature.c @@ -67,6 +67,7 @@ #include #include #include +#include #include #include #include @@ -1272,6 +1273,24 @@ const struct cpumask *system_32bit_el0_cpumask(void) return cpu_possible_mask; } +static ssize_t aarch32_el0_show(struct device *dev, + struct device_attribute *attr, char *buf) +{ + const struct cpumask *mask = system_32bit_el0_cpumask(); + + return sysfs_emit(buf, "%*pbl\n", cpumask_pr_args(mask)); +} +static const DEVICE_ATTR_RO(aarch32_el0); + +static int __init aarch32_el0_sysfs_init(void) +{ + if (!allow_mismatched_32bit_el0) + return 0; + + return device_create_file(cpu_subsys.dev_root, &dev_attr_aarch32_el0); +} +device_initcall(aarch32_el0_sysfs_init); + static bool has_32bit_el0(const struct arm64_cpu_capabilities *entry, int scope) { if (!has_cpuid_feature(entry, scope)) -- 2.29.2.576.ga3fc446d84-goog