Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 1 | /* |
Joonyoung Shim | 2c7e6f5 | 2010-09-10 18:36:39 +0200 | [diff] [blame^] | 2 | * max8998.c - mfd core driver for the Maxim 8998 |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2009-2010 Samsung Electronics |
| 5 | * Kyungmin Park <kyungmin.park@samsung.com> |
| 6 | * Marek Szyprowski <m.szyprowski@samsung.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | */ |
| 22 | |
| 23 | #include <linux/module.h> |
| 24 | #include <linux/moduleparam.h> |
| 25 | #include <linux/init.h> |
| 26 | #include <linux/slab.h> |
| 27 | #include <linux/i2c.h> |
| 28 | #include <linux/mutex.h> |
| 29 | #include <linux/mfd/core.h> |
| 30 | #include <linux/mfd/max8998.h> |
| 31 | #include <linux/mfd/max8998-private.h> |
| 32 | |
| 33 | static struct mfd_cell max8998_devs[] = { |
| 34 | { |
| 35 | .name = "max8998-pmic", |
| 36 | } |
| 37 | }; |
| 38 | |
Joonyoung Shim | 676e02d | 2010-08-06 11:28:06 +0900 | [diff] [blame] | 39 | int max8998_read_reg(struct i2c_client *i2c, u8 reg, u8 *dest) |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 40 | { |
Joonyoung Shim | 676e02d | 2010-08-06 11:28:06 +0900 | [diff] [blame] | 41 | struct max8998_dev *max8998 = i2c_get_clientdata(i2c); |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 42 | int ret; |
| 43 | |
| 44 | mutex_lock(&max8998->iolock); |
Joonyoung Shim | 676e02d | 2010-08-06 11:28:06 +0900 | [diff] [blame] | 45 | ret = i2c_smbus_read_byte_data(i2c, reg); |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 46 | mutex_unlock(&max8998->iolock); |
| 47 | if (ret < 0) |
| 48 | return ret; |
| 49 | |
| 50 | ret &= 0xff; |
| 51 | *dest = ret; |
| 52 | return 0; |
| 53 | } |
Joonyoung Shim | 676e02d | 2010-08-06 11:28:06 +0900 | [diff] [blame] | 54 | EXPORT_SYMBOL(max8998_read_reg); |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 55 | |
Joonyoung Shim | 2c7e6f5 | 2010-09-10 18:36:39 +0200 | [diff] [blame^] | 56 | int max8998_bulk_read(struct i2c_client *i2c, u8 reg, int count, u8 *buf) |
| 57 | { |
| 58 | struct max8998_dev *max8998 = i2c_get_clientdata(i2c); |
| 59 | int ret; |
| 60 | |
| 61 | mutex_lock(&max8998->iolock); |
| 62 | ret = i2c_smbus_read_i2c_block_data(i2c, reg, count, buf); |
| 63 | mutex_unlock(&max8998->iolock); |
| 64 | if (ret < 0) |
| 65 | return ret; |
| 66 | |
| 67 | return 0; |
| 68 | } |
| 69 | EXPORT_SYMBOL(max8998_bulk_read); |
| 70 | |
Joonyoung Shim | 676e02d | 2010-08-06 11:28:06 +0900 | [diff] [blame] | 71 | int max8998_write_reg(struct i2c_client *i2c, u8 reg, u8 value) |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 72 | { |
Joonyoung Shim | 676e02d | 2010-08-06 11:28:06 +0900 | [diff] [blame] | 73 | struct max8998_dev *max8998 = i2c_get_clientdata(i2c); |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 74 | int ret; |
| 75 | |
| 76 | mutex_lock(&max8998->iolock); |
Joonyoung Shim | 676e02d | 2010-08-06 11:28:06 +0900 | [diff] [blame] | 77 | ret = i2c_smbus_write_byte_data(i2c, reg, value); |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 78 | mutex_unlock(&max8998->iolock); |
| 79 | return ret; |
| 80 | } |
Joonyoung Shim | 676e02d | 2010-08-06 11:28:06 +0900 | [diff] [blame] | 81 | EXPORT_SYMBOL(max8998_write_reg); |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 82 | |
Joonyoung Shim | 676e02d | 2010-08-06 11:28:06 +0900 | [diff] [blame] | 83 | int max8998_update_reg(struct i2c_client *i2c, u8 reg, u8 val, u8 mask) |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 84 | { |
Joonyoung Shim | 676e02d | 2010-08-06 11:28:06 +0900 | [diff] [blame] | 85 | struct max8998_dev *max8998 = i2c_get_clientdata(i2c); |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 86 | int ret; |
| 87 | |
| 88 | mutex_lock(&max8998->iolock); |
Joonyoung Shim | 676e02d | 2010-08-06 11:28:06 +0900 | [diff] [blame] | 89 | ret = i2c_smbus_read_byte_data(i2c, reg); |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 90 | if (ret >= 0) { |
| 91 | u8 old_val = ret & 0xff; |
| 92 | u8 new_val = (val & mask) | (old_val & (~mask)); |
Joonyoung Shim | 676e02d | 2010-08-06 11:28:06 +0900 | [diff] [blame] | 93 | ret = i2c_smbus_write_byte_data(i2c, reg, new_val); |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 94 | if (ret >= 0) |
| 95 | ret = 0; |
| 96 | } |
| 97 | mutex_unlock(&max8998->iolock); |
| 98 | return ret; |
| 99 | } |
Joonyoung Shim | 676e02d | 2010-08-06 11:28:06 +0900 | [diff] [blame] | 100 | EXPORT_SYMBOL(max8998_update_reg); |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 101 | |
| 102 | static int max8998_i2c_probe(struct i2c_client *i2c, |
| 103 | const struct i2c_device_id *id) |
| 104 | { |
Joonyoung Shim | 2c7e6f5 | 2010-09-10 18:36:39 +0200 | [diff] [blame^] | 105 | struct max8998_platform_data *pdata = i2c->dev.platform_data; |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 106 | struct max8998_dev *max8998; |
| 107 | int ret = 0; |
| 108 | |
| 109 | max8998 = kzalloc(sizeof(struct max8998_dev), GFP_KERNEL); |
Axel Lin | 8f1f151 | 2010-08-09 14:48:16 +0800 | [diff] [blame] | 110 | if (max8998 == NULL) |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 111 | return -ENOMEM; |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 112 | |
| 113 | i2c_set_clientdata(i2c, max8998); |
| 114 | max8998->dev = &i2c->dev; |
Joonyoung Shim | 676e02d | 2010-08-06 11:28:06 +0900 | [diff] [blame] | 115 | max8998->i2c = i2c; |
Joonyoung Shim | 2c7e6f5 | 2010-09-10 18:36:39 +0200 | [diff] [blame^] | 116 | max8998->irq = i2c->irq; |
| 117 | if (pdata) { |
| 118 | max8998->ono = pdata->ono; |
| 119 | max8998->irq_base = pdata->irq_base; |
| 120 | } |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 121 | mutex_init(&max8998->iolock); |
| 122 | |
Joonyoung Shim | 2c7e6f5 | 2010-09-10 18:36:39 +0200 | [diff] [blame^] | 123 | max8998_irq_init(max8998); |
| 124 | |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 125 | ret = mfd_add_devices(max8998->dev, -1, |
| 126 | max8998_devs, ARRAY_SIZE(max8998_devs), |
| 127 | NULL, 0); |
| 128 | if (ret < 0) |
| 129 | goto err; |
| 130 | |
| 131 | return ret; |
| 132 | |
| 133 | err: |
| 134 | mfd_remove_devices(max8998->dev); |
| 135 | kfree(max8998); |
| 136 | return ret; |
| 137 | } |
| 138 | |
| 139 | static int max8998_i2c_remove(struct i2c_client *i2c) |
| 140 | { |
| 141 | struct max8998_dev *max8998 = i2c_get_clientdata(i2c); |
| 142 | |
| 143 | mfd_remove_devices(max8998->dev); |
| 144 | kfree(max8998); |
| 145 | |
| 146 | return 0; |
| 147 | } |
| 148 | |
| 149 | static const struct i2c_device_id max8998_i2c_id[] = { |
Kyungmin Park | f8539dd | 2010-08-23 13:46:49 +0900 | [diff] [blame] | 150 | { "max8998", 0 }, |
| 151 | { "lp3974", 0 }, |
| 152 | { } |
Kyungmin Park | 156f252 | 2010-06-16 09:04:16 +0200 | [diff] [blame] | 153 | }; |
| 154 | MODULE_DEVICE_TABLE(i2c, max8998_i2c_id); |
| 155 | |
| 156 | static struct i2c_driver max8998_i2c_driver = { |
| 157 | .driver = { |
| 158 | .name = "max8998", |
| 159 | .owner = THIS_MODULE, |
| 160 | }, |
| 161 | .probe = max8998_i2c_probe, |
| 162 | .remove = max8998_i2c_remove, |
| 163 | .id_table = max8998_i2c_id, |
| 164 | }; |
| 165 | |
| 166 | static int __init max8998_i2c_init(void) |
| 167 | { |
| 168 | return i2c_add_driver(&max8998_i2c_driver); |
| 169 | } |
| 170 | /* init early so consumer devices can complete system boot */ |
| 171 | subsys_initcall(max8998_i2c_init); |
| 172 | |
| 173 | static void __exit max8998_i2c_exit(void) |
| 174 | { |
| 175 | i2c_del_driver(&max8998_i2c_driver); |
| 176 | } |
| 177 | module_exit(max8998_i2c_exit); |
| 178 | |
| 179 | MODULE_DESCRIPTION("MAXIM 8998 multi-function core driver"); |
| 180 | MODULE_AUTHOR("Kyungmin Park <kyungmin.park@samsung.com>"); |
| 181 | MODULE_LICENSE("GPL"); |