From owner-svn-src-head@FreeBSD.ORG Mon May 6 14:37:05 2013 Return-Path: Delivered-To: svn-src-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0ADBC5D7; Mon, 6 May 2013 14:37:05 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from mho-01-ewr.mailhop.org (mho-03-ewr.mailhop.org [204.13.248.66]) by mx1.freebsd.org (Postfix) with ESMTP id D8A20936; Mon, 6 May 2013 14:37:04 +0000 (UTC) Received: from c-24-8-230-52.hsd1.co.comcast.net ([24.8.230.52] helo=damnhippie.dyndns.org) by mho-01-ewr.mailhop.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1UZMXC-000425-DZ; Mon, 06 May 2013 14:36:58 +0000 Received: from [172.22.42.240] (revolution.hippie.lan [172.22.42.240]) by damnhippie.dyndns.org (8.14.3/8.14.3) with ESMTP id r46EauhZ014556; Mon, 6 May 2013 08:36:56 -0600 (MDT) (envelope-from ian@FreeBSD.org) X-Mail-Handler: Dyn Standard SMTP by Dyn X-Originating-IP: 24.8.230.52 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/sendlabs/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX19Zijvh0wAiDWLxA8CnYWwk Subject: Re: svn commit: r250293 - in head/sys/arm: arm mv mv/armadaxp From: Ian Lepore To: Grzegorz Bernacki In-Reply-To: <201305061412.r46ECbkj018935@svn.freebsd.org> References: <201305061412.r46ECbkj018935@svn.freebsd.org> Content-Type: text/plain; charset="us-ascii" Date: Mon, 06 May 2013 08:36:56 -0600 Message-ID: <1367851016.1180.166.camel@revolution.hippie.lan> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 May 2013 14:37:05 -0000 On Mon, 2013-05-06 at 14:12 +0000, Grzegorz Bernacki wrote: > Modified: head/sys/arm/arm/locore.S > ============================================================================== > --- head/sys/arm/arm/locore.S Mon May 6 13:52:49 2013 (r250292) > +++ head/sys/arm/arm/locore.S Mon May 6 14:12:36 2013 (r250293) > @@ -265,7 +265,11 @@ mmu_init_table: > /* map VA 0xc0000000..0xc3ffffff to PA */ > MMU_INIT(KERNBASE, PHYSADDR, 64, L1_TYPE_S|L1_SHARED|L1_S_C|L1_S_AP(AP_KRW)) > MMU_INIT(0x48000000, 0x48000000, 1, L1_TYPE_S|L1_SHARED|L1_S_C|L1_S_AP(AP_KRW)) > -#endif > +#if defined(CPU_MV_PJ4B) > + /* map VA 0xf1000000..0xd0000000 to PA */ > + MMU_INIT(0xf1000000, 0xd0000000, 1, L1_TYPE_S|L1_SHARED|L1_S_B|L1_S_AP(AP_KRW)) > +#endif /* CPU_MV_PJ4B */ > +#endif /* SMP */ > .word 0 /* end of table */ > #endif > .Lstart: The comment for the added mapping is misleading, it should read something like "map VA 0xf1000000..0xf1100000 to PA 0xd0000000". Sorry I missed that in the pre-commit review. -- Ian