From owner-freebsd-arm@FreeBSD.ORG Sat Aug 11 22:59:32 2012 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 03E94106564A for ; Sat, 11 Aug 2012 22:59:32 +0000 (UTC) (envelope-from freebsd@damnhippie.dyndns.org) Received: from qmta03.emeryville.ca.mail.comcast.net (qmta03.emeryville.ca.mail.comcast.net [76.96.30.32]) by mx1.freebsd.org (Postfix) with ESMTP id D3C7E8FC08 for ; Sat, 11 Aug 2012 22:59:31 +0000 (UTC) Received: from omta24.emeryville.ca.mail.comcast.net ([76.96.30.92]) by qmta03.emeryville.ca.mail.comcast.net with comcast id lR8w1j0031zF43QA3azRo6; Sat, 11 Aug 2012 22:59:25 +0000 Received: from damnhippie.dyndns.org ([24.8.232.202]) by omta24.emeryville.ca.mail.comcast.net with comcast id lazQ1j00G4NgCEG8kazQTL; Sat, 11 Aug 2012 22:59:25 +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 q7BMxMox012430; Sat, 11 Aug 2012 16:59:22 -0600 (MDT) (envelope-from freebsd@damnhippie.dyndns.org) From: Ian Lepore To: Oleksandr Tymoshenko In-Reply-To: References: <50256231.3030008@bluezbox.com> Content-Type: multipart/mixed; boundary="=-FCH/zvws8RoAnHH11PYz" Date: Sat, 11 Aug 2012 16:59:22 -0600 Message-ID: <1344725962.1186.26.camel@revolution.hippie.lan> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Cc: "freebsd-arm@FreeBSD.org" Subject: Re: projects/armv6 merge X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Aug 2012 22:59:32 -0000 --=-FCH/zvws8RoAnHH11PYz Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit On Fri, 2012-08-10 at 23:44 -0700, Oleksandr Tymoshenko wrote: > Total patch is huge, so although it's PITA indeed here is > initial batch of patches. I split diff into several patches. > Some of them have known problems but I guess it's enough to get > ball rolling: One last patch (attached) to fix a little glitch in mvwin.h, and now my dreamplug boots to multiuser and everything seems to be working that was working a couple days ago (sata, usb, both ethernet ports, a few basic services such as dhcp, nfs client, sshd and ntpd are working fine). -- Ian --=-FCH/zvws8RoAnHH11PYz Content-Description: Content-Disposition: inline; filename="changeset_19.diff" Content-Type: text/x-patch; name="changeset_19.diff"; charset="us-ascii" Content-Transfer-Encoding: 7bit Fix the macros that access the usb mapping registers. diff -r 947e1072454d -r 5469f4bcf9b4 sys/arm/mv/mvwin.h --- a/sys/arm/mv/mvwin.h Sat Aug 11 15:44:32 2012 -0600 +++ b/sys/arm/mv/mvwin.h Sat Aug 11 16:51:37 2012 -0600 @@ -219,8 +219,8 @@ #define MV_WIN_CESA_ATTR 0 #endif -#define MV_WIN_USB_CTRL(n) (0x320 * (n) + 0x0) -#define MV_WIN_USB_BASE(n) (0x320 * (n) + 0x4) +#define MV_WIN_USB_CTRL(n) (0x10 * (n) + 0x320) +#define MV_WIN_USB_BASE(n) (0x10 * (n) + 0x324) #define MV_WIN_USB_MAX 4 #define MV_WIN_ETH_BASE(n) (0x8 * (n) + 0x200) --=-FCH/zvws8RoAnHH11PYz--