<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sys/dev/extres, branch upstream/11.1.0</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>MFC r309537:</title>
<updated>2017-04-16T08:01:57+00:00</updated>
<author>
<name>Michal Meloun</name>
<email>mmel@FreeBSD.org</email>
</author>
<published>2017-04-16T08:01:57+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=93fbb63dfaec7f080e92d500e68bd7b40db18be5'/>
<id>93fbb63dfaec7f080e92d500e68bd7b40db18be5</id>
<content type='text'>
  Clock framework fixes:
   - The clk_test_freq() (aka CLK_SET_DRYRUN) doesn't change frequency,
     don't cache it result.
   - Fix busy condition for clk_set_freq().
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  Clock framework fixes:
   - The clk_test_freq() (aka CLK_SET_DRYRUN) doesn't change frequency,
     don't cache it result.
   - Fix busy condition for clk_set_freq().
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC r308298, r308440</title>
<updated>2016-12-09T21:00:16+00:00</updated>
<author>
<name>Emmanuel Vadot</name>
<email>manu@FreeBSD.org</email>
</author>
<published>2016-12-09T21:00:16+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=7f47c2053dd18159cab1d55fcf0de2561b4844d1'/>
<id>7f47c2053dd18159cab1d55fcf0de2561b4844d1</id>
<content type='text'>
r308298:
Add clk_set_assigned

assigned-clock-parents are DT properties used to configure
some default parent clocks on one node.

Reviewed by:	mmel

r308440:
Do not warn if the 'assigned-clock-parents' property does not exists.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
r308298:
Add clk_set_assigned

assigned-clock-parents are DT properties used to configure
some default parent clocks on one node.

Reviewed by:	mmel

