<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm63xx/u-boot/include/reset.h, branch master</title>
<subtitle>Broadcom-s U-Boot</subtitle>
<id>https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/atom?h=master</id>
<link rel='self' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/'/>
<updated>2019-05-08T20:21:43Z</updated>
<entry>
<title>Merge branch 'master' of git://git.denx.de/u-boot-sunxi</title>
<updated>2019-05-08T20:21:43Z</updated>
<author>
<name>Tom Rini</name>
</author>
<published>2019-05-08T20:21:43Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=504bf790da08db9b4a443566cf6ef577f9c7996a'/>
<id>urn:sha1:504bf790da08db9b4a443566cf6ef577f9c7996a</id>
<content type='text'>
- H6 Beelink GS1 board (Clément)
- Olimex A64-Teres-I board (Jonas)
- sunxi build fix for CONFIG_CMD_PXE|DHCP (Ondrej)
- Change include order (Jagan)
- EPHY clock changes (Jagan)
- EMAC enablement on Cubietruck Plus, BPI-M3 (Chen-Yu Tsai)
</content>
</entry>
<entry>
<title>reset: Get the RESET by index without device</title>
<updated>2019-05-08T19:14:13Z</updated>
<author>
<name>Jagan Teki</name>
</author>
<published>2019-02-27T18:56:55Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=ea9dc35aab9fd9e87cbb73a3a63fcbea4d6378c3'/>
<id>urn:sha1:ea9dc35aab9fd9e87cbb73a3a63fcbea4d6378c3</id>
<content type='text'>
Getting a RESET by index with device is not straight forward
for some use-cases like handling clock operations for child
node in parent driver. So we need to process the child node
in parent probe via ofnode and process RESET operation for child
without udevice but with ofnode.

So add reset_get_by_index_nodev() and move the common code
in reset_get_by_index_tail() to use for reset_get_by_index()

Cc: Stephen Warren &lt;swarren@nvidia.com&gt;
Signed-off-by: Jagan Teki &lt;jagan@amarulasolutions.com&gt;
Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>reset: add polarity field into struct reset_ctl</title>
<updated>2019-04-23T21:57:24Z</updated>
<author>
<name>Shawn Guo</name>
</author>
<published>2019-03-20T07:32:38Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=f5ed7481e7665d2d15037fc8eb118b0a79b24019'/>
<id>urn:sha1:f5ed7481e7665d2d15037fc8eb118b0a79b24019</id>
<content type='text'>
Some reset controllers support different polarities for reset operation,
so let's add a polarity field into struct reset_ctl.

Signed-off-by: Shawn Guo &lt;shawn.guo@linaro.org&gt;
Acked-by: Joe Hershberger &lt;joe.hershberger@ni.com&gt;
</content>
</entry>
<entry>
<title>reset: Add reset valid</title>
<updated>2019-01-18T16:49:09Z</updated>
<author>
<name>Jagan Teki</name>
</author>
<published>2018-08-06T13:25:06Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=652ee2788fa8310f4a38798d974b116609f9ddbf'/>
<id>urn:sha1:652ee2788fa8310f4a38798d974b116609f9ddbf</id>
<content type='text'>
Add reset_valid to check whether given reset is valid
or not.

Cc: Simon Glass &lt;sjg@chromium.org&gt;
Signed-off-by: Jagan Teki &lt;jagan@amarulasolutions.com&gt;
</content>
</entry>
<entry>
<title>reset: Extend reset control with an optional data field</title>
<updated>2018-09-11T12:32:55Z</updated>
<author>
<name>Andreas Dannenberg</name>
</author>
<published>2018-08-27T10:27:40Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=c72f9b707a3816bcb978c25e3f14ccc83906259b'/>
<id>urn:sha1:c72f9b707a3816bcb978c25e3f14ccc83906259b</id>
<content type='text'>
Some systems require more than a single ID to identify and configure any
reset provider. For those scenarios add an optional data field to the
reset control structure.

Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;
Signed-off-by: Andreas Dannenberg &lt;dannenberg@ti.com&gt;
Signed-off-by: Lokesh Vutla &lt;lokeshvutla@ti.com&gt;
</content>
</entry>
<entry>
<title>dm: reset: Update uclass to allow querying reset status</title>
<updated>2018-09-11T12:32:55Z</updated>
<author>
<name>Andreas Dannenberg</name>
</author>
<published>2018-08-27T10:27:39Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=e7012e6e1f9e1c16f093d71bd53b34a6467f07bc'/>
<id>urn:sha1:e7012e6e1f9e1c16f093d71bd53b34a6467f07bc</id>
<content type='text'>
Add a reset operations function pointer to support querying the current
status of a reset control.

Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;
Signed-off-by: Andreas Dannenberg &lt;dannenberg@ti.com&gt;
Signed-off-by: Lokesh Vutla &lt;lokeshvutla@ti.com&gt;
</content>
</entry>
<entry>
<title>include: reset: Change to use CONFIG_IS_ENABLED(DM_RESET)</title>
<updated>2018-07-09T19:25:45Z</updated>
<author>
<name>Ley Foon Tan</name>
</author>
<published>2018-06-14T10:45:20Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=d99894dd3a713ea6226ac39a7e332b55cf8aca49'/>
<id>urn:sha1:d99894dd3a713ea6226ac39a7e332b55cf8aca49</id>
<content type='text'>
Change to use CONFIG_IS_ENABLED(DM_RESET), so this can work in SPL
build (CONFIG_SPL_DM_RESET) and U-boot build (CONFIG_DM_RESET).

Signed-off-by: Ley Foon Tan &lt;ley.foon.tan@intel.com&gt;
Reviewed-by: Simon Glass &lt;sjg@chromium.org&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-03.infra.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>reset: fix bulk API when DM_RESET is disabled</title>
<updated>2018-04-17T21:45:08Z</updated>
<author>
<name>Neil Armstrong</name>
</author>
<published>2018-04-12T08:03:19Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=1dd181ff2b3009405d12ad0b3782176490da2446'/>
<id>urn:sha1:1dd181ff2b3009405d12ad0b3782176490da2446</id>
<content type='text'>
In the commit "reset: Add get/assert/deassert/release for bulk of reset signals"
the disabled reset_release_bulk() and reset_get_bulk() used the wrong
struct clk_bulk instead of struct reset_ctl_bulk.

Fixes: 0c28233903b5 ("reset: Add get/assert/deassert/release for bulk of reset signals")
Reported-by: Jean-Jacques Hiblot &lt;jjhiblot@ti.com&gt;
Signed-off-by: Neil Armstrong &lt;narmstrong@baylibre.com&gt;
Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>reset: Add get/assert/deassert/release for bulk of reset signals</title>
<updated>2018-04-10T15:52:16Z</updated>
<author>
<name>Neil Armstrong</name>
</author>
<published>2018-04-03T09:40:50Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=0c28233903b5af9a7f41b3200993cfa197b35719'/>
<id>urn:sha1:0c28233903b5af9a7f41b3200993cfa197b35719</id>
<content type='text'>
This patch adds a "bulk" API to the reset API in order to get/deassert/
assert/release a group of reset signals associated with a device.

This bulk API will avoid adding a copy of the same code to manage
a group of reset signals in drivers.

Signed-off-by: Neil Armstrong &lt;narmstrong@baylibre.com&gt;
Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
</feed>
