<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm63xx/u-boot/board/armltd/integrator, 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>2018-11-26T05:57:31Z</updated>
<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>arm: remove prototype for get_timer_masked</title>
<updated>2018-10-10T17:35:09Z</updated>
<author>
<name>Patrick Delaunay</name>
</author>
<published>2018-10-05T09:33:52Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=6180ea7e663893cb7330219367252cba471bf225'/>
<id>urn:sha1:6180ea7e663893cb7330219367252cba471bf225</id>
<content type='text'>
The interruption support had be removed for ARM architecture and
the function get_timer_masked() is no more used except in some
the timer.c files.

This patch clean each timer.c which implement this function and
remove the associated prototype in u-boot-arm.h

For timer.c, I don't verify if the weak version of get_timer
(in lib/time.c) can be used

Signed-off-by: Patrick Delaunay &lt;patrick.delaunay@st.com&gt;
</content>
</entry>
<entry>
<title>arm: remove prototype for udelay_masked</title>
<updated>2018-10-10T17:35:09Z</updated>
<author>
<name>Patrick Delaunay</name>
</author>
<published>2018-10-05T09:33:51Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=aa33fe86954e342116648a702d34bb0456bdc4a7'/>
<id>urn:sha1:aa33fe86954e342116648a702d34bb0456bdc4a7</id>
<content type='text'>
The interruption support had be removed for ARM architecture and
the function udelay_masked() is no more used except in some timer.c
files  and have the same content than udelay() or __udelay().

This patch update each timer.c implementing this function and
remove the associated prototype in u-boot-arm.h.

Signed-off-by: Patrick Delaunay &lt;patrick.delaunay@st.com&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>env: Rename setenv() to env_set()</title>
<updated>2017-08-16T12:22:18Z</updated>
<author>
<name>Simon Glass</name>
</author>
<published>2017-08-03T18:22:09Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=382bee57f19b4454e2015bc19a010bc2d0ab9337'/>
<id>urn:sha1:382bee57f19b4454e2015bc19a010bc2d0ab9337</id>
<content type='text'>
We are now using an env_ prefix for environment functions. Rename setenv()
for consistency. Also add function comments in common.h.

Suggested-by: Wolfgang Denk &lt;wd@denx.de&gt;
Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>arm: Add explicit include of &lt;asm/mach-types.h&gt;</title>
<updated>2017-06-05T15:02:36Z</updated>
<author>
<name>Simon Glass</name>
</author>
<published>2017-06-01T01:47:48Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=c62db35d52c6ba5f31ac36e690c58ec54b273298'/>
<id>urn:sha1:c62db35d52c6ba5f31ac36e690c58ec54b273298</id>
<content type='text'>
Rather than relying on common.h to provide this include, which is going
away at some point, include it explicitly in each file.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>dm: Use dm.h header when driver mode is used</title>
<updated>2017-06-01T12:57:52Z</updated>
<author>
<name>Simon Glass</name>
</author>
<published>2017-05-17T23:18:03Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=9d922450aa9944ecf8c249c892078cda80f40e02'/>
<id>urn:sha1:9d922450aa9944ecf8c249c892078cda80f40e02</id>
<content type='text'>
This header includes things that are needed to make driver build. Adjust
existing users to include that always, even if other dm/ includes are
present

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>integrator: switch to DM serial port</title>
<updated>2015-08-13T00:47:49Z</updated>
<author>
<name>Linus Walleij</name>
</author>
<published>2015-07-27T09:22:48Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=3f394e70f0cc31a5d63d3650fd4f48e450ea16cd'/>
<id>urn:sha1:3f394e70f0cc31a5d63d3650fd4f48e450ea16cd</id>
<content type='text'>
This switches the Integrator boards over to using the device model
for its serial ports.

Cc: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Signed-off-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;
</content>
</entry>
<entry>
<title>integrator: stop zeroing the gd flags</title>
<updated>2015-04-23T12:52:27Z</updated>
<author>
<name>Linus Walleij</name>
</author>
<published>2015-04-21T13:35:59Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=ab93bf063bad1f82ccc727c55b8e2133a97c81f1'/>
<id>urn:sha1:ab93bf063bad1f82ccc727c55b8e2133a97c81f1</id>
<content type='text'>
This assignment conflicts with code that add flags with
gd-&gt;flags |= FOO prior to the execution of this function.
Seems like a historical artifact and creates bugs with
early alloc().

Cc: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Signed-off-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;
Acked-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>ARM: integrator: move board select into mach-integrator/Kconfig</title>
<updated>2015-04-23T12:52:27Z</updated>
<author>
<name>Masahiro Yamada</name>
</author>
<published>2015-04-21T12:59:36Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=5cbbd9bd0a5d496dee2b5592bb0c4cdac16bac80'/>
<id>urn:sha1:5cbbd9bd0a5d496dee2b5592bb0c4cdac16bac80</id>
<content type='text'>
The board/SoC select menu in arch/arm/Kconfig is still cluttered.
Add ARCH_INTEGRATOR into arch/arm/Kconfig and move the board select
under arch/arm/mach-integrator.

Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Cc: Linus Walleij &lt;linus.walleij@linaro.org&gt;
</content>
</entry>
</feed>
