-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'topic/drm-misc-2016-10-27' of git://anongit.freedesktop.or…
…g/git/drm-intel into drm-next Pull request already again to get the s/fence/dma_fence/ stuff in and allow everyone to resync. Otherwise really just misc stuff all over, and a new bridge driver. * tag 'topic/drm-misc-2016-10-27' of git://anongit.freedesktop.org/git/drm-intel: drm/bridge: fix platform_no_drv_owner.cocci warnings drm/bridge: fix semicolon.cocci warnings drm: Print some debug/error info during DP dual mode detect drm: mark drm_of_component_match_add dummy inline drm/bridge: add Silicon Image SiI8620 driver dt-bindings: add Silicon Image SiI8620 bridge bindings video: add header file for Mobile High-Definition Link (MHL) interface drm: convert DT component matching to component_match_add_release() dma-buf: Rename struct fence to dma_fence dma-buf/fence: add an lockdep_assert_held() drm/dp: Factor out helper to distinguish between branch and sink devices drm/edid: Only print the bad edid when aborting drm/msm: add missing header dependencies drm/msm/adreno: move function declarations to header file drm/i2c/tda998x: mark symbol static where possible doc: add missing docbook parameter for fence-array drm: RIP mode_config->rotation_property drm/msm/mdp5: Advertize 180 degree rotation drm/msm/mdp5: Use per-plane rotation property
- Loading branch information
Showing
144 changed files
with
4,865 additions
and
1,332 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
Documentation/devicetree/bindings/video/bridge/sil-sii8620.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
Silicon Image SiI8620 HDMI/MHL bridge bindings | ||
|
||
Required properties: | ||
- compatible: "sil,sii8620" | ||
- reg: i2c address of the bridge | ||
- cvcc10-supply: Digital Core Supply Voltage (1.0V) | ||
- iovcc18-supply: I/O Supply Voltage (1.8V) | ||
- interrupts, interrupt-parent: interrupt specifier of INT pin | ||
- reset-gpios: gpio specifier of RESET pin | ||
- clocks, clock-names: specification and name of "xtal" clock | ||
- video interfaces: Device node can contain video interface port | ||
node for HDMI encoder according to [1]. | ||
|
||
[1]: Documentation/devicetree/bindings/media/video-interfaces.txt | ||
|
||
Example: | ||
sii8620@39 { | ||
reg = <0x39>; | ||
compatible = "sil,sii8620"; | ||
cvcc10-supply = <&ldo36_reg>; | ||
iovcc18-supply = <&ldo34_reg>; | ||
interrupt-parent = <&gpf0>; | ||
interrupts = <2 0>; | ||
reset-gpio = <&gpv7 0 0>; | ||
clocks = <&pmu_system_controller 0>; | ||
clock-names = "xtal"; | ||
|
||
port { | ||
mhl_to_hdmi: endpoint { | ||
remote-endpoint = <&hdmi_to_mhl>; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
obj-y := dma-buf.o fence.o reservation.o seqno-fence.o fence-array.o | ||
obj-y := dma-buf.o dma-fence.o dma-fence-array.o reservation.o seqno-fence.o | ||
obj-$(CONFIG_SYNC_FILE) += sync_file.o | ||
obj-$(CONFIG_SW_SYNC) += sw_sync.o sync_debug.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.