mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-06 16:28:04 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
51
Documentation/devicetree/bindings/misc/sram.txt
Normal file
51
Documentation/devicetree/bindings/misc/sram.txt
Normal file
|
@ -0,0 +1,51 @@
|
|||
Generic on-chip SRAM
|
||||
|
||||
Simple IO memory regions to be managed by the genalloc API.
|
||||
|
||||
Required properties:
|
||||
|
||||
- compatible : mmio-sram
|
||||
|
||||
- reg : SRAM iomem address range
|
||||
|
||||
Reserving sram areas:
|
||||
---------------------
|
||||
|
||||
Each child of the sram node specifies a region of reserved memory. Each
|
||||
child node should use a 'reg' property to specify a specific range of
|
||||
reserved memory.
|
||||
|
||||
Following the generic-names recommended practice, node names should
|
||||
reflect the purpose of the node. Unit address (@<address>) should be
|
||||
appended to the name.
|
||||
|
||||
Required properties in the sram node:
|
||||
|
||||
- #address-cells, #size-cells : should use the same values as the root node
|
||||
- ranges : standard definition, should translate from local addresses
|
||||
within the sram to bus addresses
|
||||
|
||||
Required properties in the area nodes:
|
||||
|
||||
- reg : iomem address range, relative to the SRAM range
|
||||
|
||||
Optional properties in the area nodes:
|
||||
|
||||
- compatible : standard definition, should contain a vendor specific string
|
||||
in the form <vendor>,[<device>-]<usage>
|
||||
|
||||
Example:
|
||||
|
||||
sram: sram@5c000000 {
|
||||
compatible = "mmio-sram";
|
||||
reg = <0x5c000000 0x40000>; /* 256 KiB SRAM at address 0x5c000000 */
|
||||
|
||||
#adress-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
ranges = <0 0x5c000000 0x40000>;
|
||||
|
||||
smp-sram@100 {
|
||||
compatible = "socvendor,smp-sram";
|
||||
reg = <0x100 0x50>;
|
||||
};
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue