All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paulo Sergio <pstglia@gmail.com>
To: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Cc: pstglia@android-x86.org, alsa-devel@alsa-project.org,
	patch@alsa-project.org
Subject: Re: [PATCH] ASoC: Intel: add bytcr-wm5102 machine driver
Date: Mon, 5 Jun 2017 11:25:26 -0300	[thread overview]
Message-ID: <CAJcYhpbxWicEAOheSw9mdHibxQ2RPVQfZ4ncDvtQ5YEwtY=xWg@mail.gmail.com> (raw)
In-Reply-To: <df6f715c-5f63-9403-8dd0-13dad8f62fa6@linux.intel.com>

Hi Pierre,how are you?

>> +static int is_byt_cr(struct device *dev, struct sst_acpi_mach *mach, bool
>> *bytcr)
>>   {
>>         int status = 0;
>>   +     /* Lenovo Yoga2 exception - acpi_ipc_irq_index is the 1st index,
>> +          but iosf_mbi_read (bios_status) returns 0 for bits 26:27 */
>> +       if (!strcmp(mach->drv_name, "bytcr_wm5102")) {
>> +               *bytcr = true;
>> +               return status;
>> +       }
>
>
> well no, this isn't the right way to do this. quirks need to be based on
> real hardware information (e.g. DMI) and not a driver name.

Thanks for the review. Could I use dmi_match function inside is_byt_cr?

git diff HEAD sound/soc/intel/atom/sst/sst_acpi.c
diff --git a/sound/soc/intel/atom/sst/sst_acpi.c
b/sound/soc/intel/atom/sst/sst_acpi.c
index dd250b8..a99d5a5 100644
--- a/sound/soc/intel/atom/sst/sst_acpi.c
+++ b/sound/soc/intel/atom/sst/sst_acpi.c
@@ -244,6 +244,13 @@ static int is_byt_cr(struct device *dev, bool *bytcr)
 {
        int status = 0;

+       /* Lenovo Yoga2 exception - acpi_ipc_irq_index is the 1st index,
+          but iosf_mbi_read (bios_status) returns 0 for bits 26:27 */
+       if (dmi_match(DMI_SYS_VENDOR, "LENOVO") &&
dmi_match(DMI_CHASSIS_VERSION, "1051F")) {
+               *bytcr = true;
+               return status;
+       }
+
        if (IS_ENABLED(CONFIG_IOSF_MBI)) {
...


>
> The rest looks more of less ok, it's not clear to me if all the quirks are
> needed and make sense.

Inside machine driver code, I can confirm these as necessary:

- SSP0 usage
- 25Mhz Clock

About the other quirks: To be honest, as I started using bycr_rt5640
as base, I avoided touching other parts of the code.

I'll understand if this is not adequated to be pushed upstream.
Besides, the codec side changes (arizona/wm5102 - not sent with this
patch)
are not ready to be pushed due some hardcoding & an issue with
regulator part (arizona-code will only detected codec chip if
arizona-ldo1 is marked as built-in; as a module it is not working)

Regards
Paulo Sérgio Travaglia (Pstglia)
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel

  reply	other threads:[~2017-06-05 14:25 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-03 19:54 [PATCH] ASoC: Intel: add bytcr-wm5102 machine driver pstglia
2017-06-04 22:27 ` Pierre-Louis Bossart
2017-06-05 14:25   ` Paulo Sergio [this message]
2017-06-05 16:37     ` Pierre-Louis Bossart
2017-06-05 17:01       ` Paulo Sergio

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAJcYhpbxWicEAOheSw9mdHibxQ2RPVQfZ4ncDvtQ5YEwtY=xWg@mail.gmail.com' \
    --to=pstglia@gmail.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=patch@alsa-project.org \
    --cc=pierre-louis.bossart@linux.intel.com \
    --cc=pstglia@android-x86.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.