blob: 198e9cea77f9cdb9dce5540e0ec472c5276645bf [file] [log] [blame]
Mark Brown3cc72982012-06-19 16:31:53 +01001/*
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
Mark Brownd7810092013-03-25 00:11:27 +000016#include <linux/of.h>
Mark Brown3cc72982012-06-19 16:31:53 +010017#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;
Mark Browne102bef2012-07-10 12:37:58 +010024
25extern const struct regmap_config wm5110_i2c_regmap;
26extern const struct regmap_config wm5110_spi_regmap;
27
Richard Fitzgeraldea1f3332015-11-03 15:08:32 +000028extern const struct regmap_config cs47l24_spi_regmap;
29
Charles Keepaxdc7d4862013-06-13 09:43:29 +010030extern const struct regmap_config wm8997_i2c_regmap;
31
Richard Fitzgerald6887b042015-07-03 16:16:35 +010032extern const struct regmap_config wm8998_i2c_regmap;
33
Mark Brown3cc72982012-06-19 16:31:53 +010034extern const struct dev_pm_ops arizona_pm_ops;
35
Mark Brownd7810092013-03-25 00:11:27 +000036extern const struct of_device_id arizona_of_match[];
37
Mark Brown3cc72982012-06-19 16:31:53 +010038extern const struct regmap_irq_chip wm5102_aod;
39extern const struct regmap_irq_chip wm5102_irq;
40
Mark Browne102bef2012-07-10 12:37:58 +010041extern const struct regmap_irq_chip wm5110_aod;
42extern const struct regmap_irq_chip wm5110_irq;
Charles Keepax32155012014-07-15 11:21:48 +010043extern const struct regmap_irq_chip wm5110_revd_irq;
Mark Browne102bef2012-07-10 12:37:58 +010044
Richard Fitzgeraldea1f3332015-11-03 15:08:32 +000045extern const struct regmap_irq_chip cs47l24_irq;
46
Charles Keepaxdc7d4862013-06-13 09:43:29 +010047extern const struct regmap_irq_chip wm8997_aod;
48extern const struct regmap_irq_chip wm8997_irq;
49
Richard Fitzgerald6887b042015-07-03 16:16:35 +010050extern struct regmap_irq_chip wm8998_aod;
51extern struct regmap_irq_chip wm8998_irq;
52
Mark Brown3cc72982012-06-19 16:31:53 +010053int arizona_dev_init(struct arizona *arizona);
54int arizona_dev_exit(struct arizona *arizona);
55int arizona_irq_init(struct arizona *arizona);
56int arizona_irq_exit(struct arizona *arizona);
57
Mark Brownd7810092013-03-25 00:11:27 +000058#ifdef CONFIG_OF
Lee Jones942786e2014-07-02 14:28:46 +010059unsigned long arizona_of_get_type(struct device *dev);
Mark Brownd7810092013-03-25 00:11:27 +000060#else
Lee Jones942786e2014-07-02 14:28:46 +010061static inline unsigned long arizona_of_get_type(struct device *dev)
Mark Brownd7810092013-03-25 00:11:27 +000062{
63 return 0;
64}
65#endif
66
Mark Brown3cc72982012-06-19 16:31:53 +010067#endif