<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm63xx/atf/plat/socionext/uniphier/include, branch master</title>
<subtitle>Broadcom-s Trusted Firmware A</subtitle>
<id>https://git.openwrt.org/project/bcm63xx/atf/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/project/bcm63xx/atf/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/'/>
<updated>2019-01-04T10:43:17Z</updated>
<entry>
<title>Sanitise includes across codebase</title>
<updated>2019-01-04T10:43:17Z</updated>
<author>
<name>Antonio Nino Diaz</name>
</author>
<published>2018-12-14T00:18:21Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=09d40e0e08283a249e7dce0e106c07c5141f9b7e'/>
<id>urn:sha1:09d40e0e08283a249e7dce0e106c07c5141f9b7e</id>
<content type='text'>
Enforce full include path for includes. Deprecate old paths.

The following folders inside include/lib have been left unchanged:

- include/lib/cpus/${ARCH}
- include/lib/el3_runtime/${ARCH}

The reason for this change is that having a global namespace for
includes isn't a good idea. It defeats one of the advantages of having
folders and it introduces problems that are sometimes subtle (because
you may not know the header you are actually including if there are two
of them).

For example, this patch had to be created because two headers were
called the same way: e0ea0928d5b7 ("Fix gpio includes of mt8173 platform
to avoid collision."). More recently, this patch has had similar
problems: 46f9b2c3a282 ("drivers: add tzc380 support").

This problem was introduced in commit 4ecca33988b9 ("Move include and
source files to logical locations"). At that time, there weren't too
many headers so it wasn't a real issue. However, time has shown that
this creates problems.

Platforms that want to preserve the way they include headers may add the
removed paths to PLAT_INCLUDES, but this is discouraged.

Change-Id: I39dc53ed98f9e297a5966e723d1936d6ccf2fc8f
Signed-off-by: Antonio Nino Diaz &lt;antonio.ninodiaz@arm.com&gt;
</content>
</entry>
<entry>
<title>io_block: define MAX_IO_BLOCK_DEVICES as unsigned</title>
<updated>2018-12-10T17:09:49Z</updated>
<author>
<name>Yann Gautier</name>
</author>
<published>2018-12-03T12:38:06Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=b7c6529c412d53b74e2a1fb6a7b1a70438a02802'/>
<id>urn:sha1:b7c6529c412d53b74e2a1fb6a7b1a70438a02802</id>
<content type='text'>
This is used as a table index, and already compared with an unsigned int:
block_dev_count.

Signed-off-by: Yann Gautier &lt;yann.gautier@st.com&gt;
</content>
</entry>
<entry>
<title>Standardise header guards across codebase</title>
<updated>2018-11-08T10:20:19Z</updated>
<author>
<name>Antonio Nino Diaz</name>
</author>
<published>2018-11-08T10:20:19Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=c3cf06f1a3a9b9ee8ac7a0ae505f95c45f7dca84'/>
<id>urn:sha1:c3cf06f1a3a9b9ee8ac7a0ae505f95c45f7dca84</id>
<content type='text'>
All identifiers, regardless of use, that start with two underscores are
reserved. This means they can't be used in header guards.

The style that this project is now to use the full name of the file in
capital letters followed by 'H'. For example, for a file called
"uart_example.h", the header guard is UART_EXAMPLE_H.

The exceptions are files that are imported from other projects:

- CryptoCell driver
- dt-bindings folders
- zlib headers

Change-Id: I50561bf6c88b491ec440d0c8385c74650f3c106e
Signed-off-by: Antonio Nino Diaz &lt;antonio.ninodiaz@arm.com&gt;
</content>
</entry>
<entry>
<title>PSCI: Fix types of definitions</title>
<updated>2018-07-20T12:49:22Z</updated>
<author>
<name>Antonio Nino Diaz</name>
</author>
<published>2018-07-20T08:17:26Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=1083b2b315cd71f714eb0d0bca20e54ef7be02ad'/>
<id>urn:sha1:1083b2b315cd71f714eb0d0bca20e54ef7be02ad</id>
<content type='text'>
Also change header guards to fix defects of MISRA C-2012 Rule 21.1.

Change-Id: Ied0d4b0e557ef6119ab669d106d2ac5d99620c57
Acked-by: Sumit Garg &lt;sumit.garg@linaro.org&gt;
Acked-by: Anson Huang &lt;Anson.Huang@nxp.com&gt;
Signed-off-by: Antonio Nino Diaz &lt;antonio.ninodiaz@arm.com&gt;
</content>
</entry>
<entry>
<title>uniphier: add ULL to physical address literals</title>
<updated>2018-02-02T07:32:30Z</updated>
<author>
<name>Masahiro Yamada</name>
</author>
<published>2018-02-02T06:55:13Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=4f557c77f56b8f5c05be03743e48b35b1acfbbf4'/>
<id>urn:sha1:4f557c77f56b8f5c05be03743e48b35b1acfbbf4</id>
<content type='text'>
Looks like this is requirement in the pre-merge static analysis.

misra_violation: [Required] MISRA C-2012 Rule 7.2 violation:
Unsigned constants must be declared with U or u suffix.

Adding ULL as requested.  I used ULL() macros for BL*_{BASE,LIMIT}
because they are referenced from linker scripts.

Requested-by: David Cunado &lt;david.cunado@arm.com&gt;
Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
</content>
</entry>
<entry>
<title>uniphier: get back original BL31/32 location used before BL2-AT-EL3</title>
<updated>2018-02-02T06:17:45Z</updated>
<author>
<name>Masahiro Yamada</name>
</author>
<published>2018-01-30T09:49:37Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=7e51ca8daf3358f607d8dfe8733a8cdec12e0277'/>
<id>urn:sha1:7e51ca8daf3358f607d8dfe8733a8cdec12e0277</id>
<content type='text'>
Commit 247fc0435191 ("uniphier: switch to BL2-AT-EL3 and remove BL1
support") accidentally changed the location of BL31 and BL32.  The
new memory map overlaps with the audio DSP images, also gives impact
to OP-TEE.  They are both out of control of ARM Trusted Firmware, so
not easy to change.  This commit restores the image layout that was
originally used prior to the BL2-AT-EL3 migration.

Reported-by: Katsuhiro Suzuki &lt;suzuki.katsuhiro@socionext.com&gt;
Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
</content>
</entry>
<entry>
<title>uniphier: switch to BL2-AT-EL3 and remove BL1 support</title>
<updated>2018-01-24T12:38:32Z</updated>
<author>
<name>Masahiro Yamada</name>
</author>
<published>2017-12-19T02:56:05Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=247fc0435191586b053f730302d28a419d3c6939'/>
<id>urn:sha1:247fc0435191586b053f730302d28a419d3c6939</id>
<content type='text'>
UniPhier platform implements non-TF boot ROM.  Prior to the BL2-AT-EL3
support, BL1 (worked as a pseudo ROM) was needed just for ensuring BL2
is entered at EL1-S.  Now, this platform is able to avoid this waste.

Enable the BL2_AT_EL3 option, and remove BL1.

Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
</content>
</entry>
<entry>
<title>uniphier: fix base address of IO block buffer</title>
<updated>2017-12-20T03:33:01Z</updated>
<author>
<name>Masahiro Yamada</name>
</author>
<published>2017-12-19T16:30:08Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=fe458325d04709035f1f5fca2b5946a0fd11c4a7'/>
<id>urn:sha1:fe458325d04709035f1f5fca2b5946a0fd11c4a7</id>
<content type='text'>
The current IO block buffer overlaps with BL2 image location.
So, BL2 may corrupt itself.

Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
</content>
</entry>
<entry>
<title>uniphier: add TSP support</title>
<updated>2017-06-12T15:32:57Z</updated>
<author>
<name>Masahiro Yamada</name>
</author>
<published>2017-05-15T04:00:00Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=63b3a28ebbe9f0de6f68e5567b65cb7a7857b8a4'/>
<id>urn:sha1:63b3a28ebbe9f0de6f68e5567b65cb7a7857b8a4</id>
<content type='text'>
Add TSP to test BL32 without relying on external projects.

Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
</content>
</entry>
<entry>
<title>uniphier: support Socionext UniPhier platform</title>
<updated>2017-06-12T15:32:57Z</updated>
<author>
<name>Masahiro Yamada</name>
</author>
<published>2016-09-03T02:37:40Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=d8e919c7b81a2739300912d6edbd3f929a136dbf'/>
<id>urn:sha1:d8e919c7b81a2739300912d6edbd3f929a136dbf</id>
<content type='text'>
Initial commit for Socionext UniPhier SoC support.  BL1, Bl2, and
BL31 are supported.  Refer to docs/plat/socionext-uniphier.md for
more detais.

Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
</content>
</entry>
</feed>
