arm64: dts: rockchip: Assign mic irq to correct device for Gru
Currently we are assigning mic irq to rt5514 i2c driver, which is wrong. Assign it to rt5514 spi driver instead. Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com> Signed-off-by: Heiko Stuebner <heiko@sntech.de>
This commit is contained in:
parent
617f4472bd
commit
147f6ec570
|
@ -612,12 +612,7 @@ ap_i2c_mic: &i2c1 {
|
|||
headsetcodec: rt5514@57 {
|
||||
compatible = "realtek,rt5514";
|
||||
reg = <0x57>;
|
||||
interrupt-parent = <&gpio1>;
|
||||
interrupts = <13 IRQ_TYPE_LEVEL_HIGH>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&mic_int>;
|
||||
realtek,dmic-init-delay-ms = <20>;
|
||||
wakeup-source;
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -826,9 +821,13 @@ ap_i2c_audio: &i2c8 {
|
|||
wacky_spi_audio: spi2@0 {
|
||||
compatible = "realtek,rt5514";
|
||||
reg = <0>;
|
||||
|
||||
interrupt-parent = <&gpio1>;
|
||||
interrupts = <13 IRQ_TYPE_LEVEL_HIGH>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&mic_int>;
|
||||
/* May run faster once verified. */
|
||||
spi-max-frequency = <10000000>;
|
||||
wakeup-source;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue