1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * NXP SC18IS602/603 SPI driver
5 * Copyright (C) Guenter Roeck <linux@roeck-us.net>
8 #include <linux/kernel.h>
10 #include <linux/module.h>
11 #include <linux/spi/spi.h>
12 #include <linux/i2c.h>
13 #include <linux/delay.h>
14 #include <linux/pm_runtime.h>
15 #include <linux/of_device.h>
17 #include <linux/platform_data/sc18is602.h>
18 #include <linux/gpio/consumer.h>
20 enum chips
{ sc18is602
, sc18is602b
, sc18is603
};
22 #define SC18IS602_BUFSIZ 200
23 #define SC18IS602_CLOCK 7372000
25 #define SC18IS602_MODE_CPHA BIT(2)
26 #define SC18IS602_MODE_CPOL BIT(3)
27 #define SC18IS602_MODE_LSB_FIRST BIT(5)
28 #define SC18IS602_MODE_CLOCK_DIV_4 0x0
29 #define SC18IS602_MODE_CLOCK_DIV_16 0x1
30 #define SC18IS602_MODE_CLOCK_DIV_64 0x2
31 #define SC18IS602_MODE_CLOCK_DIV_128 0x3
34 struct spi_master
*master
;
41 struct i2c_client
*client
;
43 u8 buffer
[SC18IS602_BUFSIZ
+ 1];
44 int tlen
; /* Data queued for tx in buffer */
45 int rindex
; /* Receive data index in buffer */
47 struct gpio_desc
*reset
;
50 static int sc18is602_wait_ready(struct sc18is602
*hw
, int len
)
53 int usecs
= 1000000 * len
/ hw
->speed
+ 1;
56 for (i
= 0; i
< 10; i
++) {
57 err
= i2c_master_recv(hw
->client
, dummy
, 1);
60 usleep_range(usecs
, usecs
* 2);
65 static int sc18is602_txrx(struct sc18is602
*hw
, struct spi_message
*msg
,
66 struct spi_transfer
*t
, bool do_transfer
)
68 unsigned int len
= t
->len
;
72 /* First byte (I2C command) is chip select */
73 hw
->buffer
[0] = 1 << msg
->spi
->chip_select
;
78 * We can not immediately send data to the chip, since each I2C message
79 * resembles a full SPI message (from CS active to CS inactive).
80 * Enqueue messages up to the first read or until do_transfer is true.
83 memcpy(&hw
->buffer
[hw
->tlen
], t
->tx_buf
, len
);
88 hw
->rindex
= hw
->tlen
- 1;
89 } else if (t
->rx_buf
) {
91 * For receive-only transfers we still need to perform a dummy
92 * write to receive data from the SPI chip.
93 * Read data starts at the end of transmit data (minus 1 to
96 hw
->rindex
= hw
->tlen
- 1;
97 memset(&hw
->buffer
[hw
->tlen
], 0, len
);
102 if (do_transfer
&& hw
->tlen
> 1) {
103 ret
= sc18is602_wait_ready(hw
, SC18IS602_BUFSIZ
);
106 ret
= i2c_master_send(hw
->client
, hw
->buffer
, hw
->tlen
);
113 int rlen
= hw
->rindex
+ len
;
115 ret
= sc18is602_wait_ready(hw
, hw
->tlen
);
118 ret
= i2c_master_recv(hw
->client
, hw
->buffer
, rlen
);
123 memcpy(t
->rx_buf
, &hw
->buffer
[hw
->rindex
], len
);
130 static int sc18is602_setup_transfer(struct sc18is602
*hw
, u32 hz
, u8 mode
)
136 ctrl
|= SC18IS602_MODE_CPHA
;
138 ctrl
|= SC18IS602_MODE_CPOL
;
139 if (mode
& SPI_LSB_FIRST
)
140 ctrl
|= SC18IS602_MODE_LSB_FIRST
;
142 /* Find the closest clock speed */
143 if (hz
>= hw
->freq
/ 4) {
144 ctrl
|= SC18IS602_MODE_CLOCK_DIV_4
;
145 hw
->speed
= hw
->freq
/ 4;
146 } else if (hz
>= hw
->freq
/ 16) {
147 ctrl
|= SC18IS602_MODE_CLOCK_DIV_16
;
148 hw
->speed
= hw
->freq
/ 16;
149 } else if (hz
>= hw
->freq
/ 64) {
150 ctrl
|= SC18IS602_MODE_CLOCK_DIV_64
;
151 hw
->speed
= hw
->freq
/ 64;
153 ctrl
|= SC18IS602_MODE_CLOCK_DIV_128
;
154 hw
->speed
= hw
->freq
/ 128;
158 * Don't do anything if the control value did not change. The initial
159 * value of 0xff for hw->ctrl ensures that the correct mode will be set
160 * with the first call to this function.
162 if (ctrl
== hw
->ctrl
)
165 ret
= i2c_smbus_write_byte_data(hw
->client
, 0xf0, ctrl
);
174 static int sc18is602_check_transfer(struct spi_device
*spi
,
175 struct spi_transfer
*t
, int tlen
)
177 if (t
&& t
->len
+ tlen
> SC18IS602_BUFSIZ
)
183 static int sc18is602_transfer_one(struct spi_master
*master
,
184 struct spi_message
*m
)
186 struct sc18is602
*hw
= spi_master_get_devdata(master
);
187 struct spi_device
*spi
= m
->spi
;
188 struct spi_transfer
*t
;
192 list_for_each_entry(t
, &m
->transfers
, transfer_list
) {
195 status
= sc18is602_check_transfer(spi
, t
, hw
->tlen
);
199 status
= sc18is602_setup_transfer(hw
, t
->speed_hz
, spi
->mode
);
203 do_transfer
= t
->cs_change
|| list_is_last(&t
->transfer_list
,
207 status
= sc18is602_txrx(hw
, m
, t
, do_transfer
);
210 m
->actual_length
+= status
;
214 spi_transfer_delay_exec(t
);
217 spi_finalize_current_message(master
);
222 static int sc18is602_setup(struct spi_device
*spi
)
224 struct sc18is602
*hw
= spi_master_get_devdata(spi
->master
);
226 /* SC18IS602 does not support CS2 */
227 if (hw
->id
== sc18is602
&& spi
->chip_select
== 2)
233 static int sc18is602_probe(struct i2c_client
*client
,
234 const struct i2c_device_id
*id
)
236 struct device
*dev
= &client
->dev
;
237 struct device_node
*np
= dev
->of_node
;
238 struct sc18is602_platform_data
*pdata
= dev_get_platdata(dev
);
239 struct sc18is602
*hw
;
240 struct spi_master
*master
;
242 if (!i2c_check_functionality(client
->adapter
, I2C_FUNC_I2C
|
243 I2C_FUNC_SMBUS_WRITE_BYTE_DATA
))
246 master
= devm_spi_alloc_master(dev
, sizeof(struct sc18is602
));
250 hw
= spi_master_get_devdata(master
);
251 i2c_set_clientdata(client
, hw
);
253 /* assert reset and then release */
254 hw
->reset
= devm_gpiod_get_optional(dev
, "reset", GPIOD_OUT_HIGH
);
255 if (IS_ERR(hw
->reset
))
256 return PTR_ERR(hw
->reset
);
257 gpiod_set_value_cansleep(hw
->reset
, 0);
264 if (client
->dev
.of_node
)
265 hw
->id
= (enum chips
)of_device_get_match_data(&client
->dev
);
267 hw
->id
= id
->driver_data
;
272 master
->num_chipselect
= 4;
273 hw
->freq
= SC18IS602_CLOCK
;
276 master
->num_chipselect
= 2;
278 hw
->freq
= pdata
->clock_frequency
;
283 val
= of_get_property(np
, "clock-frequency", &len
);
284 if (val
&& len
>= sizeof(__be32
))
285 hw
->freq
= be32_to_cpup(val
);
288 hw
->freq
= SC18IS602_CLOCK
;
291 master
->bus_num
= np
? -1 : client
->adapter
->nr
;
292 master
->mode_bits
= SPI_CPHA
| SPI_CPOL
| SPI_LSB_FIRST
;
293 master
->bits_per_word_mask
= SPI_BPW_MASK(8);
294 master
->setup
= sc18is602_setup
;
295 master
->transfer_one_message
= sc18is602_transfer_one
;
296 master
->dev
.of_node
= np
;
297 master
->min_speed_hz
= hw
->freq
/ 128;
298 master
->max_speed_hz
= hw
->freq
/ 4;
300 return devm_spi_register_master(dev
, master
);
303 static const struct i2c_device_id sc18is602_id
[] = {
304 { "sc18is602", sc18is602
},
305 { "sc18is602b", sc18is602b
},
306 { "sc18is603", sc18is603
},
309 MODULE_DEVICE_TABLE(i2c
, sc18is602_id
);
311 static const struct of_device_id sc18is602_of_match
[] = {
313 .compatible
= "nxp,sc18is602",
314 .data
= (void *)sc18is602
317 .compatible
= "nxp,sc18is602b",
318 .data
= (void *)sc18is602b
321 .compatible
= "nxp,sc18is603",
322 .data
= (void *)sc18is603
326 MODULE_DEVICE_TABLE(of
, sc18is602_of_match
);
328 static struct i2c_driver sc18is602_driver
= {
331 .of_match_table
= of_match_ptr(sc18is602_of_match
),
333 .probe
= sc18is602_probe
,
334 .id_table
= sc18is602_id
,
337 module_i2c_driver(sc18is602_driver
);
339 MODULE_DESCRIPTION("SC18IS602/603 SPI Master Driver");
340 MODULE_AUTHOR("Guenter Roeck");
341 MODULE_LICENSE("GPL");