• [PATCH v3 08/19] thunderbolt: Configure interrupt throttling for all in

    From Mika Westerberg@21:1/5 to All on Mon Oct 2 12:50:03 2017
    This will keep the interrupt delivery rate reasonable. The value used
    here (128 us) is a recommendation from the hardware people.

    This code is based on the work done by Amir Levy and Michael Jamet.

    Signed-off-by: Michael Jamet <michael.jamet@intel.com>
    Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
    Reviewed-by: Yehezkel Bernat <yehezkel.bernat@intel.com>
    Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
    ---
    drivers/thunderbolt/nhi.c | 23 ++++++++++++++++++++---
    drivers/thunderbolt/nhi_regs.h | 2 ++
    2 files changed, 22 insertions(+), 3 deletions(-)

    diff --git a/drivers/thunderbolt/nhi.c b/drivers/thunderbolt/nhi.c
    index 05af126a2435..8a7a3d0133f9 100644
    --- a/drivers/thunderbolt/nhi.c
    +++ b/drivers/thunderbolt/nhi.c
    @@ -651,6 +651,22 @@ static int nhi_suspend_noirq(struct device *dev)
    return tb_domain_suspend_noirq(tb);
    }

    +static void nhi_enable_int_throttling(struct tb_nhi *nhi)
    +{
    + /* Throttling is specified in 256ns increments */
    + u32 throttle = DIV_ROUND_UP(128 * NSEC_PER_USEC, 256);
    + unsigned int i;
    +
    + /*
    + * Configure interrupt throttling for all vectors even if we
    + * only use few.
    + */
    + for (i = 0; i < MSIX_MAX_VECS; i++) {
    + u32 reg = REG_INT_THROTTLING_RATE + i * 4;
    + iowrite32(throttle, nhi->iobase + reg);
    + }
    +}
    +
    static int nhi_resume_noirq(struct device *dev)
    {
    struct pci_dev *pdev = to_pci_dev(dev);
    @@ -663,6 +679,8 @@ static int nhi_r