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
01 Oct, 2008
25 commits
  • ppc: fix crash in ppc system single step support ...
    ee600be6
    There was a bogus case where two system debug ops get generated.  This
    patch removes the broken system debug op. This was a left over after
    making some changes to correctly generate debug ops on branch
    operations inside gen_goto_tb();
    
    The test case against this patch is to turn on single stepping with
    timers, boot a linux kernel, set a breakpoint a do_fork and in gdb
    execute "si 3000".  Then qemu-system-ppc will fault executing a debug
    op, which should not have been executed.
    
    Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5391 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-01 22:01:37 +0000  
    Browse File »
  • Reset CPU on INIT IPI ...
    3003b8bb
    INIT IPI should reset CPU. Also non boot CPU should be halted. It will
    be un-halted by SIPI.
    
    Signed-off-by: Gleb Natapov <gleb@redhat.com>
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5390 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-01 22:01:28 +0000  
    Browse Code »
  • Fix cscope filelist by removing leading ./ ...
    ede46085
    (Ryan Harper, Laurent Desnogues)
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5389 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-01 21:46:58 +0000  
    Browse Code »
  • Add inotify syscall family ...
    39b59763
    Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5388 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-01 21:46:50 +0000  
    Browse Dir »
  • Add mincore syscall ...
    04bb9ace
    Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5387 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-01 21:46:41 +0000  
    Browse Dir »
  • Add fadvise64 stubs ...
    408321b6
    Since these are only hints, we happily fake them for now
    to make applications not barf on ENOSYS.
    
    Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
    Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name>
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5386 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-01 21:46:32 +0000  
    Browse Dir »
  • qemu: improve scsi dma speed by increasing the dma buffer size ...
    f0f72ffe
    taken from Xen 17267:f4a92f0db20f, original patch by Samuel Thibault.
    
    Signed-off-by: Avi Kivity <avi@qumranet.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5385 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-01 21:46:23 +0000  
    Browse Code »
  • monitor: add sendkey support for comma, dot and slash ...
    9155fc45
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5384 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-01 21:46:15 +0000  
    Browse Code »
  • qemu-doc: document use of raw values with sendkey ...
    54ae1fbd
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5383 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-01 21:46:07 +0000  
    Browse Code »
  • hw/apic.c: use bsr and bsf on x86_64 ...
    5a964d93
    (C.W. Betts)
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5382 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-01 21:45:59 +0000  
    Browse Code »
  • fix default size handling in monitor ...
    e90f009b
    If /i format is used once (with x/xp/p command) default_fmt_size is set
    to -1 and subsequent commands of the form /x outputs nothing. Included
    patched fixes this by setting default_fmt_size only if the command is
    not of format /i.
    
    Signed-off-by: Gleb Natapov <gleb@qumranet.com>
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5381 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-01 21:45:51 +0000  
    Browse Code »
  • target-ppc: fix computation of XER.{CA, OV} in addme, subfme ...
    0cadcbbe
    (Jocelyn Mayer)
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5380 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-01 21:45:37 +0000  
    Browse Dir »
  • target-ppc: fix mullw/mullwo ...
    5bf06a95
    Based on patch by Julian Seward.
    
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5379 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-01 21:45:18 +0000  
    Browse Dir »
  • Fix warning about variables used uninitialized ...
    66029f6a
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5378 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-01 19:39:40 +0000  
    Browse Dir »
  • Make some variables static ...
    dbed7e40
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5377 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-01 19:38:09 +0000  
    Browse Code »
  • Make some variables static ...
    7ca699c8
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5376 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-01 19:06:48 +0000  
    Browse Dir »
  • Change some qualifiers to static ...
    f82a3d48
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5375 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-01 18:13:13 +0000  
    Browse File »
  • Remove unused variables ...
    393e0768
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5374 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-01 18:08:41 +0000  
    Browse Dir »
  • Fix warning about incompatible types ...
    342b51d7
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5373 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-01 18:02:50 +0000  
    Browse Code »
  • Remove unused functions ...
    b61680ce
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5372 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-01 17:58:26 +0000  
    Browse Code »
  • Remove unused variable ...
    a16fa265
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5371 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-10-01 17:57:26 +0000  
    Browse Code »
  • target-alpha: update STATUS ...
    d1412eb2
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5370 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-10-01 07:07:59 +0000  
    Browse Code »
  • Check that asynchronous (DMA) submission succeeds (Ian Jackson). ...
    5604e090
    If it does not, abort the command immediately rather than dropping
    it on the floor.
    
    Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5369 c046a42c-6fe2-441c-8c8c-71466251a162
    balrog authored
    2008-10-01 01:43:16 +0000  
    Browse Dir »
  • Actually check read/write errors in IDE (Ian Jackson). ...
    e162cfb0
    This patch makes the ide emulation actually take notice of
    error returns from bdrv_write and bdrv_aio_{read,write}.
    
    (Cherry picked from qemu-xen e0e7a0afe0e324a1f7d64c240f567b15dbe454cf,
     first posted to qemu-devel Wed, 20 Feb 2008 15:26:41 +0000)
    
    Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5368 c046a42c-6fe2-441c-8c8c-71466251a162
    balrog authored
    2008-10-01 01:13:37 +0000  
    Browse Dir »
  • x86 pextrw destination operand can be r64. ...
    6dc2d0da
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5367 c046a42c-6fe2-441c-8c8c-71466251a162
    balrog authored
    2008-10-01 00:14:39 +0000  
    Browse File »

