blob: f736a46eb8c0e41e3785e76dc0e89d17d1306068 [file] [log] [blame]
Qiao Zhou70c6cce2012-07-09 14:37:32 +08001/*
2 * I2C driver for Marvell 88PM80x
3 *
4 * Copyright (C) 2012 Marvell International Ltd.
5 * Haojian Zhuang <haojian.zhuang@marvell.com>
6 * Joseph(Yossi) Hanin <yhanin@marvell.com>
7 * Qiao Zhou <zhouqiao@marvell.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/i2c.h>
16#include <linux/mfd/88pm80x.h>
17#include <linux/slab.h>
18#include <linux/uaccess.h>
19#include <linux/err.h>
20
Qiao Zhou5500e392012-07-09 14:37:33 +080021/*
22 * workaround: some registers needed by pm805 are defined in pm800, so
23 * need to use this global variable to maintain the relation between
24 * pm800 and pm805. would remove it after HW chip fixes the issue.
25 */
26static struct pm80x_chip *g_pm80x_chip;
Qiao Zhou70c6cce2012-07-09 14:37:32 +080027
28const struct regmap_config pm80x_regmap_config = {
29 .reg_bits = 8,
30 .val_bits = 8,
31};
Axel Lin78a73e52012-07-09 22:44:21 +080032EXPORT_SYMBOL_GPL(pm80x_regmap_config);
Qiao Zhou70c6cce2012-07-09 14:37:32 +080033
Bill Pembertonf791be42012-11-19 13:23:04 -050034int pm80x_init(struct i2c_client *client,
Qiao Zhou70c6cce2012-07-09 14:37:32 +080035 const struct i2c_device_id *id)
36{
37 struct pm80x_chip *chip;
38 struct regmap *map;
39 int ret = 0;
40
41 chip =
42 devm_kzalloc(&client->dev, sizeof(struct pm80x_chip), GFP_KERNEL);
43 if (!chip)
44 return -ENOMEM;
45
46 map = devm_regmap_init_i2c(client, &pm80x_regmap_config);
47 if (IS_ERR(map)) {
48 ret = PTR_ERR(map);
49 dev_err(&client->dev, "Failed to allocate register map: %d\n",
50 ret);
Yi Zhang306df792013-01-22 10:43:45 +080051 return ret;
Qiao Zhou70c6cce2012-07-09 14:37:32 +080052 }
53
54 chip->id = id->driver_data;
Yi Zhang306df792013-01-22 10:43:45 +080055 if (chip->id < CHIP_PM800 || chip->id > CHIP_PM805)
56 return -EINVAL;
Qiao Zhou70c6cce2012-07-09 14:37:32 +080057
58 chip->client = client;
59 chip->regmap = map;
60
61 chip->irq = client->irq;
62
63 chip->dev = &client->dev;
64 dev_set_drvdata(chip->dev, chip);
65 i2c_set_clientdata(chip->client, chip);
66
67 device_init_wakeup(&client->dev, 1);
68
Qiao Zhou5500e392012-07-09 14:37:33 +080069 /*
70 * workaround: set g_pm80x_chip to the first probed chip. if the
71 * second chip is probed, just point to the companion to each
72 * other so that pm805 can access those specific register. would
73 * remove it after HW chip fixes the issue.
74 */
75 if (!g_pm80x_chip)
76 g_pm80x_chip = chip;
77 else {
78 chip->companion = g_pm80x_chip->client;
79 g_pm80x_chip->companion = chip->client;
80 }
81
Qiao Zhou70c6cce2012-07-09 14:37:32 +080082 return 0;
Qiao Zhou70c6cce2012-07-09 14:37:32 +080083}
84EXPORT_SYMBOL_GPL(pm80x_init);
85
Yi Zhang306df792013-01-22 10:43:45 +080086int pm80x_deinit(void)
Qiao Zhou70c6cce2012-07-09 14:37:32 +080087{
Qiao Zhou5500e392012-07-09 14:37:33 +080088 /*
89 * workaround: clear the dependency between pm800 and pm805.
90 * would remove it after HW chip fixes the issue.
91 */
92 if (g_pm80x_chip->companion)
93 g_pm80x_chip->companion = NULL;
94 else
95 g_pm80x_chip = NULL;
Qiao Zhou70c6cce2012-07-09 14:37:32 +080096 return 0;
97}
98EXPORT_SYMBOL_GPL(pm80x_deinit);
99
100#ifdef CONFIG_PM_SLEEP
101static int pm80x_suspend(struct device *dev)
102{
103 struct i2c_client *client = container_of(dev, struct i2c_client, dev);
104 struct pm80x_chip *chip = i2c_get_clientdata(client);
105
106 if (chip && chip->wu_flag)
107 if (device_may_wakeup(chip->dev))
108 enable_irq_wake(chip->irq);
109
110 return 0;
111}
112
113static int pm80x_resume(struct device *dev)
114{
115 struct i2c_client *client = container_of(dev, struct i2c_client, dev);
116 struct pm80x_chip *chip = i2c_get_clientdata(client);
117
118 if (chip && chip->wu_flag)
119 if (device_may_wakeup(chip->dev))
120 disable_irq_wake(chip->irq);
121
122 return 0;
123}
124#endif
125
126SIMPLE_DEV_PM_OPS(pm80x_pm_ops, pm80x_suspend, pm80x_resume);
127EXPORT_SYMBOL_GPL(pm80x_pm_ops);
128
129MODULE_DESCRIPTION("I2C Driver for Marvell 88PM80x");
130MODULE_AUTHOR("Qiao Zhou <zhouqiao@marvell.com>");
131MODULE_LICENSE("GPL");