spi-lm70llp 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. spi_lm70llp : LM70-LLP parport-to-SPI adapter
  2. ==============================================
  3. Supported board/chip:
  4. * National Semiconductor LM70 LLP evaluation board
  5. Datasheet: http://www.national.com/pf/LM/LM70.html
  6. Author:
  7. Kaiwan N Billimoria <kaiwan@designergraphix.com>
  8. Description
  9. -----------
  10. This driver provides glue code connecting a National Semiconductor LM70 LLP
  11. temperature sensor evaluation board to the kernel's SPI core subsystem.
  12. This is a SPI master controller driver. It can be used in conjunction with
  13. (layered under) the LM70 logical driver (a "SPI protocol driver").
  14. In effect, this driver turns the parallel port interface on the eval board
  15. into a SPI bus with a single device, which will be driven by the generic
  16. LM70 driver (drivers/hwmon/lm70.c).
  17. Hardware Interfacing
  18. --------------------
  19. The schematic for this particular board (the LM70EVAL-LLP) is
  20. available (on page 4) here:
  21. http://www.national.com/appinfo/tempsensors/files/LM70LLPEVALmanual.pdf
  22. The hardware interfacing on the LM70 LLP eval board is as follows:
  23. Parallel LM70 LLP
  24. Port Direction JP2 Header
  25. ----------- --------- ----------------
  26. D0 2 - -
  27. D1 3 --> V+ 5
  28. D2 4 --> V+ 5
  29. D3 5 --> V+ 5
  30. D4 6 --> V+ 5
  31. D5 7 --> nCS 8
  32. D6 8 --> SCLK 3
  33. D7 9 --> SI/O 5
  34. GND 25 - GND 7
  35. Select 13 <-- SI/O 1
  36. ----------- --------- ----------------
  37. Note that since the LM70 uses a "3-wire" variant of SPI, the SI/SO pin
  38. is connected to both pin D7 (as Master Out) and Select (as Master In)
  39. using an arrangement that lets either the parport or the LM70 pull the
  40. pin low. This can't be shared with true SPI devices, but other 3-wire
  41. devices might share the same SI/SO pin.
  42. The bitbanger routine in this driver (lm70_txrx) is called back from
  43. the bound "hwmon/lm70" protocol driver through its sysfs hook, using a
  44. spi_write_then_read() call. It performs Mode 0 (SPI/Microwire) bitbanging.
  45. The lm70 driver then inteprets the resulting digital temperature value
  46. and exports it through sysfs.
  47. A "gotcha": National Semiconductor's LM70 LLP eval board circuit schematic
  48. shows that the SI/O line from the LM70 chip is connected to the base of a
  49. transistor Q1 (and also a pullup, and a zener diode to D7); while the
  50. collector is tied to VCC.
  51. Interpreting this circuit, when the LM70 SI/O line is High (or tristate
  52. and not grounded by the host via D7), the transistor conducts and switches
  53. the collector to zero, which is reflected on pin 13 of the DB25 parport
  54. connector. When SI/O is Low (driven by the LM70 or the host) on the other
  55. hand, the transistor is cut off and the voltage tied to it's collector is
  56. reflected on pin 13 as a High level.
  57. So: the getmiso inline routine in this driver takes this fact into account,
  58. inverting the value read at pin 13.
  59. Thanks to
  60. ---------
  61. o David Brownell for mentoring the SPI-side driver development.
  62. o Dr.Craig Hollabaugh for the (early) "manual" bitbanging driver version.
  63. o Nadir Billimoria for help interpreting the circuit schematic.