Re: [PATCH v5 1/5] usb: Add support for Intel LJCA device

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Greq,

Thanks for the review.
On Mon, Mar 13, 2023 at 07:56:50AM +0100, Greg Kroah-Hartman wrote:
> On Mon, Mar 13, 2023 at 03:04:31AM +0800, Ye Xiang wrote:
> > This patch implements the USB part of Intel USB-I2C/GPIO/SPI adapter
> > device named "La Jolla Cove Adapter" (LJCA).
> > 
> > The communication between the various LJCA module drivers and the
> > hardware will be muxed/demuxed by this driver. The sub-module of
> > LJCA can use ljca_transfer() to issue a transfer between host
> > and hardware.
> 
> So you have 2 different things happening in this driver.  One is the USB
> interaction and control and stuff, and one is the creation of an api
> that is to be used by other parts of the kernel.
> 
> Can you split this up into 2 different commits, one for the api, and one
> for the USB stuff?  I think you will find that the API is going to need
> a bunch of work, as it's not "normal" for what the kernel is expecting
> to have.
Thanks. I will split this into to commits on v6.
> 
> Some other review comments below:
> 
> > +struct ljca_event_cb_entry {
> > +	ljca_event_cb_t notify;
> > +	void *context;
> 
> Why a void *?
We use `void *` here because we don't know the data type of context on
this driver.
The `context` here is the first parameter of `notify` callback. And the
`notify` callback is registered by sub-modules. So it represents the
execution context of whom registered this callback and the type of it is
determined by who registered the callback.
> 
> > +};
> > +
> > +struct ljca_dev {
> > +	struct usb_device *udev;
> > +	struct usb_interface *intf;
> 
> If you have the interface, you can get the usb device.  Why store both?
okay, I can just store intf here. When udev are needed when submitting a urb,
`interface_to_usbdev` can be used to get the udev.
> 
> > +	u8 in_ep; /* the address of the bulk in endpoint */
> > +	u8 out_ep; /* the address of the bulk out endpoint */
> > +
> > +	/* the urb/buffer for read */
> > +	struct urb *in_urb;
> > +	unsigned char *ibuf;
> > +	size_t ibuf_len;
> > +
> > +	bool started;
> 
> You can't just use a boolean as a "flag" without any locking, that is
> not going to work, sorry.
ok, I will use a mutex to protect it.
> 
> > +	struct list_head stubs_list;
> > +
> > +	/* to wait for an ongoing write ack */
> > +	wait_queue_head_t ack_wq;
> > +
> > +	struct mfd_cell *cells;
> > +	int cell_count;
> > +	/* mutex to protect package transfer with LJCA device */
> > +	struct mutex mutex;
> 
> Why is this not protecting "started" as well as the other fields in this
> structure?
Ok, will use it to protect "started", and other fields if needed.
> 
> > +};
> > +
> > +struct ljca {
> > +	u8 type;
> > +	struct ljca_dev *dev;
> > +};
> > +
> > +struct ljca_stub_packet {
> > +	unsigned int *ibuf_len;
> > +	u8 *ibuf;
> > +};
> > +
> > +struct ljca_stub {
> > +	struct list_head list;
> > +	struct usb_interface *intf;
> > +	struct ljca_stub_packet ipacket;
> > +	u8 type;
> > +
> > +	/* for identify ack */
> > +	bool acked;
> > +	int cur_cmd;
> > +
> > +	struct ljca_event_cb_entry event_entry;
> > +	/* lock to protect event_entry */
> > +	spinlock_t event_cb_lock;
> > +
> > +	struct ljca ljca;
> > +	unsigned long priv[];
> 
> What is "priv" for?  Why is it unsigned long and not a real type?
The priv type is different for each stub. So it can be several types
and we use unsigned long type instead.

> 
> > +};
> > +
> > +static inline void *ljca_priv(struct ljca_stub *stub)
> > +{
> > +	return stub->priv;
> 
> Why is this a void *?
return void here can save one type casting when using
`priv = ljca_priv(stub);`

> 
> 
> > +}
> > +
> > +static bool ljca_validate(struct ljca_msg *header, u32 data_len)
> > +{
> > +	return header->len + sizeof(*header) == data_len;
> > +}
> > +
> > +static struct ljca_stub *ljca_stub_alloc(struct ljca_dev *dev, u8 type, int priv_size)
> > +{
> > +	struct ljca_stub *stub;
> > +
> > +	stub = kzalloc(struct_size(stub, priv, priv_size), GFP_KERNEL);
> > +	if (!stub)
> > +		return ERR_PTR(-ENOMEM);
> > +
> > +	stub->type = type;
> > +	stub->intf = dev->intf;
> > +	stub->ljca.dev = dev;
> 
> You are saving a reference to a reference counted device, yet never
> grabbing the reference?  That is ripe for disaster.
ok, will use usb_get_intf to increment reference count.
> 
> > +	stub->ljca.type = stub->type;
> > +	spin_lock_init(&stub->event_cb_lock);
> > +	list_add_tail(&stub->list, &dev->stubs_list);
> 
> Where is the reference counting on this new structure that you just
> created?  Who controls the lifespan of it?
We didn't use reference counting for this `struct ljca_stub`
structure. The stubs will be destroyed in ljca_stub_cleanup. So The life span
of stubs is from create to ljca_disconnect->ljca_stub_cleanup.
> 
> > +	return stub;
> > +}
> > +
> > +static struct ljca_stub *ljca_stub_find(struct ljca_dev *dev, u8 type)
> > +{
> > +	struct ljca_stub *stub;
> > +
> > +	list_for_each_entry(stub, &dev->stubs_list, list) {
> > +		if (stub->type == type)
> > +			return stub;
> > +	}
> > +
> > +	dev_err(&dev->intf->dev, "USB stub not found, type:%d\n", type);
> > +
> > +	return ERR_PTR(-ENODEV);
> > +}
> > +
> > +static void ljca_stub_notify(struct ljca_stub *stub, u8 cmd, const void *evt_data, int len)
> > +{
> > +	unsigned long flags;
> > +
> > +	spin_lock_irqsave(&stub->event_cb_lock, flags);
> > +	if (stub->event_entry.notify && stub->event_entry.context)
> > +		stub->event_entry.notify(stub->event_entry.context, cmd, evt_data, len);
> > +	spin_unlock_irqrestore(&stub->event_cb_lock, flags);
> > +}
> > +
> > +static int ljca_parse(struct ljca_dev *dev, struct ljca_msg *header)
> > +{
> > +	struct ljca_stub *stub;
> > +
> > +	stub = ljca_stub_find(dev, header->type);
> > +	if (IS_ERR(stub))
> > +		return PTR_ERR(stub);
> > +
> > +	if (!(header->flags & LJCA_ACK_FLAG)) {
> > +		ljca_stub_notify(stub, header->cmd, header->data, header->len);
> > +		return 0;
> > +	}
> > +
> > +	if (stub->cur_cmd != header->cmd) {
> > +		dev_err(&dev->intf->dev, "header and stub current command mismatch (%x vs %x)\n",
> > +			header->cmd, stub->cur_cmd);
> > +		return -EINVAL;
> > +	}
> > +
> > +	if (stub->ipacket.ibuf && stub->ipacket.ibuf_len) {
> > +		unsigned int newlen;
> > +
> > +		newlen = min_t(unsigned int, header->len, *stub->ipacket.ibuf_len);
> > +
> > +		*stub->ipacket.ibuf_len = newlen;
> > +		memcpy(stub->ipacket.ibuf, header->data, newlen);
> > +	}
> > +
> > +	stub->acked = true;
> > +	wake_up(&dev->ack_wq);
> > +
> > +	return 0;
> > +}
> > +
> > +static int ljca_stub_write(struct ljca_stub *stub, u8 cmd, const void *obuf, unsigned int obuf_len,
> 
> Why is obuf a void *?  It's a real structure (or u8 stream), make it so.
obuf and ibuf here is the transfer payload of LJCA. It has several types
for different packages (such as gpio package, i2c package andspi package).
If change the type to u8, we need to add a type casting from real package
type to u8 everywhere when calling ljca_transfer.
> 
> > +			   void *ibuf, unsigned int *ibuf_len, bool wait_ack, unsigned long timeout)
> 
> Same for ibuf.
> 
> > +{
> > +	struct ljca_dev *dev = usb_get_intfdata(stub->intf);
> > +	u8 flags = LJCA_CMPL_FLAG;
> > +	struct ljca_msg *header;
> > +	unsigned int msg_len = sizeof(*header) + obuf_len;
> > +	int actual;
> > +	int ret;
> > +
> > +	if (msg_len > LJCA_MAX_PACKET_SIZE)
> > +		return -EINVAL;
> > +
> > +	if (wait_ack)
> > +		flags |= LJCA_ACK_FLAG;
> > +
> > +	header = kmalloc(msg_len, GFP_KERNEL);
> > +	if (!header)
> > +		return -ENOMEM;
> > +
> > +	header->type = stub->type;
> > +	header->cmd = cmd;
> > +	header->flags = flags;
> > +	header->len = obuf_len;
> > +
> > +	if (obuf)
> > +		memcpy(header->data, obuf, obuf_len);
> > +
> > +	dev_dbg(&dev->intf->dev, "send: type:%d cmd:%d flags:%d len:%d\n", header->type,
> > +		header->cmd, header->flags, header->len);
> > +
> > +	usb_autopm_get_interface(dev->intf);
> > +	if (!dev->started) {
> > +		kfree(header);
> > +		ret = -ENODEV;
> > +		goto error_put;
> > +	}
> > +
> > +	mutex_lock(&dev->mutex);
> > +	stub->cur_cmd = cmd;
> > +	stub->ipacket.ibuf = ibuf;
> > +	stub->ipacket.ibuf_len = ibuf_len;
> > +	stub->acked = false;
> > +	ret = usb_bulk_msg(dev->udev, usb_sndbulkpipe(dev->udev, dev->out_ep), header, msg_len,
> > +			   &actual, LJCA_USB_WRITE_TIMEOUT_MS);
> > +	kfree(header);
> > +	if (ret) {
> > +		dev_err(&dev->intf->dev, "bridge write failed ret:%d\n", ret);
> > +		goto error_unlock;
> > +	}
> > +
> > +	if (actual != msg_len) {
> > +		dev_err(&dev->intf->dev, "bridge write length mismatch (%d vs %d)\n", msg_len,
> > +			actual);
> > +		ret = -EINVAL;
> > +		goto error_unlock;
> > +	}
> > +
> > +	if (wait_ack) {
> > +		ret = wait_event_timeout(dev->ack_wq, stub->acked, msecs_to_jiffies(timeout));
> > +		if (!ret) {
> > +			dev_err(&dev->intf->dev, "acked wait timeout\n");
> > +			ret = -ETIMEDOUT;
> > +			goto error_unlock;
> > +		}
> > +	}
> > +
> > +	stub->ipacket.ibuf = NULL;
> > +	stub->ipacket.ibuf_len = NULL;
> > +	ret = 0;
> > +error_unlock:
> > +	mutex_unlock(&dev->mutex);
> > +error_put:
> > +	usb_autopm_put_interface(dev->intf);
> > +
> > +	return ret;
> > +}
> > +
> > +static int ljca_transfer_internal(struct ljca *ljca, u8 cmd, const void *obuf,
> > +				  unsigned int obuf_len, void *ibuf, unsigned int *ibuf_len,
> > +				  bool wait_ack)
> > +{
> > +	struct ljca_stub *stub;
> > +
> > +	stub = ljca_stub_find(ljca->dev, ljca->type);
> > +	if (IS_ERR(stub))
> > +		return PTR_ERR(stub);
> > +
> > +	return ljca_stub_write(stub, cmd, obuf, obuf_len, ibuf, ibuf_len, wait_ack,
> > +			       LJCA_USB_WRITE_ACK_TIMEOUT_MS);
> > +}
> > +
> > +int ljca_transfer(struct ljca *ljca, u8 cmd, const void *obuf, unsigned int obuf_len, void *ibuf,
> > +		  unsigned int *ibuf_len)
> > +{
> > +	return ljca_transfer_internal(ljca, cmd, obuf, obuf_len, ibuf, ibuf_len, true);
> > +}
> > +EXPORT_SYMBOL_NS_GPL(ljca_transfer, LJCA);
> > +
> > +int ljca_transfer_noack(struct ljca *ljca, u8 cmd, const void *obuf, unsigned int obuf_len)
> > +{
> > +	return ljca_transfer_internal(ljca, cmd, obuf, obuf_len, NULL, NULL, false);
> > +}
> > +EXPORT_SYMBOL_NS_GPL(ljca_transfer_noack, LJCA);
> > +
> > +int ljca_register_event_cb(struct ljca *ljca, ljca_event_cb_t event_cb, void *context)
> 
> What are these magic events you are registering?  What do they do and
> why would anyone need them?
It provides a path for sub-devices to listening events from LJCA
device. For gpio-ljca, it uses this API to implement gpio interrupt.

> 
> You have global functions here that other drivers are using, yet no
> documentation about them at all for any way to review that the api
> really is doing what you are wanting it to do.
Kernel-doc format comments are in ljca.h in this patch. It has some
introduction about these for exported API.
> 
> So again, please split this up into at least 2 changes, and document
> this new api you are creating, so that we have a chance to review it
> properly.  Otherwise it's almost impossible to do so.
Got it. Will spit this into 2 commit on next version.
> 
--
Thanks
Ye Xiang



[Index of Archives]     [Linux Kernel]     [Linux ARM (vger)]     [Linux ARM MSM]     [Linux Omap]     [Linux Arm]     [Linux Tegra]     [Fedora ARM]     [Linux for Samsung SOC]     [eCos]     [Linux Fastboot]     [Gcc Help]     [Git]     [DCCP]     [IETF Announce]     [Security]     [Linux MIPS]     [Yosemite Campsites]

  Powered by Linux