Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

platform/surface: aggregator_registry: Add Surface Pro 11 (QCOM)

This enables support for the Qualcomm-based Surface Pro 11.

Signed-off-by: Dale Whinham <daleyo@gmail.com>
Signed-off-by: Jérôme de Bretagne <jerome.debretagne@gmail.com>
Reviewed-by: Maximilian Luz <luzmaximilian@gmail.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Link: https://patch.msgid.link/20251220-surface-sp11-for-next-v6-3-81f7451edb77@gmail.com
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>

authored by

Dale Whinham and committed by
Ilpo Järvinen
c4a06909 7b0a5195

+18
+18
drivers/platform/surface/surface_aggregator_registry.c
··· 406 406 NULL, 407 407 }; 408 408 409 + /* Devices for Surface Pro 11 (ARM/QCOM) */ 410 + static const struct software_node *ssam_node_group_sp11[] = { 411 + &ssam_node_root, 412 + &ssam_node_hub_kip, 413 + &ssam_node_bat_ac, 414 + &ssam_node_bat_main, 415 + &ssam_node_tmp_sensors, 416 + &ssam_node_hid_kip_keyboard, 417 + &ssam_node_hid_kip_penstash, 418 + &ssam_node_hid_kip_touchpad, 419 + &ssam_node_hid_kip_fwupd, 420 + &ssam_node_hid_sam_sensors, 421 + &ssam_node_kip_tablet_switch, 422 + NULL, 423 + }; 424 + 409 425 /* -- SSAM platform/meta-hub driver. ---------------------------------------- */ 410 426 411 427 static const struct acpi_device_id ssam_platform_hub_acpi_match[] = { ··· 498 482 static const struct of_device_id ssam_platform_hub_of_match[] __maybe_unused = { 499 483 /* Surface Pro 9 5G (ARM/QCOM) */ 500 484 { .compatible = "microsoft,arcata", (void *)ssam_node_group_sp9_5g }, 485 + /* Surface Pro 11 (ARM/QCOM) */ 486 + { .compatible = "microsoft,denali", (void *)ssam_node_group_sp11 }, 501 487 /* Surface Laptop 7 */ 502 488 { .compatible = "microsoft,romulus13", (void *)ssam_node_group_sl7 }, 503 489 { .compatible = "microsoft,romulus15", (void *)ssam_node_group_sl7 },