Merge tag 'v4.0-rc2' into drm-fixes
[linux-2.6-block.git] / drivers / mfd / arizona.h
CommitLineData
3cc72986
MB
1/*
2 * wm5102.h -- WM5102 MFD internals
3 *
4 * Copyright 2012 Wolfson Microelectronics plc
5 *
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.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 version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#ifndef _WM5102_H
14#define _WM5102_H
15
d781009c 16#include <linux/of.h>
3cc72986
MB
17#include <linux/regmap.h>
18#include <linux/pm.h>
19
20struct wm_arizona;
21
22extern const struct regmap_config wm5102_i2c_regmap;
23extern const struct regmap_config wm5102_spi_regmap;
e102befe
MB
24
25extern const struct regmap_config wm5110_i2c_regmap;
26extern const struct regmap_config wm5110_spi_regmap;
27
dc7d4863
CK
28extern const struct regmap_config wm8997_i2c_regmap;
29
3cc72986
MB
30extern const struct dev_pm_ops arizona_pm_ops;
31
d781009c
MB
32extern const struct of_device_id arizona_of_match[];
33
3cc72986
MB
34extern const struct regmap_irq_chip wm5102_aod;
35extern const struct regmap_irq_chip wm5102_irq;
36
e102befe
MB
37extern const struct regmap_irq_chip wm5110_aod;
38extern const struct regmap_irq_chip wm5110_irq;
3215501f 39extern const struct regmap_irq_chip wm5110_revd_irq;
e102befe 40
dc7d4863
CK
41extern const struct regmap_irq_chip wm8997_aod;
42extern const struct regmap_irq_chip wm8997_irq;
43
3cc72986
MB
44int arizona_dev_init(struct arizona *arizona);
45int arizona_dev_exit(struct arizona *arizona);
46int arizona_irq_init(struct arizona *arizona);
47int arizona_irq_exit(struct arizona *arizona);
48
d781009c 49#ifdef CONFIG_OF
942786e6 50unsigned long arizona_of_get_type(struct device *dev);
d781009c 51#else
942786e6 52static inline unsigned long arizona_of_get_type(struct device *dev)
d781009c
MB
53{
54 return 0;
55}
56#endif
57
3cc72986 58#endif