From mboxrd@z Thu Jan 1 00:00:00 1970 From: York Sun Date: Thu, 13 Feb 2014 08:57:21 -0800 Subject: [U-Boot] [RFC v2] Fix memory commands for 64-bit platforms In-Reply-To: <20140213071621.3869B3805FF@gemini.denx.de> References: <1392249335-29538-1-git-send-email-yorksun@freescale.com> <20140213071621.3869B3805FF@gemini.denx.de> Message-ID: <52FCF971.7070208@freescale.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 02/12/2014 11:16 PM, Wolfgang Denk wrote: > Dear York Sun, > > In message <1392249335-29538-1-git-send-email-yorksun@freescale.com> you wrote: >> For aarch64, unsigned long is 64-bit data. Memory commands should be fixed >> with u32 for 32-bit address access. To be clear, ushort is replace with >> u16, u_char is replaced with u8. >> >> Signed-off-by: York Sun >> --- >> Change log: >> v1: Replace ulong with u32, ushort with u16, u_char with u8. Add 64-bit data support. >> v2: Drop 64-bit data support. Change subject. > > Acked-by: Wolfgang Denk > > > Can you please submit another patch adding the 64 bit support again? > I agree with Albert's comment that it makes sense to implement it such > that it is automatically active on 64 bit systems, but can optionally > also enabled on 32 bit systems. > OK. Will do. Since you acked this patch, I will let Tom pick it up without resending a new version with RFC removed from subject. York