mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-07 08:48:05 -04:00
88 lines
2.6 KiB
C
88 lines
2.6 KiB
C
/*
|
|
* arizona.h -- WM5102 MFD internals
|
|
*
|
|
* Copyright 2014 Cirrus Logic
|
|
* 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 _ARIZONA_H
|
|
#define _ARIZONA_H
|
|
|
|
#include <linux/of.h>
|
|
#include <linux/regmap.h>
|
|
#include <linux/pm.h>
|
|
|
|
struct wm_arizona;
|
|
|
|
extern const struct regmap_config wm5102_i2c_regmap;
|
|
extern const struct regmap_config wm5102_spi_regmap;
|
|
|
|
extern const struct regmap_config florida_i2c_regmap;
|
|
extern const struct regmap_config florida_spi_regmap;
|
|
|
|
extern const struct regmap_config clearwater_16bit_i2c_regmap;
|
|
extern const struct regmap_config clearwater_16bit_spi_regmap;
|
|
extern const struct regmap_config clearwater_32bit_spi_regmap;
|
|
extern const struct regmap_config clearwater_32bit_i2c_regmap;
|
|
|
|
extern const struct regmap_config marley_16bit_i2c_regmap;
|
|
extern const struct regmap_config marley_16bit_spi_regmap;
|
|
extern const struct regmap_config marley_32bit_spi_regmap;
|
|
extern const struct regmap_config marley_32bit_i2c_regmap;
|
|
|
|
extern const struct regmap_config moon_16bit_i2c_regmap;
|
|
extern const struct regmap_config moon_16bit_spi_regmap;
|
|
extern const struct regmap_config moon_32bit_spi_regmap;
|
|
extern const struct regmap_config moon_32bit_i2c_regmap;
|
|
|
|
extern const struct regmap_config wm8997_i2c_regmap;
|
|
|
|
extern const struct regmap_config vegas_i2c_regmap;
|
|
|
|
extern const struct regmap_config largo_spi_regmap;
|
|
|
|
extern const struct dev_pm_ops arizona_pm_ops;
|
|
|
|
extern const struct of_device_id arizona_of_match[];
|
|
|
|
extern const struct regmap_irq_chip wm5102_aod;
|
|
extern const struct regmap_irq_chip wm5102_irq;
|
|
|
|
extern const struct regmap_irq_chip florida_aod;
|
|
extern const struct regmap_irq_chip florida_irq;
|
|
extern const struct regmap_irq_chip florida_revd_irq;
|
|
|
|
extern const struct regmap_irq_chip clearwater_irq;
|
|
extern const struct regmap_irq_chip moon_irq;
|
|
|
|
extern const struct regmap_irq_chip wm8997_aod;
|
|
extern const struct regmap_irq_chip wm8997_irq;
|
|
|
|
extern struct regmap_irq_chip vegas_aod;
|
|
extern struct regmap_irq_chip vegas_irq;
|
|
|
|
extern const struct regmap_irq_chip largo_irq;
|
|
|
|
extern const struct regmap_irq_chip marley_irq;
|
|
|
|
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);
|
|
|
|
#ifdef CONFIG_OF
|
|
unsigned long arizona_of_get_type(struct device *dev);
|
|
#else
|
|
static inline unsigned long arizona_of_get_type(struct device *dev)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
#endif
|