Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Apr 2008 07:27:38 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/sys/mips/mips autoconf.c busdma_machdep.c cache.c cache_mipsNN.c copystr.S cpu.c db_disasm.c db_interface.c db_trace.c dump_machdep.c elf_machdep.c exception.S fp.S gdb_machdep.c genassym.c in_cksum.c intr_machdep.c locore.S ...
Message-ID:  <200804130727.m3D7RcPR088078@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
imp         2008-04-13 07:27:38 UTC

  FreeBSD src repository

  Added files:
    sys/mips/mips        autoconf.c busdma_machdep.c cache.c 
                         cache_mipsNN.c copystr.S cpu.c 
                         db_disasm.c db_interface.c db_trace.c 
                         dump_machdep.c elf_machdep.c exception.S 
                         fp.S gdb_machdep.c genassym.c in_cksum.c 
                         intr_machdep.c locore.S machdep.c 
                         mainbus.c mem.c mips_subr.c mp_machdep.c 
                         nexus.c pm_machdep.c pmap.c psraccess.S 
                         stack_machdep.c support.S swtch.S tick.c 
                         tlb.S trap.c uio_machdep.c vm_machdep.c 
  Log:
  FreeBSD/mips port.  The FreeBSD/mips port targets mips32, mips64,
  mips32r2 and mips64r2 (and close relatives) processors.  There
  presently is support for ADMtek ADM5120, A mips 4Kc in a malta board,
  the RB533 routerboard (based on IDT RC32434) and some preliminary
  support for sibtye/broadcom designs.  Other hardware support will be
  forthcomcing.
  
  This port boots multiuser under gxemul emulating the malta board and
  also bootstraps on the hardware whose support is forthcoming...
  
  Oleksandr Tymoshenko, Wojciech Koszek, Warner Losh, Olivier Houchard,
  Randall Stewert and others that have contributed to the mips2 and/or
  mips2-jnpr perforce branches.  Juniper contirbuted a generic mips port
  late in the life cycle of the misp2 branch.  Warner Losh merged the
  mips2 and Juniper code bases, and others list above have worked for
  the past several months to get to multiuser.
  
  In addition, the mips2 work owe a debt to the trail blazing efforts of
  the original mips branch in perforce done by Juli Mallett.
  
  Revision  Changes    Path
  1.1       +112 -0    src/sys/mips/mips/autoconf.c (new)
  1.1       +841 -0    src/sys/mips/mips/busdma_machdep.c (new)
  1.1       +220 -0    src/sys/mips/mips/cache.c (new)
  1.1       +608 -0    src/sys/mips/mips/cache_mipsNN.c (new)
  1.1       +148 -0    src/sys/mips/mips/copystr.S (new)
  1.1       +328 -0    src/sys/mips/mips/cpu.c (new)
  1.1       +392 -0    src/sys/mips/mips/db_disasm.c (new)
  1.1       +339 -0    src/sys/mips/mips/db_interface.c (new)
  1.1       +77 -0     src/sys/mips/mips/db_trace.c (new)
  1.1       +35 -0     src/sys/mips/mips/dump_machdep.c (new)
  1.1       +268 -0    src/sys/mips/mips/elf_machdep.c (new)
  1.1       +1287 -0   src/sys/mips/mips/exception.S (new)
  1.1       +3608 -0   src/sys/mips/mips/fp.S (new)
  1.1       +189 -0    src/sys/mips/mips/gdb_machdep.c (new)
  1.1       +99 -0     src/sys/mips/mips/genassym.c (new)
  1.1       +248 -0    src/sys/mips/mips/in_cksum.c (new)
  1.1       +199 -0    src/sys/mips/mips/intr_machdep.c (new)
  1.1       +279 -0    src/sys/mips/mips/locore.S (new)
  1.1       +557 -0    src/sys/mips/mips/machdep.c (new)
  1.1       +343 -0    src/sys/mips/mips/mainbus.c (new)
  1.1       +185 -0    src/sys/mips/mips/mem.c (new)
  1.1       +48 -0     src/sys/mips/mips/mips_subr.c (new)
  1.1       +313 -0    src/sys/mips/mips/mp_machdep.c (new)
  1.1       +474 -0    src/sys/mips/mips/nexus.c (new)
  1.1       +541 -0    src/sys/mips/mips/pm_machdep.c (new)
  1.1       +3229 -0   src/sys/mips/mips/pmap.c (new)
  1.1       +196 -0    src/sys/mips/mips/psraccess.S (new)
  1.1       +153 -0    src/sys/mips/mips/stack_machdep.c (new)
  1.1       +1537 -0   src/sys/mips/mips/support.S (new)
  1.1       +650 -0    src/sys/mips/mips/swtch.S (new)
  1.1       +369 -0    src/sys/mips/mips/tick.c (new)
  1.1       +509 -0    src/sys/mips/mips/tlb.S (new)
  1.1       +1815 -0   src/sys/mips/mips/trap.c (new)
  1.1       +128 -0    src/sys/mips/mips/uio_machdep.c (new)
  1.1       +541 -0    src/sys/mips/mips/vm_machdep.c (new)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200804130727.m3D7RcPR088078>