Date: Tue, 04 Dec 2007 11:39:00 -0500 From: Skip Ford <skip@menantico.com> To: =?unknown-8bit?Q?Micha=B3?= Januszewski <miketheroot@gmail.com> Cc: freebsd-current@freebsd.org Subject: Marvell Yukon 8039 (was: no subject) Message-ID: <20071204163900.GA2064@menantico.com> In-Reply-To: <c8429ce0712040514q71580a0x8927e79d0ba3e298@mail.gmail.com> References: <c8429ce0712040514q71580a0x8927e79d0ba3e298@mail.gmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
--huq684BweRXVnRxX Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Micha Januszewski wrote: > I've got one question about the new releases: will the > > Marvell Yukon 88E8039 Gigabit Ethernet be supported? That's odd timing. Did you happen to see kern/118401 I submitted yesterday? http://www.freebsd.org/cgi/query-pr.cgi?pr=118401&cat=kern You can apply the attached patch, included in the PR, rebuild a kernel, and it should be detected. I have no idea if it will be supported in 7.0-RELEASE. It could be if somebody gets to it in time. -- Skip --huq684BweRXVnRxX Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="if_msk.diff" Index: sys/dev/msk/if_msk.c =================================================================== RCS file: /os/cvs/ncvs/src/sys/dev/msk/if_msk.c,v retrieving revision 1.25 diff -u -r1.25 if_msk.c --- sys/dev/msk/if_msk.c 22 Nov 2007 02:44:58 -0000 1.25 +++ sys/dev/msk/if_msk.c 3 Dec 2007 17:54:33 -0000 @@ -193,6 +193,8 @@ "Marvell Yukon 88E8036 Gigabit Ethernet" }, { VENDORID_MARVELL, DEVICEID_MRVL_8038, "Marvell Yukon 88E8038 Gigabit Ethernet" }, + { VENDORID_MARVELL, DEVICEID_MRVL_8039, + "Marvell Yukon 88E8039 Gigabit Ethernet" }, { VENDORID_MARVELL, DEVICEID_MRVL_4361, "Marvell Yukon 88E8050 Gigabit Ethernet" }, { VENDORID_MARVELL, DEVICEID_MRVL_4360, Index: sys/dev/msk/if_mskreg.h =================================================================== RCS file: /os/cvs/ncvs/src/sys/dev/msk/if_mskreg.h,v retrieving revision 1.10 diff -u -r1.10 if_mskreg.h --- sys/dev/msk/if_mskreg.h 20 Nov 2007 07:47:32 -0000 1.10 +++ sys/dev/msk/if_mskreg.h 3 Dec 2007 17:54:33 -0000 @@ -130,6 +130,7 @@ #define DEVICEID_MRVL_8035 0x4350 #define DEVICEID_MRVL_8036 0x4351 #define DEVICEID_MRVL_8038 0x4352 +#define DEVICEID_MRVL_8039 0X4353 #define DEVICEID_MRVL_4360 0x4360 #define DEVICEID_MRVL_4361 0x4361 #define DEVICEID_MRVL_4362 0x4362 Index: share/man/man4/msk.4 =================================================================== RCS file: /os/cvs/ncvs/src/share/man/man4/msk.4,v retrieving revision 1.5 diff -u -r1.5 msk.4 --- share/man/man4/msk.4 20 Nov 2007 07:53:52 -0000 1.5 +++ share/man/man4/msk.4 3 Dec 2007 17:27:39 -0000 @@ -182,6 +182,8 @@ .It Marvell Yukon 88E8038 Gigabit Ethernet .It +Marvell Yukon 88E8039 Gigabit Ethernet +.It Marvell Yukon 88E8050 Gigabit Ethernet .It Marvell Yukon 88E8052 Gigabit Ethernet --huq684BweRXVnRxX--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20071204163900.GA2064>