raw/cnxk_bphy: use ROC calls for max IRQ get

Maximum interrupt number function used direct access to
structure field while ROC helper exists and serves the
same purpose.

Signed-off-by: Jakub Palider <jpalider@marvell.com>
Reviewed-by: Jerin Jacob <jerinj@marvell.com>
This commit is contained in:
Jakub Palider 2021-10-01 22:19:41 +02:00 committed by Jerin Jacob
parent bb85a78d2f
commit 3d1cd3a803
4 changed files with 9 additions and 1 deletions

View File

@ -318,6 +318,12 @@ roc_bphy_intr_available(struct roc_bphy_irq_chip *irq_chip, int irq_num)
return irq_chip->avail_irq_bmask & BIT(irq_num);
}
uint64_t
roc_bphy_intr_max_get(struct roc_bphy_irq_chip *irq_chip)
{
return irq_chip->max_irq;
}
int
roc_bphy_intr_clear(struct roc_bphy_irq_chip *chip, int irq_num)
{

View File

@ -36,6 +36,7 @@ __roc_api void roc_bphy_intr_handler(unsigned int irq_num);
__roc_api bool roc_bphy_intr_available(struct roc_bphy_irq_chip *irq_chip,
int irq_num);
__roc_api int roc_bphy_intr_clear(struct roc_bphy_irq_chip *chip, int irq_num);
__roc_api uint64_t roc_bphy_intr_max_get(struct roc_bphy_irq_chip *irq_chip);
__roc_api int roc_bphy_intr_register(struct roc_bphy_irq_chip *irq_chip,
struct roc_bphy_intr *intr);

View File

@ -46,6 +46,7 @@ INTERNAL {
roc_bphy_intr_fini;
roc_bphy_intr_handler;
roc_bphy_intr_init;
roc_bphy_intr_max_get;
roc_bphy_intr_register;
roc_bphy_npa_pf_func_get;
roc_bphy_sso_pf_func_get;

View File

@ -32,7 +32,7 @@ cnxk_bphy_irq_max_get(uint16_t dev_id)
bphy_dev = cnxk_bphy_get_bphy_dev_by_dev_id(dev_id);
irq_chip = bphy_dev->irq_chip;
return irq_chip->max_irq;
return roc_bphy_intr_max_get(irq_chip);
}
int