30 Sep, 2008
9 commits
  • Handle MSR_IA32_PERF_STATUS in rdmsr (Alexander Graf). ...
    d5e49a81
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5366 c046a42c-6fe2-441c-8c8c-71466251a162
    balrog authored
    2008-09-30 23:35:18 +0000  
    Browse Code »
  • Disable bluetooth proxy compilation on win32. ...
    2e9b08e5
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5365 c046a42c-6fe2-441c-8c8c-71466251a162
    balrog authored
    2008-09-30 23:31:35 +0000  
    Browse File »
  • Avoid (some) ppc cross-compilation problems ...
    9d56d2dc
    [..snip..]
    
    A recent kvm merge with qemu brought code for 64bit power that broke cross
    compilation. The issue is caused by configure trying to execute target
    architecture binaries where configure is executed.
    
    [..snip..]
    
    The patch is based on Hollis's Blanchard idea.
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5364 c046a42c-6fe2-441c-8c8c-71466251a162
    malc authored
    2008-09-30 19:44:32 +0000  
    Browse Code »
  • Add some missing static qualifiers ...
    674bb261
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5363 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-09-30 18:18:27 +0000  
    Browse File »
  • Silence some warnings about uninitialized variables ...
    98448f58
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5362 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-09-30 18:16:09 +0000  
    Browse File »
  • Few compile time warnings removed (Stefano Stabellini) ...
    223f0d72
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5361 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-09-30 18:12:18 +0000  
    Browse Code »
  • target-alpha: convert palcode ops to TCG ...
    8bb6e981
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5360 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-09-30 06:45:44 +0000  
    Browse Code »
  • target-alpha: convert locked load/store to TCG ...
    f4ed8679
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5359 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-09-30 06:45:34 +0000  
    Browse File »
  • Make sure bluez programs (cross-)compile, add missing statics. ...
    e820e3f4
    Spotted by Blue Swirl.
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5358 c046a42c-6fe2-441c-8c8c-71466251a162
    balrog authored
    2008-09-30 02:27:44 +0000  
    Browse File »

29 Sep, 2008
6 commits
  • Fix SS-2 crash ...
    ada24f84
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5357 c046a42c-6fe2-441c-8c8c-71466251a162
    blueswir1 authored
    2008-09-29 18:24:38 +0000  
    Browse Code »
  • TARGET_MAP_xx macros: clean and alpha specific values ...
    e44a3e79
    - Clean TARGET_MAP_xx macros to avoid nested #if #endif
    - Add alpha specific values
    
    Based on a patch by Tristan Gingold
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5356 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-09-29 17:23:09 +0000  
    Browse Dir »
  • target-alpha: misc fixes ...
    fe2b269a
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5355 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-09-29 17:21:37 +0000  
    Browse Code »
  • target-alpha: convert FP ops to TCG ...
    f18cd223
    - Convert FP ops to TCG
    - Fix S format
    - Implement F and G formats (untested)
    - Fix MF_FPCR an MT_FPCR
    - Fix FTOIS, FTOIT, ITOFF, ITOFS, ITOFT
    - Fix CPYSN, CPYSE
    
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5354 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-09-29 17:21:28 +0000  
    Browse File »
  • target-alpha: factorize load/store code ...
    023d8ca2
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5353 c046a42c-6fe2-441c-8c8c-71466251a162
    aurel32 authored
    2008-09-29 17:21:17 +0000  
    Browse Code »
  • Refactor QEMUFile for live migration ...
    5dafc53f
    To support live migration, we override QEMUFile so that instead of writing to
    disk, the save/restore state happens over a network connection.
    
    This patch makes QEMUFile read/write operations function pointers so that we
    can override them for live migration.
    
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    
    
    
    git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5352 c046a42c-6fe2-441c-8c8c-71466251a162
    aliguori authored
    2008-09-29 16:25:16 +0000  
    Browse File »