* [PATCH v2 0/3] Add support for es8323 and hdmi audio to the firefly-rk3288
@ 2017-01-23 13:47 Romain Perier
2017-01-23 13:47 ` [PATCH v2 1/3] SoC: es8328-i2c: Add compatible for ES8323 Romain Perier
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Romain Perier @ 2017-01-23 13:47 UTC (permalink / raw)
To: Heiko Stuebner, devicetree, Rob Herring, Ian Campbell, Pawel Moll,
Mark Rutland, Kumar Gala, Jaroslav Kysela, Takashi Iwai,
alsa-devel
Cc: Romain Perier, linux-rockchip, Sjoerd Simons, linux-arm-kernel
This set of patches enables support for the es8323 codecs on the
firefly-rk3288. It adds the required DT definitions to link rockchip-i2s
to the es8388 analog output. As the support for HDMI audio is also
built-in in the corresponding ASoC machine driver, HDMI audio output is
also enabled.
Changes in v2:
- Adapted DT for the firefly-rk3288 to the ASoC machine driver
rk3288-hdmi-analog
- Added patch 02/03 to this series
- Re-wrote this cover letter
Romain Perier (3):
SoC: es8328-i2c: Add compatible for ES8323
arm: dts: rockchip: Don't set otp-gpio pinctrl by default in
rk3288.dtsi
arm: dts: Add support for ES8323 to the Firefly-RK3288
Documentation/devicetree/bindings/sound/es8328.txt | 5 +++-
arch/arm/boot/dts/rk3288-evb.dtsi | 4 +++
arch/arm/boot/dts/rk3288-firefly.dtsi | 34 ++++++++++++++++++++++
arch/arm/boot/dts/rk3288-veyron.dtsi | 4 +++
arch/arm/boot/dts/rk3288.dtsi | 4 ---
sound/soc/codecs/es8328-i2c.c | 2 ++
6 files changed, 48 insertions(+), 5 deletions(-)
--
2.9.3
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 1/3] SoC: es8328-i2c: Add compatible for ES8323
2017-01-23 13:47 [PATCH v2 0/3] Add support for es8323 and hdmi audio to the firefly-rk3288 Romain Perier
@ 2017-01-23 13:47 ` Romain Perier
2017-01-23 13:47 ` [PATCH v2 2/3] arm: dts: rockchip: Don't set otp-gpio pinctrl by default in rk3288.dtsi Romain Perier
2017-01-23 13:47 ` [PATCH v2 3/3] arm: dts: Add support for ES8323 to the Firefly-RK3288 Romain Perier
2 siblings, 0 replies; 4+ messages in thread
From: Romain Perier @ 2017-01-23 13:47 UTC (permalink / raw)
To: Heiko Stuebner, devicetree, Rob Herring, Ian Campbell, Pawel Moll,
Mark Rutland, Kumar Gala, Jaroslav Kysela, Takashi Iwai,
alsa-devel
Cc: Romain Perier, linux-rockchip, Sjoerd Simons, linux-arm-kernel
This commit adds a compatible string for everest,es8323. This is an
audio codec that is compatible with es8328 and can be found for example
on the Firefly-RK3288 board.
Signed-off-by: Romain Perier <romain.perier@collabora.com>
---
Changes in v2: None
Documentation/devicetree/bindings/sound/es8328.txt | 5 ++++-
sound/soc/codecs/es8328-i2c.c | 2 ++
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/sound/es8328.txt b/Documentation/devicetree/bindings/sound/es8328.txt
index 33fbf05..86b6d6e 100644
--- a/Documentation/devicetree/bindings/sound/es8328.txt
+++ b/Documentation/devicetree/bindings/sound/es8328.txt
@@ -4,7 +4,10 @@ This device supports both I2C and SPI.
Required properties:
- - compatible : Should be "everest,es8328" or "everest,es8388"
+ - compatible : Should be one of the following:
+ - "everest,es8323"
+ - "everest,es8328"
+ - "everest,es8388"
- DVDD-supply : Regulator providing digital core supply voltage 1.8 - 3.6V
- AVDD-supply : Regulator providing analog supply voltage 3.3V
- PVDD-supply : Regulator providing digital IO supply voltage 1.8 - 3.6V
diff --git a/sound/soc/codecs/es8328-i2c.c b/sound/soc/codecs/es8328-i2c.c
index 318ab28..be3f03c 100644
--- a/sound/soc/codecs/es8328-i2c.c
+++ b/sound/soc/codecs/es8328-i2c.c
@@ -19,6 +19,7 @@
#include "es8328.h"
static const struct i2c_device_id es8328_id[] = {
+ { "es8323", 0 },
{ "es8328", 0 },
{ "es8388", 0 },
{ }
@@ -26,6 +27,7 @@ static const struct i2c_device_id es8328_id[] = {
MODULE_DEVICE_TABLE(i2c, es8328_id);
static const struct of_device_id es8328_of_match[] = {
+ { .compatible = "everest,es8323", },
{ .compatible = "everest,es8328", },
{ .compatible = "everest,es8388", },
{ }
--
2.9.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v2 2/3] arm: dts: rockchip: Don't set otp-gpio pinctrl by default in rk3288.dtsi
2017-01-23 13:47 [PATCH v2 0/3] Add support for es8323 and hdmi audio to the firefly-rk3288 Romain Perier
2017-01-23 13:47 ` [PATCH v2 1/3] SoC: es8328-i2c: Add compatible for ES8323 Romain Perier
@ 2017-01-23 13:47 ` Romain Perier
2017-01-23 13:47 ` [PATCH v2 3/3] arm: dts: Add support for ES8323 to the Firefly-RK3288 Romain Perier
2 siblings, 0 replies; 4+ messages in thread
From: Romain Perier @ 2017-01-23 13:47 UTC (permalink / raw)
To: Heiko Stuebner, devicetree, Rob Herring, Ian Campbell, Pawel Moll,
Mark Rutland, Kumar Gala, Jaroslav Kysela, Takashi Iwai,
alsa-devel
Cc: Romain Perier, linux-rockchip, Sjoerd Simons, linux-arm-kernel
The tsadc supports two reset methods: the cru and the otp_gpio. All
boards except veyron and the evb simply use the cru-method and reuse the
pin for something else. On the Firefly-RK3288 this is for example the
case with the headphone. To prevent pinctrl-conflicts with these don't
set the otp-gpio pinctrl by default but only in the boards using it.
Signed-off-by: Romain Perier <romain.perier@collabora.com>
---
Changes in v2:
- Added this patch
arch/arm/boot/dts/rk3288-evb.dtsi | 4 ++++
arch/arm/boot/dts/rk3288-veyron.dtsi | 4 ++++
arch/arm/boot/dts/rk3288.dtsi | 4 ----
3 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/arch/arm/boot/dts/rk3288-evb.dtsi b/arch/arm/boot/dts/rk3288-evb.dtsi
index bf7ccfa..7160d07 100644
--- a/arch/arm/boot/dts/rk3288-evb.dtsi
+++ b/arch/arm/boot/dts/rk3288-evb.dtsi
@@ -290,6 +290,10 @@
};
&tsadc {
+ pinctrl-names = "init", "default", "sleep";
+ pinctrl-0 = <&otp_gpio>;
+ pinctrl-1 = <&otp_out>;
+ pinctrl-2 = <&otp_gpio>;
rockchip,hw-tshut-mode = <0>; /* tshut mode 0:CRU 1:GPIO */
rockchip,hw-tshut-polarity = <0>; /* tshut polarity 0:LOW 1:HIGH */
status = "okay";
diff --git a/arch/arm/boot/dts/rk3288-veyron.dtsi b/arch/arm/boot/dts/rk3288-veyron.dtsi
index 2251d28..e7801d8 100644
--- a/arch/arm/boot/dts/rk3288-veyron.dtsi
+++ b/arch/arm/boot/dts/rk3288-veyron.dtsi
@@ -393,6 +393,10 @@
&tsadc {
status = "okay";
+ pinctrl-names = "init", "default", "sleep";
+ pinctrl-0 = <&otp_gpio>;
+ pinctrl-1 = <&otp_out>;
+ pinctrl-2 = <&otp_gpio>;
rockchip,hw-tshut-mode = <1>; /* tshut mode 0:CRU 1:GPIO */
rockchip,hw-tshut-polarity = <1>; /* tshut polarity 0:LOW 1:HIGH */
};
diff --git a/arch/arm/boot/dts/rk3288.dtsi b/arch/arm/boot/dts/rk3288.dtsi
index 4fad133..f419e4d 100644
--- a/arch/arm/boot/dts/rk3288.dtsi
+++ b/arch/arm/boot/dts/rk3288.dtsi
@@ -532,10 +532,6 @@
clock-names = "tsadc", "apb_pclk";
resets = <&cru SRST_TSADC>;
reset-names = "tsadc-apb";
- pinctrl-names = "init", "default", "sleep";
- pinctrl-0 = <&otp_gpio>;
- pinctrl-1 = <&otp_out>;
- pinctrl-2 = <&otp_gpio>;
#thermal-sensor-cells = <1>;
rockchip,hw-tshut-temp = <95000>;
status = "disabled";
--
2.9.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v2 3/3] arm: dts: Add support for ES8323 to the Firefly-RK3288
2017-01-23 13:47 [PATCH v2 0/3] Add support for es8323 and hdmi audio to the firefly-rk3288 Romain Perier
2017-01-23 13:47 ` [PATCH v2 1/3] SoC: es8328-i2c: Add compatible for ES8323 Romain Perier
2017-01-23 13:47 ` [PATCH v2 2/3] arm: dts: rockchip: Don't set otp-gpio pinctrl by default in rk3288.dtsi Romain Perier
@ 2017-01-23 13:47 ` Romain Perier
2 siblings, 0 replies; 4+ messages in thread
From: Romain Perier @ 2017-01-23 13:47 UTC (permalink / raw)
To: Heiko Stuebner, devicetree, Rob Herring, Ian Campbell, Pawel Moll,
Mark Rutland, Kumar Gala, Jaroslav Kysela, Takashi Iwai,
alsa-devel
Cc: Romain Perier, linux-rockchip, Sjoerd Simons, linux-arm-kernel
This commit adds the DT definition of the es8323 i2c device found at
address 0x10. It also adds the definition for connecting the Rockchip
I2S to the es8323 analog output.
Signed-off-by: Romain Perier <romain.perier@collabora.com>
---
Changes in v2:
- Add the pinctrl headphone, that was previously in conflict with otp pins
- Renamed sound_es8323 to sound_i2s
- Added the property rockchip,routing
arch/arm/boot/dts/rk3288-firefly.dtsi | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/arch/arm/boot/dts/rk3288-firefly.dtsi b/arch/arm/boot/dts/rk3288-firefly.dtsi
index 44935af..ddb0beb 100644
--- a/arch/arm/boot/dts/rk3288-firefly.dtsi
+++ b/arch/arm/boot/dts/rk3288-firefly.dtsi
@@ -103,6 +103,19 @@
};
};
+ sound_i2s {
+ compatible = "rockchip,rk3288-hdmi-analog";
+ rockchip,model = "I2S";
+ rockchip,i2s-controller = <&i2s>;
+ rockchip,audio-codec = <&es8323>;
+ rockchip,routing = "Analog", "LOUT2",
+ "Analog", "ROUT2";
+ rockchip,hp-en-gpios = <&gpio0 RK_PB2 GPIO_ACTIVE_HIGH>;
+ rockchip,hp-det-gpios = <&gpio7 RK_PB7 GPIO_ACTIVE_HIGH>;
+ pinctrl-names = "default";
+ pinctrl-0 = <&headphone>;
+ };
+
vbat_wl: vcc_sys: vsys-regulator {
compatible = "regulator-fixed";
regulator-name = "vcc_sys";
@@ -371,6 +384,17 @@
&i2c2 {
status = "okay";
+
+ es8323: es8323@10 {
+ compatible = "everest,es8323", "everest,es8328";
+ reg = <0x10>;
+ AVDD-supply = <&vcca_33>;
+ DVDD-supply = <&vcca_33>;
+ HPVDD-supply = <&vcca_33>;
+ PVDD-supply = <&vcca_33>;
+ clocks = <&cru SCLK_I2S0_OUT>;
+ clock-names = "i2s_clk_out";
+ };
};
&i2c4 {
@@ -381,6 +405,10 @@
status = "okay";
};
+&i2s {
+ status = "okay";
+};
+
&io_domains {
status = "okay";
@@ -483,6 +511,12 @@
};
};
+ sound {
+ headphone: headphone {
+ rockchip,pins = <0 10 RK_FUNC_GPIO &pcfg_pull_up>;
+ };
+ };
+
usb_host {
host_vbus_drv: host-vbus-drv {
rockchip,pins = <0 14 RK_FUNC_GPIO &pcfg_pull_none>;
--
2.9.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-01-23 13:47 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-23 13:47 [PATCH v2 0/3] Add support for es8323 and hdmi audio to the firefly-rk3288 Romain Perier
2017-01-23 13:47 ` [PATCH v2 1/3] SoC: es8328-i2c: Add compatible for ES8323 Romain Perier
2017-01-23 13:47 ` [PATCH v2 2/3] arm: dts: rockchip: Don't set otp-gpio pinctrl by default in rk3288.dtsi Romain Perier
2017-01-23 13:47 ` [PATCH v2 3/3] arm: dts: Add support for ES8323 to the Firefly-RK3288 Romain Perier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).