Maximilian Luz
Maximilian Luz
Thanks for reporting this. I had some spurious issues with wifi already in 6.0.1. In particular it freezed the desktop, but I assume they're the same problem as I was...
Okay, so unfortunately I can't get `./scripts/faddr2line` to print the line where it fails: ```sh $ ./scripts/faddr2line drivers/net/wireless/ath/ath10k/ath10k_snoc.ko ath10k_snoc_napi_poll+0x84 ath10k_snoc_napi_poll+0x84/0x150: ath10k_snoc_napi_poll at snoc.c:? ``` Looks like we'll have to debug...
I'm having some difficulties debugging this... It seems that since it's asynchronous we can't rely on the program counter or stack trace to point us to the specific place where...
@Deinsti Can you still reproduce this on the latest kernel?
Thanks! Right, makes sense that they have SoC specific data in the driver and the device/vendor specific one in ACPI. I noticed that Qualcomm did similar things in other DTs....
There is indeed some SAM stuff going on in the `SurfaceUsbCMuxAcpiFilterDriver.sys` using the `USC` subsystem. There seem to be two methods, specifically. A `FilterGetPortNumbers` and a `FilterSendUSBCAck`. In addition to...
Some notes: - `TLMM` pin 81 should be RTC wake interrupt pin, but that is not apparent in ACPI. ACPI only notifies the RTC via `_WAK` method, but where does...
There is indeed a `qcom,pm8941-rtc` present ([code here](https://github.com/linux-surface/kernel/blob/892c8774c6e53ab46237cb8444aa22c7817563d7/arch/arm64/boot/dts/qcom/pmc8180.dtsi#L110-L115)), but that shows a date of 1971 on my SPX and can't be changed. We can set the `allow-set-time` property in DT,...
> - _GWS accesses some system memory region in DSDT and is not implemented in via SAM. What provides this region and sets the wake status? Clarification on this: The...
Very basic RTC support has been implemented in https://github.com/linux-surface/kernel/commit/6b289bf17375b2c98292cd56d20bde7278560c82. This does not support any kind of alarms yet. For testing wake alarms/interrupts properly, we may need to make suspend work...