aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndres Salomon <dilinger@queued.net>2011-02-17 22:07:09 -0500
committerSamuel Ortiz <sameo@linux.intel.com>2011-03-23 05:41:50 -0400
commitfe891a008f3310be47786e87c158edebdb71e265 (patch)
treea89b8b9ffbf07308009e4e2f568181c0e7e5804f
parent2798e226ad7db82725ba03da933638e981b472f7 (diff)
mfd-core: Unconditionally add mfd_cell to every platform_device
Previously, one would set the mfd_cell's platform_data/data_size to point to the current mfd_cell in order to pass that information along to drivers. This causes the current mfd_cell to always be available to drivers. It also adds a wrapper function for fetching the mfd cell from a platform device, similar to what originally existed for mfd devices. Drivers who previously used platform_data for other purposes can still use it; the difference is that mfd_get_data() must be used to access it (and the pdata structure is no longer allocated in mfd_add_devices). Note that mfd_get_data is intentionally vague (in name) about where the data is stored; variable name changes can come later without having to touch brazillions of drivers. Signed-off-by: Andres Salomon <dilinger@queued.net> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
-rw-r--r--drivers/mfd/mfd-core.c9
-rw-r--r--include/linux/mfd/core.h23
2 files changed, 24 insertions, 8 deletions
diff --git a/drivers/mfd/mfd-core.c b/drivers/mfd/mfd-core.c
index d83ad0f141a..21a39dc64ea 100644
--- a/drivers/mfd/mfd-core.c
+++ b/drivers/mfd/mfd-core.c
@@ -39,12 +39,9 @@ static int mfd_add_device(struct device *parent, int id,
39 pdev->dev.parent = parent; 39 pdev->dev.parent = parent;
40 platform_set_drvdata(pdev, cell->driver_data); 40 platform_set_drvdata(pdev, cell->driver_data);
41 41
42 if (cell->data_size) { 42 ret = platform_device_add_data(pdev, cell, sizeof(*cell));
43 ret = platform_device_add_data(pdev, 43 if (ret)
44 cell->platform_data, cell->data_size); 44 goto fail_res;
45 if (ret)
46 goto fail_res;
47 }
48 45
49 for (r = 0; r < cell->num_resources; r++) { 46 for (r = 0; r < cell->num_resources; r++) {
50 res[r].name = cell->resources[r].name; 47 res[r].name = cell->resources[r].name;
diff --git a/include/linux/mfd/core.h b/include/linux/mfd/core.h
index 1fd7c4467e5..aefc378f8dc 100644
--- a/include/linux/mfd/core.h
+++ b/include/linux/mfd/core.h
@@ -33,9 +33,10 @@ struct mfd_cell {
33 /* driver-specific data for MFD-aware "cell" drivers */ 33 /* driver-specific data for MFD-aware "cell" drivers */
34 void *driver_data; 34 void *driver_data;
35 35
36 /* platform_data can be used to either pass data to "generic" 36 /* platform_data can be used to pass data to "generic" drivers */
37 driver or as a hook to mfd_cell for the "cell" drivers */
38 void *platform_data; 37 void *platform_data;
38
39 /* unused */
39 size_t data_size; 40 size_t data_size;
40 41
41 /* 42 /*
@@ -55,6 +56,24 @@ struct mfd_cell {
55 bool pm_runtime_no_callbacks; 56 bool pm_runtime_no_callbacks;
56}; 57};
57 58
59/*
60 * Given a platform device that's been created by mfd_add_devices(), fetch
61 * the mfd_cell that created it.
62 */
63static inline const struct mfd_cell *mfd_get_cell(struct platform_device *pdev)
64{
65 return pdev->dev.platform_data;
66}
67
68/*
69 * Given a platform device that's been created by mfd_add_devices(), fetch
70 * the .platform_data entry from the mfd_cell that created it.
71 */
72static inline void *mfd_get_data(struct platform_device *pdev)
73{
74 return mfd_get_cell(pdev)->platform_data;
75}
76
58extern int mfd_add_devices(struct device *parent, int id, 77extern int mfd_add_devices(struct device *parent, int id,
59 const struct mfd_cell *cells, int n_devs, 78 const struct mfd_cell *cells, int n_devs,
60 struct resource *mem_base, 79 struct resource *mem_base,