<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/drivers/clk, branch v2020.10</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<entry>
<title>clk: mt7622: add needed clocks for ssusb-node</title>
<updated>2020-08-24T18:11:31+00:00</updated>
<author>
<name>Frank Wunderlich</name>
<email>frank-w@public-files.de</email>
</author>
<published>2020-08-20T14:37:55+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=9f25aa13ea2f106885ea52a1039b9c6e7a677a35'/>
<id>9f25aa13ea2f106885ea52a1039b9c6e7a677a35</id>
<content type='text'>
MT7622 needs additional clock definitions to work properly

Signed-off-by: Frank Wunderlich &lt;frank-w@public-files.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
MT7622 needs additional clock definitions to work properly

Signed-off-by: Frank Wunderlich &lt;frank-w@public-files.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>reset: drop unnecessary comment for pciesys</title>
<updated>2020-08-24T18:11:31+00:00</updated>
<author>
<name>Frank Wunderlich</name>
<email>frank-w@public-files.de</email>
</author>
<published>2020-08-20T14:37:53+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a300d696caee9e97da5a0b835451d27c98e07f8f'/>
<id>a300d696caee9e97da5a0b835451d27c98e07f8f</id>
<content type='text'>
after review from sam this comment should be removed

Signed-off-by: Frank Wunderlich &lt;frank-w@public-files.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
after review from sam this comment should be removed

Signed-off-by: Frank Wunderlich &lt;frank-w@public-files.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge tag 'u-boot-clk-24Aug2020' of https://gitlab.denx.de/u-boot/custodians/u-boot-clk</title>
<updated>2020-08-24T13:06:02+00:00</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2020-08-24T13:06:02+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=1aa3966173fe92fa3c46638ee8eb8b8491f521d6'/>
<id>1aa3966173fe92fa3c46638ee8eb8b8491f521d6</id>
<content type='text'>
- Add CCF clocks definitions for iMX6Q enet (ETH)
- Several fixes for CCF framework - the most notable is the one, which
  adds get_rate helper to clk-mux.c
- Improvements for clk command - better visibility and alignment.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Add CCF clocks definitions for iMX6Q enet (ETH)
- Several fixes for CCF framework - the most notable is the one, which
  adds get_rate helper to clk-mux.c
- Improvements for clk command - better visibility and alignment.
</pre>
</div>
</content>
</entry>
<entry>
<title>clk: ccf: Add missing #include &lt;dm/uclass.h&gt; to clk-mux.c</title>
<updated>2020-08-24T09:36:34+00:00</updated>
<author>
<name>Lukasz Majewski</name>
<email>lukma@denx.de</email>
</author>
<published>2020-08-24T09:12:18+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=ebd3f1f0d032cc35dfb8d03da7f7ade6e9a51aef'/>
<id>ebd3f1f0d032cc35dfb8d03da7f7ade6e9a51aef</id>
<content type='text'>
After adding custom get_rate helper function it was necessary to include
&lt;dm/uclass.h&gt; to avoid warnings about missing uclass_get_device_by_name.

Signed-off-by: Lukasz Majewski &lt;lukma@denx.de&gt;
Series-to: u-boot
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
After adding custom get_rate helper function it was necessary to include
&lt;dm/uclass.h&gt; to avoid warnings about missing uclass_get_device_by_name.

Signed-off-by: Lukasz Majewski &lt;lukma@denx.de&gt;
Series-to: u-boot
</pre>
</div>
</content>
</entry>
<entry>
<title>clk: ccf: mux: change the get_rate helper</title>
<updated>2020-08-24T09:03:26+00:00</updated>
<author>
<name>Dario Binacchi</name>
<email>dariobin@libero.it</email>
</author>
<published>2020-06-03T13:36:25+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=12d152620d9de9ea966e1136b7f48f641c981bac'/>
<id>12d152620d9de9ea966e1136b7f48f641c981bac</id>
<content type='text'>
The previous version of the get_rate helper does not work if the mux
clock parent is changed after the probe. This error has not been
detected because this condition has not been tested. The error occurs
because the set_parent helper does not change the parent of the clock
device but only the clock selection register. Since changing the parent
of a probed device can be tricky, the new version of the get_rate helper
provides the rate of the selected clock and not that of the parent.

