2 * Copyright 2009-2010 Pengutronix
3 * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
5 * loosely based on an earlier driver that has
6 * Copyright 2009 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
8 * This program is free software; you can redistribute it and/or modify it under
9 * the terms of the GNU General Public License version 2 as published by the
10 * Free Software Foundation.
13 #include <linux/slab.h>
14 #include <linux/module.h>
15 #include <linux/platform_device.h>
16 #include <linux/mutex.h>
17 #include <linux/interrupt.h>
18 #include <linux/mfd/core.h>
19 #include <linux/mfd/mc13xxx.h>
21 #include <linux/of_device.h>
22 #include <linux/of_gpio.h>
23 #include <linux/err.h>
24 #include <linux/spi/spi.h>
28 static const struct spi_device_id mc13xxx_device_id
[] = {
31 .driver_data
= MC13XXX_ID_MC13783
,
34 .driver_data
= MC13XXX_ID_MC13892
,
39 MODULE_DEVICE_TABLE(spi
, mc13xxx_device_id
);
41 static const struct of_device_id mc13xxx_dt_ids
[] = {
42 { .compatible
= "fsl,mc13783", .data
= (void *) MC13XXX_ID_MC13783
, },
43 { .compatible
= "fsl,mc13892", .data
= (void *) MC13XXX_ID_MC13892
, },
46 MODULE_DEVICE_TABLE(of
, mc13xxx_dt_ids
);
48 static struct regmap_config mc13xxx_regmap_spi_config
= {
52 .write_flag_mask
= 0x80,
54 .max_register
= MC13XXX_NUMREGS
,
56 .cache_type
= REGCACHE_NONE
,
60 static int mc13xxx_spi_read(void *context
, const void *reg
, size_t reg_size
,
61 void *val
, size_t val_size
)
63 unsigned char w
[4] = { *((unsigned char *) reg
), 0, 0, 0};
65 unsigned char *p
= val
;
66 struct device
*dev
= context
;
67 struct spi_device
*spi
= to_spi_device(dev
);
68 struct spi_transfer t
= {
77 if (val_size
!= 3 || reg_size
!= 1)
81 spi_message_add_tail(&t
, &m
);
82 ret
= spi_sync(spi
, &m
);
89 static int mc13xxx_spi_write(void *context
, const void *data
, size_t count
)
91 struct device
*dev
= context
;
92 struct spi_device
*spi
= to_spi_device(dev
);
97 return spi_write(spi
, data
, count
);
101 * We cannot use regmap-spi generic bus implementation here.
102 * The MC13783 chip will get corrupted if CS signal is deasserted
103 * and on i.Mx31 SoC (the target SoC for MC13783 PMIC) the SPI controller
104 * has the following errata (DSPhl22960):
105 * "The CSPI negates SS when the FIFO becomes empty with
106 * SSCTL= 0. Software cannot guarantee that the FIFO will not
107 * drain because of higher priority interrupts and the
108 * non-realtime characteristics of the operating system. As a
109 * result, the SS will negate before all of the data has been
110 * transferred to/from the peripheral."
111 * We workaround this by accessing the SPI controller with a
115 static struct regmap_bus regmap_mc13xxx_bus
= {
116 .write
= mc13xxx_spi_write
,
117 .read
= mc13xxx_spi_read
,
120 static int mc13xxx_spi_probe(struct spi_device
*spi
)
122 struct mc13xxx
*mc13xxx
;
123 struct mc13xxx_platform_data
*pdata
= dev_get_platdata(&spi
->dev
);
126 mc13xxx
= devm_kzalloc(&spi
->dev
, sizeof(*mc13xxx
), GFP_KERNEL
);
130 dev_set_drvdata(&spi
->dev
, mc13xxx
);
131 spi
->mode
= SPI_MODE_0
| SPI_CS_HIGH
;
133 mc13xxx
->dev
= &spi
->dev
;
134 mutex_init(&mc13xxx
->lock
);
136 mc13xxx
->regmap
= devm_regmap_init(&spi
->dev
, ®map_mc13xxx_bus
,
138 &mc13xxx_regmap_spi_config
);
139 if (IS_ERR(mc13xxx
->regmap
)) {
140 ret
= PTR_ERR(mc13xxx
->regmap
);
141 dev_err(mc13xxx
->dev
, "Failed to initialize register map: %d\n",
143 dev_set_drvdata(&spi
->dev
, NULL
);
147 ret
= mc13xxx_common_init(mc13xxx
, pdata
, spi
->irq
);
150 dev_set_drvdata(&spi
->dev
, NULL
);
152 const struct spi_device_id
*devid
=
153 spi_get_device_id(spi
);
154 if (!devid
|| devid
->driver_data
!= mc13xxx
->ictype
)
155 dev_warn(mc13xxx
->dev
,
156 "device id doesn't match auto detection!\n");
162 static int __devexit
mc13xxx_spi_remove(struct spi_device
*spi
)
164 struct mc13xxx
*mc13xxx
= dev_get_drvdata(&spi
->dev
);
166 mc13xxx_common_cleanup(mc13xxx
);
171 static struct spi_driver mc13xxx_spi_driver
= {
172 .id_table
= mc13xxx_device_id
,
175 .owner
= THIS_MODULE
,
176 .of_match_table
= mc13xxx_dt_ids
,
178 .probe
= mc13xxx_spi_probe
,
179 .remove
= __devexit_p(mc13xxx_spi_remove
),
182 static int __init
mc13xxx_init(void)
184 return spi_register_driver(&mc13xxx_spi_driver
);
186 subsys_initcall(mc13xxx_init
);
188 static void __exit
mc13xxx_exit(void)
190 spi_unregister_driver(&mc13xxx_spi_driver
);
192 module_exit(mc13xxx_exit
);
194 MODULE_DESCRIPTION("Core driver for Freescale MC13XXX PMIC");
195 MODULE_AUTHOR("Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>");
196 MODULE_LICENSE("GPL v2");