From mboxrd@z Thu Jan 1 00:00:00 1970 From: York Sun Date: Mon, 21 Oct 2013 09:21:29 -0700 Subject: [U-Boot] [PATCH] powerpc/83xx: Define USB1 and USB2 base addr for MPC834x In-Reply-To: <1382191384-1935-1-git-send-email-ramneek.mehresh@freescale.com> References: <1382191384-1935-1-git-send-email-ramneek.mehresh@freescale.com> Message-ID: <52655489.5050004@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 Kim, I can take this in if you ack it. York On 10/19/2013 07:03 AM, Ramneek Mehresh wrote: > Define base addresse for both MPH(USB1) and DR(USB2) controllers > for MPC834x socs > > Signed-off-by: Ramneek Mehresh > --- > arch/powerpc/include/asm/immap_83xx.h | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/arch/powerpc/include/asm/immap_83xx.h b/arch/powerpc/include/asm/immap_83xx.h > index 3c86ff6..289f7ca 100644 > --- a/arch/powerpc/include/asm/immap_83xx.h > +++ b/arch/powerpc/include/asm/immap_83xx.h > @@ -763,6 +763,7 @@ typedef struct immap { > u8 res7[0xC0000]; > } immap_t; > > +#ifndef CONFIG_MPC834x > #ifdef CONFIG_HAS_FSL_MPH_USB > #define CONFIG_SYS_MPC83xx_USB1_OFFSET 0x22000 /* use the MPH controller */ > #define CONFIG_SYS_MPC83xx_USB2_OFFSET 0 > @@ -770,6 +771,10 @@ typedef struct immap { > #define CONFIG_SYS_MPC83xx_USB1_OFFSET 0 > #define CONFIG_SYS_MPC83xx_USB2_OFFSET 0x23000 /* use the DR controller */ > #endif > +#else > +#define CONFIG_SYS_MPC83xx_USB1_OFFSET 0x22000 > +#define CONFIG_SYS_MPC83xx_USB2_OFFSET 0x23000 > +#endif > > #elif defined(CONFIG_MPC8313) > typedef struct immap { >