Mark Brown | 3cc7298 | 2012-06-19 16:31:53 +0100 | [diff] [blame^] | 1 | /* |
| 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 | |
| 16 | #include <linux/regmap.h> |
| 17 | #include <linux/pm.h> |
| 18 | |
| 19 | struct wm_arizona; |
| 20 | |
| 21 | extern const struct regmap_config wm5102_i2c_regmap; |
| 22 | extern const struct regmap_config wm5102_spi_regmap; |
| 23 | extern const struct dev_pm_ops arizona_pm_ops; |
| 24 | |
| 25 | extern const struct regmap_irq_chip wm5102_aod; |
| 26 | extern const struct regmap_irq_chip wm5102_irq; |
| 27 | |
| 28 | int arizona_dev_init(struct arizona *arizona); |
| 29 | int arizona_dev_exit(struct arizona *arizona); |
| 30 | int arizona_irq_init(struct arizona *arizona); |
| 31 | int arizona_irq_exit(struct arizona *arizona); |
| 32 | |
| 33 | #endif |