* [PATCH] HID: amd_sfh: Enable operating mode
@ 2025-05-27 11:10 Basavaraj Natikar
2025-06-09 22:21 ` Mario Limonciello
0 siblings, 1 reply; 8+ messages in thread
From: Basavaraj Natikar @ 2025-05-27 11:10 UTC (permalink / raw)
To: jikos, bentiss; +Cc: linux-input, Basavaraj Natikar, Akshata MukundShetty
Add changes to enable operating modes in the driver to allow the FW to
activate and retrieve data from relevant sensors. This enables the FW to
take necessary actions based on the operating modes.
Co-developed-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
Signed-off-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
---
drivers/hid/amd-sfh-hid/amd_sfh_client.c | 23 +++++++++++++++++++++++
drivers/hid/amd-sfh-hid/amd_sfh_pcie.c | 4 ++++
drivers/hid/amd-sfh-hid/amd_sfh_pcie.h | 1 +
3 files changed, 28 insertions(+)
diff --git a/drivers/hid/amd-sfh-hid/amd_sfh_client.c b/drivers/hid/amd-sfh-hid/amd_sfh_client.c
index 3438d392920f..0f2cbae39b2b 100644
--- a/drivers/hid/amd-sfh-hid/amd_sfh_client.c
+++ b/drivers/hid/amd-sfh-hid/amd_sfh_client.c
@@ -146,6 +146,8 @@ static const char *get_sensor_name(int idx)
return "gyroscope";
case mag_idx:
return "magnetometer";
+ case op_idx:
+ return "operating-mode";
case als_idx:
case ACS_IDX: /* ambient color sensor */
return "ALS";
@@ -243,6 +245,20 @@ int amd_sfh_hid_client_init(struct amd_mp2_dev *privdata)
rc = -ENOMEM;
goto cleanup;
}
+
+ if (cl_data->sensor_idx[i] == op_idx) {
+ info.period = AMD_SFH_IDLE_LOOP;
+ info.sensor_idx = cl_data->sensor_idx[i];
+ info.dma_address = cl_data->sensor_dma_addr[i];
+ mp2_ops->start(privdata, info);
+ cl_data->sensor_sts[i] = amd_sfh_wait_for_response(privdata,
+ cl_data->sensor_idx[i],
+ SENSOR_ENABLED);
+ if (cl_data->sensor_sts[i] == SENSOR_ENABLED)
+ cl_data->is_any_sensor_enabled = true;
+ continue;
+ }
+
cl_data->sensor_sts[i] = SENSOR_DISABLED;
cl_data->sensor_requested_cnt[i] = 0;
cl_data->cur_hid_dev = i;
@@ -303,6 +319,13 @@ int amd_sfh_hid_client_init(struct amd_mp2_dev *privdata)
for (i = 0; i < cl_data->num_hid_devices; i++) {
cl_data->cur_hid_dev = i;
+ if (cl_data->sensor_idx[i] == op_idx) {
+ dev_dbg(dev, "sid 0x%x (%s) status 0x%x\n",
+ cl_data->sensor_idx[i], get_sensor_name(cl_data->sensor_idx[i]),
+ cl_data->sensor_sts[i]);
+ continue;
+ }
+
if (cl_data->sensor_sts[i] == SENSOR_ENABLED) {
rc = amdtp_hid_probe(i, cl_data);
if (rc)
diff --git a/drivers/hid/amd-sfh-hid/amd_sfh_pcie.c b/drivers/hid/amd-sfh-hid/amd_sfh_pcie.c
index 1c1fd63330c9..2983af969579 100644
--- a/drivers/hid/amd-sfh-hid/amd_sfh_pcie.c
+++ b/drivers/hid/amd-sfh-hid/amd_sfh_pcie.c
@@ -29,6 +29,7 @@
#define ACEL_EN BIT(0)
#define GYRO_EN BIT(1)
#define MAGNO_EN BIT(2)
+#define OP_EN BIT(15)
#define HPD_EN BIT(16)
#define ALS_EN BIT(19)
#define ACS_EN BIT(22)
@@ -232,6 +233,9 @@ int amd_mp2_get_sensor_num(struct amd_mp2_dev *privdata, u8 *sensor_id)
if (MAGNO_EN & activestatus)
sensor_id[num_of_sensors++] = mag_idx;
+ if (OP_EN & activestatus)
+ sensor_id[num_of_sensors++] = op_idx;
+
if (ALS_EN & activestatus)
sensor_id[num_of_sensors++] = als_idx;
diff --git a/drivers/hid/amd-sfh-hid/amd_sfh_pcie.h b/drivers/hid/amd-sfh-hid/amd_sfh_pcie.h
index 05e400a4a83e..2eb61f4e8434 100644
--- a/drivers/hid/amd-sfh-hid/amd_sfh_pcie.h
+++ b/drivers/hid/amd-sfh-hid/amd_sfh_pcie.h
@@ -79,6 +79,7 @@ enum sensor_idx {
accel_idx = 0,
gyro_idx = 1,
mag_idx = 2,
+ op_idx = 15,
als_idx = 19
};
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] HID: amd_sfh: Enable operating mode
2025-05-27 11:10 [PATCH] HID: amd_sfh: Enable operating mode Basavaraj Natikar
@ 2025-06-09 22:21 ` Mario Limonciello
2025-06-13 14:46 ` Mario Limonciello
0 siblings, 1 reply; 8+ messages in thread
From: Mario Limonciello @ 2025-06-09 22:21 UTC (permalink / raw)
To: Basavaraj Natikar, jikos, bentiss, Denis Benato
Cc: linux-input, Akshata MukundShetty
+Denis
On 5/27/2025 4:10 AM, Basavaraj Natikar wrote:
> Add changes to enable operating modes in the driver to allow the FW to
> activate and retrieve data from relevant sensors. This enables the FW to
> take necessary actions based on the operating modes.
>
> Co-developed-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
> Signed-off-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
> Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
Comparing this to the series that was submitted by Denis [1] I notice
that the main tangible difference is that this isn't exported into the
HID descriptor. So how does userspace know the current operating mode
with this patch?
Link:
https://lore.kernel.org/linux-input/20250309194934.1759953-2-benato.denis96@gmail.com/
[1]
> ---
> drivers/hid/amd-sfh-hid/amd_sfh_client.c | 23 +++++++++++++++++++++++
> drivers/hid/amd-sfh-hid/amd_sfh_pcie.c | 4 ++++
> drivers/hid/amd-sfh-hid/amd_sfh_pcie.h | 1 +
> 3 files changed, 28 insertions(+)
>
> diff --git a/drivers/hid/amd-sfh-hid/amd_sfh_client.c b/drivers/hid/amd-sfh-hid/amd_sfh_client.c
> index 3438d392920f..0f2cbae39b2b 100644
> --- a/drivers/hid/amd-sfh-hid/amd_sfh_client.c
> +++ b/drivers/hid/amd-sfh-hid/amd_sfh_client.c
> @@ -146,6 +146,8 @@ static const char *get_sensor_name(int idx)
> return "gyroscope";
> case mag_idx:
> return "magnetometer";
> + case op_idx:
> + return "operating-mode";
> case als_idx:
> case ACS_IDX: /* ambient color sensor */
> return "ALS";
> @@ -243,6 +245,20 @@ int amd_sfh_hid_client_init(struct amd_mp2_dev *privdata)
> rc = -ENOMEM;
> goto cleanup;
> }
> +
> + if (cl_data->sensor_idx[i] == op_idx) {
> + info.period = AMD_SFH_IDLE_LOOP;
> + info.sensor_idx = cl_data->sensor_idx[i];
> + info.dma_address = cl_data->sensor_dma_addr[i];
> + mp2_ops->start(privdata, info);
> + cl_data->sensor_sts[i] = amd_sfh_wait_for_response(privdata,
> + cl_data->sensor_idx[i],
> + SENSOR_ENABLED);
> + if (cl_data->sensor_sts[i] == SENSOR_ENABLED)
> + cl_data->is_any_sensor_enabled = true;
> + continue;
> + }
> +
> cl_data->sensor_sts[i] = SENSOR_DISABLED;
> cl_data->sensor_requested_cnt[i] = 0;
> cl_data->cur_hid_dev = i;
> @@ -303,6 +319,13 @@ int amd_sfh_hid_client_init(struct amd_mp2_dev *privdata)
>
> for (i = 0; i < cl_data->num_hid_devices; i++) {
> cl_data->cur_hid_dev = i;
> + if (cl_data->sensor_idx[i] == op_idx) {
> + dev_dbg(dev, "sid 0x%x (%s) status 0x%x\n",
> + cl_data->sensor_idx[i], get_sensor_name(cl_data->sensor_idx[i]),
> + cl_data->sensor_sts[i]);
> + continue;
> + }
> +
> if (cl_data->sensor_sts[i] == SENSOR_ENABLED) {
> rc = amdtp_hid_probe(i, cl_data);
> if (rc)
> diff --git a/drivers/hid/amd-sfh-hid/amd_sfh_pcie.c b/drivers/hid/amd-sfh-hid/amd_sfh_pcie.c
> index 1c1fd63330c9..2983af969579 100644
> --- a/drivers/hid/amd-sfh-hid/amd_sfh_pcie.c
> +++ b/drivers/hid/amd-sfh-hid/amd_sfh_pcie.c
> @@ -29,6 +29,7 @@
> #define ACEL_EN BIT(0)
> #define GYRO_EN BIT(1)
> #define MAGNO_EN BIT(2)
> +#define OP_EN BIT(15)
> #define HPD_EN BIT(16)
> #define ALS_EN BIT(19)
> #define ACS_EN BIT(22)
> @@ -232,6 +233,9 @@ int amd_mp2_get_sensor_num(struct amd_mp2_dev *privdata, u8 *sensor_id)
> if (MAGNO_EN & activestatus)
> sensor_id[num_of_sensors++] = mag_idx;
>
> + if (OP_EN & activestatus)
> + sensor_id[num_of_sensors++] = op_idx;
> +
> if (ALS_EN & activestatus)
> sensor_id[num_of_sensors++] = als_idx;
>
> diff --git a/drivers/hid/amd-sfh-hid/amd_sfh_pcie.h b/drivers/hid/amd-sfh-hid/amd_sfh_pcie.h
> index 05e400a4a83e..2eb61f4e8434 100644
> --- a/drivers/hid/amd-sfh-hid/amd_sfh_pcie.h
> +++ b/drivers/hid/amd-sfh-hid/amd_sfh_pcie.h
> @@ -79,6 +79,7 @@ enum sensor_idx {
> accel_idx = 0,
> gyro_idx = 1,
> mag_idx = 2,
> + op_idx = 15,
> als_idx = 19
> };
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] HID: amd_sfh: Enable operating mode
2025-06-09 22:21 ` Mario Limonciello
@ 2025-06-13 14:46 ` Mario Limonciello
2025-06-14 6:51 ` Eric Naim
0 siblings, 1 reply; 8+ messages in thread
From: Mario Limonciello @ 2025-06-13 14:46 UTC (permalink / raw)
To: Basavaraj Natikar, jikos, bentiss, Denis Benato
Cc: linux-input, Akshata MukundShetty
On 6/9/2025 3:21 PM, Mario Limonciello wrote:
> +Denis
>
> On 5/27/2025 4:10 AM, Basavaraj Natikar wrote:
>> Add changes to enable operating modes in the driver to allow the FW to
>> activate and retrieve data from relevant sensors. This enables the FW to
>> take necessary actions based on the operating modes.
>>
>> Co-developed-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
>> Signed-off-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
>> Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
>
> Comparing this to the series that was submitted by Denis [1] I notice
> that the main tangible difference is that this isn't exported into the
> HID descriptor. So how does userspace know the current operating mode
> with this patch?
>
> Link: https://lore.kernel.org/linux-input/20250309194934.1759953-2-
> benato.denis96@gmail.com/ [1]
Recently a bug report came in:
https://bugzilla.kernel.org/show_bug.cgi?id=220224
It was very weird because it advertised a tablet mode switch which I
believe comes from the patch that I linked being added to a downstream
kernel. So there appears to be problems with the descriptor from that
patch.
Considering this, I think what you're doing is fine for now; appears
firmware is notified on tablet mode.
If there is a need for userspace to react to sfh then some variation of
a descriptor will be needed at that point.
Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>
>
>> ---
>> drivers/hid/amd-sfh-hid/amd_sfh_client.c | 23 +++++++++++++++++++++++
>> drivers/hid/amd-sfh-hid/amd_sfh_pcie.c | 4 ++++
>> drivers/hid/amd-sfh-hid/amd_sfh_pcie.h | 1 +
>> 3 files changed, 28 insertions(+)
>>
>> diff --git a/drivers/hid/amd-sfh-hid/amd_sfh_client.c b/drivers/hid/
>> amd-sfh-hid/amd_sfh_client.c
>> index 3438d392920f..0f2cbae39b2b 100644
>> --- a/drivers/hid/amd-sfh-hid/amd_sfh_client.c
>> +++ b/drivers/hid/amd-sfh-hid/amd_sfh_client.c
>> @@ -146,6 +146,8 @@ static const char *get_sensor_name(int idx)
>> return "gyroscope";
>> case mag_idx:
>> return "magnetometer";
>> + case op_idx:
>> + return "operating-mode";
>> case als_idx:
>> case ACS_IDX: /* ambient color sensor */
>> return "ALS";
>> @@ -243,6 +245,20 @@ int amd_sfh_hid_client_init(struct amd_mp2_dev
>> *privdata)
>> rc = -ENOMEM;
>> goto cleanup;
>> }
>> +
>> + if (cl_data->sensor_idx[i] == op_idx) {
>> + info.period = AMD_SFH_IDLE_LOOP;
>> + info.sensor_idx = cl_data->sensor_idx[i];
>> + info.dma_address = cl_data->sensor_dma_addr[i];
>> + mp2_ops->start(privdata, info);
>> + cl_data->sensor_sts[i] = amd_sfh_wait_for_response(privdata,
>> + cl_data->sensor_idx[i],
>> + SENSOR_ENABLED);
>> + if (cl_data->sensor_sts[i] == SENSOR_ENABLED)
>> + cl_data->is_any_sensor_enabled = true;
>> + continue;
>> + }
>> +
>> cl_data->sensor_sts[i] = SENSOR_DISABLED;
>> cl_data->sensor_requested_cnt[i] = 0;
>> cl_data->cur_hid_dev = i;
>> @@ -303,6 +319,13 @@ int amd_sfh_hid_client_init(struct amd_mp2_dev
>> *privdata)
>> for (i = 0; i < cl_data->num_hid_devices; i++) {
>> cl_data->cur_hid_dev = i;
>> + if (cl_data->sensor_idx[i] == op_idx) {
>> + dev_dbg(dev, "sid 0x%x (%s) status 0x%x\n",
>> + cl_data->sensor_idx[i], get_sensor_name(cl_data-
>> >sensor_idx[i]),
>> + cl_data->sensor_sts[i]);
>> + continue;
>> + }
>> +
>> if (cl_data->sensor_sts[i] == SENSOR_ENABLED) {
>> rc = amdtp_hid_probe(i, cl_data);
>> if (rc)
>> diff --git a/drivers/hid/amd-sfh-hid/amd_sfh_pcie.c b/drivers/hid/amd-
>> sfh-hid/amd_sfh_pcie.c
>> index 1c1fd63330c9..2983af969579 100644
>> --- a/drivers/hid/amd-sfh-hid/amd_sfh_pcie.c
>> +++ b/drivers/hid/amd-sfh-hid/amd_sfh_pcie.c
>> @@ -29,6 +29,7 @@
>> #define ACEL_EN BIT(0)
>> #define GYRO_EN BIT(1)
>> #define MAGNO_EN BIT(2)
>> +#define OP_EN BIT(15)
>> #define HPD_EN BIT(16)
>> #define ALS_EN BIT(19)
>> #define ACS_EN BIT(22)
>> @@ -232,6 +233,9 @@ int amd_mp2_get_sensor_num(struct amd_mp2_dev
>> *privdata, u8 *sensor_id)
>> if (MAGNO_EN & activestatus)
>> sensor_id[num_of_sensors++] = mag_idx;
>> + if (OP_EN & activestatus)
>> + sensor_id[num_of_sensors++] = op_idx;
>> +
>> if (ALS_EN & activestatus)
>> sensor_id[num_of_sensors++] = als_idx;
>> diff --git a/drivers/hid/amd-sfh-hid/amd_sfh_pcie.h b/drivers/hid/amd-
>> sfh-hid/amd_sfh_pcie.h
>> index 05e400a4a83e..2eb61f4e8434 100644
>> --- a/drivers/hid/amd-sfh-hid/amd_sfh_pcie.h
>> +++ b/drivers/hid/amd-sfh-hid/amd_sfh_pcie.h
>> @@ -79,6 +79,7 @@ enum sensor_idx {
>> accel_idx = 0,
>> gyro_idx = 1,
>> mag_idx = 2,
>> + op_idx = 15,
>> als_idx = 19
>> };
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] HID: amd_sfh: Enable operating mode
2025-06-13 14:46 ` Mario Limonciello
@ 2025-06-14 6:51 ` Eric Naim
2025-06-16 20:46 ` Limonciello, Mario
0 siblings, 1 reply; 8+ messages in thread
From: Eric Naim @ 2025-06-14 6:51 UTC (permalink / raw)
To: Mario Limonciello, Basavaraj Natikar, jikos, bentiss,
Denis Benato
Cc: linux-input, Akshata MukundShetty
[-- Attachment #1: Type: text/plain, Size: 1585 bytes --]
On 6/13/25 21:46, Mario Limonciello wrote:
> On 6/9/2025 3:21 PM, Mario Limonciello wrote:
>> +Denis
>>
>> On 5/27/2025 4:10 AM, Basavaraj Natikar wrote:
>>> Add changes to enable operating modes in the driver to allow the FW to
>>> activate and retrieve data from relevant sensors. This enables the FW to
>>> take necessary actions based on the operating modes.
>>>
>>> Co-developed-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
>>> Signed-off-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
>>> Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
>>
>> Comparing this to the series that was submitted by Denis [1] I notice that the main tangible difference is that this isn't exported into the HID descriptor. So how does userspace know the current operating mode with this patch?
>>
>> Link: https://lore.kernel.org/linux-input/20250309194934.1759953-2- benato.denis96@gmail.com/ [1]
>
> Recently a bug report came in: https://bugzilla.kernel.org/show_bug.cgi?id=220224
>
> It was very weird because it advertised a tablet mode switch which I believe comes from the patch that I linked being added to a downstream kernel. So there appears to be problems with the descriptor from that patch.
>
> Considering this, I think what you're doing is fine for now; appears firmware is notified on tablet mode.
Unfortunately this version of the patch is also causing problems for the user above. Attached is their journal log with the kernel traces. See [1] for the GitHub issue.
--
Regards,
Eric
[1] https://github.com/CachyOS/linux-cachyos/issues/483
[-- Attachment #2: journalctl_k_b-cachyos-6.15.2-4_revertNpatch_NOT_WORKING.txt --]
[-- Type: text/plain, Size: 172576 bytes --]
giu 13 21:38:21 minos-b5eek kernel: Linux version 6.15.2-4-cachyos (linux-cachyos@cachyos) (gcc (GCC) 15.1.1 20250425, GNU ld (GNU Binutils) 2.44.0) #1 SMP PREEMPT_DYNAMIC Fri, 13 Jun 2025 15:53:47 +0000
giu 13 21:38:21 minos-b5eek kernel: Command line: quiet zswap.enabled=0 nowatchdog splash rw root=UUID=16abd694-e9f4-4575-aced-b961ac0d3a2f initrd=\initramfs-linux-cachyos.img
giu 13 21:38:21 minos-b5eek kernel: BIOS-provided physical RAM map:
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000009bfefff] usable
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x0000000009bff000-0x000000000a000fff] reserved
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x000000000a001000-0x000000000a1fffff] usable
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x000000000a200000-0x000000000a20efff] ACPI NVS
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x000000000a20f000-0x00000000e9cdcfff] usable
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000e9cdd000-0x00000000eb1fbfff] reserved
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000eb1fc000-0x00000000eb25ffff] ACPI data
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000eb260000-0x00000000eb554fff] ACPI NVS
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000eb555000-0x00000000ed1fefff] reserved
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000ed1ff000-0x00000000edffffff] usable
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000ee000000-0x00000000f7ffffff] reserved
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000fd000000-0x00000000fdffffff] reserved
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000fedc4000-0x00000000fedc9fff] reserved
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000fedcc000-0x00000000fedcefff] reserved
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000fedd5000-0x00000000fedd5fff] reserved
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x0000000100000000-0x00000007ee2fffff] usable
giu 13 21:38:21 minos-b5eek kernel: BIOS-e820: [mem 0x00000007ee300000-0x000000080fffffff] reserved
giu 13 21:38:21 minos-b5eek kernel: NX (Execute Disable) protection: active
giu 13 21:38:21 minos-b5eek kernel: APIC: Static calls initialized
giu 13 21:38:21 minos-b5eek kernel: efi: EFI v2.7 by American Megatrends
giu 13 21:38:21 minos-b5eek kernel: efi: ACPI=0xeb25f000 ACPI 2.0=0xeb25f014 TPMFinalLog=0xeb50c000 SMBIOS=0xed01f000 SMBIOS 3.0=0xed01e000 MEMATTR=0xe61ed018 ESRT=0xe868a898 INITRD=0xe4937c18 RNG=0xeb20f018 TPMEventLog=0xeb207018
giu 13 21:38:21 minos-b5eek kernel: random: crng init done
giu 13 21:38:21 minos-b5eek kernel: efi: Remove mem74: MMIO range=[0xf0000000-0xf7ffffff] (128MB) from e820 map
giu 13 21:38:21 minos-b5eek kernel: e820: remove [mem 0xf0000000-0xf7ffffff] reserved
giu 13 21:38:21 minos-b5eek kernel: efi: Remove mem75: MMIO range=[0xfd000000-0xfdffffff] (16MB) from e820 map
giu 13 21:38:21 minos-b5eek kernel: e820: remove [mem 0xfd000000-0xfdffffff] reserved
giu 13 21:38:21 minos-b5eek kernel: efi: Remove mem76: MMIO range=[0xfeb80000-0xfec01fff] (0MB) from e820 map
giu 13 21:38:21 minos-b5eek kernel: e820: remove [mem 0xfeb80000-0xfec01fff] reserved
giu 13 21:38:21 minos-b5eek kernel: efi: Not removing mem77: MMIO range=[0xfec10000-0xfec10fff] (4KB) from e820 map
giu 13 21:38:21 minos-b5eek kernel: efi: Not removing mem78: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
giu 13 21:38:21 minos-b5eek kernel: efi: Not removing mem79: MMIO range=[0xfed40000-0xfed44fff] (20KB) from e820 map
giu 13 21:38:21 minos-b5eek kernel: efi: Not removing mem80: MMIO range=[0xfed80000-0xfed8ffff] (64KB) from e820 map
giu 13 21:38:21 minos-b5eek kernel: efi: Not removing mem81: MMIO range=[0xfedc4000-0xfedc9fff] (24KB) from e820 map
giu 13 21:38:21 minos-b5eek kernel: efi: Not removing mem82: MMIO range=[0xfedcc000-0xfedcefff] (12KB) from e820 map
giu 13 21:38:21 minos-b5eek kernel: efi: Not removing mem83: MMIO range=[0xfedd5000-0xfedd5fff] (4KB) from e820 map
giu 13 21:38:21 minos-b5eek kernel: efi: Remove mem84: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
giu 13 21:38:21 minos-b5eek kernel: e820: remove [mem 0xff000000-0xffffffff] reserved
giu 13 21:38:21 minos-b5eek kernel: SMBIOS 3.3.0 present.
giu 13 21:38:21 minos-b5eek kernel: DMI: Micro-Star International Co., Ltd. Alpha 15 B5EEK/MS-158L, BIOS E158LAMS.10B 05/18/2023
giu 13 21:38:21 minos-b5eek kernel: DMI: Memory slots populated: 2/2
giu 13 21:38:21 minos-b5eek kernel: tsc: Fast TSC calibration using PIT
giu 13 21:38:21 minos-b5eek kernel: tsc: Detected 3194.343 MHz processor
giu 13 21:38:21 minos-b5eek kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
giu 13 21:38:21 minos-b5eek kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
giu 13 21:38:21 minos-b5eek kernel: last_pfn = 0x7ee300 max_arch_pfn = 0x400000000
giu 13 21:38:21 minos-b5eek kernel: MTRR map: 5 entries (3 fixed + 2 variable; max 20), built from 9 variable MTRRs
giu 13 21:38:21 minos-b5eek kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
giu 13 21:38:21 minos-b5eek kernel: e820: update [mem 0xf0000000-0xffffffff] usable ==> reserved
giu 13 21:38:21 minos-b5eek kernel: last_pfn = 0xee000 max_arch_pfn = 0x400000000
giu 13 21:38:21 minos-b5eek kernel: esrt: Reserving ESRT space from 0x00000000e868a898 to 0x00000000e868a8d0.
giu 13 21:38:21 minos-b5eek kernel: e820: update [mem 0xe868a000-0xe868afff] usable ==> reserved
giu 13 21:38:21 minos-b5eek kernel: Using GB pages for direct mapping
giu 13 21:38:21 minos-b5eek kernel: Secure boot disabled
giu 13 21:38:21 minos-b5eek kernel: RAMDISK: [mem 0x7d5b6000-0x7fffffff]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Early table checksum verification disabled
giu 13 21:38:21 minos-b5eek kernel: ACPI: RSDP 0x00000000EB25F014 000024 (v02 MSI_NB)
giu 13 21:38:21 minos-b5eek kernel: ACPI: XSDT 0x00000000EB25E728 00011C (v01 MSI_NB MEGABOOK 01072009 AMI 01000013)
giu 13 21:38:21 minos-b5eek kernel: ACPI: FACP 0x00000000EB24E000 000114 (v06 MSI_NB MEGABOOK 01072009 AMI 00010013)
giu 13 21:38:21 minos-b5eek kernel: ACPI: DSDT 0x00000000EB241000 00C50C (v02 MSI_NB MEGABOOK 01072009 INTL 20190509)
giu 13 21:38:21 minos-b5eek kernel: ACPI: FACS 0x00000000EB50A000 000040
giu 13 21:38:21 minos-b5eek kernel: ACPI: MSDM 0x00000000EB25D000 000055 (v03 MSI_NB MEGABOOK 01072009 AMI 01000013)
giu 13 21:38:21 minos-b5eek kernel: ACPI: SLIC 0x00000000EB25C000 000176 (v01 MSI_NB MEGABOOK 01072009 AMI 01000013)
giu 13 21:38:21 minos-b5eek kernel: ACPI: SSDT 0x00000000EB254000 0072B0 (v02 AMD AmdTable 00000002 MSFT 04000000)
giu 13 21:38:21 minos-b5eek kernel: ACPI: IVRS 0x00000000EB253000 0001A4 (v02 AMD AmdTable 00000001 AMD 00000000)
giu 13 21:38:21 minos-b5eek kernel: ACPI: SSDT 0x00000000EB24F000 003A21 (v01 AMD AMD AOD 00000001 INTL 20190509)
giu 13 21:38:21 minos-b5eek kernel: ACPI: FIDT 0x00000000EB240000 00009C (v01 MSI_NB MEGABOOK 01072009 AMI 00010013)
giu 13 21:38:21 minos-b5eek kernel: ACPI: ECDT 0x00000000EB23F000 0000C1 (v01 MSI_NB MEGABOOK 01072009 AMI. 00010013)
giu 13 21:38:21 minos-b5eek kernel: ACPI: MCFG 0x00000000EB23E000 00003C (v01 MSI_NB MEGABOOK 01072009 MSFT 00010013)
giu 13 21:38:21 minos-b5eek kernel: ACPI: HPET 0x00000000EB23D000 000038 (v01 MSI_NB MEGABOOK 01072009 AMI 00000005)
giu 13 21:38:21 minos-b5eek kernel: ACPI: VFCT 0x00000000EB22F000 00D884 (v01 MSI_NB MEGABOOK 00000001 AMD 31504F47)
giu 13 21:38:21 minos-b5eek kernel: ACPI: BGRT 0x00000000EB22E000 000038 (v01 MSI_NB MEGABOOK 01072009 AMI 00010013)
giu 13 21:38:21 minos-b5eek kernel: ACPI: TPM2 0x00000000EB22D000 00004C (v04 MSI_NB MEGABOOK 00000001 AMI 00000000)
giu 13 21:38:21 minos-b5eek kernel: ACPI: SSDT 0x00000000EB227000 005354 (v02 AMD AmdTable 00000001 AMD 00000001)
giu 13 21:38:21 minos-b5eek kernel: ACPI: CRAT 0x00000000EB226000 000EE8 (v01 AMD AmdTable 00000001 AMD 00000001)
giu 13 21:38:21 minos-b5eek kernel: ACPI: CDIT 0x00000000EB225000 000029 (v01 AMD AmdTable 00000001 AMD 00000001)
giu 13 21:38:21 minos-b5eek kernel: ACPI: SSDT 0x00000000EB224000 000149 (v01 AMD AmdTable 00000001 INTL 20190509)
giu 13 21:38:21 minos-b5eek kernel: ACPI: SSDT 0x00000000EB222000 00148E (v01 AMD AmdTable 00000001 INTL 20190509)
giu 13 21:38:21 minos-b5eek kernel: ACPI: SSDT 0x00000000EB220000 00153F (v01 AMD AmdTable 00000001 INTL 20190509)
giu 13 21:38:21 minos-b5eek kernel: ACPI: SSDT 0x00000000EB21F000 000696 (v01 AMD AmdTable 00000001 INTL 20190509)
giu 13 21:38:21 minos-b5eek kernel: ACPI: SSDT 0x00000000EB21D000 001A56 (v01 AMD AmdTable 00000001 INTL 20190509)
giu 13 21:38:21 minos-b5eek kernel: ACPI: SSDT 0x00000000EB21C000 0005DE (v01 AMD AmdTable 00000001 INTL 20190509)
giu 13 21:38:21 minos-b5eek kernel: ACPI: SSDT 0x00000000EB218000 0036E9 (v01 AMD AmdTable 00000001 INTL 20190509)
giu 13 21:38:21 minos-b5eek kernel: ACPI: WSMT 0x00000000EB217000 000028 (v01 MSI_NB MEGABOOK 01072009 AMI 00010013)
giu 13 21:38:21 minos-b5eek kernel: ACPI: APIC 0x00000000EB216000 0000DE (v03 MSI_NB MEGABOOK 01072009 AMI 00010013)
giu 13 21:38:21 minos-b5eek kernel: ACPI: SSDT 0x00000000EB215000 00008D (v01 AMD AmdTable 00000001 INTL 20190509)
giu 13 21:38:21 minos-b5eek kernel: ACPI: SSDT 0x00000000EB214000 0008A8 (v01 AMD AmdTable 00000001 INTL 20190509)
giu 13 21:38:21 minos-b5eek kernel: ACPI: SSDT 0x00000000EB213000 0001B7 (v01 AMD AmdTable 00000001 INTL 20190509)
giu 13 21:38:21 minos-b5eek kernel: ACPI: SSDT 0x00000000EB212000 0007B1 (v01 AMD AmdTable 00000001 INTL 20190509)
giu 13 21:38:21 minos-b5eek kernel: ACPI: SSDT 0x00000000EB211000 00097D (v01 AMD AmdTable 00000001 INTL 20190509)
giu 13 21:38:21 minos-b5eek kernel: ACPI: FPDT 0x00000000EB210000 000044 (v01 MSI_NB MEGABOOK 01072009 AMI 01000013)
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving FACP table memory at [mem 0xeb24e000-0xeb24e113]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving DSDT table memory at [mem 0xeb241000-0xeb24d50b]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving FACS table memory at [mem 0xeb50a000-0xeb50a03f]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving MSDM table memory at [mem 0xeb25d000-0xeb25d054]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving SLIC table memory at [mem 0xeb25c000-0xeb25c175]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving SSDT table memory at [mem 0xeb254000-0xeb25b2af]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving IVRS table memory at [mem 0xeb253000-0xeb2531a3]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving SSDT table memory at [mem 0xeb24f000-0xeb252a20]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving FIDT table memory at [mem 0xeb240000-0xeb24009b]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving ECDT table memory at [mem 0xeb23f000-0xeb23f0c0]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving MCFG table memory at [mem 0xeb23e000-0xeb23e03b]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving HPET table memory at [mem 0xeb23d000-0xeb23d037]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving VFCT table memory at [mem 0xeb22f000-0xeb23c883]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving BGRT table memory at [mem 0xeb22e000-0xeb22e037]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving TPM2 table memory at [mem 0xeb22d000-0xeb22d04b]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving SSDT table memory at [mem 0xeb227000-0xeb22c353]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving CRAT table memory at [mem 0xeb226000-0xeb226ee7]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving CDIT table memory at [mem 0xeb225000-0xeb225028]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving SSDT table memory at [mem 0xeb224000-0xeb224148]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving SSDT table memory at [mem 0xeb222000-0xeb22348d]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving SSDT table memory at [mem 0xeb220000-0xeb22153e]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving SSDT table memory at [mem 0xeb21f000-0xeb21f695]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving SSDT table memory at [mem 0xeb21d000-0xeb21ea55]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving SSDT table memory at [mem 0xeb21c000-0xeb21c5dd]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving SSDT table memory at [mem 0xeb218000-0xeb21b6e8]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving WSMT table memory at [mem 0xeb217000-0xeb217027]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving APIC table memory at [mem 0xeb216000-0xeb2160dd]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving SSDT table memory at [mem 0xeb215000-0xeb21508c]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving SSDT table memory at [mem 0xeb214000-0xeb2148a7]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving SSDT table memory at [mem 0xeb213000-0xeb2131b6]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving SSDT table memory at [mem 0xeb212000-0xeb2127b0]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving SSDT table memory at [mem 0xeb211000-0xeb21197c]
giu 13 21:38:21 minos-b5eek kernel: ACPI: Reserving FPDT table memory at [mem 0xeb210000-0xeb210043]
giu 13 21:38:21 minos-b5eek kernel: No NUMA configuration found
giu 13 21:38:21 minos-b5eek kernel: Faking a node at [mem 0x0000000000000000-0x00000007ee2fffff]
giu 13 21:38:21 minos-b5eek kernel: NODE_DATA(0) allocated [mem 0x7ee2d5280-0x7ee2fffff]
giu 13 21:38:21 minos-b5eek kernel: Zone ranges:
giu 13 21:38:21 minos-b5eek kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
giu 13 21:38:21 minos-b5eek kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
giu 13 21:38:21 minos-b5eek kernel: Normal [mem 0x0000000100000000-0x00000007ee2fffff]
giu 13 21:38:21 minos-b5eek kernel: Device empty
giu 13 21:38:21 minos-b5eek kernel: Movable zone start for each node
giu 13 21:38:21 minos-b5eek kernel: Early memory node ranges
giu 13 21:38:21 minos-b5eek kernel: node 0: [mem 0x0000000000001000-0x000000000009ffff]
giu 13 21:38:21 minos-b5eek kernel: node 0: [mem 0x0000000000100000-0x0000000009bfefff]
giu 13 21:38:21 minos-b5eek kernel: node 0: [mem 0x000000000a001000-0x000000000a1fffff]
giu 13 21:38:21 minos-b5eek kernel: node 0: [mem 0x000000000a20f000-0x00000000e9cdcfff]
giu 13 21:38:21 minos-b5eek kernel: node 0: [mem 0x00000000ed1ff000-0x00000000edffffff]
giu 13 21:38:21 minos-b5eek kernel: node 0: [mem 0x0000000100000000-0x00000007ee2fffff]
giu 13 21:38:21 minos-b5eek kernel: Initmem setup node 0 [mem 0x0000000000001000-0x00000007ee2fffff]
giu 13 21:38:21 minos-b5eek kernel: On node 0, zone DMA: 1 pages in unavailable ranges
giu 13 21:38:21 minos-b5eek kernel: On node 0, zone DMA: 96 pages in unavailable ranges
giu 13 21:38:21 minos-b5eek kernel: On node 0, zone DMA32: 1026 pages in unavailable ranges
giu 13 21:38:21 minos-b5eek kernel: On node 0, zone DMA32: 15 pages in unavailable ranges
giu 13 21:38:21 minos-b5eek kernel: On node 0, zone DMA32: 13602 pages in unavailable ranges
giu 13 21:38:21 minos-b5eek kernel: On node 0, zone Normal: 8192 pages in unavailable ranges
giu 13 21:38:21 minos-b5eek kernel: On node 0, zone Normal: 7424 pages in unavailable ranges
giu 13 21:38:21 minos-b5eek kernel: ACPI: PM-Timer IO Port: 0x808
giu 13 21:38:21 minos-b5eek kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
giu 13 21:38:21 minos-b5eek kernel: IOAPIC[0]: apic_id 33, version 33, address 0xfec00000, GSI 0-23
giu 13 21:38:21 minos-b5eek kernel: IOAPIC[1]: apic_id 34, version 33, address 0xfec01000, GSI 24-55
giu 13 21:38:21 minos-b5eek kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
giu 13 21:38:21 minos-b5eek kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
giu 13 21:38:21 minos-b5eek kernel: ACPI: Using ACPI (MADT) for SMP configuration information
giu 13 21:38:21 minos-b5eek kernel: ACPI: HPET id: 0x10228201 base: 0xfed00000
giu 13 21:38:21 minos-b5eek kernel: e820: update [mem 0xe6056000-0xe6149fff] usable ==> reserved
giu 13 21:38:21 minos-b5eek kernel: CPU topo: Max. logical packages: 1
giu 13 21:38:21 minos-b5eek kernel: CPU topo: Max. logical dies: 1
giu 13 21:38:21 minos-b5eek kernel: CPU topo: Max. dies per package: 1
giu 13 21:38:21 minos-b5eek kernel: CPU topo: Max. threads per core: 2
giu 13 21:38:21 minos-b5eek kernel: CPU topo: Num. cores per package: 8
giu 13 21:38:21 minos-b5eek kernel: CPU topo: Num. threads per package: 16
giu 13 21:38:21 minos-b5eek kernel: CPU topo: Allowing 16 present CPUs plus 0 hotplug CPUs
giu 13 21:38:21 minos-b5eek kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
giu 13 21:38:21 minos-b5eek kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
giu 13 21:38:21 minos-b5eek kernel: PM: hibernation: Registered nosave memory: [mem 0x09bff000-0x0a000fff]
giu 13 21:38:21 minos-b5eek kernel: PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20efff]
giu 13 21:38:21 minos-b5eek kernel: PM: hibernation: Registered nosave memory: [mem 0xe6056000-0xe6149fff]
giu 13 21:38:21 minos-b5eek kernel: PM: hibernation: Registered nosave memory: [mem 0xe868a000-0xe868afff]
giu 13 21:38:21 minos-b5eek kernel: PM: hibernation: Registered nosave memory: [mem 0xe9cdd000-0xed1fefff]
giu 13 21:38:21 minos-b5eek kernel: PM: hibernation: Registered nosave memory: [mem 0xee000000-0xffffffff]
giu 13 21:38:21 minos-b5eek kernel: [mem 0xf0000000-0xfec0ffff] available for PCI devices
giu 13 21:38:21 minos-b5eek kernel: Booting paravirtualized kernel on bare hardware
giu 13 21:38:21 minos-b5eek kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
giu 13 21:38:21 minos-b5eek kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
giu 13 21:38:21 minos-b5eek kernel: percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
giu 13 21:38:21 minos-b5eek kernel: pcpu-alloc: s217088 r8192 d28672 u262144 alloc=1*2097152
giu 13 21:38:21 minos-b5eek kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
giu 13 21:38:21 minos-b5eek kernel: Kernel command line: quiet zswap.enabled=0 nowatchdog splash rw root=UUID=16abd694-e9f4-4575-aced-b961ac0d3a2f initrd=\initramfs-linux-cachyos.img
giu 13 21:38:21 minos-b5eek kernel: Unknown kernel command line parameters "splash", will be passed to user space.
giu 13 21:38:21 minos-b5eek kernel: printk: log buffer data + meta data: 131072 + 458752 = 589824 bytes
giu 13 21:38:21 minos-b5eek kernel: Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
giu 13 21:38:21 minos-b5eek kernel: Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
giu 13 21:38:21 minos-b5eek kernel: software IO TLB: area num 16.
giu 13 21:38:21 minos-b5eek kernel: Fallback order for Node 0: 0
giu 13 21:38:21 minos-b5eek kernel: Built 1 zonelists, mobility grouping on. Total pages: 8227180
giu 13 21:38:21 minos-b5eek kernel: Policy zone: Normal
giu 13 21:38:21 minos-b5eek kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
giu 13 21:38:21 minos-b5eek kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
giu 13 21:38:21 minos-b5eek kernel: ftrace: allocating 53361 entries in 212 pages
giu 13 21:38:21 minos-b5eek kernel: ftrace: allocated 212 pages with 4 groups
giu 13 21:38:21 minos-b5eek kernel: BORE (Burst-Oriented Response Enhancer) CPU Scheduler modification 5.9.6 by Masahito Suzuki
giu 13 21:38:21 minos-b5eek kernel: Dynamic Preempt: full
giu 13 21:38:21 minos-b5eek kernel: rcu: Preemptible hierarchical RCU implementation.
giu 13 21:38:21 minos-b5eek kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
giu 13 21:38:21 minos-b5eek kernel: rcu: RCU priority boosting: priority 1 delay 500 ms.
giu 13 21:38:21 minos-b5eek kernel: Trampoline variant of Tasks RCU enabled.
giu 13 21:38:21 minos-b5eek kernel: Rude variant of Tasks RCU enabled.
giu 13 21:38:21 minos-b5eek kernel: Tracing variant of Tasks RCU enabled.
giu 13 21:38:21 minos-b5eek kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
giu 13 21:38:21 minos-b5eek kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
giu 13 21:38:21 minos-b5eek kernel: RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
giu 13 21:38:21 minos-b5eek kernel: RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
giu 13 21:38:21 minos-b5eek kernel: RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
giu 13 21:38:21 minos-b5eek kernel: NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
giu 13 21:38:21 minos-b5eek kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
giu 13 21:38:21 minos-b5eek kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
giu 13 21:38:21 minos-b5eek kernel: Console: colour dummy device 80x25
giu 13 21:38:21 minos-b5eek kernel: printk: legacy console [tty0] enabled
giu 13 21:38:21 minos-b5eek kernel: ACPI: Core revision 20240827
giu 13 21:38:21 minos-b5eek kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
giu 13 21:38:21 minos-b5eek kernel: APIC: Switch to symmetric I/O mode setup
giu 13 21:38:21 minos-b5eek kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR0, rdevid:0xa0
giu 13 21:38:21 minos-b5eek kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR1, rdevid:0xa0
giu 13 21:38:21 minos-b5eek kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR2, rdevid:0xa0
giu 13 21:38:21 minos-b5eek kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR3, rdevid:0xa0
giu 13 21:38:21 minos-b5eek kernel: AMD-Vi: Using global IVHD EFR:0x206d73ef22254ade, EFR2:0x0
giu 13 21:38:21 minos-b5eek kernel: x2apic enabled
giu 13 21:38:21 minos-b5eek kernel: APIC: Switched APIC routing to: cluster x2apic
giu 13 21:38:21 minos-b5eek kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
giu 13 21:38:21 minos-b5eek kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2e0b69d4813, max_idle_ns: 440795227612 ns
giu 13 21:38:21 minos-b5eek kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6388.68 BogoMIPS (lpj=3194343)
giu 13 21:38:21 minos-b5eek kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
giu 13 21:38:21 minos-b5eek kernel: LVT offset 1 assigned for vector 0xf9
giu 13 21:38:21 minos-b5eek kernel: LVT offset 2 assigned for vector 0xf4
giu 13 21:38:21 minos-b5eek kernel: Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
giu 13 21:38:21 minos-b5eek kernel: Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
giu 13 21:38:21 minos-b5eek kernel: process: using mwait in idle threads
giu 13 21:38:21 minos-b5eek kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
giu 13 21:38:21 minos-b5eek kernel: Spectre V2 : Mitigation: Retpolines
giu 13 21:38:21 minos-b5eek kernel: Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
giu 13 21:38:21 minos-b5eek kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls
giu 13 21:38:21 minos-b5eek kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
giu 13 21:38:21 minos-b5eek kernel: Spectre V2 : User space: Mitigation: STIBP always-on protection
giu 13 21:38:21 minos-b5eek kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
giu 13 21:38:21 minos-b5eek kernel: Speculative Return Stack Overflow: Mitigation: Safe RET
giu 13 21:38:21 minos-b5eek kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
giu 13 21:38:21 minos-b5eek kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
giu 13 21:38:21 minos-b5eek kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
giu 13 21:38:21 minos-b5eek kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
giu 13 21:38:21 minos-b5eek kernel: x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
giu 13 21:38:21 minos-b5eek kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
giu 13 21:38:21 minos-b5eek kernel: x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
giu 13 21:38:21 minos-b5eek kernel: x86/fpu: xstate_offset[11]: 840, xstate_sizes[11]: 16
giu 13 21:38:21 minos-b5eek kernel: x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
giu 13 21:38:21 minos-b5eek kernel: Freeing SMP alternatives memory: 64K
giu 13 21:38:21 minos-b5eek kernel: pid_max: default: 32768 minimum: 301
giu 13 21:38:21 minos-b5eek kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
giu 13 21:38:21 minos-b5eek kernel: landlock: Up and running.
giu 13 21:38:21 minos-b5eek kernel: Yama: becoming mindful.
giu 13 21:38:21 minos-b5eek kernel: LSM support for eBPF active
giu 13 21:38:21 minos-b5eek kernel: Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
giu 13 21:38:21 minos-b5eek kernel: Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
giu 13 21:38:21 minos-b5eek kernel: smpboot: CPU0: AMD Ryzen 7 5800H with Radeon Graphics (family: 0x19, model: 0x50, stepping: 0x0)
giu 13 21:38:21 minos-b5eek kernel: Performance Events: Fam17h+ core perfctr, AMD PMU driver.
giu 13 21:38:21 minos-b5eek kernel: ... version: 0
giu 13 21:38:21 minos-b5eek kernel: ... bit width: 48
giu 13 21:38:21 minos-b5eek kernel: ... generic registers: 6
giu 13 21:38:21 minos-b5eek kernel: ... value mask: 0000ffffffffffff
giu 13 21:38:21 minos-b5eek kernel: ... max period: 00007fffffffffff
giu 13 21:38:21 minos-b5eek kernel: ... fixed-purpose events: 0
giu 13 21:38:21 minos-b5eek kernel: ... event mask: 000000000000003f
giu 13 21:38:21 minos-b5eek kernel: signal: max sigframe size: 3376
giu 13 21:38:21 minos-b5eek kernel: rcu: Hierarchical SRCU implementation.
giu 13 21:38:21 minos-b5eek kernel: rcu: Max phase no-delay instances is 400.
giu 13 21:38:21 minos-b5eek kernel: Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
giu 13 21:38:21 minos-b5eek kernel: MCE: In-kernel MCE decoding enabled.
giu 13 21:38:21 minos-b5eek kernel: smp: Bringing up secondary CPUs ...
giu 13 21:38:21 minos-b5eek kernel: smpboot: x86: Booting SMP configuration:
giu 13 21:38:21 minos-b5eek kernel: .... node #0, CPUs: #2 #4 #6 #8 #10 #12 #14 #1 #3 #5 #7 #9 #11 #13 #15
giu 13 21:38:21 minos-b5eek kernel: Spectre V2 : Update user space SMT mitigation: STIBP always-on
giu 13 21:38:21 minos-b5eek kernel: smp: Brought up 1 node, 16 CPUs
giu 13 21:38:21 minos-b5eek kernel: smpboot: Total of 16 processors activated (102218.97 BogoMIPS)
giu 13 21:38:21 minos-b5eek kernel: Memory: 32148296K/32908720K available (22425K kernel code, 2942K rwdata, 16316K rodata, 4788K init, 4688K bss, 740552K reserved, 0K cma-reserved)
giu 13 21:38:21 minos-b5eek kernel: le9 Unofficial (le9uo) working set protection 1.15a by Masahito Suzuki (forked from hakavlad's original le9 patch)
giu 13 21:38:21 minos-b5eek kernel: devtmpfs: initialized
giu 13 21:38:21 minos-b5eek kernel: x86/mm: Memory block size: 128MB
giu 13 21:38:21 minos-b5eek kernel: ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20efff] (61440 bytes)
giu 13 21:38:21 minos-b5eek kernel: ACPI: PM: Registering ACPI NVS region [mem 0xeb260000-0xeb554fff] (3100672 bytes)
giu 13 21:38:21 minos-b5eek kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
giu 13 21:38:21 minos-b5eek kernel: posixtimers hash table entries: 8192 (order: 5, 131072 bytes, linear)
giu 13 21:38:21 minos-b5eek kernel: futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
giu 13 21:38:21 minos-b5eek kernel: pinctrl core: initialized pinctrl subsystem
giu 13 21:38:21 minos-b5eek kernel: PM: RTC time: 19:38:09, date: 2025-06-13
giu 13 21:38:21 minos-b5eek kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
giu 13 21:38:21 minos-b5eek kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
giu 13 21:38:21 minos-b5eek kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
giu 13 21:38:21 minos-b5eek kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
giu 13 21:38:21 minos-b5eek kernel: audit: initializing netlink subsys (disabled)
giu 13 21:38:21 minos-b5eek kernel: audit: type=2000 audit(1749843489.168:1): state=initialized audit_enabled=0 res=1
giu 13 21:38:21 minos-b5eek kernel: thermal_sys: Registered thermal governor 'fair_share'
giu 13 21:38:21 minos-b5eek kernel: thermal_sys: Registered thermal governor 'bang_bang'
giu 13 21:38:21 minos-b5eek kernel: thermal_sys: Registered thermal governor 'step_wise'
giu 13 21:38:21 minos-b5eek kernel: thermal_sys: Registered thermal governor 'user_space'
giu 13 21:38:21 minos-b5eek kernel: thermal_sys: Registered thermal governor 'power_allocator'
giu 13 21:38:21 minos-b5eek kernel: cpuidle: using governor ladder
giu 13 21:38:21 minos-b5eek kernel: cpuidle: using governor menu
giu 13 21:38:21 minos-b5eek kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
giu 13 21:38:21 minos-b5eek kernel: PCI: ECAM [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) for domain 0000 [bus 00-7f]
giu 13 21:38:21 minos-b5eek kernel: PCI: Using configuration type 1 for base access
giu 13 21:38:21 minos-b5eek kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
giu 13 21:38:21 minos-b5eek kernel: HugeTLB: allocation took 0ms with hugepage_allocation_threads=4
giu 13 21:38:21 minos-b5eek kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
giu 13 21:38:21 minos-b5eek kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
giu 13 21:38:21 minos-b5eek kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
giu 13 21:38:21 minos-b5eek kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
giu 13 21:38:21 minos-b5eek kernel: raid6: skipped pq benchmark and selected avx2x4
giu 13 21:38:21 minos-b5eek kernel: raid6: using avx2x2 recovery algorithm
giu 13 21:38:21 minos-b5eek kernel: ACPI: Added _OSI(Module Device)
giu 13 21:38:21 minos-b5eek kernel: ACPI: Added _OSI(Processor Device)
giu 13 21:38:21 minos-b5eek kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
giu 13 21:38:21 minos-b5eek kernel: ACPI: Added _OSI(Processor Aggregator Device)
giu 13 21:38:21 minos-b5eek kernel: ACPI: 16 ACPI AML tables successfully acquired and loaded
giu 13 21:38:21 minos-b5eek kernel: ACPI: EC: EC started
giu 13 21:38:21 minos-b5eek kernel: ACPI: EC: interrupt blocked
giu 13 21:38:21 minos-b5eek kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
giu 13 21:38:21 minos-b5eek kernel: ACPI: EC: Boot ECDT EC used to handle transactions
giu 13 21:38:21 minos-b5eek kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
giu 13 21:38:21 minos-b5eek kernel: ACPI: Interpreter enabled
giu 13 21:38:21 minos-b5eek kernel: ACPI: PM: (supports S0 S4 S5)
giu 13 21:38:21 minos-b5eek kernel: ACPI: Using IOAPIC for interrupt routing
giu 13 21:38:21 minos-b5eek kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
giu 13 21:38:21 minos-b5eek kernel: PCI: Ignoring E820 reservations for host bridge windows
giu 13 21:38:21 minos-b5eek kernel: ACPI: Enabled 1 GPEs in block 00 to 1F
giu 13 21:38:21 minos-b5eek kernel: ACPI: \_SB_.PCI0.GPP0.M237: New power resource
giu 13 21:38:21 minos-b5eek kernel: ACPI: \_SB_.PCI0.GPP0.SWUS.M237: New power resource
giu 13 21:38:21 minos-b5eek kernel: ACPI: \_SB_.PCI0.GPP0.SWUS.SWDS.M237: New power resource
giu 13 21:38:21 minos-b5eek kernel: ACPI: \_SB_.PCI0.GP17.XHC0.P0U0: New power resource
giu 13 21:38:21 minos-b5eek kernel: ACPI: \_SB_.PCI0.GP17.XHC0.P3U0: New power resource
giu 13 21:38:21 minos-b5eek kernel: ACPI: \_SB_.PCI0.GP17.XHC1.P0U1: New power resource
giu 13 21:38:21 minos-b5eek kernel: ACPI: \_SB_.PCI0.GP17.XHC1.P3U1: New power resource
giu 13 21:38:21 minos-b5eek kernel: ACPI: \_SB_.PCI0.GPP6.P0NV: New power resource
giu 13 21:38:21 minos-b5eek kernel: ACPI: \_SB_.PCI0.GPP5.P0NX: New power resource
giu 13 21:38:21 minos-b5eek kernel: ACPI: \_SB_.PRWB: New power resource
giu 13 21:38:21 minos-b5eek kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
giu 13 21:38:21 minos-b5eek kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
giu 13 21:38:21 minos-b5eek kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC]
giu 13 21:38:21 minos-b5eek kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
giu 13 21:38:21 minos-b5eek kernel: acpi PNP0A08:00: [Firmware Info]: ECAM [mem 0xf0000000-0xf7ffffff] for domain 0000 [bus 00-7f] only partially covers this bridge
giu 13 21:38:21 minos-b5eek kernel: PCI host bridge to bus 0000:00
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfcffffff window]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:00: root bus resource [mem 0x810000000-0xffffffffff window]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:00.0: [1022:1630] type 00 class 0x060000 conventional PCI endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:00.2: [1022:1631] type 00 class 0x080600 conventional PCI endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:01.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:01.1: [1022:1633] type 01 class 0x060400 PCIe Root Port
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:01.1: PCI bridge to [bus 01-03]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:01.1: bridge window [mem 0xfca00000-0xfccfffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:01.1: bridge window [mem 0xfc00000000-0xfe0fffffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.1: [1022:1634] type 01 class 0x060400 PCIe Root Port
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.1: PCI bridge to [bus 04]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.1: bridge window [mem 0xfe30300000-0xfe304fffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.2: [1022:1634] type 01 class 0x060400 PCIe Root Port
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.2: PCI bridge to [bus 05]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.2: bridge window [io 0xf000-0xffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.2: bridge window [mem 0xfcf00000-0xfcffffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.2: enabling Extended Tags
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.3: [1022:1634] type 01 class 0x060400 PCIe Root Port
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.3: PCI bridge to [bus 06]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.3: bridge window [mem 0xfce00000-0xfcefffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.3: enabling Extended Tags
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.3: PME# supported from D0 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.4: [1022:1634] type 01 class 0x060400 PCIe Root Port
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.4: PCI bridge to [bus 07]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.4: bridge window [mem 0xfcd00000-0xfcdfffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.4: PME# supported from D0 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:08.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:08.1: [1022:1635] type 01 class 0x060400 PCIe Root Port
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:08.1: PCI bridge to [bus 08]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:08.1: bridge window [io 0xe000-0xefff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:08.1: bridge window [mem 0xfc500000-0xfc9fffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:08.1: bridge window [mem 0xfe20000000-0xfe301fffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:08.1: enabling Extended Tags
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:18.0: [1022:166a] type 00 class 0x060000 conventional PCI endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:18.1: [1022:166b] type 00 class 0x060000 conventional PCI endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:18.2: [1022:166c] type 00 class 0x060000 conventional PCI endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:18.3: [1022:166d] type 00 class 0x060000 conventional PCI endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:18.4: [1022:166e] type 00 class 0x060000 conventional PCI endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:18.5: [1022:166f] type 00 class 0x060000 conventional PCI endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:18.6: [1022:1670] type 00 class 0x060000 conventional PCI endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:18.7: [1022:1671] type 00 class 0x060000 conventional PCI endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:01:00.0: [1002:1478] type 01 class 0x060400 PCIe Switch Upstream Port
giu 13 21:38:21 minos-b5eek kernel: pci 0000:01:00.0: BAR 0 [mem 0xfcc00000-0xfcc03fff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:01:00.0: PCI bridge to [bus 02-03]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:01:00.0: bridge window [mem 0xfca00000-0xfcbfffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:01:00.0: bridge window [mem 0xfc00000000-0xfe0fffffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.1 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link)
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:01.1: PCI bridge to [bus 01-03]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:02:00.0: [1002:1479] type 01 class 0x060400 PCIe Switch Downstream Port
giu 13 21:38:21 minos-b5eek kernel: pci 0000:02:00.0: PCI bridge to [bus 03]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:02:00.0: bridge window [mem 0xfca00000-0xfcbfffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:02:00.0: bridge window [mem 0xfc00000000-0xfe0fffffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:01:00.0: PCI bridge to [bus 02-03]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:03:00.0: [1002:73ff] type 00 class 0x038000 PCIe Legacy Endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:03:00.0: BAR 0 [mem 0xfc00000000-0xfdffffffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:03:00.0: BAR 2 [mem 0xfe00000000-0xfe0fffffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:03:00.0: BAR 5 [mem 0xfca00000-0xfcafffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:03:00.0: ROM [mem 0xfcb00000-0xfcb1ffff pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:03:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
giu 13 21:38:21 minos-b5eek kernel: pci 0000:03:00.1: [1002:ab28] type 00 class 0x040300 PCIe Legacy Endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:03:00.1: BAR 0 [mem 0xfcb20000-0xfcb23fff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:03:00.1: PME# supported from D1 D2 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:02:00.0: PCI bridge to [bus 03]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:04:00.0: [14c3:0608] type 00 class 0x028000 PCIe Endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:04:00.0: BAR 0 [mem 0xfe30300000-0xfe303fffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:04:00.0: BAR 2 [mem 0xfe30400000-0xfe30403fff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:04:00.0: BAR 4 [mem 0xfe30404000-0xfe30404fff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:04:00.0: supports D1 D2
giu 13 21:38:21 minos-b5eek kernel: pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.1: PCI bridge to [bus 04]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:05:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:05:00.0: BAR 0 [io 0xf000-0xf0ff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:05:00.0: BAR 2 [mem 0xfcf04000-0xfcf04fff 64bit]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:05:00.0: BAR 4 [mem 0xfcf00000-0xfcf03fff 64bit]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:05:00.0: supports D1 D2
giu 13 21:38:21 minos-b5eek kernel: pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.2: PCI bridge to [bus 05]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:06:00.0: [144d:a809] type 00 class 0x010802 PCIe Endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:06:00.0: BAR 0 [mem 0xfce00000-0xfce03fff 64bit]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.3: PCI bridge to [bus 06]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:07:00.0: [2646:500c] type 00 class 0x010802 PCIe Endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:07:00.0: BAR 0 [mem 0xfcd00000-0xfcd03fff 64bit]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.4: PCI bridge to [bus 07]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.0: [1002:1638] type 00 class 0x030000 PCIe Legacy Endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.0: BAR 0 [mem 0xfe20000000-0xfe2fffffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.0: BAR 2 [mem 0xfe30000000-0xfe301fffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.0: BAR 4 [io 0xe000-0xe0ff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.0: BAR 5 [mem 0xfc900000-0xfc97ffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.0: enabling Extended Tags
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.0: PME# supported from D1 D2 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.1: [1002:1637] type 00 class 0x040300 PCIe Legacy Endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.1: BAR 0 [mem 0xfc9c8000-0xfc9cbfff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.1: enabling Extended Tags
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.1: PME# supported from D1 D2 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.2: [1022:15df] type 00 class 0x108000 PCIe Endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.2: BAR 2 [mem 0xfc800000-0xfc8fffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.2: BAR 5 [mem 0xfc9ce000-0xfc9cffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.2: enabling Extended Tags
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.3: [1022:1639] type 00 class 0x0c0330 PCIe Endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.3: BAR 0 [mem 0xfc700000-0xfc7fffff 64bit]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.3: enabling Extended Tags
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.3: PME# supported from D0 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.4: [1022:1639] type 00 class 0x0c0330 PCIe Endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.4: BAR 0 [mem 0xfc600000-0xfc6fffff 64bit]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.4: enabling Extended Tags
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.4: PME# supported from D0 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.5: [1022:15e2] type 00 class 0x048000 PCIe Endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.5: BAR 0 [mem 0xfc980000-0xfc9bffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.5: enabling Extended Tags
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.5: PME# supported from D0 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.6: [1022:15e3] type 00 class 0x040300 PCIe Endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.6: BAR 0 [mem 0xfc9c0000-0xfc9c7fff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.6: enabling Extended Tags
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.6: PME# supported from D0 D3hot D3cold
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.7: [1022:15e4] type 00 class 0x118000 PCIe Endpoint
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.7: BAR 2 [mem 0xfc500000-0xfc5fffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.7: BAR 5 [mem 0xfc9cc000-0xfc9cdfff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.7: enabling Extended Tags
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:08.1: PCI bridge to [bus 08]
giu 13 21:38:21 minos-b5eek kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
giu 13 21:38:21 minos-b5eek kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 0
giu 13 21:38:21 minos-b5eek kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
giu 13 21:38:21 minos-b5eek kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
giu 13 21:38:21 minos-b5eek kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
giu 13 21:38:21 minos-b5eek kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
giu 13 21:38:21 minos-b5eek kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
giu 13 21:38:21 minos-b5eek kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
giu 13 21:38:21 minos-b5eek kernel: Low-power S0 idle used by default for system suspend
giu 13 21:38:21 minos-b5eek kernel: ACPI: EC: interrupt unblocked
giu 13 21:38:21 minos-b5eek kernel: ACPI: EC: event unblocked
giu 13 21:38:21 minos-b5eek kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
giu 13 21:38:21 minos-b5eek kernel: ACPI: EC: GPE=0x3
giu 13 21:38:21 minos-b5eek kernel: ACPI: \_SB_.PCI0.SBRG.EC__: Boot ECDT EC initialization complete
giu 13 21:38:21 minos-b5eek kernel: ACPI: \_SB_.PCI0.SBRG.EC__: EC: Used to handle transactions and events
giu 13 21:38:21 minos-b5eek kernel: iommu: Default domain type: Translated
giu 13 21:38:21 minos-b5eek kernel: iommu: DMA domain TLB invalidation policy: lazy mode
giu 13 21:38:21 minos-b5eek kernel: SCSI subsystem initialized
giu 13 21:38:21 minos-b5eek kernel: libata version 3.00 loaded.
giu 13 21:38:21 minos-b5eek kernel: ACPI: bus type USB registered
giu 13 21:38:21 minos-b5eek kernel: usbcore: registered new interface driver usbfs
giu 13 21:38:21 minos-b5eek kernel: usbcore: registered new interface driver hub
giu 13 21:38:21 minos-b5eek kernel: usbcore: registered new device driver usb
giu 13 21:38:21 minos-b5eek kernel: EDAC MC: Ver: 3.0.0
giu 13 21:38:21 minos-b5eek kernel: efivars: Registered efivars operations
giu 13 21:38:21 minos-b5eek kernel: NetLabel: Initializing
giu 13 21:38:21 minos-b5eek kernel: NetLabel: domain hash size = 128
giu 13 21:38:21 minos-b5eek kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
giu 13 21:38:21 minos-b5eek kernel: NetLabel: unlabeled traffic allowed by default
giu 13 21:38:21 minos-b5eek kernel: mctp: management component transport protocol core
giu 13 21:38:21 minos-b5eek kernel: NET: Registered PF_MCTP protocol family
giu 13 21:38:21 minos-b5eek kernel: PCI: Using ACPI for IRQ routing
giu 13 21:38:21 minos-b5eek kernel: PCI: pci_cache_line_size set to 64 bytes
giu 13 21:38:21 minos-b5eek kernel: e820: reserve RAM buffer [mem 0x09bff000-0x0bffffff]
giu 13 21:38:21 minos-b5eek kernel: e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
giu 13 21:38:21 minos-b5eek kernel: e820: reserve RAM buffer [mem 0xe6056000-0xe7ffffff]
giu 13 21:38:21 minos-b5eek kernel: e820: reserve RAM buffer [mem 0xe868a000-0xebffffff]
giu 13 21:38:21 minos-b5eek kernel: e820: reserve RAM buffer [mem 0xe9cdd000-0xebffffff]
giu 13 21:38:21 minos-b5eek kernel: e820: reserve RAM buffer [mem 0xee000000-0xefffffff]
giu 13 21:38:21 minos-b5eek kernel: e820: reserve RAM buffer [mem 0x7ee300000-0x7efffffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.0: vgaarb: setting as boot VGA device
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.0: vgaarb: bridge control possible
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
giu 13 21:38:21 minos-b5eek kernel: vgaarb: loaded
giu 13 21:38:21 minos-b5eek kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
giu 13 21:38:21 minos-b5eek kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
giu 13 21:38:21 minos-b5eek kernel: clocksource: Switched to clocksource tsc-early
giu 13 21:38:21 minos-b5eek kernel: VFS: Disk quotas dquot_6.6.0
giu 13 21:38:21 minos-b5eek kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
giu 13 21:38:21 minos-b5eek kernel: pnp: PnP ACPI init
giu 13 21:38:21 minos-b5eek kernel: system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [io 0x04d0-0x04d1] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [io 0x040b] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [io 0x04d6] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [io 0x0c00-0x0c01] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [io 0x0c14] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [io 0x0c50-0x0c51] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [io 0x0c52] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [io 0x0c6c] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [io 0x0c6f] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [io 0x0cd8-0x0cdf] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [io 0x0800-0x089f] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [io 0x0b00-0x0b0f] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [io 0x0b20-0x0b3f] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [io 0x0900-0x090f] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [io 0x0910-0x091f] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [mem 0xfec00000-0xfec00fff] could not be reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [mem 0xfec01000-0xfec01fff] could not be reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [mem 0xfedc0000-0xfedc0fff] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [mem 0xfee00000-0xfee00fff] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [mem 0xfed80000-0xfed8ffff] could not be reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [mem 0xfec10000-0xfec10fff] has been reserved
giu 13 21:38:21 minos-b5eek kernel: system 00:04: [mem 0xff000000-0xffffffff] has been reserved
giu 13 21:38:21 minos-b5eek kernel: pnp: PnP ACPI: found 5 devices
giu 13 21:38:21 minos-b5eek kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
giu 13 21:38:21 minos-b5eek kernel: NET: Registered PF_INET protocol family
giu 13 21:38:21 minos-b5eek kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
giu 13 21:38:21 minos-b5eek kernel: tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
giu 13 21:38:21 minos-b5eek kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
giu 13 21:38:21 minos-b5eek kernel: TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
giu 13 21:38:21 minos-b5eek kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
giu 13 21:38:21 minos-b5eek kernel: TCP: Hash tables configured (established 262144 bind 65536)
giu 13 21:38:21 minos-b5eek kernel: MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
giu 13 21:38:21 minos-b5eek kernel: UDP hash table entries: 16384 (order: 8, 1048576 bytes, linear)
giu 13 21:38:21 minos-b5eek kernel: UDP-Lite hash table entries: 16384 (order: 8, 1048576 bytes, linear)
giu 13 21:38:21 minos-b5eek kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
giu 13 21:38:21 minos-b5eek kernel: NET: Registered PF_XDP protocol family
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:01.1: bridge window [io 0x1000-0x0fff] to [bus 01-03] add_size 1000
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:01.1: bridge window [io 0x1000-0x1fff]: assigned
giu 13 21:38:21 minos-b5eek kernel: pci 0000:02:00.0: PCI bridge to [bus 03]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:02:00.0: bridge window [mem 0xfca00000-0xfcbfffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:02:00.0: bridge window [mem 0xfc00000000-0xfe0fffffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:01:00.0: PCI bridge to [bus 02-03]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:01:00.0: bridge window [mem 0xfca00000-0xfcbfffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:01:00.0: bridge window [mem 0xfc00000000-0xfe0fffffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:01.1: PCI bridge to [bus 01-03]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:01.1: bridge window [io 0x1000-0x1fff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:01.1: bridge window [mem 0xfca00000-0xfccfffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:01.1: bridge window [mem 0xfc00000000-0xfe0fffffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.1: PCI bridge to [bus 04]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.1: bridge window [mem 0xfe30300000-0xfe304fffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.2: PCI bridge to [bus 05]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.2: bridge window [io 0xf000-0xffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.2: bridge window [mem 0xfcf00000-0xfcffffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.3: PCI bridge to [bus 06]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.3: bridge window [mem 0xfce00000-0xfcefffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.4: PCI bridge to [bus 07]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.4: bridge window [mem 0xfcd00000-0xfcdfffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:08.1: PCI bridge to [bus 08]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:08.1: bridge window [io 0xe000-0xefff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:08.1: bridge window [mem 0xfc500000-0xfc9fffff]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:08.1: bridge window [mem 0xfe20000000-0xfe301fffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfcffffff window]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:00: resource 10 [mem 0x810000000-0xffffffffff window]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:01: resource 0 [io 0x1000-0x1fff]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:01: resource 1 [mem 0xfca00000-0xfccfffff]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:01: resource 2 [mem 0xfc00000000-0xfe0fffffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:02: resource 1 [mem 0xfca00000-0xfcbfffff]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:02: resource 2 [mem 0xfc00000000-0xfe0fffffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:03: resource 1 [mem 0xfca00000-0xfcbfffff]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:03: resource 2 [mem 0xfc00000000-0xfe0fffffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:04: resource 2 [mem 0xfe30300000-0xfe304fffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:05: resource 0 [io 0xf000-0xffff]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:05: resource 1 [mem 0xfcf00000-0xfcffffff]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:06: resource 1 [mem 0xfce00000-0xfcefffff]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:07: resource 1 [mem 0xfcd00000-0xfcdfffff]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:08: resource 0 [io 0xe000-0xefff]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:08: resource 1 [mem 0xfc500000-0xfc9fffff]
giu 13 21:38:21 minos-b5eek kernel: pci_bus 0000:08: resource 2 [mem 0xfe20000000-0xfe301fffff 64bit pref]
giu 13 21:38:21 minos-b5eek kernel: pci 0000:03:00.1: D0 power state depends on 0000:03:00.0
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.1: D0 power state depends on 0000:08:00.0
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.3: extending delay after power-on from D3hot to 20 msec
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.4: extending delay after power-on from D3hot to 20 msec
giu 13 21:38:21 minos-b5eek kernel: PCI: CLS 64 bytes, default 64
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
giu 13 21:38:21 minos-b5eek kernel: Trying to unpack rootfs image as initramfs...
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:00.0: Adding to iommu group 0
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:01.0: Adding to iommu group 1
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:01.1: Adding to iommu group 2
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.0: Adding to iommu group 3
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.1: Adding to iommu group 4
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.2: Adding to iommu group 5
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.3: Adding to iommu group 6
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:02.4: Adding to iommu group 7
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:08.0: Adding to iommu group 8
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:08.1: Adding to iommu group 9
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:14.0: Adding to iommu group 10
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:14.3: Adding to iommu group 10
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:18.0: Adding to iommu group 11
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:18.1: Adding to iommu group 11
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:18.2: Adding to iommu group 11
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:18.3: Adding to iommu group 11
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:18.4: Adding to iommu group 11
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:18.5: Adding to iommu group 11
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:18.6: Adding to iommu group 11
giu 13 21:38:21 minos-b5eek kernel: pci 0000:00:18.7: Adding to iommu group 11
giu 13 21:38:21 minos-b5eek kernel: pci 0000:01:00.0: Adding to iommu group 12
giu 13 21:38:21 minos-b5eek kernel: pci 0000:02:00.0: Adding to iommu group 13
giu 13 21:38:21 minos-b5eek kernel: pci 0000:03:00.0: Adding to iommu group 14
giu 13 21:38:21 minos-b5eek kernel: pci 0000:03:00.1: Adding to iommu group 15
giu 13 21:38:21 minos-b5eek kernel: pci 0000:04:00.0: Adding to iommu group 16
giu 13 21:38:21 minos-b5eek kernel: pci 0000:05:00.0: Adding to iommu group 17
giu 13 21:38:21 minos-b5eek kernel: pci 0000:06:00.0: Adding to iommu group 18
giu 13 21:38:21 minos-b5eek kernel: pci 0000:07:00.0: Adding to iommu group 19
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.0: Adding to iommu group 20
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.1: Adding to iommu group 21
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.2: Adding to iommu group 22
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.3: Adding to iommu group 23
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.4: Adding to iommu group 24
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.5: Adding to iommu group 25
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.6: Adding to iommu group 26
giu 13 21:38:21 minos-b5eek kernel: pci 0000:08:00.7: Adding to iommu group 27
giu 13 21:38:21 minos-b5eek kernel: AMD-Vi: Extended features (0x206d73ef22254ade, 0x0): PPR X2APIC NX GT IA GA PC GA_vAPIC
giu 13 21:38:21 minos-b5eek kernel: AMD-Vi: Interrupt remapping enabled
giu 13 21:38:21 minos-b5eek kernel: AMD-Vi: X2APIC enabled
giu 13 21:38:21 minos-b5eek kernel: AMD-Vi: Virtual APIC enabled
giu 13 21:38:21 minos-b5eek kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
giu 13 21:38:21 minos-b5eek kernel: software IO TLB: mapped [mem 0x00000000e08d0000-0x00000000e48d0000] (64MB)
giu 13 21:38:21 minos-b5eek kernel: LVT offset 0 assigned for vector 0x400
giu 13 21:38:21 minos-b5eek kernel: perf: AMD IBS detected (0x000003ff)
giu 13 21:38:21 minos-b5eek kernel: perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
giu 13 21:38:21 minos-b5eek kernel: Freeing initrd memory: 43304K
giu 13 21:38:21 minos-b5eek kernel: Initialise system trusted keyrings
giu 13 21:38:21 minos-b5eek kernel: Key type blacklist registered
giu 13 21:38:21 minos-b5eek kernel: workingset: timestamp_bits=36 max_order=23 bucket_order=0
giu 13 21:38:21 minos-b5eek kernel: fuse: init (API version 7.43)
giu 13 21:38:21 minos-b5eek kernel: integrity: Platform Keyring initialized
giu 13 21:38:21 minos-b5eek kernel: integrity: Machine keyring initialized
giu 13 21:38:21 minos-b5eek kernel: xor: automatically using best checksumming function avx
giu 13 21:38:21 minos-b5eek kernel: Key type asymmetric registered
giu 13 21:38:21 minos-b5eek kernel: Asymmetric key parser 'x509' registered
giu 13 21:38:21 minos-b5eek kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
giu 13 21:38:21 minos-b5eek kernel: io scheduler mq-deadline registered
giu 13 21:38:21 minos-b5eek kernel: io scheduler kyber registered
giu 13 21:38:21 minos-b5eek kernel: Adaptive Deadline I/O Scheduler 1.5.8 by Masahito Suzuki
giu 13 21:38:21 minos-b5eek kernel: io scheduler adios registered
giu 13 21:38:21 minos-b5eek kernel: io scheduler bfq registered
giu 13 21:38:21 minos-b5eek kernel: ledtrig-cpu: registered to indicate activity on CPUs
giu 13 21:38:21 minos-b5eek kernel: pcieport 0000:00:01.1: PME: Signaling with IRQ 43
giu 13 21:38:21 minos-b5eek kernel: pcieport 0000:00:01.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
giu 13 21:38:21 minos-b5eek kernel: pcieport 0000:00:02.1: PME: Signaling with IRQ 44
giu 13 21:38:21 minos-b5eek kernel: pcieport 0000:00:02.2: PME: Signaling with IRQ 45
giu 13 21:38:21 minos-b5eek kernel: pcieport 0000:00:02.3: PME: Signaling with IRQ 46
giu 13 21:38:21 minos-b5eek kernel: pcieport 0000:00:02.4: PME: Signaling with IRQ 47
giu 13 21:38:21 minos-b5eek kernel: pcieport 0000:00:08.1: PME: Signaling with IRQ 48
giu 13 21:38:21 minos-b5eek kernel: ACPI: AC: AC Adapter [ADP1] (on-line)
giu 13 21:38:21 minos-b5eek kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:33/PNP0C09:00/PNP0C0D:00/input/input0
giu 13 21:38:21 minos-b5eek kernel: ACPI: button: Lid Switch [LID0]
giu 13 21:38:21 minos-b5eek kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
giu 13 21:38:21 minos-b5eek kernel: ACPI: button: Power Button [PWRB]
giu 13 21:38:21 minos-b5eek kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
giu 13 21:38:21 minos-b5eek kernel: ACPI: button: Sleep Button [SLPB]
giu 13 21:38:21 minos-b5eek kernel: Monitor-Mwait will be used to enter C-1 state
giu 13 21:38:21 minos-b5eek kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1226
giu 13 21:38:21 minos-b5eek kernel: thermal LNXTHERM:00: registered as thermal_zone0
giu 13 21:38:21 minos-b5eek kernel: ACPI: thermal: Thermal Zone [THRM] (59 C)
giu 13 21:38:21 minos-b5eek kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
giu 13 21:38:21 minos-b5eek kernel: Non-volatile memory driver v1.3
giu 13 21:38:21 minos-b5eek kernel: Linux agpgart interface v0.103
giu 13 21:38:21 minos-b5eek kernel: tpm_crb MSFT0101:00: Disabling hwrng
giu 13 21:38:21 minos-b5eek kernel: ACPI: bus type drm_connector registered
giu 13 21:38:21 minos-b5eek kernel: xhci_hcd 0000:08:00.3: xHCI Host Controller
giu 13 21:38:21 minos-b5eek kernel: xhci_hcd 0000:08:00.3: new USB bus registered, assigned bus number 1
giu 13 21:38:21 minos-b5eek kernel: xhci_hcd 0000:08:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000010
giu 13 21:38:21 minos-b5eek kernel: xhci_hcd 0000:08:00.3: xHCI Host Controller
giu 13 21:38:21 minos-b5eek kernel: xhci_hcd 0000:08:00.3: new USB bus registered, assigned bus number 2
giu 13 21:38:21 minos-b5eek kernel: xhci_hcd 0000:08:00.3: Host supports USB 3.1 Enhanced SuperSpeed
giu 13 21:38:21 minos-b5eek kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.15
giu 13 21:38:21 minos-b5eek kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
giu 13 21:38:21 minos-b5eek kernel: usb usb1: Product: xHCI Host Controller
giu 13 21:38:21 minos-b5eek kernel: usb usb1: Manufacturer: Linux 6.15.2-4-cachyos xhci-hcd
giu 13 21:38:21 minos-b5eek kernel: usb usb1: SerialNumber: 0000:08:00.3
giu 13 21:38:21 minos-b5eek kernel: hub 1-0:1.0: USB hub found
giu 13 21:38:21 minos-b5eek kernel: hub 1-0:1.0: 4 ports detected
giu 13 21:38:21 minos-b5eek kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
giu 13 21:38:21 minos-b5eek kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.15
giu 13 21:38:21 minos-b5eek kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
giu 13 21:38:21 minos-b5eek kernel: usb usb2: Product: xHCI Host Controller
giu 13 21:38:21 minos-b5eek kernel: usb usb2: Manufacturer: Linux 6.15.2-4-cachyos xhci-hcd
giu 13 21:38:21 minos-b5eek kernel: usb usb2: SerialNumber: 0000:08:00.3
giu 13 21:38:21 minos-b5eek kernel: hub 2-0:1.0: USB hub found
giu 13 21:38:21 minos-b5eek kernel: hub 2-0:1.0: 2 ports detected
giu 13 21:38:21 minos-b5eek kernel: xhci_hcd 0000:08:00.4: xHCI Host Controller
giu 13 21:38:21 minos-b5eek kernel: xhci_hcd 0000:08:00.4: new USB bus registered, assigned bus number 3
giu 13 21:38:21 minos-b5eek kernel: xhci_hcd 0000:08:00.4: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000010
giu 13 21:38:21 minos-b5eek kernel: xhci_hcd 0000:08:00.4: xHCI Host Controller
giu 13 21:38:21 minos-b5eek kernel: xhci_hcd 0000:08:00.4: new USB bus registered, assigned bus number 4
giu 13 21:38:21 minos-b5eek kernel: xhci_hcd 0000:08:00.4: Host supports USB 3.1 Enhanced SuperSpeed
giu 13 21:38:21 minos-b5eek kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.15
giu 13 21:38:21 minos-b5eek kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
giu 13 21:38:21 minos-b5eek kernel: usb usb3: Product: xHCI Host Controller
giu 13 21:38:21 minos-b5eek kernel: usb usb3: Manufacturer: Linux 6.15.2-4-cachyos xhci-hcd
giu 13 21:38:21 minos-b5eek kernel: usb usb3: SerialNumber: 0000:08:00.4
giu 13 21:38:21 minos-b5eek kernel: hub 3-0:1.0: USB hub found
giu 13 21:38:21 minos-b5eek kernel: hub 3-0:1.0: 4 ports detected
giu 13 21:38:21 minos-b5eek kernel: usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
giu 13 21:38:21 minos-b5eek kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.15
giu 13 21:38:21 minos-b5eek kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
giu 13 21:38:21 minos-b5eek kernel: usb usb4: Product: xHCI Host Controller
giu 13 21:38:21 minos-b5eek kernel: usb usb4: Manufacturer: Linux 6.15.2-4-cachyos xhci-hcd
giu 13 21:38:21 minos-b5eek kernel: usb usb4: SerialNumber: 0000:08:00.4
giu 13 21:38:21 minos-b5eek kernel: hub 4-0:1.0: USB hub found
giu 13 21:38:21 minos-b5eek kernel: hub 4-0:1.0: 2 ports detected
giu 13 21:38:21 minos-b5eek kernel: usbcore: registered new interface driver usbserial_generic
giu 13 21:38:21 minos-b5eek kernel: usbserial: USB Serial support registered for generic
giu 13 21:38:21 minos-b5eek kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
giu 13 21:38:21 minos-b5eek kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
giu 13 21:38:21 minos-b5eek kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
giu 13 21:38:21 minos-b5eek kernel: rtc_cmos 00:01: RTC can wake from S4
giu 13 21:38:21 minos-b5eek kernel: rtc_cmos 00:01: registered as rtc0
giu 13 21:38:21 minos-b5eek kernel: rtc_cmos 00:01: setting system clock to 2025-06-13T19:38:09 UTC (1749843489)
giu 13 21:38:21 minos-b5eek kernel: rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram
giu 13 21:38:21 minos-b5eek kernel: efifb: probing for efifb
giu 13 21:38:21 minos-b5eek kernel: efifb: Ignoring BGRT: unexpected or invalid BMP data
giu 13 21:38:21 minos-b5eek kernel: efifb: framebuffer at 0xfe20000000, using 3072k, total 3072k
giu 13 21:38:21 minos-b5eek kernel: efifb: mode is 1024x768x32, linelength=4096, pages=1
giu 13 21:38:21 minos-b5eek kernel: efifb: scrolling: redraw
giu 13 21:38:21 minos-b5eek kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
giu 13 21:38:21 minos-b5eek kernel: fbcon: Deferring console take-over
giu 13 21:38:21 minos-b5eek kernel: fb0: EFI VGA frame buffer device
giu 13 21:38:21 minos-b5eek kernel: hid: raw HID events driver (C) Jiri Kosina
giu 13 21:38:21 minos-b5eek kernel: usbcore: registered new interface driver usbhid
giu 13 21:38:21 minos-b5eek kernel: usbhid: USB HID core driver
giu 13 21:38:21 minos-b5eek kernel: drop_monitor: Initializing network drop monitor service
giu 13 21:38:21 minos-b5eek kernel: NET: Registered PF_INET6 protocol family
giu 13 21:38:21 minos-b5eek kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
giu 13 21:38:21 minos-b5eek kernel: Segment Routing with IPv6
giu 13 21:38:21 minos-b5eek kernel: RPL Segment Routing with IPv6
giu 13 21:38:21 minos-b5eek kernel: In-situ OAM (IOAM) with IPv6
giu 13 21:38:21 minos-b5eek kernel: NET: Registered PF_PACKET protocol family
giu 13 21:38:21 minos-b5eek kernel: x86/amd: Previous system reset reason [0x00200800]: ACPI power state transition occurred
giu 13 21:38:21 minos-b5eek kernel: microcode: Current revision: 0x0a500011
giu 13 21:38:21 minos-b5eek kernel: microcode: Updated early from: 0x0a50000c
giu 13 21:38:21 minos-b5eek kernel: resctrl: L3 allocation detected
giu 13 21:38:21 minos-b5eek kernel: resctrl: MB allocation detected
giu 13 21:38:21 minos-b5eek kernel: resctrl: L3 monitoring detected
giu 13 21:38:21 minos-b5eek kernel: IPI shorthand broadcast: enabled
giu 13 21:38:21 minos-b5eek kernel: sched_clock: Marking stable (550778403, 1253405)->(567654827, -15623019)
giu 13 21:38:21 minos-b5eek kernel: registered taskstats version 1
giu 13 21:38:21 minos-b5eek kernel: Loading compiled-in X.509 certificates
giu 13 21:38:21 minos-b5eek kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 1693aa72108b42a070c6f100793e0ee6f57a364c'
giu 13 21:38:21 minos-b5eek kernel: Demotion targets for Node 0: null
giu 13 21:38:21 minos-b5eek kernel: Key type .fscrypt registered
giu 13 21:38:21 minos-b5eek kernel: Key type fscrypt-provisioning registered
giu 13 21:38:21 minos-b5eek kernel: Btrfs loaded, zoned=yes, fsverity=yes
giu 13 21:38:21 minos-b5eek kernel: Key type big_key registered
giu 13 21:38:21 minos-b5eek kernel: integrity: Loading X.509 certificate: UEFI:db
giu 13 21:38:21 minos-b5eek kernel: integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
giu 13 21:38:21 minos-b5eek kernel: integrity: Loading X.509 certificate: UEFI:db
giu 13 21:38:21 minos-b5eek kernel: integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
giu 13 21:38:21 minos-b5eek kernel: PM: Magic number: 13:573:647
giu 13 21:38:21 minos-b5eek kernel: RAS: Correctable Errors collector initialized.
giu 13 21:38:21 minos-b5eek kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.GP17.MP2], AE_NOT_FOUND (20240827/psargs-332)
giu 13 21:38:21 minos-b5eek kernel: ACPI Error: Aborting method \_SB.GPIO._EVT due to previous error (AE_NOT_FOUND) (20240827/psparse-529)
giu 13 21:38:21 minos-b5eek kernel: clk: Disabling unused clocks
giu 13 21:38:21 minos-b5eek kernel: PM: genpd: Disabling unused power domains
giu 13 21:38:21 minos-b5eek kernel: ACPI: battery: Slot [BAT1] (battery present)
giu 13 21:38:21 minos-b5eek kernel: Freeing unused decrypted memory: 2028K
giu 13 21:38:21 minos-b5eek kernel: Freeing unused kernel image (initmem) memory: 4788K
giu 13 21:38:21 minos-b5eek kernel: Write protecting the kernel read-only data: 38912k
giu 13 21:38:21 minos-b5eek kernel: Freeing unused kernel image (text/rodata gap) memory: 100K
giu 13 21:38:21 minos-b5eek kernel: Freeing unused kernel image (rodata/data gap) memory: 68K
giu 13 21:38:21 minos-b5eek kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
giu 13 21:38:21 minos-b5eek kernel: rodata_test: all tests were successful
giu 13 21:38:21 minos-b5eek kernel: Run /init as init process
giu 13 21:38:21 minos-b5eek kernel: with arguments:
giu 13 21:38:21 minos-b5eek kernel: /init
giu 13 21:38:21 minos-b5eek kernel: splash
giu 13 21:38:21 minos-b5eek kernel: with environment:
giu 13 21:38:21 minos-b5eek kernel: HOME=/
giu 13 21:38:21 minos-b5eek kernel: TERM=linux
giu 13 21:38:21 minos-b5eek kernel: ACPI: video: Video Device [VGA] (multi-head: yes rom: no post: no)
giu 13 21:38:21 minos-b5eek kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:13/LNXVIDEO:00/input/input5
giu 13 21:38:21 minos-b5eek kernel: Key type psk registered
giu 13 21:38:21 minos-b5eek kernel: nvme 0000:06:00.0: platform quirk: setting simple suspend
giu 13 21:38:21 minos-b5eek kernel: nvme 0000:07:00.0: platform quirk: setting simple suspend
giu 13 21:38:21 minos-b5eek kernel: nvme nvme0: pci function 0000:06:00.0
giu 13 21:38:21 minos-b5eek kernel: nvme nvme1: pci function 0000:07:00.0
giu 13 21:38:21 minos-b5eek kernel: usb 1-4: new high-speed USB device number 2 using xhci_hcd
giu 13 21:38:21 minos-b5eek kernel: nvme nvme1: missing or invalid SUBNQN field.
giu 13 21:38:21 minos-b5eek kernel: nvme nvme1: D3 entry latency set to 10 seconds
giu 13 21:38:21 minos-b5eek kernel: nvme nvme0: D3 entry latency set to 8 seconds
giu 13 21:38:21 minos-b5eek kernel: usb 3-3: new high-speed USB device number 2 using xhci_hcd
giu 13 21:38:21 minos-b5eek kernel: nvme nvme0: allocated 64 MiB host memory buffer (1 segment).
giu 13 21:38:21 minos-b5eek kernel: nvme nvme1: 8/0/0 default/read/poll queues
giu 13 21:38:21 minos-b5eek kernel: nvme1n1: p1 p2 p3
giu 13 21:38:21 minos-b5eek kernel: nvme nvme0: 12/0/0 default/read/poll queues
giu 13 21:38:21 minos-b5eek kernel: nvme0n1: p1
giu 13 21:38:21 minos-b5eek kernel: usb 1-4: New USB device found, idVendor=5986, idProduct=211b, bcdDevice= 3.01
giu 13 21:38:21 minos-b5eek kernel: usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
giu 13 21:38:21 minos-b5eek kernel: usb 1-4: Product: HD Webcam
giu 13 21:38:21 minos-b5eek kernel: usb 1-4: Manufacturer: SunplusIT Inc
giu 13 21:38:21 minos-b5eek kernel: usb 3-3: New USB device found, idVendor=0e8d, idProduct=0608, bcdDevice= 1.00
giu 13 21:38:21 minos-b5eek kernel: usb 3-3: New USB device strings: Mfr=5, Product=6, SerialNumber=7
giu 13 21:38:21 minos-b5eek kernel: usb 3-3: Product: Wireless_Device
giu 13 21:38:21 minos-b5eek kernel: usb 3-3: Manufacturer: MediaTek Inc.
giu 13 21:38:21 minos-b5eek kernel: usb 3-3: SerialNumber: 000000000
giu 13 21:38:21 minos-b5eek kernel: usb 3-4: new full-speed USB device number 3 using xhci_hcd
giu 13 21:38:21 minos-b5eek kernel: usb 3-4: New USB device found, idVendor=1462, idProduct=1563, bcdDevice= 2.00
giu 13 21:38:21 minos-b5eek kernel: usb 3-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
giu 13 21:38:21 minos-b5eek kernel: usb 3-4: Product: MysticLight MS-1563 v0001
giu 13 21:38:21 minos-b5eek kernel: usb 3-4: Manufacturer: MSI
giu 13 21:38:21 minos-b5eek kernel: usb 3-4: SerialNumber: 205F344D4D41
giu 13 21:38:21 minos-b5eek kernel: hid-generic 0003:1462:1563.0001: hiddev96,hidraw0: USB HID v1.11 Device [MSI MysticLight MS-1563 v0001] on usb-0000:08:00.4-4/input0
giu 13 21:38:21 minos-b5eek kernel: tsc: Refined TSC clocksource calibration: 3193.999 MHz
giu 13 21:38:21 minos-b5eek kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2e0a24cf65f, max_idle_ns: 440795271781 ns
giu 13 21:38:21 minos-b5eek kernel: clocksource: Switched to clocksource tsc
giu 13 21:38:21 minos-b5eek kernel: [drm] amdgpu kernel modesetting enabled.
giu 13 21:38:21 minos-b5eek kernel: amdgpu: vga_switcheroo: detected switching method \_SB_.PCI0.GP17.VGA_.ATPX handle
giu 13 21:38:21 minos-b5eek kernel: amdgpu: ATPX version 1, functions 0x00000001
giu 13 21:38:21 minos-b5eek kernel: amdgpu: ATPX Hybrid Graphics
giu 13 21:38:21 minos-b5eek kernel: amdgpu: Virtual CRAT table created for CPU
giu 13 21:38:21 minos-b5eek kernel: amdgpu: Topology: Add CPU node
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: enabling device (0000 -> 0002)
giu 13 21:38:21 minos-b5eek kernel: [drm] initializing kernel modesetting (DIMGREY_CAVEFISH 0x1002:0x73FF 0x1462:0x1313 0xC3).
giu 13 21:38:21 minos-b5eek kernel: [drm] register mmio base: 0xFCA00000
giu 13 21:38:21 minos-b5eek kernel: [drm] register mmio size: 1048576
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: detected ip block number 0 <nv_common>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: detected ip block number 1 <gmc_v10_0>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: detected ip block number 2 <navi10_ih>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: detected ip block number 3 <psp>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: detected ip block number 4 <smu>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: detected ip block number 5 <dm>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: detected ip block number 6 <gfx_v10_0>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: detected ip block number 7 <sdma_v5_2>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: detected ip block number 8 <vcn_v3_0>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: detected ip block number 9 <jpeg_v3_0>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ACPI VFCT table present but broken (too short #2),skipping
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: Fetched VBIOS from ROM BAR
giu 13 21:38:21 minos-b5eek kernel: amdgpu: ATOM BIOS: SWBRT77181.001
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
giu 13 21:38:21 minos-b5eek kernel: [drm] GPU posting now...
giu 13 21:38:21 minos-b5eek kernel: [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: VRAM: 8176M 0x0000008000000000 - 0x00000081FEFFFFFF (8176M used)
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
giu 13 21:38:21 minos-b5eek kernel: [drm] Detected VRAM RAM=8176M, BAR=8192M
giu 13 21:38:21 minos-b5eek kernel: [drm] RAM width 128bits GDDR6
giu 13 21:38:21 minos-b5eek kernel: [drm] amdgpu: 8176M of VRAM memory ready
giu 13 21:38:21 minos-b5eek kernel: [drm] amdgpu: 15731M of GTT memory ready.
giu 13 21:38:21 minos-b5eek kernel: [drm] GART: num cpu pages 131072, num gpu pages 131072
giu 13 21:38:21 minos-b5eek kernel: [drm] PCIE GART of 512M enabled (table at 0x00000081FEB00000).
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: STB initialized to 2048 entries
giu 13 21:38:21 minos-b5eek kernel: [drm] Loading DMUB firmware via PSP: version=0x02020020
giu 13 21:38:21 minos-b5eek kernel: [drm] use_doorbell being set to: [true]
giu 13 21:38:21 minos-b5eek kernel: [drm] use_doorbell being set to: [true]
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: Found VCN firmware Version ENC: 1.33 DEC: 4 VEP: 0 Revision: 7
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: reserve 0xa00000 from 0x81fd000000 for PSP TMR
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: smu driver if version = 0x0000000f, smu fw if version = 0x00000013, smu fw program = 0, version = 0x003b3100 (59.49.0)
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: SMU driver if version not matched
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: use vbios provided pptable
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: SMU is initialized successfully!
giu 13 21:38:21 minos-b5eek kernel: [drm] Display Core v3.2.325 initialized on DCN 3.0.2
giu 13 21:38:21 minos-b5eek kernel: [drm] DP-HDMI FRL PCON supported
giu 13 21:38:21 minos-b5eek kernel: [drm] DMUB hardware initialized: version=0x02020020
giu 13 21:38:21 minos-b5eek kernel: [drm] kiq ring mec 2 pipe 1 q 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu: HMM registered 8176MB device memory
giu 13 21:38:21 minos-b5eek kernel: kfd kfd: amdgpu: Allocated 3969056 bytes on gart
giu 13 21:38:21 minos-b5eek kernel: kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
giu 13 21:38:21 minos-b5eek kernel: amdgpu: Virtual CRAT table created for GPU
giu 13 21:38:21 minos-b5eek kernel: amdgpu: Topology: Add dGPU node [0x73ff:0x1002]
giu 13 21:38:21 minos-b5eek kernel: kfd kfd: amdgpu: added device 1002:73ff
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: SE 2, SH per SE 2, CU per SH 8, active_cu_number 28
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring gfx_0.1.0 uses VM inv eng 1 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 4 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 5 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 12 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 13 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 14 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 8
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 8
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: Using BOCO for runtime pm
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: [drm] Registered 5 planes with drm panic
giu 13 21:38:21 minos-b5eek kernel: [drm] Initialized amdgpu 3.63.0 for 0000:03:00.0 on minor 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:03:00.0: [drm] Cannot find any crtc or sizes
giu 13 21:38:21 minos-b5eek kernel: [drm] pre_validate_dsc:1627 MST_DSC dsc precompute is not needed
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: enabling device (0006 -> 0007)
giu 13 21:38:21 minos-b5eek kernel: [drm] initializing kernel modesetting (RENOIR 0x1002:0x1638 0x1462:0x1313 0xC5).
giu 13 21:38:21 minos-b5eek kernel: [drm] register mmio base: 0xFC900000
giu 13 21:38:21 minos-b5eek kernel: [drm] register mmio size: 524288
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: detected ip block number 0 <soc15_common>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: detected ip block number 1 <gmc_v9_0>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: detected ip block number 2 <vega10_ih>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: detected ip block number 3 <psp>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: detected ip block number 4 <smu>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: detected ip block number 5 <dm>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: detected ip block number 6 <gfx_v9_0>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: detected ip block number 7 <sdma_v4_0>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: detected ip block number 8 <vcn_v2_0>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: detected ip block number 9 <jpeg_v2_0>
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: Fetched VBIOS from VFCT
giu 13 21:38:21 minos-b5eek kernel: amdgpu: ATOM BIOS: 113-CEZANNE-018
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: vgaarb: deactivate vga console
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: MODE2 reset
giu 13 21:38:21 minos-b5eek kernel: [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: VRAM: 512M 0x000000F400000000 - 0x000000F41FFFFFFF (512M used)
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
giu 13 21:38:21 minos-b5eek kernel: [drm] Detected VRAM RAM=512M, BAR=512M
giu 13 21:38:21 minos-b5eek kernel: [drm] RAM width 128bits DDR4
giu 13 21:38:21 minos-b5eek kernel: [drm] amdgpu: 512M of VRAM memory ready
giu 13 21:38:21 minos-b5eek kernel: [drm] amdgpu: 15731M of GTT memory ready.
giu 13 21:38:21 minos-b5eek kernel: [drm] GART: num cpu pages 262144, num gpu pages 262144
giu 13 21:38:21 minos-b5eek kernel: [drm] PCIE GART of 1024M enabled.
giu 13 21:38:21 minos-b5eek kernel: [drm] PTB located at 0x000000F41FC00000
giu 13 21:38:21 minos-b5eek kernel: [drm] Loading DMUB firmware via PSP: version=0x0101002B
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: Found VCN firmware Version ENC: 1.24 DEC: 8 VEP: 0 Revision: 3
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: reserve 0x400000 from 0xf41f800000 for PSP TMR
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: RAS: optional ras ta ucode is not available
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: RAP: optional rap ta ucode is not available
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: SMU is initialized successfully!
giu 13 21:38:21 minos-b5eek kernel: [drm] Display Core v3.2.325 initialized on DCN 2.1
giu 13 21:38:21 minos-b5eek kernel: [drm] DP-HDMI FRL PCON supported
giu 13 21:38:21 minos-b5eek kernel: [drm] DMUB hardware initialized: version=0x0101002B
giu 13 21:38:21 minos-b5eek kernel: [drm] kiq ring mec 2 pipe 1 q 0
giu 13 21:38:21 minos-b5eek kernel: kfd kfd: amdgpu: Allocated 3969056 bytes on gart
giu 13 21:38:21 minos-b5eek kernel: kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
giu 13 21:38:21 minos-b5eek kernel: amdgpu: Virtual CRAT table created for GPU
giu 13 21:38:21 minos-b5eek kernel: amdgpu: Topology: Add dGPU node [0x1638:0x1002]
giu 13 21:38:21 minos-b5eek kernel: kfd kfd: amdgpu: added device 1002:1638
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 8, active_cu_number 8
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 8
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 8
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 8
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 8
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 8
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: Runtime PM not available
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: amdgpu: [drm] Using custom brightness curve
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: [drm] Registered 4 planes with drm panic
giu 13 21:38:21 minos-b5eek kernel: [drm] Initialized amdgpu 3.63.0 for 0000:08:00.0 on minor 1
giu 13 21:38:21 minos-b5eek kernel: fbcon: amdgpudrmfb (fb0) is primary device
giu 13 21:38:21 minos-b5eek kernel: fbcon: Deferring console take-over
giu 13 21:38:21 minos-b5eek kernel: amdgpu 0000:08:00.0: [drm] fb0: amdgpudrmfb frame buffer device
giu 13 21:38:21 minos-b5eek kernel: EXT4-fs (nvme1n1p2): mounted filesystem 16abd694-e9f4-4575-aced-b961ac0d3a2f r/w with ordered data mode. Quota mode: none.
giu 13 21:38:21 minos-b5eek systemd[1]: systemd 257.6-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
giu 13 21:38:21 minos-b5eek systemd[1]: Detected architecture x86-64.
giu 13 21:38:21 minos-b5eek systemd[1]: Hostname set to <minos-b5eek>.
giu 13 21:38:21 minos-b5eek systemd[1]: bpf-restrict-fs: LSM BPF program attached
giu 13 21:38:21 minos-b5eek kernel: zram: Added device: zram0
giu 13 21:38:21 minos-b5eek systemd[1]: Queued start job for default target Graphical Interface.
giu 13 21:38:21 minos-b5eek systemd[1]: Created slice CUPS Slice.
giu 13 21:38:21 minos-b5eek systemd[1]: Created slice Slice /system/dirmngr.
giu 13 21:38:21 minos-b5eek systemd[1]: Created slice Slice /system/getty.
giu 13 21:38:21 minos-b5eek systemd[1]: Created slice Slice /system/gpg-agent.
giu 13 21:38:21 minos-b5eek systemd[1]: Created slice Slice /system/gpg-agent-browser.
giu 13 21:38:21 minos-b5eek systemd[1]: Created slice Slice /system/gpg-agent-extra.
giu 13 21:38:21 minos-b5eek systemd[1]: Created slice Slice /system/gpg-agent-ssh.
giu 13 21:38:21 minos-b5eek systemd[1]: Created slice Slice /system/keyboxd.
giu 13 21:38:21 minos-b5eek systemd[1]: Created slice Slice /system/modprobe.
giu 13 21:38:21 minos-b5eek systemd[1]: Created slice Encrypted Volume Units Service Slice.
giu 13 21:38:21 minos-b5eek systemd[1]: Created slice Slice /system/systemd-fsck.
giu 13 21:38:21 minos-b5eek systemd[1]: Created slice Slice /system/systemd-zram-setup.
giu 13 21:38:21 minos-b5eek systemd[1]: Created slice User and Session Slice.
giu 13 21:38:21 minos-b5eek systemd[1]: Started Forward Password Requests to Wall Directory Watch.
giu 13 21:38:21 minos-b5eek systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
giu 13 21:38:21 minos-b5eek systemd[1]: Expecting device /dev/disk/by-uuid/04890ffa-43a1-416d-9067-3d36b5fa918c...
giu 13 21:38:21 minos-b5eek systemd[1]: Expecting device /dev/disk/by-uuid/5fdc484b-2f70-4c80-8a1d-15f9d04de017...
giu 13 21:38:21 minos-b5eek systemd[1]: Expecting device /dev/disk/by-uuid/F857-7B6E...
giu 13 21:38:21 minos-b5eek systemd[1]: Expecting device /dev/mapper/luks-04890ffa-43a1-416d-9067-3d36b5fa918c...
giu 13 21:38:21 minos-b5eek systemd[1]: Expecting device /dev/zram0...
giu 13 21:38:21 minos-b5eek systemd[1]: Reached target Login Prompts.
giu 13 21:38:21 minos-b5eek systemd[1]: Reached target Local Integrity Protected Volumes.
giu 13 21:38:21 minos-b5eek systemd[1]: Reached target Remote File Systems.
giu 13 21:38:21 minos-b5eek systemd[1]: Reached target Slice Units.
giu 13 21:38:21 minos-b5eek systemd[1]: Reached target Local Verity Protected Volumes.
giu 13 21:38:21 minos-b5eek systemd[1]: Listening on Device-mapper event daemon FIFOs.
giu 13 21:38:21 minos-b5eek systemd[1]: Listening on LVM2 poll daemon socket.
giu 13 21:38:21 minos-b5eek systemd[1]: Listening on Process Core Dump Socket.
giu 13 21:38:21 minos-b5eek systemd[1]: Listening on Credential Encryption/Decryption.
giu 13 21:38:21 minos-b5eek systemd[1]: Listening on Journal Socket (/dev/log).
giu 13 21:38:21 minos-b5eek systemd[1]: Listening on Journal Sockets.
giu 13 21:38:21 minos-b5eek systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
giu 13 21:38:21 minos-b5eek systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
giu 13 21:38:21 minos-b5eek systemd[1]: Listening on udev Control Socket.
giu 13 21:38:21 minos-b5eek systemd[1]: Listening on udev Kernel Socket.
giu 13 21:38:21 minos-b5eek systemd[1]: Listening on User Database Manager Socket.
giu 13 21:38:21 minos-b5eek systemd[1]: Mounting Huge Pages File System...
giu 13 21:38:21 minos-b5eek systemd[1]: Mounting POSIX Message Queue File System...
giu 13 21:38:21 minos-b5eek systemd[1]: Mounting Kernel Debug File System...
giu 13 21:38:21 minos-b5eek systemd[1]: Mounting Kernel Trace File System...
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Create List of Static Device Nodes...
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Load Kernel Module configfs...
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Load Kernel Module dm_mod...
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Load Kernel Module drm...
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Load Kernel Module fuse...
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Load Kernel Module loop...
giu 13 21:38:21 minos-b5eek systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
giu 13 21:38:21 minos-b5eek systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Journal Service...
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Load Kernel Modules...
giu 13 21:38:21 minos-b5eek systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Remount Root and Kernel File Systems...
giu 13 21:38:21 minos-b5eek systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Load udev Rules from Credentials...
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Coldplug All udev Devices...
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Virtual Console Setup...
giu 13 21:38:21 minos-b5eek kernel: loop: module loaded
giu 13 21:38:21 minos-b5eek systemd[1]: Mounted Huge Pages File System.
giu 13 21:38:21 minos-b5eek systemd[1]: Mounted POSIX Message Queue File System.
giu 13 21:38:21 minos-b5eek systemd[1]: Mounted Kernel Debug File System.
giu 13 21:38:21 minos-b5eek systemd[1]: Mounted Kernel Trace File System.
giu 13 21:38:21 minos-b5eek systemd[1]: Finished Create List of Static Device Nodes.
giu 13 21:38:21 minos-b5eek systemd[1]: modprobe@configfs.service: Deactivated successfully.
giu 13 21:38:21 minos-b5eek systemd[1]: Finished Load Kernel Module configfs.
giu 13 21:38:21 minos-b5eek systemd[1]: modprobe@drm.service: Deactivated successfully.
giu 13 21:38:21 minos-b5eek systemd[1]: Finished Load Kernel Module drm.
giu 13 21:38:21 minos-b5eek systemd[1]: modprobe@fuse.service: Deactivated successfully.
giu 13 21:38:21 minos-b5eek systemd[1]: Finished Load Kernel Module fuse.
giu 13 21:38:21 minos-b5eek systemd[1]: modprobe@loop.service: Deactivated successfully.
giu 13 21:38:21 minos-b5eek systemd[1]: Finished Load Kernel Module loop.
giu 13 21:38:21 minos-b5eek kernel: device-mapper: uevent: version 1.0.3
giu 13 21:38:21 minos-b5eek kernel: device-mapper: ioctl: 4.49.0-ioctl (2025-01-17) initialised: dm-devel@lists.linux.dev
giu 13 21:38:21 minos-b5eek systemd[1]: Mounting FUSE Control File System...
giu 13 21:38:21 minos-b5eek systemd[1]: Mounting Kernel Configuration File System...
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
giu 13 21:38:21 minos-b5eek systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
giu 13 21:38:21 minos-b5eek systemd[1]: Finished Load Kernel Module dm_mod.
giu 13 21:38:21 minos-b5eek systemd[1]: Finished Load udev Rules from Credentials.
giu 13 21:38:21 minos-b5eek systemd[1]: Finished Virtual Console Setup.
giu 13 21:38:21 minos-b5eek systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
giu 13 21:38:21 minos-b5eek systemd[1]: Mounted FUSE Control File System.
giu 13 21:38:21 minos-b5eek systemd[1]: Mounted Kernel Configuration File System.
giu 13 21:38:21 minos-b5eek systemd-journald[477]: Collecting audit messages is disabled.
giu 13 21:38:21 minos-b5eek kernel: i2c_dev: i2c /dev entries driver
giu 13 21:38:21 minos-b5eek kernel: EXT4-fs (nvme1n1p2): re-mounted 16abd694-e9f4-4575-aced-b961ac0d3a2f.
giu 13 21:38:21 minos-b5eek systemd[1]: Finished Remount Root and Kernel File Systems.
giu 13 21:38:21 minos-b5eek systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Load/Save OS Random Seed...
giu 13 21:38:21 minos-b5eek systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
giu 13 21:38:21 minos-b5eek kernel: Asymmetric key parser 'pkcs8' registered
giu 13 21:38:21 minos-b5eek systemd[1]: Finished Load Kernel Modules.
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Apply Kernel Variables...
giu 13 21:38:21 minos-b5eek systemd[1]: Starting User Database Manager...
giu 13 21:38:21 minos-b5eek systemd[1]: Finished Load/Save OS Random Seed.
giu 13 21:38:21 minos-b5eek systemd[1]: Finished Apply Kernel Variables.
giu 13 21:38:21 minos-b5eek systemd[1]: Starting CLI Netfilter Manager...
giu 13 21:38:21 minos-b5eek systemd[1]: Finished CLI Netfilter Manager.
giu 13 21:38:21 minos-b5eek systemd[1]: Started User Database Manager.
giu 13 21:38:21 minos-b5eek systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
giu 13 21:38:21 minos-b5eek systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
giu 13 21:38:21 minos-b5eek systemd[1]: Create System Users was skipped because no trigger condition checks were met.
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Network Name Resolution...
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Network Time Synchronization...
giu 13 21:38:21 minos-b5eek systemd[1]: Starting Create Static Device Nodes in /dev...
giu 13 21:38:21 minos-b5eek systemd[1]: Started Journal Service.
giu 13 21:38:22 minos-b5eek systemd-journald[477]: Received client request to flush runtime journal.
giu 13 21:38:22 minos-b5eek systemd-journald[477]: File /var/log/journal/6826b0f4c02a44efbbe4656683d0afcd/system.journal corrupted or uncleanly shut down, renaming and replacing.
giu 13 21:38:22 minos-b5eek kernel: zram0: detected capacity change from 0 to 64436224
giu 13 21:38:22 minos-b5eek kernel: pcie_mp2_amd 0000:08:00.7: enabling device (0000 -> 0002)
giu 13 21:38:22 minos-b5eek kernel: ccp 0000:08:00.2: enabling device (0000 -> 0002)
giu 13 21:38:22 minos-b5eek kernel: ccp 0000:08:00.2: ccp: unable to access the device: you might be running a broken BIOS.
giu 13 21:38:22 minos-b5eek kernel: hid-generic 0020:1022:0001.0002: hidraw1: SENSOR HUB HID v0.00 Device [hid-amdsfh 1022:0001] on pcie_mp2_amd
giu 13 21:38:22 minos-b5eek kernel: input: PC Speaker as /devices/platform/pcspkr/input/input6
giu 13 21:38:22 minos-b5eek kernel: hid-generic 0020:1022:0001.0003: hidraw2: SENSOR HUB HID v0.00 Device [hid-amdsfh 1022:0001] on pcie_mp2_amd
giu 13 21:38:22 minos-b5eek kernel: ccp 0000:08:00.2: tee enabled
giu 13 21:38:22 minos-b5eek kernel: ccp 0000:08:00.2: psp enabled
giu 13 21:38:22 minos-b5eek kernel: hid-generic 0020:1022:0001.0004: hidraw3: SENSOR HUB HID v0.00 Device [hid-amdsfh 1022:0001] on pcie_mp2_amd
giu 13 21:38:22 minos-b5eek kernel: hid-generic 0020:1022:0001.0005: hidraw4: SENSOR HUB HID v0.00 Device [hid-amdsfh 1022:0001] on pcie_mp2_amd
giu 13 21:38:22 minos-b5eek kernel: RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
giu 13 21:38:22 minos-b5eek kernel: RAPL PMU: hw unit of domain package 2^-16 Joules
giu 13 21:38:22 minos-b5eek kernel: RAPL PMU: hw unit of domain core 2^-16 Joules
giu 13 21:38:22 minos-b5eek kernel: mc: Linux media interface: v0.10
giu 13 21:38:22 minos-b5eek kernel: Bluetooth: Core ver 2.22
giu 13 21:38:22 minos-b5eek kernel: NET: Registered PF_BLUETOOTH protocol family
giu 13 21:38:22 minos-b5eek kernel: Bluetooth: HCI device and connection manager initialized
giu 13 21:38:22 minos-b5eek kernel: Bluetooth: HCI socket layer initialized
giu 13 21:38:22 minos-b5eek kernel: Bluetooth: L2CAP socket layer initialized
giu 13 21:38:22 minos-b5eek kernel: Bluetooth: SCO socket layer initialized
giu 13 21:38:22 minos-b5eek kernel: input: gpio-keys as /devices/platform/ACPI0011:00/gpio-keys.1.auto/input/input8
giu 13 21:38:22 minos-b5eek kernel: hid-sensor-hub 0020:1022:0001.0002: hidraw1: SENSOR HUB HID v0.00 Device [hid-amdsfh 1022:0001] on pcie_mp2_amd
giu 13 21:38:22 minos-b5eek kernel: hid-sensor-hub 0020:1022:0001.0003: hidraw2: SENSOR HUB HID v0.00 Device [hid-amdsfh 1022:0001] on pcie_mp2_amd
giu 13 21:38:22 minos-b5eek kernel: hid-sensor-hub 0020:1022:0001.0004: hidraw3: SENSOR HUB HID v0.00 Device [hid-amdsfh 1022:0001] on pcie_mp2_amd
giu 13 21:38:22 minos-b5eek kernel: hid-sensor-hub 0020:1022:0001.0005: hidraw4: SENSOR HUB HID v0.00 Device [hid-amdsfh 1022:0001] on pcie_mp2_amd
giu 13 21:38:22 minos-b5eek kernel: ACPI: battery: new hook: msi-ec
giu 13 21:38:22 minos-b5eek kernel: input: PNP0C50:0e 06CB:7E7E Mouse as /devices/platform/AMDI0010:03/i2c-0/i2c-PNP0C50:0e/0018:06CB:7E7E.0006/input/input9
giu 13 21:38:22 minos-b5eek kernel: input: PNP0C50:0e 06CB:7E7E Touchpad as /devices/platform/AMDI0010:03/i2c-0/i2c-PNP0C50:0e/0018:06CB:7E7E.0006/input/input10
giu 13 21:38:22 minos-b5eek kernel: hid-generic 0018:06CB:7E7E.0006: input,hidraw5: I2C HID v1.00 Mouse [PNP0C50:0e 06CB:7E7E] on i2c-PNP0C50:0e
giu 13 21:38:22 minos-b5eek kernel: input: MSI WMI hotkeys as /devices/virtual/input/input12
giu 13 21:38:22 minos-b5eek kernel: cryptd: max_cpu_qlen set to 1000
giu 13 21:38:22 minos-b5eek kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
giu 13 21:38:22 minos-b5eek kernel: piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
giu 13 21:38:22 minos-b5eek kernel: i2c i2c-8: Successfully instantiated SPD at 0x50
giu 13 21:38:22 minos-b5eek kernel: piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
giu 13 21:38:22 minos-b5eek kernel: i2c i2c-10: Successfully instantiated SPD at 0x51
giu 13 21:38:22 minos-b5eek kernel: videodev: Linux video capture interface: v2.00
giu 13 21:38:22 minos-b5eek kernel: snd_rn_pci_acp3x 0000:08:00.5: enabling device (0000 -> 0002)
giu 13 21:38:22 minos-b5eek kernel: ee1004 8-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
giu 13 21:38:22 minos-b5eek kernel: ee1004 10-0051: probe with driver ee1004 failed with error -5
giu 13 21:38:22 minos-b5eek kernel: r8169 0000:05:00.0 eth0: RTL8168h/8111h, d8:bb:c1:f8:fe:07, XID 541, IRQ 103
giu 13 21:38:22 minos-b5eek kernel: r8169 0000:05:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
giu 13 21:38:22 minos-b5eek kernel: r8169 0000:05:00.0 enp5s0: renamed from eth0
giu 13 21:38:22 minos-b5eek kernel: input: PNP0C50:0e 06CB:7E7E Mouse as /devices/platform/AMDI0010:03/i2c-0/i2c-PNP0C50:0e/0018:06CB:7E7E.0006/input/input13
giu 13 21:38:22 minos-b5eek kernel: input: PNP0C50:0e 06CB:7E7E Touchpad as /devices/platform/AMDI0010:03/i2c-0/i2c-PNP0C50:0e/0018:06CB:7E7E.0006/input/input14
giu 13 21:38:22 minos-b5eek kernel: hid-multitouch 0018:06CB:7E7E.0006: input,hidraw5: I2C HID v1.00 Mouse [PNP0C50:0e 06CB:7E7E] on i2c-PNP0C50:0e
giu 13 21:38:22 minos-b5eek kernel: mousedev: PS/2 mouse device common for all mice
giu 13 21:38:22 minos-b5eek kernel: usbcore: registered new interface driver btusb
giu 13 21:38:22 minos-b5eek kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
giu 13 21:38:22 minos-b5eek kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
giu 13 21:38:22 minos-b5eek kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
giu 13 21:38:22 minos-b5eek kernel: Bluetooth: hci0: HW/SW Version: 0x008a008a, Build Time: 20241106151414
giu 13 21:38:22 minos-b5eek kernel: Adding 32218108k swap on /dev/zram0. Priority:100 extents:1 across:32218108k SSDsc
giu 13 21:38:22 minos-b5eek kernel: BUG: unable to handle page fault for address: 0000000000001a24
giu 13 21:38:22 minos-b5eek kernel: #PF: supervisor write access in kernel mode
giu 13 21:38:22 minos-b5eek kernel: #PF: error_code(0x0002) - not-present page
giu 13 21:38:22 minos-b5eek kernel: PGD 0 P4D 0
giu 13 21:38:22 minos-b5eek kernel: Oops: Oops: 0002 [#1] SMP NOPTI
giu 13 21:38:22 minos-b5eek kernel: CPU: 9 UID: 0 PID: 674 Comm: kworker/9:2 Not tainted 6.15.2-4-cachyos #1 PREEMPT(full) ca95e3dc6701bde24c199292292d2e693d2eaad4
giu 13 21:38:22 minos-b5eek kernel: Hardware name: Micro-Star International Co., Ltd. Alpha 15 B5EEK/MS-158L, BIOS E158LAMS.10B 05/18/2023
giu 13 21:38:22 minos-b5eek kernel: Workqueue: events amd_sfh_work [amd_sfh]
giu 13 21:38:22 minos-b5eek kernel: RIP: 0010:_raw_spin_lock_irqsave+0x27/0x50
giu 13 21:38:22 minos-b5eek kernel: Code: 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 53 9c 58 0f 1f 40 00 48 89 c3 fa 0f 1f 44 00 00 65 ff 05 c0 3e d6 01 31 c0 ba 01 00 00 00 <f0> 0f b1 17 75 09 48 89 d8 5b e9 85 af b2 fe 89 c6 e8 c3 08 00 00
giu 13 21:38:22 minos-b5eek kernel: RSP: 0018:ffffd21342a27da0 EFLAGS: 00010046
giu 13 21:38:22 minos-b5eek kernel: RAX: 0000000000000000 RBX: 0000000000000282 RCX: 0000000000000010
giu 13 21:38:22 minos-b5eek kernel: RDX: 0000000000000001 RSI: 0000000000000000 RDI: 0000000000001a24
giu 13 21:38:22 minos-b5eek kernel: RBP: 0000000000001a24 R08: 0000000000000000 R09: ffffffffc06fe800
giu 13 21:38:22 minos-b5eek kernel: R10: 000000008020001e R11: 0000000000000402 R12: 0000000000000000
giu 13 21:38:22 minos-b5eek kernel: R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
giu 13 21:38:22 minos-b5eek kernel: FS: 0000000000000000(0000) GS:ffff8af59571b000(0000) knlGS:0000000000000000
giu 13 21:38:22 minos-b5eek kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
giu 13 21:38:22 minos-b5eek kernel: CR2: 0000000000001a24 CR3: 0000000123d03000 CR4: 0000000000f50ef0
giu 13 21:38:22 minos-b5eek kernel: PKRU: 55555554
giu 13 21:38:22 minos-b5eek kernel: Call Trace:
giu 13 21:38:22 minos-b5eek kernel: <TASK>
giu 13 21:38:22 minos-b5eek kernel: down_trylock+0x17/0x40
giu 13 21:38:22 minos-b5eek kernel: hid_input_report+0x4f/0x210
giu 13 21:38:22 minos-b5eek kernel: amd_sfh_work+0xd5/0x150 [amd_sfh 6f3584f6b7a26459697ce200b92722553d1016fa]
giu 13 21:38:22 minos-b5eek kernel: process_one_work+0x193/0x350
giu 13 21:38:22 minos-b5eek kernel: worker_thread+0x254/0x3a0
giu 13 21:38:22 minos-b5eek kernel: ? __pfx_worker_thread+0x10/0x10
giu 13 21:38:22 minos-b5eek kernel: kthread+0xfc/0x240
giu 13 21:38:22 minos-b5eek kernel: ? __pfx_kthread+0x10/0x10
giu 13 21:38:22 minos-b5eek kernel: ret_from_fork+0x34/0x50
giu 13 21:38:22 minos-b5eek kernel: ? __pfx_kthread+0x10/0x10
giu 13 21:38:22 minos-b5eek kernel: ret_from_fork_asm+0x1a/0x30
giu 13 21:38:22 minos-b5eek kernel: </TASK>
giu 13 21:38:22 minos-b5eek kernel: Modules linked in: hid_sensor_als(+) videobuf2_vmalloc hid_sensor_prox snd_intel_sdw_acpi hid_sensor_magn_3d snd_amd_acpi_mach polyval_clmulni uvc snd_acp_legacy_common polyval_generic hid_sensor_trigger videobuf2_memops ghash_clmulni_intel industrialio_triggered_buffer snd_hda_codec snd_pci_acp6x joydev videobuf2_v4l2 sha512_ssse3 kfifo_buf mousedev snd_hda_core btusb sha256_ssse3 snd_pci_acp5x hid_sensor_iio_common ee1004 videobuf2_common snd_hwdep sha1_ssse3 btrtl cfg80211 snd_rn_pci_acp3x r8169 industrialio aesni_intel btintel snd_pcm snd_acp_config btbcm videodev crypto_simd realtek btmtk hid_multitouch snd_soc_acpi i2c_piix4 snd_timer msi_wmi cryptd mdio_devres msi_ec hid_sensor_hub gpio_keys bluetooth mc rapl sparse_keymap snd wmi_bmof psmouse pcspkr rfkill amd_sfh libphy snd_pci_acp3x ccp soundcore k10temp i2c_smbus i2c_hid_acpi soc_button_array amd_pmc i2c_hid mac_hid pkcs8_key_parser i2c_dev ntsync ec_sys crypto_user dm_mod loop nfnetlink lz4 zram 842_decompress 842_compress lz4hc_compress
giu 13 21:38:22 minos-b5eek kernel: lz4_compress ip_tables x_tables amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec gpu_sched drm_suballoc_helper drm_panel_backlight_quirks nvme drm_buddy nvme_core drm_display_helper nvme_keyring serio_raw cec video nvme_auth wmi
giu 13 21:38:22 minos-b5eek kernel: CR2: 0000000000001a24
giu 13 21:38:22 minos-b5eek kernel: ---[ end trace 0000000000000000 ]---
giu 13 21:38:22 minos-b5eek kernel: RIP: 0010:_raw_spin_lock_irqsave+0x27/0x50
giu 13 21:38:22 minos-b5eek kernel: Code: 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 53 9c 58 0f 1f 40 00 48 89 c3 fa 0f 1f 44 00 00 65 ff 05 c0 3e d6 01 31 c0 ba 01 00 00 00 <f0> 0f b1 17 75 09 48 89 d8 5b e9 85 af b2 fe 89 c6 e8 c3 08 00 00
giu 13 21:38:22 minos-b5eek kernel: RSP: 0018:ffffd21342a27da0 EFLAGS: 00010046
giu 13 21:38:22 minos-b5eek kernel: RAX: 0000000000000000 RBX: 0000000000000282 RCX: 0000000000000010
giu 13 21:38:22 minos-b5eek kernel: RDX: 0000000000000001 RSI: 0000000000000000 RDI: 0000000000001a24
giu 13 21:38:22 minos-b5eek kernel: RBP: 0000000000001a24 R08: 0000000000000000 R09: ffffffffc06fe800
giu 13 21:38:22 minos-b5eek kernel: R10: 000000008020001e R11: 0000000000000402 R12: 0000000000000000
giu 13 21:38:22 minos-b5eek kernel: R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
giu 13 21:38:22 minos-b5eek kernel: FS: 0000000000000000(0000) GS:ffff8af59571b000(0000) knlGS:0000000000000000
giu 13 21:38:22 minos-b5eek kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
giu 13 21:38:22 minos-b5eek kernel: CR2: 0000000000001a24 CR3: 0000000123d03000 CR4: 0000000000f50ef0
giu 13 21:38:22 minos-b5eek kernel: PKRU: 55555554
giu 13 21:38:22 minos-b5eek kernel: note: kworker/9:2[674] exited with irqs disabled
giu 13 21:38:22 minos-b5eek kernel: note: kworker/9:2[674] exited with preempt_count 1
giu 13 21:38:22 minos-b5eek kernel: zswap: loaded using pool zstd/zsmalloc
giu 13 21:38:22 minos-b5eek kernel: usb 1-4: Found UVC 1.00 device HD Webcam (5986:211b)
giu 13 21:38:22 minos-b5eek kernel: usbcore: registered new interface driver uvcvideo
giu 13 21:38:22 minos-b5eek kernel: kvm_amd: TSC scaling supported
giu 13 21:38:22 minos-b5eek kernel: kvm_amd: Nested Virtualization enabled
giu 13 21:38:22 minos-b5eek kernel: kvm_amd: Nested Paging enabled
giu 13 21:38:22 minos-b5eek kernel: kvm_amd: LBR virtualization supported
giu 13 21:38:22 minos-b5eek kernel: kvm_amd: Virtual VMLOAD VMSAVE supported
giu 13 21:38:22 minos-b5eek kernel: kvm_amd: Virtual GIF supported
giu 13 21:38:22 minos-b5eek kernel: Bluetooth: hci0: Device setup in 157576 usecs
giu 13 21:38:22 minos-b5eek kernel: Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
giu 13 21:38:22 minos-b5eek kernel: mt7921e 0000:04:00.0: enabling device (0000 -> 0002)
giu 13 21:38:22 minos-b5eek kernel: mt7921e 0000:04:00.0: ASIC revision: 79610010
giu 13 21:38:22 minos-b5eek kernel: intel_rapl_common: Found RAPL domain package
giu 13 21:38:22 minos-b5eek kernel: intel_rapl_common: Found RAPL domain core
giu 13 21:38:22 minos-b5eek kernel: amd_atl: AMD Address Translation Library initialized
giu 13 21:38:22 minos-b5eek kernel: Bluetooth: hci0: AOSP extensions version v1.00
giu 13 21:38:22 minos-b5eek kernel: Bluetooth: hci0: AOSP quality report is supported
giu 13 21:38:22 minos-b5eek kernel: mt7921e 0000:04:00.0: HW/SW Version: 0x8a108a10, Build Time: 20241106151007a
giu 13 21:38:22 minos-b5eek kernel: mt7921e 0000:04:00.0: WM Firmware Version: ____010000, Build Time: 20241106151045
giu 13 21:38:22 minos-b5eek kernel: [drm] PCIE GART of 512M enabled (table at 0x00000081FEB00000).
giu 13 21:38:22 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: PSP is resuming...
giu 13 21:38:22 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: reserve 0xa00000 from 0x81fd000000 for PSP TMR
giu 13 21:38:22 minos-b5eek kernel: EXT4-fs (nvme1n1p3): Using encoding defined by superblock: utf8-12.1.0 with flags 0x0
giu 13 21:38:22 minos-b5eek kernel: EXT4-fs (nvme1n1p3): mounted filesystem 5fdc484b-2f70-4c80-8a1d-15f9d04de017 r/w with ordered data mode. Quota mode: none.
giu 13 21:38:22 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
giu 13 21:38:22 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
giu 13 21:38:22 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: SMU is resuming...
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: smu driver if version = 0x0000000f, smu fw if version = 0x00000013, smu fw program = 0, version = 0x003b3100 (59.49.0)
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: SMU driver if version not matched
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: SMU is resumed successfully!
giu 13 21:38:23 minos-b5eek kernel: [drm] kiq ring mec 2 pipe 1 q 0
giu 13 21:38:23 minos-b5eek kernel: [drm] DMUB hardware initialized: version=0x02020020
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: [drm] Cannot find any crtc or sizes
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring gfx_0.1.0 uses VM inv eng 1 on hub 0
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 4 on hub 0
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 5 on hub 0
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 12 on hub 0
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 13 on hub 0
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 14 on hub 0
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 8
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 8
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
giu 13 21:38:23 minos-b5eek kernel: amdgpu 0000:03:00.0: [drm] Cannot find any crtc or sizes
giu 13 21:38:23 minos-b5eek kernel: snd_hda_intel 0000:03:00.1: enabling device (0000 -> 0002)
giu 13 21:38:23 minos-b5eek kernel: snd_hda_intel 0000:03:00.1: Handle vga_switcheroo audio client
giu 13 21:38:23 minos-b5eek kernel: snd_hda_intel 0000:03:00.1: Force to non-snoop mode
giu 13 21:38:23 minos-b5eek kernel: snd_hda_intel 0000:08:00.1: enabling device (0000 -> 0002)
giu 13 21:38:23 minos-b5eek kernel: snd_hda_intel 0000:08:00.1: Handle vga_switcheroo audio client
giu 13 21:38:23 minos-b5eek kernel: snd_hda_intel 0000:08:00.6: enabling device (0000 -> 0002)
giu 13 21:38:23 minos-b5eek kernel: snd_hda_intel 0000:08:00.1: bound 0000:08:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
giu 13 21:38:23 minos-b5eek kernel: snd_hda_intel 0000:03:00.1: bound 0000:03:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
giu 13 21:38:23 minos-b5eek kernel: Oops: general protection fault, probably for non-canonical address 0x3a1b6bea685ab5fb: 0000 [#2] SMP NOPTI
giu 13 21:38:23 minos-b5eek kernel: CPU: 8 UID: 0 PID: 595 Comm: (udev-worker) Tainted: G D 6.15.2-4-cachyos #1 PREEMPT(full) ca95e3dc6701bde24c199292292d2e693d2eaad4
giu 13 21:38:23 minos-b5eek kernel: Tainted: [D]=DIE
giu 13 21:38:23 minos-b5eek kernel: Hardware name: Micro-Star International Co., Ltd. Alpha 15 B5EEK/MS-158L, BIOS E158LAMS.10B 05/18/2023
giu 13 21:38:23 minos-b5eek kernel: RIP: 0010:__kmalloc_node_track_caller_noprof+0x1d6/0x510
giu 13 21:38:23 minos-b5eek kernel: Code: e2 e3 f7 31 48 0f a3 70 08 0f 83 15 02 00 00 4d 85 c0 0f 84 41 ff ff ff bf ff ff ff ff 41 8b 44 24 28 49 8b 34 24 4a 8d 0c 00 <49> 8b 04 00 49 33 84 24 b8 00 00 00 48 0f c9 48 31 c8 48 8d 8a 00
giu 13 21:38:23 minos-b5eek kernel: RSP: 0018:ffffd21341257660 EFLAGS: 00010246
giu 13 21:38:23 minos-b5eek kernel: RAX: 0000000000000200 RBX: 0000000000000000 RCX: 3a1b6bea685ab5fb
giu 13 21:38:23 minos-b5eek kernel: RDX: 0000000000382008 RSI: ffffffffb915c160 RDI: 00000000ffffffff
giu 13 21:38:23 minos-b5eek kernel: RBP: ffffd213412576d0 R08: 3a1b6bea685ab3fb R09: 0000000000000010
giu 13 21:38:23 minos-b5eek kernel: R10: 0000000000000210 R11: ffffffffb73b230a R12: ffff8aee80042b00
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000210 R14: 00000000ffffffff R15: 0000000000000cc0
giu 13 21:38:23 minos-b5eek kernel: FS: 00007f6993a92880(0000) GS:ffff8af5956db000(0000) knlGS:0000000000000000
giu 13 21:38:23 minos-b5eek kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
giu 13 21:38:23 minos-b5eek kernel: CR2: 00007f15d6904780 CR3: 0000000106c10000 CR4: 0000000000f50ef0
giu 13 21:38:23 minos-b5eek kernel: PKRU: 55555554
giu 13 21:38:23 minos-b5eek kernel: Call Trace:
giu 13 21:38:23 minos-b5eek kernel: <TASK>
giu 13 21:38:23 minos-b5eek kernel: ? snd_array_new+0x68/0xf0 [snd_hda_core d17ec3780d3f292849caf95a49006cf55c6c3b4a]
giu 13 21:38:23 minos-b5eek kernel: ? krealloc_noprof+0x21d/0x330
giu 13 21:38:23 minos-b5eek kernel: krealloc_noprof+0x21d/0x330
giu 13 21:38:23 minos-b5eek kernel: snd_array_new+0x68/0xf0 [snd_hda_core d17ec3780d3f292849caf95a49006cf55c6c3b4a]
giu 13 21:38:23 minos-b5eek kernel: snd_hda_create_dig_out_ctls+0x1e0/0x3d0 [snd_hda_codec 93ef5220a0ef48b979b09d58cbcad685b301d7ff]
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? snd_device_new+0x4b/0xf0 [snd f2f2005e9fa7791f710e2938e619c0ed75610312]
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? snd_jack_new+0x161/0x2b0 [snd f2f2005e9fa7791f710e2938e619c0ed75610312]
giu 13 21:38:23 minos-b5eek kernel: generic_hdmi_build_controls+0x117/0x2d0 [snd_hda_codec_hdmi abd7d8c6bce27f031c7498e3f1bc29449e05b46f]
giu 13 21:38:23 minos-b5eek kernel: ? codec_exec_verb+0x88/0x1b0 [snd_hda_codec 93ef5220a0ef48b979b09d58cbcad685b301d7ff]
giu 13 21:38:23 minos-b5eek kernel: snd_hda_codec_build_controls+0x84/0x2b0 [snd_hda_codec 93ef5220a0ef48b979b09d58cbcad685b301d7ff]
giu 13 21:38:23 minos-b5eek kernel: ? snd_hda_codec_build_pcms+0x163/0x200 [snd_hda_codec 93ef5220a0ef48b979b09d58cbcad685b301d7ff]
giu 13 21:38:23 minos-b5eek kernel: hda_codec_driver_probe+0xe4/0x1f0 [snd_hda_codec 93ef5220a0ef48b979b09d58cbcad685b301d7ff]
giu 13 21:38:23 minos-b5eek kernel: ? driver_sysfs_add+0x59/0xd0
giu 13 21:38:23 minos-b5eek kernel: really_probe+0xde/0x3b0
giu 13 21:38:23 minos-b5eek kernel: ? pm_runtime_barrier+0x55/0x90
giu 13 21:38:23 minos-b5eek kernel: ? __pfx___driver_attach+0x10/0x10
giu 13 21:38:23 minos-b5eek kernel: __driver_probe_device+0x78/0x140
giu 13 21:38:23 minos-b5eek kernel: __driver_attach+0xa0/0x320
giu 13 21:38:23 minos-b5eek kernel: bus_for_each_dev+0x10b/0x160
giu 13 21:38:23 minos-b5eek kernel: bus_add_driver+0x141/0x280
giu 13 21:38:23 minos-b5eek kernel: ? __pfx_hdmi_driver_init+0x10/0x10 [snd_hda_codec_hdmi abd7d8c6bce27f031c7498e3f1bc29449e05b46f]
giu 13 21:38:23 minos-b5eek kernel: driver_register+0x75/0xe0
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: do_one_initcall+0x5b/0x300
giu 13 21:38:23 minos-b5eek kernel: do_init_module+0x62/0x240
giu 13 21:38:23 minos-b5eek kernel: init_module_from_file+0x8a/0xe0
giu 13 21:38:23 minos-b5eek kernel: idempotent_init_module+0x114/0x310
giu 13 21:38:23 minos-b5eek kernel: __x64_sys_finit_module+0x63/0xc0
giu 13 21:38:23 minos-b5eek kernel: do_syscall_64+0x7b/0x810
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? switch_fpu_return+0x4e/0xd0
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? syscall_exit_to_user_mode+0x1d7/0x210
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? do_syscall_64+0x87/0x810
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? syscall_exit_to_user_mode+0x10/0x210
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? do_syscall_64+0x87/0x810
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? __x64_sys_openat+0xe5/0x210
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? syscall_exit_to_user_mode+0x10/0x210
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? do_syscall_64+0x87/0x810
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? vfs_read+0x2fa/0x4a0
giu 13 21:38:23 minos-b5eek kernel: ? __mod_memcg_state+0xae/0x1b0
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? __x64_sys_read+0x70/0xe0
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? syscall_exit_to_user_mode+0x10/0x210
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? do_syscall_64+0x87/0x810
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? kmem_cache_free+0x46d/0x4c0
giu 13 21:38:23 minos-b5eek kernel: ? __x64_sys_close+0x89/0x100
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? syscall_exit_to_user_mode+0x10/0x210
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? do_syscall_64+0x87/0x810
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? exc_page_fault+0x81/0x190
giu 13 21:38:23 minos-b5eek kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
giu 13 21:38:23 minos-b5eek kernel: RIP: 0033:0x7f6993935e0d
giu 13 21:38:23 minos-b5eek kernel: Code: ff c3 66 2e 0f 1f 84 00 00 00 00 00 90 f3 0f 1e fa 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d cb 7e 0d 00 f7 d8 64 89 01 48
giu 13 21:38:23 minos-b5eek kernel: RSP: 002b:00007ffe29928488 EFLAGS: 00000246 ORIG_RAX: 0000000000000139
giu 13 21:38:23 minos-b5eek kernel: RAX: ffffffffffffffda RBX: 000055dcd2f9efc0 RCX: 00007f6993935e0d
giu 13 21:38:23 minos-b5eek kernel: RDX: 0000000000000004 RSI: 00007f699419e2f2 RDI: 0000000000000041
giu 13 21:38:23 minos-b5eek kernel: RBP: 00007ffe29928520 R08: 0000000000000000 R09: 000055dcd2f93680
giu 13 21:38:23 minos-b5eek kernel: R10: 0000000000000000 R11: 0000000000000246 R12: 00007f699419e2f2
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000020000 R14: 000055dcd2f93840 R15: 000055dcd2f9efc0
giu 13 21:38:23 minos-b5eek kernel: </TASK>
giu 13 21:38:23 minos-b5eek kernel: Modules linked in: snd_hda_scodec_component snd_hda_codec_hdmi(+) vfat fat snd_acp_legacy_mach amd_atl snd_acp_mach intel_rapl_msr intel_rapl_common snd_soc_nau8821 snd_soc_dmic snd_acp3x_pdm_dma snd_acp3x_rn snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof mt7921e snd_sof_utils mt7921_common snd_pci_ps mt792x_lib snd_soc_acpi_amd_match mt76_connac_lib snd_amd_sdw_acpi kvm_amd mt76 soundwire_amd soundwire_generic_allocation soundwire_bus snd_soc_sdca snd_soc_core mac80211 snd_compress kvm ac97_bus snd_pcm_dmaengine snd_hda_intel snd_rpl_pci_acp6x uvcvideo irqbypass snd_intel_dspcfg snd_acp_pci libarc4 hid_sensor_als videobuf2_vmalloc hid_sensor_prox snd_intel_sdw_acpi hid_sensor_magn_3d snd_amd_acpi_mach polyval_clmulni uvc snd_acp_legacy_common polyval_generic hid_sensor_trigger videobuf2_memops ghash_clmulni_intel industrialio_triggered_buffer snd_hda_codec snd_pci_acp6x joydev videobuf2_v4l2
giu 13 21:38:23 minos-b5eek kernel: sha512_ssse3 kfifo_buf mousedev snd_hda_core btusb sha256_ssse3 snd_pci_acp5x hid_sensor_iio_common ee1004 videobuf2_common snd_hwdep sha1_ssse3 btrtl cfg80211 snd_rn_pci_acp3x r8169 industrialio aesni_intel btintel snd_pcm snd_acp_config btbcm videodev crypto_simd realtek btmtk hid_multitouch snd_soc_acpi i2c_piix4 snd_timer msi_wmi cryptd mdio_devres msi_ec hid_sensor_hub gpio_keys bluetooth mc rapl sparse_keymap snd wmi_bmof psmouse pcspkr rfkill amd_sfh libphy snd_pci_acp3x ccp soundcore k10temp i2c_smbus i2c_hid_acpi soc_button_array amd_pmc i2c_hid mac_hid pkcs8_key_parser i2c_dev ntsync ec_sys crypto_user dm_mod loop nfnetlink lz4 zram 842_decompress 842_compress lz4hc_compress lz4_compress ip_tables x_tables amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec gpu_sched drm_suballoc_helper drm_panel_backlight_quirks nvme drm_buddy nvme_core drm_display_helper nvme_keyring serio_raw cec video nvme_auth wmi
giu 13 21:38:23 minos-b5eek kernel: ---[ end trace 0000000000000000 ]---
giu 13 21:38:23 minos-b5eek kernel: RIP: 0010:_raw_spin_lock_irqsave+0x27/0x50
giu 13 21:38:23 minos-b5eek kernel: Code: 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 53 9c 58 0f 1f 40 00 48 89 c3 fa 0f 1f 44 00 00 65 ff 05 c0 3e d6 01 31 c0 ba 01 00 00 00 <f0> 0f b1 17 75 09 48 89 d8 5b e9 85 af b2 fe 89 c6 e8 c3 08 00 00
giu 13 21:38:23 minos-b5eek kernel: RSP: 0018:ffffd21342a27da0 EFLAGS: 00010046
giu 13 21:38:23 minos-b5eek kernel: RAX: 0000000000000000 RBX: 0000000000000282 RCX: 0000000000000010
giu 13 21:38:23 minos-b5eek kernel: RDX: 0000000000000001 RSI: 0000000000000000 RDI: 0000000000001a24
giu 13 21:38:23 minos-b5eek kernel: RBP: 0000000000001a24 R08: 0000000000000000 R09: ffffffffc06fe800
giu 13 21:38:23 minos-b5eek kernel: R10: 000000008020001e R11: 0000000000000402 R12: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: FS: 00007f6993a92880(0000) GS:ffff8af5956db000(0000) knlGS:0000000000000000
giu 13 21:38:23 minos-b5eek kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
giu 13 21:38:23 minos-b5eek kernel: CR2: 00007f15d6904780 CR3: 0000000106c10000 CR4: 0000000000f50ef0
giu 13 21:38:23 minos-b5eek kernel: PKRU: 55555554
giu 13 21:38:23 minos-b5eek kernel: snd_hda_codec_realtek hdaudioC3D0: autoconfig for ALC256: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
giu 13 21:38:23 minos-b5eek kernel: snd_hda_codec_realtek hdaudioC3D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
giu 13 21:38:23 minos-b5eek kernel: snd_hda_codec_realtek hdaudioC3D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
giu 13 21:38:23 minos-b5eek kernel: snd_hda_codec_realtek hdaudioC3D0: mono: mono_out=0x0
giu 13 21:38:23 minos-b5eek kernel: snd_hda_codec_realtek hdaudioC3D0: inputs:
giu 13 21:38:23 minos-b5eek kernel: snd_hda_codec_realtek hdaudioC3D0: Mic=0x19
giu 13 21:38:23 minos-b5eek kernel: Oops: general protection fault, probably for non-canonical address 0x3a1b6bea685ab5fb: 0000 [#3] SMP NOPTI
giu 13 21:38:23 minos-b5eek kernel: CPU: 8 UID: 0 PID: 721 Comm: (rd-agent) Tainted: G D 6.15.2-4-cachyos #1 PREEMPT(full) ca95e3dc6701bde24c199292292d2e693d2eaad4
giu 13 21:38:23 minos-b5eek kernel: Tainted: [D]=DIE
giu 13 21:38:23 minos-b5eek kernel: Hardware name: Micro-Star International Co., Ltd. Alpha 15 B5EEK/MS-158L, BIOS E158LAMS.10B 05/18/2023
giu 13 21:38:23 minos-b5eek kernel: RIP: 0010:__kmalloc_noprof+0x1da/0x4e0
giu 13 21:38:23 minos-b5eek kernel: Code: 00 00 00 c4 e2 e3 f7 31 48 0f a3 70 08 0f 83 ca 01 00 00 4d 85 c0 0f 84 49 ff ff ff bf ff ff ff ff 41 8b 44 24 28 49 8b 34 24 <4d> 8b 0c 00 4a 8d 0c 00 4d 33 8c 24 b8 00 00 00 4c 89 c0 48 0f c9
giu 13 21:38:23 minos-b5eek kernel: RSP: 0018:ffffd21343ebfc50 EFLAGS: 00010246
giu 13 21:38:23 minos-b5eek kernel: RAX: 0000000000000200 RBX: 0000000000000310 RCX: fffff5440424c000
giu 13 21:38:23 minos-b5eek kernel: RDX: 0000000000382008 RSI: ffffffffb915c160 RDI: 00000000ffffffff
giu 13 21:38:23 minos-b5eek kernel: RBP: ffffd21343ebfcb0 R08: 3a1b6bea685ab3fb R09: ffff8aee8b915500
giu 13 21:38:23 minos-b5eek kernel: R10: ffffd21343ebfcc8 R11: ffff8aeeb429d540 R12: ffff8aee80042b00
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000310 R14: 0000000000000310 R15: 0000000000000cc0
giu 13 21:38:23 minos-b5eek kernel: FS: 00007fad17a98880(0000) GS:ffff8af5956db000(0000) knlGS:0000000000000000
giu 13 21:38:23 minos-b5eek kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
giu 13 21:38:23 minos-b5eek kernel: CR2: 00007f15d6904780 CR3: 0000000137e04000 CR4: 0000000000f50ef0
giu 13 21:38:23 minos-b5eek kernel: PKRU: 55555554
giu 13 21:38:23 minos-b5eek kernel: Call Trace:
giu 13 21:38:23 minos-b5eek kernel: <TASK>
giu 13 21:38:23 minos-b5eek kernel: ? load_elf_phdrs+0x49/0xb0
giu 13 21:38:23 minos-b5eek kernel: ? load_elf_phdrs+0x49/0xb0
giu 13 21:38:23 minos-b5eek kernel: load_elf_phdrs+0x49/0xb0
giu 13 21:38:23 minos-b5eek kernel: load_elf_binary+0x80/0x18d0
giu 13 21:38:23 minos-b5eek kernel: ? __kernel_read+0x212/0x300
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? __kernel_read+0x212/0x300
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: bprm_execve.part.0+0x278/0x4d0
giu 13 21:38:23 minos-b5eek kernel: __x64_sys_execve+0x207/0x250
giu 13 21:38:23 minos-b5eek kernel: do_syscall_64+0x7b/0x810
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? handle_mm_fault+0x1d5/0x2e0
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? do_user_addr_fault+0x3be/0x910
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? exc_page_fault+0x81/0x190
giu 13 21:38:23 minos-b5eek kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
giu 13 21:38:23 minos-b5eek kernel: RIP: 0033:0x7fad172f682b
giu 13 21:38:23 minos-b5eek kernel: Code: 0f 1e fa 48 8b 05 95 77 11 00 48 8b 10 e9 0d 00 00 00 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 f3 0f 1e fa b8 3b 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d ad 74 11 00 f7 d8 64 89 01 48
giu 13 21:38:23 minos-b5eek kernel: RSP: 002b:00007ffe92391e98 EFLAGS: 00000206 ORIG_RAX: 000000000000003b
giu 13 21:38:23 minos-b5eek kernel: RAX: ffffffffffffffda RBX: 00007ffe92392430 RCX: 00007fad172f682b
giu 13 21:38:23 minos-b5eek kernel: RDX: 0000559453e3af60 RSI: 0000559453e3b400 RDI: 0000559453e3b3d0
giu 13 21:38:23 minos-b5eek kernel: RBP: 00007ffe92391ea0 R08: 0000000000000000 R09: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: R10: 0000000000000000 R11: 0000000000000206 R12: 00007ffe92392540
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000000 R14: 00007ffe9239213c R15: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: </TASK>
giu 13 21:38:23 minos-b5eek kernel: Modules linked in: snd_hda_codec_realtek(+) snd_hda_codec_generic snd_hda_scodec_component snd_hda_codec_hdmi(+) vfat fat snd_acp_legacy_mach amd_atl snd_acp_mach intel_rapl_msr intel_rapl_common snd_soc_nau8821 snd_soc_dmic snd_acp3x_pdm_dma snd_acp3x_rn snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof mt7921e snd_sof_utils mt7921_common snd_pci_ps mt792x_lib snd_soc_acpi_amd_match mt76_connac_lib snd_amd_sdw_acpi kvm_amd mt76 soundwire_amd soundwire_generic_allocation soundwire_bus snd_soc_sdca snd_soc_core mac80211 snd_compress kvm ac97_bus snd_pcm_dmaengine snd_hda_intel snd_rpl_pci_acp6x uvcvideo irqbypass snd_intel_dspcfg snd_acp_pci libarc4 hid_sensor_als videobuf2_vmalloc hid_sensor_prox snd_intel_sdw_acpi hid_sensor_magn_3d snd_amd_acpi_mach polyval_clmulni uvc snd_acp_legacy_common polyval_generic hid_sensor_trigger videobuf2_memops ghash_clmulni_intel industrialio_triggered_buffer snd_hda_codec
giu 13 21:38:23 minos-b5eek kernel: snd_pci_acp6x joydev videobuf2_v4l2 sha512_ssse3 kfifo_buf mousedev snd_hda_core btusb sha256_ssse3 snd_pci_acp5x hid_sensor_iio_common ee1004 videobuf2_common snd_hwdep sha1_ssse3 btrtl cfg80211 snd_rn_pci_acp3x r8169 industrialio aesni_intel btintel snd_pcm snd_acp_config btbcm videodev crypto_simd realtek btmtk hid_multitouch snd_soc_acpi i2c_piix4 snd_timer msi_wmi cryptd mdio_devres msi_ec hid_sensor_hub gpio_keys bluetooth mc rapl sparse_keymap snd wmi_bmof psmouse pcspkr rfkill amd_sfh libphy snd_pci_acp3x ccp soundcore k10temp i2c_smbus i2c_hid_acpi soc_button_array amd_pmc i2c_hid mac_hid pkcs8_key_parser i2c_dev ntsync ec_sys crypto_user dm_mod loop nfnetlink lz4 zram 842_decompress 842_compress lz4hc_compress lz4_compress ip_tables x_tables amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec gpu_sched drm_suballoc_helper drm_panel_backlight_quirks nvme drm_buddy nvme_core drm_display_helper nvme_keyring serio_raw cec video nvme_auth wmi
giu 13 21:38:23 minos-b5eek kernel: ---[ end trace 0000000000000000 ]---
giu 13 21:38:23 minos-b5eek kernel: RIP: 0010:_raw_spin_lock_irqsave+0x27/0x50
giu 13 21:38:23 minos-b5eek kernel: Code: 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 53 9c 58 0f 1f 40 00 48 89 c3 fa 0f 1f 44 00 00 65 ff 05 c0 3e d6 01 31 c0 ba 01 00 00 00 <f0> 0f b1 17 75 09 48 89 d8 5b e9 85 af b2 fe 89 c6 e8 c3 08 00 00
giu 13 21:38:23 minos-b5eek kernel: RSP: 0018:ffffd21342a27da0 EFLAGS: 00010046
giu 13 21:38:23 minos-b5eek kernel: RAX: 0000000000000000 RBX: 0000000000000282 RCX: 0000000000000010
giu 13 21:38:23 minos-b5eek kernel: RDX: 0000000000000001 RSI: 0000000000000000 RDI: 0000000000001a24
giu 13 21:38:23 minos-b5eek kernel: RBP: 0000000000001a24 R08: 0000000000000000 R09: ffffffffc06fe800
giu 13 21:38:23 minos-b5eek kernel: R10: 000000008020001e R11: 0000000000000402 R12: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: FS: 00007fad17a98880(0000) GS:ffff8af5956db000(0000) knlGS:0000000000000000
giu 13 21:38:23 minos-b5eek kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
giu 13 21:38:23 minos-b5eek kernel: CR2: 00007f15d6904780 CR3: 0000000137e04000 CR4: 0000000000f50ef0
giu 13 21:38:23 minos-b5eek kernel: PKRU: 55555554
giu 13 21:38:23 minos-b5eek kernel: Oops: general protection fault, probably for non-canonical address 0x3a1b6bea685ab5fb: 0000 [#4] SMP NOPTI
giu 13 21:38:23 minos-b5eek kernel: CPU: 8 UID: 0 PID: 730 Comm: (rd-agent) Tainted: G D 6.15.2-4-cachyos #1 PREEMPT(full) ca95e3dc6701bde24c199292292d2e693d2eaad4
giu 13 21:38:23 minos-b5eek kernel: Tainted: [D]=DIE
giu 13 21:38:23 minos-b5eek kernel: Hardware name: Micro-Star International Co., Ltd. Alpha 15 B5EEK/MS-158L, BIOS E158LAMS.10B 05/18/2023
giu 13 21:38:23 minos-b5eek kernel: RIP: 0010:__kmalloc_noprof+0x1da/0x4e0
giu 13 21:38:23 minos-b5eek kernel: Code: 00 00 00 c4 e2 e3 f7 31 48 0f a3 70 08 0f 83 ca 01 00 00 4d 85 c0 0f 84 49 ff ff ff bf ff ff ff ff 41 8b 44 24 28 49 8b 34 24 <4d> 8b 0c 00 4a 8d 0c 00 4d 33 8c 24 b8 00 00 00 4c 89 c0 48 0f c9
giu 13 21:38:23 minos-b5eek kernel: RSP: 0018:ffffd21343f3bcc0 EFLAGS: 00010246
giu 13 21:38:23 minos-b5eek kernel: RAX: 0000000000000200 RBX: 0000000000000310 RCX: fffff5440424c000
giu 13 21:38:23 minos-b5eek kernel: RDX: 0000000000382008 RSI: ffffffffb915c160 RDI: 00000000ffffffff
giu 13 21:38:23 minos-b5eek kernel: RBP: ffffd21343f3bd20 R08: 3a1b6bea685ab3fb R09: ffff8aee8b915500
giu 13 21:38:23 minos-b5eek kernel: R10: ffffd21343f3bd38 R11: ffff8aee880c0040 R12: ffff8aee80042b00
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000310 R14: 0000000000000310 R15: 0000000000000cc0
giu 13 21:38:23 minos-b5eek kernel: FS: 00007efdcc69c880(0000) GS:ffff8af5956db000(0000) knlGS:0000000000000000
giu 13 21:38:23 minos-b5eek kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
giu 13 21:38:23 minos-b5eek kernel: CR2: 00007fa8922a3450 CR3: 0000000137127000 CR4: 0000000000f50ef0
giu 13 21:38:23 minos-b5eek kernel: PKRU: 55555554
giu 13 21:38:23 minos-b5eek kernel: Call Trace:
giu 13 21:38:23 minos-b5eek kernel: <TASK>
giu 13 21:38:23 minos-b5eek kernel: ? load_elf_phdrs+0x49/0xb0
giu 13 21:38:23 minos-b5eek kernel: ? load_elf_phdrs+0x49/0xb0
giu 13 21:38:23 minos-b5eek kernel: load_elf_phdrs+0x49/0xb0
giu 13 21:38:23 minos-b5eek kernel: load_elf_binary+0x80/0x18d0
giu 13 21:38:23 minos-b5eek kernel: ? __kernel_read+0x212/0x300
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? __kernel_read+0x212/0x300
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: bprm_execve.part.0+0x278/0x4d0
giu 13 21:38:23 minos-b5eek kernel: __x64_sys_execve+0x207/0x250
giu 13 21:38:23 minos-b5eek kernel: do_syscall_64+0x7b/0x810
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? exc_page_fault+0x81/0x190
giu 13 21:38:23 minos-b5eek kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
giu 13 21:38:23 minos-b5eek kernel: RIP: 0033:0x7efdcbef682b
giu 13 21:38:23 minos-b5eek kernel: Code: 0f 1e fa 48 8b 05 95 77 11 00 48 8b 10 e9 0d 00 00 00 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 f3 0f 1e fa b8 3b 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d ad 74 11 00 f7 d8 64 89 01 48
giu 13 21:38:23 minos-b5eek kernel: RSP: 002b:00007ffdac4f0fa8 EFLAGS: 00000206 ORIG_RAX: 000000000000003b
giu 13 21:38:23 minos-b5eek kernel: RAX: ffffffffffffffda RBX: 00007ffdac4f1540 RCX: 00007efdcbef682b
giu 13 21:38:23 minos-b5eek kernel: RDX: 000055591b388f60 RSI: 000055591b389400 RDI: 000055591b3893d0
giu 13 21:38:23 minos-b5eek kernel: RBP: 00007ffdac4f0fb0 R08: 0000000000000000 R09: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: R10: 0000000000000000 R11: 0000000000000206 R12: 00007ffdac4f1650
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000000 R14: 00007ffdac4f124c R15: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: </TASK>
giu 13 21:38:23 minos-b5eek kernel: Modules linked in: snd_hda_codec_realtek(+) snd_hda_codec_generic snd_hda_scodec_component snd_hda_codec_hdmi(+) vfat fat snd_acp_legacy_mach amd_atl snd_acp_mach intel_rapl_msr intel_rapl_common snd_soc_nau8821 snd_soc_dmic snd_acp3x_pdm_dma snd_acp3x_rn snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof mt7921e snd_sof_utils mt7921_common snd_pci_ps mt792x_lib snd_soc_acpi_amd_match mt76_connac_lib snd_amd_sdw_acpi kvm_amd mt76 soundwire_amd soundwire_generic_allocation soundwire_bus snd_soc_sdca snd_soc_core mac80211 snd_compress kvm ac97_bus snd_pcm_dmaengine snd_hda_intel snd_rpl_pci_acp6x uvcvideo irqbypass snd_intel_dspcfg snd_acp_pci libarc4 hid_sensor_als videobuf2_vmalloc hid_sensor_prox snd_intel_sdw_acpi hid_sensor_magn_3d snd_amd_acpi_mach polyval_clmulni uvc snd_acp_legacy_common polyval_generic hid_sensor_trigger videobuf2_memops ghash_clmulni_intel industrialio_triggered_buffer snd_hda_codec
giu 13 21:38:23 minos-b5eek kernel: snd_pci_acp6x joydev videobuf2_v4l2 sha512_ssse3 kfifo_buf mousedev snd_hda_core btusb sha256_ssse3 snd_pci_acp5x hid_sensor_iio_common ee1004 videobuf2_common snd_hwdep sha1_ssse3 btrtl cfg80211 snd_rn_pci_acp3x r8169 industrialio aesni_intel btintel snd_pcm snd_acp_config btbcm videodev crypto_simd realtek btmtk hid_multitouch snd_soc_acpi i2c_piix4 snd_timer msi_wmi cryptd mdio_devres msi_ec hid_sensor_hub gpio_keys bluetooth mc rapl sparse_keymap snd wmi_bmof psmouse pcspkr rfkill amd_sfh libphy snd_pci_acp3x ccp soundcore k10temp i2c_smbus i2c_hid_acpi soc_button_array amd_pmc i2c_hid mac_hid pkcs8_key_parser i2c_dev ntsync ec_sys crypto_user dm_mod loop nfnetlink lz4 zram 842_decompress 842_compress lz4hc_compress lz4_compress ip_tables x_tables amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec gpu_sched drm_suballoc_helper drm_panel_backlight_quirks nvme drm_buddy nvme_core drm_display_helper nvme_keyring serio_raw cec video nvme_auth wmi
giu 13 21:38:23 minos-b5eek kernel: ---[ end trace 0000000000000000 ]---
giu 13 21:38:23 minos-b5eek kernel: RIP: 0010:_raw_spin_lock_irqsave+0x27/0x50
giu 13 21:38:23 minos-b5eek kernel: Code: 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 53 9c 58 0f 1f 40 00 48 89 c3 fa 0f 1f 44 00 00 65 ff 05 c0 3e d6 01 31 c0 ba 01 00 00 00 <f0> 0f b1 17 75 09 48 89 d8 5b e9 85 af b2 fe 89 c6 e8 c3 08 00 00
giu 13 21:38:23 minos-b5eek kernel: RSP: 0018:ffffd21342a27da0 EFLAGS: 00010046
giu 13 21:38:23 minos-b5eek kernel: RAX: 0000000000000000 RBX: 0000000000000282 RCX: 0000000000000010
giu 13 21:38:23 minos-b5eek kernel: RDX: 0000000000000001 RSI: 0000000000000000 RDI: 0000000000001a24
giu 13 21:38:23 minos-b5eek kernel: RBP: 0000000000001a24 R08: 0000000000000000 R09: ffffffffc06fe800
giu 13 21:38:23 minos-b5eek kernel: R10: 000000008020001e R11: 0000000000000402 R12: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: FS: 00007efdcc69c880(0000) GS:ffff8af5956db000(0000) knlGS:0000000000000000
giu 13 21:38:23 minos-b5eek kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
giu 13 21:38:23 minos-b5eek kernel: CR2: 00007fa8922a3450 CR3: 0000000137127000 CR4: 0000000000f50ef0
giu 13 21:38:23 minos-b5eek kernel: PKRU: 55555554
giu 13 21:38:23 minos-b5eek kernel: BUG: Bad rss-counter state mm:0000000008f62593 type:MM_ANONPAGES val:1
giu 13 21:38:23 minos-b5eek kernel: Oops: general protection fault, probably for non-canonical address 0x3a1b6bea685ab5fb: 0000 [#5] SMP NOPTI
giu 13 21:38:23 minos-b5eek kernel: CPU: 8 UID: 0 PID: 732 Comm: (rd-agent) Tainted: G D 6.15.2-4-cachyos #1 PREEMPT(full) ca95e3dc6701bde24c199292292d2e693d2eaad4
giu 13 21:38:23 minos-b5eek kernel: Tainted: [D]=DIE
giu 13 21:38:23 minos-b5eek kernel: Hardware name: Micro-Star International Co., Ltd. Alpha 15 B5EEK/MS-158L, BIOS E158LAMS.10B 05/18/2023
giu 13 21:38:23 minos-b5eek kernel: RIP: 0010:__kmalloc_noprof+0x1da/0x4e0
giu 13 21:38:23 minos-b5eek kernel: Code: 00 00 00 c4 e2 e3 f7 31 48 0f a3 70 08 0f 83 ca 01 00 00 4d 85 c0 0f 84 49 ff ff ff bf ff ff ff ff 41 8b 44 24 28 49 8b 34 24 <4d> 8b 0c 00 4a 8d 0c 00 4d 33 8c 24 b8 00 00 00 4c 89 c0 48 0f c9
giu 13 21:38:23 minos-b5eek kernel: RSP: 0018:ffffd21343f43c30 EFLAGS: 00010246
giu 13 21:38:23 minos-b5eek kernel: RAX: 0000000000000200 RBX: 0000000000000310 RCX: fffff5440424c000
giu 13 21:38:23 minos-b5eek kernel: RDX: 0000000000382008 RSI: ffffffffb915c160 RDI: 00000000ffffffff
giu 13 21:38:23 minos-b5eek kernel: RBP: ffffd21343f43c90 R08: 3a1b6bea685ab3fb R09: ffff8aee8b915500
giu 13 21:38:23 minos-b5eek kernel: R10: ffffd21343f43ca8 R11: ffff8aeeb429c280 R12: ffff8aee80042b00
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000310 R14: 0000000000000310 R15: 0000000000000cc0
giu 13 21:38:23 minos-b5eek kernel: FS: 00007f87c708e880(0000) GS:ffff8af5956db000(0000) knlGS:0000000000000000
giu 13 21:38:23 minos-b5eek kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
giu 13 21:38:23 minos-b5eek kernel: CR2: 00007fa8922a3450 CR3: 0000000106ca8000 CR4: 0000000000f50ef0
giu 13 21:38:23 minos-b5eek kernel: PKRU: 55555554
giu 13 21:38:23 minos-b5eek kernel: Call Trace:
giu 13 21:38:23 minos-b5eek kernel: <TASK>
giu 13 21:38:23 minos-b5eek kernel: ? load_elf_phdrs+0x49/0xb0
giu 13 21:38:23 minos-b5eek kernel: ? load_elf_phdrs+0x49/0xb0
giu 13 21:38:23 minos-b5eek kernel: load_elf_phdrs+0x49/0xb0
giu 13 21:38:23 minos-b5eek kernel: load_elf_binary+0x80/0x18d0
giu 13 21:38:23 minos-b5eek kernel: ? __kernel_read+0x212/0x300
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? __kernel_read+0x212/0x300
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: bprm_execve.part.0+0x278/0x4d0
giu 13 21:38:23 minos-b5eek kernel: __x64_sys_execve+0x207/0x250
giu 13 21:38:23 minos-b5eek kernel: do_syscall_64+0x7b/0x810
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? __x64_sys_write+0xcc/0xe0
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? syscall_exit_to_user_mode+0x10/0x210
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? do_syscall_64+0x87/0x810
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? exc_page_fault+0x81/0x190
giu 13 21:38:23 minos-b5eek kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
giu 13 21:38:23 minos-b5eek kernel: RIP: 0033:0x7f87c68f682b
giu 13 21:38:23 minos-b5eek kernel: Code: 0f 1e fa 48 8b 05 95 77 11 00 48 8b 10 e9 0d 00 00 00 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 f3 0f 1e fa b8 3b 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d ad 74 11 00 f7 d8 64 89 01 48
giu 13 21:38:23 minos-b5eek kernel: RSP: 002b:00007ffe1de6b218 EFLAGS: 00000206 ORIG_RAX: 000000000000003b
giu 13 21:38:23 minos-b5eek kernel: RAX: ffffffffffffffda RBX: 00007ffe1de6b7b0 RCX: 00007f87c68f682b
giu 13 21:38:23 minos-b5eek kernel: RDX: 000055cfd99e6f60 RSI: 000055cfd99e7400 RDI: 000055cfd99e73d0
giu 13 21:38:23 minos-b5eek kernel: RBP: 00007ffe1de6b220 R08: 0000000000000000 R09: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: R10: 0000000000000000 R11: 0000000000000206 R12: 00007ffe1de6b8c0
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000000 R14: 00007ffe1de6b4bc R15: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: </TASK>
giu 13 21:38:23 minos-b5eek kernel: Modules linked in: snd_hda_codec_realtek(+) snd_hda_codec_generic snd_hda_scodec_component snd_hda_codec_hdmi(+) vfat fat snd_acp_legacy_mach amd_atl snd_acp_mach intel_rapl_msr intel_rapl_common snd_soc_nau8821 snd_soc_dmic snd_acp3x_pdm_dma snd_acp3x_rn snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof mt7921e snd_sof_utils mt7921_common snd_pci_ps mt792x_lib snd_soc_acpi_amd_match mt76_connac_lib snd_amd_sdw_acpi kvm_amd mt76 soundwire_amd soundwire_generic_allocation soundwire_bus snd_soc_sdca snd_soc_core mac80211 snd_compress kvm ac97_bus snd_pcm_dmaengine snd_hda_intel snd_rpl_pci_acp6x uvcvideo irqbypass snd_intel_dspcfg snd_acp_pci libarc4 hid_sensor_als videobuf2_vmalloc hid_sensor_prox snd_intel_sdw_acpi hid_sensor_magn_3d snd_amd_acpi_mach polyval_clmulni uvc snd_acp_legacy_common polyval_generic hid_sensor_trigger videobuf2_memops ghash_clmulni_intel industrialio_triggered_buffer snd_hda_codec
giu 13 21:38:23 minos-b5eek kernel: snd_pci_acp6x joydev videobuf2_v4l2 sha512_ssse3 kfifo_buf mousedev snd_hda_core btusb sha256_ssse3 snd_pci_acp5x hid_sensor_iio_common ee1004 videobuf2_common snd_hwdep sha1_ssse3 btrtl cfg80211 snd_rn_pci_acp3x r8169 industrialio aesni_intel btintel snd_pcm snd_acp_config btbcm videodev crypto_simd realtek btmtk hid_multitouch snd_soc_acpi i2c_piix4 snd_timer msi_wmi cryptd mdio_devres msi_ec hid_sensor_hub gpio_keys bluetooth mc rapl sparse_keymap snd wmi_bmof psmouse pcspkr rfkill amd_sfh libphy snd_pci_acp3x ccp soundcore k10temp i2c_smbus i2c_hid_acpi soc_button_array amd_pmc i2c_hid mac_hid pkcs8_key_parser i2c_dev ntsync ec_sys crypto_user dm_mod loop nfnetlink lz4 zram 842_decompress 842_compress lz4hc_compress lz4_compress ip_tables x_tables amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec gpu_sched drm_suballoc_helper drm_panel_backlight_quirks nvme drm_buddy nvme_core drm_display_helper nvme_keyring serio_raw cec video nvme_auth wmi
giu 13 21:38:23 minos-b5eek kernel: ---[ end trace 0000000000000000 ]---
giu 13 21:38:23 minos-b5eek kernel: RIP: 0010:_raw_spin_lock_irqsave+0x27/0x50
giu 13 21:38:23 minos-b5eek kernel: Code: 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 53 9c 58 0f 1f 40 00 48 89 c3 fa 0f 1f 44 00 00 65 ff 05 c0 3e d6 01 31 c0 ba 01 00 00 00 <f0> 0f b1 17 75 09 48 89 d8 5b e9 85 af b2 fe 89 c6 e8 c3 08 00 00
giu 13 21:38:23 minos-b5eek kernel: RSP: 0018:ffffd21342a27da0 EFLAGS: 00010046
giu 13 21:38:23 minos-b5eek kernel: RAX: 0000000000000000 RBX: 0000000000000282 RCX: 0000000000000010
giu 13 21:38:23 minos-b5eek kernel: RDX: 0000000000000001 RSI: 0000000000000000 RDI: 0000000000001a24
giu 13 21:38:23 minos-b5eek kernel: RBP: 0000000000001a24 R08: 0000000000000000 R09: ffffffffc06fe800
giu 13 21:38:23 minos-b5eek kernel: R10: 000000008020001e R11: 0000000000000402 R12: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: FS: 00007f87c708e880(0000) GS:ffff8af5956db000(0000) knlGS:0000000000000000
giu 13 21:38:23 minos-b5eek kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
giu 13 21:38:23 minos-b5eek kernel: CR2: 00007fa8922a3450 CR3: 0000000106ca8000 CR4: 0000000000f50ef0
giu 13 21:38:23 minos-b5eek kernel: PKRU: 55555554
giu 13 21:38:23 minos-b5eek kernel: BUG: Bad rss-counter state mm:000000005927c480 type:MM_ANONPAGES val:1
giu 13 21:38:23 minos-b5eek kernel: Oops: general protection fault, probably for non-canonical address 0x3a1b6bea685ab5fb: 0000 [#6] SMP NOPTI
giu 13 21:38:23 minos-b5eek kernel: CPU: 8 UID: 0 PID: 735 Comm: (rd-agent) Tainted: G D 6.15.2-4-cachyos #1 PREEMPT(full) ca95e3dc6701bde24c199292292d2e693d2eaad4
giu 13 21:38:23 minos-b5eek kernel: Tainted: [D]=DIE
giu 13 21:38:23 minos-b5eek kernel: Hardware name: Micro-Star International Co., Ltd. Alpha 15 B5EEK/MS-158L, BIOS E158LAMS.10B 05/18/2023
giu 13 21:38:23 minos-b5eek kernel: RIP: 0010:__kmalloc_noprof+0x1da/0x4e0
giu 13 21:38:23 minos-b5eek kernel: Code: 00 00 00 c4 e2 e3 f7 31 48 0f a3 70 08 0f 83 ca 01 00 00 4d 85 c0 0f 84 49 ff ff ff bf ff ff ff ff 41 8b 44 24 28 49 8b 34 24 <4d> 8b 0c 00 4a 8d 0c 00 4d 33 8c 24 b8 00 00 00 4c 89 c0 48 0f c9
giu 13 21:38:23 minos-b5eek kernel: RSP: 0018:ffffd21343ffbc20 EFLAGS: 00010246
giu 13 21:38:23 minos-b5eek kernel: RAX: 0000000000000200 RBX: 0000000000000310 RCX: fffff5440424c000
giu 13 21:38:23 minos-b5eek kernel: RDX: 0000000000382008 RSI: ffffffffb915c160 RDI: 00000000ffffffff
giu 13 21:38:23 minos-b5eek kernel: RBP: ffffd21343ffbc80 R08: 3a1b6bea685ab3fb R09: ffff8aee8b915500
giu 13 21:38:23 minos-b5eek kernel: R10: ffffd21343ffbc98 R11: ffff8aee880c1240 R12: ffff8aee80042b00
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000310 R14: 0000000000000310 R15: 0000000000000cc0
giu 13 21:38:23 minos-b5eek kernel: FS: 00007f5316481880(0000) GS:ffff8af5956db000(0000) knlGS:0000000000000000
giu 13 21:38:23 minos-b5eek kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
giu 13 21:38:23 minos-b5eek kernel: CR2: 00007fa8922a3450 CR3: 0000000135aa1000 CR4: 0000000000f50ef0
giu 13 21:38:23 minos-b5eek kernel: PKRU: 55555554
giu 13 21:38:23 minos-b5eek kernel: Call Trace:
giu 13 21:38:23 minos-b5eek kernel: <TASK>
giu 13 21:38:23 minos-b5eek kernel: ? load_elf_phdrs+0x49/0xb0
giu 13 21:38:23 minos-b5eek kernel: ? load_elf_phdrs+0x49/0xb0
giu 13 21:38:23 minos-b5eek kernel: load_elf_phdrs+0x49/0xb0
giu 13 21:38:23 minos-b5eek kernel: load_elf_binary+0x80/0x18d0
giu 13 21:38:23 minos-b5eek kernel: ? __kernel_read+0x212/0x300
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? __kernel_read+0x212/0x300
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: bprm_execve.part.0+0x278/0x4d0
giu 13 21:38:23 minos-b5eek kernel: __x64_sys_execve+0x207/0x250
giu 13 21:38:23 minos-b5eek kernel: do_syscall_64+0x7b/0x810
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? __count_memcg_events+0xb0/0x150
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? count_memcg_events.constprop.0+0x1a/0x30
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? handle_mm_fault+0x1d5/0x2e0
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? do_user_addr_fault+0x3be/0x910
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? exc_page_fault+0x81/0x190
giu 13 21:38:23 minos-b5eek kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
giu 13 21:38:23 minos-b5eek kernel: RIP: 0033:0x7f5315cf682b
giu 13 21:38:23 minos-b5eek kernel: Code: 0f 1e fa 48 8b 05 95 77 11 00 48 8b 10 e9 0d 00 00 00 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 f3 0f 1e fa b8 3b 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d ad 74 11 00 f7 d8 64 89 01 48
giu 13 21:38:23 minos-b5eek kernel: RSP: 002b:00007ffdb753a338 EFLAGS: 00000206 ORIG_RAX: 000000000000003b
giu 13 21:38:23 minos-b5eek kernel: RAX: ffffffffffffffda RBX: 00007ffdb753a8d0 RCX: 00007f5315cf682b
giu 13 21:38:23 minos-b5eek kernel: RDX: 0000560c33861f60 RSI: 0000560c33862400 RDI: 0000560c338623d0
giu 13 21:38:23 minos-b5eek kernel: RBP: 00007ffdb753a340 R08: 0000000000000000 R09: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: R10: 0000000000000000 R11: 0000000000000206 R12: 00007ffdb753a9e0
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000000 R14: 00007ffdb753a5dc R15: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: </TASK>
giu 13 21:38:23 minos-b5eek kernel: Modules linked in: snd_hda_codec_realtek(+) snd_hda_codec_generic snd_hda_scodec_component snd_hda_codec_hdmi(+) vfat fat snd_acp_legacy_mach amd_atl snd_acp_mach intel_rapl_msr intel_rapl_common snd_soc_nau8821 snd_soc_dmic snd_acp3x_pdm_dma snd_acp3x_rn snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof mt7921e snd_sof_utils mt7921_common snd_pci_ps mt792x_lib snd_soc_acpi_amd_match mt76_connac_lib snd_amd_sdw_acpi kvm_amd mt76 soundwire_amd soundwire_generic_allocation soundwire_bus snd_soc_sdca snd_soc_core mac80211 snd_compress kvm ac97_bus snd_pcm_dmaengine snd_hda_intel snd_rpl_pci_acp6x uvcvideo irqbypass snd_intel_dspcfg snd_acp_pci libarc4 hid_sensor_als videobuf2_vmalloc hid_sensor_prox snd_intel_sdw_acpi hid_sensor_magn_3d snd_amd_acpi_mach polyval_clmulni uvc snd_acp_legacy_common polyval_generic hid_sensor_trigger videobuf2_memops ghash_clmulni_intel industrialio_triggered_buffer snd_hda_codec
giu 13 21:38:23 minos-b5eek kernel: snd_pci_acp6x joydev videobuf2_v4l2 sha512_ssse3 kfifo_buf mousedev snd_hda_core btusb sha256_ssse3 snd_pci_acp5x hid_sensor_iio_common ee1004 videobuf2_common snd_hwdep sha1_ssse3 btrtl cfg80211 snd_rn_pci_acp3x r8169 industrialio aesni_intel btintel snd_pcm snd_acp_config btbcm videodev crypto_simd realtek btmtk hid_multitouch snd_soc_acpi i2c_piix4 snd_timer msi_wmi cryptd mdio_devres msi_ec hid_sensor_hub gpio_keys bluetooth mc rapl sparse_keymap snd wmi_bmof psmouse pcspkr rfkill amd_sfh libphy snd_pci_acp3x ccp soundcore k10temp i2c_smbus i2c_hid_acpi soc_button_array amd_pmc i2c_hid mac_hid pkcs8_key_parser i2c_dev ntsync ec_sys crypto_user dm_mod loop nfnetlink lz4 zram 842_decompress 842_compress lz4hc_compress lz4_compress ip_tables x_tables amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec gpu_sched drm_suballoc_helper drm_panel_backlight_quirks nvme drm_buddy nvme_core drm_display_helper nvme_keyring serio_raw cec video nvme_auth wmi
giu 13 21:38:23 minos-b5eek kernel: ---[ end trace 0000000000000000 ]---
giu 13 21:38:23 minos-b5eek kernel: RIP: 0010:_raw_spin_lock_irqsave+0x27/0x50
giu 13 21:38:23 minos-b5eek kernel: Code: 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 53 9c 58 0f 1f 40 00 48 89 c3 fa 0f 1f 44 00 00 65 ff 05 c0 3e d6 01 31 c0 ba 01 00 00 00 <f0> 0f b1 17 75 09 48 89 d8 5b e9 85 af b2 fe 89 c6 e8 c3 08 00 00
giu 13 21:38:23 minos-b5eek kernel: RSP: 0018:ffffd21342a27da0 EFLAGS: 00010046
giu 13 21:38:23 minos-b5eek kernel: RAX: 0000000000000000 RBX: 0000000000000282 RCX: 0000000000000010
giu 13 21:38:23 minos-b5eek kernel: RDX: 0000000000000001 RSI: 0000000000000000 RDI: 0000000000001a24
giu 13 21:38:23 minos-b5eek kernel: RBP: 0000000000001a24 R08: 0000000000000000 R09: ffffffffc06fe800
giu 13 21:38:23 minos-b5eek kernel: R10: 000000008020001e R11: 0000000000000402 R12: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: FS: 00007f5316481880(0000) GS:ffff8af5956db000(0000) knlGS:0000000000000000
giu 13 21:38:23 minos-b5eek kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
giu 13 21:38:23 minos-b5eek kernel: CR2: 00007fa8922a3450 CR3: 0000000135aa1000 CR4: 0000000000f50ef0
giu 13 21:38:23 minos-b5eek kernel: PKRU: 55555554
giu 13 21:38:23 minos-b5eek kernel: BUG: Bad rss-counter state mm:00000000a286bb01 type:MM_ANONPAGES val:1
giu 13 21:38:23 minos-b5eek kernel: input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:08.1/0000:08:00.6/sound/card3/input21
giu 13 21:38:23 minos-b5eek kernel: input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:08.1/0000:08:00.6/sound/card3/input22
giu 13 21:38:23 minos-b5eek kernel: Oops: general protection fault, probably for non-canonical address 0x3a1b6bea685ab5fb: 0000 [#7] SMP NOPTI
giu 13 21:38:23 minos-b5eek kernel: CPU: 8 UID: 0 PID: 745 Comm: (modprobe) Tainted: G D 6.15.2-4-cachyos #1 PREEMPT(full) ca95e3dc6701bde24c199292292d2e693d2eaad4
giu 13 21:38:23 minos-b5eek kernel: Tainted: [D]=DIE
giu 13 21:38:23 minos-b5eek kernel: Hardware name: Micro-Star International Co., Ltd. Alpha 15 B5EEK/MS-158L, BIOS E158LAMS.10B 05/18/2023
giu 13 21:38:23 minos-b5eek kernel: RIP: 0010:__kmalloc_noprof+0x1da/0x4e0
giu 13 21:38:23 minos-b5eek kernel: Code: 00 00 00 c4 e2 e3 f7 31 48 0f a3 70 08 0f 83 ca 01 00 00 4d 85 c0 0f 84 49 ff ff ff bf ff ff ff ff 41 8b 44 24 28 49 8b 34 24 <4d> 8b 0c 00 4a 8d 0c 00 4d 33 8c 24 b8 00 00 00 4c 89 c0 48 0f c9
giu 13 21:38:23 minos-b5eek kernel: RSP: 0018:ffffd21343f1fb10 EFLAGS: 00010246
giu 13 21:38:23 minos-b5eek kernel: RAX: 0000000000000200 RBX: 0000000000000310 RCX: fffff5440424c000
giu 13 21:38:23 minos-b5eek kernel: RDX: 0000000000382008 RSI: ffffffffb915c160 RDI: 00000000ffffffff
giu 13 21:38:23 minos-b5eek kernel: RBP: ffffd21343f1fb70 R08: 3a1b6bea685ab3fb R09: ffff8aee88d78e40
giu 13 21:38:23 minos-b5eek kernel: R10: ffffd21343f1fb88 R11: ffff8aee87ff5840 R12: ffff8aee80042b00
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000310 R14: 0000000000000310 R15: 0000000000000cc0
giu 13 21:38:23 minos-b5eek kernel: FS: 00007f8d6fa81880(0000) GS:ffff8af5956db000(0000) knlGS:0000000000000000
giu 13 21:38:23 minos-b5eek kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
giu 13 21:38:23 minos-b5eek kernel: CR2: 000055dcd2f8f218 CR3: 0000000108591000 CR4: 0000000000f50ef0
giu 13 21:38:23 minos-b5eek kernel: PKRU: 55555554
giu 13 21:38:23 minos-b5eek kernel: Call Trace:
giu 13 21:38:23 minos-b5eek kernel: <TASK>
giu 13 21:38:23 minos-b5eek kernel: ? load_elf_phdrs+0x49/0xb0
giu 13 21:38:23 minos-b5eek kernel: ? load_elf_phdrs+0x49/0xb0
giu 13 21:38:23 minos-b5eek kernel: load_elf_phdrs+0x49/0xb0
giu 13 21:38:23 minos-b5eek kernel: load_elf_binary+0x80/0x18d0
giu 13 21:38:23 minos-b5eek kernel: ? __kernel_read+0x212/0x300
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? __kernel_read+0x212/0x300
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: bprm_execve.part.0+0x278/0x4d0
giu 13 21:38:23 minos-b5eek kernel: __x64_sys_execve+0x207/0x250
giu 13 21:38:23 minos-b5eek kernel: do_syscall_64+0x7b/0x810
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? __x64_sys_write+0xcc/0xe0
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? syscall_exit_to_user_mode+0x10/0x210
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? do_syscall_64+0x87/0x810
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? __count_memcg_events+0xb0/0x150
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? count_memcg_events.constprop.0+0x1a/0x30
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? handle_mm_fault+0x1d5/0x2e0
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? do_user_addr_fault+0x3be/0x910
giu 13 21:38:23 minos-b5eek kernel: ? srso_alias_return_thunk+0x5/0xfbef5
giu 13 21:38:23 minos-b5eek kernel: ? exc_page_fault+0x81/0x190
giu 13 21:38:23 minos-b5eek kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
giu 13 21:38:23 minos-b5eek kernel: RIP: 0033:0x7f8d6f2f682b
giu 13 21:38:23 minos-b5eek kernel: Code: 0f 1e fa 48 8b 05 95 77 11 00 48 8b 10 e9 0d 00 00 00 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 f3 0f 1e fa b8 3b 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d ad 74 11 00 f7 d8 64 89 01 48
giu 13 21:38:23 minos-b5eek kernel: RSP: 002b:00007ffd9f9581f8 EFLAGS: 00000202 ORIG_RAX: 000000000000003b
giu 13 21:38:23 minos-b5eek kernel: RAX: ffffffffffffffda RBX: 00007ffd9f958790 RCX: 00007f8d6f2f682b
giu 13 21:38:23 minos-b5eek kernel: RDX: 00005597adc72fa0 RSI: 00005597adc722b0 RDI: 00005597adc72290
giu 13 21:38:23 minos-b5eek kernel: RBP: 00007ffd9f958200 R08: 0000000000000000 R09: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: R10: 0000000000000000 R11: 0000000000000202 R12: 00007ffd9f9588a0
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000000 R14: 00007ffd9f95849c R15: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: </TASK>
giu 13 21:38:23 minos-b5eek kernel: Modules linked in: snd_ctl_led snd_hda_codec_realtek snd_hda_codec_generic snd_hda_scodec_component snd_hda_codec_hdmi(+) vfat fat snd_acp_legacy_mach amd_atl snd_acp_mach intel_rapl_msr intel_rapl_common snd_soc_nau8821 snd_soc_dmic snd_acp3x_pdm_dma snd_acp3x_rn snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof mt7921e snd_sof_utils mt7921_common snd_pci_ps mt792x_lib snd_soc_acpi_amd_match mt76_connac_lib snd_amd_sdw_acpi kvm_amd mt76 soundwire_amd soundwire_generic_allocation soundwire_bus snd_soc_sdca snd_soc_core mac80211 snd_compress kvm ac97_bus snd_pcm_dmaengine snd_hda_intel snd_rpl_pci_acp6x uvcvideo irqbypass snd_intel_dspcfg snd_acp_pci libarc4 hid_sensor_als videobuf2_vmalloc hid_sensor_prox snd_intel_sdw_acpi hid_sensor_magn_3d snd_amd_acpi_mach polyval_clmulni uvc snd_acp_legacy_common polyval_generic hid_sensor_trigger videobuf2_memops ghash_clmulni_intel industrialio_triggered_buffer
giu 13 21:38:23 minos-b5eek kernel: snd_hda_codec snd_pci_acp6x joydev videobuf2_v4l2 sha512_ssse3 kfifo_buf mousedev snd_hda_core btusb sha256_ssse3 snd_pci_acp5x hid_sensor_iio_common ee1004 videobuf2_common snd_hwdep sha1_ssse3 btrtl cfg80211 snd_rn_pci_acp3x r8169 industrialio aesni_intel btintel snd_pcm snd_acp_config btbcm videodev crypto_simd realtek btmtk hid_multitouch snd_soc_acpi i2c_piix4 snd_timer msi_wmi cryptd mdio_devres msi_ec hid_sensor_hub gpio_keys bluetooth mc rapl sparse_keymap snd wmi_bmof psmouse pcspkr rfkill amd_sfh libphy snd_pci_acp3x ccp soundcore k10temp i2c_smbus i2c_hid_acpi soc_button_array amd_pmc i2c_hid mac_hid pkcs8_key_parser i2c_dev ntsync ec_sys crypto_user dm_mod loop nfnetlink lz4 zram 842_decompress 842_compress lz4hc_compress lz4_compress ip_tables x_tables amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec gpu_sched drm_suballoc_helper drm_panel_backlight_quirks nvme drm_buddy nvme_core drm_display_helper nvme_keyring serio_raw cec video nvme_auth wmi
giu 13 21:38:23 minos-b5eek kernel: ---[ end trace 0000000000000000 ]---
giu 13 21:38:23 minos-b5eek kernel: RIP: 0010:_raw_spin_lock_irqsave+0x27/0x50
giu 13 21:38:23 minos-b5eek kernel: Code: 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 53 9c 58 0f 1f 40 00 48 89 c3 fa 0f 1f 44 00 00 65 ff 05 c0 3e d6 01 31 c0 ba 01 00 00 00 <f0> 0f b1 17 75 09 48 89 d8 5b e9 85 af b2 fe 89 c6 e8 c3 08 00 00
giu 13 21:38:23 minos-b5eek kernel: RSP: 0018:ffffd21342a27da0 EFLAGS: 00010046
giu 13 21:38:23 minos-b5eek kernel: RAX: 0000000000000000 RBX: 0000000000000282 RCX: 0000000000000010
giu 13 21:38:23 minos-b5eek kernel: RDX: 0000000000000001 RSI: 0000000000000000 RDI: 0000000000001a24
giu 13 21:38:23 minos-b5eek kernel: RBP: 0000000000001a24 R08: 0000000000000000 R09: ffffffffc06fe800
giu 13 21:38:23 minos-b5eek kernel: R10: 000000008020001e R11: 0000000000000402 R12: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
giu 13 21:38:23 minos-b5eek kernel: FS: 00007f8d6fa81880(0000) GS:ffff8af5956db000(0000) knlGS:0000000000000000
giu 13 21:38:23 minos-b5eek kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
giu 13 21:38:23 minos-b5eek kernel: CR2: 000055dcd2f8f218 CR3: 0000000108591000 CR4: 0000000000f50ef0
giu 13 21:38:23 minos-b5eek kernel: PKRU: 55555554
giu 13 21:38:23 minos-b5eek kernel: BUG: Bad rss-counter state mm:00000000e016f362 type:MM_ANONPAGES val:1
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] HID: amd_sfh: Enable operating mode
2025-06-14 6:51 ` Eric Naim
@ 2025-06-16 20:46 ` Limonciello, Mario
2025-06-18 17:00 ` Eric Naim
0 siblings, 1 reply; 8+ messages in thread
From: Limonciello, Mario @ 2025-06-16 20:46 UTC (permalink / raw)
To: Eric Naim, Natikar, Basavaraj, jikos@kernel.org,
bentiss@kernel.org, Denis Benato
Cc: linux-input@vger.kernel.org, MukundShetty, Akshata,
Pananchikkal, Renjith
On 6/14/25 1:51 AM, Eric Naim wrote:
> On 6/13/25 21:46, Mario Limonciello wrote:
>> On 6/9/2025 3:21 PM, Mario Limonciello wrote:
>>> +Denis
>>>
>>> On 5/27/2025 4:10 AM, Basavaraj Natikar wrote:
>>>> Add changes to enable operating modes in the driver to allow the FW to
>>>> activate and retrieve data from relevant sensors. This enables the FW to
>>>> take necessary actions based on the operating modes.
>>>>
>>>> Co-developed-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
>>>> Signed-off-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
>>>> Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
>>>
>>> Comparing this to the series that was submitted by Denis [1] I notice that the main tangible difference is that this isn't exported into the HID descriptor. So how does userspace know the current operating mode with this patch?
>>>
>>> Link: https://lore.kernel.org/linux-input/20250309194934.1759953-2- benato.denis96@gmail.com/ [1]
>>
>> Recently a bug report came in: https://bugzilla.kernel.org/show_bug.cgi?id=220224
>>
>> It was very weird because it advertised a tablet mode switch which I believe comes from the patch that I linked being added to a downstream kernel. So there appears to be problems with the descriptor from that patch.
>>
>> Considering this, I think what you're doing is fine for now; appears firmware is notified on tablet mode.
>
> Unfortunately this version of the patch is also causing problems for the user above. Attached is their journal log with the kernel traces. See [1] for the GitHub issue.
>
I looked through the patch and I have a theory on the problem. Is the
issue that MAX_HID_DEVICES wasn't incremented?
Because previously there was only "6" kinda before and now this is a 7th.
This incremental diff would fix it if so.
diff --git a/drivers/hid/amd-sfh-hid/amd_sfh_hid.h
b/drivers/hid/amd-sfh-hid/amd_sfh_hid.h
index 1c91be8daeddf..7452b03029538 100644
--- a/drivers/hid/amd-sfh-hid/amd_sfh_hid.h
+++ b/drivers/hid/amd-sfh-hid/amd_sfh_hid.h
@@ -11,7 +11,7 @@
#ifndef AMDSFH_HID_H
#define AMDSFH_HID_H
-#define MAX_HID_DEVICES 6
+#define MAX_HID_DEVICES 7
#define AMD_SFH_HID_VENDOR 0x1022
#define AMD_SFH_HID_PRODUCT 0x0001
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] HID: amd_sfh: Enable operating mode
2025-06-16 20:46 ` Limonciello, Mario
@ 2025-06-18 17:00 ` Eric Naim
2025-06-18 17:01 ` Mario Limonciello
0 siblings, 1 reply; 8+ messages in thread
From: Eric Naim @ 2025-06-18 17:00 UTC (permalink / raw)
To: Limonciello, Mario, Natikar, Basavaraj, jikos@kernel.org,
bentiss@kernel.org, Denis Benato
Cc: linux-input@vger.kernel.org, MukundShetty, Akshata,
Pananchikkal, Renjith
On 6/17/25 03:46, Limonciello, Mario wrote:
> On 6/14/25 1:51 AM, Eric Naim wrote:
>> On 6/13/25 21:46, Mario Limonciello wrote:
>>> On 6/9/2025 3:21 PM, Mario Limonciello wrote:
>>>> +Denis
>>>>
>>>> On 5/27/2025 4:10 AM, Basavaraj Natikar wrote:
>>>>> Add changes to enable operating modes in the driver to allow the FW to
>>>>> activate and retrieve data from relevant sensors. This enables the FW to
>>>>> take necessary actions based on the operating modes.
>>>>>
>>>>> Co-developed-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
>>>>> Signed-off-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
>>>>> Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
>>>>
>>>> Comparing this to the series that was submitted by Denis [1] I notice that the main tangible difference is that this isn't exported into the HID descriptor. So how does userspace know the current operating mode with this patch?
>>>>
>>>> Link: https://lore.kernel.org/linux-input/20250309194934.1759953-2- benato.denis96@gmail.com/ [1]
>>>
>>> Recently a bug report came in: https://bugzilla.kernel.org/show_bug.cgi?id=220224
>>>
>>> It was very weird because it advertised a tablet mode switch which I believe comes from the patch that I linked being added to a downstream kernel. So there appears to be problems with the descriptor from that patch.
>>>
>>> Considering this, I think what you're doing is fine for now; appears firmware is notified on tablet mode.
>>
>> Unfortunately this version of the patch is also causing problems for the user above. Attached is their journal log with the kernel traces. See [1] for the GitHub issue.
>>
>
> I looked through the patch and I have a theory on the problem. Is the
> issue that MAX_HID_DEVICES wasn't incremented?
>
> Because previously there was only "6" kinda before and now this is a 7th.
>
> This incremental diff would fix it if so.
>
> diff --git a/drivers/hid/amd-sfh-hid/amd_sfh_hid.h
> b/drivers/hid/amd-sfh-hid/amd_sfh_hid.h
> index 1c91be8daeddf..7452b03029538 100644
> --- a/drivers/hid/amd-sfh-hid/amd_sfh_hid.h
> +++ b/drivers/hid/amd-sfh-hid/amd_sfh_hid.h
> @@ -11,7 +11,7 @@
> #ifndef AMDSFH_HID_H
> #define AMDSFH_HID_H
>
> -#define MAX_HID_DEVICES 6
> +#define MAX_HID_DEVICES 7
> #define AMD_SFH_HID_VENDOR 0x1022
> #define AMD_SFH_HID_PRODUCT 0x0001
>
Hi Mario,
This patch seems to work on top of patch in the main post here. Any other steps to proceed?
--
Regards,
Eric
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] HID: amd_sfh: Enable operating mode
2025-06-18 17:00 ` Eric Naim
@ 2025-06-18 17:01 ` Mario Limonciello
2025-06-18 17:51 ` Eric Naim
0 siblings, 1 reply; 8+ messages in thread
From: Mario Limonciello @ 2025-06-18 17:01 UTC (permalink / raw)
To: Eric Naim, MukundShetty, Akshata
Cc: linux-input@vger.kernel.org, Pananchikkal, Renjith,
Natikar, Basavaraj, Denis Benato, jikos@kernel.org,
bentiss@kernel.org
On 6/18/2025 12:00 PM, Eric Naim wrote:
> On 6/17/25 03:46, Limonciello, Mario wrote:
>> On 6/14/25 1:51 AM, Eric Naim wrote:
>>> On 6/13/25 21:46, Mario Limonciello wrote:
>>>> On 6/9/2025 3:21 PM, Mario Limonciello wrote:
>>>>> +Denis
>>>>>
>>>>> On 5/27/2025 4:10 AM, Basavaraj Natikar wrote:
>>>>>> Add changes to enable operating modes in the driver to allow the FW to
>>>>>> activate and retrieve data from relevant sensors. This enables the FW to
>>>>>> take necessary actions based on the operating modes.
>>>>>>
>>>>>> Co-developed-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
>>>>>> Signed-off-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
>>>>>> Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
>>>>>
>>>>> Comparing this to the series that was submitted by Denis [1] I notice that the main tangible difference is that this isn't exported into the HID descriptor. So how does userspace know the current operating mode with this patch?
>>>>>
>>>>> Link: https://lore.kernel.org/linux-input/20250309194934.1759953-2- benato.denis96@gmail.com/ [1]
>>>>
>>>> Recently a bug report came in: https://bugzilla.kernel.org/show_bug.cgi?id=220224
>>>>
>>>> It was very weird because it advertised a tablet mode switch which I believe comes from the patch that I linked being added to a downstream kernel. So there appears to be problems with the descriptor from that patch.
>>>>
>>>> Considering this, I think what you're doing is fine for now; appears firmware is notified on tablet mode.
>>>
>>> Unfortunately this version of the patch is also causing problems for the user above. Attached is their journal log with the kernel traces. See [1] for the GitHub issue.
>>>
>>
>> I looked through the patch and I have a theory on the problem. Is the
>> issue that MAX_HID_DEVICES wasn't incremented?
>>
>> Because previously there was only "6" kinda before and now this is a 7th.
>>
>> This incremental diff would fix it if so.
>>
>> diff --git a/drivers/hid/amd-sfh-hid/amd_sfh_hid.h
>> b/drivers/hid/amd-sfh-hid/amd_sfh_hid.h
>> index 1c91be8daeddf..7452b03029538 100644
>> --- a/drivers/hid/amd-sfh-hid/amd_sfh_hid.h
>> +++ b/drivers/hid/amd-sfh-hid/amd_sfh_hid.h
>> @@ -11,7 +11,7 @@
>> #ifndef AMDSFH_HID_H
>> #define AMDSFH_HID_H
>>
>> -#define MAX_HID_DEVICES 6
>> +#define MAX_HID_DEVICES 7
>> #define AMD_SFH_HID_VENDOR 0x1022
>> #define AMD_SFH_HID_PRODUCT 0x0001
>>
>
> Hi Mario,
>
> This patch seems to work on top of patch in the main post here. Any other steps to proceed?
>
Eric,
That's great news!
I think Akshata just needs to spin a second version of the patch
squashing it in.
Thanks,
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] HID: amd_sfh: Enable operating mode
2025-06-18 17:01 ` Mario Limonciello
@ 2025-06-18 17:51 ` Eric Naim
0 siblings, 0 replies; 8+ messages in thread
From: Eric Naim @ 2025-06-18 17:51 UTC (permalink / raw)
To: Mario Limonciello, MukundShetty, Akshata
Cc: linux-input@vger.kernel.org, Pananchikkal, Renjith,
Natikar, Basavaraj, Denis Benato, jikos@kernel.org,
bentiss@kernel.org
On 6/19/25 00:01, Mario Limonciello wrote:
> On 6/18/2025 12:00 PM, Eric Naim wrote:
>> On 6/17/25 03:46, Limonciello, Mario wrote:
>>> On 6/14/25 1:51 AM, Eric Naim wrote:
>>>> On 6/13/25 21:46, Mario Limonciello wrote:
>>>>> On 6/9/2025 3:21 PM, Mario Limonciello wrote:
>>>>>> +Denis
>>>>>>
>>>>>> On 5/27/2025 4:10 AM, Basavaraj Natikar wrote:
>>>>>>> Add changes to enable operating modes in the driver to allow the FW to
>>>>>>> activate and retrieve data from relevant sensors. This enables the FW to
>>>>>>> take necessary actions based on the operating modes.
>>>>>>>
>>>>>>> Co-developed-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
>>>>>>> Signed-off-by: Akshata MukundShetty <akshata.mukundshetty@amd.com>
>>>>>>> Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
>>>>>>
>>>>>> Comparing this to the series that was submitted by Denis [1] I notice that the main tangible difference is that this isn't exported into the HID descriptor. So how does userspace know the current operating mode with this patch?
>>>>>>
>>>>>> Link: https://lore.kernel.org/linux-input/20250309194934.1759953-2- benato.denis96@gmail.com/ [1]
>>>>>
>>>>> Recently a bug report came in: https://bugzilla.kernel.org/show_bug.cgi?id=220224
>>>>>
>>>>> It was very weird because it advertised a tablet mode switch which I believe comes from the patch that I linked being added to a downstream kernel. So there appears to be problems with the descriptor from that patch.
>>>>>
>>>>> Considering this, I think what you're doing is fine for now; appears firmware is notified on tablet mode.
>>>>
>>>> Unfortunately this version of the patch is also causing problems for the user above. Attached is their journal log with the kernel traces. See [1] for the GitHub issue.
>>>>
>>>
>>> I looked through the patch and I have a theory on the problem. Is the
>>> issue that MAX_HID_DEVICES wasn't incremented?
>>>
>>> Because previously there was only "6" kinda before and now this is a 7th.
>>>
>>> This incremental diff would fix it if so.
>>>
>>> diff --git a/drivers/hid/amd-sfh-hid/amd_sfh_hid.h
>>> b/drivers/hid/amd-sfh-hid/amd_sfh_hid.h
>>> index 1c91be8daeddf..7452b03029538 100644
>>> --- a/drivers/hid/amd-sfh-hid/amd_sfh_hid.h
>>> +++ b/drivers/hid/amd-sfh-hid/amd_sfh_hid.h
>>> @@ -11,7 +11,7 @@
>>> #ifndef AMDSFH_HID_H
>>> #define AMDSFH_HID_H
>>>
>>> -#define MAX_HID_DEVICES 6
>>> +#define MAX_HID_DEVICES 7
>>> #define AMD_SFH_HID_VENDOR 0x1022
>>> #define AMD_SFH_HID_PRODUCT 0x0001
>>>
>>
>> Hi Mario,
>>
>> This patch seems to work on top of patch in the main post here. Any other steps to proceed?
>>
>
> Eric,
>
> That's great news!
>
> I think Akshata just needs to spin a second version of the patch squashing it in.
>
> Thanks,
One more to add to that I suppose, I had another user test this patch that was using Denis's patch, and their device has working tablet mode switching too with this patch.
Akshata, Basavaraj,
feel free to add
Tested-by: Eric Naim <dnaim@cachyos.org>
if its applicable for the next revision of the patch.
--
Regards,
Eric
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-06-18 17:52 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-27 11:10 [PATCH] HID: amd_sfh: Enable operating mode Basavaraj Natikar
2025-06-09 22:21 ` Mario Limonciello
2025-06-13 14:46 ` Mario Limonciello
2025-06-14 6:51 ` Eric Naim
2025-06-16 20:46 ` Limonciello, Mario
2025-06-18 17:00 ` Eric Naim
2025-06-18 17:01 ` Mario Limonciello
2025-06-18 17:51 ` Eric Naim
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).