Sign in

gwj / at91sam9263 · Commits

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Snippets
  • Commits 8,232
  • Compare
  • Branches 2
  • Tags 0
  • at91sam9263
24 Sep, 2008
6 commits
  • Fix compiler warning when _VNC_DEBUG isn't defined. ...
    234c9bcd
    Signed-off-by: Thiemo Seufer <ths@networkno.de>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5312 c046a42c-6fe2-441c-8c8c-71466251a162
    ths authored
    2008-09-24 15:17:57 +0000  
    Browse Code »
  • pflash: Add missing parenthesis in error message. ...
    547012f4
    Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5311 c046a42c-6fe2-441c-8c8c-71466251a162
    ths authored
    2008-09-24 14:33:07 +0000  
    Browse Code »
  • 64 bit truncation in code_gen_buffer_size calculation (Jes Sorensen) ...
    174a9a1f
    Don't truncate code_gen_buffer_size calculation to int, as it will give
    unpredicted results on 64 bit systems when booting large guests.
    
    Signed-off-by: Jes Sorensen <jes@sgi.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5310 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-09-24 14:10:36 +0000  
    Browse Code »
  • Reintroduce TEXT_CONSOLE_FIXED_SIZE and TEXT_CONSOLE for resizable vc's. ...
    c21bbcfa
    This partially reverts r4812 to fix an issue highlighted by Ryan Harper
    with all vc's being fixed size which prevented backends with resizable
    window (curses) from displaying okay.
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5309 c046a42c-6fe2-441c-8c8c-71466251a162
    balrog authored
    2008-09-24 03:32:33 +0000  
    Browse File »
  • Don't use ds->dpy_copy directly from hw/ (Jan Niehusmann). ...
    38334f76
    I left a TODO in the code because this still doesn't definitely
    fix all issues.
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5308 c046a42c-6fe2-441c-8c8c-71466251a162
    balrog authored
    2008-09-24 02:21:24 +0000  
    Browse File »
  • Add missing dependencies for qemu-doc.* (Stefan Weil) ...
    818220f5
    This patch fixes some items in Makefile:
    
    * remove duplicate entries from .PHONY
    * add missing entries to .PHONY
    * sort entries in .PHONY alphabetically
    * add missing dependencies for qemu-doc.* targets
    
    Signed-off-by: Stefan Weil <weil@mail.berlios.de>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5307 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-09-24 01:13:40 +0000  
    Browse Code »

23 Sep, 2008
3 commits
  • Fix tcg_gen_concat32_i64 on 64-bit hosts. ...
    88422e2e
    Signed-off-by: Paul Brook <paul@codesourcery.com>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5306 c046a42c-6fe2-441c-8c8c-71466251a162
    pbrook authored
    2008-09-23 22:31:10 +0000  
    Browse Code »
  • scsi-generic: decode correctly SCSI tape commands (Laurent Vivier) ...
    a9dd6843
    This patch allows to use a "real" SCSI tape with qemu using
    "-drive /dev/sgX,if=scsi".
    
    It allows to decode correctly transfer length when the type of the
    device is a tape.
    
    Some issues remain when the application reading the tape tries to go
    beyond the end of the stream (but they must be corrected at the SCSI
    controller level).
    
    Signed-off-by: Laurent Vivier <Laurent.Vivier@bull.net>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5305 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-09-23 13:38:44 +0000  
    Browse Code »
  • Relax posix-aio restrictions on newer glibcs ...
    82889986
    RedHat 9 shipped glibc 2.3.  Modern versions of glibc do not have the aio thread
    exit issue that the comment references.  This patch adjusts the check to only
    limit aio_init on glibc versions < 2.4.
    
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5304 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-09-23 02:57:00 +0000  
    Browse Code »

22 Sep, 2008
18 commits
  • Use concet TCG instructions in the MIPS target. ...
    cb2c9921
    Signed-off-by: Thiemo Seufer <ths@networkno.de>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5303 c046a42c-6fe2-441c-8c8c-71466251a162
    ths authored
    2008-09-22 21:54:00 +0000  
    Browse Code »
  • CRIS: Improve ASID related TLB flushes. ...
    28de16da
    * Speedup and correct ASID (PID) related TLB flushes.
    * Use 64bit tcg load/stores to emulate movem.
    * Remove unused helpers and other minor cleanups.
    
    Signed-off-by: Edgar E. Iglesias <edgar@axis.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5302 c046a42c-6fe2-441c-8c8c-71466251a162
    edgar_igl authored
    2008-09-22 20:51:28 +0000  
    Browse Dir »
  • Fix formatting of documentation (Stefan Weil) ...
    4a6b819c
    Fix formatting for documentation of nbd command line options.
    
    Signed-off-by: Stefan Weil <weil@mail.berlios.de> 
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5301 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-09-22 20:41:57 +0000  
    Browse Code »
  • ETRAX-FS: Correct ethernet PHY diagnostics register reads. ...
    c6488268
    * Correct ethernet PHY diagnostics register reads.
    * Add friendly names for the speed/duplex fields.
    * Report duplex mismatches between MAC and PHY.
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5300 c046a42c-6fe2-441c-8c8c-71466251a162
    edgar_igl authored
    2008-09-22 20:34:18 +0000  
    Browse Code »
  • Add software and timer interrupt support ...
    9d926598
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5299 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-09-22 19:50:28 +0000  
    Browse Dir »
  • fixing keymap for Windows keys (Stefano Stabellini) ...
    d3ae49bc
    Fixing Windows keys mapping (CS 15446 form xen-unstable).
    
    Signed-off-by: Takanori Kasai <kasai.takanori@jp.fujitsu.com>
    Signed-off-by: Junko Ichino <ichino.junko@jp.fujitsu.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5298 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-09-22 19:45:36 +0000  
    Browse File »
  • Refactor AIO to allow multiple AIO implementations ...
    a76bab49
    This patch refactors the AIO layer to allow multiple AIO implementations.  It's
    only possible because of the recent signalfd() patch.  
    
    Right now, the AIO infrastructure is pretty specific to the block raw backend.
    For other block devices to implement AIO, the qemu_aio_wait function must
    support registration.  This patch introduces a new function,
    qemu_aio_set_fd_handler, which can be used to register a file descriptor to be
    called back.  qemu_aio_wait() now polls a set of file descriptors registered
    with this function until one becomes readable or writable.
    
    This patch should allow the implementation of alternative AIO backends (via a
    thread pool or linux-aio) and AIO backends in non-traditional block devices
    (like NBD).
    
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5297 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-09-22 19:17:18 +0000  
    Browse Code »
  • Fix arguments used in cas/casx, thanks to Igor Kovalenko for spotting ...
    1121f879
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5296 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-09-22 16:52:28 +0000  
    Browse Code »
  • Add comment to windows SCSI hack. ...
    64c68080
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5295 c046a42c-6fe2-441c-8c8c-71466251a162
    pbrook authored
    2008-09-22 16:30:29 +0000  
    Browse Code »
  • Remove unnecessary call to qemu_aio_init (called from bdrv_init) ...
    48d7c50f
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5294 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-09-22 16:29:18 +0000  
    Browse Code »
  • LSI SCSI: raise UDC on infinite loop (Marcelo Tosatti) ...
    ee4d919f
    Raise UDC (Unexpected Disconnect) when a large enough number of
    instructions has been executed by the SCRIPTS processor. This "solution"
    is much simpler than temporarily interrupting execution.
    
    This remedies the situation with Windows which downloads SCRIPTS code
    that busy loops on guest main memory. Their drivers _do_ handle UDC 
    appropriately (at least XP and 2003).
    
    It would be nicer to actually detect infinite loops, but until then,
    this bandaid seems acceptable.
    
    Since the situation seems to be rare enough, raise the number 
    of instructions to 10000 (previously 1000).
    
    Three people other than myself had success with this patch.
    
    Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5293 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-09-22 16:04:16 +0000  
    Browse File »
  • scsi-generic: correct 6-bytes commands transfer length (Laurent Vivier) ...
    72ecb8d9
    According to SCSI documentation, for 6 bytes commands (READ(6),
    WRITE(6)), if transfer length is 0 it specifies 256 blocks.
    
    Signed-off-by: Laurent Vivier <Laurent.Vivier@bull.net>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5292 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-09-22 15:30:26 +0000  
    Browse File »
  • scsi-generic: correct usage of memset() (Laurent Vivier) ...
    4f26a486
          void *memset(void *s, int c, size_t n);
    
    DESCRIPTION
           The  memset()  function  fills  the  first  n  bytes of the
    memory area
           pointed to by s with the constant byte c."
    
    Reported by Dietmar Maurer.
    
    Signed-off-by: Laurent Vivier <Laurent.Vivier@bull.net>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5291 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-09-22 15:27:54 +0000  
    Browse File »
  • Don't use sprintf() or strcpy() ...
    ac4ffb5a
    They are unsafe.  The current code is correct, but to be safer, we should pass
    an explicit size.
    
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5290 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-09-22 15:04:31 +0000  
    Browse Code »
  • Do not allow AIO to be inited multiple times ...
    ad02ad6f
    This prevents two signalfd() threads from being spawned.  This problem was
    originally spotted by Blue Swirl.
    
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5289 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-09-22 14:49:01 +0000  
    Browse File »
  • Support out-of-the-tree building of tests ...
    e5fd43a9
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5288 c046a42c-6fe2-441c-8c8c-71466251a162
    malc authored
    2008-09-22 01:39:29 +0000  
    Browse Code »
  • Avoid clobbering input register in qemu_ld64+bswap+useronly case ...
    f8edcbaa
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5287 c046a42c-6fe2-441c-8c8c-71466251a162
    malc authored
    2008-09-22 01:08:08 +0000  
    Browse Dir »
  • Fix ARM NEON vdup and vtbl bugs. ...
    3018f259
    Signed-off-by: Paul Brook <paul@codesourcery.com>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5286 c046a42c-6fe2-441c-8c8c-71466251a162
    pbrook authored
    2008-09-22 00:52:42 +0000  
    Browse Dir »

