Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
c9aa36fa
Commit
c9aa36fa
authored
Oct 02, 2023
by
Rafael J. Wysocki
Browse files
Options
Browse Files
Download
Plain Diff
Merge back new ACPI backlight material for v6.7.
parents
f4dcf06b
2ce32625
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
8 deletions
+50
-8
drivers/acpi/video_detect.c
drivers/acpi/video_detect.c
+50
-8
No files found.
drivers/acpi/video_detect.c
View file @
c9aa36fa
...
...
@@ -229,14 +229,6 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
DMI_MATCH
(
DMI_BOARD_NAME
,
"NC210/NC110"
),
},
},
{
.
callback
=
video_detect_force_vendor
,
/* Xiaomi Mi Pad 2 */
.
matches
=
{
DMI_MATCH
(
DMI_SYS_VENDOR
,
"Xiaomi Inc"
),
DMI_MATCH
(
DMI_PRODUCT_NAME
,
"Mipad2"
),
},
},
/*
* Models which should use the vendor backlight interface,
...
...
@@ -799,6 +791,56 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
DMI_MATCH
(
DMI_PRODUCT_NAME
,
"Vostro 15 3535"
),
},
},
/*
* x86 android tablets which directly control the backlight through
* an external backlight controller, typically TI's LP8557.
* The backlight is directly controlled by the lp855x driver on these.
* This setup means that neither i915's native nor acpi_video backlight
* control works. Add a "vendor" quirk to disable both. Note these
* devices do not use vendor control in the typical meaning of
* vendor specific SMBIOS or ACPI calls being used.
*/
{
.
callback
=
video_detect_force_vendor
,
/* Lenovo Yoga Book X90F / X90L */
.
matches
=
{
DMI_EXACT_MATCH
(
DMI_SYS_VENDOR
,
"Intel Corporation"
),
DMI_EXACT_MATCH
(
DMI_PRODUCT_NAME
,
"CHERRYVIEW D1 PLATFORM"
),
DMI_EXACT_MATCH
(
DMI_PRODUCT_VERSION
,
"YETI-11"
),
},
},
{
.
callback
=
video_detect_force_vendor
,
/*
* Lenovo Yoga Tablet 2 830F/L or 1050F/L (The 8" and 10"
* Lenovo Yoga Tablet 2 use the same mainboard)
*/
.
matches
=
{
DMI_MATCH
(
DMI_SYS_VENDOR
,
"Intel Corp."
),
DMI_MATCH
(
DMI_PRODUCT_NAME
,
"VALLEYVIEW C0 PLATFORM"
),
DMI_MATCH
(
DMI_BOARD_NAME
,
"BYT-T FFD8"
),
/* Partial match on beginning of BIOS version */
DMI_MATCH
(
DMI_BIOS_VERSION
,
"BLADE_21"
),
},
},
{
.
callback
=
video_detect_force_vendor
,
/* Lenovo Yoga Tab 3 Pro YT3-X90F */
.
matches
=
{
DMI_MATCH
(
DMI_SYS_VENDOR
,
"Intel Corporation"
),
DMI_MATCH
(
DMI_PRODUCT_NAME
,
"CHERRYVIEW D1 PLATFORM"
),
DMI_MATCH
(
DMI_PRODUCT_VERSION
,
"Blade3-10A-001"
),
},
},
{
.
callback
=
video_detect_force_vendor
,
/* Xiaomi Mi Pad 2 */
.
matches
=
{
DMI_MATCH
(
DMI_SYS_VENDOR
,
"Xiaomi Inc"
),
DMI_MATCH
(
DMI_PRODUCT_NAME
,
"Mipad2"
),
},
},
{
},
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment