2 * parport-to-butterfly adapter
4 * Copyright (C) 2005 David Brownell
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.
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.
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/delay.h>
19 #include <linux/module.h>
20 #include <linux/device.h>
21 #include <linux/parport.h>
23 #include <linux/sched.h>
24 #include <linux/spi/spi.h>
25 #include <linux/spi/spi_bitbang.h>
26 #include <linux/spi/flash.h>
28 #include <linux/mtd/partitions.h>
32 * This uses SPI to talk with an "AVR Butterfly", which is a $US20 card
33 * with a battery powered AVR microcontroller and lots of goodies. You
34 * can use GCC to develop firmware for this.
36 * See Documentation/spi/butterfly for information about how to build
37 * and use this custom parallel port cable.
41 /* DATA output bits (pins 2..9 == D0..D7) */
42 #define butterfly_nreset (1 << 1) /* pin 3 */
44 #define spi_sck_bit (1 << 0) /* pin 2 */
45 #define spi_mosi_bit (1 << 7) /* pin 9 */
47 #define vcc_bits ((1 << 6) | (1 << 5)) /* pins 7, 8 */
49 /* STATUS input bits */
50 #define spi_miso_bit PARPORT_STATUS_BUSY /* pin 11 */
52 /* CONTROL output bits */
53 #define spi_cs_bit PARPORT_CONTROL_SELECT /* pin 17 */
57 static inline struct butterfly
*spidev_to_pp(struct spi_device
*spi
)
59 return spi
->controller_data
;
64 /* REVISIT ... for now, this must be first */
65 struct spi_bitbang bitbang
;
72 struct spi_device
*dataflash
;
73 struct spi_device
*butterfly
;
74 struct spi_board_info info
[2];
78 /*----------------------------------------------------------------------*/
81 setsck(struct spi_device
*spi
, int is_on
)
83 struct butterfly
*pp
= spidev_to_pp(spi
);
84 u8 bit
, byte
= pp
->lastbyte
;
92 parport_write_data(pp
->port
, byte
);
97 setmosi(struct spi_device
*spi
, int is_on
)
99 struct butterfly
*pp
= spidev_to_pp(spi
);
100 u8 bit
, byte
= pp
->lastbyte
;
108 parport_write_data(pp
->port
, byte
);
112 static inline int getmiso(struct spi_device
*spi
)
114 struct butterfly
*pp
= spidev_to_pp(spi
);
120 /* only STATUS_BUSY is NOT negated */
121 value
= !(parport_read_status(pp
->port
) & bit
);
122 return (bit
== PARPORT_STATUS_BUSY
) ? value
: !value
;
125 static void butterfly_chipselect(struct spi_device
*spi
, int value
)
127 struct butterfly
*pp
= spidev_to_pp(spi
);
129 /* set default clock polarity */
130 if (value
!= BITBANG_CS_INACTIVE
)
131 setsck(spi
, spi
->mode
& SPI_CPOL
);
133 /* here, value == "activate or not";
134 * most PARPORT_CONTROL_* bits are negated, so we must
135 * morph it to value == "bit value to write in control register"
137 if (spi_cs_bit
== PARPORT_CONTROL_INIT
)
140 parport_frob_control(pp
->port
, spi_cs_bit
, value
? spi_cs_bit
: 0);
144 /* we only needed to implement one mode here, and choose SPI_MODE_0 */
146 #define spidelay(X) do { } while (0)
147 /* #define spidelay ndelay */
149 #include "spi-bitbang-txrx.h"
152 butterfly_txrx_word_mode0(struct spi_device
*spi
,
156 return bitbang_txrx_be_cpha0(spi
, nsecs
, 0, 0, word
, bits
);
159 /*----------------------------------------------------------------------*/
161 /* override default partitioning with cmdlinepart */
162 static struct mtd_partition partitions
[] = { {
163 /* JFFS2 wants partitions of 4*N blocks for this device,
164 * so sectors 0 and 1 can't be partitions by themselves.
167 /* sector 0 = 8 pages * 264 bytes/page (1 block)
168 * sector 1 = 248 pages * 264 bytes/page
170 .name
= "bookkeeping", /* 66 KB */
172 .size
= (8 + 248) * 264,
173 /* .mask_flags = MTD_WRITEABLE, */
175 /* sector 2 = 256 pages * 264 bytes/page
176 * sectors 3-5 = 512 pages * 264 bytes/page
178 .name
= "filesystem", /* 462 KB */
179 .offset
= MTDPART_OFS_APPEND
,
180 .size
= MTDPART_SIZ_FULL
,
183 static struct flash_platform_data flash
= {
184 .name
= "butterflash",
186 .nr_parts
= ARRAY_SIZE(partitions
),
190 /* REVISIT remove this ugly global and its "only one" limitation */
191 static struct butterfly
*butterfly
;
193 static void butterfly_attach(struct parport
*p
)
195 struct pardevice
*pd
;
197 struct butterfly
*pp
;
198 struct spi_master
*master
;
199 struct device
*dev
= p
->physport
->dev
;
201 if (butterfly
|| !dev
)
204 /* REVISIT: this just _assumes_ a butterfly is there ... no probe,
205 * and no way to be selective about what it binds to.
208 master
= spi_alloc_master(dev
, sizeof(*pp
));
213 pp
= spi_master_get_devdata(master
);
216 * SPI and bitbang hookup
218 * use default setup(), cleanup(), and transfer() methods; and
219 * only bother implementing mode 0. Start it later.
221 master
->bus_num
= 42;
222 master
->num_chipselect
= 2;
224 pp
->bitbang
.master
= master
;
225 pp
->bitbang
.chipselect
= butterfly_chipselect
;
226 pp
->bitbang
.txrx_word
[SPI_MODE_0
] = butterfly_txrx_word_mode0
;
232 pd
= parport_register_device(p
, "spi_butterfly",
241 status
= parport_claim(pd
);
246 * Butterfly reset, powerup, run firmware
248 pr_debug("%s: powerup/reset Butterfly\n", p
->name
);
250 /* nCS for dataflash (this bit is inverted on output) */
251 parport_frob_control(pp
->port
, spi_cs_bit
, 0);
253 /* stabilize power with chip in reset (nRESET), and
254 * spi_sck_bit clear (CPOL=0)
256 pp
->lastbyte
|= vcc_bits
;
257 parport_write_data(pp
->port
, pp
->lastbyte
);
260 /* take it out of reset; assume long reset delay */
261 pp
->lastbyte
|= butterfly_nreset
;
262 parport_write_data(pp
->port
, pp
->lastbyte
);
267 * Start SPI ... for now, hide that we're two physical busses.
269 status
= spi_bitbang_start(&pp
->bitbang
);
273 /* Bus 1 lets us talk to at45db041b (firmware disables AVR SPI), AVR
274 * (firmware resets at45, acts as spi slave) or neither (we ignore
275 * both, AVR uses AT45). Here we expect firmware for the first option.
278 pp
->info
[0].max_speed_hz
= 15 * 1000 * 1000;
279 strcpy(pp
->info
[0].modalias
, "mtd_dataflash");
280 pp
->info
[0].platform_data
= &flash
;
281 pp
->info
[0].chip_select
= 1;
282 pp
->info
[0].controller_data
= pp
;
283 pp
->dataflash
= spi_new_device(pp
->bitbang
.master
, &pp
->info
[0]);
285 pr_debug("%s: dataflash at %s\n", p
->name
,
286 dev_name(&pp
->dataflash
->dev
));
288 pr_info("%s: AVR Butterfly\n", p
->name
);
294 parport_write_data(pp
->port
, 0);
296 parport_release(pp
->pd
);
298 parport_unregister_device(pd
);
300 (void) spi_master_put(pp
->bitbang
.master
);
302 pr_debug("%s: butterfly probe, fail %d\n", p
->name
, status
);
305 static void butterfly_detach(struct parport
*p
)
307 struct butterfly
*pp
;
309 /* FIXME this global is ugly ... but, how to quickly get from
310 * the parport to the "struct butterfly" associated with it?
311 * "old school" driver-internal device lists?
313 if (!butterfly
|| butterfly
->port
!= p
)
318 /* stop() unregisters child devices too */
319 spi_bitbang_stop(&pp
->bitbang
);
322 parport_write_data(pp
->port
, 0);
325 parport_release(pp
->pd
);
326 parport_unregister_device(pp
->pd
);
328 (void) spi_master_put(pp
->bitbang
.master
);
331 static struct parport_driver butterfly_driver
= {
332 .name
= "spi_butterfly",
333 .attach
= butterfly_attach
,
334 .detach
= butterfly_detach
,
338 static int __init
butterfly_init(void)
340 return parport_register_driver(&butterfly_driver
);
342 device_initcall(butterfly_init
);
344 static void __exit
butterfly_exit(void)
346 parport_unregister_driver(&butterfly_driver
);
348 module_exit(butterfly_exit
);
350 MODULE_DESCRIPTION("Parport Adapter driver for AVR Butterfly");
351 MODULE_LICENSE("GPL");