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.

Merge tag 'platform-drivers-x86-v5.2-2' of git://git.infradead.org/linux-platform-drivers-x86

Pull x86 platform driver fixes from Andy Shevchenko:
"Some of Intel Cherrytrail based platforms depend on PMC clock to be
always on. Here are a couple of quirks to the driver to support
affected hardware"

* tag 'platform-drivers-x86-v5.2-2' of git://git.infradead.org/linux-platform-drivers-x86:
platform/x86: pmc_atom: Add several Beckhoff Automation boards to critclk_systems DMI table
platform/x86: pmc_atom: Add Lex 3I380D industrial PC to critclk_systems DMI table

+33
+33
drivers/platform/x86/pmc_atom.c
··· 398 398 */ 399 399 static const struct dmi_system_id critclk_systems[] = { 400 400 { 401 + /* pmc_plt_clk0 is used for an external HSIC USB HUB */ 401 402 .ident = "MPL CEC1x", 402 403 .matches = { 403 404 DMI_MATCH(DMI_SYS_VENDOR, "MPL AG"), 404 405 DMI_MATCH(DMI_PRODUCT_NAME, "CEC10 Family"), 406 + }, 407 + }, 408 + { 409 + /* pmc_plt_clk0 - 3 are used for the 4 ethernet controllers */ 410 + .ident = "Lex 3I380D", 411 + .matches = { 412 + DMI_MATCH(DMI_SYS_VENDOR, "Lex BayTrail"), 413 + DMI_MATCH(DMI_PRODUCT_NAME, "3I380D"), 414 + }, 415 + }, 416 + { 417 + /* pmc_plt_clk* - are used for ethernet controllers */ 418 + .ident = "Beckhoff CB3163", 419 + .matches = { 420 + DMI_MATCH(DMI_SYS_VENDOR, "Beckhoff Automation"), 421 + DMI_MATCH(DMI_BOARD_NAME, "CB3163"), 422 + }, 423 + }, 424 + { 425 + /* pmc_plt_clk* - are used for ethernet controllers */ 426 + .ident = "Beckhoff CB6263", 427 + .matches = { 428 + DMI_MATCH(DMI_SYS_VENDOR, "Beckhoff Automation"), 429 + DMI_MATCH(DMI_BOARD_NAME, "CB6263"), 430 + }, 431 + }, 432 + { 433 + /* pmc_plt_clk* - are used for ethernet controllers */ 434 + .ident = "Beckhoff CB6363", 435 + .matches = { 436 + DMI_MATCH(DMI_SYS_VENDOR, "Beckhoff Automation"), 437 + DMI_MATCH(DMI_BOARD_NAME, "CB6363"), 405 438 }, 406 439 }, 407 440 { /*sentinel*/ }