From owner-freebsd-arm@FreeBSD.ORG Tue Jun 18 03:23:23 2013 Return-Path: Delivered-To: freebsd-arm@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 BE22AF40 for ; Tue, 18 Jun 2013 03:23:23 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from mail-pd0-f175.google.com (mail-pd0-f175.google.com [209.85.192.175]) by mx1.freebsd.org (Postfix) with ESMTP id 9997E12F1 for ; Tue, 18 Jun 2013 03:23:23 +0000 (UTC) Received: by mail-pd0-f175.google.com with SMTP id 4so3416112pdd.6 for ; Mon, 17 Jun 2013 20:23:23 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=sender:subject:mime-version:content-type:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to:x-mailer :x-gm-message-state; bh=RUL9tVOVIKXSgvUe4J7q5a0WXRaNGJL7buVAj4XlfFQ=; b=i5woxpfGPUfEu9UvWPzQoYhtWUJYkPLcZN0h8DSGxKDKsmURonmYdGlOdIgr/tfLaL rsEwYGTWGOKMbPCttH3/k9Mful4YeptgvZvCc5IhP1D/rIWjrZi8F6Z6UPqlWRPCpTl3 J+FYdcC8CBrXXjNJ5+8Mgec3i4zmtyn5iPht8wPIXjbOJh4GNKSM9RascoTuJBW7PQfM z48ovNaN72CP0IY7FBBYKc5CNzr4yLD4orq7oXTWx0c3Vc7nnhiZvWL3CQizotX9SQVm KLB35/PXAOtZyCul4aaWWpImLCMefXmssrqqmp9Fis0hP1H3dIchTRpNvuEdgoyJ+xgQ Zwrw== X-Received: by 10.68.189.233 with SMTP id gl9mr11270739pbc.213.1371525802982; Mon, 17 Jun 2013 20:23:22 -0700 (PDT) Received: from 53.imp.bsdimp.com (50-78-194-198-static.hfc.comcastbusiness.net. [50.78.194.198]) by mx.google.com with ESMTPSA id dj5sm6911982pbc.25.2013.06.17.20.23.20 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 17 Jun 2013 20:23:21 -0700 (PDT) Sender: Warner Losh Subject: Re: Two questions on -current... Mime-Version: 1.0 (Apple Message framework v1085) Content-Type: text/plain; charset=us-ascii From: Warner Losh In-Reply-To: <1371521474.1391.9.camel@fbsd-laptop> Date: Mon, 17 Jun 2013 21:23:19 -0600 Content-Transfer-Encoding: quoted-printable Message-Id: References: <1371521474.1391.9.camel@fbsd-laptop> To: mcgovern@beta.com X-Mailer: Apple Mail (2.1085) X-Gm-Message-State: ALoCoQnSxF8PlScdgkuPn4YFGF+LZyMg5JqNXFVJWk/2Tr4kwK4qTBKEnGjQTHQwECWx0BZbCuOv Cc: freebsd-arm@freebsd.org X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2013 03:23:23 -0000 On Jun 17, 2013, at 8:11 PM, Brian J. McGovern wrote: > I'm currently using a fairly recent (within the week) -current on a > Beaglebone Black and trying to use it on an OpenRD ultimate... I have > two questions that I can't seem to find recent answers online. >=20 > 1.) On the Beaglebone black, is there an interface for setting up the > MUX on the GPIO pins? I've seen gpioctl, which doesn't seem to have = the > capability, and there seems to be settings in the DTS file, although = it > appears incomplete (e.g. not all pins are configured), but is there a > way to dynamically set up the MUX during run time? There's only limited support for this on some ports. It is one of the = biggest holes we have today. > 2.) When trying to compile DB-88F6XXX, I'm getting an error "error: > unknown target CPU 'armv5te', despite a find ... grep... on the code > showing this option in both gcc and clang compilers and tools. Is this > processor deprecated in current? Is there are a replacement? Did I = miss > a change in how to build the kernel (Currently using "make TARGET=3Darm > TARGET_ARCH=3Darm KERNCONF=3DDB-88F6XXX buildkernel" in /usr/src)? Do you have TARGET_CPU set somewhere? Warner