1 // SPDX-License-Identifier: GPL-2.0-only
3 * Driver for Samsung Q10 and related laptops: controls the backlight
8 #include <linux/module.h>
9 #include <linux/kernel.h>
10 #include <linux/init.h>
11 #include <linux/platform_device.h>
12 #include <linux/backlight.h>
13 #include <linux/dmi.h>
14 #include <linux/acpi.h>
16 #define SAMSUNGQ10_BL_MAX_INTENSITY 7
18 static acpi_handle ec_handle;
21 module_param(force, bool, 0);
22 MODULE_PARM_DESC(force,
23 "Disable the DMI check and force the driver to be loaded");
25 static int samsungq10_bl_set_intensity(struct backlight_device *bd)
31 for (i = 0; i < SAMSUNGQ10_BL_MAX_INTENSITY; i++) {
32 status = acpi_evaluate_object(ec_handle, "_Q63", NULL, NULL);
33 if (ACPI_FAILURE(status))
36 for (i = 0; i < bd->props.brightness; i++) {
37 status = acpi_evaluate_object(ec_handle, "_Q64", NULL, NULL);
38 if (ACPI_FAILURE(status))
45 static const struct backlight_ops samsungq10_bl_ops = {
46 .update_status = samsungq10_bl_set_intensity,
49 static int samsungq10_probe(struct platform_device *pdev)
52 struct backlight_properties props;
53 struct backlight_device *bd;
55 memset(&props, 0, sizeof(struct backlight_properties));
56 props.type = BACKLIGHT_PLATFORM;
57 props.max_brightness = SAMSUNGQ10_BL_MAX_INTENSITY;
58 bd = backlight_device_register("samsung", &pdev->dev, NULL,
59 &samsungq10_bl_ops, &props);
63 platform_set_drvdata(pdev, bd);
68 static void samsungq10_remove(struct platform_device *pdev)
71 struct backlight_device *bd = platform_get_drvdata(pdev);
73 backlight_device_unregister(bd);
76 static struct platform_driver samsungq10_driver = {
78 .name = KBUILD_MODNAME,
80 .probe = samsungq10_probe,
81 .remove_new = samsungq10_remove,
84 static struct platform_device *samsungq10_device;
86 static int __init dmi_check_callback(const struct dmi_system_id *id)
88 printk(KERN_INFO KBUILD_MODNAME ": found model '%s'\n", id->ident);
92 static const struct dmi_system_id samsungq10_dmi_table[] __initconst = {
94 .ident = "Samsung Q10",
96 DMI_MATCH(DMI_SYS_VENDOR, "Samsung"),
97 DMI_MATCH(DMI_PRODUCT_NAME, "SQ10"),
99 .callback = dmi_check_callback,
102 .ident = "Samsung Q20",
104 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG Electronics"),
105 DMI_MATCH(DMI_PRODUCT_NAME, "SENS Q20"),
107 .callback = dmi_check_callback,
110 .ident = "Samsung Q25",
112 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG Electronics"),
113 DMI_MATCH(DMI_PRODUCT_NAME, "NQ25"),
115 .callback = dmi_check_callback,
118 .ident = "Dell Latitude X200",
120 DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"),
121 DMI_MATCH(DMI_PRODUCT_NAME, "X200"),
123 .callback = dmi_check_callback,
127 MODULE_DEVICE_TABLE(dmi, samsungq10_dmi_table);
129 static int __init samsungq10_init(void)
131 if (!force && !dmi_check_system(samsungq10_dmi_table))
134 ec_handle = ec_get_handle();
139 samsungq10_device = platform_create_bundle(&samsungq10_driver,
143 return PTR_ERR_OR_ZERO(samsungq10_device);
146 static void __exit samsungq10_exit(void)
148 platform_device_unregister(samsungq10_device);
149 platform_driver_unregister(&samsungq10_driver);
152 module_init(samsungq10_init);
153 module_exit(samsungq10_exit);
156 MODULE_DESCRIPTION("Samsung Q10 Driver");
157 MODULE_LICENSE("GPL");