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

ARM: dts: at91: sama7g5: add nodes for video capture

Add node for the XISC (eXtended Image Sensor Controller) and CSI2DC
(csi2 demux controller).
These nodes represent the top level of the video capture hardware pipeline
and are directly connected in hardware.

Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Link: https://lore.kernel.org/r/20220503095127.48710-4-eugen.hristev@microchip.com

authored by

Eugen Hristev and committed by
Claudiu Beznea
bbc9db2d 1b929c02

+51
+51
arch/arm/boot/dts/sama7g5.dtsi
··· 516 516 status = "disabled"; 517 517 }; 518 518 519 + csi2dc: csi2dc@e1404000 { 520 + compatible = "microchip,sama7g5-csi2dc"; 521 + reg = <0xe1404000 0x500>; 522 + clocks = <&pmc PMC_TYPE_PERIPHERAL 34>, <&xisc>; 523 + clock-names = "pclk", "scck"; 524 + assigned-clocks = <&xisc>; 525 + assigned-clock-rates = <266000000>; 526 + status = "disabled"; 527 + 528 + ports { 529 + #address-cells = <1>; 530 + #size-cells = <0>; 531 + port@0 { 532 + reg = <0>; 533 + csi2dc_in: endpoint { 534 + }; 535 + }; 536 + 537 + port@1 { 538 + reg = <1>; 539 + csi2dc_out: endpoint { 540 + bus-width = <14>; 541 + hsync-active = <1>; 542 + vsync-active = <1>; 543 + remote-endpoint = <&xisc_in>; 544 + }; 545 + }; 546 + }; 547 + }; 548 + 549 + xisc: xisc@e1408000 { 550 + compatible = "microchip,sama7g5-isc"; 551 + reg = <0xe1408000 0x2000>; 552 + interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>; 553 + clocks = <&pmc PMC_TYPE_PERIPHERAL 56>; 554 + clock-names = "hclock"; 555 + #clock-cells = <0>; 556 + clock-output-names = "isc-mck"; 557 + status = "disabled"; 558 + 559 + port { 560 + xisc_in: endpoint { 561 + bus-type = <5>; /* Parallel */ 562 + bus-width = <14>; 563 + hsync-active = <1>; 564 + vsync-active = <1>; 565 + remote-endpoint = <&csi2dc_out>; 566 + }; 567 + }; 568 + }; 569 + 519 570 pwm: pwm@e1604000 { 520 571 compatible = "microchip,sama7g5-pwm", "atmel,sama5d2-pwm"; 521 572 reg = <0xe1604000 0x4000>;