Hi Sascha,

> diff --git a/drivers/i2c/busses/i2c-congatec-cgeb.c 
> b/drivers/i2c/busses/i2c-congatec-cgeb.c
> new file mode 100644
> index 0000000..5f48ca4
> --- /dev/null
> +++ b/drivers/i2c/busses/i2c-congatec-cgeb.c
> @@ -0,0 +1,194 @@
> +/*
> + * CGEB i2c driver
> + *
> + * (c) 2011 Sascha Hauer, Pengutronix
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License as published by
> + * the Free Software Foundation; version 2 of the License.
> + *
> + * 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/module.h>
> +#include <linux/platform_device.h>
> +#include <linux/slab.h>
> +#include <linux/i2c.h>
> +#include <asm/congatec-cgeb.h>

Is asm a good place? Maybe linux/platform_data?

> +
> +#define CG_I2C_FLAG_START   0x00080  /* send START condition */
> +#define CG_I2C_FLAG_STOP    0x00040  /* send STOP condition */
> +#define CG_I2C_FLAG_ALL_ACK 0x08000  /* send ACK on all read bytes */
> +#define CG_I2C_FLAG_ALL_NAK 0x04000  /* send NAK on all read bytes */
> +
> +struct cgeb_i2c_priv {
> +     struct cgeb_board_data          *board;
> +     struct i2c_adapter      adapter;
> +     int unit;
> +};
> +
> +static u32 cgeb_i2c_func(struct i2c_adapter *adapter)
> +{
> +     return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
> +}

To make sure: Have you checked if the driver can do SMBUS_QUICK by using
'i2cdetect'?

...

> +static int cgeb_i2c_probe(struct platform_device *pdev)
> +{
> +     struct cgeb_i2c_priv *priv;
> +     struct cgeb_pdata *pdata = pdev->dev.platform_data;
> +     int ret;
> +
> +     priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
> +     if (!priv)
> +             return -ENOMEM;
> +
> +     strcpy(priv->adapter.name, pdev->name);
> +     priv->adapter.owner             = THIS_MODULE;
> +     priv->adapter.algo              = &cgeb_i2c_algo;
> +     priv->adapter.dev.parent        = &pdev->dev;
> +     priv->unit = pdata->unit;
> +     priv->board = pdata->board;
> +     i2c_set_adapdata(&priv->adapter, priv);
> +
> +     platform_set_drvdata(pdev, priv);
> +
> +     ret = cgeb_i2c_set_speed(priv, 400000);

Not all slaves handle 400kHz. So, this might be a bit demanding. Then
again, it is probably fix which slaves are connected and they work
currently?

...

> +MODULE_AUTHOR("Sascha Hauer <s.ha...@pengutronix.de>");
> +MODULE_DESCRIPTION("cgeb i2c driver");
> +MODULE_LICENSE("GPL");

GPLv2 is mentioned in the header.

Other than that, the driver looks fine to me. If it should go via mfd,
here is my

Acked-by: Wolfram Sang <w...@the-dreams.de>

Otherwise, let me know if and when I should pick it up.

Thanks,

   Wolfram

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to