Loading Documentation/devicetree/bindings/i2c/samsung-i2c.txt 0 → 100644 +39 −0 Original line number Diff line number Diff line * Samsung's I2C controller The Samsung's I2C controller is used to interface with I2C devices. Required properties: - compatible: value should be either of the following. (a) "samsung, s3c2410-i2c", for i2c compatible with s3c2410 i2c. (b) "samsung, s3c2440-i2c", for i2c compatible with s3c2440 i2c. - reg: physical base address of the controller and length of memory mapped region. - interrupts: interrupt number to the cpu. - samsung,i2c-sda-delay: Delay (in ns) applied to data line (SDA) edges. - gpios: The order of the gpios should be the following: <SDA, SCL>. The gpio specifier depends on the gpio controller. Optional properties: - samsung,i2c-slave-addr: Slave address in multi-master enviroment. If not specified, default value is 0. - samsung,i2c-max-bus-freq: Desired frequency in Hz of the bus. If not specified, the default value in Hz is 100000. Example: i2c@13870000 { compatible = "samsung,s3c2440-i2c"; reg = <0x13870000 0x100>; interrupts = <345>; samsung,i2c-sda-delay = <100>; samsung,i2c-max-bus-freq = <100000>; gpios = <&gpd1 2 0 /* SDA */ &gpd1 3 0 /* SCL */>; #address-cells = <1>; #size-cells = <0>; wm8994@1a { compatible = "wlf,wm8994"; reg = <0x1a>; }; }; drivers/i2c/busses/i2c-nomadik.c +46 −43 Original line number Diff line number Diff line Loading @@ -135,19 +135,19 @@ struct i2c_nmk_client { }; /** * struct nmk_i2c_dev - private data structure of the controller * @pdev: parent platform device * @adap: corresponding I2C adapter * @irq: interrupt line for the controller * @virtbase: virtual io memory area * @clk: hardware i2c block clock * @cfg: machine provided controller configuration * @cli: holder of client specific data * @stop: stop condition * @xfer_complete: acknowledge completion for a I2C message * @result: controller propogated result * @regulator: pointer to i2c regulator * @busy: Busy doing transfer * struct nmk_i2c_dev - private data structure of the controller. * @pdev: parent platform device. * @adap: corresponding I2C adapter. * @irq: interrupt line for the controller. * @virtbase: virtual io memory area. * @clk: hardware i2c block clock. * @cfg: machine provided controller configuration. * @cli: holder of client specific data. * @stop: stop condition. * @xfer_complete: acknowledge completion for a I2C message. * @result: controller propogated result. * @regulator: pointer to i2c regulator. * @busy: Busy doing transfer. */ struct nmk_i2c_dev { struct platform_device *pdev; Loading Loading @@ -217,8 +217,9 @@ static int flush_i2c_fifo(struct nmk_i2c_dev *dev) } } dev_err(&dev->pdev->dev, "flushing operation timed out " "giving up after %d attempts", LOOP_ATTEMPTS); dev_err(&dev->pdev->dev, "flushing operation timed out giving up after %d attempts", LOOP_ATTEMPTS); return -ETIMEDOUT; } Loading Loading @@ -363,8 +364,8 @@ static void setup_i2c_controller(struct nmk_i2c_dev *dev) * and high speed (up to 3.4 Mb/s) */ if (dev->cfg.sm > I2C_FREQ_MODE_FAST) { dev_err(&dev->pdev->dev, "do not support this mode " "defaulting to std. mode\n"); dev_err(&dev->pdev->dev, "do not support this mode defaulting to std. mode\n"); brcr2 = i2c_clk/(100000 * 2) & 0xffff; writel((brcr1 | brcr2), dev->virtbase + I2C_BRCR); writel(I2C_FREQ_MODE_STANDARD << 4, Loading Loading @@ -556,8 +557,8 @@ static int nmk_i2c_xfer_one(struct nmk_i2c_dev *dev, u16 flags) if (((i2c_sr >> 2) & 0x3) == 0x3) { /* get the abort cause */ cause = (i2c_sr >> 4) & 0x7; dev_err(&dev->pdev->dev, "%s\n", cause >= ARRAY_SIZE(abort_causes) ? dev_err(&dev->pdev->dev, "%s\n", cause >= ARRAY_SIZE(abort_causes) ? "unknown reason" : abort_causes[cause]); } Loading Loading @@ -644,8 +645,8 @@ static int nmk_i2c_xfer(struct i2c_adapter *i2c_adap, for (i = 0; i < num_msgs; i++) { if (unlikely(msgs[i].flags & I2C_M_TEN)) { dev_err(&dev->pdev->dev, "10 bit addressing" "not supported\n"); dev_err(&dev->pdev->dev, "10 bit addressing not supported\n"); status = -EINVAL; goto out; Loading Loading @@ -789,8 +790,9 @@ static irqreturn_t i2c_irq_handler(int irq, void *arg) if (dev->cli.count) { dev->result = -EIO; dev_err(&dev->pdev->dev, "%lu bytes still remain to be" "xfered\n", dev->cli.count); dev_err(&dev->pdev->dev, "%lu bytes still remain to be xfered\n", dev->cli.count); (void) init_hw(dev); } complete(&dev->xfer_complete); Loading Loading @@ -980,8 +982,9 @@ static int __devinit nmk_i2c_probe(struct platform_device *pdev) i2c_set_adapdata(adap, dev); dev_info(&pdev->dev, "initialize %s on virtual " "base %p\n", adap->name, dev->virtbase); dev_info(&pdev->dev, "initialize %s on virtual base %p\n", adap->name, dev->virtbase); ret = i2c_add_numbered_adapter(adap); if (ret) { Loading drivers/i2c/busses/i2c-s3c2410.c +120 −8 Original line number Diff line number Diff line Loading @@ -35,6 +35,8 @@ #include <linux/cpufreq.h> #include <linux/slab.h> #include <linux/io.h> #include <linux/of_i2c.h> #include <linux/of_gpio.h> #include <asm/irq.h> Loading Loading @@ -78,6 +80,8 @@ struct s3c24xx_i2c { struct resource *ioarea; struct i2c_adapter adap; struct s3c2410_platform_i2c *pdata; int gpios[2]; #ifdef CONFIG_CPU_FREQ struct notifier_block freq_transition; #endif Loading @@ -95,6 +99,12 @@ static inline int s3c24xx_i2c_is2440(struct s3c24xx_i2c *i2c) struct platform_device *pdev = to_platform_device(i2c->dev); enum s3c24xx_i2c_type type; #ifdef CONFIG_OF if (i2c->dev->of_node) return of_device_is_compatible(i2c->dev->of_node, "samsung,s3c2440-i2c"); #endif type = platform_get_device_id(pdev)->driver_data; return type == TYPE_S3C2440; } Loading Loading @@ -625,7 +635,7 @@ static int s3c24xx_i2c_calcdivisor(unsigned long clkin, unsigned int wanted, static int s3c24xx_i2c_clockrate(struct s3c24xx_i2c *i2c, unsigned int *got) { struct s3c2410_platform_i2c *pdata = i2c->dev->platform_data; struct s3c2410_platform_i2c *pdata = i2c->pdata; unsigned long clkin = clk_get_rate(i2c->clk); unsigned int divs, div1; unsigned long target_frequency; Loading Loading @@ -741,6 +751,49 @@ static inline void s3c24xx_i2c_deregister_cpufreq(struct s3c24xx_i2c *i2c) } #endif #ifdef CONFIG_OF static int s3c24xx_i2c_parse_dt_gpio(struct s3c24xx_i2c *i2c) { int idx, gpio, ret; for (idx = 0; idx < 2; idx++) { gpio = of_get_gpio(i2c->dev->of_node, idx); if (!gpio_is_valid(gpio)) { dev_err(i2c->dev, "invalid gpio[%d]: %d\n", idx, gpio); goto free_gpio; } ret = gpio_request(gpio, "i2c-bus"); if (ret) { dev_err(i2c->dev, "gpio [%d] request failed\n", gpio); goto free_gpio; } } return 0; free_gpio: while (--idx >= 0) gpio_free(i2c->gpios[idx]); return -EINVAL; } static void s3c24xx_i2c_dt_gpio_free(struct s3c24xx_i2c *i2c) { unsigned int idx; for (idx = 0; idx < 2; idx++) gpio_free(i2c->gpios[idx]); } #else static int s3c24xx_i2c_parse_dt_gpio(struct s3c24xx_i2c *i2c) { return -EINVAL; } static void s3c24xx_i2c_dt_gpio_free(struct s3c24xx_i2c *i2c) { } #endif /* s3c24xx_i2c_init * * initialise the controller, set the IO lines and frequency Loading @@ -754,12 +807,15 @@ static int s3c24xx_i2c_init(struct s3c24xx_i2c *i2c) /* get the plafrom data */ pdata = i2c->dev->platform_data; pdata = i2c->pdata; /* inititalise the gpio */ if (pdata->cfg_gpio) pdata->cfg_gpio(to_platform_device(i2c->dev)); else if (s3c24xx_i2c_parse_dt_gpio(i2c)) return -EINVAL; /* write slave address */ Loading @@ -785,6 +841,34 @@ static int s3c24xx_i2c_init(struct s3c24xx_i2c *i2c) return 0; } #ifdef CONFIG_OF /* s3c24xx_i2c_parse_dt * * Parse the device tree node and retreive the platform data. */ static void s3c24xx_i2c_parse_dt(struct device_node *np, struct s3c24xx_i2c *i2c) { struct s3c2410_platform_i2c *pdata = i2c->pdata; if (!np) return; pdata->bus_num = -1; /* i2c bus number is dynamically assigned */ of_property_read_u32(np, "samsung,i2c-sda-delay", &pdata->sda_delay); of_property_read_u32(np, "samsung,i2c-slave-addr", &pdata->slave_addr); of_property_read_u32(np, "samsung,i2c-max-bus-freq", (u32 *)&pdata->frequency); } #else static void s3c24xx_i2c_parse_dt(struct device_node *np, struct s3c24xx_i2c *i2c) { return; } #endif /* s3c24xx_i2c_probe * * called by the bus driver when a suitable device is found Loading @@ -793,15 +877,17 @@ static int s3c24xx_i2c_init(struct s3c24xx_i2c *i2c) static int s3c24xx_i2c_probe(struct platform_device *pdev) { struct s3c24xx_i2c *i2c; struct s3c2410_platform_i2c *pdata; struct s3c2410_platform_i2c *pdata = NULL; struct resource *res; int ret; if (!pdev->dev.of_node) { pdata = pdev->dev.platform_data; if (!pdata) { dev_err(&pdev->dev, "no platform data\n"); return -EINVAL; } } i2c = kzalloc(sizeof(struct s3c24xx_i2c), GFP_KERNEL); if (!i2c) { Loading @@ -809,6 +895,17 @@ static int s3c24xx_i2c_probe(struct platform_device *pdev) return -ENOMEM; } i2c->pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); if (!i2c->pdata) { ret = -ENOMEM; goto err_noclk; } if (pdata) memcpy(i2c->pdata, pdata, sizeof(*pdata)); else s3c24xx_i2c_parse_dt(pdev->dev.of_node, i2c); strlcpy(i2c->adap.name, "s3c2410-i2c", sizeof(i2c->adap.name)); i2c->adap.owner = THIS_MODULE; i2c->adap.algo = &s3c24xx_i2c_algorithm; Loading Loading @@ -903,7 +1000,8 @@ static int s3c24xx_i2c_probe(struct platform_device *pdev) * being bus 0. */ i2c->adap.nr = pdata->bus_num; i2c->adap.nr = i2c->pdata->bus_num; i2c->adap.dev.of_node = pdev->dev.of_node; ret = i2c_add_numbered_adapter(&i2c->adap); if (ret < 0) { Loading @@ -911,6 +1009,7 @@ static int s3c24xx_i2c_probe(struct platform_device *pdev) goto err_cpufreq; } of_i2c_register_devices(&i2c->adap); platform_set_drvdata(pdev, i2c); dev_info(&pdev->dev, "%s: S3C I2C adapter\n", dev_name(&i2c->adap.dev)); Loading Loading @@ -959,6 +1058,7 @@ static int s3c24xx_i2c_remove(struct platform_device *pdev) iounmap(i2c->regs); release_resource(i2c->ioarea); s3c24xx_i2c_dt_gpio_free(i2c); kfree(i2c->ioarea); kfree(i2c); Loading Loading @@ -1012,6 +1112,17 @@ static struct platform_device_id s3c24xx_driver_ids[] = { }; MODULE_DEVICE_TABLE(platform, s3c24xx_driver_ids); #ifdef CONFIG_OF static const struct of_device_id s3c24xx_i2c_match[] = { { .compatible = "samsung,s3c2410-i2c" }, { .compatible = "samsung,s3c2440-i2c" }, {}, }; MODULE_DEVICE_TABLE(of, s3c24xx_i2c_match); #else #define s3c24xx_i2c_match NULL #endif static struct platform_driver s3c24xx_i2c_driver = { .probe = s3c24xx_i2c_probe, .remove = s3c24xx_i2c_remove, Loading @@ -1020,6 +1131,7 @@ static struct platform_driver s3c24xx_i2c_driver = { .owner = THIS_MODULE, .name = "s3c-i2c", .pm = S3C24XX_DEV_PM_OPS, .of_match_table = s3c24xx_i2c_match, }, }; Loading drivers/i2c/busses/i2c-tegra.c +1 −1 Original line number Diff line number Diff line Loading @@ -566,7 +566,7 @@ static int tegra_i2c_probe(struct platform_device *pdev) struct clk *clk; struct clk *i2c_clk; const unsigned int *prop; void *base; void __iomem *base; int irq; int ret = 0; Loading Loading
Documentation/devicetree/bindings/i2c/samsung-i2c.txt 0 → 100644 +39 −0 Original line number Diff line number Diff line * Samsung's I2C controller The Samsung's I2C controller is used to interface with I2C devices. Required properties: - compatible: value should be either of the following. (a) "samsung, s3c2410-i2c", for i2c compatible with s3c2410 i2c. (b) "samsung, s3c2440-i2c", for i2c compatible with s3c2440 i2c. - reg: physical base address of the controller and length of memory mapped region. - interrupts: interrupt number to the cpu. - samsung,i2c-sda-delay: Delay (in ns) applied to data line (SDA) edges. - gpios: The order of the gpios should be the following: <SDA, SCL>. The gpio specifier depends on the gpio controller. Optional properties: - samsung,i2c-slave-addr: Slave address in multi-master enviroment. If not specified, default value is 0. - samsung,i2c-max-bus-freq: Desired frequency in Hz of the bus. If not specified, the default value in Hz is 100000. Example: i2c@13870000 { compatible = "samsung,s3c2440-i2c"; reg = <0x13870000 0x100>; interrupts = <345>; samsung,i2c-sda-delay = <100>; samsung,i2c-max-bus-freq = <100000>; gpios = <&gpd1 2 0 /* SDA */ &gpd1 3 0 /* SCL */>; #address-cells = <1>; #size-cells = <0>; wm8994@1a { compatible = "wlf,wm8994"; reg = <0x1a>; }; };
drivers/i2c/busses/i2c-nomadik.c +46 −43 Original line number Diff line number Diff line Loading @@ -135,19 +135,19 @@ struct i2c_nmk_client { }; /** * struct nmk_i2c_dev - private data structure of the controller * @pdev: parent platform device * @adap: corresponding I2C adapter * @irq: interrupt line for the controller * @virtbase: virtual io memory area * @clk: hardware i2c block clock * @cfg: machine provided controller configuration * @cli: holder of client specific data * @stop: stop condition * @xfer_complete: acknowledge completion for a I2C message * @result: controller propogated result * @regulator: pointer to i2c regulator * @busy: Busy doing transfer * struct nmk_i2c_dev - private data structure of the controller. * @pdev: parent platform device. * @adap: corresponding I2C adapter. * @irq: interrupt line for the controller. * @virtbase: virtual io memory area. * @clk: hardware i2c block clock. * @cfg: machine provided controller configuration. * @cli: holder of client specific data. * @stop: stop condition. * @xfer_complete: acknowledge completion for a I2C message. * @result: controller propogated result. * @regulator: pointer to i2c regulator. * @busy: Busy doing transfer. */ struct nmk_i2c_dev { struct platform_device *pdev; Loading Loading @@ -217,8 +217,9 @@ static int flush_i2c_fifo(struct nmk_i2c_dev *dev) } } dev_err(&dev->pdev->dev, "flushing operation timed out " "giving up after %d attempts", LOOP_ATTEMPTS); dev_err(&dev->pdev->dev, "flushing operation timed out giving up after %d attempts", LOOP_ATTEMPTS); return -ETIMEDOUT; } Loading Loading @@ -363,8 +364,8 @@ static void setup_i2c_controller(struct nmk_i2c_dev *dev) * and high speed (up to 3.4 Mb/s) */ if (dev->cfg.sm > I2C_FREQ_MODE_FAST) { dev_err(&dev->pdev->dev, "do not support this mode " "defaulting to std. mode\n"); dev_err(&dev->pdev->dev, "do not support this mode defaulting to std. mode\n"); brcr2 = i2c_clk/(100000 * 2) & 0xffff; writel((brcr1 | brcr2), dev->virtbase + I2C_BRCR); writel(I2C_FREQ_MODE_STANDARD << 4, Loading Loading @@ -556,8 +557,8 @@ static int nmk_i2c_xfer_one(struct nmk_i2c_dev *dev, u16 flags) if (((i2c_sr >> 2) & 0x3) == 0x3) { /* get the abort cause */ cause = (i2c_sr >> 4) & 0x7; dev_err(&dev->pdev->dev, "%s\n", cause >= ARRAY_SIZE(abort_causes) ? dev_err(&dev->pdev->dev, "%s\n", cause >= ARRAY_SIZE(abort_causes) ? "unknown reason" : abort_causes[cause]); } Loading Loading @@ -644,8 +645,8 @@ static int nmk_i2c_xfer(struct i2c_adapter *i2c_adap, for (i = 0; i < num_msgs; i++) { if (unlikely(msgs[i].flags & I2C_M_TEN)) { dev_err(&dev->pdev->dev, "10 bit addressing" "not supported\n"); dev_err(&dev->pdev->dev, "10 bit addressing not supported\n"); status = -EINVAL; goto out; Loading Loading @@ -789,8 +790,9 @@ static irqreturn_t i2c_irq_handler(int irq, void *arg) if (dev->cli.count) { dev->result = -EIO; dev_err(&dev->pdev->dev, "%lu bytes still remain to be" "xfered\n", dev->cli.count); dev_err(&dev->pdev->dev, "%lu bytes still remain to be xfered\n", dev->cli.count); (void) init_hw(dev); } complete(&dev->xfer_complete); Loading Loading @@ -980,8 +982,9 @@ static int __devinit nmk_i2c_probe(struct platform_device *pdev) i2c_set_adapdata(adap, dev); dev_info(&pdev->dev, "initialize %s on virtual " "base %p\n", adap->name, dev->virtbase); dev_info(&pdev->dev, "initialize %s on virtual base %p\n", adap->name, dev->virtbase); ret = i2c_add_numbered_adapter(adap); if (ret) { Loading
drivers/i2c/busses/i2c-s3c2410.c +120 −8 Original line number Diff line number Diff line Loading @@ -35,6 +35,8 @@ #include <linux/cpufreq.h> #include <linux/slab.h> #include <linux/io.h> #include <linux/of_i2c.h> #include <linux/of_gpio.h> #include <asm/irq.h> Loading Loading @@ -78,6 +80,8 @@ struct s3c24xx_i2c { struct resource *ioarea; struct i2c_adapter adap; struct s3c2410_platform_i2c *pdata; int gpios[2]; #ifdef CONFIG_CPU_FREQ struct notifier_block freq_transition; #endif Loading @@ -95,6 +99,12 @@ static inline int s3c24xx_i2c_is2440(struct s3c24xx_i2c *i2c) struct platform_device *pdev = to_platform_device(i2c->dev); enum s3c24xx_i2c_type type; #ifdef CONFIG_OF if (i2c->dev->of_node) return of_device_is_compatible(i2c->dev->of_node, "samsung,s3c2440-i2c"); #endif type = platform_get_device_id(pdev)->driver_data; return type == TYPE_S3C2440; } Loading Loading @@ -625,7 +635,7 @@ static int s3c24xx_i2c_calcdivisor(unsigned long clkin, unsigned int wanted, static int s3c24xx_i2c_clockrate(struct s3c24xx_i2c *i2c, unsigned int *got) { struct s3c2410_platform_i2c *pdata = i2c->dev->platform_data; struct s3c2410_platform_i2c *pdata = i2c->pdata; unsigned long clkin = clk_get_rate(i2c->clk); unsigned int divs, div1; unsigned long target_frequency; Loading Loading @@ -741,6 +751,49 @@ static inline void s3c24xx_i2c_deregister_cpufreq(struct s3c24xx_i2c *i2c) } #endif #ifdef CONFIG_OF static int s3c24xx_i2c_parse_dt_gpio(struct s3c24xx_i2c *i2c) { int idx, gpio, ret; for (idx = 0; idx < 2; idx++) { gpio = of_get_gpio(i2c->dev->of_node, idx); if (!gpio_is_valid(gpio)) { dev_err(i2c->dev, "invalid gpio[%d]: %d\n", idx, gpio); goto free_gpio; } ret = gpio_request(gpio, "i2c-bus"); if (ret) { dev_err(i2c->dev, "gpio [%d] request failed\n", gpio); goto free_gpio; } } return 0; free_gpio: while (--idx >= 0) gpio_free(i2c->gpios[idx]); return -EINVAL; } static void s3c24xx_i2c_dt_gpio_free(struct s3c24xx_i2c *i2c) { unsigned int idx; for (idx = 0; idx < 2; idx++) gpio_free(i2c->gpios[idx]); } #else static int s3c24xx_i2c_parse_dt_gpio(struct s3c24xx_i2c *i2c) { return -EINVAL; } static void s3c24xx_i2c_dt_gpio_free(struct s3c24xx_i2c *i2c) { } #endif /* s3c24xx_i2c_init * * initialise the controller, set the IO lines and frequency Loading @@ -754,12 +807,15 @@ static int s3c24xx_i2c_init(struct s3c24xx_i2c *i2c) /* get the plafrom data */ pdata = i2c->dev->platform_data; pdata = i2c->pdata; /* inititalise the gpio */ if (pdata->cfg_gpio) pdata->cfg_gpio(to_platform_device(i2c->dev)); else if (s3c24xx_i2c_parse_dt_gpio(i2c)) return -EINVAL; /* write slave address */ Loading @@ -785,6 +841,34 @@ static int s3c24xx_i2c_init(struct s3c24xx_i2c *i2c) return 0; } #ifdef CONFIG_OF /* s3c24xx_i2c_parse_dt * * Parse the device tree node and retreive the platform data. */ static void s3c24xx_i2c_parse_dt(struct device_node *np, struct s3c24xx_i2c *i2c) { struct s3c2410_platform_i2c *pdata = i2c->pdata; if (!np) return; pdata->bus_num = -1; /* i2c bus number is dynamically assigned */ of_property_read_u32(np, "samsung,i2c-sda-delay", &pdata->sda_delay); of_property_read_u32(np, "samsung,i2c-slave-addr", &pdata->slave_addr); of_property_read_u32(np, "samsung,i2c-max-bus-freq", (u32 *)&pdata->frequency); } #else static void s3c24xx_i2c_parse_dt(struct device_node *np, struct s3c24xx_i2c *i2c) { return; } #endif /* s3c24xx_i2c_probe * * called by the bus driver when a suitable device is found Loading @@ -793,15 +877,17 @@ static int s3c24xx_i2c_init(struct s3c24xx_i2c *i2c) static int s3c24xx_i2c_probe(struct platform_device *pdev) { struct s3c24xx_i2c *i2c; struct s3c2410_platform_i2c *pdata; struct s3c2410_platform_i2c *pdata = NULL; struct resource *res; int ret; if (!pdev->dev.of_node) { pdata = pdev->dev.platform_data; if (!pdata) { dev_err(&pdev->dev, "no platform data\n"); return -EINVAL; } } i2c = kzalloc(sizeof(struct s3c24xx_i2c), GFP_KERNEL); if (!i2c) { Loading @@ -809,6 +895,17 @@ static int s3c24xx_i2c_probe(struct platform_device *pdev) return -ENOMEM; } i2c->pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); if (!i2c->pdata) { ret = -ENOMEM; goto err_noclk; } if (pdata) memcpy(i2c->pdata, pdata, sizeof(*pdata)); else s3c24xx_i2c_parse_dt(pdev->dev.of_node, i2c); strlcpy(i2c->adap.name, "s3c2410-i2c", sizeof(i2c->adap.name)); i2c->adap.owner = THIS_MODULE; i2c->adap.algo = &s3c24xx_i2c_algorithm; Loading Loading @@ -903,7 +1000,8 @@ static int s3c24xx_i2c_probe(struct platform_device *pdev) * being bus 0. */ i2c->adap.nr = pdata->bus_num; i2c->adap.nr = i2c->pdata->bus_num; i2c->adap.dev.of_node = pdev->dev.of_node; ret = i2c_add_numbered_adapter(&i2c->adap); if (ret < 0) { Loading @@ -911,6 +1009,7 @@ static int s3c24xx_i2c_probe(struct platform_device *pdev) goto err_cpufreq; } of_i2c_register_devices(&i2c->adap); platform_set_drvdata(pdev, i2c); dev_info(&pdev->dev, "%s: S3C I2C adapter\n", dev_name(&i2c->adap.dev)); Loading Loading @@ -959,6 +1058,7 @@ static int s3c24xx_i2c_remove(struct platform_device *pdev) iounmap(i2c->regs); release_resource(i2c->ioarea); s3c24xx_i2c_dt_gpio_free(i2c); kfree(i2c->ioarea); kfree(i2c); Loading Loading @@ -1012,6 +1112,17 @@ static struct platform_device_id s3c24xx_driver_ids[] = { }; MODULE_DEVICE_TABLE(platform, s3c24xx_driver_ids); #ifdef CONFIG_OF static const struct of_device_id s3c24xx_i2c_match[] = { { .compatible = "samsung,s3c2410-i2c" }, { .compatible = "samsung,s3c2440-i2c" }, {}, }; MODULE_DEVICE_TABLE(of, s3c24xx_i2c_match); #else #define s3c24xx_i2c_match NULL #endif static struct platform_driver s3c24xx_i2c_driver = { .probe = s3c24xx_i2c_probe, .remove = s3c24xx_i2c_remove, Loading @@ -1020,6 +1131,7 @@ static struct platform_driver s3c24xx_i2c_driver = { .owner = THIS_MODULE, .name = "s3c-i2c", .pm = S3C24XX_DEV_PM_OPS, .of_match_table = s3c24xx_i2c_match, }, }; Loading
drivers/i2c/busses/i2c-tegra.c +1 −1 Original line number Diff line number Diff line Loading @@ -566,7 +566,7 @@ static int tegra_i2c_probe(struct platform_device *pdev) struct clk *clk; struct clk *i2c_clk; const unsigned int *prop; void *base; void __iomem *base; int irq; int ret = 0; Loading