/* * Sony FCB-EV9500M MIPI camera driver * * Copyright (c) 2022, Sony Electronics, Inc.. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include #include #include #include #include #include #include #include #include #include #include static const struct of_device_id toto_of_match[] = { { .compatible = "sony,toto", }, { }, }; MODULE_DEVICE_TABLE(of, toto_of_match); static const u32 ctrl_cid_list[] = { TEGRA_CAMERA_CID_SENSOR_MODE_ID, }; static const int toto_60fps[] = { 60, }; struct toto { struct i2c_client *i2c_client; struct v4l2_subdev *subdev; u16 fine_integ_time; u32 frame_length; struct camera_common_data *s_data; struct tegracam_device *tc_dev; }; static const struct camera_common_frmfmt toto_frmfmt[] = { {{1920, 1080}, toto_60fps, 1, 0, 0}, }; static const struct regmap_config sensor_regmap_config = { .reg_bits = 16, .val_bits = 8, .cache_type = REGCACHE_RBTREE, }; static int toto_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh) { struct i2c_client *client = v4l2_get_subdevdata(sd); dev_info(&client->dev, "%s:\n", __func__); return 0; } static int toto_set_group_hold(struct tegracam_device *tc_dev, bool val) { /* toto does not support group hold */ return 0; } /* As soon as the reset pin is released, the bridge starts streaming */ static int toto_start_streaming(struct tegracam_device *tc_dev) { struct camera_common_data *s_data = tc_dev->s_data; struct camera_common_power_rail *pw = s_data->power; if (pw->reset_gpio) { if (gpiod_cansleep(gpio_to_desc(pw->reset_gpio))) gpio_set_value_cansleep(pw->reset_gpio, 1); else gpio_set_value(pw->reset_gpio, 1); } return 0; } static int toto_stop_streaming(struct tegracam_device *tc_dev) { struct camera_common_data *s_data = tc_dev->s_data; struct camera_common_power_rail *pw = s_data->power; if (pw->reset_gpio) { if (gpiod_cansleep(gpio_to_desc(pw->reset_gpio))) gpio_set_value_cansleep(pw->reset_gpio, 0); else gpio_set_value(pw->reset_gpio, 0); } return 0; } static int toto_set_mode(struct tegracam_device *tc_dev) { /* Width and Height taken care of by the firmware */ return 0; } static inline int toto_read_reg(struct camera_common_data *s_data, u16 addr, u8 *val) { int err = 0; u32 reg_val = 0; err = regmap_read(s_data->regmap, addr, ®_val); *val = reg_val & 0xff; return err; } static inline int toto_write_reg(struct camera_common_data *s_data, u16 addr, u8 val) { return 0; } static int toto_power_get(struct tegracam_device *tc_dev) { struct device *dev = tc_dev->dev; struct camera_common_data *s_data = tc_dev->s_data; struct camera_common_power_rail *pw = s_data->power; struct camera_common_pdata *pdata = s_data->pdata; struct clk *parent; int err = 0; if (!pdata) { dev_err(dev, "pdata missing\n"); return -EFAULT; } /* Sensor MCLK (aka. INCK) */ if (pdata->mclk_name) { pw->mclk = devm_clk_get(dev, pdata->mclk_name); if (IS_ERR(pw->mclk)) { dev_err(dev, "unable to get clock %s\n", pdata->mclk_name); return PTR_ERR(pw->mclk); } if (pdata->parentclk_name) { parent = devm_clk_get(dev, pdata->parentclk_name); if (IS_ERR(parent)) { dev_err(dev, "unable to get parent clock %s", pdata->parentclk_name); } else clk_set_parent(pw->mclk, parent); } } /* analog 3.3v */ if (pdata->regulators.avdd) err |= camera_common_regulator_get(dev, &pw->avdd, pdata->regulators.avdd); if (err) { dev_err(dev, "%s: unable to get regulator(s)\n", __func__); goto done; } /* dig 1.2v */ if (pdata->regulators.dvdd) err |= camera_common_regulator_get(dev, &pw->dvdd, pdata->regulators.dvdd); if (err) { dev_err(dev, "%s: unable to get regulator(s)\n", __func__); goto done; } /* vdd 1.8v */ if (pdata->regulators.iovdd) err |= camera_common_regulator_get(dev, &pw->avdd, pdata->regulators.avdd); if (err) { dev_err(dev, "%s: unable to get regulator(s)\n", __func__); goto done; } /* Reset or ENABLE GPIO */ pw->reset_gpio = pdata->reset_gpio; err = gpio_request(pw->reset_gpio, "cam_reset_gpio"); if (err < 0) { dev_err(dev, "%s: unable to request reset_gpio (%d)\n", __func__, err); goto done; } done: pw->state = SWITCH_OFF; return err; } static int toto_power_put(struct tegracam_device *tc_dev) { struct camera_common_data *s_data = tc_dev->s_data; struct camera_common_power_rail *pw = s_data->power; if (unlikely(!pw)) return -EFAULT; if (likely(pw->dvdd)) devm_regulator_put(pw->dvdd); if (likely(pw->avdd)) devm_regulator_put(pw->avdd); if (likely(pw->iovdd)) devm_regulator_put(pw->iovdd); pw->dvdd = NULL; pw->avdd = NULL; pw->iovdd = NULL; if (likely(pw->reset_gpio)) gpio_free(pw->reset_gpio); return 0; } static struct camera_common_pdata *toto_parse_dt( struct tegracam_device *tc_dev) { struct device *dev = tc_dev->dev; struct device_node *np = dev->of_node; struct camera_common_pdata *board_priv_pdata; const struct of_device_id *match; struct camera_common_pdata *ret = NULL; int err = 0; int gpio; if (!np) return NULL; match = of_match_device(toto_of_match, dev); if (!match) { dev_err(dev, "Failed to find matching dt id\n"); return NULL; } board_priv_pdata = devm_kzalloc(dev, sizeof(*board_priv_pdata), GFP_KERNEL); if (!board_priv_pdata) return NULL; gpio = of_get_named_gpio(np, "reset-gpios", 0); if (gpio < 0) { if (gpio == -EPROBE_DEFER) ret = ERR_PTR(-EPROBE_DEFER); dev_err(dev, "reset-gpios not found\n"); goto error; } board_priv_pdata->reset_gpio = (unsigned int)gpio; err = of_property_read_string(np, "mclk", &board_priv_pdata->mclk_name); if (err) dev_err(dev, "mclk absent,assuming sensor driven externally\n"); err = of_property_read_string(np, "avdd-reg", &board_priv_pdata->regulators.avdd); err |= of_property_read_string(np, "iovdd-reg", &board_priv_pdata->regulators.iovdd); err |= of_property_read_string(np, "dvdd-reg", &board_priv_pdata->regulators.dvdd); if (err) dev_dbg(dev, "avdd, iovdd and/or dvdd reglrs. not present, \ assume sensor powered independently\n"); board_priv_pdata->has_eeprom = of_property_read_bool(np, "has-eeprom"); return board_priv_pdata; error: devm_kfree(dev, board_priv_pdata); return ret; } static int toto_power_on(struct camera_common_data *s_data) { int err = 0; struct camera_common_power_rail *pw = s_data->power; struct camera_common_pdata *pdata = s_data->pdata; struct device *dev = s_data->dev; dev_info(dev, "%s: power on\n", __func__); if (pdata && pdata->power_on) { err = pdata->power_on(pw); if (err) dev_err(dev, "%s failed.\n", __func__); else pw->state = SWITCH_ON; return err; } if (pw->reset_gpio) { if (gpiod_cansleep(gpio_to_desc(pw->reset_gpio))) gpio_set_value_cansleep(pw->reset_gpio, 0); else gpio_set_value(pw->reset_gpio, 0); } usleep_range(2000, 2400); //usleep_range(10, 20); if (pw->avdd) { err = regulator_enable(pw->avdd); if (err) goto toto_avdd_fail; } if (pw->iovdd) { err = regulator_enable(pw->iovdd); if (err) goto toto_iovdd_fail; } /* Need to wait for atleat 1 ms before turning up 1.2v */ //usleep_range(1000, 1200); usleep_range(2000, 2400); if (pw->dvdd) { err = regulator_enable(pw->dvdd); if (err) goto toto_dvdd_fail; } usleep_range(2000, 2400); //usleep_range(10, 20); pw->state = SWITCH_ON; return 0; toto_dvdd_fail: regulator_disable(pw->iovdd); toto_iovdd_fail: regulator_disable(pw->avdd); toto_avdd_fail: dev_err(dev, "%s failed.\n", __func__); return -ENODEV; } static int toto_power_off(struct camera_common_data *s_data) { int err = 0; struct camera_common_power_rail *pw = s_data->power; struct camera_common_pdata *pdata = s_data->pdata; struct device *dev = s_data->dev; dev_info(dev, "%s: power off\n", __func__); if (pdata && pdata->power_off) { err = pdata->power_off(pw); if (err) { dev_err(dev, "%s failed.\n", __func__); return err; } } else { if (pw->reset_gpio) { if (gpiod_cansleep(gpio_to_desc(pw->reset_gpio))) gpio_set_value_cansleep(pw->reset_gpio, 0); else gpio_set_value(pw->reset_gpio, 0); } } usleep_range(2000, 2400); //usleep_range(10, 20); if (pw->dvdd) regulator_disable(pw->dvdd); if (pw->iovdd) regulator_disable(pw->iovdd); if (pw->avdd) regulator_disable(pw->avdd); pw->state = SWITCH_OFF; return 0; } static int toto_board_setup(struct toto *priv) { struct camera_common_data *s_data = priv->s_data; struct camera_common_pdata *pdata = s_data->pdata; struct device *dev = s_data->dev; int err = 0; if (pdata->mclk_name) { err = camera_common_mclk_enable(s_data); if (err) { dev_err(dev, "error turning on mclk (%d)\n", err); goto done; } } err = toto_power_on(s_data); if (err) { dev_err(dev, "error during power on sensor (%d)\n", err); goto err_power_on; } err_power_on: if (pdata->mclk_name) camera_common_mclk_disable(s_data); done: return err; } static struct tegracam_ctrl_ops toto_ctrl_ops = { .set_group_hold = toto_set_group_hold, }; static const struct v4l2_subdev_internal_ops toto_subdev_internal_ops = { .open = toto_open, }; static struct camera_common_sensor_ops toto_common_ops = { .numfrmfmts = ARRAY_SIZE(toto_frmfmt), .frmfmt_table = toto_frmfmt, .power_on = toto_power_on, .power_off = toto_power_off, .write_reg = toto_write_reg, .read_reg = toto_read_reg, .parse_dt = toto_parse_dt, .power_get = toto_power_get, .power_put = toto_power_put, .set_mode = toto_set_mode, .start_streaming = toto_start_streaming, .stop_streaming = toto_stop_streaming, }; #if defined(NV_I2C_DRIVER_STRUCT_PROBE_WITHOUT_I2C_DEVICE_ID_ARG) /* Linux 6.3 */ static int toto_probe(struct i2c_client *client) #else static int toto_probe(struct i2c_client *client, const struct i2c_device_id *id) #endif { struct device *dev = &client->dev; struct tegracam_device *tc_dev; struct toto *priv; int err; dev_info(dev, "probing toto v4l2 sensor at addr 0x%0x\n", client->addr); if (!IS_ENABLED(CONFIG_OF) || !client->dev.of_node) return -EINVAL; priv = devm_kzalloc(dev, sizeof(struct toto), GFP_KERNEL); if (!priv) return -ENOMEM; tc_dev = devm_kzalloc(dev, sizeof(struct tegracam_device), GFP_KERNEL); if (!tc_dev) return -ENOMEM; priv->i2c_client = tc_dev->client = client; tc_dev->dev = dev; strncpy(tc_dev->name, "toto", sizeof(tc_dev->name)); tc_dev->dev_regmap_config = &sensor_regmap_config; tc_dev->sensor_ops = &toto_common_ops; tc_dev->v4l2sd_internal_ops = &toto_subdev_internal_ops; tc_dev->tcctrl_ops = &toto_ctrl_ops; err = tegracam_device_register(tc_dev); if (err) { dev_err(dev, "tegra camera driver registration failed\n"); return err; } priv->tc_dev = tc_dev; priv->s_data = tc_dev->s_data; priv->subdev = &tc_dev->s_data->subdev; tegracam_set_privdata(tc_dev, (void *)priv); err = toto_board_setup(priv); if (err) { dev_err(dev, "board setup failed\n"); return err; } err = tegracam_v4l2subdev_register(tc_dev, true); if (err) { tegracam_device_unregister(tc_dev); dev_err(dev, "tegra camera subdev registration failed\n"); return err; } dev_info(dev, "detected toto sensor\n"); return 0; } #if defined(NV_I2C_DRIVER_STRUCT_REMOVE_RETURN_TYPE_INT) /* Linux 6.1 */ static int toto_remove(struct i2c_client *client) #else static void toto_remove(struct i2c_client *client) #endif { struct camera_common_data *s_data = to_camera_common_data(&client->dev); struct toto *priv = (struct toto *)s_data->priv; tegracam_v4l2subdev_unregister(priv->tc_dev); tegracam_device_unregister(priv->tc_dev); #if defined(NV_I2C_DRIVER_STRUCT_REMOVE_RETURN_TYPE_INT) /* Linux 6.1 */ return 0; #endif } static const struct i2c_device_id toto_id[] = { { "toto", 0 }, { } }; MODULE_DEVICE_TABLE(i2c, toto_id); static struct i2c_driver toto_i2c_driver = { .driver = { .name = "toto", .owner = THIS_MODULE, .of_match_table = of_match_ptr(toto_of_match), }, .probe = toto_probe, .remove = toto_remove, .id_table = toto_id, }; module_i2c_driver(toto_i2c_driver); MODULE_DESCRIPTION("Media Controller driver for Toto"); MODULE_AUTHOR("TuxVision Electonics, Inc."); MODULE_LICENSE("GPL v2");