Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 310282
b: refs/heads/master
c: e0defc8
h: refs/heads/master
v: v3
  • Loading branch information
Kuninori Morimoto authored and Florian Tobias Schandinat committed May 13, 2012
1 parent 92b4781 commit e8ee3dd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3f521abd6cf1320d65a49cf9fc327b82168b5ba0
refs/heads/master: e0defc86423d1b5652826c9317c36dfb6af1cd48
7 changes: 7 additions & 0 deletions trunk/drivers/video/sh_mobile_hdmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1186,6 +1186,13 @@ static int __init sh_hdmi_probe(struct platform_device *pdev)
pm_runtime_enable(&pdev->dev);
pm_runtime_get_sync(&pdev->dev);

/* init interrupt polarity */
if (pdata->flags & HDMI_OUTPUT_PUSH_PULL)
hdmi_bit_set(hdmi, 0x02, 0x02, HDMI_SYSTEM_CTRL);

if (pdata->flags & HDMI_OUTPUT_POLARITY_HI)
hdmi_bit_set(hdmi, 0x01, 0x01, HDMI_SYSTEM_CTRL);

/* Product and revision IDs are 0 in sh-mobile version */
dev_info(&pdev->dev, "Detected HDMI controller 0x%x:0x%x\n",
hdmi_read(hdmi, HDMI_PRODUCT_ID), hdmi_read(hdmi, HDMI_REVISION_ID));
Expand Down
8 changes: 7 additions & 1 deletion trunk/include/video/sh_mobile_hdmi.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ struct clk;
/*
* flags format
*
* 0x0000000A
* 0x000000BA
*
* A: Audio source select
* B: Int output option
*/

/* Audio source select */
Expand All @@ -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,
Expand Down

0 comments on commit e8ee3dd

Please sign in to comment.