[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1388996536-27014-6-git-send-email-ard.biesheuvel@linaro.org>
Date: Mon, 6 Jan 2014 09:22:13 +0100
From: Ard Biesheuvel <ard.biesheuvel@...aro.org>
To: catalin.marinas@....com, will.deacon@....com,
gregkh@...uxfoundation.org, akpm@...ux-foundation.org,
hpa@...or.com, ak@...ux.intel.com
Cc: linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org,
herbert@...dor.apana.org.au, mingo@...hat.com, nico@...aro.org,
x86@...nel.org, Ard Biesheuvel <ard.biesheuvel@...aro.org>
Subject: [PATCH 5/8] arm64: advertise CPU features for modalias matching
This enables the generic implementation in drivers/base/cpu.c
that allows modules to be loaded automatically based on the
optional features supported (and advertised over udev) by the
CPU.
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@...aro.org>
---
arch/arm64/Kconfig | 3 +++
arch/arm64/kernel/setup.c | 20 ++++++++++++++++++++
2 files changed, 23 insertions(+)
diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig
index cb9421b540c8..74650b68d575 100644
--- a/arch/arm64/Kconfig
+++ b/arch/arm64/Kconfig
@@ -214,6 +214,9 @@ config ARCH_WANT_HUGE_PMD_SHARE
config HAVE_ARCH_TRANSPARENT_HUGEPAGE
def_bool y
+config ARCH_HAS_CPU_AUTOPROBE
+ def_bool y
+
source "mm/Kconfig"
config XEN_DOM0
diff --git a/arch/arm64/kernel/setup.c b/arch/arm64/kernel/setup.c
index bb33fff09ba2..5ed082bbd61c 100644
--- a/arch/arm64/kernel/setup.c
+++ b/arch/arm64/kernel/setup.c
@@ -379,3 +379,23 @@ const struct seq_operations cpuinfo_op = {
.stop = c_stop,
.show = c_show
};
+
+ssize_t arch_print_cpu_modalias(struct device *dev,
+ struct device_attribute *attr,
+ char *buf)
+{
+ unsigned long caps;
+ ssize_t n;
+ int i;
+
+ /*
+ * With 64 features maximum (taking 5 bytes each to print), we don't
+ * need to worry about overrunning the PAGE_SIZE sized buffer.
+ */
+ n = sprintf(buf, "cpu:type:%s:feature:", ELF_PLATFORM);
+ for (caps = elf_hwcap, i = 0; caps; caps >>= 1, i++)
+ if (caps & 1)
+ n += sprintf(&buf[n], ",%04X", i);
+ buf[n++] = '\n';
+ return n;
+}
--
1.8.3.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists