<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sys/dev/neta/if_mvneta.c, branch releng/12.2</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>Disable the auto negotiation if the port is set to fixed-link.</title>
<updated>2018-08-14T18:58:16+00:00</updated>
<author>
<name>Luiz Otavio O Souza</name>
<email>loos@FreeBSD.org</email>
</author>
<published>2018-08-14T18:58:16+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=e13a20dad7636a6953568929efdfd73338bf7373'/>
<id>e13a20dad7636a6953568929efdfd73338bf7373</id>
<content type='text'>
Tested on SG-3100 (ARMADA38X) and Espresso.bin (A37x0).  Fixes the network
on espresso.bin.

Sponsored by:	Rubicon Communications, LLC (Netgate)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Tested on SG-3100 (ARMADA38X) and Espresso.bin (A37x0).  Fixes the network
on espresso.bin.

Sponsored by:	Rubicon Communications, LLC (Netgate)
</pre>
</div>
</content>
</entry>
<entry>
<title>Make this compile if NO_SYSCTL_DESCR is defined.</title>
<updated>2017-09-28T19:57:46+00:00</updated>
<author>
<name>Nick Hibma</name>
<email>n_hibma@FreeBSD.org</email>
</author>
<published>2017-09-28T19:57:46+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=3bc4bd5edd3eed259639b233eecfb7e7ba6ab08e'/>
<id>3bc4bd5edd3eed259639b233eecfb7e7ba6ab08e</id>
<content type='text'>
Defining a variable with the description and then only use it in the
SYSCTL declaration led to an unused variable warning. In the SYSCTL the
passed value is discarded using __DESCR.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Defining a variable with the description and then only use it in the
SYSCTL declaration led to an unused variable warning. In the SYSCTL the
passed value is discarded using __DESCR.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix gcc compilation issues in the mvneta driver</title>
<updated>2017-09-25T02:06:51+00:00</updated>
<author>
<name>Marcin Wojtas</name>
<email>mw@FreeBSD.org</email>
</author>
<published>2017-09-25T02:06:51+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=40c2a6da0d84e840a212e3d01a17bfa846d0c13e'/>
<id>40c2a6da0d84e840a212e3d01a17bfa846d0c13e</id>
<content type='text'>
Compiling mvneta driver with gcc unveiled two issues, that
required fixing.

Reported by: andrew
Obtained from: Semihalf
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Compiling mvneta driver with gcc unveiled two issues, that
required fixing.

Reported by: andrew
Obtained from: Semihalf
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for Armada 3700 in the NETA driver</title>
<updated>2017-09-09T11:54:04+00:00</updated>
<author>
<name>Marcin Wojtas</name>
<email>mw@FreeBSD.org</email>
</author>
<published>2017-09-09T11:54:04+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=e314ac07f40470fcc0c7137e8f2f6ce20907b774'/>
<id>e314ac07f40470fcc0c7137e8f2f6ce20907b774</id>
<content type='text'>
This patch enables using NETA driver on Marvell Armada 3700 SoC
by introducing new compatible string, modifying clock source
obtaining and also excluding unnecessary parts.
The driver is added as a build option for arm64 platforms as well.

Submitted by: Patryk Duda &lt;pdk@semihalf.com&gt;
Obtained from: Semihalf
Sponsored by: Semihalf
Differential Revision: https://reviews.freebsd.org/D12258
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch enables using NETA driver on Marvell Armada 3700 SoC
by introducing new compatible string, modifying clock source
obtaining and also excluding unnecessary parts.
The driver is added as a build option for arm64 platforms as well.

Submitted by: Patryk Duda &lt;pdk@semihalf.com&gt;
Obtained from: Semihalf
Sponsored by: Semihalf
Differential Revision: https://reviews.freebsd.org/D12258
</pre>
</div>
</content>
</entry>
<entry>
<title>Store virtual address of buffer in mvneta_rx_ring</title>
<updated>2017-09-09T11:49:36+00:00</updated>
<author>
<name>Marcin Wojtas</name>
<email>mw@FreeBSD.org</email>
</author>
<published>2017-09-09T11:49:36+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=e7843f1dd6649eecf1689b28a048985cf8b7b11c'/>
<id>e7843f1dd6649eecf1689b28a048985cf8b7b11c</id>
<content type='text'>
Now the virtual address of received buffer is taken from a software ring.
Thanks to this, we can use the NETA driver on 64 bits architecture and
avoid 32-bit buf_cookie descriptor field limitation.

Submitted by: Patryk Duda &lt;pdk@semihalf.com&gt;
Obtained from: Semihalf
Sponsored by: Semihalf
Differential Revision: https://reviews.freebsd.org/D12257
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now the virtual address of received buffer is taken from a software ring.
Thanks to this, we can use the NETA driver on 64 bits architecture and
avoid 32-bit buf_cookie descriptor field limitation.

Submitted by: Patryk Duda &lt;pdk@semihalf.com&gt;
Obtained from: Semihalf
Sponsored by: Semihalf
Differential Revision: https://reviews.freebsd.org/D12257
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow the use of extended media types with if_mvneta, so it can report 2.5G</title>
<updated>2017-06-20T18:14:56+00:00</updated>
<author>
<name>Luiz Otavio O Souza</name>
<email>loos@FreeBSD.org</email>
</author>
<published>2017-06-20T18:14:56+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=db79a5f9f68189f7058bc439bd44a95135438878'/>
<id>db79a5f9f68189f7058bc439bd44a95135438878</id>
<content type='text'>
speeds properly.

While here remove a couple of stray white spaces.

Sponsored by:	Rubicon Communications, LLC (Netgate)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
speeds properly.

While here remove a couple of stray white spaces.

Sponsored by:	Rubicon Communications, LLC (Netgate)
</pre>
</div>
</content>
</entry>
<entry>
<title>Introduce Armada 38x/XP network controller support</title>
<updated>2017-06-13T18:46:29+00:00</updated>
<author>
<name>Zbigniew Bodek</name>
<email>zbb@FreeBSD.org</email>
</author>
<published>2017-06-13T18:46:29+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=a8d7fc4ac18dab14f3de19e42c90c59d8459e19b'/>
<id>a8d7fc4ac18dab14f3de19e42c90c59d8459e19b</id>
<content type='text'>
This patch contains a new driver for the network unit of Marvell
Armada 38x/XP SoCs, called NETA. This support was thoroughly tested
and optimised in terms of stability and performance. Additional
hardware features, like Buffer Management (BM) or Parser and Classifier
(PnC) will be progressively supported as needed.

Submitted by: Fabien Thomas &lt;fabien.thomas@stormshield.eu&gt;
	      Arnaud Ysmal &lt;arnaud.ysmal@stormshield.eu&gt;
	      Zbigniew Bodek &lt;zbb@semihalf.com&gt;
	      Michal Mazur &lt;mkm@semihalf.com&gt;
	      Bartosz Szczepanek &lt;bsz@semihalf.com&gt;
	      Marcin Wojtas &lt;mw@semihalf.com&gt;

Obtained from:	Semihalf
Sponsored by:	Stormshield (main development)
		Netgate (cleanup and upstreaming)
Differential revision: https://reviews.freebsd.org/D10706
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch contains a new driver for the network unit of Marvell
Armada 38x/XP SoCs, called NETA. This support was thoroughly tested
and optimised in terms of stability and performance. Additional
hardware features, like Buffer Management (BM) or Parser and Classifier
(PnC) will be progressively supported as needed.

Submitted by: Fabien Thomas &lt;fabien.thomas@stormshield.eu&gt;
	      Arnaud Ysmal &lt;arnaud.ysmal@stormshield.eu&gt;
	      Zbigniew Bodek &lt;zbb@semihalf.com&gt;
	      Michal Mazur &lt;mkm@semihalf.com&gt;
	      Bartosz Szczepanek &lt;bsz@semihalf.com&gt;
	      Marcin Wojtas &lt;mw@semihalf.com&gt;

Obtained from:	Semihalf
Sponsored by:	Stormshield (main development)
		Netgate (cleanup and upstreaming)
Differential revision: https://reviews.freebsd.org/D10706
</pre>
</div>
</content>
</entry>
</feed>
