From: Jean Delvare <khali@linux-fr.org>
To: Marcelo Tosatti <marcelo.tosatti@cyclades.com>
Cc: LKML <linux-kernel@vger.kernel.org>,
LM Sensors <sensors@stimpy.netroedge.com>
Subject: [PATCH 2.4] i2c cleanups, second wave (5/5)
Date: Thu, 25 Dec 2003 00:11:57 +0100 [thread overview]
Message-ID: <20031225001157.6354b903.khali@linux-fr.org> (raw)
In-Reply-To: <20031224225707.749707e5.khali@linux-fr.org>
And finally, this patch adds documentation for the i2c-velleman driver,
and also fixes a typo (the device is refered to as K9000 in many places
while its real name is actually K8000).
I'll send a similar patch to Greg KH for Linux 2.6 in a few days.
Thanks!
diff -ruN linux-2.4.24-pre2/Documentation/Configure.help linux-2.4.24-pre2-k5/Documentation/Configure.help
--- linux-2.4.24-pre2/Documentation/Configure.help Tue Dec 23 22:19:41 2003
+++ linux-2.4.24-pre2-k5/Documentation/Configure.help Wed Dec 24 22:25:24 2003
@@ -19052,9 +19052,9 @@
<file:Documentation/modules.txt>.
The module will be called i2c-elv.o.
-Velleman K9000 adapter
+Velleman K8000 adapter
CONFIG_I2C_VELLEMAN
- This supports the Velleman K9000 parallel-port I2C adapter. Say Y
+ This supports the Velleman K8000 parallel-port I2C adapter. Say Y
if you own such an adapter.
This driver is also available as a module. If you want to compile
diff -ruN linux-2.4.24-pre2/Documentation/i2c/i2c-velleman linux-2.4.24-pre2-k5/Documentation/i2c/i2c-velleman
--- linux-2.4.24-pre2/Documentation/i2c/i2c-velleman Thu Jan 1 01:00:00 1970
+++ linux-2.4.24-pre2-k5/Documentation/i2c/i2c-velleman Wed Dec 24 22:25:24 2003
@@ -0,0 +1,23 @@
+i2c-velleman driver
+-------------------
+This is a driver for i2c-hw access for Velleman K8000 and other adapters.
+
+Useful links
+------------
+Velleman:
+ http://www.velleman.be/
+
+Velleman K8000 Howto:
+ http://howto.htlw16.ac.at/k8000-howto.html
+
+K8000 and K8005 libraries
+-------------------------
+The project has lead to new libs for the Velleman K8000 and K8005:
+LIBK8000 v1.99.1 and LIBK8005 v0.21
+
+With these libs, you can control the K8000 interface card and the K8005
+stepper motor card with the simple commands which are in the original
+Velleman software, like SetIOchannel, ReadADchannel, SendStepCCWFull and
+many more, using /dev/velleman.
+
+The libs can be found on http://groups.yahoo.com/group/k8000/files/linux/
diff -ruN linux-2.4.24-pre2/Documentation/i2c/summary linux-2.4.24-pre2-k5/Documentation/i2c/summary
--- linux-2.4.24-pre2/Documentation/i2c/summary Mon Dec 22 21:50:09 2003
+++ linux-2.4.24-pre2-k5/Documentation/i2c/summary Wed Dec 24 22:25:24 2003
@@ -71,5 +71,5 @@
i2c-ppc405: IBM 405xx processor I2C device (uses i2c-algo-ppc405) (NOT BUILT BY DEFAULT)
i2c-pport: Primitive parallel port adapter (uses i2c-algo-bit)
i2c-rpx: RPX board Motorola 8xx I2C device (uses i2c-algo-8xx) (NOT BUILT BY DEFAULT)
-i2c-velleman: Velleman K9000 parallel port adapter (uses i2c-algo-bit)
+i2c-velleman: Velleman K8000 parallel port adapter (uses i2c-algo-bit)
diff -ruN linux-2.4.24-pre2/drivers/i2c/Config.in linux-2.4.24-pre2-k5/drivers/i2c/Config.in
--- linux-2.4.24-pre2/drivers/i2c/Config.in Tue Dec 23 22:19:41 2003
+++ linux-2.4.24-pre2-k5/drivers/i2c/Config.in Wed Dec 24 22:25:47 2003
@@ -12,7 +12,7 @@
if [ "$CONFIG_I2C_ALGOBIT" != "n" ]; then
dep_tristate ' Philips style parallel port adapter' CONFIG_I2C_PHILIPSPAR $CONFIG_I2C_ALGOBIT $CONFIG_PARPORT
dep_tristate ' ELV adapter' CONFIG_I2C_ELV $CONFIG_I2C_ALGOBIT
- dep_tristate ' Velleman K9000 adapter' CONFIG_I2C_VELLEMAN $CONFIG_I2C_ALGOBIT
+ dep_tristate ' Velleman K8000 adapter' CONFIG_I2C_VELLEMAN $CONFIG_I2C_ALGOBIT
dep_tristate ' NatSemi SCx200 I2C using GPIO pins' CONFIG_SCx200_I2C $CONFIG_SCx200 $CONFIG_I2C_ALGOBIT
if [ "$CONFIG_SCx200_I2C" != "n" ]; then
int ' GPIO pin used for SCL' CONFIG_SCx200_I2C_SCL 12
diff -ruN linux-2.4.24-pre2/drivers/i2c/i2c-velleman.c linux-2.4.24-pre2-k5/drivers/i2c/i2c-velleman.c
--- linux-2.4.24-pre2/drivers/i2c/i2c-velleman.c Mon Dec 22 21:50:10 2003
+++ linux-2.4.24-pre2-k5/drivers/i2c/i2c-velleman.c Wed Dec 24 22:25:24 2003
@@ -1,5 +1,5 @@
/* ------------------------------------------------------------------------- */
-/* i2c-velleman.c i2c-hw access for Velleman K9000 adapters */
+/* i2c-velleman.c i2c-hw access for Velleman K8000 adapters */
/* ------------------------------------------------------------------------- */
/* Copyright (C) 1995-96, 2000 Simon G. Vogl
--
Jean Delvare
http://www.ensicaen.ismra.fr/~delvare/
prev parent reply other threads:[~2003-12-24 23:11 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-12-24 21:57 [PATCH 2.4] i2c cleanups, second wave Jean Delvare
2003-12-24 22:12 ` [PATCH 2.4] i2c cleanups, second wave (1/5) Jean Delvare
2003-12-24 22:32 ` [PATCH 2.4] i2c cleanups, second wave (2/5) Jean Delvare
2003-12-24 22:42 ` [PATCH 2.4] i2c cleanups, second wave (3/5) Jean Delvare
2003-12-24 23:03 ` [PATCH 2.4] i2c cleanups, second wave (4/5) Jean Delvare
2003-12-24 23:11 ` Jean Delvare [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20031225001157.6354b903.khali@linux-fr.org \
--to=khali@linux-fr.org \
--cc=linux-kernel@vger.kernel.org \
--cc=marcelo.tosatti@cyclades.com \
--cc=sensors@stimpy.netroedge.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox