All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chen-Yu Tsai <wens@csie.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 06/10] sunxi: Group cpu core related controls together
Date: Wed, 25 May 2016 00:06:07 +0800	[thread overview]
Message-ID: <CAGb2v65NoberDv6qGw5CZLO=0icXWxkSXunwQRxtFEU+BfTUxQ@mail.gmail.com> (raw)
In-Reply-To: <57440D8D.80208@arm.com>

On Tue, May 24, 2016 at 4:15 PM, Marc Zyngier <marc.zyngier@arm.com> wrote:
> On 23/05/16 13:41, Chen-Yu Tsai wrote:
>> Instead of listing individual registers for controls to each processor
>> core, list them as an array of registers. This makes accessing controls
>> by core index easier.
>>
>> Also rename "cpucfg_sun6i.h" (which was unused anyway) to the more generic
>> "cpucfg.h".
>>
>> Signed-off-by: Chen-Yu Tsai <wens@csie.org>
>> ---
>>  .../asm/arch-sunxi/{cpucfg_sun6i.h => cpucfg.h}    | 31 +++++++++-------------
>>  arch/arm/include/asm/arch-sunxi/prcm.h             |  6 ++---
>>  2 files changed, 14 insertions(+), 23 deletions(-)
>>  rename arch/arm/include/asm/arch-sunxi/{cpucfg_sun6i.h => cpucfg.h} (69%)
>>
>> diff --git a/arch/arm/include/asm/arch-sunxi/cpucfg_sun6i.h b/arch/arm/include/asm/arch-sunxi/cpucfg.h
>> similarity index 69%
>> rename from arch/arm/include/asm/arch-sunxi/cpucfg_sun6i.h
>> rename to arch/arm/include/asm/arch-sunxi/cpucfg.h
>> index e2a29cb1818e..b9084b3968cd 100644
>> --- a/arch/arm/include/asm/arch-sunxi/cpucfg_sun6i.h
>> +++ b/arch/arm/include/asm/arch-sunxi/cpucfg.h
>> @@ -11,33 +11,26 @@
>>
>>  #ifndef __ASSEMBLY__
>>
>> +struct sunxi_cpucfg_cpu {
>> +     u32 rst;                /* base + 0x0 */
>> +     u32 ctrl;               /* base + 0x4 */
>> +     u32 status;             /* base + 0x8 */
>> +     u8 res[0x34];           /* base + 0xc */
>> +};
>
> Please use the "packed" attribute. Even if you declared your structure
> in a way that makes sure no padding will be introduced, this also serves
> as a reminder that this is not your usual memory.
>
> Same goes for the other structures in the file.

OK.

Somewhat related, it seems we use (struct foo*) for accessing registers
in U-boot, while in the kernel we use (void * + some offset). Could someone
explain the trade-offs or preferences on this? struct foo doesn't work in
assembly afaik.

Thanks.

ChenYu

  reply	other threads:[~2016-05-24 16:06 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 [this message]
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 ` [U-Boot] [PATCH 00/10] sunxi: PSCI implementation rewrite " Hongbo Zhang
2016-05-24  9:36 ` 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='CAGb2v65NoberDv6qGw5CZLO=0icXWxkSXunwQRxtFEU+BfTUxQ@mail.gmail.com' \
    --to=wens@csie.org \
    --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.