net/ncsi: Disable HWA mode when no channels are found
[linux-2.6/btrfs-unstable.git] / drivers / mfd / arizona.h
bloba0bddc5bd043aaceb4561a2b886d769b2b9a0e67
1 /*
2 * wm5102.h -- WM5102 MFD internals
4 * Copyright 2012 Wolfson Microelectronics plc
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #ifndef _WM5102_H
14 #define _WM5102_H
16 #include <linux/of.h>
17 #include <linux/regmap.h>
18 #include <linux/pm.h>
20 extern const struct regmap_config wm5102_i2c_regmap;
21 extern const struct regmap_config wm5102_spi_regmap;
23 extern const struct regmap_config wm5110_i2c_regmap;
24 extern const struct regmap_config wm5110_spi_regmap;
26 extern const struct regmap_config cs47l24_spi_regmap;
28 extern const struct regmap_config wm8997_i2c_regmap;
30 extern const struct regmap_config wm8998_i2c_regmap;
32 extern const struct dev_pm_ops arizona_pm_ops;
34 extern const struct of_device_id arizona_of_match[];
36 extern const struct regmap_irq_chip wm5102_aod;
37 extern const struct regmap_irq_chip wm5102_irq;
39 extern const struct regmap_irq_chip wm5110_aod;
40 extern const struct regmap_irq_chip wm5110_irq;
41 extern const struct regmap_irq_chip wm5110_revd_irq;
43 extern const struct regmap_irq_chip cs47l24_irq;
45 extern const struct regmap_irq_chip wm8997_aod;
46 extern const struct regmap_irq_chip wm8997_irq;
48 extern struct regmap_irq_chip wm8998_aod;
49 extern struct regmap_irq_chip wm8998_irq;
51 int arizona_dev_init(struct arizona *arizona);
52 int arizona_dev_exit(struct arizona *arizona);
53 int arizona_irq_init(struct arizona *arizona);
54 int arizona_irq_exit(struct arizona *arizona);
56 #ifdef CONFIG_OF
57 unsigned long arizona_of_get_type(struct device *dev);
58 #else
59 static inline unsigned long arizona_of_get_type(struct device *dev)
61 return 0;
63 #endif
65 #endif