-
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: 281974 b: refs/heads/master c: 38e5781 h: refs/heads/master v: v3
- Loading branch information
Linus Torvalds
committed
Jan 9, 2012
1 parent
2483832
commit e57c1a5
Showing
2,737 changed files
with
66,845 additions
and
68,041 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: a8c1f65c79cbbb2f7da782d4c9d15639a9b94b27 | ||
refs/heads/master: 38e5781bbf8e82c1635ea845e0d07b2228a5ac7a |
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
2 changes: 1 addition & 1 deletion
2
trunk/Documentation/ABI/testing/sysfs-driver-hid-logitech-lg4ff
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,7 +1,7 @@ | ||
What: /sys/module/hid_logitech/drivers/hid:logitech/<dev>/range. | ||
Date: July 2011 | ||
KernelVersion: 3.2 | ||
Contact: Michal Mal� <madcatxster@gmail.com> | ||
Contact: Michal Malý <madcatxster@gmail.com> | ||
Description: Display minimum, maximum and current range of the steering | ||
wheel. Writing a value within min and max boundaries sets the | ||
range of the wheel. |
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
8 changes: 8 additions & 0 deletions
8
trunk/Documentation/devicetree/bindings/arm/insignal-boards.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,8 @@ | ||
* Insignal's Exynos4210 based Origen evaluation board | ||
|
||
Origen low-cost evaluation board is based on Samsung's Exynos4210 SoC. | ||
|
||
Required root node properties: | ||
- compatible = should be one or more of the following. | ||
(a) "samsung,smdkv310" - for Samsung's SMDKV310 eval board. | ||
(b) "samsung,exynos4210" - for boards based on Exynos4210 SoC. |
8 changes: 8 additions & 0 deletions
8
trunk/Documentation/devicetree/bindings/arm/samsung-boards.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,8 @@ | ||
* Samsung's Exynos4210 based SMDKV310 evaluation board | ||
|
||
SMDKV310 evaluation board is based on Samsung's Exynos4210 SoC. | ||
|
||
Required root node properties: | ||
- compatible = should be one or more of the following. | ||
(a) "samsung,smdkv310" - for Samsung's SMDKV310 eval board. | ||
(b) "samsung,exynos4210" - for boards based on Exynos4210 SoC. |
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 @@ | ||
NVIDIA Tegra device tree bindings | ||
------------------------------------------- | ||
|
||
Boards with the tegra20 SoC shall have the following properties: | ||
|
||
Required root node property: | ||
|
||
compatible = "nvidia,tegra20"; | ||
|
||
Boards with the tegra30 SoC shall have the following properties: | ||
|
||
Required root node property: | ||
|
||
compatible = "nvidia,tegra30"; |
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,30 @@ | ||
* ARM PrimeCell PL330 DMA Controller | ||
|
||
The ARM PrimeCell PL330 DMA controller can move blocks of memory contents | ||
between memory and peripherals or memory to memory. | ||
|
||
Required properties: | ||
- compatible: should include both "arm,pl330" and "arm,primecell". | ||
- reg: physical base address of the controller and length of memory mapped | ||
region. | ||
- interrupts: interrupt number to the cpu. | ||
|
||
Example: | ||
|
||
pdma0: pdma@12680000 { | ||
compatible = "arm,pl330", "arm,primecell"; | ||
reg = <0x12680000 0x1000>; | ||
interrupts = <99>; | ||
}; | ||
|
||
Client drivers (device nodes requiring dma transfers from dev-to-mem or | ||
mem-to-dev) should specify the DMA channel numbers using a two-value pair | ||
as shown below. | ||
|
||
[property name] = <[phandle of the dma controller] [dma request id]>; | ||
|
||
where 'dma request id' is the dma request number which is connected | ||
to the client controller. The 'property name' is recommended to be | ||
of the form <name>-dma-channel. | ||
|
||
Example: tx-dma-channel = <&pdma0 12>; |
40 changes: 40 additions & 0 deletions
40
trunk/Documentation/devicetree/bindings/gpio/gpio-samsung.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,40 @@ | ||
Samsung Exynos4 GPIO Controller | ||
|
||
Required properties: | ||
- compatible: Compatible property value should be "samsung,exynos4-gpio>". | ||
|
||
- reg: Physical base address of the controller and length of memory mapped | ||
region. | ||
|
||
- #gpio-cells: Should be 4. The syntax of the gpio specifier used by client nodes | ||
should be the following with values derived from the SoC user manual. | ||
<[phandle of the gpio controller node] | ||
[pin number within the gpio controller] | ||
[mux function] | ||
[pull up/down] | ||
[drive strength]> | ||
|
||
Values for gpio specifier: | ||
- Pin number: is a value between 0 to 7. | ||
- Pull Up/Down: 0 - Pull Up/Down Disabled. | ||
1 - Pull Down Enabled. | ||
3 - Pull Up Enabled. | ||
- Drive Strength: 0 - 1x, | ||
1 - 3x, | ||
2 - 2x, | ||
3 - 4x | ||
|
||
- gpio-controller: Specifies that the node is a gpio controller. | ||
- #address-cells: should be 1. | ||
- #size-cells: should be 1. | ||
|
||
Example: | ||
|
||
gpa0: gpio-controller@11400000 { | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
compatible = "samsung,exynos4-gpio"; | ||
reg = <0x11400000 0x20>; | ||
#gpio-cells = <4>; | ||
gpio-controller; | ||
}; |
22 changes: 22 additions & 0 deletions
22
trunk/Documentation/devicetree/bindings/i2c/i2c-designware.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,22 @@ | ||
* Synopsys DesignWare I2C | ||
|
||
Required properties : | ||
|
||
- compatible : should be "snps,designware-i2c" | ||
- reg : Offset and length of the register set for the device | ||
- interrupts : <IRQ> where IRQ is the interrupt number. | ||
|
||
Recommended properties : | ||
|
||
- clock-frequency : desired I2C bus clock frequency in Hz. | ||
|
||
Example : | ||
|
||
i2c@f0000 { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
compatible = "snps,designware-i2c"; | ||
reg = <0xf0000 0x1000>; | ||
interrupts = <11>; | ||
clock-frequency = <400000>; | ||
}; |
58 changes: 58 additions & 0 deletions
58
trunk/Documentation/devicetree/bindings/i2c/trivial-devices.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,58 @@ | ||
This is a list of trivial i2c devices that have simple device tree | ||
bindings, consisting only of a compatible field, an address and | ||
possibly an interrupt line. | ||
|
||
If a device needs more specific bindings, such as properties to | ||
describe some aspect of it, there needs to be a specific binding | ||
document for it just like any other devices. | ||
|
||
|
||
Compatible Vendor / Chip | ||
========== ============= | ||
ad,ad7414 SMBus/I2C Digital Temperature Sensor in 6-Pin SOT with SMBus Alert and Over Temperature Pin | ||
ad,adm9240 ADM9240: Complete System Hardware Monitor for uProcessor-Based Systems | ||
adi,adt7461 +/-1C TDM Extended Temp Range I.C | ||
adt7461 +/-1C TDM Extended Temp Range I.C | ||
at,24c08 i2c serial eeprom (24cxx) | ||
atmel,24c02 i2c serial eeprom (24cxx) | ||
catalyst,24c32 i2c serial eeprom | ||
dallas,ds1307 64 x 8, Serial, I2C Real-Time Clock | ||
dallas,ds1338 I2C RTC with 56-Byte NV RAM | ||
dallas,ds1339 I2C Serial Real-Time Clock | ||
dallas,ds1340 I2C RTC with Trickle Charger | ||
dallas,ds1374 I2C, 32-Bit Binary Counter Watchdog RTC with Trickle Charger and Reset Input/Output | ||
dallas,ds1631 High-Precision Digital Thermometer | ||
dallas,ds1682 Total-Elapsed-Time Recorder with Alarm | ||
dallas,ds1775 Tiny Digital Thermometer and Thermostat | ||
dallas,ds3232 Extremely Accurate I²C RTC with Integrated Crystal and SRAM | ||
dallas,ds4510 CPU Supervisor with Nonvolatile Memory and Programmable I/O | ||
dallas,ds75 Digital Thermometer and Thermostat | ||
dialog,da9053 DA9053: flexible system level PMIC with multicore support | ||
epson,rx8025 High-Stability. I2C-Bus INTERFACE REAL TIME CLOCK MODULE | ||
epson,rx8581 I2C-BUS INTERFACE REAL TIME CLOCK MODULE | ||
fsl,mag3110 MAG3110: Xtrinsic High Accuracy, 3D Magnetometer | ||
fsl,mc13892 MC13892: Power Management Integrated Circuit (PMIC) for i.MX35/51 | ||
fsl,mma8450 MMA8450Q: Xtrinsic Low-power, 3-axis Xtrinsic Accelerometer | ||
fsl,mpr121 MPR121: Proximity Capacitive Touch Sensor Controller | ||
fsl,sgtl5000 SGTL5000: Ultra Low-Power Audio Codec | ||
maxim,ds1050 5 Bit Programmable, Pulse-Width Modulator | ||
maxim,max1237 Low-Power, 4-/12-Channel, 2-Wire Serial, 12-Bit ADCs | ||
maxim,max6625 9-Bit/12-Bit Temperature Sensors with I²C-Compatible Serial Interface | ||
mc,rv3029c2 Real Time Clock Module with I2C-Bus | ||
national,lm75 I2C TEMP SENSOR | ||
national,lm80 Serial Interface ACPI-Compatible Microprocessor System Hardware Monitor | ||
national,lm92 ±0.33°C Accurate, 12-Bit + Sign Temperature Sensor and Thermal Window Comparator with Two-Wire Interface | ||
nxp,pca9556 Octal SMBus and I2C registered interface | ||
nxp,pca9557 8-bit I2C-bus and SMBus I/O port with reset | ||
nxp,pcf8563 Real-time clock/calendar | ||
ovti,ov5642 OV5642: Color CMOS QSXGA (5-megapixel) Image Sensor with OmniBSI and Embedded TrueFocus | ||
pericom,pt7c4338 Real-time Clock Module | ||
plx,pex8648 48-Lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch | ||
ramtron,24c64 i2c serial eeprom (24cxx) | ||
ricoh,rs5c372a I2C bus SERIAL INTERFACE REAL-TIME CLOCK IC | ||
samsung,24ad0xd1 S524AD0XF1 (128K/256K-bit Serial EEPROM for Low Power) | ||
st-micro,24c256 i2c serial eeprom (24cxx) | ||
stm,m41t00 Serial Access TIMEKEEPER | ||
stm,m41t62 Serial real-time clock (RTC) with alarm | ||
stm,m41t80 M41T80 - SERIAL ACCESS RTC WITH ALARMS | ||
ti,tsc2003 I2C Touch-Screen Controller |
Oops, something went wrong.