mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 03:23:53 -04:00
powerpc/xive: Remove P9 DD1 flag XIVE_IRQ_FLAG_SHIFT_BUG
This flag was used to support the PHB4 LSIs on P9 DD1 and we have stopped supporting this CPU when DD2 came out. See skiboot commit: https://github.com/open-power/skiboot/commit/0b0d15e3c170 Signed-off-by: Cédric Le Goater <clg@kaod.org> Reviewed-by: Greg Kurz <groug@kaod.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20201210171450.1933725-9-clg@kaod.org
This commit is contained in:
committed by
Michael Ellerman
parent
7b3b3de3b0
commit
4cc0e36df2
@@ -200,10 +200,6 @@ static notrace u8 xive_esb_read(struct xive_irq_data *xd, u32 offset)
|
||||
if (offset == XIVE_ESB_SET_PQ_10 && xd->flags & XIVE_IRQ_FLAG_STORE_EOI)
|
||||
offset |= XIVE_ESB_LD_ST_MO;
|
||||
|
||||
/* Handle HW errata */
|
||||
if (xd->flags & XIVE_IRQ_FLAG_SHIFT_BUG)
|
||||
offset |= offset << 4;
|
||||
|
||||
if ((xd->flags & XIVE_IRQ_FLAG_H_INT_ESB) && xive_ops->esb_rw)
|
||||
val = xive_ops->esb_rw(xd->hw_irq, offset, 0, 0);
|
||||
else
|
||||
@@ -214,10 +210,6 @@ static notrace u8 xive_esb_read(struct xive_irq_data *xd, u32 offset)
|
||||
|
||||
static void xive_esb_write(struct xive_irq_data *xd, u32 offset, u64 data)
|
||||
{
|
||||
/* Handle HW errata */
|
||||
if (xd->flags & XIVE_IRQ_FLAG_SHIFT_BUG)
|
||||
offset |= offset << 4;
|
||||
|
||||
if ((xd->flags & XIVE_IRQ_FLAG_H_INT_ESB) && xive_ops->esb_rw)
|
||||
xive_ops->esb_rw(xd->hw_irq, offset, data, 1);
|
||||
else
|
||||
@@ -1312,7 +1304,6 @@ static const struct {
|
||||
} xive_irq_flags[] = {
|
||||
{ XIVE_IRQ_FLAG_STORE_EOI, "STORE_EOI" },
|
||||
{ XIVE_IRQ_FLAG_LSI, "LSI" },
|
||||
{ XIVE_IRQ_FLAG_SHIFT_BUG, "SHIFT_BUG" },
|
||||
{ XIVE_IRQ_FLAG_MASK_FW, "MASK_FW" },
|
||||
{ XIVE_IRQ_FLAG_EOI_FW, "EOI_FW" },
|
||||
{ XIVE_IRQ_FLAG_H_INT_ESB, "H_INT_ESB" },
|
||||
|
||||
Reference in New Issue
Block a user