From: Haren Myneni <haren@linux.ibm.com> To: herbert@gondor.apana.org.au Cc: mpe@ellerman.id.au, mikey@neuling.org, sukadev@linux.vnet.ibm.com, linuxppc-dev@lists.ozlabs.org, linux-crypto@vger.kernel.org, npiggin@gmail.com Subject: [PATCH V2 1/9] powerpc/vas: Initialize window attributes for GZIP coprocessor type Date: Sat, 29 Feb 2020 03:11:14 -0800 [thread overview] Message-ID: <1582974674.18705.37.camel@hbabu-laptop> (raw) In-Reply-To: <1582974266.18705.28.camel@hbabu-laptop> Initialize send and receive window attributes for GZIP high and normal priority types. Signed-off-by: Haren Myneni <haren@linux.ibm.com> --- arch/powerpc/platforms/powernv/vas-window.c | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/arch/powerpc/platforms/powernv/vas-window.c b/arch/powerpc/platforms/powernv/vas-window.c index 5f9c915..b6572af 100644 --- a/arch/powerpc/platforms/powernv/vas-window.c +++ b/arch/powerpc/platforms/powernv/vas-window.c @@ -817,7 +817,8 @@ void vas_init_rx_win_attr(struct vas_rx_win_attr *rxattr, enum vas_cop_type cop) { memset(rxattr, 0, sizeof(*rxattr)); - if (cop == VAS_COP_TYPE_842 || cop == VAS_COP_TYPE_842_HIPRI) { + if (cop == VAS_COP_TYPE_842 || cop == VAS_COP_TYPE_842_HIPRI || + cop == VAS_COP_TYPE_GZIP || cop == VAS_COP_TYPE_GZIP_HIPRI) { rxattr->pin_win = true; rxattr->nx_win = true; rxattr->fault_win = false; @@ -892,7 +893,8 @@ void vas_init_tx_win_attr(struct vas_tx_win_attr *txattr, enum vas_cop_type cop) { memset(txattr, 0, sizeof(*txattr)); - if (cop == VAS_COP_TYPE_842 || cop == VAS_COP_TYPE_842_HIPRI) { + if (cop == VAS_COP_TYPE_842 || cop == VAS_COP_TYPE_842_HIPRI || + cop == VAS_COP_TYPE_GZIP || cop == VAS_COP_TYPE_GZIP_HIPRI) { txattr->rej_no_credit = false; txattr->rx_wcred_mode = true; txattr->tx_wcred_mode = true; @@ -976,9 +978,14 @@ static bool tx_win_args_valid(enum vas_cop_type cop, if (attr->wcreds_max > VAS_TX_WCREDS_MAX) return false; - if (attr->user_win && - (cop != VAS_COP_TYPE_FTW || attr->rsvd_txbuf_count)) - return false; + if (attr->user_win) { + if (attr->rsvd_txbuf_count) + return false; + + if (cop != VAS_COP_TYPE_FTW && cop != VAS_COP_TYPE_GZIP && + cop != VAS_COP_TYPE_GZIP_HIPRI) + return false; + } return true; } -- 1.8.3.1
next prev parent reply other threads:[~2020-02-29 11:12 UTC|newest] Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-02-29 11:04 [PATCH V2 0/9] crypto/nx: Enable GZIP engine and provide userpace API Haren Myneni 2020-02-29 11:11 ` Haren Myneni [this message] 2020-02-29 11:11 ` [PATCH V2 2/9] powerpc/vas: Define VAS_TX_WIN_OPEN ioctl API Haren Myneni 2020-02-29 11:14 ` [PATCH V3 3/9] powerpc/vas: Add VAS user space API Haren Myneni 2020-02-29 11:15 ` [PATCH V2 4/9] crypto/nx: Initialize coproc entry with kzalloc Haren Myneni 2020-02-29 11:15 ` [PATCH V2 5/9] crypto/nx: Rename nx-842-powernv file name to nx-common-powernv Haren Myneni 2020-02-29 11:16 ` [PATCH V2 6/9] crypto/nx: Make enable code generic to add new GZIP compression type Haren Myneni 2020-02-29 11:17 ` [PATCH V2 7/9] crypto/nx: Enable and setup " Haren Myneni 2020-02-29 11:17 ` [PATCH V2 8/9] crypto/nx: Remove 'pid' in vas_tx_win_attr struct Haren Myneni 2020-02-29 11:18 ` [PATCH V2 9/9] Documentation/powerpc: VAS API Haren Myneni
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=1582974674.18705.37.camel@hbabu-laptop \ --to=haren@linux.ibm.com \ --cc=herbert@gondor.apana.org.au \ --cc=linux-crypto@vger.kernel.org \ --cc=linuxppc-dev@lists.ozlabs.org \ --cc=mikey@neuling.org \ --cc=mpe@ellerman.id.au \ --cc=npiggin@gmail.com \ --cc=sukadev@linux.vnet.ibm.com \ --subject='Re: [PATCH V2 1/9] powerpc/vas: Initialize window attributes for GZIP coprocessor type' \ /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
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).