Blame view

drivers/mfd/arizona-spi.c 2.41 KB
a15123c70   Mark Brown   mfd: arizona: SPI...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  /*
   * arizona-spi.c  --  Arizona SPI bus interface
   *
   * Copyright 2012 Wolfson Microelectronics plc
   *
   * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
   *
   * 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/err.h>
  #include <linux/module.h>
  #include <linux/pm_runtime.h>
  #include <linux/regmap.h>
  #include <linux/regulator/consumer.h>
  #include <linux/slab.h>
  #include <linux/spi/spi.h>
3d6d1d1cd   Sachin Kamat   mfd: arizona: Inc...
20
  #include <linux/of.h>
a15123c70   Mark Brown   mfd: arizona: SPI...
21
22
23
24
  
  #include <linux/mfd/arizona/core.h>
  
  #include "arizona.h"
f791be492   Bill Pemberton   mfd: remove use o...
25
  static int arizona_spi_probe(struct spi_device *spi)
a15123c70   Mark Brown   mfd: arizona: SPI...
26
27
28
29
  {
  	const struct spi_device_id *id = spi_get_device_id(spi);
  	struct arizona *arizona;
  	const struct regmap_config *regmap_config;
942786e6e   Lee Jones   mfd: arizona: Rid...
30
31
  	unsigned long type;
  	int ret;
a15123c70   Mark Brown   mfd: arizona: SPI...
32

d781009ca   Mark Brown   mfd: Add device t...
33
34
35
36
37
38
  	if (spi->dev.of_node)
  		type = arizona_of_get_type(&spi->dev);
  	else
  		type = id->driver_data;
  
  	switch (type) {
a15123c70   Mark Brown   mfd: arizona: SPI...
39
40
41
42
43
  #ifdef CONFIG_MFD_WM5102
  	case WM5102:
  		regmap_config = &wm5102_spi_regmap;
  		break;
  #endif
e102befe7   Mark Brown   mfd: Initial supp...
44
45
46
47
48
  #ifdef CONFIG_MFD_WM5110
  	case WM5110:
  		regmap_config = &wm5110_spi_regmap;
  		break;
  #endif
a15123c70   Mark Brown   mfd: arizona: SPI...
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
  	default:
  		dev_err(&spi->dev, "Unknown device type %ld
  ",
  			id->driver_data);
  		return -EINVAL;
  	}
  
  	arizona = devm_kzalloc(&spi->dev, sizeof(*arizona), GFP_KERNEL);
  	if (arizona == NULL)
  		return -ENOMEM;
  
  	arizona->regmap = devm_regmap_init_spi(spi, regmap_config);
  	if (IS_ERR(arizona->regmap)) {
  		ret = PTR_ERR(arizona->regmap);
  		dev_err(&spi->dev, "Failed to allocate register map: %d
  ",
  			ret);
  		return ret;
  	}
  
  	arizona->type = id->driver_data;
  	arizona->dev = &spi->dev;
  	arizona->irq = spi->irq;
  
  	return arizona_dev_init(arizona);
  }
4740f73fe   Bill Pemberton   mfd: remove use o...
75
  static int arizona_spi_remove(struct spi_device *spi)
a15123c70   Mark Brown   mfd: arizona: SPI...
76
  {
e9642d5e1   Jingoo Han   mfd: arizona: Use...
77
  	struct arizona *arizona = spi_get_drvdata(spi);
6f467e5f0   Will Sheppard   mfd: arizona-spi:...
78

a15123c70   Mark Brown   mfd: arizona: SPI...
79
  	arizona_dev_exit(arizona);
6f467e5f0   Will Sheppard   mfd: arizona-spi:...
80

a15123c70   Mark Brown   mfd: arizona: SPI...
81
82
83
84
85
  	return 0;
  }
  
  static const struct spi_device_id arizona_spi_ids[] = {
  	{ "wm5102", WM5102 },
e102befe7   Mark Brown   mfd: Initial supp...
86
  	{ "wm5110", WM5110 },
a15123c70   Mark Brown   mfd: arizona: SPI...
87
88
89
90
91
92
93
94
95
  	{ },
  };
  MODULE_DEVICE_TABLE(spi, arizona_spi_ids);
  
  static struct spi_driver arizona_spi_driver = {
  	.driver = {
  		.name	= "arizona",
  		.owner	= THIS_MODULE,
  		.pm	= &arizona_pm_ops,
d781009ca   Mark Brown   mfd: Add device t...
96
  		.of_match_table	= of_match_ptr(arizona_of_match),
a15123c70   Mark Brown   mfd: arizona: SPI...
97
98
  	},
  	.probe		= arizona_spi_probe,
84449216b   Bill Pemberton   mfd: remove use o...
99
  	.remove		= arizona_spi_remove,
a15123c70   Mark Brown   mfd: arizona: SPI...
100
101
102
103
104
105
106
107
  	.id_table	= arizona_spi_ids,
  };
  
  module_spi_driver(arizona_spi_driver);
  
  MODULE_DESCRIPTION("Arizona SPI bus interface");
  MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
  MODULE_LICENSE("GPL");