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

ARM: mvebu: add crypto related nodes to armada 375 dtsi

Add crypto related nodes in armada-375.dtsi.

Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>

authored by

Boris Brezillon and committed by
Gregory CLEMENT
35e5bb58 b416f192

+33
+33
arch/arm/boot/dts/armada-375.dtsi
··· 513 513 }; 514 514 }; 515 515 516 + crypto@90000 { 517 + compatible = "marvell,armada-375-crypto"; 518 + reg = <0x90000 0x10000>; 519 + reg-names = "regs"; 520 + interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>, 521 + <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>; 522 + clocks = <&gateclk 30>, <&gateclk 31>, 523 + <&gateclk 28>, <&gateclk 29>; 524 + clock-names = "cesa0", "cesa1", 525 + "cesaz0", "cesaz1"; 526 + marvell,crypto-srams = <&crypto_sram0>, 527 + <&crypto_sram1>; 528 + marvell,crypto-sram-size = <0x800>; 529 + }; 530 + 516 531 sata@a0000 { 517 532 compatible = "marvell,orion-sata"; 518 533 reg = <0xa0000 0x5000>; ··· 633 618 status = "disabled"; 634 619 }; 635 620 621 + }; 622 + 623 + crypto_sram0: sa-sram0 { 624 + compatible = "mmio-sram"; 625 + reg = <MBUS_ID(0x09, 0x09) 0 0x800>; 626 + clocks = <&gateclk 30>; 627 + #address-cells = <1>; 628 + #size-cells = <1>; 629 + ranges = <0 MBUS_ID(0x09, 0x09) 0 0x800>; 630 + }; 631 + 632 + crypto_sram1: sa-sram1 { 633 + compatible = "mmio-sram"; 634 + reg = <MBUS_ID(0x09, 0x05) 0 0x800>; 635 + clocks = <&gateclk 31>; 636 + #address-cells = <1>; 637 + #size-cells = <1>; 638 + ranges = <0 MBUS_ID(0x09, 0x05) 0 0x800>; 636 639 }; 637 640 }; 638 641 };