All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Víctor Colombo" <victor.colombo@eldorado.org.br>
To: Daniel Henrique Barboza <danielhb413@gmail.com>,
	qemu-devel@nongnu.org, qemu-ppc@nongnu.org
Cc: clg@kaod.org, david@gibson.dropbear.id.au, groug@kaod.org,
	richard.henderson@linaro.org, mst@redhat.com, cohuck@redhat.com,
	pbonzini@redhat.com, farosas@linux.ibm.com
Subject: Re: [RFC PATCH v3 0/3] Implement Power ISA 3.1B hash insns
Date: Fri, 15 Jul 2022 10:36:01 -0300	[thread overview]
Message-ID: <30172818-0da0-ca4e-7920-a498e5ce027b@eldorado.org.br> (raw)
In-Reply-To: <72c6d73b-0869-ab1a-3c2c-1c0fa334f643@gmail.com>

On 15/07/2022 10:23, Daniel Henrique Barboza wrote:
> On 7/13/22 13:54, Víctor Colombo wrote:
>> This patch series implements the 4 instructions added in Power ISA
>> 3.1B:
>>
>> - hashchk
>> - hashst
>> - hashchkp
>> - hashstp
>>
>> To build it, you need to apply the following patches on top of master:
>> <20220701133507.740619-2-lucas.coutinho@eldorado.org.br>
>> <20220701133507.740619-3-lucas.coutinho@eldorado.org.br>
>> <20220712193741.59134-2-leandro.lupori@eldorado.org.br>
>> <20220712193741.59134-3-leandro.lupori@eldorado.org.br>
>>
>> Working branch for ease of use can be found here:
>> https://github.com/PPC64/qemu/tree/vccolombo-hash-to-send-v3
>>
>> What do you think about the choice to implement the hash algorithm
>> from the ground up, following the SIMON-like algorithm presented in
>> Power ISA? IIUC, this algorithm is not the same as the original[1].
>> Other options would be to use other algorithm already implemented
>> in QEMU, or even make this instruction a nop for all Power versions.
>>
>> Also, I was thinking about using the call to spr_register_kvm() in
>> init_proc_POWER10 to initialize the registers with a random value.
>> I'm not sure what is the behavior here, I would expect that is the job
>> of the OS to set the regs, but looks like KVM is not exporting them,
>> so they are always 0 (?). Does anyone have any insight on this?
> 
> This happens because KVM on POWER10 isn't handling these registers
> appropriately. We are probably missing kernel/kvm code to do so.
> 
> Since KVM on POWER10 is on an uncertain spot at this moment I wouldn't
> worry too much about it. Making the regs read/write work in TCG is good
> enough for now.
> 
> 
> Daniel

Hello Daniel,

Thanks for taking a look at this. I agree that in this case it is better
to make it work in TCG and drop the KVM part from this patch set
I'll work on it now

Thanks!

> 
>>
>> v1->v2:
>> - Split the patch in 2
>> - Rebase to master
>>
>> v2->v3:
>> - Split patches in 3
>>      - the new patch (patch 1) is separating the kvm header
>>        changes [Cornelia]
>>
>> [1] https://eprint.iacr.org/2013/404.pdf
>>
>> Víctor Colombo (3):
>>    linux-headers/asm-powerpc/kvm.h: Add HASHKEYR and HASHPKEYR in headers
>>    target/ppc: Implement hashst and hashchk
>>    target/ppc: Implement hashstp and hashchkp
>>
>>   linux-headers/asm-powerpc/kvm.h            |  3 +
>>   target/ppc/cpu.h                           |  2 +
>>   target/ppc/cpu_init.c                      |  7 ++
>>   target/ppc/excp_helper.c                   | 82 ++++++++++++++++++++++
>>   target/ppc/helper.h                        |  4 ++
>>   target/ppc/insn32.decode                   | 10 +++
>>   target/ppc/translate.c                     |  5 ++
>>   target/ppc/translate/fixedpoint-impl.c.inc | 34 +++++++++
>>   8 files changed, 147 insertions(+)
>>


-- 
Víctor Cora Colombo
Instituto de Pesquisas ELDORADO
Aviso Legal - Disclaimer <https://www.eldorado.org.br/disclaimer.html>

      reply	other threads:[~2022-07-15 13:37 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-13 16:54 [RFC PATCH v3 0/3] Implement Power ISA 3.1B hash insns Víctor Colombo
2022-07-13 16:54 ` [RFC PATCH v3 1/3] linux-headers/asm-powerpc/kvm.h: Add HASHKEYR and HASHPKEYR in headers Víctor Colombo
2022-07-13 16:54 ` [RFC PATCH v3 2/3] target/ppc: Implement hashst and hashchk Víctor Colombo
2022-07-13 16:54 ` [RFC PATCH v3 3/3] target/ppc: Implement hashstp and hashchkp Víctor Colombo
2022-07-15 13:23 ` [RFC PATCH v3 0/3] Implement Power ISA 3.1B hash insns Daniel Henrique Barboza
2022-07-15 13:36   ` Víctor Colombo [this message]

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=30172818-0da0-ca4e-7920-a498e5ce027b@eldorado.org.br \
    --to=victor.colombo@eldorado.org.br \
    --cc=clg@kaod.org \
    --cc=cohuck@redhat.com \
    --cc=danielhb413@gmail.com \
    --cc=david@gibson.dropbear.id.au \
    --cc=farosas@linux.ibm.com \
    --cc=groug@kaod.org \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    --cc=richard.henderson@linaro.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.