Merge tag 'gpio-for-v3.11-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6.git] / arch / arm / plat-samsung / platformdata.c
blobb430e9946287e3c0e2d71481fa83988307243fb4
1 /* linux/arch/arm/plat-samsung/platformdata.c
3 * Copyright 2010 Ben Dooks <ben-linux <at> fluff.org>
5 * Helper for platform data setting
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/kernel.h>
13 #include <linux/slab.h>
14 #include <linux/string.h>
15 #include <linux/platform_device.h>
17 #include <plat/devs.h>
18 #include <plat/sdhci.h>
20 void __init *s3c_set_platdata(void *pd, size_t pdsize,
21 struct platform_device *pdev)
23 void *npd;
25 if (!pd) {
26 /* too early to use dev_name(), may not be registered */
27 printk(KERN_ERR "%s: no platform data supplied\n", pdev->name);
28 return NULL;
31 npd = kmemdup(pd, pdsize, GFP_KERNEL);
32 if (!npd) {
33 printk(KERN_ERR "%s: cannot clone platform data\n", pdev->name);
34 return NULL;
37 pdev->dev.platform_data = npd;
38 return npd;
41 void s3c_sdhci_set_platdata(struct s3c_sdhci_platdata *pd,
42 struct s3c_sdhci_platdata *set)
44 set->cd_type = pd->cd_type;
45 set->ext_cd_init = pd->ext_cd_init;
46 set->ext_cd_cleanup = pd->ext_cd_cleanup;
47 set->ext_cd_gpio = pd->ext_cd_gpio;
48 set->ext_cd_gpio_invert = pd->ext_cd_gpio_invert;
50 if (pd->max_width)
51 set->max_width = pd->max_width;
52 if (pd->cfg_gpio)
53 set->cfg_gpio = pd->cfg_gpio;
54 if (pd->host_caps)
55 set->host_caps |= pd->host_caps;
56 if (pd->host_caps2)
57 set->host_caps2 |= pd->host_caps2;
58 if (pd->pm_caps)
59 set->pm_caps |= pd->pm_caps;