From: Greg KH <gregkh@linuxfoundation.org>
To: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Cc: linux-cxl@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
james.morse@arm.com, conor@kernel.org,
Yicong Yang <yangyicong@huawei.com>,
linux-acpi@vger.kernel.org, linux-arch@vger.kernel.org,
linuxarm@huawei.com, Yushan Wang <wangyushan12@huawei.com>,
linux-mm@kvack.org, Lorenzo Pieralisi <lpieralisi@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>,
Dan Williams <dan.j.williams@intel.com>
Subject: Re: [RFC PATCH 3/6] cache: coherency device class
Date: Thu, 20 Mar 2025 14:12:15 -0700 [thread overview]
Message-ID: <2025032013-venus-request-b026@gregkh> (raw)
In-Reply-To: <20250320174118.39173-4-Jonathan.Cameron@huawei.com>
On Thu, Mar 20, 2025 at 05:41:15PM +0000, Jonathan Cameron wrote:
> --- a/drivers/cache/Kconfig
> +++ b/drivers/cache/Kconfig
> @@ -1,6 +1,12 @@
> # SPDX-License-Identifier: GPL-2.0
> menu "Cache Drivers"
>
> +config CACHE_COHERENCY_CLASS
> + bool "Cache coherency control class"
Why can't this be a module? And why would anyone want to turn it off?
> + help
> + Class to which coherency control drivers register allowing core kernel
> + subsystems to issue invalidations and similar coherency operations.
What "core kernel subsystems"?
> +
> config AX45MP_L2_CACHE
> bool "Andes Technology AX45MP L2 Cache controller"
> depends on RISCV
Shouldn't all of these now depend on CACHE_COHERENCY_CLASS?
> diff --git a/drivers/cache/Makefile b/drivers/cache/Makefile
> index 55c5e851034d..b72b20f4248f 100644
> --- a/drivers/cache/Makefile
> +++ b/drivers/cache/Makefile
> @@ -3,3 +3,5 @@
> obj-$(CONFIG_AX45MP_L2_CACHE) += ax45mp_cache.o
> obj-$(CONFIG_SIFIVE_CCACHE) += sifive_ccache.o
> obj-$(CONFIG_STARFIVE_STARLINK_CACHE) += starfive_starlink_cache.o
> +
> +obj-$(CONFIG_CACHE_COHERENCY_CLASS) += coherency_core.o
Why the blank line?
> diff --git a/drivers/cache/coherency_core.c b/drivers/cache/coherency_core.c
> new file mode 100644
> index 000000000000..52cb4ceae00c
> --- /dev/null
> +++ b/drivers/cache/coherency_core.c
> @@ -0,0 +1,130 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +/*
> + * Class to manage OS controlled coherency agents within the system.
> + * Specifically to enable operations such as write back and invalidate.
> + *
> + * Copyright: Huawei 2025
> + * Some elements based on fwctl class as an example of a modern
> + * lightweight class.
> + */
> +
> +#include <linux/cache_coherency.h>
> +#include <linux/container_of.h>
> +#include <linux/idr.h>
> +#include <linux/fs.h>
> +#include <linux/module.h>
> +#include <linux/slab.h>
> +
> +#include <asm/cacheflush.h>
> +
> +static DEFINE_IDA(cache_coherency_ida);
> +
> +static void cache_coherency_device_release(struct device *device)
> +{
> + struct cache_coherency_device *ccd =
> + container_of(device, struct cache_coherency_device, dev);
> +
> + ida_free(&cache_coherency_ida, ccd->id);
> +}
> +
> +static struct class cache_coherency_class = {
> + .name = "cache_coherency",
> + .dev_release = cache_coherency_device_release,
> +};
> +
> +static int cache_inval_one(struct device *dev, void *data)
> +{
> + struct cache_coherency_device *ccd =
> + container_of(dev, struct cache_coherency_device, dev);
> +
> + if (!ccd->ops)
> + return -EINVAL;
> +
> + return ccd->ops->wbinv(ccd, data);
> +}
> +
> +static int cache_inval_done_one(struct device *dev, void *data)
> +{
> + struct cache_coherency_device *ccd =
> + container_of(dev, struct cache_coherency_device, dev);
> + if (!ccd->ops)
> + return -EINVAL;
> +
> + return ccd->ops->done(ccd);
> +}
> +
> +static int cache_invalidate_memregion(int res_desc,
> + phys_addr_t addr, size_t size)
> +{
> + int ret;
> + struct cc_inval_params params = {
> + .addr = addr,
> + .size = size,
> + };
> +
> + ret = class_for_each_device(&cache_coherency_class, NULL, ¶ms,
> + cache_inval_one);
> + if (ret)
> + return ret;
> +
> + return class_for_each_device(&cache_coherency_class, NULL, NULL,
> + cache_inval_done_one);
> +}
> +
> +static const struct system_cache_flush_method cache_flush_method = {
> + .invalidate_memregion = cache_invalidate_memregion,
> +};
> +
> +struct cache_coherency_device *
> +_cache_coherency_alloc_device(struct device *parent,
> + const struct coherency_ops *ops, size_t size)
> +{
> +
> + if (!ops || !ops->wbinv)
> + return NULL;
> +
> + struct cache_coherency_device *ccd __free(kfree) = kzalloc(size, GFP_KERNEL);
> +
> + if (!ccd)
> + return NULL;
> +
> + ccd->dev.class = &cache_coherency_class;
> + ccd->dev.parent = parent;
> + ccd->ops = ops;
> + ccd->id = ida_alloc(&cache_coherency_ida, GFP_KERNEL);
> +
> + if (dev_set_name(&ccd->dev, "cache_coherency%d", ccd->id))
> + return NULL;
> +
> + device_initialize(&ccd->dev);
> +
> + return_ptr(ccd);
> +}
> +EXPORT_SYMBOL_NS_GPL(_cache_coherency_alloc_device, "CACHE_COHERENCY");
> +
> +int cache_coherency_device_register(struct cache_coherency_device *ccd)
> +{
> + return device_add(&ccd->dev);
> +}
> +EXPORT_SYMBOL_NS_GPL(cache_coherency_device_register, "CACHE_COHERENCY");
> +
> +void cache_coherency_device_unregister(struct cache_coherency_device *ccd)
> +{
> + device_del(&ccd->dev);
> +}
> +EXPORT_SYMBOL_NS_GPL(cache_coherency_device_unregister, "CACHE_COHERENCY");
> +
> +static int __init cache_coherency_init(void)
> +{
> + int ret;
> +
> + ret = class_register(&cache_coherency_class);
> + if (ret)
> + return ret;
> +
> + //TODO: generalize
> + arm64_set_sys_cache_flush_method(&cache_flush_method);
I'm guessing this will blow up the build on non-x86 builds :)
> +struct cache_coherency_device {
> + struct device dev;
> + const struct coherency_ops *ops;
> + int id;
> +};
Classes are normally for user/kernel apis, what is this going to be used
for? I don't see any new user/kernel apis happening, so why do you need
a struct device to be created?
thanks,
greg k-h
next prev parent reply other threads:[~2025-03-20 21:13 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-20 17:41 [RFC PATCH 0/6] Cache coherency management subsystem Jonathan Cameron
2025-03-20 17:41 ` [RFC PATCH 1/6] memregion: Support fine grained invalidate by cpu_cache_invalidate_memregion() Jonathan Cameron
2025-03-20 17:41 ` [RFC PATCH 2/6] arm64: Support ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION Jonathan Cameron
2025-03-28 18:22 ` Catalin Marinas
2025-03-29 7:14 ` Yicong Yang
2025-06-13 17:14 ` Jonathan Cameron
2025-03-20 17:41 ` [RFC PATCH 3/6] cache: coherency device class Jonathan Cameron
2025-03-20 21:12 ` Greg KH [this message]
2025-03-21 9:38 ` Jonathan Cameron
2025-03-20 17:41 ` [RFC PATCH 4/6] cache: Support cache maintenance for HiSilicon SoC Hydra Home Agent Jonathan Cameron
2025-03-20 17:41 ` [RFC PATCH 5/6] acpi: PoC of Cache control via ACPI0019 and _DSM Jonathan Cameron
2025-03-20 17:41 ` [RFC PATCH 6/6] Hack: Pretend we have PSCI 1.2 Jonathan Cameron
2025-03-21 22:32 ` [RFC PATCH 0/6] Cache coherency management subsystem Conor Dooley
2025-03-24 12:00 ` Jonathan Cameron
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2025032013-venus-request-b026@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=Jonathan.Cameron@huawei.com \
--cc=catalin.marinas@arm.com \
--cc=conor@kernel.org \
--cc=dan.j.williams@intel.com \
--cc=james.morse@arm.com \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-arch@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-cxl@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linuxarm@huawei.com \
--cc=lpieralisi@kernel.org \
--cc=mark.rutland@arm.com \
--cc=wangyushan12@huawei.com \
--cc=will@kernel.org \
--cc=yangyicong@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).