2022-12-13 17:49:06

by Moises Cardona

[permalink] [raw]
Subject: [PATCH] Add HP Stream 8 to bytcr_rt5640.c

The HP Stream 8 tablet is identical to the HP Stream 7 in terms of the PCB,
with the exception of the added SIM Card Slot.
Therefore, I'm submitting this patch which properly initializes the audio
and enables the headphone jack to work, just like it does in the
HP Stream 7.

Signed-off-by: Moises Cardona <[email protected]>
---
sound/soc/intel/boards/bytcr_rt5640.c | 11 +++++++++++
1 file changed, 11 insertions(+)

diff --git a/sound/soc/intel/boards/bytcr_rt5640.c b/sound/soc/intel/boards/bytcr_rt5640.c
index fb9d9e271845..1d964b1ceff4 100644
--- a/sound/soc/intel/boards/bytcr_rt5640.c
+++ b/sound/soc/intel/boards/bytcr_rt5640.c
@@ -796,6 +796,17 @@ static const struct dmi_system_id byt_rt5640_quirk_table[] = {
BYT_RT5640_SSP0_AIF1 |
BYT_RT5640_MCLK_EN),
},
+ { /* HP Stream 8 */
+ .matches = {
+ DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
+ DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "HP Stream 8 Tablet"),
+ },
+ .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
+ BYT_RT5640_MONO_SPEAKER |
+ BYT_RT5640_JD_NOT_INV |
+ BYT_RT5640_SSP0_AIF1 |
+ BYT_RT5640_MCLK_EN),
+ },
{ /* I.T.Works TW891 */
.matches = {
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "To be filled by O.E.M."),
--
2.37.2


2022-12-14 09:29:53

by Hans de Goede

[permalink] [raw]
Subject: Re: [PATCH] Add HP Stream 8 to bytcr_rt5640.c

Hello Moises,

On 12/13/22 18:35, Moises Cardona wrote:
> The HP Stream 8 tablet is identical to the HP Stream 7 in terms of the PCB,
> with the exception of the added SIM Card Slot.
> Therefore, I'm submitting this patch which properly initializes the audio
> and enables the headphone jack to work, just like it does in the
> HP Stream 7.
>
> Signed-off-by: Moises Cardona <[email protected]>

Thank you for your patch.

According to this review:

http://techlife101.com/hp-stream-8-review/

The Stream 8 has 2 speakers, so you should drop the
BYT_RT5640_MONO_SPEAKER part so that both speakers
will be used.

Regards,

Hans



> ---
> sound/soc/intel/boards/bytcr_rt5640.c | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
> diff --git a/sound/soc/intel/boards/bytcr_rt5640.c b/sound/soc/intel/boards/bytcr_rt5640.c
> index fb9d9e271845..1d964b1ceff4 100644
> --- a/sound/soc/intel/boards/bytcr_rt5640.c
> +++ b/sound/soc/intel/boards/bytcr_rt5640.c
> @@ -796,6 +796,17 @@ static const struct dmi_system_id byt_rt5640_quirk_table[] = {
> BYT_RT5640_SSP0_AIF1 |
> BYT_RT5640_MCLK_EN),
> },
> + { /* HP Stream 8 */
> + .matches = {
> + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
> + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "HP Stream 8 Tablet"),
> + },
> + .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
> + BYT_RT5640_MONO_SPEAKER |
> + BYT_RT5640_JD_NOT_INV |
> + BYT_RT5640_SSP0_AIF1 |
> + BYT_RT5640_MCLK_EN),
> + },
> { /* I.T.Works TW891 */
> .matches = {
> DMI_EXACT_MATCH(DMI_SYS_VENDOR, "To be filled by O.E.M."),

2022-12-14 14:39:13

by Pierre-Louis Bossart

[permalink] [raw]
Subject: Re: [PATCH] Add HP Stream 8 to bytcr_rt5640.c



On 12/13/22 11:35, Moises Cardona wrote:
> The HP Stream 8 tablet is identical to the HP Stream 7 in terms of the PCB,
> with the exception of the added SIM Card Slot.
> Therefore, I'm submitting this patch which properly initializes the audio
> and enables the headphone jack to work, just like it does in the
> HP Stream 7.
>
> Signed-off-by: Moises Cardona <[email protected]>

Acked-by: Pierre-Louis Bossart <[email protected]>

> ---
> sound/soc/intel/boards/bytcr_rt5640.c | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
> diff --git a/sound/soc/intel/boards/bytcr_rt5640.c b/sound/soc/intel/boards/bytcr_rt5640.c
> index fb9d9e271845..1d964b1ceff4 100644
> --- a/sound/soc/intel/boards/bytcr_rt5640.c
> +++ b/sound/soc/intel/boards/bytcr_rt5640.c
> @@ -796,6 +796,17 @@ static const struct dmi_system_id byt_rt5640_quirk_table[] = {
> BYT_RT5640_SSP0_AIF1 |
> BYT_RT5640_MCLK_EN),
> },
> + { /* HP Stream 8 */
> + .matches = {
> + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
> + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "HP Stream 8 Tablet"),
> + },
> + .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
> + BYT_RT5640_MONO_SPEAKER |
> + BYT_RT5640_JD_NOT_INV |
> + BYT_RT5640_SSP0_AIF1 |
> + BYT_RT5640_MCLK_EN),
> + },
> { /* I.T.Works TW891 */
> .matches = {
> DMI_EXACT_MATCH(DMI_SYS_VENDOR, "To be filled by O.E.M."),

2022-12-14 16:39:00

by Hans de Goede

[permalink] [raw]
Subject: Re: [PATCH] Add HP Stream 8 to bytcr_rt5640.c

Hi,

On 12/13/22 20:04, Pierre-Louis Bossart wrote:
>
>
> On 12/13/22 11:35, Moises Cardona wrote:
>> The HP Stream 8 tablet is identical to the HP Stream 7 in terms of the PCB,
>> with the exception of the added SIM Card Slot.
>> Therefore, I'm submitting this patch which properly initializes the audio
>> and enables the headphone jack to work, just like it does in the
>> HP Stream 7.
>>
>> Signed-off-by: Moises Cardona <[email protected]>
>
> Acked-by: Pierre-Louis Bossart <[email protected]>

Note this is the old version which wrongly contains the
BYT_RT5640_MONO_SPEAKER flag.

Mark, please merge the new version (which unfortunately
was not marked as v2) which correctly drops
the BYT_RT5640_MONO_SPEAKER flag.

(this tablet has 2 speakers so it should not have the mono flag)

Regards,

Hans


>
>> ---
>> sound/soc/intel/boards/bytcr_rt5640.c | 11 +++++++++++
>> 1 file changed, 11 insertions(+)
>>
>> diff --git a/sound/soc/intel/boards/bytcr_rt5640.c b/sound/soc/intel/boards/bytcr_rt5640.c
>> index fb9d9e271845..1d964b1ceff4 100644
>> --- a/sound/soc/intel/boards/bytcr_rt5640.c
>> +++ b/sound/soc/intel/boards/bytcr_rt5640.c
>> @@ -796,6 +796,17 @@ static const struct dmi_system_id byt_rt5640_quirk_table[] = {
>> BYT_RT5640_SSP0_AIF1 |
>> BYT_RT5640_MCLK_EN),
>> },
>> + { /* HP Stream 8 */
>> + .matches = {
>> + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
>> + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "HP Stream 8 Tablet"),
>> + },
>> + .driver_data = (void *)(BYTCR_INPUT_DEFAULTS |
>> + BYT_RT5640_MONO_SPEAKER |
>> + BYT_RT5640_JD_NOT_INV |
>> + BYT_RT5640_SSP0_AIF1 |
>> + BYT_RT5640_MCLK_EN),
>> + },
>> { /* I.T.Works TW891 */
>> .matches = {
>> DMI_EXACT_MATCH(DMI_SYS_VENDOR, "To be filled by O.E.M."),
>

2022-12-14 18:42:25

by Mark Brown

[permalink] [raw]
Subject: Re: [PATCH] Add HP Stream 8 to bytcr_rt5640.c

On Wed, Dec 14, 2022 at 04:42:34PM +0100, Hans de Goede wrote:

> Mark, please merge the new version (which unfortunately
> was not marked as v2) which correctly drops
> the BYT_RT5640_MONO_SPEAKER flag.

It's already going through my queue.


Attachments:
(No filename) (249.00 B)
signature.asc (499.00 B)
Download all attachments