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 tag 'v4.0-rc5' into linux-next
Merge the upstream -rc5 tag because we needed a more up-to-date base our further work.
- Loading branch information
Showing
1,510 changed files
with
38,074 additions
and
17,224 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Code of Conflict | ||
---------------- | ||
|
||
The Linux kernel development effort is a very personal process compared | ||
to "traditional" ways of developing software. Your code and ideas | ||
behind it will be carefully reviewed, often resulting in critique and | ||
criticism. The review will almost always require improvements to the | ||
code before it can be included in the kernel. Know that this happens | ||
because everyone involved wants to see the best possible solution for | ||
the overall success of Linux. This development process has been proven | ||
to create the most robust operating system kernel ever, and we do not | ||
want to do anything to cause the quality of submission and eventual | ||
result to ever decrease. | ||
|
||
If however, anyone feels personally abused, threatened, or otherwise | ||
uncomfortable due to this process, that is not acceptable. If so, | ||
please contact the Linux Foundation's Technical Advisory Board at | ||
<[email protected]>, or the individual members, and they | ||
will work to resolve the issue to the best of their ability. For more | ||
information on who is on the Technical Advisory Board and what their | ||
role is, please see: | ||
http://www.linuxfoundation.org/programs/advisory-councils/tab | ||
|
||
As a reviewer of code, please strive to keep things civil and focused on | ||
the technical issues involved. We are all humans, and frustrations can | ||
be high on both sides of the process. Try to keep in mind the immortal | ||
words of Bill and Ted, "Be excellent to each other." |
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
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
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,21 @@ | ||
Qualcomm LPASS Clock & Reset Controller Binding | ||
------------------------------------------------ | ||
|
||
Required properties : | ||
- compatible : shall contain only one of the following: | ||
|
||
"qcom,lcc-msm8960" | ||
"qcom,lcc-apq8064" | ||
"qcom,lcc-ipq8064" | ||
|
||
- reg : shall contain base register location and length | ||
- #clock-cells : shall contain 1 | ||
- #reset-cells : shall contain 1 | ||
|
||
Example: | ||
clock-controller@28000000 { | ||
compatible = "qcom,lcc-ipq8064"; | ||
reg = <0x28000000 0x1000>; | ||
#clock-cells = <1>; | ||
#reset-cells = <1>; | ||
}; |
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
33 changes: 33 additions & 0 deletions
33
Documentation/devicetree/bindings/clock/renesas,r8a73a4-cpg-clocks.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 @@ | ||
* Renesas R8A73A4 Clock Pulse Generator (CPG) | ||
|
||
The CPG generates core clocks for the R8A73A4 SoC. It includes five PLLs | ||
and several fixed ratio dividers. | ||
|
||
Required Properties: | ||
|
||
- compatible: Must be "renesas,r8a73a4-cpg-clocks" | ||
|
||
- reg: Base address and length of the memory resource used by the CPG | ||
|
||
- clocks: Reference to the parent clocks ("extal1" and "extal2") | ||
|
||
- #clock-cells: Must be 1 | ||
|
||
- clock-output-names: The names of the clocks. Supported clocks are "main", | ||
"pll0", "pll1", "pll2", "pll2s", "pll2h", "z", "z2", "i", "m3", "b", | ||
"m1", "m2", "zx", "zs", and "hp". | ||
|
||
|
||
Example | ||
------- | ||
|
||
cpg_clocks: cpg_clocks@e6150000 { | ||
compatible = "renesas,r8a73a4-cpg-clocks"; | ||
reg = <0 0xe6150000 0 0x10000>; | ||
clocks = <&extal1_clk>, <&extal2_clk>; | ||
#clock-cells = <1>; | ||
clock-output-names = "main", "pll0", "pll1", "pll2", | ||
"pll2s", "pll2h", "z", "z2", | ||
"i", "m3", "b", "m1", "m2", | ||
"zx", "zs", "hp"; | ||
}; |
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.