Quoting Maulik Shah (2020-05-29 02:20:32)i can change this to return error code.
Hi,It's not a question about the parent irqchip. I'm wondering why we would
On 5/27/2020 3:45 PM, Stephen Boyd wrote:
Quoting Maulik Shah (2020-05-23 10:11:13)we return success/failure from parent chip with below call at end of
@@ -87,22 +88,20 @@ static void pdc_enable_intr(struct irq_data *d, bool on)Shouldn't this fail if we can't set for wake?
raw_spin_unlock(&pdc_lock);
}
-static void qcom_pdc_gic_disable(struct irq_data *d)
+static int qcom_pdc_gic_set_wake(struct irq_data *d, unsigned int on)
{
if (d->hwirq == GPIO_NO_WAKE_IRQ)
- return;
-
- pdc_enable_intr(d, false);
- irq_chip_disable_parent(d);
-}
+ return 0;
set_wake.
return irq_chip_set_wake_parent(d, on);
return success for a gpio irq that can't be marked for wakeup when a
client driver tries to enable wake on it. My understanding is that all
gpios irqs call here and PDC can't monitor all of them so some are
GPIO_NO_WAKE_IRQ and thus trying to mark those for wakeup should fail.
Of course msm_gpio_irq_set_wake() should also fail if it can't mark the
gpio for wakeup, but that's another problem.
How does it break cpuidle? The irqs that would be enabled/unmasked inPDC monitors interrupts during CPUidle as well, in cases where deepest@@ -118,6 +120,7 @@ static void qcom_pdc_gic_unmask(struct irq_data *d)I find these two hunks deeply confusing. I'm not sure what the
if (d->hwirq == GPIO_NO_WAKE_IRQ)
return;
+ pdc_enable_intr(d, true);
irq_chip_unmask_parent(d);
}
maintainers think though. I hope it would be simpler to always enable
the hwirqs in the pdc when an irq is requested and only disable it in
the pdc when the system goes to suspend and the pdc pin isn't for an irq
that's marked for wakeup. Does that break somehow?
low power mode happened from cpuidle where GIC is not active.
If we keep PDC IRQ always enabled/unmasked during idle and then
disable/mask when entering to suspend, it will break cpuidle.
pdc would only be the irqs that the kernel has setup irq handlers for
(from request_irq() and friends). We want those irqs to keep working
during cpuidle and wake the CPU from the deepest idle states.
I hope it would be simpler to always enable
the hwirqs in the pdc when an irq is requested and only disable it in
the pdc when the system goes to suspend and the pdc pin isn't for an irq
that's marked for wakeup
How does it break cpuidle?
correct.
Does 'default' mean the hardware register reset state?My understanding of the hardware is that the GPIO controller has linesit can affect idle path as explained above.
directly connected to various SPI lines on the GIC and PDC has a way to
monitor those direct connections and wakeup the CPUs when they trigger
the detection logic in the PDC. The enable/disable bit in PDC gates that
logic for each wire between the GPIO controller and the GIC.
So isn't it simpler to leave the PDC monitoring pins that we care about
all the time and only stop monitoring when we enter and leave suspend?
And shouldn't the driver set something sane in qcom_pdc_init() toWe don't rely on boot state, by default all interrupt will be disabled.
disable all the pdc pins so that we don't rely on boot state to
configure pins for wakeup?
I'm worried that
we will kexec and then various pdc pins will be enabled because the
previous kernel had them enabled but then the new kernel doesn't care
about those pins and we'll never be able to suspend or go idle. I don't
know what happens in the GIC case but I think gic_dist_config() and
things set a sane state at kernel boot.
This is same to GIC driver having GICD_ISENABLER register, where allWhat code sets the IRQ_ENABLE_BANK to all zero when this driver probes?
bits (one bit per interrupt) set to 0 (masked irqs) during boot up.
Similarly PDC also have all bits set to 0 in PDC's IRQ_ENABLE_BANK.