forked from torvalds/linux
-
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 airlied/drm-next into drm-misc-next
Backmerge drm-next with -rc2 in it to pull in a couple stm patches that were previously incorrectly applied to -misc-next. By picking them up in the correct manner, git will hopefully fix any errant trees that are out in the wild. Signed-off-by: Sean Paul <[email protected]>
- Loading branch information
Showing
450 changed files
with
11,819 additions
and
4,475 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
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,20 @@ | ||
* Broadcom Digital Timing Engine(DTE) based PTP clock driver | ||
* Broadcom Digital Timing Engine(DTE) based PTP clock | ||
|
||
Required properties: | ||
- compatible: should be "brcm,ptp-dte" | ||
- compatible: should contain the core compatibility string | ||
and the SoC compatibility string. The SoC | ||
compatibility string is to handle SoC specific | ||
hardware differences. | ||
Core compatibility string: | ||
"brcm,ptp-dte" | ||
SoC compatibility strings: | ||
"brcm,iproc-ptp-dte" - for iproc based SoC's | ||
- reg: address and length of the DTE block's NCO registers | ||
|
||
Example: | ||
|
||
ptp_dte: ptp_dte@180af650 { | ||
compatible = "brcm,ptp-dte"; | ||
ptp: ptp-dte@180af650 { | ||
compatible = "brcm,iproc-ptp-dte", "brcm,ptp-dte"; | ||
reg = <0x180af650 0x10>; | ||
status = "okay"; | ||
}; |
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.