Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Aug 2012 16:59:22 -0600
From:      Ian Lepore <freebsd@damnhippie.dyndns.org>
To:        Oleksandr Tymoshenko <gonzo@bluezbox.com>
Cc:        "freebsd-arm@FreeBSD.org" <freebsd-arm@freebsd.org>
Subject:   Re: projects/armv6 merge
Message-ID:  <1344725962.1186.26.camel@revolution.hippie.lan>
In-Reply-To: <D36543E2-2AC1-495A-8514-73F43607F2C4@bluezbox.com>
References:  <50256231.3030008@bluezbox.com> <CD231BAC-93E9-4EA1-89C1-8D299CDA581A@bsdimp.com> <D36543E2-2AC1-495A-8514-73F43607F2C4@bluezbox.com>

next in thread | previous in thread | raw e-mail | index | archive | help

--=-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--




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1344725962.1186.26.camel>