From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wolfgang Grandegger Subject: Re: [PATCH] socketcan: add a driver for FlexCAN controllers. Date: Fri, 18 Jun 2010 12:33:41 +0200 Message-ID: <4C1B4B85.3010905@grandegger.com> References: <20100617105201.GA2015@bluebox.local> <4C1B4098.3090800@grandegger.com> <4C1B4796.3060506@pengutronix.de> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Cc: socketcan-core-0fE9KPoRgkgATYTw5x5z8w@public.gmane.org, netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Marc Kleine-Budde Return-path: In-Reply-To: <4C1B4796.3060506-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: socketcan-core-bounces-0fE9KPoRgkgATYTw5x5z8w@public.gmane.org Errors-To: socketcan-core-bounces-0fE9KPoRgkgATYTw5x5z8w@public.gmane.org List-Id: netdev.vger.kernel.org On 06/18/2010 12:16 PM, Marc Kleine-Budde wrote: > Wolfgang Grandegger wrote: >> Hi Hans-J=FCrgen, >> >> On 06/17/2010 12:52 PM, Hans J. Koch wrote: >>> This adds a driver for FlexCAN based CAN controllers, >>> e.g. found in Freescale i.MX35 SoCs. >>> >>> The original version of this driver was posted by Sascha Hauer in July = 2009: >>> http://kerneltrap.org/mailarchive/linux-netdev/2009/7/29/6251621 >>> >>> I took this version, added NAPI support, and fixed some problems found >>> during testing. Well, here is the result. Please review. >> >> I briefly browsed the patch and various bits and pieces are missing or >> not correctly implemented. Marc already pointed out a few of them: >> >> - I do not find can_put/get_echo_skb functions in the code. How is >> IFF_ECHO supposed to work? > = > the driver uses hardware loopback OK, then dev =3D alloc_candev(sizeof(struct flexcan_priv), 0); should be used (and TX_ECHO_SKB_MAX removed) in Hans-J=FCrgens driver. > = >> - Support for CAN_CTRLMODE_BERR_REPORTING and do_get_berr_counter() >> seems to be missing. >> >> - Make use of alloc_can_skb() and alloc_can_err_skb(). > = > the last two points are already addressed in my version of the driver. I do not see support for CAN_CTRLMODE_BERR_REPORTING in your driver (which has nothing to do with do_get_berr_counter). Wolfgang.