From owner-freebsd-arm@FreeBSD.ORG Sun Jun 6 10:00:57 2010 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DCC6C1065670 for ; Sun, 6 Jun 2010 10:00:57 +0000 (UTC) (envelope-from andrew@fubar.geek.nz) Received: from out5.smtp.messagingengine.com (out5.smtp.messagingengine.com [66.111.4.29]) by mx1.freebsd.org (Postfix) with ESMTP id AF9F68FC14 for ; Sun, 6 Jun 2010 10:00:57 +0000 (UTC) Received: from compute2.internal (compute2.internal [10.202.2.42]) by gateway1.messagingengine.com (Postfix) with ESMTP id F3B30F7FCD for ; Sun, 6 Jun 2010 06:00:56 -0400 (EDT) Received: from heartbeat2.messagingengine.com ([10.202.2.161]) by compute2.internal (MEProxy); Sun, 06 Jun 2010 06:00:56 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=messagingengine.com; h=date:from:to:subject:message-id:mime-version:content-type:content-transfer-encoding; s=smtpout; bh=doc6w7PnH2VnAO88Icux+AgHRs8=; b=Yc9CwN7WKkwIcT6LyBTIcZHdZFF/qcVVPT8k/NhDlkyZCUwhNlvUoi1xDE2Bnu8cgweHUmVcP/yDQVTw5/UsDV9MfJIsiIgN/9HUwTfG7h858Bngm/uLoCYJcz3WBZkY8V1jMBSO2Yt5lpY7Q1CXeC3U/EHJCqjiyLL+v8r911Y= X-Sasl-enc: Ni7NQVIMRzAzbSDNi/CZJwaS4xFuwX1znqEwOQHunTEq 1275818456 Received: from bender (219.250.69.111.dynamic.snap.net.nz [111.69.250.219]) by mail.messagingengine.com (Postfix) with ESMTPA id ED0AA5230 for ; Sun, 6 Jun 2010 06:00:55 -0400 (EDT) Date: Sun, 6 Jun 2010 22:00:58 +1200 From: Andrew Turner To: freebsd-arm@freebsd.org Message-ID: <20100606220058.4a105966@bender> X-Mailer: Claws Mail 3.7.6 (GTK+ 2.18.7; i386-portbld-freebsd8.0) X-Pirate: Arrrr Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Two S3C24x0 patches 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: Sun, 06 Jun 2010 10:00:57 -0000 I've created 2 new patches for the S3C24x0 code. The first, at [1], changes how devices have their register virtual addresses allocated. Only a limited number of devices are in the static map now. The rest have their virtual address allocated when bus_alloc_resource is called with RF_ACTIVE. This also allows me to change the physical to virtual address mapping in the static code to reduce the address space used. These together will help later with supporting external memory mapped devices. The second, at [2], adds support for the RTC. It depends on [1]. Andrew [1] http://fubar.geek.nz/files/freebsd/s3c2xx0/freebsd-s3c24x0-bus_space.diff [2] http://fubar.geek.nz/files/freebsd/s3c2xx0/freebsd-s3c24x0-rtc.diff From owner-freebsd-arm@FreeBSD.ORG Sun Jun 6 15:23:44 2010 Return-Path: Delivered-To: freebsd-arm@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA109106566B for ; Sun, 6 Jun 2010 15:23:44 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 7E7B48FC15 for ; Sun, 6 Jun 2010 15:23:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.3/8.14.1) with ESMTP id o56FHwZj095173; Sun, 6 Jun 2010 09:17:58 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sun, 06 Jun 2010 09:18:05 -0600 (MDT) Message-Id: <20100606.091805.70320533242208907.imp@bsdimp.com> To: andrew@fubar.geek.nz From: "M. Warner Losh" In-Reply-To: <20100606220058.4a105966@bender> References: <20100606220058.4a105966@bender> X-Mailer: Mew version 6.3 on Emacs 22.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-arm@FreeBSD.org Subject: Re: Two S3C24x0 patches 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: Sun, 06 Jun 2010 15:23:44 -0000 In message: <20100606220058.4a105966@bender> Andrew Turner writes: : I've created 2 new patches for the S3C24x0 code. : : The first, at [1], changes how devices have their register virtual : addresses allocated. Only a limited number of devices are in the static : map now. The rest have their virtual address allocated when : bus_alloc_resource is called with RF_ACTIVE. This also allows me to : change the physical to virtual address mapping in the static code to : reduce the address space used. These together will help later with : supporting external memory mapped devices. : : The second, at [2], adds support for the RTC. It depends on [1]. : : Andrew : : [1] : http://fubar.geek.nz/files/freebsd/s3c2xx0/freebsd-s3c24x0-bus_space.diff : [2] http://fubar.geek.nz/files/freebsd/s3c2xx0/freebsd-s3c24x0-rtc.diff These look good to me, and I think they should be committed... In addition, you have given thought about moving to the FDT support that we have recent acquired? Warner From owner-freebsd-arm@FreeBSD.ORG Sun Jun 6 21:38:01 2010 Return-Path: Delivered-To: freebsd-arm@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 361281065678 for ; Sun, 6 Jun 2010 21:38:01 +0000 (UTC) (envelope-from andrew@fubar.geek.nz) Received: from out5.smtp.messagingengine.com (out5.smtp.messagingengine.com [66.111.4.29]) by mx1.freebsd.org (Postfix) with ESMTP id 0397A8FC14 for ; Sun, 6 Jun 2010 21:38:00 +0000 (UTC) Received: from compute2.internal (compute2.internal [10.202.2.42]) by gateway1.messagingengine.com (Postfix) with ESMTP id 25B13F8549; Sun, 6 Jun 2010 17:38:00 -0400 (EDT) Received: from heartbeat1.messagingengine.com ([10.202.2.160]) by compute2.internal (MEProxy); Sun, 06 Jun 2010 17:38:00 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=messagingengine.com; h=date:from:to:cc:subject:message-id:in-reply-to:references:mime-version:content-type:content-transfer-encoding; s=smtpout; bh=zcLDiUz7L196LUJoxu3ngZVyIdU=; b=cNVTlGs9UtKM/z8ek2KEtyCSDyQ3hCyZ1w4TWtFsIBOc+KKzVcfb7RKzxminRMPIcyzq31mcsvmwfq8tm/cDS9UMtzVzKFIU8UrLOMcy5PAHcmMtmRt5dJd+7j4eGVlGrfS/4WIqwDvfxFM+jBKE0F+zeV4iiCKX6PgzS8H5/4I= X-Sasl-enc: xJ0gc1oC6E7oeIhUBFuqkELpmCfkhk0mEPz4jldFuzyA 1275860279 Received: from bender (219.250.69.111.dynamic.snap.net.nz [111.69.250.219]) by mail.messagingengine.com (Postfix) with ESMTPA id CB35E4DBE7E; Sun, 6 Jun 2010 17:37:58 -0400 (EDT) Date: Mon, 7 Jun 2010 09:38:01 +1200 From: Andrew Turner To: "M. Warner Losh" Message-ID: <20100607093801.6667e769@bender> In-Reply-To: <20100606.091805.70320533242208907.imp@bsdimp.com> References: <20100606220058.4a105966@bender> <20100606.091805.70320533242208907.imp@bsdimp.com> X-Mailer: Claws Mail 3.7.6 (GTK+ 2.18.7; i386-portbld-freebsd8.0) X-Pirate: Arrrr Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-arm@FreeBSD.org Subject: Re: Two S3C24x0 patches 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: Sun, 06 Jun 2010 21:38:01 -0000 On Sun, 06 Jun 2010 09:18:05 -0600 (MDT) "M. Warner Losh" wrote: > In addition, you have given thought about moving to the FDT support > that we have recent acquired? It's on my todo list. Andrew From owner-freebsd-arm@FreeBSD.ORG Mon Jun 7 11:06:50 2010 Return-Path: Delivered-To: freebsd-arm@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD2EB106566C for ; Mon, 7 Jun 2010 11:06:50 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (unknown [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B2D698FC16 for ; Mon, 7 Jun 2010 11:06:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o57B6oMx008575 for ; Mon, 7 Jun 2010 11:06:50 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o57B6oXS008573 for freebsd-arm@FreeBSD.org; Mon, 7 Jun 2010 11:06:50 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 7 Jun 2010 11:06:50 GMT Message-Id: <201006071106.o57B6oXS008573@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-arm@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-arm@FreeBSD.org 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: Mon, 07 Jun 2010 11:06:50 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o arm/134368 arm [patch] nslu2_led driver for the LEDs on the NSLU2 o arm/134338 arm [patch] Lock GPIO accesses on ixp425 2 problems total.