diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2012-05-07 21:07:20 -0700 |
---|---|---|
committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2012-05-13 13:07:59 +0000 |
commit | e0defc86423d1b5652826c9317c36dfb6af1cd48 (patch) | |
tree | b6c6578f886b7326d6286232f459088000b1c762 /include/video | |
parent | 3f521abd6cf1320d65a49cf9fc327b82168b5ba0 (diff) |
fbdev: sh_mobile_hdmi: add interrupt output option
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/sh_mobile_hdmi.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/video/sh_mobile_hdmi.h b/include/video/sh_mobile_hdmi.h index 728f9de9c258..2699635a99ef 100644 --- a/include/video/sh_mobile_hdmi.h +++ b/include/video/sh_mobile_hdmi.h @@ -18,9 +18,10 @@ struct clk; /* * flags format * - * 0x0000000A + * 0x000000BA * * A: Audio source select + * B: Int output option */ /* Audio source select */ @@ -30,6 +31,11 @@ struct clk; #define HDMI_SND_SRC_DSD (2 << 0) #define HDMI_SND_SRC_HBR (3 << 0) +/* Int output option */ +#define HDMI_OUTPUT_PUSH_PULL (1 << 4) /* System control : output mode */ +#define HDMI_OUTPUT_POLARITY_HI (1 << 5) /* System control : output polarity */ + + struct sh_mobile_hdmi_info { unsigned int flags; long (*clk_optimize_parent)(unsigned long target, unsigned long *best_freq, |