2012-06-19 17:31:53 +02:00
|
|
|
/*
|
|
|
|
* wm5102.h -- WM5102 MFD internals
|
|
|
|
*
|
|
|
|
* Copyright 2012 Wolfson Microelectronics plc
|
|
|
|
*
|
|
|
|
* Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _WM5102_H
|
|
|
|
#define _WM5102_H
|
|
|
|
|
2013-03-25 01:11:27 +01:00
|
|
|
#include <linux/of.h>
|
2012-06-19 17:31:53 +02:00
|
|
|
#include <linux/regmap.h>
|
|
|
|
#include <linux/pm.h>
|
|
|
|
|
|
|
|
extern const struct regmap_config wm5102_i2c_regmap;
|
|
|
|
extern const struct regmap_config wm5102_spi_regmap;
|
2012-07-10 13:37:58 +02:00
|
|
|
|
|
|
|
extern const struct regmap_config wm5110_i2c_regmap;
|
|
|
|
extern const struct regmap_config wm5110_spi_regmap;
|
|
|
|
|
2015-11-03 16:08:32 +01:00
|
|
|
extern const struct regmap_config cs47l24_spi_regmap;
|
|
|
|
|
2013-06-13 10:43:29 +02:00
|
|
|
extern const struct regmap_config wm8997_i2c_regmap;
|
|
|
|
|
2015-07-03 17:16:35 +02:00
|
|
|
extern const struct regmap_config wm8998_i2c_regmap;
|
|
|
|
|
2012-06-19 17:31:53 +02:00
|
|
|
extern const struct dev_pm_ops arizona_pm_ops;
|
|
|
|
|
2013-03-25 01:11:27 +01:00
|
|
|
extern const struct of_device_id arizona_of_match[];
|
|
|
|
|
2012-06-19 17:31:53 +02:00
|
|
|
extern const struct regmap_irq_chip wm5102_aod;
|
|
|
|
extern const struct regmap_irq_chip wm5102_irq;
|
|
|
|
|
2012-07-10 13:37:58 +02:00
|
|
|
extern const struct regmap_irq_chip wm5110_aod;
|
|
|
|
extern const struct regmap_irq_chip wm5110_irq;
|
2014-07-15 12:21:48 +02:00
|
|
|
extern const struct regmap_irq_chip wm5110_revd_irq;
|
2012-07-10 13:37:58 +02:00
|
|
|
|
2015-11-03 16:08:32 +01:00
|
|
|
extern const struct regmap_irq_chip cs47l24_irq;
|
|
|
|
|
2013-06-13 10:43:29 +02:00
|
|
|
extern const struct regmap_irq_chip wm8997_aod;
|
|
|
|
extern const struct regmap_irq_chip wm8997_irq;
|
|
|
|
|
2015-07-03 17:16:35 +02:00
|
|
|
extern struct regmap_irq_chip wm8998_aod;
|
|
|
|
extern struct regmap_irq_chip wm8998_irq;
|
|
|
|
|
2012-06-19 17:31:53 +02:00
|
|
|
int arizona_dev_init(struct arizona *arizona);
|
|
|
|
int arizona_dev_exit(struct arizona *arizona);
|
|
|
|
int arizona_irq_init(struct arizona *arizona);
|
|
|
|
int arizona_irq_exit(struct arizona *arizona);
|
|
|
|
|
2013-03-25 01:11:27 +01:00
|
|
|
#ifdef CONFIG_OF
|
2014-07-02 15:28:46 +02:00
|
|
|
unsigned long arizona_of_get_type(struct device *dev);
|
2013-03-25 01:11:27 +01:00
|
|
|
#else
|
2014-07-02 15:28:46 +02:00
|
|
|
static inline unsigned long arizona_of_get_type(struct device *dev)
|
2013-03-25 01:11:27 +01:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-06-19 17:31:53 +02:00
|
|
|
#endif
|