mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-19 05:04:20 +00:00
platform/x86: pcengines-apuv2: detect apuv4 board
GPIO stuff on APUv4 seems to be the same as on APUv2, so we just need to match on DMI data. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
parent
d4ac8f83da
commit
3d00da1de3
1 changed files with 27 additions and 0 deletions
|
@ -189,6 +189,33 @@ static const struct dmi_system_id apu_gpio_dmi_table[] __initconst = {
|
||||||
},
|
},
|
||||||
.driver_data = (void *)&board_apu2,
|
.driver_data = (void *)&board_apu2,
|
||||||
},
|
},
|
||||||
|
/* APU4 w/ legacy bios < 4.0.8 */
|
||||||
|
{
|
||||||
|
.ident = "apu4",
|
||||||
|
.matches = {
|
||||||
|
DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
|
||||||
|
DMI_MATCH(DMI_BOARD_NAME, "APU4")
|
||||||
|
},
|
||||||
|
.driver_data = (void *)&board_apu2,
|
||||||
|
},
|
||||||
|
/* APU4 w/ legacy bios >= 4.0.8 */
|
||||||
|
{
|
||||||
|
.ident = "apu4",
|
||||||
|
.matches = {
|
||||||
|
DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
|
||||||
|
DMI_MATCH(DMI_BOARD_NAME, "apu4")
|
||||||
|
},
|
||||||
|
.driver_data = (void *)&board_apu2,
|
||||||
|
},
|
||||||
|
/* APU4 w/ mainline bios */
|
||||||
|
{
|
||||||
|
.ident = "apu4",
|
||||||
|
.matches = {
|
||||||
|
DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
|
||||||
|
DMI_MATCH(DMI_BOARD_NAME, "PC Engines apu4")
|
||||||
|
},
|
||||||
|
.driver_data = (void *)&board_apu2,
|
||||||
|
},
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue