Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-09-20 | ioports: remove unused env parameter and compile only once | Blue Swirl | 1 | -10/+6 | |
The CPU state parameter is not used, remove it and adjust callers. Now we can compile ioport.c once for all targets. Signed-off-by: Blue Swirl <blauwirbel@gmail.com> | |||||
2009-07-16 | ioport: use uint{32, 16, 8}_t for ioport value and pio_addr_t for ioport ↵ | Isaku Yamahata | 1 | -9/+12 | |
address. Using int for cpu_{in, out}[bwl] is inconsistent with other part because for address or value, uintN_t is used by other qemu part. At least, softmmu, CPU{Read, Write}MemoryFunc, pci, target_phys_addr_t and the callers of cpu_{in, out}[bwl](). This patch removes the inconsistency. IO port has its own address space so define pio_addr_t as uint32_t because PCI io space width is 32bit. And use uint{32, 16, 8}_t for ioport value. Changing signedness of value might cause subtle issue. However only a suspicious caller is kvm_handle_io() which is ok. And other callers pass unsigned value in the first place. Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> Cc: Stuart Brady <sdbrady@ntlworld.com> Cc: Anthony Liguori <anthony@codemonkey.ws> Cc: Samuel Thibault <samuel.thibault@gnu.org> Cc: Tristan Gingold <gingold@adacore.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> | |||||
2009-07-16 | Update to a hopefully more future proof FSF address | Blue Swirl | 1 | -2/+1 | |
Signed-off-by: Blue Swirl <blauwirbel@gmail.com> | |||||
2009-07-09 | use constant IOPORTS_MASK instead of 0xffff. | Isaku Yamahata | 1 | -0/+1 | |
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> | |||||
2009-07-09 | split out ioport related stuffs from vl.c into ioport.c. | Isaku Yamahata | 1 | -0/+54 | |
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> |