aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mfd
diff options
context:
space:
mode:
authorJoonyoung Shim <jy0922.shim@samsung.com>2010-08-05 22:28:08 -0400
committerSamuel Ortiz <sameo@linux.intel.com>2010-10-28 18:29:06 -0400
commit9b16c0a43b74393cc18666a7748293812c61af1f (patch)
treef75874e30996e6d6b1dc5a975d19f7455c3e44d6 /include/linux/mfd
parent2c7e6f5797140b33ec2b967ff28941e1c7eff4b2 (diff)
rtc: Add MAX8998 rtc driver
This adds support for the RTC provided by the Maxim 8998 chip. This driver was tested on a GONI board by using the rtc-test application from the Documentation/rtc.txt. Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Acked-by: Alessandro Zummo <a.zummo@towertech.it> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'include/linux/mfd')
-rw-r--r--include/linux/mfd/max8998-private.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/mfd/max8998-private.h b/include/linux/mfd/max8998-private.h
index 3bd2371a05f7..170f665c7cdd 100644
--- a/include/linux/mfd/max8998-private.h
+++ b/include/linux/mfd/max8998-private.h
@@ -126,7 +126,8 @@ enum {
126/** 126/**
127 * struct max8998_dev - max8998 master device for sub-drivers 127 * struct max8998_dev - max8998 master device for sub-drivers
128 * @dev: master device of the chip (can be used to access platform data) 128 * @dev: master device of the chip (can be used to access platform data)
129 * @i2c: i2c client private data 129 * @i2c: i2c client private data for regulator
130 * @rtc: i2c client private data for rtc
130 * @iolock: mutex for serializing io access 131 * @iolock: mutex for serializing io access
131 * @irqlock: mutex for buslock 132 * @irqlock: mutex for buslock
132 * @irq_base: base IRQ number for max8998, required for IRQs 133 * @irq_base: base IRQ number for max8998, required for IRQs
@@ -138,6 +139,7 @@ enum {
138struct max8998_dev { 139struct max8998_dev {
139 struct device *dev; 140 struct device *dev;
140 struct i2c_client *i2c; 141 struct i2c_client *i2c;
142 struct i2c_client *rtc;
141 struct mutex iolock; 143 struct mutex iolock;
142 struct mutex irqlock; 144 struct mutex irqlock;
143 145
@@ -155,6 +157,8 @@ extern int max8998_read_reg(struct i2c_client *i2c, u8 reg, u8 *dest);
155extern int max8998_bulk_read(struct i2c_client *i2c, u8 reg, int count, 157extern int max8998_bulk_read(struct i2c_client *i2c, u8 reg, int count,
156 u8 *buf); 158 u8 *buf);
157extern int max8998_write_reg(struct i2c_client *i2c, u8 reg, u8 value); 159extern int max8998_write_reg(struct i2c_client *i2c, u8 reg, u8 value);
160extern int max8998_bulk_write(struct i2c_client *i2c, u8 reg, int count,
161 u8 *buf);
158extern int max8998_update_reg(struct i2c_client *i2c, u8 reg, u8 val, u8 mask); 162extern int max8998_update_reg(struct i2c_client *i2c, u8 reg, u8 val, u8 mask);
159 163
160#endif /* __LINUX_MFD_MAX8998_PRIV_H */ 164#endif /* __LINUX_MFD_MAX8998_PRIV_H */