-
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: 319998 b: refs/heads/master c: 27c1ee3 h: refs/heads/master v: v3
- Loading branch information
Linus Torvalds
committed
Jul 31, 2012
1 parent
910b194
commit b1c80d5
Showing
620 changed files
with
43,807 additions
and
17,364 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: 086ff4b3a7fb9cdf41e6a5d0ccd99b86d84633a1 | ||
refs/heads/master: 27c1ee3f929555b71fa39ec0d81a7e7185de1b16 |
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,140 @@ | ||
What: /sys/devices/system/edac/mc/mc*/reset_counters | ||
Date: January 2006 | ||
Contact: linux-edac@vger.kernel.org | ||
Description: This write-only control file will zero all the statistical | ||
counters for UE and CE errors on the given memory controller. | ||
Zeroing the counters will also reset the timer indicating how | ||
long since the last counter were reset. This is useful for | ||
computing errors/time. Since the counters are always reset | ||
at driver initialization time, no module/kernel parameter | ||
is available. | ||
|
||
What: /sys/devices/system/edac/mc/mc*/seconds_since_reset | ||
Date: January 2006 | ||
Contact: linux-edac@vger.kernel.org | ||
Description: This attribute file displays how many seconds have elapsed | ||
since the last counter reset. This can be used with the error | ||
counters to measure error rates. | ||
|
||
What: /sys/devices/system/edac/mc/mc*/mc_name | ||
Date: January 2006 | ||
Contact: linux-edac@vger.kernel.org | ||
Description: This attribute file displays the type of memory controller | ||
that is being utilized. | ||
|
||
What: /sys/devices/system/edac/mc/mc*/size_mb | ||
Date: January 2006 | ||
Contact: linux-edac@vger.kernel.org | ||
Description: This attribute file displays, in count of megabytes, of memory | ||
that this memory controller manages. | ||
|
||
What: /sys/devices/system/edac/mc/mc*/ue_count | ||
Date: January 2006 | ||
Contact: linux-edac@vger.kernel.org | ||
Description: This attribute file displays the total count of uncorrectable | ||
errors that have occurred on this memory controller. If | ||
panic_on_ue is set, this counter will not have a chance to | ||
increment, since EDAC will panic the system | ||
|
||
What: /sys/devices/system/edac/mc/mc*/ue_noinfo_count | ||
Date: January 2006 | ||
Contact: linux-edac@vger.kernel.org | ||
Description: This attribute file displays the number of UEs that have | ||
occurred on this memory controller with no information as to | ||
which DIMM slot is having errors. | ||
|
||
What: /sys/devices/system/edac/mc/mc*/ce_count | ||
Date: January 2006 | ||
Contact: linux-edac@vger.kernel.org | ||
Description: This attribute file displays the total count of correctable | ||
errors that have occurred on this memory controller. This | ||
count is very important to examine. CEs provide early | ||
indications that a DIMM is beginning to fail. This count | ||
field should be monitored for non-zero values and report | ||
such information to the system administrator. | ||
|
||
What: /sys/devices/system/edac/mc/mc*/ce_noinfo_count | ||
Date: January 2006 | ||
Contact: linux-edac@vger.kernel.org | ||
Description: This attribute file displays the number of CEs that | ||
have occurred on this memory controller wherewith no | ||
information as to which DIMM slot is having errors. Memory is | ||
handicapped, but operational, yet no information is available | ||
to indicate which slot the failing memory is in. This count | ||
field should be also be monitored for non-zero values. | ||
|
||
What: /sys/devices/system/edac/mc/mc*/sdram_scrub_rate | ||
Date: February 2007 | ||
Contact: linux-edac@vger.kernel.org | ||
Description: Read/Write attribute file that controls memory scrubbing. | ||
The scrubbing rate used by the memory controller is set by | ||
writing a minimum bandwidth in bytes/sec to the attribute file. | ||
The rate will be translated to an internal value that gives at | ||
least the specified rate. | ||
Reading the file will return the actual scrubbing rate employed. | ||
If configuration fails or memory scrubbing is not implemented, | ||
the value of the attribute file will be -1. | ||
|
||
What: /sys/devices/system/edac/mc/mc*/max_location | ||
Date: April 2012 | ||
Contact: Mauro Carvalho Chehab <mchehab@redhat.com> | ||
linux-edac@vger.kernel.org | ||
Description: This attribute file displays the information about the last | ||
available memory slot in this memory controller. It is used by | ||
userspace tools in order to display the memory filling layout. | ||
|
||
What: /sys/devices/system/edac/mc/mc*/(dimm|rank)*/size | ||
Date: April 2012 | ||
Contact: Mauro Carvalho Chehab <mchehab@redhat.com> | ||
linux-edac@vger.kernel.org | ||
Description: This attribute file will display the size of dimm or rank. | ||
For dimm*/size, this is the size, in MB of the DIMM memory | ||
stick. For rank*/size, this is the size, in MB for one rank | ||
of the DIMM memory stick. On single rank memories (1R), this | ||
is also the total size of the dimm. On dual rank (2R) memories, | ||
this is half the size of the total DIMM memories. | ||
|
||
What: /sys/devices/system/edac/mc/mc*/(dimm|rank)*/dimm_dev_type | ||
Date: April 2012 | ||
Contact: Mauro Carvalho Chehab <mchehab@redhat.com> | ||
linux-edac@vger.kernel.org | ||
Description: This attribute file will display what type of DRAM device is | ||
being utilized on this DIMM (x1, x2, x4, x8, ...). | ||
|
||
What: /sys/devices/system/edac/mc/mc*/(dimm|rank)*/dimm_edac_mode | ||
Date: April 2012 | ||
Contact: Mauro Carvalho Chehab <mchehab@redhat.com> | ||
linux-edac@vger.kernel.org | ||
Description: This attribute file will display what type of Error detection | ||
and correction is being utilized. For example: S4ECD4ED would | ||
mean a Chipkill with x4 DRAM. | ||
|
||
What: /sys/devices/system/edac/mc/mc*/(dimm|rank)*/dimm_label | ||
Date: April 2012 | ||
Contact: Mauro Carvalho Chehab <mchehab@redhat.com> | ||
linux-edac@vger.kernel.org | ||
Description: This control file allows this DIMM to have a label assigned | ||
to it. With this label in the module, when errors occur | ||
the output can provide the DIMM label in the system log. | ||
This becomes vital for panic events to isolate the | ||
cause of the UE event. | ||
DIMM Labels must be assigned after booting, with information | ||
that correctly identifies the physical slot with its | ||
silk screen label. This information is currently very | ||
motherboard specific and determination of this information | ||
must occur in userland at this time. | ||
|
||
What: /sys/devices/system/edac/mc/mc*/(dimm|rank)*/dimm_location | ||
Date: April 2012 | ||
Contact: Mauro Carvalho Chehab <mchehab@redhat.com> | ||
linux-edac@vger.kernel.org | ||
Description: This attribute file will display the location (csrow/channel, | ||
branch/channel/slot or channel/slot) of the dimm or rank. | ||
|
||
What: /sys/devices/system/edac/mc/mc*/(dimm|rank)*/dimm_mem_type | ||
Date: April 2012 | ||
Contact: Mauro Carvalho Chehab <mchehab@redhat.com> | ||
linux-edac@vger.kernel.org | ||
Description: This attribute file will display what type of memory is | ||
currently on this csrow. Normally, either buffered or | ||
unbuffered memory (for example, Unbuffered-DDR3). |
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
15 changes: 15 additions & 0 deletions
15
trunk/Documentation/devicetree/bindings/arm/calxeda/l2ecc.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,15 @@ | ||
Calxeda Highbank L2 cache ECC | ||
|
||
Properties: | ||
- compatible : Should be "calxeda,hb-sregs-l2-ecc" | ||
- reg : Address and size for ECC error interrupt clear registers. | ||
- interrupts : Should be single bit error interrupt, then double bit error | ||
interrupt. | ||
|
||
Example: | ||
|
||
sregs@fff3c200 { | ||
compatible = "calxeda,hb-sregs-l2-ecc"; | ||
reg = <0xfff3c200 0x100>; | ||
interrupts = <0 71 4 0 72 4>; | ||
}; |
14 changes: 14 additions & 0 deletions
14
trunk/Documentation/devicetree/bindings/arm/calxeda/mem-ctrlr.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,14 @@ | ||
Calxeda DDR memory controller | ||
|
||
Properties: | ||
- compatible : Should be "calxeda,hb-ddr-ctrl" | ||
- reg : Address and size for DDR controller registers. | ||
- interrupts : Interrupt for DDR controller. | ||
|
||
Example: | ||
|
||
memory-controller@fff00000 { | ||
compatible = "calxeda,hb-ddr-ctrl"; | ||
reg = <0xfff00000 0x1000>; | ||
interrupts = <0 91 4>; | ||
}; |
30 changes: 30 additions & 0 deletions
30
trunk/Documentation/devicetree/bindings/ata/cavium-compact-flash.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,30 @@ | ||
* Compact Flash | ||
|
||
The Cavium Compact Flash device is connected to the Octeon Boot Bus, | ||
and is thus a child of the Boot Bus device. It can read and write | ||
industry standard compact flash devices. | ||
|
||
Properties: | ||
- compatible: "cavium,ebt3000-compact-flash"; | ||
|
||
Compatibility with many Cavium evaluation boards. | ||
|
||
- reg: The base address of the the CF chip select banks. Depending on | ||
the device configuration, there may be one or two banks. | ||
|
||
- cavium,bus-width: The width of the connection to the CF devices. Valid | ||
values are 8 and 16. | ||
|
||
- cavium,true-ide: Optional, if present the CF connection is in True IDE mode. | ||
|
||
- cavium,dma-engine-handle: Optional, a phandle for the DMA Engine connected | ||
to this device. | ||
|
||
Example: | ||
compact-flash@5,0 { | ||
compatible = "cavium,ebt3000-compact-flash"; | ||
reg = <5 0 0x10000>, <6 0 0x10000>; | ||
cavium,bus-width = <16>; | ||
cavium,true-ide; | ||
cavium,dma-engine-handle = <&dma0>; | ||
}; |
49 changes: 49 additions & 0 deletions
49
trunk/Documentation/devicetree/bindings/gpio/cavium-octeon-gpio.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,49 @@ | ||
* General Purpose Input Output (GPIO) bus. | ||
|
||
Properties: | ||
- compatible: "cavium,octeon-3860-gpio" | ||
|
||
Compatibility with all cn3XXX, cn5XXX and cn6XXX SOCs. | ||
|
||
- reg: The base address of the GPIO unit's register bank. | ||
|
||
- gpio-controller: This is a GPIO controller. | ||
|
||
- #gpio-cells: Must be <2>. The first cell is the GPIO pin. | ||
|
||
- interrupt-controller: The GPIO controller is also an interrupt | ||
controller, many of its pins may be configured as an interrupt | ||
source. | ||
|
||
- #interrupt-cells: Must be <2>. The first cell is the GPIO pin | ||
connected to the interrupt source. The second cell is the interrupt | ||
triggering protocol and may have one of four values: | ||
1 - edge triggered on the rising edge. | ||
2 - edge triggered on the falling edge | ||
4 - level triggered active high. | ||
8 - level triggered active low. | ||
|
||
- interrupts: Interrupt routing for each pin. | ||
|
||
Example: | ||
|
||
gpio-controller@1070000000800 { | ||
#gpio-cells = <2>; | ||
compatible = "cavium,octeon-3860-gpio"; | ||
reg = <0x10700 0x00000800 0x0 0x100>; | ||
gpio-controller; | ||
/* Interrupts are specified by two parts: | ||
* 1) GPIO pin number (0..15) | ||
* 2) Triggering (1 - edge rising | ||
* 2 - edge falling | ||
* 4 - level active high | ||
* 8 - level active low) | ||
*/ | ||
interrupt-controller; | ||
#interrupt-cells = <2>; | ||
/* The GPIO pin connect to 16 consecutive CUI bits */ | ||
interrupts = <0 16>, <0 17>, <0 18>, <0 19>, | ||
<0 20>, <0 21>, <0 22>, <0 23>, | ||
<0 24>, <0 25>, <0 26>, <0 27>, | ||
<0 28>, <0 29>, <0 30>, <0 31>; | ||
}; |
Oops, something went wrong.