svn commit: r304514 - head/sys/powerpc/booke

Justin Hibbits jhibbits at FreeBSD.org
Sat Aug 20 00:56:00 UTC 2016


Author: jhibbits
Date: Sat Aug 20 00:55:58 2016
New Revision: 304514
URL: https://svnweb.freebsd.org/changeset/base/304514

Log:
  Skip HID1 initialization on e6500 cores, it doesn't exist.
  
  With this, and some drivers removed, a T2080 dev board boots to mountroot.
  
  Submitted by:	Ivan Krivonos <int0dster_AT_gmail.com>

Modified:
  head/sys/powerpc/booke/locore.S

Modified: head/sys/powerpc/booke/locore.S
==============================================================================
--- head/sys/powerpc/booke/locore.S	Sat Aug 20 00:49:29 2016	(r304513)
+++ head/sys/powerpc/booke/locore.S	Sat Aug 20 00:55:58 2016	(r304514)
@@ -140,6 +140,8 @@ __start:
 	beq	1f
 	cmpli	0, 0, %r3, FSL_E5500
 	beq	1f
+	cmpli	0, 0, %r3, FSL_E6500
+	beq	1f
 
 	lis	%r3, HID1_E500_DEFAULT_SET at h
 	ori	%r3, %r3, HID1_E500_DEFAULT_SET at l


More information about the svn-src-head mailing list