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 V6 01/18] armv7/ls1021a: move ns_access to common file
Date: Wed, 21 Oct 2015 09:43:14 -0700	[thread overview]
Message-ID: <5627C0A2.5040100@freescale.com> (raw)
In-Reply-To: <1445255949-25021-2-git-send-email-b52263@rhuath.am.freescale.net>



On 10/19/2015 04:58 AM, Gong Qianyu wrote:
> From: Mingkai Hu <Mingkai.Hu@freescale.com>
> 
> Config Security Level Register is different between different SoCs,
> so put the CSL register definition into the arch specific directory.
> 
> Signed-off-by: Mingkai Hu <Mingkai.Hu@freescale.com>
> Signed-off-by: Gong Qianyu <Qianyu.Gong@freescale.com>
> ---
> V6:
>  - No change.
> V5:
>  - No change.
> V4:
>  - No change.
> V3:
>  - No change.
> V2:
>  - Create include/fsl_csu.h instead of board/freescale/common/ns_access.h
>  
>  arch/arm/include/asm/arch-ls102xa/ns_access.h | 103 ++++++++++++++++++++------
>  board/freescale/common/Makefile               |   2 +-
>  board/freescale/common/ns_access.c            |   8 +-
>  board/freescale/ls1021aqds/ls1021aqds.c       | 101 ++-----------------------
>  board/freescale/ls1021atwr/ls1021atwr.c       |  92 +----------------------
>  include/configs/ls1021aqds.h                  |   2 +-
>  include/configs/ls1021atwr.h                  |   2 +-
>  include/fsl_csu.h                             |  34 +++++++++
>  8 files changed, 136 insertions(+), 208 deletions(-)
> 
<snip>

> diff --git a/board/freescale/common/Makefile b/board/freescale/common/Makefile
> index 87d0578..51d2814 100644
> --- a/board/freescale/common/Makefile
> +++ b/board/freescale/common/Makefile
> @@ -71,7 +71,7 @@ obj-$(CONFIG_P4080DS)	+= p_corenet/
>  obj-$(CONFIG_P5020DS)	+= p_corenet/
>  obj-$(CONFIG_P5040DS)	+= p_corenet/
>  
> -obj-$(CONFIG_LS102XA_NS_ACCESS)	+= ns_access.o
> +obj-$(CONFIG_LAYERSCAPE_NS_ACCESS)	+= ns_access.o

Looks like you missed two #ifdef CONFIG_LS102XA_NS_ACCESS in
board/freescale/ls1021atwr/ls1021atwr.c.

York

  parent reply	other threads:[~2015-10-21 16:43 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-19 11:58 [U-Boot] [Patch V6 00/18] add LS1043A platform support Gong Qianyu
2015-10-19 11:58 ` [U-Boot] [Patch V6 01/18] armv7/ls1021a: move ns_access to common file Gong Qianyu
2015-10-19 11:58   ` [U-Boot] [Patch V6 02/18] common/board_f.c: modify the macro to use get_clocks() more common Gong Qianyu
2015-10-19 11:58     ` [U-Boot] [Patch V6 03/18] net/fm: Fix the endian issue to support both endianness platforms Gong Qianyu
2015-10-19 11:58       ` [U-Boot] [Patch V6 04/18] net/fm/eth: Use mb() to be compatible for both ARM and PowerPC Gong Qianyu
2015-10-19 11:58         ` [U-Boot] [Patch V6 05/18] net/fm: Add support for 64-bit platforms Gong Qianyu
2015-10-19 11:58           ` [U-Boot] [Patch V6 06/18] net/fm: Make the return value logic consistent with convention Gong Qianyu
2015-10-19 11:58             ` [U-Boot] [Patch V6 07/18] net: fm: bug fix when CONFIG_PHYLIB not defined Gong Qianyu
2015-10-19 11:58               ` [U-Boot] [Patch V6 08/18] net: Move some header files to include/ Gong Qianyu
2015-10-19 11:59                 ` [U-Boot] [Patch V6 09/18] net/fm: Add QSGMII PCS init Gong Qianyu
2015-10-19 11:59                   ` [U-Boot] [Patch V6 10/18] net/fm: fix MDIO controller base on FMAN2 Gong Qianyu
2015-10-19 11:59                     ` [U-Boot] [Patch V6 11/18] armv8/fsl_lsch3: Change arch to fsl-layerscape Gong Qianyu
2015-10-19 11:59                       ` [U-Boot] [Patch V6 12/18] armv8/fsl_lsch2: Add fsl_lsch2 SoC Gong Qianyu
2015-10-19 11:59                         ` [U-Boot] [Patch V6 13/18] armv8/ls1043ardb: Add LS1043ARDB board support Gong Qianyu
2015-10-19 11:59                           ` [U-Boot] [Patch V6 14/18] armv8/ls1043ardb: Add nand boot support Gong Qianyu
2015-10-19 11:59                             ` [U-Boot] [Patch V6 15/18] armv8/ls1043a: Add Fman support Gong Qianyu
2015-10-19 11:59                               ` [U-Boot] [Patch V6 16/18] armv8/ls1043ardb: esdhc: Add esdhc support for ls1043ardb Gong Qianyu
2015-10-19 11:59                                 ` [U-Boot] [Patch V6 17/18] armv8/ls1043ardb: Add sd boot support Gong Qianyu
2015-10-19 11:59                                   ` [U-Boot] [Patch V6 18/18] armv8/ls1043a: Enable secondary cores Gong Qianyu
2015-10-22  7:24                       ` [U-Boot] [Patch V6 11/18] armv8/fsl_lsch3: Change arch to fsl-layerscape Hou Zhiqiang
2015-10-21 16:52     ` [U-Boot] [Patch V6 02/18] common/board_f.c: modify the macro to use get_clocks() more common York Sun
2015-10-21 16:43   ` York Sun [this message]
2015-10-22  7:26   ` [U-Boot] [Patch V6 01/18] armv7/ls1021a: move ns_access to common file Hou Zhiqiang

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=5627C0A2.5040100@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