svn commit: r275859 - head/sys/boot/fdt/dts/arm

Ruslan Bukin br at FreeBSD.org
Wed Dec 17 10:54:33 UTC 2014


Author: br
Date: Wed Dec 17 10:48:53 2014
New Revision: 275859
URL: https://svnweb.freebsd.org/changeset/base/275859

Log:
  o Add PIO[2,3] devices information
  o Enable Virtio Block

Modified:
  head/sys/boot/fdt/dts/arm/socfpga-sockit-beri.dts

Modified: head/sys/boot/fdt/dts/arm/socfpga-sockit-beri.dts
==============================================================================
--- head/sys/boot/fdt/dts/arm/socfpga-sockit-beri.dts	Wed Dec 17 09:34:54 2014	(r275858)
+++ head/sys/boot/fdt/dts/arm/socfpga-sockit-beri.dts	Wed Dec 17 10:48:53 2014	(r275859)
@@ -106,20 +106,36 @@
 			status = "okay";
 		};
 
+		pio2: pio at c0022000 {
+			compatible = "altr,pio";
+			reg = <0xc0022000 0x1000>; /* recv */
+			interrupts = < 77 >;
+			interrupt-parent = <&GIC>;
+			status = "okay";
+		};
+
+		pio3: pio at c0023000 {
+			compatible = "altr,pio";
+			reg = <0xc0023000 0x1000>; /* send */
+			interrupts = < 83 >; /* not in use on arm side */
+			interrupt-parent = <&GIC>;
+			status = "okay";
+		};
+
 		beri_vtblk: vtblk at 00001000 {
 			compatible = "sri-cambridge,beri-vtblk";
 			reg = <0x00001000 0x1000>;
 			pio-recv = <&pio0>;
 			pio-send = <&pio1>;
 			beri-mem = <&beri_mem0>;
-			status = "disabled";
+			status = "okay";
 		};
 
 		beri_vtnet: vtnet at 00002000 {
 			compatible = "sri-cambridge,beri-vtnet";
 			reg = <0x00002000 0x1000>;
-			pio-recv = <&pio0>;
-			pio-send = <&pio1>;
+			pio-recv = <&pio2>;
+			pio-send = <&pio3>;
 			beri-mem = <&beri_mem0>;
 			status = "okay";
 		};


More information about the svn-src-all mailing list