qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Anthony Liguori <anthony@codemonkey.ws>
To: Isaku Yamahata <yamahata@valinux.co.jp>
Cc: Tristan Gingold <gingold@adacore.com>,
	Samuel Thibault <samuel.thibault@gnu.org>,
	qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 6/6] use uint32_t for ioport port and value instead of int.
Date: Mon, 13 Jul 2009 13:59:31 -0500	[thread overview]
Message-ID: <4A5B8413.5080201@codemonkey.ws> (raw)
In-Reply-To: <20090713031406.GS12665%yamahata@valinux.co.jp>

Isaku Yamahata wrote:
> On Fri, Jul 10, 2009 at 07:55:44AM -0500, Anthony Liguori wrote:
>   
>> Isaku Yamahata wrote:
>>     
>>> Then, the signatures should like the followings?
>>>
>>> void cpu_out[bwl](CPUState *env, int64_t addr, int{8, 16, 32}_t val);
>>> uint{8, 16, 32}_t cpu_inw(CPUState *env, int16_t addr);
>>>   
>>>       
>> If anything, it ought to be:
>>
>> void cpu_out[bwl](CPUState *env, uint16_t addr, int{8, 16, 32}_t val);
>>
>> But it's int today because the assumption is that most architectures can
>> more efficiently pass int than other types (because it's the native
>> type) and that int is adequate to contain all of the necessary types.
>>
>> But my original question still remains, what's the motivation for this
>> change?
>>     
>
> Yes, the patch description too terse.
> The motivation is to remove inconsistency with the other part of
> qemu.
>
> - Using int for cpu_{in, out}[bwl] is inconsistent with other part.
>   For address or value, uintN_t is used by other qemu part.
>   At least I can confirm, softmmu, CPU{Read, Write}MemoryFunc, pci,
>   target_phys_addr_t and the callers of cpu_{in, out}[bwl]().
>   

What does the PCI spec say about the size of PIO IO regions?  Can they 
be as large as MEM IO regions?

If so, I would think that we should use ram_addr_t for addr and then we 
can use the appropriate uintN_t type for value.  Switching value like 
that though could have some subtle consequences.  For instance, 
cpu_outb(env, ..., 128) would have worked properly before as would 
cpu_outb(env, ..., -32).

Regards,

Anthony Liguori

  reply	other threads:[~2009-07-13 18:59 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-02 10:32 [Qemu-devel] [PATCH 0/6] ioport related clean ups Isaku Yamahata
2009-07-02 10:32 ` [Qemu-devel] [PATCH 1/6] split out ioport related stuffs from vl.c into ioport.c Isaku Yamahata
2009-07-02 10:32 ` [Qemu-devel] [PATCH 2/6] use constant IOPORTS_MASK instead of 0xffff Isaku Yamahata
2009-07-02 10:32 ` [Qemu-devel] [PATCH 3/6] ioport: consolidate duplicated logic in register_ioport_{read, write}() Isaku Yamahata
2009-07-02 10:32 ` [Qemu-devel] [PATCH 4/6] ioport: remove some #ifdef DEBUG_UNUSED_IOPORT Isaku Yamahata
2009-07-02 10:32 ` [Qemu-devel] [PATCH 5/6] consolidate user cpu_{in, out}[bwl] into ioport-user.c Isaku Yamahata
2009-07-02 10:32 ` [Qemu-devel] [PATCH 6/6] use uint32_t for ioport port and value instead of int Isaku Yamahata
2009-07-02 18:11   ` Stuart Brady
2009-07-02 18:30     ` Stuart Brady
2009-07-09 19:07   ` Anthony Liguori
2009-07-10  8:21     ` Samuel Thibault
2009-07-10  8:45       ` Isaku Yamahata
2009-07-10  8:54         ` Samuel Thibault
2009-07-10  9:09           ` Tristan Gingold
2009-07-10 12:59             ` Anthony Liguori
2009-07-10 13:12               ` Tristan Gingold
2009-07-10 13:16                 ` Anthony Liguori
2009-07-10 13:28                   ` Tristan Gingold
2009-07-10 12:55         ` Anthony Liguori
2009-07-13  3:14           ` Isaku Yamahata
2009-07-13 18:59             ` Anthony Liguori [this message]
2009-07-13 21:19               ` Stuart Brady
2009-07-13 21:28                 ` Anthony Liguori
2009-07-14  1:58               ` Isaku Yamahata
2009-07-10 12:53       ` Anthony Liguori

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=4A5B8413.5080201@codemonkey.ws \
    --to=anthony@codemonkey.ws \
    --cc=gingold@adacore.com \
    --cc=qemu-devel@nongnu.org \
    --cc=samuel.thibault@gnu.org \
    --cc=yamahata@valinux.co.jp \
    /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).