Hi Kieran,

On Thu, Nov 12, 2020 at 10:31:05PM +0000, Kieran Bingham wrote:
> Hi Jacopo,
>

[snip]

> > +   /* Wait for firmware boot by reading streamon status. */
> > +   ov490_write(dev, 0xfffd, 0x80);
> > +   ov490_write(dev, 0xfffe, 0x29);
> > +   usleep_range(100, 150);
> > +   for (timeout = 300; timeout > 0; timeout--) {
> > +           ov490_read(dev, 0xd000, &val);
> > +           if (val == 0x0c)
>
> What is 0x0c here? Is it something we can better describe in a #define?
>

The 0x0c value itself means "frame output enable" + "whole frame
output enable". I don't think it has much value to define it,
otherwise we would need to define also the register 8029d000

Also, the ov490 is programmed loading the content of a SPI Flash chip,
I guess it's just known that "output enabled" is required to have
stream operations properly working.

> > +                   break;
> > +           mdelay(1);
> > +   }
> > +   if (!timeout) {
> > +           dev_err(dev->dev, "Timeout firmware boot wait\n");
> > +           return -ENODEV;
> > +   }
> > +   dev_dbg(dev->dev, "Firmware booted in %u msec\n", 300 - timeout);
> > +
> > +   /* Read OV10640 Id to test communications. */
> > +   ov490_write(dev, 0xfffd, 0x80);
> > +   ov490_write(dev, 0xfffe, 0x19);
> > +   usleep_range(100, 150);
> > +
> > +   ov490_write(dev, 0x5000, 0x01);
> > +   ov490_write(dev, 0x5001, 0x30);
> > +   ov490_write(dev, 0x5002, 0x0a);
> > +
> > +   ov490_write(dev, 0xfffe, 0x80);
> > +   usleep_range(100, 150);
> > +   ov490_write(dev, 0xc0, 0xc1);
> > +   ov490_write(dev, 0xfffe, 0x19);
> > +   usleep_range(1000, 1500);
> > +   ov490_read(dev, 0x5000, &val);
> > +   if (val != OV10640_ID_LOW) {
> > +           dev_err(dev->dev, "OV10640 ID mismatch: (0x%02x)\n", val);
> > +           return -ENODEV;
> > +   }
> > +
> > +   dev_dbg(dev->dev, "OV10640 ID = 0x%2x\n", val);
> > +
> > +   for (i = 0; i < ARRAY_SIZE(ov490_regs_wizard); ++i) {
> > +           ret = ov490_write(dev, ov490_regs_wizard[i].reg,
> > +                             ov490_regs_wizard[i].val);
> > +           if (ret < 0) {
> > +                   dev_err(dev->dev,
> > +                           "%s: register %u (0x%04x) write failed (%d)\n",
> > +                           __func__, i, ov490_regs_wizard[i].reg, ret);
> > +
> > +                   return -EIO;
> > +           }
> > +
> > +           usleep_range(100, 150);
> > +   }
> > +
> > +   /*
> > +    * The ISP is programmed with the content of a serial flash memory.
> > +    * Read the firmware configuration to reflect it through the V4L2 APIs.
> > +    */
> > +   ov490_write(dev, 0xfffd, 0x80);
> > +   ov490_write(dev, 0xfffe, 0x82);
> > +   usleep_range(100, 150);
> > +   ov490_read(dev, OV490_ISP_HSIZE_HIGH, &val);
> > +   dev->fmt.width = (val & 0xf) << 8;
> > +   ov490_read(dev, OV490_ISP_HSIZE_LOW, &val);
> > +   dev->fmt.width |= (val & 0xff);
> > +
> > +   ov490_read(dev, OV490_ISP_VSIZE_HIGH, &val);
> > +   dev->fmt.height = (val & 0xf) << 8;
> > +   ov490_read(dev, OV490_ISP_VSIZE_LOW, &val);
> > +   dev->fmt.height |= val & 0xff;
> > +
> > +   /* Set bus width to 12 bits [0:11] */
> > +   ov490_write(dev, 0xfffd, 0x80);
> > +   ov490_write(dev, 0xfffe, 0x28);
> > +   usleep_range(100, 150);
> > +   ov490_write(dev, 0x6009, 0x10);
> > +
> > +   dev_info(dev->dev, "Identified RDACM21 camera module\n");
> > +
> > +   return 0;
> > +}
> > +
> > +static int rdacm21_initialize(struct rdacm21_device *dev)
> > +{
> > +   int ret;
> > +
> > +   /* Verify communication with the MAX9271: ping to wakeup. */
> > +   dev->serializer->client->addr = MAX9271_DEFAULT_ADDR;
> > +   i2c_smbus_read_byte(dev->serializer->client);
> > +
> > +   /* Serial link disabled during config as it needs a valid pixel clock. 
> > */
> > +   ret = max9271_set_serial_link(dev->serializer, false);
> > +   if (ret)
> > +           return ret;
> > +
> > +   /* Set GPO high to hold OV490 in reset during max9271 configuration. */
> > +   ret = max9271_set_gpios(dev->serializer, MAX9271_GPO);
> > +   if (ret)
> > +           return ret;
> > +
> > +   /* Configure I2C bus at 105Kbps speed and configure GMSL link. */
> > +   ret = max9271_configure_i2c(dev->serializer,
> > +                               MAX9271_I2CSLVSH_469NS_234NS |
> > +                               MAX9271_I2CSLVTO_1024US |
> > +                               MAX9271_I2CMSTBT_105KBPS);
> > +   if (ret)
> > +           return ret;
> > +
> > +   ret = max9271_configure_gmsl_link(dev->serializer);
> > +   if (ret)
> > +           return ret;
> > +
> > +   ret = max9271_set_address(dev->serializer, dev->addrs[0]);
> > +   if (ret)
> > +           return ret;
> > +   dev->serializer->client->addr = dev->addrs[0];
> > +
> > +   /*
> > +    * Release OV490 from reset and program address translation
> > +    * before performing OV490 configuration.
> > +    */
> > +   ret = max9271_clear_gpios(dev->serializer, MAX9271_GPO);
> > +   if (ret)
> > +           return ret;
> > +
> > +   ret = max9271_set_translation(dev->serializer, dev->addrs[1],
> > +                                 OV490_I2C_ADDRESS);
> > +   if (ret)
> > +           return ret;
> > +   dev->isp->addr = dev->addrs[1];
> > +
> > +   ret = ov490_initialize(dev);
> > +   if (ret)
> > +           return ret;
> > +
> > +   /*
> > +    * Set reverse channel high threshold to increase noise immunity.
> > +    *
> > +    * This should be compensated by increasing the reverse channel
> > +    * amplitude on the remote deserializer side.
> > +    */
> > +   ret = max9271_set_high_threshold(dev->serializer, true);
> > +   if (ret)
> > +           return ret;
> > +
> > +   return 0;
> > +}
> > +
> > +static int rdacm21_probe(struct i2c_client *client)
> > +{
> > +   struct rdacm21_device *dev;
> > +   struct fwnode_handle *ep;
> > +   int ret;
> > +
> > +   dev = devm_kzalloc(&client->dev, sizeof(*dev), GFP_KERNEL);
> > +   if (!dev)
> > +           return -ENOMEM;
> > +   dev->dev = &client->dev;
> > +
> > +   dev->serializer = devm_kzalloc(&client->dev, sizeof(*dev->serializer),
> > +                                  GFP_KERNEL);
> > +   if (!dev->serializer)
> > +           return -ENOMEM;
> > +
> > +   dev->serializer->client = client;
> > +
> > +   ret = of_property_read_u32_array(client->dev.of_node, "reg",
> > +                                    dev->addrs, 2);
> > +   if (ret < 0) {
> > +           dev_err(dev->dev, "Invalid DT reg property: %d\n", ret);
> > +           return -EINVAL;
> > +   }
> > +
> > +   /* Create the dummy I2C client for the sensor. */
> > +   dev->isp = i2c_new_dummy_device(client->adapter, OV490_I2C_ADDRESS);
> > +   if (IS_ERR(dev->isp))
> > +           return PTR_ERR(dev->isp);
> > +
> > +   ret = rdacm21_initialize(dev);
> > +   if (ret < 0)
> > +           goto error;
> > +
> > +   /* Initialize and register the subdevice. */
> > +   v4l2_i2c_subdev_init(&dev->sd, client, &rdacm21_subdev_ops);
> > +   dev->sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
> > +
> > +   v4l2_ctrl_handler_init(&dev->ctrls, 1);
> > +   v4l2_ctrl_new_std(&dev->ctrls, NULL, V4L2_CID_PIXEL_RATE,
> > +                     OV10640_PIXEL_RATE, OV10640_PIXEL_RATE, 1,
> > +                     OV10640_PIXEL_RATE);
> > +   dev->sd.ctrl_handler = &dev->ctrls;
> > +
> > +   ret = dev->ctrls.error;
> > +   if (ret)
> > +           goto error_free_ctrls;
> > +
> > +   dev->pad.flags = MEDIA_PAD_FL_SOURCE;
> > +   dev->sd.entity.flags |= MEDIA_ENT_F_CAM_SENSOR;
> > +   ret = media_entity_pads_init(&dev->sd.entity, 1, &dev->pad);
> > +   if (ret < 0)
> > +           goto error_free_ctrls;
> > +
> > +   ep = fwnode_graph_get_next_endpoint(dev_fwnode(&client->dev), NULL);
> > +   if (!ep) {
> > +           dev_err(&client->dev,
> > +                   "Unable to get endpoint in node %pOF\n",
> > +                   client->dev.of_node);
> > +           ret = -ENOENT;
> > +           goto error_free_ctrls;
> > +   }
> > +   dev->sd.fwnode = ep;
> > +
> > +   ret = v4l2_async_register_subdev(&dev->sd);
> > +   if (ret)
> > +           goto error_put_node;
> > +
> > +   return 0;
> > +
> > +error_put_node:
> > +   fwnode_handle_put(dev->sd.fwnode);
> > +error_free_ctrls:
> > +   v4l2_ctrl_handler_free(&dev->ctrls);
> > +error:
> > +   i2c_unregister_device(dev->isp);
> > +
> > +   return ret;
> > +}
> > +
> > +static int rdacm21_remove(struct i2c_client *client)
> > +{
> > +   struct rdacm21_device *dev = i2c_to_rdacm21(client);
> > +
> > +   fwnode_handle_put(dev->sd.fwnode);
> > +   v4l2_async_unregister_subdev(&dev->sd);
> > +   v4l2_ctrl_handler_free(&dev->ctrls);
> > +   i2c_unregister_device(dev->isp);
> > +
> > +   return 0;
> > +}
> > +
> > +static const struct of_device_id rdacm21_of_ids[] = {
> > +   { .compatible = "imi,rdacm21" },
> > +   { }
> > +};
> > +MODULE_DEVICE_TABLE(of, rdacm21_of_ids);
> > +
> > +static struct i2c_driver rdacm21_i2c_driver = {
> > +   .driver = {
> > +           .name   = "rdacm21",
> > +           .of_match_table = rdacm21_of_ids,
> > +   },
> > +   .probe_new      = rdacm21_probe,
> > +   .remove         = rdacm21_remove,
> > +};
> > +
> > +module_i2c_driver(rdacm21_i2c_driver);
> > +
> > +MODULE_DESCRIPTION("GMSL Camera driver for RDACM21");
> > +MODULE_AUTHOR("Jacopo Mondi, Kieran Bingham, Laurent Pinchart, Niklas 
> > Söderlund, Vladimir Barinov");
>
> I think by this point you could chop MODULE_AUTHOR for this one down to
> just you ;-)
>
>
> A fairly arbitrary, and cursory
>
> Reviewed-by: Kieran Bingham <kieran.bingham+rene...@ideasonboard.com>
>
> I'll be aiming to test this (series) as soon as I can too.

Thanks, let me know if I should submit for proper inclusion!

Thanks
  j

>
> --
> Kieran
>
>
> > +MODULE_LICENSE("GPL v2");
> >
>

Reply via email to