| /* |
| * Copyright (c) 2013 Hauke Mehrtens <hauke@hauke-m.de> |
| * Copyright (c) 2013 Hannes Frederic Sowa <hannes@stressinduktion.org> |
| * Copyright (c) 2014 Luis R. Rodriguez <mcgrof@do-not-panic.com> |
| * |
| * Backport functionality introduced in Linux 3.13. |
| * |
| * 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. |
| */ |
| #include <linux/version.h> |
| #include <linux/kernel.h> |
| #include <net/genetlink.h> |
| #include <linux/delay.h> |
| #include <linux/pci.h> |
| #include <linux/device.h> |
| #include <linux/hwmon.h> |
| |
| #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,5,0)) |
| #ifdef CONFIG_REGULATOR |
| #include <linux/module.h> |
| #include <linux/regulator/driver.h> |
| #include <linux/device.h> |
| #include <linux/static_key.h> |
| |
| static void devm_rdev_release(struct device *dev, void *res) |
| { |
| regulator_unregister(*(struct regulator_dev **)res); |
| } |
| |
| /** |
| * devm_regulator_register - Resource managed regulator_register() |
| * @regulator_desc: regulator to register |
| * @config: runtime configuration for regulator |
| * |
| * Called by regulator drivers to register a regulator. Returns a |
| * valid pointer to struct regulator_dev on success or an ERR_PTR() on |
| * error. The regulator will automatically be released when the device |
| * is unbound. |
| */ |
| struct regulator_dev *devm_regulator_register(struct device *dev, |
| const struct regulator_desc *regulator_desc, |
| const struct regulator_config *config) |
| { |
| struct regulator_dev **ptr, *rdev; |
| |
| ptr = devres_alloc(devm_rdev_release, sizeof(*ptr), |
| GFP_KERNEL); |
| if (!ptr) |
| return ERR_PTR(-ENOMEM); |
| |
| rdev = regulator_register(regulator_desc, config); |
| if (!IS_ERR(rdev)) { |
| *ptr = rdev; |
| devres_add(dev, ptr); |
| } else { |
| devres_free(ptr); |
| } |
| |
| return rdev; |
| } |
| EXPORT_SYMBOL_GPL(devm_regulator_register); |
| |
| static int devm_rdev_match(struct device *dev, void *res, void *data) |
| { |
| struct regulator_dev **r = res; |
| if (!r || !*r) { |
| WARN_ON(!r || !*r); |
| return 0; |
| } |
| return *r == data; |
| } |
| |
| /** |
| * devm_regulator_unregister - Resource managed regulator_unregister() |
| * @regulator: regulator to free |
| * |
| * Unregister a regulator registered with devm_regulator_register(). |
| * Normally this function will not need to be called and the resource |
| * management code will ensure that the resource is freed. |
| */ |
| void devm_regulator_unregister(struct device *dev, struct regulator_dev *rdev) |
| { |
| int rc; |
| |
| rc = devres_release(dev, devm_rdev_release, devm_rdev_match, rdev); |
| if (rc != 0) |
| WARN_ON(rc); |
| } |
| EXPORT_SYMBOL_GPL(devm_regulator_unregister); |
| #endif /* CONFIG_REGULATOR */ |
| #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3,5,0)) */ |
| |
| /************* generic netlink backport *****************/ |
| #if RHEL_RELEASE_CODE < RHEL_RELEASE_VERSION(7,0) |
| |
| #undef genl_register_family |
| #undef genl_unregister_family |
| |
| int __backport_genl_register_family(struct genl_family *family) |
| { |
| int i, ret; |
| |
| #define __copy(_field) family->family._field = family->_field |
| __copy(id); |
| __copy(hdrsize); |
| __copy(version); |
| __copy(maxattr); |
| strncpy(family->family.name, family->name, sizeof(family->family.name)); |
| __copy(netnsok); |
| __copy(pre_doit); |
| __copy(post_doit); |
| #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,0) |
| __copy(parallel_ops); |
| #endif |
| #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,11,0) |
| __copy(module); |
| #endif |
| #undef __copy |
| |
| ret = genl_register_family(&family->family); |
| if (ret < 0) |
| return ret; |
| |
| family->attrbuf = family->family.attrbuf; |
| family->id = family->family.id; |
| |
| for (i = 0; i < family->n_ops; i++) { |
| ret = genl_register_ops(&family->family, &family->ops[i]); |
| if (ret < 0) |
| goto error; |
| } |
| |
| for (i = 0; i < family->n_mcgrps; i++) { |
| ret = genl_register_mc_group(&family->family, |
| &family->mcgrps[i]); |
| if (ret) |
| goto error; |
| } |
| |
| return 0; |
| |
| error: |
| backport_genl_unregister_family(family); |
| return ret; |
| } |
| EXPORT_SYMBOL_GPL(__backport_genl_register_family); |
| |
| int backport_genl_unregister_family(struct genl_family *family) |
| { |
| int err; |
| err = genl_unregister_family(&family->family); |
| return err; |
| } |
| EXPORT_SYMBOL_GPL(backport_genl_unregister_family); |
| |
| #endif /* RHEL_RELEASE_CODE < RHEL_RELEASE_VERSION(7,0) */ |
| |
| #ifdef __BACKPORT_NET_GET_RANDOM_ONCE |
| struct __net_random_once_work { |
| struct work_struct work; |
| struct static_key *key; |
| }; |
| |
| static void __net_random_once_deferred(struct work_struct *w) |
| { |
| struct __net_random_once_work *work = |
| container_of(w, struct __net_random_once_work, work); |
| if (!static_key_enabled(work->key)) |
| static_key_slow_inc(work->key); |
| kfree(work); |
| } |
| |
| static void __net_random_once_disable_jump(struct static_key *key) |
| { |
| struct __net_random_once_work *w; |
| |
| w = kmalloc(sizeof(*w), GFP_ATOMIC); |
| if (!w) |
| return; |
| |
| INIT_WORK(&w->work, __net_random_once_deferred); |
| w->key = key; |
| schedule_work(&w->work); |
| } |
| |
| bool __net_get_random_once(void *buf, int nbytes, bool *done, |
| struct static_key *done_key) |
| { |
| static DEFINE_SPINLOCK(lock); |
| unsigned long flags; |
| |
| spin_lock_irqsave(&lock, flags); |
| if (*done) { |
| spin_unlock_irqrestore(&lock, flags); |
| return false; |
| } |
| |
| get_random_bytes(buf, nbytes); |
| *done = true; |
| spin_unlock_irqrestore(&lock, flags); |
| |
| __net_random_once_disable_jump(done_key); |
| |
| return true; |
| } |
| EXPORT_SYMBOL_GPL(__net_get_random_once); |
| #endif /* __BACKPORT_NET_GET_RANDOM_ONCE */ |
| |
| #ifdef CONFIG_PCI |
| #define pci_bus_read_dev_vendor_id LINUX_BACKPORT(pci_bus_read_dev_vendor_id) |
| static bool pci_bus_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *l, |
| int crs_timeout) |
| { |
| int delay = 1; |
| |
| if (pci_bus_read_config_dword(bus, devfn, PCI_VENDOR_ID, l)) |
| return false; |
| |
| /* some broken boards return 0 or ~0 if a slot is empty: */ |
| if (*l == 0xffffffff || *l == 0x00000000 || |
| *l == 0x0000ffff || *l == 0xffff0000) |
| return false; |
| |
| /* |
| * Configuration Request Retry Status. Some root ports return the |
| * actual device ID instead of the synthetic ID (0xFFFF) required |
| * by the PCIe spec. Ignore the device ID and only check for |
| * (vendor id == 1). |
| */ |
| while ((*l & 0xffff) == 0x0001) { |
| if (!crs_timeout) |
| return false; |
| |
| msleep(delay); |
| delay *= 2; |
| if (pci_bus_read_config_dword(bus, devfn, PCI_VENDOR_ID, l)) |
| return false; |
| /* Card hasn't responded in 60 seconds? Must be stuck. */ |
| if (delay > crs_timeout) { |
| printk(KERN_WARNING "pci %04x:%02x:%02x.%d: not responding\n", |
| pci_domain_nr(bus), bus->number, PCI_SLOT(devfn), |
| PCI_FUNC(devfn)); |
| return false; |
| } |
| } |
| |
| return true; |
| } |
| |
| bool pci_device_is_present(struct pci_dev *pdev) |
| { |
| u32 v; |
| |
| return pci_bus_read_dev_vendor_id(pdev->bus, pdev->devfn, &v, 0); |
| } |
| EXPORT_SYMBOL_GPL(pci_device_is_present); |
| #endif /* CONFIG_PCI */ |
| |
| #ifdef CONFIG_HWMON |
| struct device* |
| hwmon_device_register_with_groups(struct device *dev, const char *name, |
| void *drvdata, |
| const struct attribute_group **groups) |
| { |
| struct device *hwdev; |
| |
| hwdev = hwmon_device_register(dev); |
| hwdev->groups = groups; |
| dev_set_drvdata(hwdev, drvdata); |
| return hwdev; |
| } |
| |
| static void devm_hwmon_release(struct device *dev, void *res) |
| { |
| struct device *hwdev = *(struct device **)res; |
| |
| hwmon_device_unregister(hwdev); |
| } |
| |
| struct device * |
| devm_hwmon_device_register_with_groups(struct device *dev, const char *name, |
| void *drvdata, |
| const struct attribute_group **groups) |
| { |
| struct device **ptr, *hwdev; |
| |
| if (!dev) |
| return ERR_PTR(-EINVAL); |
| |
| ptr = devres_alloc(devm_hwmon_release, sizeof(*ptr), GFP_KERNEL); |
| if (!ptr) |
| return ERR_PTR(-ENOMEM); |
| |
| hwdev = hwmon_device_register_with_groups(dev, name, drvdata, groups); |
| if (IS_ERR(hwdev)) |
| goto error; |
| |
| *ptr = hwdev; |
| devres_add(dev, ptr); |
| return hwdev; |
| |
| error: |
| devres_free(ptr); |
| return hwdev; |
| } |
| EXPORT_SYMBOL_GPL(devm_hwmon_device_register_with_groups); |
| #endif |