Signed-off-by: Dario Binacchi &lt;dariobin@libero.it&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The previous version of the get_rate helper does not work if the mux
clock parent is changed after the probe. This error has not been
detected because this condition has not been tested. The error occurs
because the set_parent helper does not change the parent of the clock
device but only the clock selection register. Since changing the parent
of a probed device can be tricky, the new version of the get_rate helper
provides the rate of the selected clock and not that of the parent.

Signed-off-by: Dario Binacchi &lt;dariobin@libero.it&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>clk: ccf: mux: fix access to the sandbox register</title>
<updated>2020-08-24T09:03:26+00:00</updated>
<author>
<name>Dario Binacchi</name>
<email>dariobin@libero.it</email>
</author>
<published>2020-05-02T15:58:33+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e3b5d74c778a8782f763412679ca4c3cb2d496c3'/>
<id>e3b5d74c778a8782f763412679ca4c3cb2d496c3</id>
<content type='text'>
The tests developed for the mux clock are run on the sandbox. They don't
call the clk_mux_set_parent routine and therefore they do not detect
this error.

Signed-off-by: Dario Binacchi &lt;dariobin@libero.it&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The tests developed for the mux clock are run on the sandbox. They don't
call the clk_mux_set_parent routine and therefore they do not detect
this error.

Signed-off-by: Dario Binacchi &lt;dariobin@libero.it&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>clk: ccf: mux: fix typo</title>
<updated>2020-08-24T09:03:26+00:00</updated>
<author>
<name>Dario Binacchi</name>
<email>dariobin@libero.it</email>
</author>
<published>2020-05-02T15:58:32+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=40559d277481a47abc8e42f287fd67a19e9592d9'/>
<id>40559d277481a47abc8e42f287fd67a19e9592d9</id>
<content type='text'>
Close the opening bracket.

Signed-off-by: Dario Binacchi &lt;dariobin@libero.it&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Close the opening bracket.

Signed-off-by: Dario Binacchi &lt;dariobin@libero.it&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>clk: ccf: mux: change include order</title>
<updated>2020-08-24T09:03:26+00:00</updated>
<author>
<name>Dario Binacchi</name>
<email>dariobin@libero.it</email>
</author>
<published>2020-05-02T15:58:31+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=76eaa2d0ed655da19fc1ea00cab054e19be33ecc'/>
<id>76eaa2d0ed655da19fc1ea00cab054e19be33ecc</id>
<content type='text'>
Apply u-boot coding style on include files order.

Signed-off-by: Dario Binacchi &lt;dariobin@libero.it&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Apply u-boot coding style on include files order.

Signed-off-by: Dario Binacchi &lt;dariobin@libero.it&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>clk: fix the console output of clk_register</title>
<updated>2020-08-24T09:03:26+00:00</updated>
<author>
<name>Dario Binacchi</name>
<email>dariobin@libero.it</email>
</author>
<published>2020-05-02T15:38:11+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=7b0830d41f9e0350207ae3f5137ad8c50731374b'/>
<id>7b0830d41f9e0350207ae3f5137ad8c50731374b</id>
<content type='text'>
The parent-&gt;name variable can be used only in case the
uclass_get_device_by_name routine returns successfully.

Signed-off-by: Dario Binacchi &lt;dariobin@libero.it&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The parent-&gt;name variable can be used only in case the
uclass_get_device_by_name routine returns successfully.

Signed-off-by: Dario Binacchi &lt;dariobin@libero.it&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>clk: set flags in the ccf registration routines</title>
<updated>2020-08-24T09:03:26+00:00</updated>
<author>
<name>Dario Binacchi</name>
<email>dariobin@libero.it</email>
</author>
<published>2020-04-13T12:36:27+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=16bdc85b488dd2f9463a71d6aa09bdf5ea9a9978'/>
<id>16bdc85b488dd2f9463a71d6aa09bdf5ea9a9978</id>
<content type='text'>
The top-level framework flags are passed as parameter to the common
clock framework (ccf) registration routines without being used.
Checks of the flags setting added by the patch have been added in the
ccf test.

Signed-off-by: Dario Binacchi &lt;dariobin@libero.it&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The top-level framework flags are passed as parameter to the common
clock framework (ccf) registration routines without being used.
Checks of the flags setting added by the patch have been added in the
ccf test.

Signed-off-by: Dario Binacchi &lt;dariobin@libero.it&gt;
</pre>
</div>
</content>
</entry>
</feed>
