<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm63xx/u-boot/arch/nds32/cpu, branch master</title>
<subtitle>Broadcom-s U-Boot</subtitle>
<id>https://git.openwrt.org/project/bcm63xx/u-boot/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/project/bcm63xx/u-boot/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/'/>
<updated>2019-05-18T12:15:35Z</updated>
<entry>
<title>CONFIG_SPL_SYS_[DI]CACHE_OFF: add</title>
<updated>2019-05-18T12:15:35Z</updated>
<author>
<name>Trevor Woerner</name>
</author>
<published>2019-05-03T13:41:00Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=1001502545ff0125c39232cf0e7f26d9213ab55f'/>
<id>urn:sha1:1001502545ff0125c39232cf0e7f26d9213ab55f</id>
<content type='text'>
While converting CONFIG_SYS_[DI]CACHE_OFF to Kconfig, there are instances
where these configuration items are conditional on SPL. This commit adds SPL
variants of these configuration items, uses CONFIG_IS_ENABLED(), and updates
the configurations as required.

Acked-by: Alexey Brodkin &lt;abrodkin@synopsys.com&gt;
Signed-off-by: Trevor Woerner &lt;trevor@toganlabs.com&gt;
[trini: Make the default depend on the setting for full U-Boot, update
more zynq hardware]
Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>CONFIG_SYS_[ID]CACHE_OFF: unify the 'any' case</title>
<updated>2019-05-18T12:15:34Z</updated>
<author>
<name>Trevor Woerner</name>
</author>
<published>2019-05-03T13:40:56Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=b7b4af0e357f4cb2a1133ca8d8cec66cbd11de81'/>
<id>urn:sha1:b7b4af0e357f4cb2a1133ca8d8cec66cbd11de81</id>
<content type='text'>
According to De Morgan's Law[1]:
	!(A &amp;&amp; B) = !A || !B
	!(A || B) = !A &amp;&amp; !B

There are 5 places in the code where we find:
	#if !(defined(CONFIG_SYS_ICACHE_OFF) &amp;&amp; defined(CONFIG_SYS_DCACHE_OFF))
and 4 places in the code where we find:
	#if (!defined(CONFIG_SYS_ICACHE_OFF) || !defined(CONFIG_SYS_DCACHE_OFF))

In words, the construct:
	!defined(CONFIG_SYS_[DI]CACHE_OFF)
means:
	"is the [DI]CACHE on?"
and the construct:
	defined(CONFIG_SYS_[DI]CACHE_OFF)
means:
	"is the [DI]CACHE off?"

Therefore
	!(defined(CONFIG_SYS_ICACHE_OFF) &amp;&amp; defined(CONFIG_SYS_DCACHE_OFF))
means:
	"the opposite of 'are they both off?'"
in other words:
	"are either or both on?"
