mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 01:04:19 +08:00
16b27467f4
This adds the generic core support for Cirrus Logic "Madera" class codecs. These are complex audio codec SoCs with a variety of digital and analogue I/O, onboard audio processing and DSPs, and other features. These codecs are all based off a common set of hardware IP so can be supported by a core of common code (with a few minor device-to-device variations). Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com> Signed-off-by: Nikesh Oswal <Nikesh.Oswal@cirrus.com> Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
45 lines
1.5 KiB
C
45 lines
1.5 KiB
C
/*
|
|
* MFD internals for Cirrus Logic Madera codecs
|
|
*
|
|
* Copyright 2015-2018 Cirrus Logic
|
|
*
|
|
* 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 MADERA_MFD_H
|
|
#define MADERA_MFD_H
|
|
|
|
#include <linux/of.h>
|
|
#include <linux/pm.h>
|
|
|
|
struct madera;
|
|
|
|
extern const struct dev_pm_ops madera_pm_ops;
|
|
extern const struct of_device_id madera_of_match[];
|
|
|
|
int madera_dev_init(struct madera *madera);
|
|
int madera_dev_exit(struct madera *madera);
|
|
|
|
const char *madera_name_from_type(enum madera_type type);
|
|
|
|
extern const struct regmap_config cs47l35_16bit_spi_regmap;
|
|
extern const struct regmap_config cs47l35_32bit_spi_regmap;
|
|
extern const struct regmap_config cs47l35_16bit_i2c_regmap;
|
|
extern const struct regmap_config cs47l35_32bit_i2c_regmap;
|
|
int cs47l35_patch(struct madera *madera);
|
|
|
|
extern const struct regmap_config cs47l85_16bit_spi_regmap;
|
|
extern const struct regmap_config cs47l85_32bit_spi_regmap;
|
|
extern const struct regmap_config cs47l85_16bit_i2c_regmap;
|
|
extern const struct regmap_config cs47l85_32bit_i2c_regmap;
|
|
int cs47l85_patch(struct madera *madera);
|
|
|
|
extern const struct regmap_config cs47l90_16bit_spi_regmap;
|
|
extern const struct regmap_config cs47l90_32bit_spi_regmap;
|
|
extern const struct regmap_config cs47l90_16bit_i2c_regmap;
|
|
extern const struct regmap_config cs47l90_32bit_i2c_regmap;
|
|
int cs47l90_patch(struct madera *madera);
|
|
#endif
|