Blame view

drivers/mfd/axp20x-rsb.c 2.17 KB
d2912cb15   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-only
02071f0f7   Chen-Yu Tsai   mfd: axp20x: Add ...
2
3
4
5
6
7
8
9
10
11
12
13
  /*
   * RSB driver for the X-Powers' Power Management ICs
   *
   * AXP20x typically comprises an adaptive USB-Compatible PWM charger, BUCK DC-DC
   * converters, LDOs, multiple 12-bit ADCs of voltage, current and temperature
   * as well as configurable GPIOs.
   *
   * This driver supports the RSB variants.
   *
   * Copyright (C) 2015 Chen-Yu Tsai
   *
   * Author: Chen-Yu Tsai <wens@csie.org>
02071f0f7   Chen-Yu Tsai   mfd: axp20x: Add ...
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
   */
  
  #include <linux/acpi.h>
  #include <linux/err.h>
  #include <linux/mfd/axp20x.h>
  #include <linux/module.h>
  #include <linux/of.h>
  #include <linux/regmap.h>
  #include <linux/slab.h>
  #include <linux/sunxi-rsb.h>
  
  static int axp20x_rsb_probe(struct sunxi_rsb_device *rdev)
  {
  	struct axp20x_dev *axp20x;
  	int ret;
  
  	axp20x = devm_kzalloc(&rdev->dev, sizeof(*axp20x), GFP_KERNEL);
  	if (!axp20x)
  		return -ENOMEM;
  
  	axp20x->dev = &rdev->dev;
  	axp20x->irq = rdev->irq;
  	dev_set_drvdata(&rdev->dev, axp20x);
  
  	ret = axp20x_match_device(axp20x);
  	if (ret)
  		return ret;
  
  	axp20x->regmap = devm_regmap_init_sunxi_rsb(rdev, axp20x->regmap_cfg);
  	if (IS_ERR(axp20x->regmap)) {
  		ret = PTR_ERR(axp20x->regmap);
  		dev_err(&rdev->dev, "regmap init failed: %d
  ", ret);
  		return ret;
  	}
  
  	return axp20x_device_probe(axp20x);
  }
  
  static int axp20x_rsb_remove(struct sunxi_rsb_device *rdev)
  {
  	struct axp20x_dev *axp20x = sunxi_rsb_device_get_drvdata(rdev);
  
  	return axp20x_device_remove(axp20x);
  }
  
  static const struct of_device_id axp20x_rsb_of_match[] = {
  	{ .compatible = "x-powers,axp223", .data = (void *)AXP223_ID },
1578353e0   Icenowy Zheng   mfd: axp20x: Supp...
62
  	{ .compatible = "x-powers,axp803", .data = (void *)AXP803_ID },
8824ee857   Chen-Yu Tsai   mfd: axp20x: Add ...
63
  	{ .compatible = "x-powers,axp806", .data = (void *)AXP806_ID },
20147f0d4   Chen-Yu Tsai   mfd: axp20x: Add ...
64
  	{ .compatible = "x-powers,axp809", .data = (void *)AXP809_ID },
7303733a6   Chen-Yu Tsai   mfd: axp20x: Add ...
65
  	{ .compatible = "x-powers,axp813", .data = (void *)AXP813_ID },
02071f0f7   Chen-Yu Tsai   mfd: axp20x: Add ...
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
  	{ },
  };
  MODULE_DEVICE_TABLE(of, axp20x_rsb_of_match);
  
  static struct sunxi_rsb_driver axp20x_rsb_driver = {
  	.driver = {
  		.name	= "axp20x-rsb",
  		.of_match_table	= of_match_ptr(axp20x_rsb_of_match),
  	},
  	.probe	= axp20x_rsb_probe,
  	.remove	= axp20x_rsb_remove,
  };
  module_sunxi_rsb_driver(axp20x_rsb_driver);
  
  MODULE_DESCRIPTION("PMIC MFD sunXi RSB driver for AXP20X");
  MODULE_AUTHOR("Chen-Yu Tsai <wens@csie.org>");
  MODULE_LICENSE("GPL v2");