From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from az33egw02.freescale.net (az33egw02.freescale.net [192.88.158.103]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "az33egw02.freescale.net", Issuer "Thawte Premium Server CA" (verified OK)) by ozlabs.org (Postfix) with ESMTPS id D3258DDFA7 for ; Tue, 25 Mar 2008 03:52:20 +1100 (EST) Message-ID: <47E7DC46.2010806@freescale.com> Date: Mon, 24 Mar 2008 11:52:22 -0500 From: Scott Wood MIME-Version: 1.0 To: James Black Subject: Re: muram in device tree for mpc8250 in arch/powerpc References: <20080319174001.GF7962@ld0162-tx32.am.freescale.net> <47E2AADD.6090101@freescale.com> <20080321161833.GA4170@loki.buserror.net> <47E41BE7.9020109@freescale.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Cc: linuxppc-embedded@ozlabs.org List-Id: Linux on Embedded PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , James Black wrote: > Thanks much for the help Scott. Do you feel that the dts is correct > now and probably not the culprit? Do you have 2.6.24.2 running on > other boards? I just booted 2.6.24.2 on pq2fads (using cuImage, since I don't have a devtree-aware u-boot on this board). > localbus@f0010100 { > compatible = "fsl,mpc8250-localbus", > "fsl,pq2-localbus"; > > #address-cells = <2>; > #size-cells = <1>; > reg = ; > ranges = <0 0 fe000000 00200000>; > > flash@fe000000,0 { > compatible = "cfi-flash"; > reg = <0 fe000000 00200000>; > bank-width = <2>; > device-width = <1>; > }; This is wrong; the flash will not translate since you didn't provide a window at the address reg is at. The first cell of the reg should be the chipselect, and the second cell the offset. > brg@119f0 { > compatible = "fsl,mpc8250-brg", > "fsl,cpm2-brg", > "fsl,cpm-brg"; > reg = <119f0 10>; > }; BRG should be <119f0 10 115f0 10>. -Scott