-
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.
- Loading branch information
Linus Torvalds
committed
Apr 3, 2012
1 parent
e2c09a0
commit 9be48bc
Showing
783 changed files
with
39,477 additions
and
11,634 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 3248877ea1796915419fba7c89315fdbf00cb56a | ||
refs/heads/master: 7d6e1cb7aed231b58acd71bdbe67fc03221373e4 |
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
14 changes: 14 additions & 0 deletions
14
trunk/Documentation/ABI/testing/sysfs-bus-event_source-devices-format
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,14 @@ | ||
Where: /sys/bus/event_source/devices/<dev>/format | ||
Date: January 2012 | ||
Kernel Version: 3.3 | ||
Contact: Jiri Olsa <jolsa@redhat.com> | ||
Description: | ||
Attribute group to describe the magic bits that go into | ||
perf_event_attr::config[012] for a particular pmu. | ||
Each attribute of this group defines the 'hardware' bitmask | ||
we want to export, so that userspace can deal with sane | ||
name/value pairs. | ||
|
||
Example: 'config1:1,6-10,44' | ||
Defines contents of attribute that occupies bits 1,6-10,44 of | ||
perf_event_attr::config1. |
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
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,33 @@ | ||
* FSMC NAND | ||
|
||
Required properties: | ||
- compatible : "st,spear600-fsmc-nand" | ||
- reg : Address range of the mtd chip | ||
- reg-names: Should contain the reg names "fsmc_regs" and "nand_data" | ||
- st,ale-off : Chip specific offset to ALE | ||
- st,cle-off : Chip specific offset to CLE | ||
|
||
Optional properties: | ||
- bank-width : Width (in bytes) of the device. If not present, the width | ||
defaults to 1 byte | ||
- nand-skip-bbtscan: Indicates the the BBT scanning should be skipped | ||
|
||
Example: | ||
|
||
fsmc: flash@d1800000 { | ||
compatible = "st,spear600-fsmc-nand"; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
reg = <0xd1800000 0x1000 /* FSMC Register */ | ||
0xd2000000 0x4000>; /* NAND Base */ | ||
reg-names = "fsmc_regs", "nand_data"; | ||
st,ale-off = <0x20000>; | ||
st,cle-off = <0x10000>; | ||
|
||
bank-width = <1>; | ||
nand-skip-bbtscan; | ||
|
||
partition@0 { | ||
... | ||
}; | ||
}; |
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,31 @@ | ||
* SPEAr SMI | ||
|
||
Required properties: | ||
- compatible : "st,spear600-smi" | ||
- reg : Address range of the mtd chip | ||
- #address-cells, #size-cells : Must be present if the device has sub-nodes | ||
representing partitions. | ||
- interrupt-parent: Should be the phandle for the interrupt controller | ||
that services interrupts for this device | ||
- interrupts: Should contain the STMMAC interrupts | ||
- clock-rate : Functional clock rate of SMI in Hz | ||
|
||
Optional properties: | ||
- st,smi-fast-mode : Flash supports read in fast mode | ||
|
||
Example: | ||
|
||
smi: flash@fc000000 { | ||
compatible = "st,spear600-smi"; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
reg = <0xfc000000 0x1000>; | ||
interrupt-parent = <&vic1>; | ||
interrupts = <12>; | ||
clock-rate = <50000000>; /* 50MHz */ | ||
|
||
flash@f8000000 { | ||
st,smi-fast-mode; | ||
... | ||
}; | ||
}; |
18 changes: 18 additions & 0 deletions
18
trunk/Documentation/devicetree/bindings/power_supply/max17042_battery.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,18 @@ | ||
max17042_battery | ||
~~~~~~~~~~~~~~~~ | ||
|
||
Required properties : | ||
- compatible : "maxim,max17042" | ||
|
||
Optional properties : | ||
- maxim,rsns-microohm : Resistance of rsns resistor in micro Ohms | ||
(datasheet-recommended value is 10000). | ||
Defining this property enables current-sense functionality. | ||
|
||
Example: | ||
|
||
battery-charger@36 { | ||
compatible = "maxim,max17042"; | ||
reg = <0x36>; | ||
maxim,rsns-microohm = <10000>; | ||
}; |
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 |
---|---|---|
|
@@ -158,7 +158,6 @@ logo_*.c | |
logo_*_clut224.c | ||
logo_*_mono.c | ||
lxdialog | ||
mach | ||
mach-types | ||
mach-types.h | ||
machtypes.h | ||
|
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.