Back to home page

OSCL-LXR

 
 

    


0001 * SPEAr SMI
0002 
0003 Required properties:
0004 - compatible : "st,spear600-smi"
0005 - reg : Address range of the mtd chip
0006 - #address-cells, #size-cells : Must be present if the device has sub-nodes
0007   representing partitions.
0008 - interrupts: Should contain the STMMAC interrupts
0009 - clock-rate : Functional clock rate of SMI in Hz
0010 
0011 Optional properties:
0012 - st,smi-fast-mode : Flash supports read in fast mode
0013 
0014 Example:
0015 
0016         smi: flash@fc000000 {
0017                 compatible = "st,spear600-smi";
0018                 #address-cells = <1>;
0019                 #size-cells = <1>;
0020                 reg = <0xfc000000 0x1000>;
0021                 interrupt-parent = <&vic1>;
0022                 interrupts = <12>;
0023                 clock-rate = <50000000>;        /* 50MHz */
0024 
0025                 flash@f8000000 {
0026                         st,smi-fast-mode;
0027                         ...
0028                 };
0029         };