-
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 remote-tracking branch 'airlied/drm-next' into drm-nouveau-next
- Loading branch information
Showing
339 changed files
with
69,952 additions
and
7,122 deletions.
There are no files selected for viewing
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,12 +1,15 @@ | ||
Device-Tree bindings for hdmiddc driver | ||
|
||
Required properties: | ||
- compatible: value should be "samsung,exynos5-hdmiddc". | ||
- compatible: value should be one of the following | ||
1) "samsung,exynos5-hdmiddc" <DEPRECATED> | ||
2) "samsung,exynos4210-hdmiddc" | ||
|
||
- reg: I2C address of the hdmiddc device. | ||
|
||
Example: | ||
|
||
hdmiddc { | ||
compatible = "samsung,exynos5-hdmiddc"; | ||
compatible = "samsung,exynos4210-hdmiddc"; | ||
reg = <0x50>; | ||
}; |
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,12 +1,15 @@ | ||
Device-Tree bindings for hdmiphy driver | ||
|
||
Required properties: | ||
- compatible: value should be "samsung,exynos5-hdmiphy". | ||
- compatible: value should be one of the following: | ||
1) "samsung,exynos5-hdmiphy" <DEPRECATED> | ||
2) "samsung,exynos4210-hdmiphy". | ||
3) "samsung,exynos4212-hdmiphy". | ||
- reg: I2C address of the hdmiphy device. | ||
|
||
Example: | ||
|
||
hdmiphy { | ||
compatible = "samsung,exynos5-hdmiphy"; | ||
compatible = "samsung,exynos4210-hdmiphy"; | ||
reg = <0x38>; | ||
}; |
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,15 +1,20 @@ | ||
Device-Tree bindings for mixer driver | ||
|
||
Required properties: | ||
- compatible: value should be "samsung,exynos5-mixer". | ||
- compatible: value should be one of the following: | ||
1) "samsung,exynos5-mixer" <DEPRECATED> | ||
2) "samsung,exynos4210-mixer" | ||
3) "samsung,exynos5250-mixer" | ||
4) "samsung,exynos5420-mixer" | ||
|
||
- reg: physical base address of the mixer and length of memory mapped | ||
region. | ||
- interrupts: interrupt number to the cpu. | ||
|
||
Example: | ||
|
||
mixer { | ||
compatible = "samsung,exynos5-mixer"; | ||
compatible = "samsung,exynos5250-mixer"; | ||
reg = <0x14450000 0x10000>; | ||
interrupts = <0 94 0>; | ||
}; |
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.