<feed xmlns='http://www.w3.org/2005/Atom'>
<title>user/sven/linux.git/include/linux/fmc.h, branch v4.14.136</title>
<subtitle>Linux Kernel
</subtitle>
<id>https://git.stealer.net/cgit.cgi/user/sven/linux.git/atom?h=v4.14.136</id>
<link rel='self' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/atom?h=v4.14.136'/>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/'/>
<updated>2017-08-28T14:24:22Z</updated>
<entry>
<title>drivers/fmc: carrier can program FPGA on registration</title>
<updated>2017-08-28T14:24:22Z</updated>
<author>
<name>Federico Vaga</name>
<email>federico.vaga@cern.ch</email>
</author>
<published>2017-07-18T06:33:24Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=9c0dda14951e9ed30b6f04e14bf64a3c69686c5b'/>
<id>urn:sha1:9c0dda14951e9ed30b6f04e14bf64a3c69686c5b</id>
<content type='text'>
The initial FPGA may require programming before it is useful.

Signed-off-by: Federico Vaga &lt;federico.vaga@cern.ch&gt;
Tested-by: Pat Riehecky &lt;riehecky@fnal.gov&gt;
Acked-by: Alessandro Rubini &lt;rubini@gnudd.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>drivers/fmc: change registration prototype</title>
<updated>2017-08-28T14:24:22Z</updated>
<author>
<name>Federico Vaga</name>
<email>federico.vaga@cern.ch</email>
</author>
<published>2017-07-18T06:33:13Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=15b1b0f0d87e34a87172d9b83bd260543a991c2e'/>
<id>urn:sha1:15b1b0f0d87e34a87172d9b83bd260543a991c2e</id>
<content type='text'>
Permit use of either fmc_device_register_n or fmc_device_register_n_gw
depending on the type of device in use.

Signed-off-by: Federico Vaga &lt;federico.vaga@cern.ch&gt;
Tested-by: Pat Riehecky &lt;riehecky@fnal.gov&gt;
Acked-by: Alessandro Rubini &lt;rubini@gnudd.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>drivers/fmc: The only way to dump the SDB is from debugfs</title>
<updated>2017-08-28T14:24:21Z</updated>
<author>
<name>Federico Vaga</name>
<email>federico.vaga@cern.ch</email>
</author>
<published>2017-07-18T06:33:03Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=2071a3e94abd34d65bd40f1ff845f9cea300dfa6'/>
<id>urn:sha1:2071a3e94abd34d65bd40f1ff845f9cea300dfa6</id>
<content type='text'>
Driver should not call fmc_sdb_dump() anymore. (actually they can but the
operation is not supported, so it will print an error message)

Signed-off-by: Federico Vaga &lt;federico.vaga@cern.ch&gt;
Tested-by: Pat Riehecky &lt;riehecky@fnal.gov&gt;
Acked-by: Alessandro Rubini &lt;rubini@gnudd.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>drivers/fmc: hide fmc operations behind helpers</title>
<updated>2017-08-28T14:24:21Z</updated>
<author>
<name>Federico Vaga</name>
<email>federico.vaga@cern.ch</email>
</author>
<published>2017-07-18T06:32:53Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=9f757f415210a7c85e2784e4a1733ea78b2e4e88'/>
<id>urn:sha1:9f757f415210a7c85e2784e4a1733ea78b2e4e88</id>
<content type='text'>
This gave us more freedom to change/add/remove operations without
recompiling all device driver.

Typically, Carrier board implement the fmc operations, so they will not
use these helpers.

Signed-off-by: Federico Vaga &lt;federico.vaga@cern.ch&gt;
Tested-by: Pat Riehecky &lt;riehecky@fnal.gov&gt;
Acked-by: Alessandro Rubini &lt;rubini@gnudd.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>fmc: avoid readl/writel namespace conflict</title>
<updated>2013-06-20T03:30:32Z</updated>
<author>
<name>Arnd Bergmann</name>
<email>arnd@arndb.de</email>
</author>
<published>2013-06-19T10:49:30Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=c2955da0e101c3432ae21945e5d77786adf1f094'/>
<id>urn:sha1:c2955da0e101c3432ae21945e5d77786adf1f094</id>
<content type='text'>
The use of the 'readl' and 'writel' identifiers here causes build errors on
architectures where those are macros. This renames the fields to read32/write32
to avoid the problem.

Reported-by: kbuild test robot &lt;fengguang.wu@intel.com&gt;
Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;
Acked-by: Alessandro Rubini &lt;rubini@gnudd.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>FMC: add needed headers</title>
<updated>2013-06-17T23:38:57Z</updated>
<author>
<name>Alessandro Rubini</name>
<email>rubini@gnudd.com</email>
</author>
<published>2013-06-12T07:13:36Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=e34fae7841b12d77f2621bd28fd41929879ef951'/>
<id>urn:sha1:e34fae7841b12d77f2621bd28fd41929879ef951</id>
<content type='text'>
This set of headers comes from commit ab23167f (current master of the
project on ohwr.org). They define the basic data structures for FMC
and its SDB support.

Signed-off-by: Alessandro Rubini &lt;rubini@gnudd.com&gt;
Acked-by: Juan David Gonzalez Cobas &lt;dcobas@cern.ch&gt;
Acked-by: Emilio G. Cota &lt;cota@braap.org&gt;
Acked-by: Samuel Iglesias Gonsalvez &lt;siglesias@igalia.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
</feed>
