Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: crypto: Drop obsolete mediatek,eip97-crypto

The mediatek,eip97-crypto binding is half abandoned. The driver was
dropped in 2020 as the Mediatek platforms use InsideSecure block and
the driver for it. All the platforms except MT7623 were updated. A
patch to update it was submitted, but never addressed the review
comments.

Link: https://lore.kernel.org/all/20210303080923.16761-1-vic.wu@mediatek.com/
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

Rob Herring (Arm) and committed by
Herbert Xu
7996ace6 76861334

-25
-25
Documentation/devicetree/bindings/crypto/mediatek-crypto.txt
··· 1 - MediaTek cryptographic accelerators 2 - 3 - Required properties: 4 - - compatible: Should be "mediatek,eip97-crypto" 5 - - reg: Address and length of the register set for the device 6 - - interrupts: Should contain the five crypto engines interrupts in numeric 7 - order. These are global system and four descriptor rings. 8 - - clocks: the clock used by the core 9 - - clock-names: Must contain "cryp". 10 - - power-domains: Must contain a reference to the PM domain. 11 - 12 - 13 - Example: 14 - crypto: crypto@1b240000 { 15 - compatible = "mediatek,eip97-crypto"; 16 - reg = <0 0x1b240000 0 0x20000>; 17 - interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_LOW>, 18 - <GIC_SPI 83 IRQ_TYPE_LEVEL_LOW>, 19 - <GIC_SPI 84 IRQ_TYPE_LEVEL_LOW>, 20 - <GIC_SPI 91 IRQ_TYPE_LEVEL_LOW>, 21 - <GIC_SPI 97 IRQ_TYPE_LEVEL_LOW>; 22 - clocks = <&ethsys CLK_ETHSYS_CRYPTO>; 23 - clock-names = "cryp"; 24 - power-domains = <&scpsys MT2701_POWER_DOMAIN_ETH>; 25 - };