cvs commit: src/sys/conf files files.alpha files.amd64 files.i386 files.ia64 files.pc98 files.powerpc options options.alpha options.amd64 options.i386 options.ia64 options.pc98 src/sys/dev/ppc ppc.c ppc_acpi.c ppc_isa.c ppc_pci.c ppc_puc.c ...

Marcel Moolenaar marcel at FreeBSD.org
Mon Apr 24 23:31:52 UTC 2006


marcel      2006-04-24 23:31:51 UTC

  FreeBSD src repository

  Modified files:
    sys/conf             files files.alpha files.amd64 files.i386 
                         files.ia64 files.pc98 files.powerpc 
                         options options.alpha options.amd64 
                         options.i386 options.ia64 options.pc98 
    sys/dev/ppc          ppc.c ppc_puc.c ppcreg.h ppcvar.h 
  Added files:
    sys/dev/ppc          ppc_acpi.c ppc_isa.c ppc_pci.c 
  Removed files:
    sys/pc98/cbus        ppc.c ppcreg.h 
  Log:
  o  Move ISA specific code from ppc.c to ppc_isa.c -- a bus front-
     end for isa(4).
  o  Add a seperate bus frontend for acpi(4) and allow ISA DMA for
     it when ISA is configured in the kernel. This allows acpi(4)
     attachments in non-ISA configurations, as is possible for ia64.
  o  Add a seperate bus frontend for pci(4) and detect known single
     port parallel cards.
  o  Merge PC98 specific changes under pc98/cbus into the MI driver.
     The changes are minor enough for conditional compilation and
     in this form invites better abstraction.
  o  Have ppc(4) usabled on all platforms, now that ISA specifics
     are untangled enough.
  
  Revision  Changes    Path
  1.1111    +5 -0      src/sys/conf/files
  1.126     +0 -2      src/sys/conf/files.alpha
  1.85      +0 -2      src/sys/conf/files.amd64
  1.555     +0 -2      src/sys/conf/files.i386
  1.86      +0 -2      src/sys/conf/files.ia64
  1.338     +0 -2      src/sys/conf/files.pc98
  1.52      +1 -0      src/sys/conf/files.powerpc
  1.536     +2 -0      src/sys/conf/options
  1.44      +0 -3      src/sys/conf/options.alpha
  1.25      +0 -2      src/sys/conf/options.amd64
  1.233     +0 -2      src/sys/conf/options.i386
  1.27      +0 -3      src/sys/conf/options.ia64
  1.197     +0 -2      src/sys/conf/options.pc98
  1.51      +66 -236   src/sys/dev/ppc/ppc.c
  1.1       +114 -0    src/sys/dev/ppc/ppc_acpi.c (new)
  1.1       +281 -0    src/sys/dev/ppc/ppc_isa.c (new)
  1.1       +110 -0    src/sys/dev/ppc/ppc_pci.c (new)
  1.3       +2 -2      src/sys/dev/ppc/ppc_puc.c
  1.16      +10 -1     src/sys/dev/ppc/ppcreg.h
  1.4       +3 -2      src/sys/dev/ppc/ppcvar.h
  1.22      +0 -2211   src/sys/pc98/cbus/ppc.c (dead)
  1.5       +0 -280    src/sys/pc98/cbus/ppcreg.h (dead)


More information about the cvs-src mailing list