-
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.
yaml --- r: 304116 b: refs/heads/master c: 5d4e2d0 h: refs/heads/master v: v3
- Loading branch information
Linus Torvalds
committed
May 22, 2012
1 parent
1c12f1d
commit d975361
Showing
4,163 changed files
with
199,133 additions
and
160,182 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 94ca629e40eb7e997be21d8065c25e4f3797b03f | ||
refs/heads/master: 5d4e2d08e7fdf7339f84a1c670d296a77e02f881 |
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,9 @@ | ||
What: ip_queue | ||
Date: finally removed in kernel v3.5.0 | ||
Contact: Pablo Neira Ayuso <pablo@netfilter.org> | ||
Description: | ||
ip_queue has been replaced by nfnetlink_queue which provides | ||
more advanced queueing mechanism to user-space. The ip_queue | ||
module was already announced to become obsolete years ago. | ||
|
||
Users: |
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 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
27 changes: 27 additions & 0 deletions
27
trunk/Documentation/devicetree/bindings/arm/arch_timer.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,27 @@ | ||
* ARM architected timer | ||
|
||
ARM Cortex-A7 and Cortex-A15 have a per-core architected timer, which | ||
provides per-cpu timers. | ||
|
||
The timer is attached to a GIC to deliver its per-processor interrupts. | ||
|
||
** Timer node properties: | ||
|
||
- compatible : Should at least contain "arm,armv7-timer". | ||
|
||
- interrupts : Interrupt list for secure, non-secure, virtual and | ||
hypervisor timers, in that order. | ||
|
||
- clock-frequency : The frequency of the main counter, in Hz. Optional. | ||
|
||
Example: | ||
|
||
timer { | ||
compatible = "arm,cortex-a15-timer", | ||
"arm,armv7-timer"; | ||
interrupts = <1 13 0xf08>, | ||
<1 14 0xf08>, | ||
<1 11 0xf08>, | ||
<1 10 0xf08>; | ||
clock-frequency = <100000000>; | ||
}; |
38 changes: 38 additions & 0 deletions
38
trunk/Documentation/devicetree/bindings/arm/lpc32xx-mic.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,38 @@ | ||
* NXP LPC32xx Main Interrupt Controller | ||
(MIC, including SIC1 and SIC2 secondary controllers) | ||
|
||
Required properties: | ||
- compatible: Should be "nxp,lpc3220-mic" | ||
- interrupt-controller: Identifies the node as an interrupt controller. | ||
- interrupt-parent: Empty for the interrupt controller itself | ||
- #interrupt-cells: The number of cells to define the interrupts. Should be 2. | ||
The first cell is the IRQ number | ||
The second cell is used to specify mode: | ||
1 = low-to-high edge triggered | ||
2 = high-to-low edge triggered | ||
4 = active high level-sensitive | ||
8 = active low level-sensitive | ||
Default for internal sources should be set to 4 (active high). | ||
- reg: Should contain MIC registers location and length | ||
|
||
Examples: | ||
/* | ||
* MIC | ||
*/ | ||
mic: interrupt-controller@40008000 { | ||
compatible = "nxp,lpc3220-mic"; | ||
interrupt-controller; | ||
interrupt-parent; | ||
#interrupt-cells = <2>; | ||
reg = <0x40008000 0xC000>; | ||
}; | ||
|
||
/* | ||
* ADC | ||
*/ | ||
adc@40048000 { | ||
compatible = "nxp,lpc3220-adc"; | ||
reg = <0x40048000 0x1000>; | ||
interrupt-parent = <&mic>; | ||
interrupts = <39 4>; | ||
}; |
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,8 @@ | ||
NXP LPC32xx Platforms Device Tree Bindings | ||
------------------------------------------ | ||
|
||
Boards with the NXP LPC32xx SoC shall have the following properties: | ||
|
||
Required root node property: | ||
|
||
compatible: must be "nxp,lpc3220", "nxp,lpc3230", "nxp,lpc3240" or "nxp,lpc3250" |
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,40 @@ | ||
* Marvell MMP Interrupt controller | ||
|
||
Required properties: | ||
- compatible : Should be "mrvl,mmp-intc", "mrvl,mmp2-intc" or | ||
"mrvl,mmp2-mux-intc" | ||
- reg : Address and length of the register set of the interrupt controller. | ||
If the interrupt controller is intc, address and length means the range | ||
of the whold interrupt controller. If the interrupt controller is mux-intc, | ||
address and length means one register. Since address of mux-intc is in the | ||
range of intc. mux-intc is secondary interrupt controller. | ||
- reg-names : Name of the register set of the interrupt controller. It's | ||
only required in mux-intc interrupt controller. | ||
- interrupts : Should be the port interrupt shared by mux interrupts. It's | ||
only required in mux-intc interrupt controller. | ||
- interrupt-controller : Identifies the node as an interrupt controller. | ||
- #interrupt-cells : Specifies the number of cells needed to encode an | ||
interrupt source. | ||
- mrvl,intc-nr-irqs : Specifies the number of interrupts in the interrupt | ||
controller. | ||
- mrvl,clr-mfp-irq : Specifies the interrupt that needs to clear MFP edge | ||
detection first. | ||
|
||
Example: | ||
intc: interrupt-controller@d4282000 { | ||
compatible = "mrvl,mmp2-intc"; | ||
interrupt-controller; | ||
#interrupt-cells = <1>; | ||
reg = <0xd4282000 0x1000>; | ||
mrvl,intc-nr-irqs = <64>; | ||
}; | ||
|
||
intcmux4@d4282150 { | ||
compatible = "mrvl,mmp2-mux-intc"; | ||
interrupts = <4>; | ||
interrupt-controller; | ||
#interrupt-cells = <1>; | ||
reg = <0x150 0x4>, <0x168 0x4>; | ||
reg-names = "mux status", "mux mask"; | ||
mrvl,intc-nr-irqs = <2>; | ||
}; |
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
13 changes: 13 additions & 0 deletions
13
trunk/Documentation/devicetree/bindings/arm/mrvl/timer.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,13 @@ | ||
* Marvell MMP Timer controller | ||
|
||
Required properties: | ||
- compatible : Should be "mrvl,mmp-timer". | ||
- reg : Address and length of the register set of timer controller. | ||
- interrupts : Should be the interrupt number. | ||
|
||
Example: | ||
timer0: timer@d4014000 { | ||
compatible = "mrvl,mmp-timer"; | ||
reg = <0xd4014000 0x100>; | ||
interrupts = <13>; | ||
}; |
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.