Madhusudhan Chikkature | cfbc619 | 2008-11-12 13:27:11 -0800 | [diff] [blame] | 1 | /* |
| 2 | * drivers/w1/slaves/w1_bq27000.c |
| 3 | * |
| 4 | * Copyright (C) 2007 Texas Instruments, Inc. |
| 5 | * |
| 6 | * This file is licensed under the terms of the GNU General Public License |
| 7 | * version 2. This program is licensed "as is" without any warranty of any |
| 8 | * kind, whether express or implied. |
| 9 | * |
| 10 | */ |
| 11 | |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/device.h> |
| 15 | #include <linux/types.h> |
| 16 | #include <linux/platform_device.h> |
| 17 | #include <linux/mutex.h> |
NeilBrown | 9f3519d | 2012-02-15 18:21:42 +0100 | [diff] [blame] | 18 | #include <linux/power/bq27x00_battery.h> |
Madhusudhan Chikkature | cfbc619 | 2008-11-12 13:27:11 -0800 | [diff] [blame] | 19 | |
| 20 | #include "../w1.h" |
| 21 | #include "../w1_int.h" |
| 22 | #include "../w1_family.h" |
| 23 | |
| 24 | #define HDQ_CMD_READ (0) |
| 25 | #define HDQ_CMD_WRITE (1<<7) |
| 26 | |
| 27 | static int F_ID; |
| 28 | |
NeilBrown | 9f3519d | 2012-02-15 18:21:42 +0100 | [diff] [blame] | 29 | static int w1_bq27000_read(struct device *dev, unsigned int reg) |
Madhusudhan Chikkature | cfbc619 | 2008-11-12 13:27:11 -0800 | [diff] [blame] | 30 | { |
| 31 | u8 val; |
NeilBrown | 9f3519d | 2012-02-15 18:21:42 +0100 | [diff] [blame] | 32 | struct w1_slave *sl = container_of(dev->parent, struct w1_slave, dev); |
Madhusudhan Chikkature | cfbc619 | 2008-11-12 13:27:11 -0800 | [diff] [blame] | 33 | |
NeilBrown | f6e8a1d | 2012-02-19 13:10:00 +1100 | [diff] [blame] | 34 | mutex_lock(&sl->master->mutex); |
Madhusudhan Chikkature | cfbc619 | 2008-11-12 13:27:11 -0800 | [diff] [blame] | 35 | w1_write_8(sl->master, HDQ_CMD_READ | reg); |
| 36 | val = w1_read_8(sl->master); |
NeilBrown | f6e8a1d | 2012-02-19 13:10:00 +1100 | [diff] [blame] | 37 | mutex_unlock(&sl->master->mutex); |
Madhusudhan Chikkature | cfbc619 | 2008-11-12 13:27:11 -0800 | [diff] [blame] | 38 | |
| 39 | return val; |
| 40 | } |
NeilBrown | 9f3519d | 2012-02-15 18:21:42 +0100 | [diff] [blame] | 41 | |
| 42 | static struct bq27000_platform_data bq27000_battery_info = { |
| 43 | .read = w1_bq27000_read, |
| 44 | .name = "bq27000-battery", |
| 45 | }; |
Madhusudhan Chikkature | cfbc619 | 2008-11-12 13:27:11 -0800 | [diff] [blame] | 46 | |
| 47 | static int w1_bq27000_add_slave(struct w1_slave *sl) |
| 48 | { |
| 49 | int ret; |
Madhusudhan Chikkature | cfbc619 | 2008-11-12 13:27:11 -0800 | [diff] [blame] | 50 | struct platform_device *pdev; |
| 51 | |
NeilBrown | 9f3519d | 2012-02-15 18:21:42 +0100 | [diff] [blame] | 52 | pdev = platform_device_alloc("bq27000-battery", -1); |
Madhusudhan Chikkature | cfbc619 | 2008-11-12 13:27:11 -0800 | [diff] [blame] | 53 | if (!pdev) { |
| 54 | ret = -ENOMEM; |
| 55 | return ret; |
| 56 | } |
NeilBrown | 9f3519d | 2012-02-15 18:21:42 +0100 | [diff] [blame] | 57 | ret = platform_device_add_data(pdev, |
| 58 | &bq27000_battery_info, |
| 59 | sizeof(bq27000_battery_info)); |
Madhusudhan Chikkature | cfbc619 | 2008-11-12 13:27:11 -0800 | [diff] [blame] | 60 | pdev->dev.parent = &sl->dev; |
| 61 | |
| 62 | ret = platform_device_add(pdev); |
| 63 | if (ret) |
| 64 | goto pdev_add_failed; |
| 65 | |
| 66 | dev_set_drvdata(&sl->dev, pdev); |
| 67 | |
| 68 | goto success; |
| 69 | |
| 70 | pdev_add_failed: |
| 71 | platform_device_unregister(pdev); |
| 72 | success: |
| 73 | return ret; |
| 74 | } |
| 75 | |
| 76 | static void w1_bq27000_remove_slave(struct w1_slave *sl) |
| 77 | { |
| 78 | struct platform_device *pdev = dev_get_drvdata(&sl->dev); |
| 79 | |
| 80 | platform_device_unregister(pdev); |
| 81 | } |
| 82 | |
| 83 | static struct w1_family_ops w1_bq27000_fops = { |
| 84 | .add_slave = w1_bq27000_add_slave, |
| 85 | .remove_slave = w1_bq27000_remove_slave, |
| 86 | }; |
| 87 | |
| 88 | static struct w1_family w1_bq27000_family = { |
| 89 | .fid = 1, |
| 90 | .fops = &w1_bq27000_fops, |
| 91 | }; |
| 92 | |
| 93 | static int __init w1_bq27000_init(void) |
| 94 | { |
| 95 | if (F_ID) |
| 96 | w1_bq27000_family.fid = F_ID; |
| 97 | |
| 98 | return w1_register_family(&w1_bq27000_family); |
| 99 | } |
| 100 | |
| 101 | static void __exit w1_bq27000_exit(void) |
| 102 | { |
| 103 | w1_unregister_family(&w1_bq27000_family); |
| 104 | } |
| 105 | |
| 106 | |
| 107 | module_init(w1_bq27000_init); |
| 108 | module_exit(w1_bq27000_exit); |
| 109 | |
| 110 | module_param(F_ID, int, S_IRUSR); |
| 111 | MODULE_PARM_DESC(F_ID, "1-wire slave FID for BQ device"); |
| 112 | |
| 113 | MODULE_LICENSE("GPL"); |
| 114 | MODULE_AUTHOR("Texas Instruments Ltd"); |
| 115 | MODULE_DESCRIPTION("HDQ/1-wire slave driver bq27000 battery monitor chip"); |