public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Peng Fan <B51431@freescale.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/3] ARM: imx fix register base address for i.MX6SX
Date: Thu, 15 Jan 2015 14:59:11 +0800	[thread overview]
Message-ID: <54B7653F.3000308@freescale.com> (raw)
In-Reply-To: <1421302953-2286-1-git-send-email-Peng.Fan@freescale.com>

Hi,

Please ignore this patch 1/3, since "imx: mx6: Fixed AIPS3 base address 
issue" from Ye.Li already fix this.
Patch 2/3 and patch 3/3 are fine. Please review.

On 1/15/2015 2:22 PM, Peng Fan wrote:
> Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
> ---
>   arch/arm/include/asm/arch-mx6/imx-regs.h | 50 ++++++++++++++++----------------
>   1 file changed, 25 insertions(+), 25 deletions(-)
>
> diff --git a/arch/arm/include/asm/arch-mx6/imx-regs.h b/arch/arm/include/asm/arch-mx6/imx-regs.h
> index 5314298..44e31c9 100644
> --- a/arch/arm/include/asm/arch-mx6/imx-regs.h
> +++ b/arch/arm/include/asm/arch-mx6/imx-regs.h
> @@ -277,31 +277,31 @@
>   #define IP2APB_USBPHY2_BASE_ADDR    (AIPS2_OFF_BASE_ADDR + 0x7C000)
>   
>   #ifdef CONFIG_MX6SX
> -#define GIS_BASE_ADDR               (AIPS3_ARB_BASE_ADDR + 0x04000)
> -#define DCIC1_BASE_ADDR             (AIPS3_ARB_BASE_ADDR + 0x0C000)
> -#define DCIC2_BASE_ADDR             (AIPS3_ARB_BASE_ADDR + 0x10000)
> -#define CSI1_BASE_ADDR              (AIPS3_ARB_BASE_ADDR + 0x14000)
> -#define PXP_BASE_ADDR               (AIPS3_ARB_BASE_ADDR + 0x18000)
> -#define CSI2_BASE_ADDR              (AIPS3_ARB_BASE_ADDR + 0x1C000)
> -#define LCDIF1_BASE_ADDR            (AIPS3_ARB_BASE_ADDR + 0x20000)
> -#define LCDIF2_BASE_ADDR            (AIPS3_ARB_BASE_ADDR + 0x24000)
> -#define VADC_BASE_ADDR              (AIPS3_ARB_BASE_ADDR + 0x28000)
> -#define VDEC_BASE_ADDR              (AIPS3_ARB_BASE_ADDR + 0x2C000)
> -#define SPBA_BASE_ADDR              (AIPS3_ARB_BASE_ADDR + 0x3C000)
> -#define AIPS3_CONFIG_BASE_ADDR      (AIPS3_ARB_BASE_ADDR + 0x7C000)
> -#define ADC1_BASE_ADDR              (AIPS3_ARB_BASE_ADDR + 0x80000)
> -#define ADC2_BASE_ADDR              (AIPS3_ARB_BASE_ADDR + 0x84000)
> -#define WDOG3_BASE_ADDR             (AIPS3_ARB_BASE_ADDR + 0x88000)
> -#define ECSPI5_BASE_ADDR            (AIPS3_ARB_BASE_ADDR + 0x8C000)
> -#define HS_BASE_ADDR                (AIPS3_ARB_BASE_ADDR + 0x90000)
> -#define MU_MCU_BASE_ADDR            (AIPS3_ARB_BASE_ADDR + 0x94000)
> -#define CANFD_BASE_ADDR             (AIPS3_ARB_BASE_ADDR + 0x98000)
> -#define MU_DSP_BASE_ADDR            (AIPS3_ARB_BASE_ADDR + 0x9C000)
> -#define UART6_BASE_ADDR             (AIPS3_ARB_BASE_ADDR + 0xA0000)
> -#define PWM5_BASE_ADDR              (AIPS3_ARB_BASE_ADDR + 0xA4000)
> -#define PWM6_BASE_ADDR              (AIPS3_ARB_BASE_ADDR + 0xA8000)
> -#define PWM7_BASE_ADDR              (AIPS3_ARB_BASE_ADDR + 0xAC000)
> -#define PWM8_BASE_ADDR              (AIPS3_ARB_BASE_ADDR + 0xB0000)
> +#define GIS_BASE_ADDR               (AIPS3_BASE_ADDR + 0x04000)
> +#define DCIC1_BASE_ADDR             (AIPS3_BASE_ADDR + 0x0C000)
> +#define DCIC2_BASE_ADDR             (AIPS3_BASE_ADDR + 0x10000)
> +#define CSI1_BASE_ADDR              (AIPS3_BASE_ADDR + 0x14000)
> +#define PXP_BASE_ADDR               (AIPS3_BASE_ADDR + 0x18000)
> +#define CSI2_BASE_ADDR              (AIPS3_BASE_ADDR + 0x1C000)
> +#define LCDIF1_BASE_ADDR            (AIPS3_BASE_ADDR + 0x20000)
> +#define LCDIF2_BASE_ADDR            (AIPS3_BASE_ADDR + 0x24000)
> +#define VADC_BASE_ADDR              (AIPS3_BASE_ADDR + 0x28000)
> +#define VDEC_BASE_ADDR              (AIPS3_BASE_ADDR + 0x2C000)
> +#define SPBA_BASE_ADDR              (AIPS3_BASE_ADDR + 0x3C000)
> +#define AIPS3_CONFIG_BASE_ADDR      (AIPS3_BASE_ADDR + 0x7C000)
> +#define ADC1_BASE_ADDR              (AIPS3_BASE_ADDR + 0x80000)
> +#define ADC2_BASE_ADDR              (AIPS3_BASE_ADDR + 0x84000)
> +#define WDOG3_BASE_ADDR             (AIPS3_BASE_ADDR + 0x88000)
> +#define ECSPI5_BASE_ADDR            (AIPS3_BASE_ADDR + 0x8C000)
> +#define HS_BASE_ADDR                (AIPS3_BASE_ADDR + 0x90000)
> +#define MU_MCU_BASE_ADDR            (AIPS3_BASE_ADDR + 0x94000)
> +#define CANFD_BASE_ADDR             (AIPS3_BASE_ADDR + 0x98000)
> +#define MU_DSP_BASE_ADDR            (AIPS3_BASE_ADDR + 0x9C000)
> +#define UART6_BASE_ADDR             (AIPS3_BASE_ADDR + 0xA0000)
> +#define PWM5_BASE_ADDR              (AIPS3_BASE_ADDR + 0xA4000)
> +#define PWM6_BASE_ADDR              (AIPS3_BASE_ADDR + 0xA8000)
> +#define PWM7_BASE_ADDR              (AIPS3_BASE_ADDR + 0xAC000)
> +#define PWM8_BASE_ADDR              (AIPS3_BASE_ADDR + 0xB0000)
>   #endif
>   
>   #define CHIP_REV_1_0                 0x10
Thanks,
Peng.

      parent reply	other threads:[~2015-01-15  6:59 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-15  6:22 [U-Boot] [PATCH 1/3] ARM: imx fix register base address for i.MX6SX Peng Fan
2015-01-15  6:22 ` [U-Boot] [PATCH 2/3] ARM: imx6: disable bandgap self-bias after boot Peng Fan
2015-02-17  9:51   ` Stefano Babic
2015-01-15  6:22 ` [U-Boot] [PATCH 3/3] ARM: imx6 Add WDOG3 for i.MX6SX Peng Fan
2015-02-17  9:52   ` Stefano Babic
2015-01-15  6:59 ` Peng Fan [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=54B7653F.3000308@freescale.com \
    --to=b51431@freescale.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox