svn commit: r263632 - in head/sys: boot/fdt/dts/mips mips/conf

Bjoern A. Zeeb bz at FreeBSD.org
Sat Mar 22 13:06:33 UTC 2014


Author: bz
Date: Sat Mar 22 13:06:32 2014
New Revision: 263632
URL: http://svnweb.freebsd.org/changeset/base/263632

Log:
  For BERI on NetFPGA assume HZ=100 by default.
  
  Remove the uart support in favour of a "jtag-uart" interface imitation
  providing a much simpler interface, directly exported to the host,
  allowing the toolchain to be shared with BERI on Altera. [1]
  
  Submitted by:	Jong Hun HAN (jong.han cl.cam.ac.uk) [1]
  MFC after:	2 weeks

Modified:
  head/sys/boot/fdt/dts/mips/beri-netfpga.dts
  head/sys/mips/conf/BERI_NETFPGA_MDROOT

Modified: head/sys/boot/fdt/dts/mips/beri-netfpga.dts
==============================================================================
--- head/sys/boot/fdt/dts/mips/beri-netfpga.dts	Sat Mar 22 12:28:21 2014	(r263631)
+++ head/sys/boot/fdt/dts/mips/beri-netfpga.dts	Sat Mar 22 13:06:32 2014	(r263632)
@@ -113,6 +113,14 @@
 			soft-interrupt-sources = <64>;
 		};
 
+		serial0: serial at 7f000000 {
+			compatible = "altera,jtag_uart-11_0";
+			reg = <0x7f000000 0x40>;
+			interrupts = <0>;
+			interrupt-parent = <&beripic>;
+		};
+
+/*
 		serial0: serial at 7f002100 {
 			compatible = "ns16550";
 			reg = <0x7f002100 0x20>;
@@ -121,6 +129,7 @@
 			interrupts = <8>;
 			interrupt-parent = <&beripic>;
 		};
+*/
 	};
 
 	aliases { 

Modified: head/sys/mips/conf/BERI_NETFPGA_MDROOT
==============================================================================
--- head/sys/mips/conf/BERI_NETFPGA_MDROOT	Sat Mar 22 12:28:21 2014	(r263631)
+++ head/sys/mips/conf/BERI_NETFPGA_MDROOT	Sat Mar 22 13:06:32 2014	(r263632)
@@ -10,11 +10,14 @@ include "BERI_TEMPLATE"
 
 ident		BERI_NETFPGA_MDROOT
 
+options 	HZ=100
+
 options 	FDT
 options 	FDT_DTB_STATIC
 makeoptions	FDT_DTS_FILE=beri-netfpga.dts
 
-device		uart
+#device		uart
+device		altera_jtag_uart
 
 #
 # This kernel configuration uses an embedded memory root file system.


More information about the svn-src-all mailing list