Commit c21b4327 authored by Martin Blumenstingl's avatar Martin Blumenstingl Committed by Linus Walleij

pinctrl: meson: meson8: add the AO HDMI CEC pin

This adds another missing pin found in the Meson8 SoCs. Currently
there's no driver which would use this pin yet.
Signed-off-by: default avatarMartin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent e70a3840
...@@ -416,6 +416,8 @@ static const unsigned int i2s_ao_clk_out_ao_pins[] = { PIN(GPIOAO_9, AO_OFF) }; ...@@ -416,6 +416,8 @@ static const unsigned int i2s_ao_clk_out_ao_pins[] = { PIN(GPIOAO_9, AO_OFF) };
static const unsigned int i2s_lr_clk_out_ao_pins[] = { PIN(GPIOAO_10, AO_OFF) }; static const unsigned int i2s_lr_clk_out_ao_pins[] = { PIN(GPIOAO_10, AO_OFF) };
static const unsigned int i2s_out_ch01_ao_pins[] = { PIN(GPIOAO_11, AO_OFF) }; static const unsigned int i2s_out_ch01_ao_pins[] = { PIN(GPIOAO_11, AO_OFF) };
static const unsigned int hdmi_cec_ao_pins[] = { PIN(GPIOAO_12, AO_OFF) };
static struct meson_pmx_group meson8_cbus_groups[] = { static struct meson_pmx_group meson8_cbus_groups[] = {
GPIO_GROUP(GPIOX_0, 0), GPIO_GROUP(GPIOX_0, 0),
GPIO_GROUP(GPIOX_1, 0), GPIO_GROUP(GPIOX_1, 0),
...@@ -769,6 +771,8 @@ static struct meson_pmx_group meson8_aobus_groups[] = { ...@@ -769,6 +771,8 @@ static struct meson_pmx_group meson8_aobus_groups[] = {
GROUP(i2s_ao_clk_out_ao, 0, 29), GROUP(i2s_ao_clk_out_ao, 0, 29),
GROUP(i2s_lr_clk_out_ao, 0, 28), GROUP(i2s_lr_clk_out_ao, 0, 28),
GROUP(i2s_out_ch01_ao, 0, 27), GROUP(i2s_out_ch01_ao, 0, 27),
GROUP(hdmi_cec_ao, 0, 17),
}; };
static const char * const gpio_groups[] = { static const char * const gpio_groups[] = {
...@@ -985,6 +989,10 @@ static const char * const i2s_ao_groups[] = { ...@@ -985,6 +989,10 @@ static const char * const i2s_ao_groups[] = {
"i2s_out_ch01_ao" "i2s_out_ch01_ao"
}; };
static const char * const hdmi_cec_ao_groups[] = {
"hdmi_cec_ao"
};
static struct meson_pmx_func meson8_cbus_functions[] = { static struct meson_pmx_func meson8_cbus_functions[] = {
FUNCTION(gpio), FUNCTION(gpio),
FUNCTION(sd_a), FUNCTION(sd_a),
...@@ -1029,6 +1037,7 @@ static struct meson_pmx_func meson8_aobus_functions[] = { ...@@ -1029,6 +1037,7 @@ static struct meson_pmx_func meson8_aobus_functions[] = {
FUNCTION(i2c_mst_ao), FUNCTION(i2c_mst_ao),
FUNCTION(pwm_f_ao), FUNCTION(pwm_f_ao),
FUNCTION(i2s_ao), FUNCTION(i2s_ao),
FUNCTION(hdmi_cec_ao),
}; };
static struct meson_bank meson8_cbus_banks[] = { static struct meson_bank meson8_cbus_banks[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment