cvs commit: src/sys/mips/include _bus.h _bus_octeon.h _inttypes.h _limits.h _stdint.h _types.h am29lv081b.h archtype.h asm.h asmacros.h atomic.h bootinfo.h bswap.h bus.h bus_dma.h bus_octeon.h cache.h cache_mipsNN.h cache_r4k.h clock.h clockvar.h ...

Warner Losh imp at FreeBSD.org
Sun Apr 13 07:22:54 UTC 2008


imp         2008-04-13 07:22:54 UTC

  FreeBSD src repository

  Added files:
    sys/mips/include     _bus.h _bus_octeon.h _inttypes.h 
                         _limits.h _stdint.h _types.h am29lv081b.h 
                         archtype.h asm.h asmacros.h atomic.h 
                         bootinfo.h bswap.h bus.h bus_dma.h 
                         bus_octeon.h cache.h cache_mipsNN.h 
                         cache_r4k.h clock.h clockvar.h cp0.h 
                         cpu.h cpufunc.h cpuinfo.h cpuregs.h 
                         cputypes.h db_machdep.h defs.h elf.h 
                         endian.h exec.h float.h floatingpoint.h 
                         fpu.h frame.h gdb_machdep.h hwfunc.h 
                         ieee.h ieeefp.h in_cksum.h intr.h 
                         intr_machdep.h iodev.h kdb.h limits.h 
                         locore.h md_var.h memdev.h metadata.h 
                         minidump.h mips_opcode.h mp_watchdog.h 
                         mutex.h ns16550.h param.h pcb.h pcb_ext.h 
                         pci_cfgreg.h pcpu.h pltfm.h pmap.h 
                         pmc_mdep.h ppireg.h proc.h profile.h 
                         psl.h pte.h ptrace.h queue.h reg.h 
                         regdef.h regnum.h reloc.h resource.h 
                         rm7000.h runq.h segments.h setjmp.h 
                         sf_buf.h sigframe.h signal.h smp.h 
                         stdarg.h sysarch.h timerreg.h trap.h 
                         ucontext.h varargs.h vmparam.h 
  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       +49 -0     src/sys/mips/include/_bus.h (new)
  1.1       +46 -0     src/sys/mips/include/_bus_octeon.h (new)
  1.1       +221 -0    src/sys/mips/include/_inttypes.h (new)
  1.1       +100 -0    src/sys/mips/include/_limits.h (new)
  1.1       +172 -0    src/sys/mips/include/_stdint.h (new)
  1.1       +169 -0    src/sys/mips/include/_types.h (new)
  1.1       +111 -0    src/sys/mips/include/am29lv081b.h (new)
  1.1       +49 -0     src/sys/mips/include/archtype.h (new)
  1.1       +553 -0    src/sys/mips/include/asm.h (new)
  1.1       +195 -0    src/sys/mips/include/asmacros.h (new)
  1.1       +441 -0    src/sys/mips/include/atomic.h (new)
  1.1       +142 -0    src/sys/mips/include/bootinfo.h (new)
  1.1       +11 -0     src/sys/mips/include/bswap.h (new)
  1.1       +909 -0    src/sys/mips/include/bus.h (new)
  1.1       +34 -0     src/sys/mips/include/bus_dma.h (new)
  1.1       +883 -0    src/sys/mips/include/bus_octeon.h (new)
  1.1       +261 -0    src/sys/mips/include/cache.h (new)
  1.1       +67 -0     src/sys/mips/include/cache_mipsNN.h (new)
  1.1       +383 -0    src/sys/mips/include/cache_r4k.h (new)
  1.1       +39 -0     src/sys/mips/include/clock.h (new)
  1.1       +55 -0     src/sys/mips/include/clockvar.h (new)
  1.1       +310 -0    src/sys/mips/include/cp0.h (new)
  1.1       +564 -0    src/sys/mips/include/cpu.h (new)
  1.1       +346 -0    src/sys/mips/include/cpufunc.h (new)
  1.1       +120 -0    src/sys/mips/include/cpuinfo.h (new)
  1.1       +899 -0    src/sys/mips/include/cpuregs.h (new)
  1.1       +38 -0     src/sys/mips/include/cputypes.h (new)
  1.1       +99 -0     src/sys/mips/include/db_machdep.h (new)
  1.1       +256 -0    src/sys/mips/include/defs.h (new)
  1.1       +215 -0    src/sys/mips/include/elf.h (new)
  1.1       +146 -0    src/sys/mips/include/endian.h (new)
  1.1       +40 -0     src/sys/mips/include/exec.h (new)
  1.1       +81 -0     src/sys/mips/include/float.h (new)
  1.1       +43 -0     src/sys/mips/include/floatingpoint.h (new)
  1.1       +109 -0    src/sys/mips/include/fpu.h (new)
  1.1       +138 -0    src/sys/mips/include/frame.h (new)
  1.1       +56 -0     src/sys/mips/include/gdb_machdep.h (new)
  1.1       +42 -0     src/sys/mips/include/hwfunc.h (new)
  1.1       +154 -0    src/sys/mips/include/ieee.h (new)
  1.1       +32 -0     src/sys/mips/include/ieeefp.h (new)
  1.1       +77 -0     src/sys/mips/include/in_cksum.h (new)
  1.1       +94 -0     src/sys/mips/include/intr.h (new)
  1.1       +43 -0     src/sys/mips/include/intr_machdep.h (new)
  1.1       +33 -0     src/sys/mips/include/iodev.h (new)
  1.1       +50 -0     src/sys/mips/include/kdb.h (new)
  1.1       +45 -0     src/sys/mips/include/limits.h (new)
  1.1       +70 -0     src/sys/mips/include/locore.h (new)
  1.1       +72 -0     src/sys/mips/include/md_var.h (new)
  1.1       +39 -0     src/sys/mips/include/memdev.h (new)
  1.1       +34 -0     src/sys/mips/include/metadata.h (new)
  1.1       +46 -0     src/sys/mips/include/minidump.h (new)
  1.1       +413 -0    src/sys/mips/include/mips_opcode.h (new)
  1.1       +34 -0     src/sys/mips/include/mp_watchdog.h (new)
  1.1       +2 -0      src/sys/mips/include/mutex.h (new)
  1.1       +194 -0    src/sys/mips/include/ns16550.h (new)
  1.1       +196 -0    src/sys/mips/include/param.h (new)
  1.1       +82 -0     src/sys/mips/include/pcb.h (new)
  1.1       +4 -0      src/sys/mips/include/pcb_ext.h (new)
  1.1       +47 -0     src/sys/mips/include/pci_cfgreg.h (new)
  1.1       +79 -0     src/sys/mips/include/pcpu.h (new)
  1.1       +29 -0     src/sys/mips/include/pltfm.h (new)
  1.1       +231 -0    src/sys/mips/include/pmap.h (new)
  1.1       +24 -0     src/sys/mips/include/pmc_mdep.h (new)
  1.1       +49 -0     src/sys/mips/include/ppireg.h (new)
  1.1       +71 -0     src/sys/mips/include/proc.h (new)
  1.1       +172 -0    src/sys/mips/include/profile.h (new)
  1.1       +54 -0     src/sys/mips/include/psl.h (new)
  1.1       +149 -0    src/sys/mips/include/pte.h (new)
  1.1       +37 -0     src/sys/mips/include/ptrace.h (new)
  1.1       +171 -0    src/sys/mips/include/queue.h (new)
  1.1       +78 -0     src/sys/mips/include/reg.h (new)
  1.1       +53 -0     src/sys/mips/include/regdef.h (new)
  1.1       +203 -0    src/sys/mips/include/regnum.h (new)
  1.1       +35 -0     src/sys/mips/include/reloc.h (new)
  1.1       +46 -0     src/sys/mips/include/resource.h (new)
  1.1       +95 -0     src/sys/mips/include/rm7000.h (new)
  1.1       +47 -0     src/sys/mips/include/runq.h (new)
  1.1       +40 -0     src/sys/mips/include/segments.h (new)
  1.1       +59 -0     src/sys/mips/include/setjmp.h (new)
  1.1       +65 -0     src/sys/mips/include/sf_buf.h (new)
  1.1       +49 -0     src/sys/mips/include/sigframe.h (new)
  1.1       +80 -0     src/sys/mips/include/signal.h (new)
  1.1       +43 -0     src/sys/mips/include/smp.h (new)
  1.1       +144 -0    src/sys/mips/include/stdarg.h (new)
  1.1       +53 -0     src/sys/mips/include/sysarch.h (new)
  1.1       +65 -0     src/sys/mips/include/timerreg.h (new)
  1.1       +117 -0    src/sys/mips/include/trap.h (new)
  1.1       +101 -0    src/sys/mips/include/ucontext.h (new)
  1.1       +59 -0     src/sys/mips/include/varargs.h (new)
  1.1       +201 -0    src/sys/mips/include/vmparam.h (new)


More information about the cvs-all mailing list