The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/crypto/rockchip-crypto.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 Rockchip Electronics And Security Accelerator
    2 
    3 Required properties:
    4 - compatible: Should be "rockchip,rk3288-crypto"
    5 - reg: Base physical address of the engine and length of memory mapped
    6        region
    7 - interrupts: Interrupt number
    8 - clocks: Reference to the clocks about crypto
    9 - clock-names: "aclk" used to clock data
   10                "hclk" used to clock data
   11                "sclk" used to clock crypto accelerator
   12                "apb_pclk" used to clock dma
   13 - resets: Must contain an entry for each entry in reset-names.
   14           See ../reset/reset.txt for details.
   15 - reset-names: Must include the name "crypto-rst".
   16 
   17 Examples:
   18 
   19         crypto: cypto-controller@ff8a0000 {
   20                 compatible = "rockchip,rk3288-crypto";
   21                 reg = <0xff8a0000 0x4000>;
   22                 interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>;
   23                 clocks = <&cru ACLK_CRYPTO>, <&cru HCLK_CRYPTO>,
   24                          <&cru SCLK_CRYPTO>, <&cru ACLK_DMAC1>;
   25                 clock-names = "aclk", "hclk", "sclk", "apb_pclk";
   26                 resets = <&cru SRST_CRYPTO>;
   27                 reset-names = "crypto-rst";
   28         };

Cache object: 30c00febbdec4654d281c6d080e4dcdd


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.