-
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 branches 'omap-for-v3.13/dt' and 'omap-for-v3.13/quirk' into om…
…ap-for-v3.13/board-removal We need the fixes in v3.12-rc5, dts changes in omap-for-v3.13/dt, and the platform data quirk changes in omap-for-v3.13/quirk to start removing omap3 board files without breaking things.
- Loading branch information
Showing
51 changed files
with
3,881 additions
and
1,004 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
OMAP SoC AES crypto Module | ||
|
||
Required properties: | ||
|
||
- compatible : Should contain entries for this and backward compatible | ||
AES versions: | ||
- "ti,omap2-aes" for OMAP2. | ||
- "ti,omap3-aes" for OMAP3. | ||
- "ti,omap4-aes" for OMAP4 and AM33XX. | ||
Note that the OMAP2 and 3 versions are compatible (OMAP3 supports | ||
more algorithms) but they are incompatible with OMAP4. | ||
- ti,hwmods: Name of the hwmod associated with the AES module | ||
- reg : Offset and length of the register set for the module | ||
- interrupts : the interrupt-specifier for the AES module. | ||
|
||
Optional properties: | ||
- dmas: DMA specifiers for tx and rx dma. See the DMA client binding, | ||
Documentation/devicetree/bindings/dma/dma.txt | ||
- dma-names: DMA request names should include "tx" and "rx" if present. | ||
|
||
Example: | ||
/* AM335x */ | ||
aes: aes@53500000 { | ||
compatible = "ti,omap4-aes"; | ||
ti,hwmods = "aes"; | ||
reg = <0x53500000 0xa0>; | ||
interrupts = <102>; | ||
dmas = <&edma 6>, | ||
<&edma 5>; | ||
dma-names = "tx", "rx"; | ||
}; |
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,28 @@ | ||
OMAP SoC SHA crypto Module | ||
|
||
Required properties: | ||
|
||
- compatible : Should contain entries for this and backward compatible | ||
SHAM versions: | ||
- "ti,omap2-sham" for OMAP2 & OMAP3. | ||
- "ti,omap4-sham" for OMAP4 and AM33XX. | ||
Note that these two versions are incompatible. | ||
- ti,hwmods: Name of the hwmod associated with the SHAM module | ||
- reg : Offset and length of the register set for the module | ||
- interrupts : the interrupt-specifier for the SHAM module. | ||
|
||
Optional properties: | ||
- dmas: DMA specifiers for the rx dma. See the DMA client binding, | ||
Documentation/devicetree/bindings/dma/dma.txt | ||
- dma-names: DMA request name. Should be "rx" if a dma is present. | ||
|
||
Example: | ||
/* AM335x */ | ||
sham: sham@53100000 { | ||
compatible = "ti,omap4-sham"; | ||
ti,hwmods = "sham"; | ||
reg = <0x53100000 0x200>; | ||
interrupts = <109>; | ||
dmas = <&edma 36>; | ||
dma-names = "rx"; | ||
}; |
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,16 @@ | ||
/* | ||
* am335x-base0033.dts - Device Tree file for IGEP AQUILA EXPANSION | ||
* | ||
* Copyright (C) 2013 ISEE 2007 SL - http://www.isee.biz | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
*/ | ||
|
||
#include "am335x-igep0033.dtsi" | ||
|
||
/ { | ||
model = "IGEP COM AM335x on AQUILA Expansion"; | ||
compatible = "isee,am335x-base0033", "isee,am335x-igep0033", "ti,am33xx"; | ||
}; |
Oops, something went wrong.