[alsa-devel] [PATCH] ASoC: snd_soc_set_dmi_name will use DMI_SYS_VENDOR if available

Takashi Iwai tiwai at suse.de
Tue May 2 12:41:00 CEST 2017


On Tue, 02 May 2017 12:42:05 +0200,
Mengdong Lin wrote:
> 
> Daniel and I have tested this patch on our platforms.
> 
> On 04/29/2017 12:40 AM, Pierre-Louis Bossart wrote:
> > On 4/28/17 11:19 AM, mengdong.lin at linux.intel.com wrote:
> >> From: Mengdong Lin <mengdong.lin at linux.intel.com>
> >>
> >> This fix is based on Daniel Drake's suggestion: most x86 machines have a
> >> meaningfull DMI_SYS_VENDOR rather than DMI_BOARD_VENDOR.
> >>
> >> So snd_soc_set_dmi_name will try to get vendor name from DMI_SYS_VENDOR
> >> at first, and if that's null, then use DMI_BOARD_VENDOR.
> >>
> >> Signed-off-by: Mengdong Lin <mengdong.lin at linux.intel.com>
> >>
> >> diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
> >> index 525f2f3..45f0a34 100644
> >> --- a/sound/soc/soc-core.c
> >> +++ b/sound/soc/soc-core.c
> >> @@ -1974,7 +1974,9 @@ int snd_soc_set_dmi_name(struct snd_soc_card
> >> *card, const char *flavour)
> >>          return 0; /* long name already set by driver or from DMI */
> >>
> >>      /* make up dmi long name as: vendor.product.version.board */
> >> -    vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
> >> +    vendor = dmi_get_system_info(DMI_SYS_VENDOR);
> >> +    if (!vendor)
> >> +        vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
> >
> > We should also test all of vendor.product.version.board fields for "(To
> > be filled by OEM)" and "Default String" and limit each field to 20
> > characters if you want to stick with 80 total (or a smarter rule that
> > does not truncate a field if there was room saved by the others)
> 
> Now the risk on string size seems okay. The maximum size of the
> vendor.product.version.board is about 60 characters found in my test
> for some Lenovo, DELL, ASUS, Minnowboard and Intel machines.
> 
> Usually each field has 10 ~ 20 characters. Since it's difficult to
> judge which part in the string is more important, we just copy,
> concatenate and limit the total size of the concatenated string.
> But to save size, we've stripped SPACE characters from each field to
> reduce the string size. And if a DMI field is null, it will be skipped
> without any "Default string".

Well, the two strings, "(To be filled by OEM)" and "Default String",
are known to be bogus, and actually found on many devices with
premature BIOS, so we can safely skip them.


Takashi


More information about the Alsa-devel mailing list