blob: f16ef7fb10f1a78494f72c6c80ba10e0c76346cc [file] [log] [blame]
David Brownell2e10c842006-01-11 11:23:49 -08001/*
Grant Likelyca632f52011-06-06 01:16:30 -06002 * parport-to-butterfly adapter
David Brownell2e10c842006-01-11 11:23:49 -08003 *
4 * Copyright (C) 2005 David Brownell
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
David Brownell2e10c842006-01-11 11:23:49 -080015 */
David Brownell2e10c842006-01-11 11:23:49 -080016#include <linux/kernel.h>
17#include <linux/init.h>
18#include <linux/delay.h>
Paul Gortmakerd7614de2011-07-03 15:44:29 -040019#include <linux/module.h>
David Brownellda675292007-05-08 00:27:42 -070020#include <linux/device.h>
David Brownell2e10c842006-01-11 11:23:49 -080021#include <linux/parport.h>
22
Al Viro914e2632006-10-18 13:55:46 -040023#include <linux/sched.h>
David Brownell2e10c842006-01-11 11:23:49 -080024#include <linux/spi/spi.h>
25#include <linux/spi/spi_bitbang.h>
26#include <linux/spi/flash.h>
27
28#include <linux/mtd/partitions.h>
29
David Brownell2e10c842006-01-11 11:23:49 -080030/*
31 * This uses SPI to talk with an "AVR Butterfly", which is a $US20 card
32 * with a battery powered AVR microcontroller and lots of goodies. You
33 * can use GCC to develop firmware for this.
34 *
35 * See Documentation/spi/butterfly for information about how to build
36 * and use this custom parallel port cable.
37 */
38
David Brownell2e10c842006-01-11 11:23:49 -080039/* DATA output bits (pins 2..9 == D0..D7) */
40#define butterfly_nreset (1 << 1) /* pin 3 */
41
42#define spi_sck_bit (1 << 0) /* pin 2 */
43#define spi_mosi_bit (1 << 7) /* pin 9 */
44
David Brownell2e10c842006-01-11 11:23:49 -080045#define vcc_bits ((1 << 6) | (1 << 5)) /* pins 7, 8 */
46
47/* STATUS input bits */
48#define spi_miso_bit PARPORT_STATUS_BUSY /* pin 11 */
49
David Brownell2e10c842006-01-11 11:23:49 -080050/* CONTROL output bits */
51#define spi_cs_bit PARPORT_CONTROL_SELECT /* pin 17 */
David Brownell2e10c842006-01-11 11:23:49 -080052
David Brownell2e10c842006-01-11 11:23:49 -080053static inline struct butterfly *spidev_to_pp(struct spi_device *spi)
54{
55 return spi->controller_data;
56}
57
David Brownell2e10c842006-01-11 11:23:49 -080058struct butterfly {
59 /* REVISIT ... for now, this must be first */
60 struct spi_bitbang bitbang;
61
62 struct parport *port;
63 struct pardevice *pd;
64
65 u8 lastbyte;
66
67 struct spi_device *dataflash;
68 struct spi_device *butterfly;
69 struct spi_board_info info[2];
70
71};
72
73/*----------------------------------------------------------------------*/
74
David Brownell2e10c842006-01-11 11:23:49 -080075static inline void
76setsck(struct spi_device *spi, int is_on)
77{
78 struct butterfly *pp = spidev_to_pp(spi);
79 u8 bit, byte = pp->lastbyte;
80
David Brownell735ce952007-05-08 00:32:13 -070081 bit = spi_sck_bit;
David Brownell2e10c842006-01-11 11:23:49 -080082
83 if (is_on)
84 byte |= bit;
85 else
86 byte &= ~bit;
87 parport_write_data(pp->port, byte);
88 pp->lastbyte = byte;
89}
90
91static inline void
92setmosi(struct spi_device *spi, int is_on)
93{
94 struct butterfly *pp = spidev_to_pp(spi);
95 u8 bit, byte = pp->lastbyte;
96
David Brownell735ce952007-05-08 00:32:13 -070097 bit = spi_mosi_bit;
David Brownell2e10c842006-01-11 11:23:49 -080098
99 if (is_on)
100 byte |= bit;
101 else
102 byte &= ~bit;
103 parport_write_data(pp->port, byte);
104 pp->lastbyte = byte;
105}
106
107static inline int getmiso(struct spi_device *spi)
108{
109 struct butterfly *pp = spidev_to_pp(spi);
110 int value;
111 u8 bit;
112
David Brownell735ce952007-05-08 00:32:13 -0700113 bit = spi_miso_bit;
David Brownell2e10c842006-01-11 11:23:49 -0800114
115 /* only STATUS_BUSY is NOT negated */
116 value = !(parport_read_status(pp->port) & bit);
117 return (bit == PARPORT_STATUS_BUSY) ? value : !value;
118}
119
120static void butterfly_chipselect(struct spi_device *spi, int value)
121{
122 struct butterfly *pp = spidev_to_pp(spi);
123
124 /* set default clock polarity */
David Brownell9c1da3c2006-01-21 13:21:43 -0800125 if (value != BITBANG_CS_INACTIVE)
David Brownell2e10c842006-01-11 11:23:49 -0800126 setsck(spi, spi->mode & SPI_CPOL);
127
David Brownell9c1da3c2006-01-21 13:21:43 -0800128 /* here, value == "activate or not";
129 * most PARPORT_CONTROL_* bits are negated, so we must
130 * morph it to value == "bit value to write in control register"
131 */
David Brownell2e10c842006-01-11 11:23:49 -0800132 if (spi_cs_bit == PARPORT_CONTROL_INIT)
133 value = !value;
134
David Brownell2e10c842006-01-11 11:23:49 -0800135 parport_frob_control(pp->port, spi_cs_bit, value ? spi_cs_bit : 0);
136}
137
David Brownell2e10c842006-01-11 11:23:49 -0800138/* we only needed to implement one mode here, and choose SPI_MODE_0 */
139
Jingoo Hanac8ed232013-10-14 10:34:24 +0900140#define spidelay(X) do { } while (0)
141/* #define spidelay ndelay */
David Brownell2e10c842006-01-11 11:23:49 -0800142
Grant Likelyca632f52011-06-06 01:16:30 -0600143#include "spi-bitbang-txrx.h"
David Brownell2e10c842006-01-11 11:23:49 -0800144
145static u32
Sudip Mukherjeee71fec72015-12-02 19:17:50 +0530146butterfly_txrx_word_mode0(struct spi_device *spi, unsigned nsecs, u32 word,
147 u8 bits)
David Brownell2e10c842006-01-11 11:23:49 -0800148{
Marek Szyprowski04bb2a02010-06-30 14:27:32 -0600149 return bitbang_txrx_be_cpha0(spi, nsecs, 0, 0, word, bits);
David Brownell2e10c842006-01-11 11:23:49 -0800150}
151
152/*----------------------------------------------------------------------*/
153
154/* override default partitioning with cmdlinepart */
155static struct mtd_partition partitions[] = { {
David Brownell9c1da3c2006-01-21 13:21:43 -0800156 /* JFFS2 wants partitions of 4*N blocks for this device,
157 * so sectors 0 and 1 can't be partitions by themselves.
158 */
David Brownell2e10c842006-01-11 11:23:49 -0800159
160 /* sector 0 = 8 pages * 264 bytes/page (1 block)
161 * sector 1 = 248 pages * 264 bytes/page
162 */
Jingoo Hanac8ed232013-10-14 10:34:24 +0900163 .name = "bookkeeping", /* 66 KB */
David Brownell2e10c842006-01-11 11:23:49 -0800164 .offset = 0,
165 .size = (8 + 248) * 264,
Jingoo Hanac8ed232013-10-14 10:34:24 +0900166 /* .mask_flags = MTD_WRITEABLE, */
David Brownell2e10c842006-01-11 11:23:49 -0800167}, {
168 /* sector 2 = 256 pages * 264 bytes/page
169 * sectors 3-5 = 512 pages * 264 bytes/page
170 */
Jingoo Hanac8ed232013-10-14 10:34:24 +0900171 .name = "filesystem", /* 462 KB */
David Brownell2e10c842006-01-11 11:23:49 -0800172 .offset = MTDPART_OFS_APPEND,
173 .size = MTDPART_SIZ_FULL,
174} };
175
176static struct flash_platform_data flash = {
177 .name = "butterflash",
178 .parts = partitions,
179 .nr_parts = ARRAY_SIZE(partitions),
180};
181
David Brownell2e10c842006-01-11 11:23:49 -0800182/* REVISIT remove this ugly global and its "only one" limitation */
183static struct butterfly *butterfly;
184
185static void butterfly_attach(struct parport *p)
186{
187 struct pardevice *pd;
188 int status;
189 struct butterfly *pp;
190 struct spi_master *master;
David Brownellda675292007-05-08 00:27:42 -0700191 struct device *dev = p->physport->dev;
David Brownell2e10c842006-01-11 11:23:49 -0800192
David Brownellda675292007-05-08 00:27:42 -0700193 if (butterfly || !dev)
David Brownell2e10c842006-01-11 11:23:49 -0800194 return;
195
196 /* REVISIT: this just _assumes_ a butterfly is there ... no probe,
197 * and no way to be selective about what it binds to.
198 */
199
Jingoo Hanac8ed232013-10-14 10:34:24 +0900200 master = spi_alloc_master(dev, sizeof(*pp));
David Brownell2e10c842006-01-11 11:23:49 -0800201 if (!master) {
202 status = -ENOMEM;
203 goto done;
204 }
205 pp = spi_master_get_devdata(master);
206
207 /*
208 * SPI and bitbang hookup
209 *
210 * use default setup(), cleanup(), and transfer() methods; and
211 * only bother implementing mode 0. Start it later.
212 */
213 master->bus_num = 42;
214 master->num_chipselect = 2;
215
Axel Lin94c69f72013-09-10 15:43:41 +0800216 pp->bitbang.master = master;
David Brownell2e10c842006-01-11 11:23:49 -0800217 pp->bitbang.chipselect = butterfly_chipselect;
218 pp->bitbang.txrx_word[SPI_MODE_0] = butterfly_txrx_word_mode0;
219
220 /*
221 * parport hookup
222 */
223 pp->port = p;
224 pd = parport_register_device(p, "spi_butterfly",
Sudip Mukherjeee71fec72015-12-02 19:17:50 +0530225 NULL, NULL, NULL,
226 0 /* FLAGS */, pp);
David Brownell2e10c842006-01-11 11:23:49 -0800227 if (!pd) {
228 status = -ENOMEM;
229 goto clean0;
230 }
231 pp->pd = pd;
232
233 status = parport_claim(pd);
234 if (status < 0)
235 goto clean1;
236
237 /*
238 * Butterfly reset, powerup, run firmware
239 */
240 pr_debug("%s: powerup/reset Butterfly\n", p->name);
241
242 /* nCS for dataflash (this bit is inverted on output) */
243 parport_frob_control(pp->port, spi_cs_bit, 0);
244
245 /* stabilize power with chip in reset (nRESET), and
David Brownell735ce952007-05-08 00:32:13 -0700246 * spi_sck_bit clear (CPOL=0)
David Brownell2e10c842006-01-11 11:23:49 -0800247 */
248 pp->lastbyte |= vcc_bits;
249 parport_write_data(pp->port, pp->lastbyte);
250 msleep(5);
251
252 /* take it out of reset; assume long reset delay */
253 pp->lastbyte |= butterfly_nreset;
254 parport_write_data(pp->port, pp->lastbyte);
255 msleep(100);
256
David Brownell2e10c842006-01-11 11:23:49 -0800257 /*
258 * Start SPI ... for now, hide that we're two physical busses.
259 */
260 status = spi_bitbang_start(&pp->bitbang);
261 if (status < 0)
262 goto clean2;
263
David Brownell9c1da3c2006-01-21 13:21:43 -0800264 /* Bus 1 lets us talk to at45db041b (firmware disables AVR SPI), AVR
265 * (firmware resets at45, acts as spi slave) or neither (we ignore
266 * both, AVR uses AT45). Here we expect firmware for the first option.
David Brownell2e10c842006-01-11 11:23:49 -0800267 */
Ben Dooks1fc75472006-05-20 15:00:17 -0700268
David Brownell2e10c842006-01-11 11:23:49 -0800269 pp->info[0].max_speed_hz = 15 * 1000 * 1000;
270 strcpy(pp->info[0].modalias, "mtd_dataflash");
271 pp->info[0].platform_data = &flash;
272 pp->info[0].chip_select = 1;
273 pp->info[0].controller_data = pp;
274 pp->dataflash = spi_new_device(pp->bitbang.master, &pp->info[0]);
275 if (pp->dataflash)
276 pr_debug("%s: dataflash at %s\n", p->name,
Sudip Mukherjeee71fec72015-12-02 19:17:50 +0530277 dev_name(&pp->dataflash->dev));
David Brownell2e10c842006-01-11 11:23:49 -0800278
David Brownell2e10c842006-01-11 11:23:49 -0800279 pr_info("%s: AVR Butterfly\n", p->name);
280 butterfly = pp;
281 return;
282
283clean2:
284 /* turn off VCC */
285 parport_write_data(pp->port, 0);
286
287 parport_release(pp->pd);
288clean1:
289 parport_unregister_device(pd);
290clean0:
Sudip Mukherjeeb12fe722015-12-02 19:17:49 +0530291 spi_master_put(pp->bitbang.master);
David Brownell2e10c842006-01-11 11:23:49 -0800292done:
David Brownell2e10c842006-01-11 11:23:49 -0800293 pr_debug("%s: butterfly probe, fail %d\n", p->name, status);
294}
295
296static void butterfly_detach(struct parport *p)
297{
298 struct butterfly *pp;
David Brownell2e10c842006-01-11 11:23:49 -0800299
300 /* FIXME this global is ugly ... but, how to quickly get from
301 * the parport to the "struct butterfly" associated with it?
302 * "old school" driver-internal device lists?
303 */
304 if (!butterfly || butterfly->port != p)
305 return;
306 pp = butterfly;
307 butterfly = NULL;
308
David Brownell9c1da3c2006-01-21 13:21:43 -0800309 /* stop() unregisters child devices too */
Axel Lind9721ae2014-03-29 18:50:12 +0800310 spi_bitbang_stop(&pp->bitbang);
David Brownell2e10c842006-01-11 11:23:49 -0800311
312 /* turn off VCC */
313 parport_write_data(pp->port, 0);
314 msleep(10);
315
316 parport_release(pp->pd);
317 parport_unregister_device(pp->pd);
318
Sudip Mukherjeeb12fe722015-12-02 19:17:49 +0530319 spi_master_put(pp->bitbang.master);
David Brownell2e10c842006-01-11 11:23:49 -0800320}
321
322static struct parport_driver butterfly_driver = {
323 .name = "spi_butterfly",
324 .attach = butterfly_attach,
325 .detach = butterfly_detach,
326};
327
David Brownell2e10c842006-01-11 11:23:49 -0800328static int __init butterfly_init(void)
329{
330 return parport_register_driver(&butterfly_driver);
331}
332device_initcall(butterfly_init);
333
334static void __exit butterfly_exit(void)
335{
336 parport_unregister_driver(&butterfly_driver);
337}
338module_exit(butterfly_exit);
339
David Brownell9c1da3c2006-01-21 13:21:43 -0800340MODULE_DESCRIPTION("Parport Adapter driver for AVR Butterfly");
David Brownell2e10c842006-01-11 11:23:49 -0800341MODULE_LICENSE("GPL");