]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/mfd/arizona.h
ceph: fix memory leak in __ceph_setxattr()
[mirror_ubuntu-bionic-kernel.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
3cc72986
MB
20extern const struct regmap_config wm5102_i2c_regmap;
21extern const struct regmap_config wm5102_spi_regmap;
e102befe
MB
22
23extern const struct regmap_config wm5110_i2c_regmap;
24extern const struct regmap_config wm5110_spi_regmap;
25
ea1f3339
RF
26extern const struct regmap_config cs47l24_spi_regmap;
27
dc7d4863
CK
28extern const struct regmap_config wm8997_i2c_regmap;
29
6887b042
RF
30extern const struct regmap_config wm8998_i2c_regmap;
31
3cc72986
MB
32extern const struct dev_pm_ops arizona_pm_ops;
33
d781009c
MB
34extern const struct of_device_id arizona_of_match[];
35
3cc72986
MB
36extern const struct regmap_irq_chip wm5102_aod;
37extern const struct regmap_irq_chip wm5102_irq;
38
e102befe
MB
39extern const struct regmap_irq_chip wm5110_aod;
40extern const struct regmap_irq_chip wm5110_irq;
3215501f 41extern const struct regmap_irq_chip wm5110_revd_irq;
e102befe 42
ea1f3339
RF
43extern const struct regmap_irq_chip cs47l24_irq;
44
dc7d4863
CK
45extern const struct regmap_irq_chip wm8997_aod;
46extern const struct regmap_irq_chip wm8997_irq;
47
6887b042
RF
48extern struct regmap_irq_chip wm8998_aod;
49extern struct regmap_irq_chip wm8998_irq;
50
3cc72986
MB
51int arizona_dev_init(struct arizona *arizona);
52int arizona_dev_exit(struct arizona *arizona);
53int arizona_irq_init(struct arizona *arizona);
54int arizona_irq_exit(struct arizona *arizona);
55
d781009c 56#ifdef CONFIG_OF
942786e6 57unsigned long arizona_of_get_type(struct device *dev);
d781009c 58#else
942786e6 59static inline unsigned long arizona_of_get_type(struct device *dev)
d781009c
MB
60{
61 return 0;
62}
63#endif
64
3cc72986 65#endif