2 * NBUS driver for TS-4600 based boards
4 * Copyright (c) 2016 - Savoir-faire Linux
5 * Author: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
7 * This file is licensed under the terms of the GNU General Public
8 * License version 2. This program is licensed "as is" without any
9 * warranty of any kind, whether express or implied.
11 * This driver implements a GPIOs bit-banged bus, called the NBUS by Technologic
12 * Systems. It is used to communicate with the peripherals in the FPGA on the
16 #include <linux/bitops.h>
17 #include <linux/gpio/consumer.h>
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/mutex.h>
21 #include <linux/of_platform.h>
22 #include <linux/platform_device.h>
23 #include <linux/pwm.h>
24 #include <linux/ts-nbus.h>
26 #define TS_NBUS_DIRECTION_IN 0
27 #define TS_NBUS_DIRECTION_OUT 1
28 #define TS_NBUS_WRITE_ADR 0
29 #define TS_NBUS_WRITE_VAL 1
32 struct pwm_device
*pwm
;
33 struct gpio_descs
*data
;
34 struct gpio_desc
*csn
;
35 struct gpio_desc
*txrx
;
36 struct gpio_desc
*strobe
;
37 struct gpio_desc
*ale
;
38 struct gpio_desc
*rdy
;
43 * request all gpios required by the bus.
45 static int ts_nbus_init_pdata(struct platform_device
*pdev
, struct ts_nbus
48 ts_nbus
->data
= devm_gpiod_get_array(&pdev
->dev
, "ts,data",
50 if (IS_ERR(ts_nbus
->data
)) {
51 dev_err(&pdev
->dev
, "failed to retrieve ts,data-gpio from dts\n");
52 return PTR_ERR(ts_nbus
->data
);
55 ts_nbus
->csn
= devm_gpiod_get(&pdev
->dev
, "ts,csn", GPIOD_OUT_HIGH
);
56 if (IS_ERR(ts_nbus
->csn
)) {
57 dev_err(&pdev
->dev
, "failed to retrieve ts,csn-gpio from dts\n");
58 return PTR_ERR(ts_nbus
->csn
);
61 ts_nbus
->txrx
= devm_gpiod_get(&pdev
->dev
, "ts,txrx", GPIOD_OUT_HIGH
);
62 if (IS_ERR(ts_nbus
->txrx
)) {
63 dev_err(&pdev
->dev
, "failed to retrieve ts,txrx-gpio from dts\n");
64 return PTR_ERR(ts_nbus
->txrx
);
67 ts_nbus
->strobe
= devm_gpiod_get(&pdev
->dev
, "ts,strobe", GPIOD_OUT_HIGH
);
68 if (IS_ERR(ts_nbus
->strobe
)) {
69 dev_err(&pdev
->dev
, "failed to retrieve ts,strobe-gpio from dts\n");
70 return PTR_ERR(ts_nbus
->strobe
);
73 ts_nbus
->ale
= devm_gpiod_get(&pdev
->dev
, "ts,ale", GPIOD_OUT_HIGH
);
74 if (IS_ERR(ts_nbus
->ale
)) {
75 dev_err(&pdev
->dev
, "failed to retrieve ts,ale-gpio from dts\n");
76 return PTR_ERR(ts_nbus
->ale
);
79 ts_nbus
->rdy
= devm_gpiod_get(&pdev
->dev
, "ts,rdy", GPIOD_IN
);
80 if (IS_ERR(ts_nbus
->rdy
)) {
81 dev_err(&pdev
->dev
, "failed to retrieve ts,rdy-gpio from dts\n");
82 return PTR_ERR(ts_nbus
->rdy
);
89 * the data gpios are used for reading and writing values, their directions
90 * should be adjusted accordingly.
92 static void ts_nbus_set_direction(struct ts_nbus
*ts_nbus
, int direction
)
96 for (i
= 0; i
< 8; i
++) {
97 if (direction
== TS_NBUS_DIRECTION_IN
)
98 gpiod_direction_input(ts_nbus
->data
->desc
[i
]);
100 /* when used as output the default state of the data
101 * lines are set to high */
102 gpiod_direction_output(ts_nbus
->data
->desc
[i
], 1);
107 * reset the bus in its initial state.
108 * The data, csn, strobe and ale lines must be zero'ed to let the FPGA knows a
109 * new transaction can be process.
111 static void ts_nbus_reset_bus(struct ts_nbus
*ts_nbus
)
113 DECLARE_BITMAP(values
, 8);
117 gpiod_set_array_value_cansleep(8, ts_nbus
->data
->desc
,
118 ts_nbus
->data
->info
, values
);
119 gpiod_set_value_cansleep(ts_nbus
->csn
, 0);
120 gpiod_set_value_cansleep(ts_nbus
->strobe
, 0);
121 gpiod_set_value_cansleep(ts_nbus
->ale
, 0);
125 * let the FPGA knows it can process.
127 static void ts_nbus_start_transaction(struct ts_nbus
*ts_nbus
)
129 gpiod_set_value_cansleep(ts_nbus
->strobe
, 1);
133 * read a byte value from the data gpios.
134 * return 0 on success or negative errno on failure.
136 static int ts_nbus_read_byte(struct ts_nbus
*ts_nbus
, u8
*val
)
138 struct gpio_descs
*gpios
= ts_nbus
->data
;
142 for (i
= 0; i
< 8; i
++) {
143 ret
= gpiod_get_value_cansleep(gpios
->desc
[i
]);
154 * set the data gpios accordingly to the byte value.
156 static void ts_nbus_write_byte(struct ts_nbus
*ts_nbus
, u8 byte
)
158 struct gpio_descs
*gpios
= ts_nbus
->data
;
159 DECLARE_BITMAP(values
, 8);
163 gpiod_set_array_value_cansleep(8, gpios
->desc
, gpios
->info
, values
);
167 * reading the bus consists of resetting the bus, then notifying the FPGA to
168 * send the data in the data gpios and return the read value.
169 * return 0 on success or negative errno on failure.
171 static int ts_nbus_read_bus(struct ts_nbus
*ts_nbus
, u8
*val
)
173 ts_nbus_reset_bus(ts_nbus
);
174 ts_nbus_start_transaction(ts_nbus
);
176 return ts_nbus_read_byte(ts_nbus
, val
);
180 * writing to the bus consists of resetting the bus, then define the type of
181 * command (address/value), write the data and notify the FPGA to retrieve the
182 * value in the data gpios.
184 static void ts_nbus_write_bus(struct ts_nbus
*ts_nbus
, int cmd
, u8 val
)
186 ts_nbus_reset_bus(ts_nbus
);
188 if (cmd
== TS_NBUS_WRITE_ADR
)
189 gpiod_set_value_cansleep(ts_nbus
->ale
, 1);
191 ts_nbus_write_byte(ts_nbus
, val
);
192 ts_nbus_start_transaction(ts_nbus
);
196 * read the value in the FPGA register at the given address.
197 * return 0 on success or negative errno on failure.
199 int ts_nbus_read(struct ts_nbus
*ts_nbus
, u8 adr
, u16
*val
)
204 /* bus access must be atomic */
205 mutex_lock(&ts_nbus
->lock
);
207 /* set the bus in read mode */
208 gpiod_set_value_cansleep(ts_nbus
->txrx
, 0);
211 ts_nbus_write_bus(ts_nbus
, TS_NBUS_WRITE_ADR
, adr
);
213 /* set the data gpios direction as input before reading */
214 ts_nbus_set_direction(ts_nbus
, TS_NBUS_DIRECTION_IN
);
216 /* reading value MSB first */
220 for (i
= 1; i
>= 0; i
--) {
221 /* read a byte from the bus, leave on error */
222 ret
= ts_nbus_read_bus(ts_nbus
, &byte
);
226 /* append the byte read to the final value */
227 *val
|= byte
<< (i
* 8);
229 gpiod_set_value_cansleep(ts_nbus
->csn
, 1);
230 ret
= gpiod_get_value_cansleep(ts_nbus
->rdy
);
234 /* restore the data gpios direction as output after reading */
235 ts_nbus_set_direction(ts_nbus
, TS_NBUS_DIRECTION_OUT
);
237 mutex_unlock(&ts_nbus
->lock
);
241 EXPORT_SYMBOL_GPL(ts_nbus_read
);
244 * write the desired value in the FPGA register at the given address.
246 int ts_nbus_write(struct ts_nbus
*ts_nbus
, u8 adr
, u16 val
)
250 /* bus access must be atomic */
251 mutex_lock(&ts_nbus
->lock
);
253 /* set the bus in write mode */
254 gpiod_set_value_cansleep(ts_nbus
->txrx
, 1);
257 ts_nbus_write_bus(ts_nbus
, TS_NBUS_WRITE_ADR
, adr
);
259 /* writing value MSB first */
260 for (i
= 1; i
>= 0; i
--)
261 ts_nbus_write_bus(ts_nbus
, TS_NBUS_WRITE_VAL
, (u8
)(val
>> (i
* 8)));
263 /* wait for completion */
264 gpiod_set_value_cansleep(ts_nbus
->csn
, 1);
265 while (gpiod_get_value_cansleep(ts_nbus
->rdy
) != 0) {
266 gpiod_set_value_cansleep(ts_nbus
->csn
, 0);
267 gpiod_set_value_cansleep(ts_nbus
->csn
, 1);
270 mutex_unlock(&ts_nbus
->lock
);
274 EXPORT_SYMBOL_GPL(ts_nbus_write
);
276 static int ts_nbus_probe(struct platform_device
*pdev
)
278 struct pwm_device
*pwm
;
279 struct pwm_args pargs
;
280 struct device
*dev
= &pdev
->dev
;
281 struct ts_nbus
*ts_nbus
;
284 ts_nbus
= devm_kzalloc(dev
, sizeof(*ts_nbus
), GFP_KERNEL
);
288 mutex_init(&ts_nbus
->lock
);
290 ret
= ts_nbus_init_pdata(pdev
, ts_nbus
);
294 pwm
= devm_pwm_get(dev
, NULL
);
297 if (ret
!= -EPROBE_DEFER
)
298 dev_err(dev
, "unable to request PWM\n");
302 pwm_get_args(pwm
, &pargs
);
304 dev_err(&pdev
->dev
, "invalid PWM period\n");
309 * FIXME: pwm_apply_args() should be removed when switching to
310 * the atomic PWM API.
313 ret
= pwm_config(pwm
, pargs
.period
, pargs
.period
);
318 * we can now start the FPGA and populate the peripherals.
324 * let the child nodes retrieve this instance of the ts-nbus.
326 dev_set_drvdata(dev
, ts_nbus
);
328 ret
= of_platform_populate(dev
->of_node
, NULL
, NULL
, dev
);
332 dev_info(dev
, "initialized\n");
337 static int ts_nbus_remove(struct platform_device
*pdev
)
339 struct ts_nbus
*ts_nbus
= dev_get_drvdata(&pdev
->dev
);
341 /* shutdown the FPGA */
342 mutex_lock(&ts_nbus
->lock
);
343 pwm_disable(ts_nbus
->pwm
);
344 mutex_unlock(&ts_nbus
->lock
);
349 static const struct of_device_id ts_nbus_of_match
[] = {
350 { .compatible
= "technologic,ts-nbus", },
353 MODULE_DEVICE_TABLE(of
, ts_nbus_of_match
);
355 static struct platform_driver ts_nbus_driver
= {
356 .probe
= ts_nbus_probe
,
357 .remove
= ts_nbus_remove
,
360 .of_match_table
= ts_nbus_of_match
,
364 module_platform_driver(ts_nbus_driver
);
366 MODULE_ALIAS("platform:ts_nbus");
367 MODULE_AUTHOR("Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>");
368 MODULE_DESCRIPTION("Technologic Systems NBUS");
369 MODULE_LICENSE("GPL v2");