]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/mfd/arizona.h
treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500
[mirror_ubuntu-hirsute-kernel.git] / drivers / mfd / arizona.h
CommitLineData
d2912cb1 1/* SPDX-License-Identifier: GPL-2.0-only */
3cc72986
MB
2/*
3 * wm5102.h -- WM5102 MFD internals
4 *
5 * Copyright 2012 Wolfson Microelectronics plc
6 *
7 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
3cc72986
MB
8 */
9
10#ifndef _WM5102_H
11#define _WM5102_H
12
d781009c 13#include <linux/of.h>
3cc72986
MB
14#include <linux/regmap.h>
15#include <linux/pm.h>
16
3cc72986
MB
17extern const struct regmap_config wm5102_i2c_regmap;
18extern const struct regmap_config wm5102_spi_regmap;
e102befe
MB
19
20extern const struct regmap_config wm5110_i2c_regmap;
21extern const struct regmap_config wm5110_spi_regmap;
22
ea1f3339
RF
23extern const struct regmap_config cs47l24_spi_regmap;
24
dc7d4863
CK
25extern const struct regmap_config wm8997_i2c_regmap;
26
6887b042
RF
27extern const struct regmap_config wm8998_i2c_regmap;
28
3cc72986
MB
29extern const struct dev_pm_ops arizona_pm_ops;
30
d781009c
MB
31extern const struct of_device_id arizona_of_match[];
32
3cc72986
MB
33extern const struct regmap_irq_chip wm5102_aod;
34extern const struct regmap_irq_chip wm5102_irq;
35
e102befe
MB
36extern const struct regmap_irq_chip wm5110_aod;
37extern const struct regmap_irq_chip wm5110_irq;
3215501f 38extern const struct regmap_irq_chip wm5110_revd_irq;
e102befe 39
ea1f3339
RF
40extern const struct regmap_irq_chip cs47l24_irq;
41
dc7d4863
CK
42extern const struct regmap_irq_chip wm8997_aod;
43extern const struct regmap_irq_chip wm8997_irq;
44
6887b042
RF
45extern struct regmap_irq_chip wm8998_aod;
46extern struct regmap_irq_chip wm8998_irq;
47
3cc72986
MB
48int arizona_dev_init(struct arizona *arizona);
49int arizona_dev_exit(struct arizona *arizona);
50int arizona_irq_init(struct arizona *arizona);
51int arizona_irq_exit(struct arizona *arizona);
52
d781009c 53#ifdef CONFIG_OF
942786e6 54unsigned long arizona_of_get_type(struct device *dev);
d781009c 55#else
942786e6 56static inline unsigned long arizona_of_get_type(struct device *dev)
d781009c
MB
57{
58 return 0;
59}
60#endif
61
3cc72986 62#endif