blob: cb2284475385a5c205d407fd6736120d7fc76faf [file] [log] [blame]
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -07001/*
Grant Likelyca632f52011-06-06 01:16:30 -06002 * Driver for LM70EVAL-LLP board for the LM70 sensor
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -07003 *
4 * Copyright (C) 2006 Kaiwan N Billimoria <kaiwan@designergraphix.com>
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.
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -070015 */
16
17#include <linux/init.h>
18#include <linux/module.h>
19#include <linux/kernel.h>
20#include <linux/delay.h>
21#include <linux/device.h>
22#include <linux/parport.h>
23#include <linux/sysfs.h>
24#include <linux/workqueue.h>
25
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -070026#include <linux/spi/spi.h>
27#include <linux/spi/spi_bitbang.h>
28
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -070029/*
30 * The LM70 communicates with a host processor using a 3-wire variant of
31 * the SPI/Microwire bus interface. This driver specifically supports an
32 * NS LM70 LLP Evaluation Board, interfacing to a PC using its parallel
33 * port to bitbang an SPI-parport bridge. Accordingly, this is an SPI
34 * master controller driver. The hwmon/lm70 driver is a "SPI protocol
35 * driver", layered on top of this one and usable without the lm70llp.
36 *
Kaiwan N Billimoria2b730052009-01-07 16:37:34 +010037 * Datasheet and Schematic:
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -070038 * The LM70 is a temperature sensor chip from National Semiconductor; its
39 * datasheet is available at http://www.national.com/pf/LM/LM70.html
Kaiwan N Billimoria2b730052009-01-07 16:37:34 +010040 * The schematic for this particular board (the LM70EVAL-LLP) is
41 * available (on page 4) here:
42 * http://www.national.com/appinfo/tempsensors/files/LM70LLPEVALmanual.pdf
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -070043 *
44 * Also see Documentation/spi/spi-lm70llp. The SPI<->parport code here is
45 * (heavily) based on spi-butterfly by David Brownell.
46 *
47 * The LM70 LLP connects to the PC parallel port in the following manner:
48 *
49 * Parallel LM70 LLP
50 * Port Direction JP2 Header
51 * ----------- --------- ------------
52 * D0 2 - -
53 * D1 3 --> V+ 5
54 * D2 4 --> V+ 5
55 * D3 5 --> V+ 5
56 * D4 6 --> V+ 5
57 * D5 7 --> nCS 8
58 * D6 8 --> SCLK 3
59 * D7 9 --> SI/O 5
60 * GND 25 - GND 7
61 * Select 13 <-- SI/O 1
62 *
63 * Note that parport pin 13 actually gets inverted by the transistor
64 * arrangement which lets either the parport or the LM70 drive the
Kaiwan N Billimoria2b730052009-01-07 16:37:34 +010065 * SI/SO signal (see the schematic for details).
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -070066 */
67
68#define DRVNAME "spi-lm70llp"
69
70#define lm70_INIT 0xBE
71#define SIO 0x10
72#define nCS 0x20
73#define SCLK 0x40
74
75/*-------------------------------------------------------------------------*/
76
77struct spi_lm70llp {
78 struct spi_bitbang bitbang;
79 struct parport *port;
80 struct pardevice *pd;
81 struct spi_device *spidev_lm70;
82 struct spi_board_info info;
Tony Jones49dce682007-10-16 01:27:48 -070083 //struct device *dev;
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -070084};
85
86/* REVISIT : ugly global ; provides "exclusive open" facility */
87static struct spi_lm70llp *lm70llp;
88
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -070089/*-------------------------------------------------------------------*/
90
91static inline struct spi_lm70llp *spidev_to_pp(struct spi_device *spi)
92{
93 return spi->controller_data;
94}
95
96/*---------------------- LM70 LLP eval board-specific inlines follow */
97
98/* NOTE: we don't actually need to reread the output values, since they'll
99 * still be what we wrote before. Plus, going through parport builds in
100 * a ~1ms/operation delay; these SPI transfers could easily be faster.
101 */
102
103static inline void deassertCS(struct spi_lm70llp *pp)
104{
105 u8 data = parport_read_data(pp->port);
Kaiwan N Billimoria2b730052009-01-07 16:37:34 +0100106
107 data &= ~0x80; /* pull D7/SI-out low while de-asserted */
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700108 parport_write_data(pp->port, data | nCS);
109}
110
111static inline void assertCS(struct spi_lm70llp *pp)
112{
113 u8 data = parport_read_data(pp->port);
Kaiwan N Billimoria2b730052009-01-07 16:37:34 +0100114
115 data |= 0x80; /* pull D7/SI-out high so lm70 drives SO-in */
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700116 parport_write_data(pp->port, data & ~nCS);
117}
118
119static inline void clkHigh(struct spi_lm70llp *pp)
120{
121 u8 data = parport_read_data(pp->port);
Sudip Mukherjee832329d2015-12-03 18:29:54 +0530122
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700123 parport_write_data(pp->port, data | SCLK);
124}
125
126static inline void clkLow(struct spi_lm70llp *pp)
127{
128 u8 data = parport_read_data(pp->port);
Sudip Mukherjee832329d2015-12-03 18:29:54 +0530129
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700130 parport_write_data(pp->port, data & ~SCLK);
131}
132
133/*------------------------- SPI-LM70-specific inlines ----------------------*/
134
135static inline void spidelay(unsigned d)
136{
137 udelay(d);
138}
139
140static inline void setsck(struct spi_device *s, int is_on)
141{
142 struct spi_lm70llp *pp = spidev_to_pp(s);
143
144 if (is_on)
145 clkHigh(pp);
146 else
147 clkLow(pp);
148}
149
150static inline void setmosi(struct spi_device *s, int is_on)
151{
152 /* FIXME update D7 ... this way we can put the chip
153 * into shutdown mode and read the manufacturer ID,
154 * but we can't put it back into operational mode.
155 */
156}
157
158/*
159 * getmiso:
160 * Why do we return 0 when the SIO line is high and vice-versa?
161 * The fact is, the lm70 eval board from NS (which this driver drives),
162 * is wired in just such a way : when the lm70's SIO goes high, a transistor
163 * switches it to low reflecting this on the parport (pin 13), and vice-versa.
164 */
165static inline int getmiso(struct spi_device *s)
166{
167 struct spi_lm70llp *pp = spidev_to_pp(s);
Sudip Mukherjee832329d2015-12-03 18:29:54 +0530168
Sudip Mukherjee74bdced2015-12-03 18:29:57 +0530169 return ((SIO == (parport_read_status(pp->port) & SIO)) ? 0 : 1);
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700170}
Sudip Mukherjee832329d2015-12-03 18:29:54 +0530171
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700172/*--------------------------------------------------------------------*/
173
Grant Likelyca632f52011-06-06 01:16:30 -0600174#include "spi-bitbang-txrx.h"
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700175
176static void lm70_chipselect(struct spi_device *spi, int value)
177{
178 struct spi_lm70llp *pp = spidev_to_pp(spi);
179
180 if (value)
181 assertCS(pp);
182 else
183 deassertCS(pp);
184}
185
186/*
187 * Our actual bitbanger routine.
188 */
189static u32 lm70_txrx(struct spi_device *spi, unsigned nsecs, u32 word, u8 bits)
190{
Marek Szyprowski04bb2a02010-06-30 14:27:32 -0600191 return bitbang_txrx_be_cpha0(spi, nsecs, 0, 0, word, bits);
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700192}
193
194static void spi_lm70llp_attach(struct parport *p)
195{
196 struct pardevice *pd;
197 struct spi_lm70llp *pp;
198 struct spi_master *master;
199 int status;
Sudip Mukherjee2baed302015-12-03 18:29:59 +0530200 struct pardev_cb lm70llp_cb;
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700201
202 if (lm70llp) {
203 printk(KERN_WARNING
204 "%s: spi_lm70llp instance already loaded. Aborting.\n",
205 DRVNAME);
206 return;
207 }
208
209 /* TODO: this just _assumes_ a lm70 is there ... no probe;
210 * the lm70 driver could verify it, reading the manf ID.
211 */
212
213 master = spi_alloc_master(p->physport->dev, sizeof *pp);
214 if (!master) {
215 status = -ENOMEM;
216 goto out_fail;
217 }
218 pp = spi_master_get_devdata(master);
219
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700220 /*
221 * SPI and bitbang hookup.
222 */
Axel Lin94c69f72013-09-10 15:43:41 +0800223 pp->bitbang.master = master;
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700224 pp->bitbang.chipselect = lm70_chipselect;
225 pp->bitbang.txrx_word[SPI_MODE_0] = lm70_txrx;
226 pp->bitbang.flags = SPI_3WIRE;
227
228 /*
229 * Parport hookup
230 */
231 pp->port = p;
Sudip Mukherjee2baed302015-12-03 18:29:59 +0530232 memset(&lm70llp_cb, 0, sizeof(lm70llp_cb));
233 lm70llp_cb.private = pp;
234 lm70llp_cb.flags = PARPORT_FLAG_EXCL;
235 pd = parport_register_dev_model(p, DRVNAME, &lm70llp_cb, 0);
236
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700237 if (!pd) {
238 status = -ENOMEM;
239 goto out_free_master;
240 }
241 pp->pd = pd;
242
243 status = parport_claim(pd);
244 if (status < 0)
245 goto out_parport_unreg;
246
247 /*
248 * Start SPI ...
249 */
250 status = spi_bitbang_start(&pp->bitbang);
251 if (status < 0) {
Sudip Mukherjee46c52c22015-12-07 16:17:34 +0530252 dev_warn(&pd->dev, "spi_bitbang_start failed with status %d\n",
253 status);
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700254 goto out_off_and_release;
255 }
256
257 /*
258 * The modalias name MUST match the device_driver name
259 * for the bus glue code to match and subsequently bind them.
260 * We are binding to the generic drivers/hwmon/lm70.c device
261 * driver.
262 */
263 strcpy(pp->info.modalias, "lm70");
264 pp->info.max_speed_hz = 6 * 1000 * 1000;
265 pp->info.chip_select = 0;
266 pp->info.mode = SPI_3WIRE | SPI_MODE_0;
267
268 /* power up the chip, and let the LM70 control SI/SO */
269 parport_write_data(pp->port, lm70_INIT);
270
271 /* Enable access to our primary data structure via
272 * the board info's (void *)controller_data.
273 */
274 pp->info.controller_data = pp;
275 pp->spidev_lm70 = spi_new_device(pp->bitbang.master, &pp->info);
276 if (pp->spidev_lm70)
277 dev_dbg(&pp->spidev_lm70->dev, "spidev_lm70 at %s\n",
Sudip Mukherjee44dc0fd2015-12-03 18:29:56 +0530278 dev_name(&pp->spidev_lm70->dev));
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700279 else {
Sudip Mukherjee46c52c22015-12-07 16:17:34 +0530280 dev_warn(&pd->dev, "spi_new_device failed\n");
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700281 status = -ENODEV;
282 goto out_bitbang_stop;
283 }
Kaiwan N Billimoria2b730052009-01-07 16:37:34 +0100284 pp->spidev_lm70->bits_per_word = 8;
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700285
286 lm70llp = pp;
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700287 return;
288
289out_bitbang_stop:
290 spi_bitbang_stop(&pp->bitbang);
291out_off_and_release:
292 /* power down */
293 parport_write_data(pp->port, 0);
294 mdelay(10);
295 parport_release(pp->pd);
296out_parport_unreg:
297 parport_unregister_device(pd);
298out_free_master:
Sudip Mukherjee25fb1a42015-12-03 18:29:55 +0530299 spi_master_put(master);
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700300out_fail:
301 pr_info("%s: spi_lm70llp probe fail, status %d\n", DRVNAME, status);
302}
303
304static void spi_lm70llp_detach(struct parport *p)
305{
306 struct spi_lm70llp *pp;
307
308 if (!lm70llp || lm70llp->port != p)
309 return;
310
311 pp = lm70llp;
312 spi_bitbang_stop(&pp->bitbang);
313
314 /* power down */
315 parport_write_data(pp->port, 0);
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700316
317 parport_release(pp->pd);
318 parport_unregister_device(pp->pd);
319
Sudip Mukherjee25fb1a42015-12-03 18:29:55 +0530320 spi_master_put(pp->bitbang.master);
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700321
322 lm70llp = NULL;
323}
324
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700325static struct parport_driver spi_lm70llp_drv = {
326 .name = DRVNAME,
Sudip Mukherjee2baed302015-12-03 18:29:59 +0530327 .match_port = spi_lm70llp_attach,
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700328 .detach = spi_lm70llp_detach,
Sudip Mukherjee2baed302015-12-03 18:29:59 +0530329 .devmodel = true,
Kaiwan N Billimoria78961a52007-07-17 04:04:05 -0700330};
331
332static int __init init_spi_lm70llp(void)
333{
334 return parport_register_driver(&spi_lm70llp_drv);
335}
336module_init(init_spi_lm70llp);
337
338static void __exit cleanup_spi_lm70llp(void)
339{
340 parport_unregister_driver(&spi_lm70llp_drv);
341}
342module_exit(cleanup_spi_lm70llp);
343
344MODULE_AUTHOR("Kaiwan N Billimoria <kaiwan@designergraphix.com>");
345MODULE_DESCRIPTION(
346 "Parport adapter for the National Semiconductor LM70 LLP eval board");
347MODULE_LICENSE("GPL");