1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright 2009-2010 Pengutronix
4 * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
6 * loosely based on an earlier driver that has
7 * Copyright 2009 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
10 #include <linux/slab.h>
11 #include <linux/module.h>
12 #include <linux/platform_device.h>
13 #include <linux/interrupt.h>
14 #include <linux/mfd/core.h>
15 #include <linux/mfd/mc13xxx.h>
17 #include <linux/of_device.h>
18 #include <linux/of_gpio.h>
19 #include <linux/err.h>
20 #include <linux/spi/spi.h>
24 static const struct spi_device_id mc13xxx_device_id
[] = {
27 .driver_data
= (kernel_ulong_t
)&mc13xxx_variant_mc13783
,
30 .driver_data
= (kernel_ulong_t
)&mc13xxx_variant_mc13892
,
33 .driver_data
= (kernel_ulong_t
)&mc13xxx_variant_mc34708
,
38 MODULE_DEVICE_TABLE(spi
, mc13xxx_device_id
);
40 static const struct of_device_id mc13xxx_dt_ids
[] = {
41 { .compatible
= "fsl,mc13783", .data
= &mc13xxx_variant_mc13783
, },
42 { .compatible
= "fsl,mc13892", .data
= &mc13xxx_variant_mc13892
, },
43 { .compatible
= "fsl,mc34708", .data
= &mc13xxx_variant_mc34708
, },
46 MODULE_DEVICE_TABLE(of
, mc13xxx_dt_ids
);
48 static const struct regmap_config mc13xxx_regmap_spi_config
= {
52 .write_flag_mask
= 0x80,
54 .max_register
= MC13XXX_NUMREGS
,
56 .cache_type
= REGCACHE_NONE
,
57 .use_single_read
= true,
58 .use_single_write
= true,
61 static int mc13xxx_spi_read(void *context
, const void *reg
, size_t reg_size
,
62 void *val
, size_t val_size
)
64 unsigned char w
[4] = { *((unsigned char *) reg
), 0, 0, 0};
66 unsigned char *p
= val
;
67 struct device
*dev
= context
;
68 struct spi_device
*spi
= to_spi_device(dev
);
69 struct spi_transfer t
= {
78 if (val_size
!= 3 || reg_size
!= 1)
82 spi_message_add_tail(&t
, &m
);
83 ret
= spi_sync(spi
, &m
);
90 static int mc13xxx_spi_write(void *context
, const void *data
, size_t count
)
92 struct device
*dev
= context
;
93 struct spi_device
*spi
= to_spi_device(dev
);
94 const char *reg
= data
;
99 /* include errata fix for spi audio problems */
100 if (*reg
== MC13783_AUDIO_CODEC
|| *reg
== MC13783_AUDIO_DAC
)
101 spi_write(spi
, data
, count
);
103 return spi_write(spi
, data
, count
);
107 * We cannot use regmap-spi generic bus implementation here.
108 * The MC13783 chip will get corrupted if CS signal is deasserted
109 * and on i.Mx31 SoC (the target SoC for MC13783 PMIC) the SPI controller
110 * has the following errata (DSPhl22960):
111 * "The CSPI negates SS when the FIFO becomes empty with
112 * SSCTL= 0. Software cannot guarantee that the FIFO will not
113 * drain because of higher priority interrupts and the
114 * non-realtime characteristics of the operating system. As a
115 * result, the SS will negate before all of the data has been
116 * transferred to/from the peripheral."
117 * We workaround this by accessing the SPI controller with a
121 static struct regmap_bus regmap_mc13xxx_bus
= {
122 .write
= mc13xxx_spi_write
,
123 .read
= mc13xxx_spi_read
,
126 static int mc13xxx_spi_probe(struct spi_device
*spi
)
128 struct mc13xxx
*mc13xxx
;
131 mc13xxx
= devm_kzalloc(&spi
->dev
, sizeof(*mc13xxx
), GFP_KERNEL
);
135 dev_set_drvdata(&spi
->dev
, mc13xxx
);
137 spi
->mode
= SPI_MODE_0
| SPI_CS_HIGH
;
139 mc13xxx
->irq
= spi
->irq
;
141 spi
->max_speed_hz
= spi
->max_speed_hz
? : 26000000;
142 ret
= spi_setup(spi
);
146 mc13xxx
->regmap
= devm_regmap_init(&spi
->dev
, ®map_mc13xxx_bus
,
148 &mc13xxx_regmap_spi_config
);
149 if (IS_ERR(mc13xxx
->regmap
)) {
150 ret
= PTR_ERR(mc13xxx
->regmap
);
151 dev_err(&spi
->dev
, "Failed to initialize regmap: %d\n", ret
);
155 if (spi
->dev
.of_node
) {
156 const struct of_device_id
*of_id
=
157 of_match_device(mc13xxx_dt_ids
, &spi
->dev
);
159 mc13xxx
->variant
= of_id
->data
;
161 const struct spi_device_id
*id_entry
= spi_get_device_id(spi
);
163 mc13xxx
->variant
= (void *)id_entry
->driver_data
;
166 return mc13xxx_common_init(&spi
->dev
);
169 static int mc13xxx_spi_remove(struct spi_device
*spi
)
171 return mc13xxx_common_exit(&spi
->dev
);
174 static struct spi_driver mc13xxx_spi_driver
= {
175 .id_table
= mc13xxx_device_id
,
178 .of_match_table
= mc13xxx_dt_ids
,
180 .probe
= mc13xxx_spi_probe
,
181 .remove
= mc13xxx_spi_remove
,
184 static int __init
mc13xxx_init(void)
186 return spi_register_driver(&mc13xxx_spi_driver
);
188 subsys_initcall(mc13xxx_init
);
190 static void __exit
mc13xxx_exit(void)
192 spi_unregister_driver(&mc13xxx_spi_driver
);
194 module_exit(mc13xxx_exit
);
196 MODULE_DESCRIPTION("Core driver for Freescale MC13XXX PMIC");
197 MODULE_AUTHOR("Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>");
198 MODULE_LICENSE("GPL v2");