Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 1 | /* |
| 2 | * drivers/mfd/mfd-core.h |
| 3 | * |
| 4 | * core MFD support |
| 5 | * Copyright (c) 2006 Ian Molton |
| 6 | * Copyright (c) 2007 Dmitry Baryshkov |
| 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 | |
Ben Dooks | 7f71ac9 | 2008-07-28 18:29:09 +0200 | [diff] [blame] | 14 | #ifndef MFD_CORE_H |
| 15 | #define MFD_CORE_H |
| 16 | |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 17 | #include <linux/platform_device.h> |
| 18 | |
Mark Brown | 0848c94 | 2012-09-11 15:16:36 +0800 | [diff] [blame] | 19 | struct irq_domain; |
Heikki Krogerus | f4d0526 | 2016-03-29 14:52:23 +0300 | [diff] [blame] | 20 | struct property_entry; |
Mark Brown | 0848c94 | 2012-09-11 15:16:36 +0800 | [diff] [blame] | 21 | |
Andy Shevchenko | 98a3be4 | 2015-10-23 12:16:41 +0300 | [diff] [blame] | 22 | /* Matches ACPI PNP id, either _HID or _CID, or ACPI _ADR */ |
| 23 | struct mfd_cell_acpi_match { |
| 24 | const char *pnpid; |
| 25 | const unsigned long long adr; |
| 26 | }; |
| 27 | |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 28 | /* |
| 29 | * This struct describes the MFD part ("cell"). |
| 30 | * After registration the copy of this structure will become the platform data |
| 31 | * of the resulting platform_device |
| 32 | */ |
| 33 | struct mfd_cell { |
| 34 | const char *name; |
Mark Brown | 3bed6e4 | 2009-07-27 14:45:51 +0100 | [diff] [blame] | 35 | int id; |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 36 | |
Andres Salomon | 1e29af6 | 2011-02-17 19:07:34 -0800 | [diff] [blame] | 37 | /* refcounting for multiple drivers to use a single cell */ |
| 38 | atomic_t *usage_count; |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 39 | int (*enable)(struct platform_device *dev); |
| 40 | int (*disable)(struct platform_device *dev); |
Andres Salomon | 1e29af6 | 2011-02-17 19:07:34 -0800 | [diff] [blame] | 41 | |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 42 | int (*suspend)(struct platform_device *dev); |
| 43 | int (*resume)(struct platform_device *dev); |
| 44 | |
Samuel Ortiz | eb89560 | 2011-04-06 16:52:52 +0200 | [diff] [blame] | 45 | /* platform data passed to the sub devices drivers */ |
| 46 | void *platform_data; |
| 47 | size_t pdata_size; |
Andy Shevchenko | 4d215ca | 2015-11-30 17:11:40 +0200 | [diff] [blame] | 48 | |
| 49 | /* device properties passed to the sub devices drivers */ |
Heikki Krogerus | f4d0526 | 2016-03-29 14:52:23 +0300 | [diff] [blame] | 50 | struct property_entry *properties; |
Andy Shevchenko | 4d215ca | 2015-11-30 17:11:40 +0200 | [diff] [blame] | 51 | |
Lee Jones | 2968ab1 | 2012-07-02 10:50:19 +0100 | [diff] [blame] | 52 | /* |
| 53 | * Device Tree compatible string |
| 54 | * See: Documentation/devicetree/usage-model.txt Chapter 2.2 for details |
| 55 | */ |
Lee Jones | c94bb23 | 2012-06-29 19:01:03 +0200 | [diff] [blame] | 56 | const char *of_compatible; |
Samuel Ortiz | eb89560 | 2011-04-06 16:52:52 +0200 | [diff] [blame] | 57 | |
Andy Shevchenko | 98a3be4 | 2015-10-23 12:16:41 +0300 | [diff] [blame] | 58 | /* Matches ACPI */ |
| 59 | const struct mfd_cell_acpi_match *acpi_match; |
Mika Westerberg | 6ab3430 | 2014-09-16 14:52:36 +0300 | [diff] [blame] | 60 | |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 61 | /* |
Andres Salomon | 2798e22 | 2011-02-17 19:07:08 -0800 | [diff] [blame] | 62 | * These resources can be specified relative to the parent device. |
| 63 | * For accessing hardware you should use resources from the platform dev |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 64 | */ |
| 65 | int num_resources; |
| 66 | const struct resource *resources; |
Daniel Drake | 5f2545f | 2010-09-30 21:55:36 +0100 | [diff] [blame] | 67 | |
| 68 | /* don't check for resource conflicts */ |
| 69 | bool ignore_resource_conflicts; |
Mark Brown | 4c90aa9 | 2010-11-26 17:19:34 +0000 | [diff] [blame] | 70 | |
| 71 | /* |
| 72 | * Disable runtime PM callbacks for this subdevice - see |
| 73 | * pm_runtime_no_callbacks(). |
| 74 | */ |
| 75 | bool pm_runtime_no_callbacks; |
Charles Keepax | 7fcd427 | 2013-10-15 20:14:21 +0100 | [diff] [blame] | 76 | |
| 77 | /* A list of regulator supplies that should be mapped to the MFD |
| 78 | * device rather than the child device when requested |
| 79 | */ |
Lee Jones | 9f8c0fe | 2014-05-23 16:44:10 +0100 | [diff] [blame] | 80 | const char * const *parent_supplies; |
Charles Keepax | 7fcd427 | 2013-10-15 20:14:21 +0100 | [diff] [blame] | 81 | int num_parent_supplies; |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 82 | }; |
| 83 | |
Andres Salomon | fe891a0 | 2011-02-17 19:07:09 -0800 | [diff] [blame] | 84 | /* |
Andres Salomon | 1e29af6 | 2011-02-17 19:07:34 -0800 | [diff] [blame] | 85 | * Convenience functions for clients using shared cells. Refcounting |
| 86 | * happens automatically, with the cell's enable/disable callbacks |
| 87 | * being called only when a device is first being enabled or no other |
| 88 | * clients are making use of it. |
| 89 | */ |
Andres Salomon | f77289a | 2011-03-03 09:51:58 -0800 | [diff] [blame] | 90 | extern int mfd_cell_enable(struct platform_device *pdev); |
| 91 | extern int mfd_cell_disable(struct platform_device *pdev); |
Andres Salomon | 1e29af6 | 2011-02-17 19:07:34 -0800 | [diff] [blame] | 92 | |
| 93 | /* |
Andres Salomon | fa1df69 | 2011-03-21 19:19:35 -0700 | [diff] [blame] | 94 | * "Clone" multiple platform devices for a single cell. This is to be used |
| 95 | * for devices that have multiple users of a cell. For example, if an mfd |
| 96 | * driver wants the cell "foo" to be used by a GPIO driver, an MTD driver, |
| 97 | * and a platform driver, the following bit of code would be use after first |
| 98 | * calling mfd_add_devices(): |
| 99 | * |
| 100 | * const char *fclones[] = { "foo-gpio", "foo-mtd" }; |
| 101 | * err = mfd_clone_cells("foo", fclones, ARRAY_SIZE(fclones)); |
| 102 | * |
| 103 | * Each driver (MTD, GPIO, and platform driver) would then register |
| 104 | * platform_drivers for "foo-mtd", "foo-gpio", and "foo", respectively. |
| 105 | * The cell's .enable/.disable hooks should be used to deal with hardware |
| 106 | * resource contention. |
| 107 | */ |
| 108 | extern int mfd_clone_cell(const char *cell, const char **clones, |
| 109 | size_t n_clones); |
| 110 | |
| 111 | /* |
Andres Salomon | fe891a0 | 2011-02-17 19:07:09 -0800 | [diff] [blame] | 112 | * Given a platform device that's been created by mfd_add_devices(), fetch |
| 113 | * the mfd_cell that created it. |
| 114 | */ |
| 115 | static inline const struct mfd_cell *mfd_get_cell(struct platform_device *pdev) |
| 116 | { |
Samuel Ortiz | e710d7d | 2011-04-08 00:43:01 +0200 | [diff] [blame] | 117 | return pdev->mfd_cell; |
Andres Salomon | fe891a0 | 2011-02-17 19:07:09 -0800 | [diff] [blame] | 118 | } |
| 119 | |
Dmitry Baryshkov | 424f525 | 2008-07-29 01:30:26 +0200 | [diff] [blame] | 120 | extern int mfd_add_devices(struct device *parent, int id, |
Geert Uytterhoeven | 03e361b | 2013-10-29 10:03:04 +0100 | [diff] [blame] | 121 | const struct mfd_cell *cells, int n_devs, |
Ben Dooks | 7f71ac9 | 2008-07-28 18:29:09 +0200 | [diff] [blame] | 122 | struct resource *mem_base, |
Mark Brown | 0848c94 | 2012-09-11 15:16:36 +0800 | [diff] [blame] | 123 | int irq_base, struct irq_domain *irq_domain); |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 124 | |
Johan Hovold | a797547 | 2014-09-26 12:55:30 +0200 | [diff] [blame] | 125 | static inline int mfd_add_hotplug_devices(struct device *parent, |
| 126 | const struct mfd_cell *cells, int n_devs) |
| 127 | { |
| 128 | return mfd_add_devices(parent, PLATFORM_DEVID_AUTO, cells, n_devs, |
| 129 | NULL, 0, NULL); |
| 130 | } |
| 131 | |
Dmitry Baryshkov | 424f525 | 2008-07-29 01:30:26 +0200 | [diff] [blame] | 132 | extern void mfd_remove_devices(struct device *parent); |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 133 | |
Laxman Dewangan | a8f447be | 2016-04-08 00:12:55 +0530 | [diff] [blame] | 134 | extern int devm_mfd_add_devices(struct device *dev, int id, |
| 135 | const struct mfd_cell *cells, int n_devs, |
| 136 | struct resource *mem_base, |
| 137 | int irq_base, struct irq_domain *irq_domain); |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 138 | #endif |