From: Рысь <lynx@lynxlynx.tk>
To: musl@lists.openwall.com
Subject: sys/io.h lacks inb_p and outb_p on x86
Date: Sun, 8 Nov 2015 11:26:55 +0700 [thread overview]
Message-ID: <20151108112655.4ad63277@r2lynx> (raw)
[-- Attachment #1: Type: text/plain, Size: 392 bytes --]
x86 arch lacks inb_p and outb_p inline functions. This is required for
memtest86+.
I don't know how properly make an assembly here, so when making memtest
I copied sys/io.h into local directory, and copied these functions from
uClibc.
I attach modified header for reference (they should go into bits/io.h).
--
http://lynxlynx.tk/
Power electronics made simple
Unix and simple KISS C code
[-- Attachment #2: io.h --]
[-- Type: application/octet-stream, Size: 591 bytes --]
#ifndef _SYS_IO_H
#define _SYS_IO_H
#ifdef __cplusplus
extern "C" {
#endif
#include <features.h>
#include <bits/io.h>
int iopl(int);
int ioperm(unsigned long, unsigned long, int);
/* Copied from uClibc */
static __inline unsigned char
inb_p (unsigned short int port)
{
unsigned char _v;
__asm__ __volatile__ ("inb %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port));
return _v;
}
static __inline void
outb_p (unsigned char value, unsigned short int port)
{
__asm__ __volatile__ ("outb %b0,%w1\noutb %%al,$0x80": :"a" (value),
"Nd" (port));
}
#ifdef __cplusplus
}
#endif
#endif
next reply other threads:[~2015-11-08 4:26 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-08 4:26 Рысь [this message]
2015-11-08 4:50 ` Rich Felker
2015-11-08 5:13 ` Рысь
2015-11-08 5:23 ` Rich Felker
2015-11-09 22:17 ` Rich Felker
2015-11-10 8:08 ` Рысь
2015-11-10 8:50 ` Felix Janda
2015-11-10 9:29 ` Рысь
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=20151108112655.4ad63277@r2lynx \
--to=lynx@lynxlynx.tk \
--cc=musl@lists.openwall.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.
Code repositories for project(s) associated with this public inbox
https://git.vuxu.org/mirror/musl/
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).