From: Tapani <tapani@technexion.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 2/4] mx6: add structs for mmdc and ddr iomux registers
Date: Wed, 13 Nov 2013 13:50:13 +0800 [thread overview]
Message-ID: <20131113135013.2fda2fb6@triceratops> (raw)
In-Reply-To: <52824554.3060409@denx.de>
Stefano,
I'll reply to this, since including the __attribute__ was my suggestion.
> > + u32 res10[25];
> > + u32 mpmur0;
> > +}__attribute__((packed, aligned(4)));
> > +
>
> I am missing why the packed is needed.
>
This was discussed before, and I tried to explain it already then.
Short answer: to make a broken design slightly less likely to cause problems.
Long answer: Using structs the way required by u-boot maintainers is invalid C.
It is a compiler quirk that it happens to work. This is clear from ANSI C89
standard: http://www.lysator.liu.se/c/rat/c5.html#3-5-2-1
However people (like Microsoft famously with Office) kept shooting themselves
in the foot with structure members and padding, this was clarified even
further in the C99 standard (see pt. 1424 in
http://c0x.coding-guidelines.com/6.7.2.1.html )
Meanwhile, the gcc people added a compiler hint, __attribute__((packed)), to
kindly ask the compiler not to add any padding structs. (So you guys certainly
are not the first ones doing this kind of hacks :-).
While on topic, the aligned(4) is needed because of the packed attribute.
There is a drawback with the gcc __attribute__((packed)). The compiler might
no longer be able to assume any alignment of the members (what if the struct
resides on an odd address?). To remedy this some compilers create complicated
code for accessing the struct members in a way that no CPU exceptions are
raised, to make the structure accesses work (and some compilers just let the
Bus Errors happen). The __attribute__((aligned(4))) tells the compiler that it
may assume that the struct will always be aligned on a 4-byte boundary.
> > +
> > +/* MMDC P0/P1 Registers */
> > +struct mmdc_p_regs {
> > + u32 mdctl;
> > + u32 mdpdc;
> > + u32 mdotc;
> > + u32 mdcfg0;
> > + u32 mdcfg1;
> > + u32 mdcfg2;
> > + u32 mdmisc;
>
> Ok - if these structure is to make it available for other components, it
> should replace the structure esd_mmdc_regs in cpu.c. We cannot have both.
>
So would you suggest we add a union inside the structure to differentiate
imx5 and imx6? Or just make the structure imx6s/dl/q specific?
regards,
//Tapani
next prev parent reply other threads:[~2013-11-13 5:50 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1383902865.3157.485.camel@edward-x220-laptop>
2013-11-08 9:35 ` [U-Boot] [PATCH 2/4] mx6: add structs for mmdc and ddr iomux registers Edward Lin
2013-11-08 23:42 ` Eric Nelson
2013-11-12 9:55 ` Edward Lin
2013-11-12 15:12 ` Stefano Babic
2013-11-13 5:50 ` Tapani [this message]
2013-11-13 8:52 ` Stefano Babic
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=20131113135013.2fda2fb6@triceratops \
--to=tapani@technexion.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