mirror of
https://github.com/torvalds/linux.git
synced 2024-10-31 17:21:49 +00:00
ee66e653ca
This moves all the header files related to the abx500 family into a common include directory below mfd. From now on we place any subchip header in that directory. Headers previously in e.g. <linux/mfd/ab8500/gpio.h> get prefixed and are now e.g. <linux/mfd/abx500/ab8500-gpio.h>. The top-level abstract interface remains in <linux/mfd/abx500.h>. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
82 lines
1.8 KiB
C
82 lines
1.8 KiB
C
/*
|
|
* Copyright (C) ST-Ericsson SA 2010
|
|
* Author: Mattias Nilsson <mattias.i.nilsson@stericsson.com> for ST Ericsson.
|
|
* License terms: GNU General Public License (GPL) version 2
|
|
*/
|
|
|
|
#include <linux/err.h>
|
|
#include <linux/module.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/mfd/abx500.h>
|
|
#include <linux/mfd/abx500/ab8500.h>
|
|
#include <linux/mfd/abx500/ab8500-sysctrl.h>
|
|
|
|
static struct device *sysctrl_dev;
|
|
|
|
static inline bool valid_bank(u8 bank)
|
|
{
|
|
return ((bank == AB8500_SYS_CTRL1_BLOCK) ||
|
|
(bank == AB8500_SYS_CTRL2_BLOCK));
|
|
}
|
|
|
|
int ab8500_sysctrl_read(u16 reg, u8 *value)
|
|
{
|
|
u8 bank;
|
|
|
|
if (sysctrl_dev == NULL)
|
|
return -EAGAIN;
|
|
|
|
bank = (reg >> 8);
|
|
if (!valid_bank(bank))
|
|
return -EINVAL;
|
|
|
|
return abx500_get_register_interruptible(sysctrl_dev, bank,
|
|
(u8)(reg & 0xFF), value);
|
|
}
|
|
|
|
int ab8500_sysctrl_write(u16 reg, u8 mask, u8 value)
|
|
{
|
|
u8 bank;
|
|
|
|
if (sysctrl_dev == NULL)
|
|
return -EAGAIN;
|
|
|
|
bank = (reg >> 8);
|
|
if (!valid_bank(bank))
|
|
return -EINVAL;
|
|
|
|
return abx500_mask_and_set_register_interruptible(sysctrl_dev, bank,
|
|
(u8)(reg & 0xFF), mask, value);
|
|
}
|
|
|
|
static int __devinit ab8500_sysctrl_probe(struct platform_device *pdev)
|
|
{
|
|
sysctrl_dev = &pdev->dev;
|
|
return 0;
|
|
}
|
|
|
|
static int __devexit ab8500_sysctrl_remove(struct platform_device *pdev)
|
|
{
|
|
sysctrl_dev = NULL;
|
|
return 0;
|
|
}
|
|
|
|
static struct platform_driver ab8500_sysctrl_driver = {
|
|
.driver = {
|
|
.name = "ab8500-sysctrl",
|
|
.owner = THIS_MODULE,
|
|
},
|
|
.probe = ab8500_sysctrl_probe,
|
|
.remove = __devexit_p(ab8500_sysctrl_remove),
|
|
};
|
|
|
|
static int __init ab8500_sysctrl_init(void)
|
|
{
|
|
return platform_driver_register(&ab8500_sysctrl_driver);
|
|
}
|
|
subsys_initcall(ab8500_sysctrl_init);
|
|
|
|
MODULE_AUTHOR("Mattias Nilsson <mattias.i.nilsson@stericsson.com");
|
|
MODULE_DESCRIPTION("AB8500 system control driver");
|
|
MODULE_LICENSE("GPL v2");
|