From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 1/5] arm64: fsl-layerscape: add get_svr and IS_SVR_REV helper
Date: Thu, 09 Jun 2016 15:28:05 +0200 [thread overview]
Message-ID: <57596EE5.4030708@denx.de> (raw)
In-Reply-To: <1465474911-29297-2-git-send-email-sriram.dash@nxp.com>
On 06/09/2016 02:21 PM, Sriram Dash wrote:
> Adds get_svr and IS_SVR_REV helpers for ARMv8 platforms,
> similar to PPC and ARMv7.
>
> Signed-off-by: Sriram Dash <sriram.dash@nxp.com>
> Signed-off-by: Rajesh Bhagat <rajesh.bhagat@nxp.com>
> ---
>
> Changes in v1:
> - Added commit message
>
> Changes in v2:
> - No update
So what changed in V3 here ?
> arch/arm/cpu/armv8/fsl-layerscape/cpu.c | 7 +++++++
> arch/arm/include/asm/arch-fsl-layerscape/immap_lsch2.h | 2 ++
> arch/arm/include/asm/arch-fsl-layerscape/immap_lsch3.h | 3 +++
> arch/arm/include/asm/arch-fsl-layerscape/soc.h | 2 ++
> 4 files changed, 14 insertions(+)
>
> diff --git a/arch/arm/cpu/armv8/fsl-layerscape/cpu.c b/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
> index 9a5a6b5..9c575c1 100644
> --- a/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
> +++ b/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
> @@ -528,6 +528,13 @@ u32 fsl_qoriq_core_to_type(unsigned int core)
> return -1; /* cannot identify the cluster */
> }
>
> +uint get_svr(void)
> +{
> + struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
> +
> + return gur_in32(&gur->svr);
> +}
> +
> #ifdef CONFIG_DISPLAY_CPUINFO
> int print_cpuinfo(void)
> {
> diff --git a/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch2.h b/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch2.h
> index e98e055..8b8a7c1 100644
> --- a/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch2.h
> +++ b/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch2.h
> @@ -596,4 +596,6 @@ struct ccsr_cci400 {
> #define SCR0_CLIENTPD_MASK 0x00000001
> #define SCR0_USFCFG_MASK 0x00000400
>
> +uint get_svr(void);
> +
> #endif /* __ARCH_FSL_LSCH2_IMMAP_H__*/
> diff --git a/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch3.h b/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch3.h
> index 65b3357..e48bbaf 100644
> --- a/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch3.h
> +++ b/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch3.h
> @@ -319,4 +319,7 @@ struct ccsr_reset {
> u32 ip_rev1; /* 0xbf8 */
> u32 ip_rev2; /* 0xbfc */
> };
> +
> +uint get_svr(void);
> +
> #endif /* __ARCH_FSL_LSCH3_IMMAP_H_ */
> diff --git a/arch/arm/include/asm/arch-fsl-layerscape/soc.h b/arch/arm/include/asm/arch-fsl-layerscape/soc.h
> index 02ecc62..f244904 100644
> --- a/arch/arm/include/asm/arch-fsl-layerscape/soc.h
> +++ b/arch/arm/include/asm/arch-fsl-layerscape/soc.h
> @@ -53,6 +53,8 @@ struct cpu_type {
> #define SVR_MIN(svr) (((svr) >> 0) & 0xf)
> #define SVR_SOC_VER(svr) (((svr) >> 8) & SVR_WO_E)
> #define IS_E_PROCESSOR(svr) (!((svr >> 8) & 0x1))
> +#define IS_SVR_REV(svr, maj, min) \
> + ((SVR_MAJ(svr) == maj) && (SVR_MIN(svr) == min))
This is susceptible to macro expansion problems, you need parenthesis
around all the macro args:
((SVR_MAJ(svr) == (maj)) && (SVR_MIN(svr) == (min)))
> /* ahci port register default value */
> #define AHCI_PORT_PHY_1_CFG 0xa003fffe
>
--
Best regards,
Marek Vasut
next prev parent reply other threads:[~2016-06-09 13:28 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-09 12:21 [U-Boot] [PATCH v3 0/5] Supporting ARM v8 USB errata for FSL Sriram Dash
2016-06-09 12:21 ` [U-Boot] [PATCH v3 1/5] arm64: fsl-layerscape: add get_svr and IS_SVR_REV helper Sriram Dash
2016-06-09 13:28 ` Marek Vasut [this message]
2016-06-10 3:47 ` Sriram Dash
2016-06-09 12:21 ` [U-Boot] [PATCH v3 2/5] usb: xhci: fsl: code cleanup for device tree fixup for fsl usb controllers Sriram Dash
2016-06-09 13:30 ` Marek Vasut
2016-06-10 3:47 ` Sriram Dash
2016-06-10 4:08 ` Marek Vasut
2016-06-10 5:20 ` Sriram Dash
2016-06-10 5:33 ` Marek Vasut
2016-06-10 6:09 ` Sriram Dash
2016-06-09 12:21 ` [U-Boot] [PATCH v3 3/5] fsl: usb: make errata function common for PPC and ARM Sriram Dash
2016-06-09 12:21 ` [U-Boot] [PATCH v3 4/5] armv8/ls2080: Remove workaround for erratum A008751 Sriram Dash
2016-06-09 12:21 ` [U-Boot] [PATCH v3 5/5] usb: xhci: fsl: Add workaround for USB erratum A-008751 Sriram Dash
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=57596EE5.4030708@denx.de \
--to=marex@denx.de \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.