<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm63xx/atf/plat/mediatek/mt8173/drivers, 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-09-16T02:27:21Z</updated>
<entry>
<title>mediatek: mt8173: refactor RTC and PMIC drivers</title>
<updated>2019-09-16T02:27:21Z</updated>
<author>
<name>kenny liang</name>
</author>
<published>2019-05-02T13:06:05Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=f389d0e90011ac4816e12f62f4fe3a179ef15cef'/>
<id>urn:sha1:f389d0e90011ac4816e12f62f4fe3a179ef15cef</id>
<content type='text'>
Refactor RTC and PMIC drivers.

Signed-off-by: kenny liang &lt;kenny.liang@mediatek.com&gt;
Change-Id: I74fca536cd61e00c962f080f1ba3759287682ecf
</content>
</entry>
<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>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>Fix order of remaining platform #includes</title>
<updated>2017-07-14T09:50:41Z</updated>
<author>
<name>Isla Mitchell</name>
</author>
<published>2017-07-14T09:46:32Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=ee1ebbd18e2a1e3b8a5b9ac9fba155177e2af4a1'/>
<id>urn:sha1:ee1ebbd18e2a1e3b8a5b9ac9fba155177e2af4a1</id>
<content type='text'>
This fix modifies the order of system includes to meet the ARM TF coding
standard. There are some exceptions to this change in order to retain
header groupings and where there are headers within #if statements.

Change-Id: Ib5b668c992d817cc860e97b29e16ef106d17e404
Signed-off-by: Isla Mitchell &lt;isla.mitchell@arm.com&gt;
</content>
</entry>
<entry>
<title>Use SPDX license identifiers</title>
<updated>2017-05-03T08:39:28Z</updated>
<author>
<name>dp-arm</name>
</author>
<published>2017-05-03T08:38:09Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=82cb2c1ad9897473743f08437d0a3995bed561b9'/>
<id>urn:sha1:82cb2c1ad9897473743f08437d0a3995bed561b9</id>
<content type='text'>
To make software license auditing simpler, use SPDX[0] license
identifiers instead of duplicating the license text in every file.

NOTE: Files that have been imported by FreeBSD have not been modified.

[0]: https://spdx.org/

Change-Id: I80a00e1f641b8cc075ca5a95b10607ed9ed8761a
Signed-off-by: dp-arm &lt;dimitris.papastamos@arm.com&gt;
</content>
</entry>
<entry>
<title>Remove use of all deprecated APIs</title>
<updated>2017-01-24T02:50:14Z</updated>
<author>
<name>Koan-Sin Tan</name>
</author>
<published>2016-04-18T09:20:05Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=201d535ff65ceefcb35840a53f8048992dcffdaf'/>
<id>urn:sha1:201d535ff65ceefcb35840a53f8048992dcffdaf</id>
<content type='text'>
Now it's possbile to build BL31 for MT8173 with ERROR_DEPRECATED=1.

Signed-off-by: Koan-Sin Tan &lt;koansin.tan@gmail.com&gt;
</content>
</entry>
<entry>
<title>mt8173: Correct SPM MCDI firmware length</title>
<updated>2017-01-14T16:11:12Z</updated>
<author>
<name>Paul Kocialkowski</name>
</author>
<published>2017-01-08T10:23:58Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=03be4806fd612e06d877027e64c34dc81fba24a1'/>
<id>urn:sha1:03be4806fd612e06d877027e64c34dc81fba24a1</id>
<content type='text'>
The actual length of the firmware is 1001 32 bit words.

Signed-off-by: Paul Kocialkowski &lt;contact@paulk.fr&gt;
</content>
</entry>
<entry>
<title>Support for Mediatek MT6795 SoC</title>
<updated>2016-09-12T09:13:55Z</updated>
<author>
<name>Leon Chen</name>
</author>
<published>2016-07-11T08:05:23Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=c1ff80b1289df2c6d950413eab37cdd999b462a6'/>
<id>urn:sha1:c1ff80b1289df2c6d950413eab37cdd999b462a6</id>
<content type='text'>
This patch support single core to boot to Linux kernel
through Trusted Firmware.
It also support 32 bit kernel and 64 bit kernel booting.
</content>
</entry>
<entry>
<title>MT8173: Add Sip function for MTK HW crypt driver</title>
<updated>2016-05-12T06:37:20Z</updated>
<author>
<name>Yi Zheng</name>
</author>
<published>2016-05-11T10:45:20Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=7ace1cc088adf4e0dc10f41fa2571129d9f52e53'/>
<id>urn:sha1:7ace1cc088adf4e0dc10f41fa2571129d9f52e53</id>
<content type='text'>
Change-Id: Idc40cc6243e532567ec4334ae37d97c003c90bfa
Signed-off-by: Yi Zheng &lt;yi.zheng@mediatek.com&gt;
</content>
</entry>
<entry>
<title>mt8173: Fix timing issue of mfg mtcmos power off</title>
<updated>2016-04-14T06:10:04Z</updated>
<author>
<name>Fan Chen</name>
</author>
<published>2016-04-01T10:35:43Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/atf/commit/?id=8c9130c6c2c2ce7e7eed62c118b74e83289ab67c'/>
<id>urn:sha1:8c9130c6c2c2ce7e7eed62c118b74e83289ab67c</id>
<content type='text'>
In mt8173, there are totally 10 non-cpu mtcmos, so we cannot tell
if SPM finished the power control flow by 10 status bits of PASR_PDP_3.
So, extend PASR_PDP_3 status bits from 10 to 20 so that we can
make sure if the control action has been done precisely.

Change-Id: Ifd4faaa4173c6e0543aa8471149adb9fe7fadedc
Signed-off-by: Fan Chen &lt;fan.chen@mediatek.com&gt;
</content>
</entry>
</feed>
