From: greg@kroah.com (Greg KH)
To: kernelnewbies@lists.kernelnewbies.org
Subject: UART and servo controller
Date: Mon, 14 Mar 2011 16:50:49 -0700 [thread overview]
Message-ID: <20110314235049.GA3111@kroah.com> (raw)
In-Reply-To: <60557396-6880-41AA-9C40-29736338BAD9@gmail.com>
On Tue, Mar 15, 2011 at 12:38:38AM +0100, Carlo Caione wrote:
> Hi,
> as an exercise I was trying to write a very simple module to drive a micro serial servo controller. This servo controller should be interfaced through a RS232-UART converter to a free UART port on the OMAP processor present on a beagleboard.
> This servo controller is very simple: the serial commands are given through serial port following a strict protocol.
> The idea was to create an ad-hoc character driver and interact with it using ioctl() (or procfs) to give commands to the motors (which motor to move and the final position).
> To learn about serial and UART drivers I was looking at the serial drivers for the omap (drivers/serial/omap-serial.c) but I suspect that this is not the right choice.
> The problem is that I don't want a serial device (/dev/ttyXX) the user can interact with (i.e. reading or writing to). The user should be able just to use ioctl() on an ad-hoc character device (i.e. /dev/motors) whereas the communication part through the UART and the communication protocol (configuration of the packet to send) should be up to the driver, in a transparent way.
>
> Now my question is:
> * How can I manage to hide the serial communication part into the
> driver (kernel), exposing to the user just an ad-hoc character device?
> It is enough for me a pointer to a driver similar to mine to take a
> look at the code.
It's a mess to do this, it would be easier, and simpler, to just do this
all from userspace, which is where the kernel is expecting this to come
from.
You can hook into an existing serial port, talking to the tty device,
but it is difficult and not anything I would recommend as a "simple"
kernel module, sorry.
good luck,
greg k-h
next prev parent reply other threads:[~2011-03-14 23:50 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-14 23:38 UART and servo controller Carlo Caione
2011-03-14 23:50 ` Greg KH [this message]
2011-03-15 13:02 ` Carlo Caione
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=20110314235049.GA3111@kroah.com \
--to=greg@kroah.com \
--cc=kernelnewbies@lists.kernelnewbies.org \
/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;
as well as URLs for NNTP newsgroup(s).