and:
	(!defined(CONFIG_SYS_ICACHE_OFF) || !defined(CONFIG_SYS_DCACHE_OFF)
means:
	"are either or both on?"

As a result, I've converted the 4 instances of '(!A || !B)' to '!(A &amp;&amp; B)' for
consistency.

[1] https://en.wikipedia.org/wiki/De_Morgan%27s_laws

Signed-off-by: Trevor Woerner &lt;trevor@toganlabs.com&gt;
</content>
</entry>
<entry>
<title>Drop CONFIG_INIT_CRITICAL</title>
<updated>2018-11-26T05:57:31Z</updated>
<author>
<name>Bin Meng</name>
</author>
<published>2018-11-22T10:26:26Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=c95cafd0b1ca984e0dbd8e1335c947d715ce0fb2'/>
<id>urn:sha1:c95cafd0b1ca984e0dbd8e1335c947d715ce0fb2</id>
<content type='text'>
This is now deprecated and no board is using it. Drop it.

Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;
Signed-off-by: Lukas Auer &lt;lukas.auer@aisec.fraunhofer.de&gt;
</content>
</entry>
<entry>
<title>SPDX: Convert all of our single license tags to Linux Kernel style</title>
<updated>2018-05-07T13:34:12Z</updated>
<author>
<name>Tom Rini</name>
</author>
<published>2018-05-06T21:58:06Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=83d290c56fab2d38cd1ab4c4cc7099559c1d5046'/>
<id>urn:sha1:83d290c56fab2d38cd1ab4c4cc7099559c1d5046</id>
<content type='text'>
When U-Boot started using SPDX tags we were among the early adopters and
there weren't a lot of other examples to borrow from.  So we picked the
area of the file that usually had a full license text and replaced it
with an appropriate SPDX-License-Identifier: entry.  Since then, the
Linux Kernel has adopted SPDX tags and they place it as the very first
line in a file (except where shebangs are used, then it's second line)
and with slightly different comment styles than us.

In part due to community overlap, in part due to better tag visibility
and in part for other minor reasons, switch over to that style.

This commit changes all instances where we have a single declared
license in the tag as both the before and after are identical in tag
contents.  There's also a few places where I found we did not have a tag
and have introduced one.

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>nds32: ftmac100 support cache enable.</title>
<updated>2017-09-21T02:30:22Z</updated>
<author>
<name>rick</name>
</author>
<published>2017-08-29T02:12:02Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=e336b73d8ae06dbcc532d1833d7a5567babecca8'/>
<id>urn:sha1:e336b73d8ae06dbcc532d1833d7a5567babecca8</id>
<content type='text'>
Enable cache and ftmac100 performance can be improved.

Signed-off-by: rick &lt;rick@andestech.com&gt;
</content>
</entry>
<entry>
<title>nds32: Support AE3XX platform.</title>
<updated>2017-05-22T06:05:46Z</updated>
<author>
<name>rick</name>
</author>
<published>2017-05-18T06:37:53Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=b841b6e94662b3b21a56d6ecaab64dcdfb0d311c'/>
<id>urn:sha1:b841b6e94662b3b21a56d6ecaab64dcdfb0d311c</id>
<content type='text'>
Support Andestech AE3xx platform: serial, timer device tree flow.

Signed-off-by: rick &lt;rick@andestech.com&gt;
</content>
</entry>
<entry>
<title>nds32: Support AG101P timer DM.</title>
<updated>2017-05-22T06:05:40Z</updated>
<author>
<name>rick</name>
</author>
<published>2017-05-17T02:59:20Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=f5076f869855045e527de7f1367c65f55a2b1448'/>
<id>urn:sha1:f5076f869855045e527de7f1367c65f55a2b1448</id>
<content type='text'>
Support AG101P timer device tree flow.

Signed-off-by: rick &lt;rick@andestech.com&gt;
</content>
</entry>
<entry>
<title>nds32: Support AG101P serial DM.</title>
<updated>2017-05-22T06:05:33Z</updated>
<author>
<name>rick</name>
</author>
<published>2017-04-17T06:41:58Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=86132af799d51e8e94d87dc56a071f325f369e0c'/>
<id>urn:sha1:86132af799d51e8e94d87dc56a071f325f369e0c</id>
<content type='text'>
Support AG101P serial device tree flow.

Signed-off-by: rick &lt;rick@andestech.com&gt;
</content>
</entry>
<entry>
<title>Remove various unused interrupt related code</title>
<updated>2017-04-07T00:42:18Z</updated>
<author>
<name>Tom Rini</name>
</author>
<published>2017-04-07T00:42:18Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=01abae4d04868dede60947867699bf096a1831ff'/>
<id>urn:sha1:01abae4d04868dede60947867699bf096a1831ff</id>
<content type='text'>
With d53ecad92f06 some unused interrupt related code was removed.
However all of these options are currently unused.  Rather than migrate
some of these options to Kconfig we just remove the code in question.

The only related code changes here are that in some cases we use
CONFIG_STACKSIZE in non-IRQ related context.  In these cases we rename
and move the value local to the code in question.

Fixes: d53ecad92f06 ("Merge branch 'master' of git://git.denx.de/u-boot-sunxi")
Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>nds32: Support relocation.</title>
<updated>2016-09-29T07:38:10Z</updated>
<author>
<name>rick</name>
</author>
<published>2016-04-14T06:32:27Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=d607f6fa99a67dd1b40c08ba21ca6f3aaff933ce'/>
<id>urn:sha1:d607f6fa99a67dd1b40c08ba21ca6f3aaff933ce</id>
<content type='text'>
Enable pie option for relocation.

Signed-off-by: rick &lt;rick@andestech.com&gt;
Cc: Andes &lt;uboot@andestech.com&gt;
</content>
</entry>
</feed>