r308440:
Do not warn if the 'assigned-clock-parents' property does not exists.
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC r307558:</title>
<updated>2016-11-05T04:40:58+00:00</updated>
<author>
<name>Michal Meloun</name>
<email>mmel@FreeBSD.org</email>
</author>
<published>2016-11-05T04:40:58+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=2843197d3ccaf108cf2fdc0fa024d9e2bcd4239d'/>
<id>2843197d3ccaf108cf2fdc0fa024d9e2bcd4239d</id>
<content type='text'>
  REGULATOR: Move functions for handling with regulator ranges to common file.
  They can be useful for other PMICs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  REGULATOR: Move functions for handling with regulator ranges to common file.
  They can be useful for other PMICs.
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC r302523,r302528:</title>
<updated>2016-11-05T04:17:32+00:00</updated>
<author>
<name>Michal Meloun</name>
<email>mmel@FreeBSD.org</email>
</author>
<published>2016-11-05T04:17:32+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=268971235b3b0a738602752716087d25fa1f3ef7'/>
<id>268971235b3b0a738602752716087d25fa1f3ef7</id>
<content type='text'>
  r302523:
    Add clk_get_by_ofw_node_index, which is like clk_get_by_ofw_index but
    operates on a specific OF node instead of the pass in device's OF node.
  r302528:
    EXTRES: Add OF node as argument to all &lt;foo&gt;_get_by_ofw_&lt;bar&gt;() functions.
    In some cases, the driver must handle given properties located in specific
    OF subnode. Instead of creating duplicate set of function, add 'node' as
    argument to existing functions, defaulting it to device OF node.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  r302523:
    Add clk_get_by_ofw_node_index, which is like clk_get_by_ofw_index but
    operates on a specific OF node instead of the pass in device's OF node.
  r302528:
    EXTRES: Add OF node as argument to all &lt;foo&gt;_get_by_ofw_&lt;bar&gt;() functions.
    In some cases, the driver must handle given properties located in specific
    OF subnode. Instead of creating duplicate set of function, add 'node' as
    argument to existing functions, defaulting it to device OF node.
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename gpiobus_map_pin() to gpiobus_acquire_pin(), to better reflect the</title>
<updated>2016-05-26T15:45:36+00:00</updated>
<author>
<name>Ian Lepore</name>
<email>ian@FreeBSD.org</email>
</author>
<published>2016-05-26T15:45:36+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=c45b84225021c61fedc3a4e1bdeb3f5b6abda748'/>
<id>c45b84225021c61fedc3a4e1bdeb3f5b6abda748</id>
<content type='text'>
fact that the caller is requesting exclusive use of the pin, and also to
better match the inverse operation which is named gpiobus_release_pin().
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fact that the caller is requesting exclusive use of the pin, and also to
better match the inverse operation which is named gpiobus_release_pin().
</pre>
</div>
</content>
</entry>
<entry>
<title>Use OF_prop_free instead of direct call to free(9)</title>
<updated>2016-05-14T04:59:36+00:00</updated>
<author>
<name>Oleksandr Tymoshenko</name>
<email>gonzo@FreeBSD.org</email>
</author>
<published>2016-05-14T04:59:36+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=f4eefe43b218cf1e7750bf2fa89ac601de61feb8'/>
<id>f4eefe43b218cf1e7750bf2fa89ac601de61feb8</id>
<content type='text'>
Reviewed by:	mmel@
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed by:	mmel@
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix a format string when uint64_t is not unsigned long long by casting</title>
<updated>2016-04-04T10:03:06+00:00</updated>
<author>
<name>Andrew Turner</name>
<email>andrew@FreeBSD.org</email>
</author>
<published>2016-04-04T10:03:06+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=670e854e4a0b5bfaf80ddc3120e7e0f383cb5f2b'/>
<id>670e854e4a0b5bfaf80ddc3120e7e0f383cb5f2b</id>
<content type='text'>
through uintmax_t.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
through uintmax_t.
</pre>
</div>
</content>
</entry>
<entry>
<title>Pass clkdev_if methods through to parent device by default.</title>
<updated>2016-03-28T11:51:35+00:00</updated>
<author>
<name>Jared McNeill</name>
<email>jmcneill@FreeBSD.org</email>
</author>
<published>2016-03-28T11:51:35+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=7a8917b25d10e1cc44abaa243f33a225862531cf'/>
<id>7a8917b25d10e1cc44abaa243f33a225862531cf</id>
<content type='text'>
Reviewed by:		mmel, adrian (mentor)
Approved by:		adrian (mentor)
Differential Revision:	https://reviews.freebsd.org/D5750
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed by:		mmel, adrian (mentor)
Approved by:		adrian (mentor)
Differential Revision:	https://reviews.freebsd.org/D5750
</pre>
</div>
</content>
</entry>
<entry>
<title>Do nothing if requested clk frequency is already correct.</title>
<updated>2016-03-27T23:19:20+00:00</updated>
<author>
<name>Alexander Kabaev</name>
<email>kan@FreeBSD.org</email>
</author>
<published>2016-03-27T23:19:20+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=19a8851f7b9e4a86c87f7d557292324bd487017a'/>
<id>19a8851f7b9e4a86c87f7d557292324bd487017a</id>
<content type='text'>
Reviewed by: mmel
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed by: mmel
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix support for fixed factor clocks.</title>
<updated>2016-03-23T19:26:53+00:00</updated>
<author>
<name>Jared McNeill</name>
<email>jmcneill@FreeBSD.org</email>
</author>
<published>2016-03-23T19:26:53+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=64f86dc4cb1a0d61aa41f21993621b5454b55026'/>
<id>64f86dc4cb1a0d61aa41f21993621b5454b55026</id>
<content type='text'>
 - Use a different device description for fixed and fixed factor clocks.
 - Fix a bug where the "clock-div" property was stored in the "mult" field
   of the clock definition.
 - Get the fixed factor parent clock by index instead of by name, as a
   clock-names property is not required to be present here.

Reviewed by:		mmel, adrian (mentor)
Approved by:		adrian (mentor)
Differential Revision:	https://reviews.freebsd.org/D5703
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 - Use a different device description for fixed and fixed factor clocks.
 - Fix a bug where the "clock-div" property was stored in the "mult" field
   of the clock definition.
 - Get the fixed factor parent clock by index instead of by name, as a
   clock-names property is not required to be present here.

Reviewed by:		mmel, adrian (mentor)
Approved by:		adrian (mentor)
Differential Revision:	https://reviews.freebsd.org/D5703
</pre>
</div>
</content>
</entry>
</feed>
