From: Philippe Gerum <rpm@xenomai.org>
To: rpm@xenomai.org
Cc: xenomai@xenomai.org
Subject: Re: [Xenomai-core] User space drivers on PPC440
Date: Fri, 09 Nov 2007 12:41:13 +0100 [thread overview]
Message-ID: <47344759.4020505@domain.hid> (raw)
In-Reply-To: <4733A2B8.8070100@domain.hid>
[-- Attachment #1: Type: text/plain, Size: 964 bytes --]
Philippe Gerum wrote:
> Steven A. Falco wrote:
>> The rt_misc_get_io_region() has the "start" argument as an unsigned
>> long. On the PPC440, we have a 36-bit address space, where the I/O
>> registers are generally above the 4GB area. For example, the UART is at
>> address 0x1ef600300.
>>
>> The Linux request_region call has "start" typed as a resource_size_t,
>> which is a u64 on the PPC440 (i.e. CONFIG_RESOURCES_64BIT is set even
>> though this is a 23-bit processor).
>>
>> Is this something that should be handled by xeno-config? It could
>> append a CFLAG indicating the size of a resource.
>
> Or use a 64bit long unconditionally, to keep the same kernel-based
> implementation, since there is no performance issue for this call. In
> any case, we need to fix the API before 2.4 final is out -- which will
> also affect the ABI, but it already changed during the 2.4 development
> phase anyway.
>
Does this patch work for you?
--
Philippe.
[-- Attachment #2: io-region-64bit-start-address.patch --]
[-- Type: text/x-patch, Size: 3220 bytes --]
Index: include/native/misc.h
===================================================================
--- include/native/misc.h (revision 3162)
+++ include/native/misc.h (working copy)
@@ -32,11 +32,11 @@
/* Public interface. */
-int rt_misc_get_io_region(unsigned long start,
+int rt_misc_get_io_region(uint64_t start,
unsigned long len,
const char *label);
-int rt_misc_put_io_region(unsigned long start,
+int rt_misc_put_io_region(uint64_t start,
unsigned long len);
#ifdef __cplusplus
Index: src/skins/native/misc.c
===================================================================
--- src/skins/native/misc.c (revision 3162)
+++ src/skins/native/misc.c (working copy)
@@ -22,16 +22,16 @@
extern int __native_muxid;
-int rt_misc_get_io_region(unsigned long start,
+int rt_misc_get_io_region(uint64_t start,
unsigned long len, const char *label)
{
return XENOMAI_SKINCALL3(__native_muxid,
- __native_misc_get_io_region, start, len,
+ __native_misc_get_io_region, &start, len,
label);
}
-int rt_misc_put_io_region(unsigned long start, unsigned long len)
+int rt_misc_put_io_region(uint64_t start, unsigned long len)
{
return XENOMAI_SKINCALL2(__native_muxid,
- __native_misc_put_io_region, start, len);
+ __native_misc_put_io_region, &start, len);
}
Index: ksrc/skins/native/syscall.c
===================================================================
--- ksrc/skins/native/syscall.c (revision 3163)
+++ ksrc/skins/native/syscall.c (working copy)
@@ -3656,7 +3656,7 @@
#endif /* CONFIG_XENO_OPT_NATIVE_PIPE */
/*
- * int __rt_misc_get_io_region(unsigned long start,
+ * int __rt_misc_get_io_region(uint64_t *start,
* unsigned long len,
* const char *label)
*/
@@ -3664,35 +3664,49 @@
static int __rt_misc_get_io_region(struct task_struct *curr,
struct pt_regs *regs)
{
- unsigned long start, len;
+ unsigned long len;
+ uint64_t start;
char label[64];
if (!__xn_access_ok
+ (curr, VERIFY_READ, __xn_reg_arg1(regs), sizeof(start)))
+ return -EFAULT;
+
+ if (!__xn_access_ok
(curr, VERIFY_READ, __xn_reg_arg3(regs), sizeof(label)))
return -EFAULT;
+ __xn_copy_from_user(curr, &start, (void __user *)__xn_reg_arg1(regs),
+ sizeof(start));
+
__xn_strncpy_from_user(curr, label,
(const char __user *)__xn_reg_arg3(regs),
sizeof(label) - 1);
label[sizeof(label) - 1] = '\0';
- start = __xn_reg_arg1(regs);
len = __xn_reg_arg2(regs);
return request_region(start, len, label) ? 0 : -EBUSY;
}
/*
- * int __rt_misc_put_io_region(unsigned long start,
+ * int __rt_misc_put_io_region(uint64_t *start,
* unsigned long len)
*/
static int __rt_misc_put_io_region(struct task_struct *curr,
struct pt_regs *regs)
{
- unsigned long start, len;
+ unsigned long len;
+ uint64_t start;
- start = __xn_reg_arg1(regs);
+ if (!__xn_access_ok
+ (curr, VERIFY_READ, __xn_reg_arg1(regs), sizeof(start)))
+ return -EFAULT;
+
+ __xn_copy_from_user(curr, &start, (void __user *)__xn_reg_arg1(regs),
+ sizeof(start));
+
len = __xn_reg_arg2(regs);
release_region(start, len);
next prev parent reply other threads:[~2007-11-09 11:41 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-11-08 22:46 [Xenomai-core] User space drivers on PPC440 Steven A. Falco
2007-11-08 22:47 ` Steven A. Falco
2007-11-08 23:58 ` Philippe Gerum
2007-11-09 11:41 ` Philippe Gerum [this message]
2007-11-09 16:03 ` Steven A. Falco
2007-11-09 16:44 ` Steven A. Falco
2007-11-09 17:02 ` Gilles Chanteperdrix
2007-11-09 17:03 ` Philippe Gerum
2007-11-09 17:31 ` Steven A. Falco
2007-11-10 16:28 ` Philippe Gerum
2007-11-11 17:27 ` Philippe Gerum
2007-11-14 18:45 ` Steven A. Falco
2007-11-15 22:09 ` [Xenomai-help] buildbot and state of xenomai on PPC440? Niklaus Giger
[not found] ` <473CC49D.3030504@domain.hid>
2007-11-19 19:28 ` Niklaus Giger
2007-11-22 9:55 ` Philippe Gerum
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=47344759.4020505@domain.hid \
--to=rpm@xenomai.org \
--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.