21 Sep, 2008
9 commits
  • Fix neon encoding comment. ...
    e4b3861d
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5285 c046a42c-6fe2-441c-8c8c-71466251a162
    pbrook authored
    2008-09-21 23:15:38 +0000  
    Browse Dir »
  • Fix Xcontext fill, by Here Poussineau. ...
    9c67ef0c
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5284 c046a42c-6fe2-441c-8c8c-71466251a162
    ths authored
    2008-09-21 21:21:26 +0000  
    Browse Code »
  • Use the new concat_tl_i64 op for std and stda ...
    ab508019
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5283 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-09-21 18:43:17 +0000  
    Browse Dir »
  • Add concat32_i64 and concat_tl_i64 ops ...
    945ca823
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5282 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-09-21 18:32:28 +0000  
    Browse Code »
  • Use the new concat_i32_i64 op for std and stda ...
    a7ec4229
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5281 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-09-21 14:49:09 +0000  
    Browse Dir »
  • Add concat_i32_i64 op. ...
    36aa55dc
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5280 c046a42c-6fe2-441c-8c8c-71466251a162
    pbrook authored
    2008-09-21 13:48:32 +0000  
    Browse Code »
  • Band-aid vfork() emulation (Kirill Shutemov). ...
    436d124b
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5279 c046a42c-6fe2-441c-8c8c-71466251a162
    balrog authored
    2008-09-21 02:39:45 +0000  
    Browse Code »
  • Fix TEST_BSX operands in test-i386.c (Zeev Tarantov). ...
    7058bfa6
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5278 c046a42c-6fe2-441c-8c8c-71466251a162
    balrog authored
    2008-09-21 02:34:50 +0000  
    Browse Code »
  • Enable same-arch consistency check on x86-64, print syscall name on error. ...
    872ea0c0
    Also disable testing instructions unsupported by 64-bit binutils in 
    test-i386.c
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5277 c046a42c-6fe2-441c-8c8c-71466251a162
    balrog authored
    2008-09-21 02:31:19 +0000  
    Browse File »

20 Sep, 2008
4 commits
  • Move signal handler prototype back to cpu.h ...
    f0d5e471
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5276 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-09-20 09:05:49 +0000  
    Browse Dir »
  • Suppress gcc 4.x -Wpointer-sign (included in -Wall) warnings ...
    b55266b5
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5275 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-09-20 08:07:15 +0000  
    Browse Code »
  • Add signed versions of save/load functions ...
    67d8cec3
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5274 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-09-20 08:04:11 +0000  
    Browse File »
  • Fix QADD / QSUB decoding on ARM (Torbjörn Andersson). ...
    b40d0353
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5273 c046a42c-6fe2-441c-8c8c-71466251a162
    balrog authored
    2008-09-20 03:18:07 +0000  
    Browse Dir »