All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jan Kiszka <jan.kiszka@domain.hid>
To: "Zhang, Haobo" <haobo.zhang@domain.hid>
Cc: xenomai@xenomai.org, stelian@domain.hid
Subject: Re: [Xenomai-help] rtdm_iomap_to_user question
Date: Fri, 11 May 2007 18:22:03 +0200	[thread overview]
Message-ID: <4644982B.5040708@domain.hid> (raw)
In-Reply-To: <D412DC851FDFAB4D8976895AC5C1F8AD30A781@domain.hid>

[-- Attachment #1: Type: text/plain, Size: 2455 bytes --]

Zhang, Haobo wrote:
> Hi Jan,
> 
> Thank you so much for your reply!
> 
> In my driver, I wrote:
> 
> int map_io( struct gpiodrv_context *dev_context, rtdm_user_info_t
> *user_info, struct MAPPED_IO *io )
> {
> 	int ret;
> 
> 	if ((dev_context == 0) || (user_info == 0) || (io == 0))
> 		return -EFAULT;
> 
> 	if (dev_context->mapped_user_info != 0)
> 	{
> 		if ((ret = gpio_unmap_io( dev_context )) != 0)
> 			return ret;
> 	}
> 
> 	dev_context->mapped_user_info = user_info;
> 
> 	ret = rtdm_iomap_to_user( user_info, MPC52xx_PA(
> MPC52xx_GPIO_WKUP_OFFSET + 0x0C ),
> 		1, PROT_READ | PROT_WRITE, (void
> **)&(io->gpio_heart_beat), NULL, NULL );

Hmm, hmm. Looking at our code and the kernel again I would say we should
catch non-page-aligned requests like this and document this pitfall better.

The mapping code always assumes page-alignment and rounds your physical
address down. So what likely happened here is that you got a mapping,
but with unexpected offset (gpio_heart_beat should point to MPC52xx_PA).

> 	
> 	if (ret != 0)
> 		goto __ERROR;
> 	else
> 		dev_context->mapped_heart_beat = (void
> *)io->gpio_heart_beat;
> 
> 	return 0;
> 
> __ERROR:
> 
> 	gpio_unmap_io( dev_context );
> 	return ret;
> } 
> 
> In the application, I wrote:
> 
> int main(int argc, char *argv[]) 
> {
> 	int dev_gpio;
> 	struct MAPPED_IO gpio;
> 
> 	signal(SIGTERM, clean_exit);	
> 	signal(SIGINT, clean_exit);	
> 	
> 	mlockall( MCL_CURRENT | MCL_FUTURE );
> 
> 	rt_task_shadow( &mainapp, "mainapp", 1, 0 );
> 
> 	dev_gpio = rt_dev_open( "gpio", 0 );
> 	if (dev_gpio < 0)
> 	{
> 		return -1;
> 	}
> 	
> 	gpio.gpio_heart_beat = NULL;
> 
> 	if (rt_dev_ioctl( dev_gpio, 1, &gpio ) != 0)
> 	{
> 		return -1;
> 	}
> 
> 	gpio.gpio_heart_beat[0] = 0x01;
> 
> 	...
> }
> 
> I also tried another way by opening "/dev/mem" and then using "mmap" to
> map the I/O memory addresses in the application. It worked! 
> I am very curious about why "rtdm_iomap_to_user" did not work for me. 

When you do precisely the same odd-numbered mapping via mmap on
/dev/mem, you do get the right address at gpio_heart_beat (check if the
start address ends with 0x0b0c)?

We either have to improve rtdm_iomap/mmap_to_user in this regard or
catch unaligned requests. Probably it's easier to catch it so that the
driver writer also realises that this is always about mapping full pages...

Jan


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 250 bytes --]

  reply	other threads:[~2007-05-11 16:22 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-05-10 18:16 [Xenomai-help] rtdm_iomap_to_user question Zhang, Haobo
2007-05-10 21:39 ` Jan Kiszka
2007-05-11  4:39   ` Zhang, Haobo
2007-05-11 16:22     ` Jan Kiszka [this message]
2007-05-12 23:15       ` Zhang, Haobo
2007-05-13 10:24         ` Jan Kiszka

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=4644982B.5040708@domain.hid \
    --to=jan.kiszka@domain.hid \
    --cc=haobo.zhang@domain.hid \
    --cc=stelian@domain.hid \
    --cc=xenomai@xenomai.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.