Hi,
I got my recording from Headphone Mic fixed.
Here is what I make work for me:
a)
have pinctrl-0..2 set in the i2s0
b)
make sure the reg=0x11 for the i2c1-codec
c)
add the Mic Bias.
Tested with 6.12.12 which got a fix es8316 codec.
&i2s0 {
status = "okay";
pinctrl-names = "mclk", "bclk_on", "bclk_off";
pinctrl-0 = <&i2s_8ch_mclk>;
pinctrl-1 = <&i2s0_8ch_bus>;
pinctrl-2 = <&i2s0_8ch_bus_bclk_off>;
resets = <&cru SRST_I2S0_8CH>, <&cru SRST_H_I2S0_8CH>;
reset-names = "reset-m", "reset-h";
rockchip,playback-channels = <2>;
rockchip,capture-channels = <2>;
#sound-dai-cells = <0>;
};
&i2c1 {
status = "okay";
i2c-scl-rising-time-ns = <300>;
i2c-scl-falling-time-ns = <15>;
clock-frequency = <200000>;
es8316c_codec: audio-codec@11 {
compatible = "everest,es8316";
reg = <0x11>;
#sound-dai-cells = <0>;
clocks = <&cru SCLK_I2S_8CH_OUT>;
clock-names = "mclk";
status = "okay";
};
};
es8316c_card: es8316c-card {
compatible = "simple-audio-card";
pinctrl-names = "default";
pinctrl-0 = <&hp_det>;
simple-audio-card,format = "i2s";
simple-audio-card,name = "rockchip-es8316c";
simple-audio-card,mclk-fs = <256>;
simple-audio-card,hp-det-gpio = <&gpio4 RK_PD4 GPIO_ACTIVE_HIGH>;
simple-audio-card,widgets =
"Microphone", "Mic Jack",
"Headphone", "Headphones";
simple-audio-card,routing =
"Mic Jack", "Mic Bias",
"MIC1", "Mic Jack",
"Headphones", "HPOL",
"Headphones", "HPOR";
simple-audio-card,cpu {
sound-dai = <&i2s0>;
};
simple-audio-card,codec {
sound-dai = <&es8316c_codec>;
};
};