public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Tirumala Marri <tmarri@apm.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [v3 0/2] Add support for new SoC APM82XXX
Date: Tue, 7 Sep 2010 19:00:15 -0700	[thread overview]
Message-ID: <e46c1f3693ea3133d0d90d038772109f@mail.gmail.com> (raw)
In-Reply-To: <1283905113-26961-1-git-send-email-tmarri@apm.com>

Please ignore this series. I missed "PATCH" string. I will resend the
correct patch set.
--Marri

> -----Original Message-----
> From: tmarri at apm.com [mailto:tmarri at apm.com]
> Sent: Tuesday, September 07, 2010 5:19 PM
> To: u-boot at lists.denx.de
> Cc: sr at denx.de; Tirumala Marri
> Subject: [v3 0/2] Add support for new SoC APM82XXX
>
> From: Tirumala Marri <tmarri@apm.com>
>
> APM8XXXX is Applied Micro Circuits Corporations naming
> convention for new line of SoCs.
>
> V1:
>   * Squash some of the patches.
>   * add space between "||" and "\".
>   * Add spaces around operators.
>   * Unsigned int to u32.
>   * Add empty line which was removed.
>   * remove warning "unused variable" in cpu_init.c
>   * Remove "All rights reserved" phrase from headers.
>   * Add empty line which was removed.
>   * Move EBC definititions to bluestone_config.h file
>   * Remove reconfigure_EBC() function.
>   * Remove unused CONFIG_SDRAM16BIT_OFFSET.
>   * Remove unused CONFIG_SDRAM_INFO_EEPROM_ADDR.
>   * Add empty lines in bluestone.c file.
>   * Replacing AC_R | AC_W | AC_X with AC_RWX.
>   * Remove changes to main Makefile
>   * Remove NAND references from config file.
>   * Squash some of the patches.
>   * Remove top Makefile change.
>
> V2:
>   * Missing space before "<".
>   * SDR_AHB_CFG not used, remove.
>   * boot device dfinitions are board specific ? removed.
>   * APM82161_MASK not used, remove
>   * set_mcsr() is already called in ddr init, no need to call here.
>   * removed finding bootdevice function which is not used.
>   * Add spaces in tlbentry() function.
>   * Board early init function is empty remove.
>   * Remove CONFIG_SYS_EXTSRAM_BASE.
>   * Set CONFIG_SYS_FLASH_SIZE to 4MB
>   * Remove CONFIG_SIZE_REDUCE & CONFIG_SECTOR_REDUCE.
>   * Spaces around " >> " .
>   * Correct the phy name CONFIG_M88E1111_PHY to CONFIG_RTL8211CL_PHY.
>   * Removed Defines added to 405ex.
>
> V3:
>   * Missing TLB entry for CONFIG_SYS_BOOT_BASE_ADDR.
>   * Correct multiline comment.
>   * Move CONFIG_SYS_EBC_PB0AP etc to EBC area in the config file.
>   * remove unused CONFIG_RTL8211CL_PHY.
>   * Replace hard coded valued for CONFIG_SYS_EBC_CFG with
>     macro definitions.
>   * board.cfg add the entry in sorted.
>   * use puts() if there is no formating needed.
>   * Change APM82XXX to APM821XX
>   * Modify the way cpu id is printed.
>   * Correct inadvertent change.
>   * Sort define list.
>   * Remove comment for get_sys_info().
>   * Define a symbolic constat ISRAM1_OCM_SIZE.
>   * Create apm821xx.h instead of using ppc440.h
>
> Tirumala Marri (2):
>   APM821xx: Add CPU support
>   APM821xx: Add bluestone board support
>
>  MAINTAINERS                             |    3 +
>  MAKEALL                                 |    1 +
>  arch/powerpc/cpu/ppc4xx/cpu.c           |   36 ++-
>  arch/powerpc/cpu/ppc4xx/cpu_init.c      |    5 +-
>  arch/powerpc/cpu/ppc4xx/speed.c         |   76 +++++-
>  arch/powerpc/cpu/ppc4xx/start.S         |   11 +-
>  arch/powerpc/cpu/ppc4xx/tlb.c           |    2 +
>  arch/powerpc/include/asm/ppc4xx-ebc.h   |    4 +
>  arch/powerpc/include/asm/ppc4xx-isram.h |   14 +-
>  arch/powerpc/include/asm/ppc4xx-sdram.h |   12 +-
>  arch/powerpc/include/asm/ppc4xx-uic.h   |    5 +-
>  arch/powerpc/include/asm/processor.h    |    1 +
>  board/amcc/bluestone/Makefile           |   52 ++++
>  board/amcc/bluestone/bluestone.c        |  111 +++++++
>  board/amcc/bluestone/config.mk          |   40 +++
>  board/amcc/bluestone/init.S             |   59 ++++
>  boards.cfg                              |    1 +
>  include/apm821xx.h                      |  493
> +++++++++++++++++++++++++++++++
>  include/configs/bluestone.h             |  175 +++++++++++
>  include/ppc4xx.h                        |   11 +-
>  20 files changed, 1087 insertions(+), 25 deletions(-)
>  create mode 100644 board/amcc/bluestone/Makefile
>  create mode 100644 board/amcc/bluestone/bluestone.c
>  create mode 100644 board/amcc/bluestone/config.mk
>  create mode 100644 board/amcc/bluestone/init.S
>  create mode 100644 include/apm821xx.h
>  create mode 100644 include/configs/bluestone.h

      reply	other threads:[~2010-09-08  2:00 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-09-08  0:18 [U-Boot] [v3 0/2] Add support for new SoC APM82XXX tmarri at apm.com
2010-09-08  2:00 ` Tirumala Marri [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=e46c1f3693ea3133d0d90d038772109f@mail.gmail.com \
    --to=tmarri@apm.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