cregit-Linux how code gets into the kernel

Release 4.7 drivers/iio/imu/inv_mpu6050/inv_mpu_i2c.c

/*
* Copyright (C) 2012 Invensense, Inc.
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
*
* This program is distributed in the hope that 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.
*/

#include <linux/acpi.h>
#include <linux/delay.h>
#include <linux/err.h>
#include <linux/i2c.h>
#include <linux/iio/iio.h>
#include <linux/module.h>
#include "inv_mpu_iio.h"


static const struct regmap_config inv_mpu_regmap_config = {
	.reg_bits = 8,
	.val_bits = 8,
};


static int inv_mpu6050_select_bypass(struct i2c_mux_core *muxc, u32 chan_id) { struct iio_dev *indio_dev = i2c_mux_priv(muxc); struct inv_mpu6050_state *st = iio_priv(indio_dev); int ret = 0; /* Use the same mutex which was used everywhere to protect power-op */ mutex_lock(&indio_dev->mlock); if (!st->powerup_count) { ret = regmap_write(st->map, st->reg->pwr_mgmt_1, 0); if (ret) goto write_error; usleep_range(INV_MPU6050_REG_UP_TIME_MIN, INV_MPU6050_REG_UP_TIME_MAX); } if (!ret) { st->powerup_count++; ret = regmap_write(st->map, st->reg->int_pin_cfg, INV_MPU6050_INT_PIN_CFG | INV_MPU6050_BIT_BYPASS_EN); } write_error: mutex_unlock(&indio_dev->mlock); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
adriana reusadriana reus11687.88%125.00%
peter rosinpeter rosin129.09%250.00%
matthew ranostaymatthew ranostay43.03%125.00%
Total132100.00%4100.00%


static int inv_mpu6050_deselect_bypass(struct i2c_mux_core *muxc, u32 chan_id) { struct iio_dev *indio_dev = i2c_mux_priv(muxc); struct inv_mpu6050_state *st = iio_priv(indio_dev); mutex_lock(&indio_dev->mlock); /* It doesn't really mattter, if any of the calls fails */ regmap_write(st->map, st->reg->int_pin_cfg, INV_MPU6050_INT_PIN_CFG); st->powerup_count--; if (!st->powerup_count) regmap_write(st->map, st->reg->pwr_mgmt_1, INV_MPU6050_BIT_SLEEP); mutex_unlock(&indio_dev->mlock); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
adriana reusadriana reus8487.50%133.33%
peter rosinpeter rosin1212.50%266.67%
Total96100.00%3100.00%


static const char *inv_mpu_match_acpi_device(struct device *dev, int *chip_id) { const struct acpi_device_id *id; id = acpi_match_device(dev->driver->acpi_match_table, dev); if (!id) return NULL; *chip_id = (int)id->driver_data; return dev_name(dev); }

Contributors

PersonTokensPropCommitsCommitProp
daniel balutadaniel baluta60100.00%1100.00%
Total60100.00%1100.00%

/** * inv_mpu_probe() - probe function. * @client: i2c client. * @id: i2c device id. * * Returns 0 on success, a negative error code otherwise. */
static int inv_mpu_probe(struct i2c_client *client, const struct i2c_device_id *id) { struct inv_mpu6050_state *st; int result, chip_type; struct regmap *regmap; const char *name; if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_I2C_BLOCK)) return -EOPNOTSUPP; if (id) { chip_type = (int)id->driver_data; name = id->name; } else if (ACPI_HANDLE(&client->dev)) { name = inv_mpu_match_acpi_device(&client->dev, &chip_type); if (!name) return -ENODEV; } else { return -ENOSYS; } regmap = devm_regmap_init_i2c(client, &inv_mpu_regmap_config); if (IS_ERR(regmap)) { dev_err(&client->dev, "Failed to register i2c regmap %d\n", (int)PTR_ERR(regmap)); return PTR_ERR(regmap); } result = inv_mpu_core_probe(regmap, client->irq, name, NULL, chip_type); if (result < 0) return result; st = iio_priv(dev_get_drvdata(&client->dev)); st->muxc = i2c_mux_alloc(client->adapter, &client->dev, 1, 0, I2C_MUX_LOCKED, inv_mpu6050_select_bypass, inv_mpu6050_deselect_bypass); if (!st->muxc) { result = -ENOMEM; goto out_unreg_device; } st->muxc->priv = dev_get_drvdata(&client->dev); result = i2c_mux_add_adapter(st->muxc, 0, 0, 0); if (result) goto out_unreg_device; result = inv_mpu_acpi_create_mux_client(client); if (result) goto out_del_mux; return 0; out_del_mux: i2c_mux_del_adapters(st->muxc); out_unreg_device: inv_mpu_core_remove(&client->dev); return result; }

Contributors

PersonTokensPropCommitsCommitProp
adriana reusadriana reus19862.66%225.00%
daniel balutadaniel baluta6921.84%112.50%
peter rosinpeter rosin4413.92%225.00%
matthew ranostaymatthew ranostay51.58%337.50%
Total316100.00%8100.00%


static int inv_mpu_remove(struct i2c_client *client) { struct iio_dev *indio_dev = i2c_get_clientdata(client); struct inv_mpu6050_state *st = iio_priv(indio_dev); inv_mpu_acpi_delete_mux_client(client); i2c_mux_del_adapters(st->muxc); return inv_mpu_core_remove(&client->dev); }

Contributors

PersonTokensPropCommitsCommitProp
adriana reusadriana reus5096.15%150.00%
peter rosinpeter rosin23.85%150.00%
Total52100.00%2100.00%

/* * device id table is used to identify what device can be * supported by this driver */ static const struct i2c_device_id inv_mpu_id[] = { {"mpu6050", INV_MPU6050}, {"mpu6500", INV_MPU6500}, {"mpu9150", INV_MPU9150}, {} }; MODULE_DEVICE_TABLE(i2c, inv_mpu_id); static const struct acpi_device_id inv_acpi_match[] = { {"INVN6500", INV_MPU6500}, { }, }; MODULE_DEVICE_TABLE(acpi, inv_acpi_match); static struct i2c_driver inv_mpu_driver = { .probe = inv_mpu_probe, .remove = inv_mpu_remove, .id_table = inv_mpu_id, .driver = { .acpi_match_table = ACPI_PTR(inv_acpi_match), .name = "inv-mpu6050-i2c", .pm = &inv_mpu_pmops, }, }; module_i2c_driver(inv_mpu_driver); MODULE_AUTHOR("Invensense Corporation"); MODULE_DESCRIPTION("Invensense device MPU6050 driver"); MODULE_LICENSE("GPL");

Overall Contributors

PersonTokensPropCommitsCommitProp
adriana reusadriana reus60973.91%218.18%
daniel balutadaniel baluta12915.66%19.09%
peter rosinpeter rosin708.50%218.18%
matthew ranostaymatthew ranostay91.09%436.36%
crestez dan leonardcrestez dan leonard70.85%218.18%
Total824100.00%11100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}