public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: York Sun <yorksun@freescale.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/2][v2] armv8: LS2080A: Rename LS2085A to reflect LS2080A
Date: Tue, 10 Nov 2015 11:10:11 -0800	[thread overview]
Message-ID: <56424113.6070107@freescale.com> (raw)
In-Reply-To: <1447067527-24150-1-git-send-email-prabhakar@freescale.com>



On 11/09/2015 03:12 AM, Prabhakar Kushwaha wrote:
> LS2080A is a prime personality of Freescale?s LS2085A. It is a non-AIOP
> personality without support of DP-DDR, L2 switch, 1588, PCIe endpoint etc.
> So renaming existing LS2085A code base to reflect LS2080A (Prime personality)
> 
> Signed-off-by: Pratiyush Mohan Srivastava <pratiyush.srivastava@freescale.com>
> Signed-off-by: Prabhakar Kushwaha <prabhakar@freescale.com>
> ---
> Changes for v2: Rebased on LS1043 patch set
> 
>  README                                             |  3 +
>  arch/arm/Kconfig                                   | 44 +++++++----
>  arch/arm/cpu/armv8/fsl-layerscape/Makefile         |  4 +-
>  arch/arm/cpu/armv8/fsl-layerscape/README.lsch3     |  4 +-
>  arch/arm/cpu/armv8/fsl-layerscape/cpu.c            |  2 +-
>  arch/arm/cpu/armv8/fsl-layerscape/fdt.c            |  2 +-
>  .../arm/cpu/armv8/fsl-layerscape/fsl_lsch3_speed.c | 11 +++
>  .../{ls2085a_serdes.c => ls2080a_serdes.c}         |  0
>  arch/arm/cpu/armv8/fsl-layerscape/soc.c            |  2 +-
>  arch/arm/cpu/armv8/fsl-layerscape/spl.c            |  4 +-
>  arch/arm/dts/Makefile                              |  4 +-
>  .../{fsl-ls2085a-qds.dts => fsl-ls2080a-qds.dts}   |  8 +-
>  .../{fsl-ls2085a-rdb.dts => fsl-ls2080a-rdb.dts}   |  8 +-
>  .../arm/dts/{fsl-ls2085a.dtsi => fsl-ls2080a.dtsi} |  4 +-
>  arch/arm/include/asm/arch-fsl-layerscape/config.h  |  4 +-
>  arch/arm/include/asm/arch-fsl-layerscape/cpu.h     |  6 +-
>  .../include/asm/arch-fsl-layerscape/fsl_serdes.h   |  2 +-
>  .../include/asm/arch-fsl-layerscape/immap_lsch3.h  |  6 +-
>  .../{ls2085a_stream_id.h => ls2080a_stream_id.h}   |  4 +-
>  arch/arm/include/asm/global_data.h                 |  2 +-
>  board/freescale/{ls2085a => ls2080a}/Kconfig       | 12 +--
>  board/freescale/ls2080a/MAINTAINERS                |  8 ++
>  board/freescale/ls2080a/Makefile                   |  8 ++
>  board/freescale/{ls2085a => ls2080a}/README        |  2 +-
>  board/freescale/{ls2085a => ls2080a}/ddr.c         |  3 +-
>  board/freescale/{ls2085a => ls2080a}/ddr.h         |  0
>  .../{ls2085a/ls2085a.c => ls2080a/ls2080a.c}       |  2 +
>  board/freescale/{ls2085ardb => ls2080aqds}/Kconfig |  6 +-
>  board/freescale/ls2080aqds/MAINTAINERS             |  8 ++
>  .../freescale/{ls2085aqds => ls2080aqds}/Makefile  |  2 +-
>  board/freescale/{ls2085aqds => ls2080aqds}/README  | 16 ++--
>  board/freescale/{ls2085ardb => ls2080aqds}/ddr.c   |  5 +-
>  board/freescale/{ls2085aqds => ls2080aqds}/ddr.h   |  0
>  board/freescale/{ls2085aqds => ls2080aqds}/eth.c   | 92 +++++++++++-----------
>  .../ls2085aqds.c => ls2080aqds/ls2080aqds.c}       |  4 +-
>  .../ls2080aqds_qixis.h}                            |  0
>  board/freescale/{ls2085aqds => ls2080ardb}/Kconfig |  6 +-
>  board/freescale/ls2080ardb/MAINTAINERS             |  8 ++
>  .../freescale/{ls2085ardb => ls2080ardb}/Makefile  |  2 +-
>  board/freescale/{ls2085ardb => ls2080ardb}/README  | 12 +--
>  board/freescale/{ls2085aqds => ls2080ardb}/ddr.c   |  5 +-
>  board/freescale/{ls2085ardb => ls2080ardb}/ddr.h   |  0
>  .../eth_ls2085rdb.c => ls2080ardb/eth_ls2080rdb.c} |  2 +-
>  .../ls2085ardb.c => ls2080ardb/ls2080ardb.c}       |  4 +-
>  .../ls2080ardb_qixis.h}                            |  0
>  board/freescale/ls2085a/MAINTAINERS                |  8 --
>  board/freescale/ls2085a/Makefile                   |  8 --
>  board/freescale/ls2085aqds/MAINTAINERS             |  8 --
>  board/freescale/ls2085ardb/MAINTAINERS             |  8 --
>  ...ls2085a_emu_defconfig => ls2080a_emu_defconfig} |  2 +-
>  ...2085a_simu_defconfig => ls2080a_simu_defconfig} |  2 +-
>  .../{ls2085ardb_defconfig => ls2080aqds_defconfig} |  4 +-
>  ...ds_nand_defconfig => ls2080aqds_nand_defconfig} |  2 +-
>  .../{ls2085aqds_defconfig => ls2080ardb_defconfig} |  4 +-
>  ...db_nand_defconfig => ls2080ardb_nand_defconfig} |  2 +-
>  doc/README.fsl-trustzone-components                |  4 +-
>  drivers/ddr/fsl/fsl_ddr_gen4.c                     |  4 +-
>  drivers/net/fsl-mc/mc.c                            |  5 +-

Prabhakar,

Are you sure you are using the correct code base? I don't even see function
do_fsl_mc().

York

  reply	other threads:[~2015-11-10 19:10 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-09 11:12 [U-Boot] [PATCH 1/2][v2] armv8: LS2080A: Rename LS2085A to reflect LS2080A Prabhakar Kushwaha
2015-11-10 19:10 ` York Sun [this message]
2015-11-16  4:35   ` Kushwaha Prabhakar
2015-11-16  4:54     ` York Sun
2015-11-23 19:19 ` York Sun
2015-11-24  4:25   ` Kushwaha Prabhakar
2015-11-24  5:44     ` York Sun
2015-11-24  6:42       ` Kushwaha Prabhakar
2015-11-25 18:51         ` York Sun
2015-11-30 17:10 ` York Sun

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=56424113.6070107@freescale.com \
    --to=yorksun@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