Linux-ARM-Kernel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Tian Zheng <zhengtian10@huawei.com>
To: Leonardo Bras <leo.bras@arm.com>
Cc: <maz@kernel.org>, <oupton@kernel.org>, <catalin.marinas@arm.com>,
	<will@kernel.org>, <yuzenghui@huawei.com>,
	<wangzhou1@hisilicon.com>, <yangjinqian1@huawei.com>,
	<caijian11@h-partners.com>, <liuyonglong@huawei.com>,
	<yezhenyu2@huawei.com>, <yubihong@huawei.com>,
	<linuxarm@huawei.com>, <joey.gouly@arm.com>,
	<kvmarm@lists.linux.dev>, <kvm@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>, <seiden@linux.ibm.com>,
	<suzuki.poulose@arm.com>
Subject: Re: [PATCH v4 4/6] KVM: arm64: Add HDBSS per-vCPU buffer management
Date: Wed, 15 Jul 2026 17:16:51 +0800	[thread overview]
Message-ID: <f360c92e-878d-49b5-bcd4-e18240a3600a@huawei.com> (raw)
In-Reply-To: <alYTt-fG5rJ9D6Dm@LeoBrasDK>


On 7/14/2026 6:47 PM, Leonardo Bras wrote:
> On Tue, Jul 14, 2026 at 03:15:03PM +0800, Tian Zheng wrote:
>> On 7/13/2026 9:39 PM, Leonardo Bras wrote:
>>> On Thu, Jul 09, 2026 at 06:40:24PM +0800, Tian Zheng wrote:
>>>> From: eillon <yezhenyu2@huawei.com>
>>>>
>>>> Add HDBSS (Hardware Dirty Bit State Structure) per-vCPU buffer
>>>> management including allocation, freeing, and loading of HDBSS
>>>> registers during vCPU load.
>>>>
>>>> This patch creates the foundational infrastructure:
>>>> - struct vcpu_hdbss_state and enable_hdbss/hdbss_order in kvm_arch
>>>> - kvm_dirty_bit.h header with alloc/free declarations
>>>> - dirty_bit.c with alloc/free helpers
>>>> - __load_hdbss() in VHE switch for register loading
>>>> - vCPU create/destroy hooks for buffer lifecycle
>>>> - sysreg definitions for HDBSS register manipulation
>>>> - Makefile update for dirty_bit.o
>>>>
>>>> Signed-off-by: Eillon <yezhenyu2@huawei.com>
>>>> Signed-off-by: Tian Zheng <zhengtian10@huawei.com>
>>>> ---
>>>>    arch/arm64/include/asm/kvm_dirty_bit.h | 16 ++++++++
>>>>    arch/arm64/include/asm/kvm_host.h      | 13 +++++++
>>>>    arch/arm64/include/asm/sysreg.h        | 11 ++++++
>>>>    arch/arm64/kvm/Makefile                |  1 +
>>>>    arch/arm64/kvm/arm.c                   |  7 ++++
>>>>    arch/arm64/kvm/dirty_bit.c             | 52 ++++++++++++++++++++++++++
>>>>    arch/arm64/kvm/hyp/vhe/switch.c        | 15 ++++++++
>>>>    arch/arm64/kvm/mmu.c                   |  1 +
>>>>    arch/arm64/kvm/reset.c                 |  4 ++
>>>>    9 files changed, 120 insertions(+)
>>>>    create mode 100644 arch/arm64/include/asm/kvm_dirty_bit.h
>>>>    create mode 100644 arch/arm64/kvm/dirty_bit.c
>>>>
>>>> diff --git a/arch/arm64/include/asm/kvm_dirty_bit.h b/arch/arm64/include/asm/kvm_dirty_bit.h
>>>> new file mode 100644
>>>> index 000000000000..84b12f0a10af
>>>> --- /dev/null
>>>> +++ b/arch/arm64/include/asm/kvm_dirty_bit.h
>>>> @@ -0,0 +1,16 @@
>>>> +/* SPDX-License-Identifier: GPL-2.0-only */
>>>> +/*
>>>> + * Copyright (C) 2026 ARM Ltd.
>>>> + * Author: Leonardo Bras <leo.bras@arm.com>
>>> You are adding the file, so the copyright note should be yours, then?
>>
>> I originally thought your earlier patchset had already created this file, so
>> I
>>
>> kept your copyright and author info. I'll update it to mine in the next
>> version.
>>
>>
>> Thanks for pointing that out!
> :)
>
>>
>>>> + */
>>>> +
>>>> +#ifndef __ARM64_KVM_DIRTY_BIT_H__
>>>> +#define __ARM64_KVM_DIRTY_BIT_H__
>>>> +
>>>> +#include <asm/kvm_pgtable.h>
>>>> +#include <asm/sysreg.h>
>>>> +
>>>> +int kvm_arm_vcpu_alloc_hdbss(struct kvm_vcpu *vcpu, unsigned int order);
>>>> +void kvm_arm_vcpu_free_hdbss(struct kvm_vcpu *vcpu);
>>>> +
>>>> +#endif /* __ARM64_KVM_DIRTY_BIT_H__ */
>>>> diff --git a/arch/arm64/include/asm/kvm_host.h b/arch/arm64/include/asm/kvm_host.h
>>>> index bae2c4f92ef5..c41ec6d9c45a 100644
>>>> --- a/arch/arm64/include/asm/kvm_host.h
>>>> +++ b/arch/arm64/include/asm/kvm_host.h
>>>> @@ -420,6 +420,10 @@ struct kvm_arch {
>>>>    	 */
>>>>    	struct kvm_protected_vm pkvm;
>>>>
>>>> +	/* HDBSS: per-VM dirty tracking state */
>>>> +	bool enable_hdbss;
>>> Is there not a way of checking hdbss without adding this new member on the
>>> struct? Would not checking the vcpu_hdbss_state from current vcpu should be
>>> enough?
>>
>> HDBSS is a VM-wide property, so I currently use a VM-level flag
>> (kvm->arch.enable_hdbss)
>>
>> to track whether it's enabled. Paths like kvm_arch_commit_memory_region()
>> and VM teardown
>>
>> don't have a vCPU context to query, so per-vCPU state wouldn't work there.
>>
>>
>> But you're right, maybe we don't need a value to store it — we could remove
>> this flag and instead
>>
>> check the VTCR_EL2_HDBSS bit directly from kvm->arch.mmu.vtcr:
>>
>>
>> ```
>> static inline bool kvm_hdbss_enabled(const struct kvm *kvm)
>> {
>>      return kvm->arch.mmu.vtcr & VTCR_EL2_HDBSS;
>> }
>>
>> if (kvm_hdbss_enabled(kvm))
>>      ...
>> ```
> That looks better :)
>
>>
>>>> +	unsigned int hdbss_order;
>>> Is that the order for hdbss buffer size?
>>> Haven't finished reading the series, but would that be bad if this was also
>>> in the per-vcpu state struct, instead?
>>>
>>> Also, here I suggest that we save a number, instead of the encoding for
>>> HDBSSBR_ELS_SZ, and convert it on hdbss setup. It could be either a
>>> shift, or size.
>>>
>>> Reason being that you used this to compare with HDBSS_MAX_ORDER at some
>>> point, and there is no guarantee that the encoding will always be in
>>> crescent form.
>>>
>>> Also, it's not clear where you set this value.
>>
>> Yes, this is the HDBSS buffer order (2^order bytes per vCPU).
>>
>> I put it in kvm->arch *to make sure all vCPUs in a VM have the same order*.
>>
> Right, but do we need to retrieve this value at any context that is not
> per-vcpu later? If all allocations happen at the same time, and the vcpus
> can get the size of their arrays (even by the register itself), maybe there
> is no need to add this member in the kvm_arch structure.
>
>>
>> I agree we should store a plain order number rather than the raw SZ
>> encoding.
>>
> I would recommend we always save the value in the way its most convenient
> to use. In this case, I only recall it to be used as bounds to read the
> HDBSS array, so it would be better if we save it as plain size.
>
>> The assignment should happen in kvm_arm_enable_hdbss_global(), which I
>> missed in v4 and will add in v5.
>>
> Okay
>
>>>> +
>>>>    #ifdef CONFIG_PTDUMP_STAGE2_DEBUGFS
>>>>    	/* Nested virtualization info */
>>>>    	struct dentry *debugfs_nv_dentry;
>>>> @@ -838,6 +842,12 @@ struct vcpu_reset_state {
>>>>    	bool		reset;
>>>>    };
>>>>
>>>> +struct vcpu_hdbss_state {
>>>> +	phys_addr_t base_phys;   /* for memory free */
>>>> +	u64 hdbssbr_el2;         /* load directly */
>>>> +	u64 hdbssprod_el2;       /* save directly */
>>>> +};
>>>> +
>>>>    struct vncr_tlb;
>>>>
>>>>    struct kvm_vcpu_arch {
>>>> @@ -945,6 +955,9 @@ struct kvm_vcpu_arch {
>>>>
>>>>    	/* Hyp-readable copy of kvm_vcpu::pid */
>>>>    	pid_t pid;
>>>> +
>>>> +	/* HDBSS registers info */
>>>> +	struct vcpu_hdbss_state hdbss;/
>>>>    };
>>>>
>>>>    /*
>>>> diff --git a/arch/arm64/include/asm/sysreg.h b/arch/arm64/include/asm/sysreg.h
>>>> index 7aa08d59d494..1354a58c3316 100644
>>>> --- a/arch/arm64/include/asm/sysreg.h
>>>> +++ b/arch/arm64/include/asm/sysreg.h
>>>> @@ -1039,6 +1039,17 @@
>>>>
>>>>    #define GCS_CAP(x)	((((unsigned long)x) & GCS_CAP_ADDR_MASK) | \
>>>>    					       GCS_CAP_VALID_TOKEN)
>>>> +
>>>> +/*
>>>> + * Definitions for the HDBSS feature
>>>> + */
>>>> +#define HDBSS_MAX_ORDER		HDBSSBR_EL2_SZ_2MB
>>>> +
>>> See above comment on using the encoding instead of an actual size/shift
>>> number.
>>
>> You're right — I will fix this in the next version as follows:
>>
>> First, HDBSS_MAX_ORDER will be defined as a plain order number. In v4 I only
>> considered the 4KB page
> Maybe consider a plain size number, instead.
>
>> case and hard-coded it to 9. To make it work for any PAGE_SIZE configuration
>> (4KB, 16KB, or 64KB), I'll derive
>>
>> it from HDBSSBR_EL2_SZ_2MB:
>>
>> ```
>> #define HDBSS_MAX_ORDER    (12 + HDBSSBR_EL2_SZ_2MB - PAGE_SHIFT)
>> ```
>>
>> This evaluates to 9 on 4KB pages, and the correct value on 16KB/64KB pages
>> as well.
> Wait, I don't see what you are trying to achieve here with this.
> This order is related to the size of a HDBSS buffer, which is defined
> independently of the page size being used. In 2MB example, it does hold
> 256K HDBSS entries, disregarding on the page size, IIRC.
>
>
>> Second, I will add two conversion helpers in sysreg.h to bridge between
>> kernel semantics (alloc_pages order)
>>
>> and hardware encoding (HDBSSBR_EL2.SZ):
>>
>> ```
>> /* Convert alloc_pages order to HDBSSBR_EL2.SZ encoding */
>> #define hdbss_order_to_sz(order)  (PAGE_SHIFT + (order) - 12)
>> ```
> (would be *_to_shift() no?)
>
> In any case, see above.
>
>> These helpers work for any PAGE_SIZE configuration (4KB, 16KB, or 64KB)
>> because they use PAGE_SHIFT directly.
>>
>> Third, I will update the HDBSSBR_EL2 register construction in
>> kvm_arm_vcpu_alloc_hdbss():
>>
>> ```
>> /* before */
>> .hdbssbr_el2 = HDBSSBR_EL2(page_to_phys(hdbss_pg), order),
>>
>> /* after */
>> .hdbssbr_el2 = HDBSSBR_EL2(page_to_phys(hdbss_pg),
>>                              hdbss_order_to_sz(order)),
>> ```
>>
> That would be the other way around, right? I mean, here you would want the
> order encoded in HDBSSBR_SZ from the page shift, not the other way around.
>
> In any case, see above.
>
>
>> And I will also update the __free_pages() call to use
>> vcpu->kvm->arch.hdbss_order directly, since that field
>>
>> stores the plain order number and avoids decoding the SZ encoding at free
>> time:
>>
>>
>> ```
>> /* before */
>> __free_pages(hdbss_pg,
>>       FIELD_GET(HDBSSBR_EL2_SZ_MASK,
>>                 vcpu->arch.hdbss.hdbssbr_el2));
>>
>> /* after */
>> __free_pages(hdbss_pg,
>>       vcpu->kvm->arch.hdbss_order);
>> ```
>>
> Ah, you use the 'order' to free the buffers as well, ok.
> But those are per-vcpu buffers as well, right?
>
> Again, the HDBSSBR_EL2.SZ AFAIK is not related to page size.
>
> Thanks!
> Leo


Got it. I'll store the plain size (in bytes) instead of the order or SZ
encoding.

One clarification though: I'd like to keep this as a VM-level field
(kvm->arch.hdbss_buffer_size) in case we may want to allow userspace to
configure the buffer size via ioctl in the future.

The field would be unsigned long hdbss_buffer_size (in bytes), with helpers
to convert to order or SZ encoding when needed:
   - get_order(size) → for alloc_pages()
   - ilog2(size) - 12 → for HDBSSBR_EL2.SZ

Does that work for you?


Thanks!

Tian




  reply	other threads:[~2026-07-15  9:17 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-09 10:40 [PATCH v4 0/6] Support the FEAT_HDBSS introduced in Armv9.5 Tian Zheng
2026-07-09 10:40 ` [PATCH v4 1/6] KVM: arm64: Enable eager hugepage splitting if HDBSS is available Tian Zheng
2026-07-09 10:40 ` [PATCH v4 2/6] KVM: arm64: Add support for FEAT_HDBSS Tian Zheng
2026-07-09 10:40 ` [PATCH v4 3/6] KVM: arm64: Add auto DBM support for hardware dirty tracking Tian Zheng
2026-07-13 11:17   ` Leonardo Bras
2026-07-14  1:14     ` Tian Zheng
2026-07-14  7:23       ` Marc Zyngier
2026-07-14  7:44         ` Tian Zheng
2026-07-14 10:20           ` Leonardo Bras
2026-07-09 10:40 ` [PATCH v4 4/6] KVM: arm64: Add HDBSS per-vCPU buffer management Tian Zheng
2026-07-13 13:39   ` Leonardo Bras
2026-07-14  7:15     ` Tian Zheng
2026-07-14 10:47       ` Leonardo Bras
2026-07-15  9:16         ` Tian Zheng [this message]
2026-07-15 14:28           ` Leonardo Bras
2026-07-09 10:40 ` [PATCH v4 5/6] KVM: arm64: Add HDBSS fault handling and buffer flush Tian Zheng
2026-07-13 14:06   ` Leonardo Bras
2026-07-14  7:38     ` Tian Zheng
2026-07-14 10:50       ` Leonardo Bras
2026-07-14 13:27         ` Tian Zheng
2026-07-14 14:19           ` Leonardo Bras
2026-07-09 10:40 ` [PATCH v4 6/6] KVM: arm64: Add auto HDBSS enable/disable on dirty logging change Tian Zheng
2026-07-13 14:50   ` Leonardo Bras
2026-07-14  8:58     ` Tian Zheng
2026-07-14 11:16       ` Leonardo Bras
2026-07-14 14:33         ` Leonardo Bras
2026-07-13 10:31 ` [PATCH v4 0/6] Support the FEAT_HDBSS introduced in Armv9.5 Leonardo Bras
2026-07-13 16:27   ` Leonardo Bras
2026-07-14 10:39     ` Tian Zheng
2026-07-14 11:20       ` Leonardo Bras
2026-07-14 13:29         ` Tian Zheng
2026-07-14  9:37   ` Tian Zheng
2026-07-14 10:19     ` Leonardo Bras
2026-07-14 13:34       ` Tian Zheng

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=f360c92e-878d-49b5-bcd4-e18240a3600a@huawei.com \
    --to=zhengtian10@huawei.com \
    --cc=caijian11@h-partners.com \
    --cc=catalin.marinas@arm.com \
    --cc=joey.gouly@arm.com \
    --cc=kvm@vger.kernel.org \
    --cc=kvmarm@lists.linux.dev \
    --cc=leo.bras@arm.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linuxarm@huawei.com \
    --cc=liuyonglong@huawei.com \
    --cc=maz@kernel.org \
    --cc=oupton@kernel.org \
    --cc=seiden@linux.ibm.com \
    --cc=suzuki.poulose@arm.com \
    --cc=wangzhou1@hisilicon.com \
    --cc=will@kernel.org \
    --cc=yangjinqian1@huawei.com \
    --cc=yezhenyu2@huawei.com \
    --cc=yubihong@huawei.com \
    --cc=yuzenghui@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