Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754899AbbDUNKZ (ORCPT ); Tue, 21 Apr 2015 09:10:25 -0400 Received: from canardo.mork.no ([148.122.252.1]:34501 "EHLO canardo.mork.no" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751842AbbDUNKU convert rfc822-to-8bit (ORCPT ); Tue, 21 Apr 2015 09:10:20 -0400 From: =?utf-8?Q?Bj=C3=B8rn_Mork?= To: Jan Kaisrlik Cc: sojkam1@fel.cvut.cz, tkonecny@retia.cz, netdev@vger.kernel.org, linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org, Jan Kaisrlik Subject: Re: [RFC PATCH 3/3] driver/net/usb: Add support for DSA to ax88772b Organization: m References: <1429622791-7195-1-git-send-email-kaisrja1@fel.cvut.cz> <1429622791-7195-4-git-send-email-kaisrja1@fel.cvut.cz> Date: Tue, 21 Apr 2015 15:10:09 +0200 In-Reply-To: <1429622791-7195-4-git-send-email-kaisrja1@fel.cvut.cz> (Jan Kaisrlik's message of "Tue, 21 Apr 2015 13:26:31 +0000") Message-ID: <87d22xocem.fsf@nemi.mork.no> User-Agent: Gnus/5.130011 (Ma Gnus v0.11) Emacs/24.4 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8BIT X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.3.9 (canardo.mork.no [IPv6:2001:4641::1]); Tue, 21 Apr 2015 15:10:15 +0200 (CEST) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 7659 Lines: 264 Jan Kaisrlik writes: > From: Jan Kaisrlik > > This patch adds a possibility to use the RMII interface of the ax88772b > instead of the Ethernet PHY which is used now. > > Binding DSA to a USB device is done via sysfs. > > --- > drivers/net/usb/asix.h | 7 ++ > drivers/net/usb/asix_devices.c | 258 ++++++++++++++++++++++++++++++++++++++++- > 2 files changed, 261 insertions(+), 4 deletions(-) > > diff --git a/drivers/net/usb/asix.h b/drivers/net/usb/asix.h > index 5d049d0..6b1a5f5 100644 > --- a/drivers/net/usb/asix.h > +++ b/drivers/net/usb/asix.h > @@ -174,6 +174,13 @@ struct asix_rx_fixup_info { > > struct asix_common_private { > struct asix_rx_fixup_info rx_fixup_info; > +#ifdef CONFIG_NET_DSA > + struct kobject kobj; > + struct mii_bus *mdio; > + int use_embphy; > + bool dsa_up; > + struct usbnet *dev; > +#endif > }; > > extern const struct driver_info ax88172a_info; > diff --git a/drivers/net/usb/asix_devices.c b/drivers/net/usb/asix_devices.c > index bf49792..57b3a34 100644 > --- a/drivers/net/usb/asix_devices.c > +++ b/drivers/net/usb/asix_devices.c > @@ -35,6 +35,88 @@ > > #define PHY_MODE_RTL8211CL 0x000C > > +#ifdef CONFIG_NET_DSA > + > +#define AX88772_RMII 0x02 > +#define AX88772_MAX_PORTS 0x20 > +#define MV88e6065_ID 0x0c89 > + > +#include > +#include > + > +#define to_asix_obj(x) container_of(x, struct asix_common_private, kobj) > +#define to_asix_attr(x) container_of(x, struct asix_attribute, attr) > + > +static int mii_asix_read(struct mii_bus *bus, int phy_id, int regnum) > +{ > + return asix_mdio_read(((struct usbnet *)bus->priv)->net, phy_id, regnum); > +} > + > +static int mii_asix_write(struct mii_bus *bus, int phy_id, int regnum, u16 val) > +{ > + asix_mdio_write(((struct usbnet *)bus->priv)->net, phy_id, regnum, val); > + return 0; > +} > + > +static int ax88772_init_mdio(struct usbnet *dev){ > + struct asix_common_private *priv = dev->driver_priv; > + int ret, i; > + > + priv->mdio = mdiobus_alloc(); > + if (!priv->mdio) { > + netdev_err(dev->net, "Could not allocate mdio bus\n"); > + return -ENOMEM; > + } > + > + priv->mdio->priv = (void *)dev; > + priv->mdio->read = &mii_asix_read; > + priv->mdio->write = &mii_asix_write; > + priv->mdio->name = "ax88772 mdio bus"; > + priv->mdio->parent = &dev->udev->dev; > + > + /* mii bus name is usb-- */ > + snprintf(priv->mdio->id, MII_BUS_ID_SIZE, "usb-%03d:%03d",dev->udev->bus->busnum, dev->udev->devnum); > + > + priv->mdio->irq = kzalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL); > + if (!priv->mdio->irq) { > + ret = -ENOMEM; > + goto free; > + } > + > + for (i = 0; i < PHY_MAX_ADDR; i++) > + priv->mdio->irq[i] = PHY_POLL; > + > + ret = mdiobus_register(priv->mdio); > + if (ret) { > + netdev_err(dev->net, "Could not register MDIO bus\n"); > + goto free_irq; > + } > + > + netdev_info(dev->net, "registered mdio bus %s\n", priv->mdio->id); > + return 0; > + > +free_irq: > + kfree(priv->mdio->irq); > +free: > + mdiobus_free(priv->mdio); > + return ret; > +} There is already identical code in drivers/net/usb/ax88172a.c. Any chance these ASIX devices can share some code, or does it all have to be duplicated for each new chip? > +// dsa_free(); TODO Probably not like that... > +static ssize_t usb_dsa_store(struct asix_common_private *priv, > + struct asix_attribute *attr, const char *buf, size_t count) > +{ > + ax88772_set_bind_dsa(priv); > + return count; > +} > + > +static ssize_t usb_dsa_show(struct asix_common_private *priv, > + struct asix_attribute *attr, char *buf) > +{ > + return scnprintf(buf, PAGE_SIZE, "usb_dsa_binding.\n"); > +} I'm not sure I understand this at all. What kind of userspace API are you trying to provide here? Maybe you could document these attributes Documentation/ABI/testing/ to make it more clear? > +static void driver_release(struct kobject *kobj) > +{ > + pr_debug("driver: '%s': %s\n", kobject_name(kobj), __func__); > +// kfree(drv_priv); TODO free > +} Ah, I guess you might have missed this section of Documentation/kobject.txt ?: One important point cannot be overstated: every kobject must have a release() method, and the kobject must persist (in a consistent state) until that method is called. If these constraints are not met, the code is flawed. Note that the kernel will warn you if you forget to provide a release() method. Do not try to get rid of this warning by providing an "empty" release function; you will be mocked mercilessly by the kobject maintainer if you attempt this. Better CC Greg KH on your next attempt to make sure you get the mocking you deserve :-) > +static ssize_t usb_dsa_attr_show(struct kobject *kobj, > + struct attribute *attr, > + char *buf) > +{ > + struct asix_attribute *attribute; > + struct asix_common_private *priv; > + > + attribute = to_asix_attr(attr); > + priv = to_asix_obj(kobj); > + > + if (!attribute->show) > + return -EINVAL; > + > + return attribute->show(priv, attribute, buf); > +} > +static ssize_t usb_dsa_attr_store(struct kobject *kobj, > + struct attribute *attr, > + const char *buf, size_t len) > +{ > + struct asix_attribute *attribute; > + struct asix_common_private *priv; > + > + attribute = to_asix_attr(attr); > + priv = to_asix_obj(kobj); > + > + if (!attribute->store) > + return -EINVAL; > + return attribute->store(priv, attribute, buf, len); > +} > + > +static struct asix_attribute asix_attribute = __ATTR(usb_dsa_bind, 0664, usb_dsa_show, usb_dsa_store); > +static struct attribute *asix_default_attrs[] = { > + &asix_attribute.attr, > + NULL, > +}; > +static const struct sysfs_ops dsa_bind_sysfs_ops = { > + .show = usb_dsa_attr_show, > + .store = usb_dsa_attr_store, > +}; > +static struct kobj_type dsa_bind_ktype = { > + .sysfs_ops = &dsa_bind_sysfs_ops, > + .release = driver_release, > + .default_attrs = asix_default_attrs, > +}; > +#endif > + > static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf) > { > int ret, embd_phy, i; > u8 buf[ETH_ALEN]; > u32 phyid; > +#ifdef CONFIG_NET_DSA > + struct asix_common_private *priv; > +#endif > > usbnet_get_endpoints(dev,intf); > > @@ -465,6 +688,25 @@ static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf) > return ret; > } > > + dev->driver_priv = kzalloc(sizeof(struct asix_common_private), GFP_KERNEL); Unconditional allocation. > + if (!dev->driver_priv) > + return -ENOMEM; > + > +#ifdef CONFIG_NET_DSA > + priv = dev->driver_priv; > + priv->dev = dev; > + priv->dsa_up = 0; > + priv->kobj.kset = kset_create_and_add("DSA_BIND", NULL, kobject_get(&dev->udev->dev.kobj)); > + if (!priv->kobj.kset){ > + ret = -ENOMEM; > + goto free; > + } > + > + ret = kobject_init_and_add(&priv->kobj, &dsa_bind_ktype, NULL, "dsa_bind"); > + if (ret) > + goto free_kobj; > +#endif I see that you reference the usb device here, but I don't see why. This is related to et network device, isn't it? What's wrong about simply using dev->net->sysfs_groups[0] instead? > +#ifdef CONFIG_NET_DSA > +free_kobj: > + kobject_put(&priv->kobj); > +free: > + kfree(priv); > + return ret; > +#endif Conditional kfree. Obfuscated by the fact that you have a conditionally defined *priv pointing to dev->driver_priv, but it doesn't change the fact that you leak on errors. Bjørn -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/