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 'v3.18-rc4' into regulator-max77802
Linux 3.18-rc4
- Loading branch information
Showing
1,139 changed files
with
21,117 additions
and
10,258 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 |
---|---|---|
|
@@ -20,4 +20,4 @@ Date: November 2007 | |
Contact: Konrad Rzeszutek <[email protected]> | ||
Description: The /sys/firmware/ibft/ethernetX directory will contain | ||
files that expose the iSCSI Boot Firmware Table NIC data. | ||
This can this can the IP address, MAC, and gateway of the NIC. | ||
Usually this contains the IP address, MAC, and gateway of the NIC. |
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,38 @@ | ||
* Generic Mailbox Controller and client driver bindings | ||
|
||
Generic binding to provide a way for Mailbox controller drivers to | ||
assign appropriate mailbox channel to client drivers. | ||
|
||
* Mailbox Controller | ||
|
||
Required property: | ||
- #mbox-cells: Must be at least 1. Number of cells in a mailbox | ||
specifier. | ||
|
||
Example: | ||
mailbox: mailbox { | ||
... | ||
#mbox-cells = <1>; | ||
}; | ||
|
||
|
||
* Mailbox Client | ||
|
||
Required property: | ||
- mboxes: List of phandle and mailbox channel specifiers. | ||
|
||
Optional property: | ||
- mbox-names: List of identifier strings for each mailbox channel | ||
required by the client. The use of this property | ||
is discouraged in favor of using index in list of | ||
'mboxes' while requesting a mailbox. Instead the | ||
platforms may define channel indices, in DT headers, | ||
to something legible. | ||
|
||
Example: | ||
pwr_cntrl: power { | ||
... | ||
mbox-names = "pwr-ctrl", "rpc"; | ||
mboxes = <&mailbox 0 | ||
&mailbox 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
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 |
---|---|---|
|
@@ -12,6 +12,9 @@ I. For patch submitters | |
|
||
[email protected] | ||
|
||
3) The Documentation/ portion of the patch should come in the series before | ||
the code implementing the binding. | ||
|
||
II. For kernel maintainers | ||
|
||
1) If you aren't comfortable reviewing a given binding, reply to it and ask | ||
|
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
24 changes: 24 additions & 0 deletions
24
Documentation/devicetree/bindings/watchdog/cadence-wdt.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,24 @@ | ||
Zynq Watchdog Device Tree Bindings | ||
------------------------------------------- | ||
|
||
Required properties: | ||
- compatible : Should be "cdns,wdt-r1p2". | ||
- clocks : This is pclk (APB clock). | ||
- interrupts : This is wd_irq - watchdog timeout interrupt. | ||
- interrupt-parent : Must be core interrupt controller. | ||
|
||
Optional properties | ||
- reset-on-timeout : If this property exists, then a reset is done | ||
when watchdog times out. | ||
- timeout-sec : Watchdog timeout value (in seconds). | ||
|
||
Example: | ||
watchdog@f8005000 { | ||
compatible = "cdns,wdt-r1p2"; | ||
clocks = <&clkc 45>; | ||
interrupt-parent = <&intc>; | ||
interrupts = <0 9 1>; | ||
reg = <0xf8005000 0x1000>; | ||
reset-on-timeout; | ||
timeout-sec = <10>; | ||
}; |
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,13 @@ | ||
Meson SoCs Watchdog timer | ||
|
||
Required properties: | ||
|
||
- compatible : should be "amlogic,meson6-wdt" | ||
- reg : Specifies base physical address and size of the registers. | ||
|
||
Example: | ||
|
||
wdt: watchdog@c1109900 { | ||
compatible = "amlogic,meson6-wdt"; | ||
reg = <0xc1109900 0x8>; | ||
}; |
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,24 @@ | ||
Qualcomm Krait Processor Sub-system (KPSS) Watchdog | ||
--------------------------------------------------- | ||
|
||
Required properties : | ||
- compatible : shall contain only one of the following: | ||
|
||
"qcom,kpss-wdt-msm8960" | ||
"qcom,kpss-wdt-apq8064" | ||
"qcom,kpss-wdt-ipq8064" | ||
|
||
- reg : shall contain base register location and length | ||
- clocks : shall contain the input clock | ||
|
||
Optional properties : | ||
- timeout-sec : shall contain the default watchdog timeout in seconds, | ||
if unset, the default timeout is 30 seconds | ||
|
||
Example: | ||
watchdog@208a038 { | ||
compatible = "qcom,kpss-wdt-ipq8064"; | ||
reg = <0x0208a038 0x40>; | ||
clocks = <&sleep_clk>; | ||
timeout-sec = <10>; | ||
}; |
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.