-
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.
mtd: devices: elm: Add support for ELM error correction
The ELM hardware module can be used to speedup BCH 4/8/16 ECC scheme error correction. For now only 4 & 8 bit support is added Signed-off-by: Philip Avinash <avinashphilip@ti.com> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
- Loading branch information
Philip Avinash
authored and
Artem Bityutskiy
committed
Feb 4, 2013
1 parent
c3e4b99
commit bf22433
Showing
4 changed files
with
476 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Error location module | ||
|
||
Required properties: | ||
- compatible: Must be "ti,am33xx-elm" | ||
- reg: physical base address and size of the registers map. | ||
- interrupts: Interrupt number for the elm. | ||
|
||
Optional properties: | ||
- ti,hwmods: Name of the hwmod associated to the elm | ||
|
||
Example: | ||
elm: elm@0 { | ||
compatible = "ti,am33xx-elm"; | ||
reg = <0x48080000 0x2000>; | ||
interrupts = <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
Oops, something went wrong.