10 Nov, 2010

1 commit


10 Sep, 2010

1 commit

  • This patch solve below report from Guennadi

    1)

    > +/* Audio source select */
    > +#define HDMI_SRC_MASK (0xF << 0)
    > +#define HDMI_SRC_I2S (0 << 0) /* default */
    > +#define HDMI_SRC_SPDIF (1 << 0)
    > +#define HDMI_SRC_DSD (2 << 0)
    > +#define HDMI_SRC_HBR (3 << 0)

    I would be more specific with these macro names, i.e., include "AUDIO" or
    "SND" or something similar in them, e.g., HDMI_AUDIO_SRC_I2S.

    2)

    > + case HDMI_SRC_I2S:
    > + data = (0x0 << 3);
    > + break;
    > + case HDMI_SRC_SPDIF:
    > + data = (0x1 << 3);
    > + break;
    > + case HDMI_SRC_DSD:
    > + data = (0x2 << 3);
    > + break;
    > + case HDMI_SRC_HBR:
    > + data = (0x3 << 3);

    In all above cases parenthesis are superfluous.

    Reported-by: Guennadi Liakhovetski
    Signed-off-by: Kuninori Morimoto
    Reviewed-by: Guennadi Liakhovetski
    Acked-by: Liam Girdwood
    Signed-off-by: Mark Brown

    Kuninori Morimoto
     

01 Sep, 2010

1 commit


04 Aug, 2010

1 commit

  • Some SH-Mobile SoCs have an HDMI controller and a PHY, attached to one of their
    LCDC interfaces. This patch adds a preliminary static support for such
    controllers, this means, that only the 720p mode is handled ATM. Support for
    more modes and a dynamic switching between them will be added by a follow up
    patch.

    Signed-off-by: Guennadi Liakhovetski
    Acked-by: Magnus Damm
    Signed-off-by: Paul Mundt

    Guennadi Liakhovetski