Back to home page

OSCL-LXR

 
 

    


0001 Rockchip internal OTP (One Time Programmable) memory device tree bindings
0002 
0003 Required properties:
0004 - compatible: Should be one of the following.
0005   - "rockchip,px30-otp" - for PX30 SoCs.
0006   - "rockchip,rk3308-otp" - for RK3308 SoCs.
0007 - reg: Should contain the registers location and size
0008 - clocks: Must contain an entry for each entry in clock-names.
0009 - clock-names: Should be "otp", "apb_pclk" and "phy".
0010 - resets: Must contain an entry for each entry in reset-names.
0011   See ../../reset/reset.txt for details.
0012 - reset-names: Should be "phy".
0013 
0014 See nvmem.txt for more information.
0015 
0016 Example:
0017         otp: otp@ff290000 {
0018                 compatible = "rockchip,px30-otp";
0019                 reg = <0x0 0xff290000 0x0 0x4000>;
0020                 #address-cells = <1>;
0021                 #size-cells = <1>;
0022                 clocks = <&cru SCLK_OTP_USR>, <&cru PCLK_OTP_NS>,
0023                          <&cru PCLK_OTP_PHY>;
0024                 clock-names = "otp", "apb_pclk", "phy";
0025         };