Firefly Open Source Community

   Login   |   Register   |
New_Topic
Print Previous Topic Next Topic

[Linux] I2S MCLK on Core-3399-JD4

7

Credits

0

Prestige

0

Contribution

new registration

Rank: 1

Credits
7

【Linux】 I2S MCLK on Core-3399-JD4

Posted at 9/5/2019 17:38:15      View:4385 | Replies:2        Print      Only Author   [Copy Link] 1#
Last edited by alex.mamonov In 9/5/2019 18:13 Editor

Hi!

I'm trying to use I2S1 on Firefly Core-3399-JD4 with TLV320AIC3100 codec. This is how I describe it in the dts:
  1. / {
  2.   tlv320aic31xx-sound {
  3.     compatible = "simple-audio-card";
  4.     status = "okay";
  5.     simple-audio-card,format = "i2s";
  6.     simple-audio-card,name = "rockchip,tlv320aic31xx-codec";
  7.     simple-audio-card,widgets =
  8.                             "Microphone", "Mic Jack",
  9.     "Headphone", "Headphone Jack";
  10.     simple-audio-card,routing =
  11.     "Mic Jack", "MICBIAS1",
  12.     "IN1P", "Mic Jack",
  13.     "Headphone Jack", "HPOL",
  14.     "Headphone Jack", "HPOR";
  15.   
  16.     simple-audio-card,cpu {
  17.       sound-dai = <&i2s1>;
  18.       format = "i2s";
  19.     };
  20.     simple-audio-card,codec {
  21.       sound-dai = <&tlv320aic3100>;
  22.       format = "i2s";
  23.     };
  24.   };
  25. };
  26. &i2c1 {
  27.   tlv320aic3100: tlv320aic3100@18 {
  28.     #sound-dai-cells = <0>;
  29.     compatible = "ti,tlv320aic3100";
  30.     reg = <0x18>;
  31.     status = "okay";

  32.     HPVDD-supply = <&vcc3v3_sys>;
  33.     SPRVDD-supply = <&vcc5v0_host>;
  34.     SPLVDD-supply = <&vcc5v0_host>;
  35.     AVDD-supply = <&vcc3v3_sys>;
  36.     IOVDD-supply = <&vcca1v8_codec>;
  37.     DVDD-supply = <&vcca1v8_codec>;
  38.   };
  39. };
Copy the code
The drivers starts without errors and I can see audio device in aplay -l output, but there is no sound and I can't see the clocks on MCLK pin. How can I get MCLK on?


Reply

Use props Report

1428

Credits

0

Prestige

0

Contribution

vip

Rank: 6Rank: 6

Credits
1428
Posted at 9/18/2019 10:56:36        Only Author  2#
You need to specify `clock`, take rt5640 as an example:

  1. &i2c1 {
  2.         status = "okay";
  3.         i2c-scl-rising-time-ns = <300>;
  4.         i2c-scl-falling-time-ns = <15>;

  5.         rt5640: rt5640@1c {
  6.                 #sound-dai-cells = <0>;
  7.                 compatible = "realtek,rt5640";
  8.                 reg = <0x1c>;
  9.                 clocks = <&cru SCLK_I2S_8CH_OUT>;
  10.                 clock-names = "mclk";
  11.                 realtek,in1-differential;
  12.                 pinctrl-names = "default";
  13.                 pinctrl-0 = <&rt5640_hpcon &i2s_8ch_mclk>;
  14.                 hp-con-gpio = <&gpio4 21 GPIO_ACTIVE_HIGH>;
  15.                 //hp-det-gpio = <&gpio4 28 GPIO_ACTIVE_LOW>;
  16.                 io-channels = <&saradc 4>;
  17.                 hp-det-adc-value = <500>;
  18.         };
  19. }
Copy the code
Reply

Use props Report

126

Credits

0

Prestige

0

Contribution

registered members

Rank: 2

Credits
126
Posted at 2 hour before        Only Author  3#
Wissen Sie SAP C-TS4FI-2023 Dumps von Fast2test? Warum sind diese Dumps von den Benutzern gut bewertet? Wollen Sie diese Dumps probieren? Klicken Sie bitte Fast2test Website und die Demo herunterladen. Und jedr Fragenkatalog hat eine kostlose Demo. Wenn Sie es gut finden, können Sie diese Dumps sofort kaufen. Nach dem Kauf können Sie auch einen einjährigen kostlosen Aktualisierungsservice bekommen. Innerhalb eines Jahres können Sie die neuesten SAP C-TS4FI-2023 Prüfungsunterlagen besitzen. Damit können Sie SAP C-TS4FI-2023 Zertifizierungsprüfung sehr leicht bestehen und dieses Zertifikat bekommen.
Reply

Use props Report

You need to log in before you can reply Login | Register

This forum Credits Rules

Quick Reply Back to top Back to list