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 branch 'for-4.3-fixes' into for-4.4
- Loading branch information
Showing
1,604 changed files
with
105,307 additions
and
24,205 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 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 |
---|---|---|
|
@@ -2992,6 +2992,10 @@ S: 2200 Mission College Blvd | |
S: Santa Clara, CA 95052 | ||
S: USA | ||
|
||
N: Anil Ravindranath | ||
E: [email protected] | ||
D: PMC-Sierra MaxRAID driver | ||
|
||
N: Eric S. Raymond | ||
E: [email protected] | ||
W: http://www.tuxedo.org/~esr/ | ||
|
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,23 @@ | ||
What: /sys/hypervisor/pmu/pmu_mode | ||
Date: August 2015 | ||
KernelVersion: 4.3 | ||
Contact: Boris Ostrovsky <[email protected]> | ||
Description: | ||
Describes mode that Xen's performance-monitoring unit (PMU) | ||
uses. Accepted values are | ||
"off" -- PMU is disabled | ||
"self" -- The guest can profile itself | ||
"hv" -- The guest can profile itself and, if it is | ||
privileged (e.g. dom0), the hypervisor | ||
"all" -- The guest can profile itself, the hypervisor | ||
and all other guests. Only available to | ||
privileged guests. | ||
|
||
What: /sys/hypervisor/pmu/pmu_features | ||
Date: August 2015 | ||
KernelVersion: 4.3 | ||
Contact: Boris Ostrovsky <[email protected]> | ||
Description: | ||
Describes Xen PMU features (as an integer). A set bit indicates | ||
that the corresponding feature is enabled. See | ||
include/xen/interface/xenpmu.h for available features |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,22 @@ | ||
Device tree configuration for Renesas EMEV2 IIC controller | ||
|
||
Required properties: | ||
- compatible : "renesas,iic-emev2" | ||
- reg : address start and address range size of device | ||
- interrupts : specifier for the IIC controller interrupt | ||
- clocks : phandle to the IP core SCLK | ||
- clock-names : must be "sclk" | ||
- #address-cells : should be <1> | ||
- #size-cells : should be <0> | ||
|
||
Example: | ||
|
||
iic0: i2c@e0070000 { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
compatible = "renesas,iic-emev2"; | ||
reg = <0xe0070000 0x28>; | ||
interrupts = <0 32 IRQ_TYPE_EDGE_RISING>; | ||
clocks = <&iic0_sclk>; | ||
clock-names = "sclk"; | ||
}; |
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 @@ | ||
NXP I2C controller for LPC2xxx/178x/18xx/43xx | ||
|
||
Required properties: | ||
- compatible: must be "nxp,lpc1788-i2c" | ||
- reg: physical address and length of the device registers | ||
- interrupts: a single interrupt specifier | ||
- clocks: clock for the device | ||
- #address-cells: should be <1> | ||
- #size-cells: should be <0> | ||
|
||
Optional properties: | ||
- clock-frequency: the desired I2C bus clock frequency in Hz; in | ||
absence of this property the default value is used (100 kHz). | ||
|
||
Example: | ||
i2c0: i2c@400a1000 { | ||
compatible = "nxp,lpc1788-i2c"; | ||
reg = <0x400a1000 0x1000>; | ||
interrupts = <18>; | ||
clocks = <&ccu1 CLK_APB1_I2C0>; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
}; | ||
|
||
&i2c0 { | ||
clock-frequency = <400000>; | ||
|
||
lm75@48 { | ||
compatible = "nxp,lm75"; | ||
reg = <0x48>; | ||
}; | ||
}; | ||
|
Oops, something went wrong.