cregit-Linux how code gets into the kernel

Release 4.18 drivers/mfd/abx500-core.c

Directory: drivers/mfd
/*
 * Copyright (C) 2007-2010 ST-Ericsson
 * License terms: GNU General Public License (GPL) version 2
 * Register access functions for the ABX500 Mixed Signal IC family.
 * Author: Mattias Wallin <mattias.wallin@stericsson.com>
 */

#include <linux/list.h>
#include <linux/slab.h>
#include <linux/err.h>
#include <linux/init.h>
#include <linux/export.h>
#include <linux/mfd/abx500.h>

static LIST_HEAD(abx500_list);


struct abx500_device_entry {
	
struct list_head list;
	
struct abx500_ops ops;
	
struct device *dev;
};


static void lookup_ops(struct device *dev, struct abx500_ops **ops) { struct abx500_device_entry *dev_entry; *ops = NULL; list_for_each_entry(dev_entry, &abx500_list, list) { if (dev_entry->dev == dev) { *ops = &dev_entry->ops; return; } } }

Contributors

PersonTokensPropCommitsCommitProp
Mattias Wallin56100.00%1100.00%
Total56100.00%1100.00%


int abx500_register_ops(struct device *dev, struct abx500_ops *ops) { struct abx500_device_entry *dev_entry; dev_entry = devm_kzalloc(dev, sizeof(*dev_entry), GFP_KERNEL); if (!dev_entry) return -ENOMEM; dev_entry->dev = dev; memcpy(&dev_entry->ops, ops, sizeof(*ops)); list_add_tail(&dev_entry->list, &abx500_list); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Mattias Wallin7290.00%125.00%
SF Markus Elfring45.00%125.00%
Lee Jones33.75%125.00%
Julia Lawall11.25%125.00%
Total80100.00%4100.00%

EXPORT_SYMBOL(abx500_register_ops);
void abx500_remove_ops(struct device *dev) { struct abx500_device_entry *dev_entry, *tmp; list_for_each_entry_safe(dev_entry, tmp, &abx500_list, list) if (dev_entry->dev == dev) list_del(&dev_entry->list); }

Contributors

PersonTokensPropCommitsCommitProp
Mattias Wallin44100.00%1100.00%
Total44100.00%1100.00%

EXPORT_SYMBOL(abx500_remove_ops);
int abx500_set_register_interruptible(struct device *dev, u8 bank, u8 reg, u8 value) { struct abx500_ops *ops; lookup_ops(dev->parent, &ops); if (ops && ops->set_register) return ops->set_register(dev, bank, reg, value); else return -ENOTSUPP; }

Contributors

PersonTokensPropCommitsCommitProp
Mattias Wallin61100.00%1100.00%
Total61100.00%1100.00%

EXPORT_SYMBOL(abx500_set_register_interruptible);
int abx500_get_register_interruptible(struct device *dev, u8 bank, u8 reg, u8 *value) { struct abx500_ops *ops; lookup_ops(dev->parent, &ops); if (ops && ops->get_register) return ops->get_register(dev, bank, reg, value); else return -ENOTSUPP; }

Contributors

PersonTokensPropCommitsCommitProp
Mattias Wallin62100.00%1100.00%
Total62100.00%1100.00%

EXPORT_SYMBOL(abx500_get_register_interruptible);
int abx500_get_register_page_interruptible(struct device *dev, u8 bank, u8 first_reg, u8 *regvals, u8 numregs) { struct abx500_ops *ops; lookup_ops(dev->parent, &ops); if (ops && ops->get_register_page) return ops->get_register_page(dev, bank, first_reg, regvals, numregs); else return -ENOTSUPP; }

Contributors

PersonTokensPropCommitsCommitProp
Mattias Wallin67100.00%1100.00%
Total67100.00%1100.00%

EXPORT_SYMBOL(abx500_get_register_page_interruptible);
int abx500_mask_and_set_register_interruptible(struct device *dev, u8 bank, u8 reg, u8 bitmask, u8 bitvalues) { struct abx500_ops *ops; lookup_ops(dev->parent, &ops); if (ops && ops->mask_and_set_register) return ops->mask_and_set_register(dev, bank, reg, bitmask, bitvalues); else return -ENOTSUPP; }

Contributors

PersonTokensPropCommitsCommitProp
Mattias Wallin66100.00%1100.00%
Total66100.00%1100.00%

EXPORT_SYMBOL(abx500_mask_and_set_register_interruptible);
int abx500_get_chip_id(struct device *dev) { struct abx500_ops *ops; lookup_ops(dev->parent, &ops); if (ops && ops->get_chip_id) return ops->get_chip_id(dev); else return -ENOTSUPP; }

Contributors

PersonTokensPropCommitsCommitProp
Mattias Wallin46100.00%1100.00%
Total46100.00%1100.00%

EXPORT_SYMBOL(abx500_get_chip_id);
int abx500_event_registers_startup_state_get(struct device *dev, u8 *event) { struct abx500_ops *ops; lookup_ops(dev->parent, &ops); if (ops && ops->event_registers_startup_state_get) return ops->event_registers_startup_state_get(dev, event); else return -ENOTSUPP; }

Contributors

PersonTokensPropCommitsCommitProp
Mattias Wallin52100.00%1100.00%
Total52100.00%1100.00%

EXPORT_SYMBOL(abx500_event_registers_startup_state_get);
int abx500_startup_irq_enabled(struct device *dev, unsigned int irq) { struct abx500_ops *ops; lookup_ops(dev->parent, &ops); if (ops && ops->startup_irq_enabled) return ops->startup_irq_enabled(dev, irq); else return -ENOTSUPP; }

Contributors

PersonTokensPropCommitsCommitProp
Mattias Wallin52100.00%1100.00%
Total52100.00%1100.00%

EXPORT_SYMBOL(abx500_startup_irq_enabled);

Overall Contributors

PersonTokensPropCommitsCommitProp
Mattias Wallin66097.92%116.67%
Paul Gortmaker60.89%233.33%
SF Markus Elfring40.59%116.67%
Lee Jones30.45%116.67%
Julia Lawall10.15%116.67%
Total674100.00%6100.00%
Directory: drivers/mfd
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.