Re: [U-Boot] [PATCH 3/4] pinctrl: meson-gx: add support for getting pinmux status

2019-06-05 Thread Maxime Jourdan
pinconf_set = meson_pinconf_set, .pinconf_group_set = meson_pinconf_group_set, + .get_pin_name = meson_pinctrl_get_pin_name, + .get_pins_count = meson_pinctrl_get_pins_count, + .get_pin_muxing = meson_gx_pinmux_get, }; static const struct dm_gpio_ops meson_g

[U-Boot] [PATCH] pinctrl: meson-gxbb: add hdmi related pins

2019-06-04 Thread Maxime Jourdan
The GXBB pinctrl is missing pins related to HDMI, namely hot plug detection (hpd) and I2C (sda + scl). This fixes HDMI support for GXBB in u-boot. Reported-by: Mohammad Rasim Signed-off-by: Maxime Jourdan --- drivers/pinctrl/meson/pinctrl-meson-gxbb.c | 19 +++ 1 file changed

[U-Boot] [PATCH] video: meson: hdmi-supply regulator should be optional

2019-06-04 Thread Maxime Jourdan
Some boards don't have such a regulator, and don't need one to enable HDMI display. Make it optional, fixing hdmi display for those boards. Also surround the regulator code with a config check on DM_REGULATOR. Reported-by: Mohammad Rasim Signed-off-by: Maxime Jourdan --- drivers/video/meson