All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hongbo Zhang <macro.wave.z@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 00/10] sunxi: PSCI implementation rewrite in C
Date: Tue, 24 May 2016 14:37:49 +0800	[thread overview]
Message-ID: <CABxX_wPotUPK6g61xMS0AQq0HU9SmotMSwvczSbssHZ5WeAboA@mail.gmail.com> (raw)
In-Reply-To: <1464007306-30269-1-git-send-email-wens@csie.org>

Yes, C code is better and even necessary for some cases.
Drawback of assemble language is that it is difficult not only for
developers but also for the reviewers and maintainers.
I am implementing our NXP/Freescale LS1 platform's system-suspend
function, it is written in C too, is is impossible without C for my
case.

On Mon, May 23, 2016 at 8:41 PM, Chen-Yu Tsai <wens@csie.org> wrote:
> Hi everyone,
>
> This series rewrites the Allwinner/sunxi PSCI implementation in C, to make
> it easier to maintain and extend for the currently unsupported multi-cluster
> SoCs. The SMP code in the BSP kernels are in C. Having the PSCI code in C
> as well will make it easier to work on.
>
> To be able to convert the platform bits to C, some common PSCI functions
> have to be fixed up according to the ARM calling conventions. Function
> declarations are also needed.
>
> This series is based on sunxi/next. Parts of it will likely conflict with
> the effort to support PSCI 1.0 on the Freescale LS102xA.
>
> Patch 1 fixes up psci_get_cpu_stack_top.
>
> Patch 2 fixes up the PSCI version of v7_flush_dcache_all.
>
> Patch 3 adds function declarations for some of the common PSCI functions.
>
> Patch 4 fixes issues with reserving memory for the secure section.
>
> Patch 5 unifies the CPUCFG_BASE macro names for various sunxi platforms.
>
> Patch 6 groups cpu core related controls together into one struct per core.
> This makes it straightforward to access the controls by the cpu index.
>
> Patch 7 adds a missing header to cpucfg.h
>
> Patch 8 adds some missing fields to cpucfg, which were used in the assembly
> code.
>
> Patch 9 adds the base address for the GIC.
>
> Patch 10 is the new PSCI implementation in C. Almost all of the code is
> converted, with the exception of initial setup of the stack.
>
>
> Regards
> ChenYu
>
>
> Chen-Yu Tsai (10):
>   ARM: PSCI: use only r0 and r3 in psci_get_cpu_stack_top()
>   ARM: PSCI: save and restore clobbered registers in v7_flush_dcache_all
>   ARM: PSCI: export common PSCI function declarations for C code
>   ARM: allocate extra space for PSCI stack in secure section during link
>     phase
>   sunxi: Make CPUCFG_BASE macro names the same across families
>   sunxi: Group cpu core related controls together
>   sunxi: Add missing linux/types.h header for cpucfg.h
>   sunxi: Add CPUCFG debug lock and sun7i cpu power controls
>   sunxi: Add base address for GIC
>   sunxi: Add PSCI implementation in C
>
>  arch/arm/cpu/armv7/psci.S                          |  20 +-
>  arch/arm/cpu/armv7/sunxi/Makefile                  |   7 +-
>  arch/arm/cpu/armv7/sunxi/psci.c                    | 229 ++++++++++++++++++
>  arch/arm/cpu/armv7/sunxi/psci_head.S               |  61 +++++
>  arch/arm/cpu/armv7/sunxi/psci_sun6i.S              | 262 ---------------------
>  arch/arm/cpu/armv7/sunxi/psci_sun7i.S              | 237 -------------------
>  arch/arm/cpu/u-boot.lds                            |   3 +
>  arch/arm/include/asm/arch-sunxi/cpu_sun4i.h        |  17 +-
>  .../asm/arch-sunxi/{cpucfg_sun6i.h => cpucfg.h}    |  38 +--
>  arch/arm/include/asm/arch-sunxi/prcm.h             |   6 +-
>  arch/arm/include/asm/psci.h                        |   8 +
>  11 files changed, 350 insertions(+), 538 deletions(-)
>  create mode 100644 arch/arm/cpu/armv7/sunxi/psci.c
>  create mode 100644 arch/arm/cpu/armv7/sunxi/psci_head.S
>  delete mode 100644 arch/arm/cpu/armv7/sunxi/psci_sun6i.S
>  delete mode 100644 arch/arm/cpu/armv7/sunxi/psci_sun7i.S
>  rename arch/arm/include/asm/arch-sunxi/{cpucfg_sun6i.h => cpucfg.h} (69%)
>
> --
> 2.8.1
>

  parent reply	other threads:[~2016-05-24  6:37 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-23 12:41 [U-Boot] [PATCH 00/10] sunxi: PSCI implementation rewrite in C Chen-Yu Tsai
2016-05-23 12:41 ` [U-Boot] [PATCH 01/10] ARM: PSCI: use only r0 and r3 in psci_get_cpu_stack_top() Chen-Yu Tsai
2016-05-23 12:41 ` [U-Boot] [PATCH 02/10] ARM: PSCI: save and restore clobbered registers in v7_flush_dcache_all Chen-Yu Tsai
2016-05-23 12:41 ` [U-Boot] [PATCH 03/10] ARM: PSCI: export common PSCI function declarations for C code Chen-Yu Tsai
2016-05-24  9:58   ` Marc Zyngier
2016-05-24 15:55     ` Chen-Yu Tsai
2016-05-23 12:41 ` [U-Boot] [PATCH 04/10] ARM: allocate extra space for PSCI stack in secure section during link phase Chen-Yu Tsai
2016-05-24 10:21   ` Marc Zyngier
2016-05-24 13:58     ` Marc Zyngier
2016-05-24 15:49       ` Chen-Yu Tsai
2016-05-25 14:31         ` Marc Zyngier
2016-05-23 12:41 ` [U-Boot] [PATCH 05/10] sunxi: Make CPUCFG_BASE macro names the same across families Chen-Yu Tsai
2016-05-23 12:41 ` [U-Boot] [PATCH 06/10] sunxi: Group cpu core related controls together Chen-Yu Tsai
2016-05-24  8:15   ` Marc Zyngier
2016-05-24 16:06     ` Chen-Yu Tsai
2016-05-25 14:38       ` Marc Zyngier
2016-05-23 12:41 ` [U-Boot] [PATCH 07/10] sunxi: Add missing linux/types.h header for cpucfg.h Chen-Yu Tsai
2016-05-23 12:41 ` [U-Boot] [PATCH 08/10] sunxi: Add CPUCFG debug lock and sun7i cpu power controls Chen-Yu Tsai
2016-05-23 12:41 ` [U-Boot] [PATCH 09/10] sunxi: Add base address for GIC Chen-Yu Tsai
2016-05-23 12:41 ` [U-Boot] [PATCH 10/10] sunxi: Add PSCI implementation in C Chen-Yu Tsai
2016-05-24  8:41   ` Marc Zyngier
2016-05-25  2:14     ` Chen-Yu Tsai
2016-05-25 14:50       ` Marc Zyngier
2016-05-24  6:37 ` Hongbo Zhang [this message]
2016-05-24  9:36 ` [U-Boot] [PATCH 00/10] sunxi: PSCI implementation rewrite " Hans de Goede

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=CABxX_wPotUPK6g61xMS0AQq0HU9SmotMSwvczSbssHZ5WeAboA@mail.gmail.com \
    --to=macro.wave.z@gmail.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 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.