Home | History | Annotate | Line # | Download | only in conf
files.alchemy revision 1.10
      1  1.10    shige #	$NetBSD: files.alchemy,v 1.10 2006/02/24 14:34:31 shige Exp $
      2   1.1   simonb 
      3   1.5  gdamore defflag opt_alchemy.h		ALCHEMY_AU1000
      4   1.5  gdamore 				ALCHEMY_AU1100
      5   1.5  gdamore 				ALCHEMY_AU1500
      6   1.5  gdamore 				ALCHEMY_AU1550
      7   1.5  gdamore 
      8   1.5  gdamore file	arch/mips/alchemy/au_chipdep.c
      9   1.5  gdamore file	arch/mips/alchemy/au1000.c		alchemy_au1000
     10   1.5  gdamore file	arch/mips/alchemy/au1100.c		alchemy_au1100
     11   1.5  gdamore file	arch/mips/alchemy/au1500.c		alchemy_au1500
     12   1.5  gdamore file	arch/mips/alchemy/au1550.c		alchemy_au1550
     13   1.1   simonb file	arch/mips/alchemy/au_icu.c
     14   1.1   simonb file	arch/mips/alchemy/au_timer.c
     15   1.1   simonb file	arch/mips/alchemy/au_cpureg_mem.c
     16   1.9  gdamore #file	arch/mips/alchemy/au_wired_space.c
     17   1.8  gdamore file	arch/mips/alchemy/au_himem_space.c
     18   1.1   simonb 
     19   1.1   simonb # Alchemy peripheral bus
     20   1.1   simonb device	aubus { [addr=-1] }
     21   1.1   simonb attach	aubus at mainbus
     22   1.1   simonb file	arch/mips/alchemy/aubus.c		aubus
     23   1.1   simonb 
     24   1.1   simonb # "fake" RTC for using an Au1x00 timer for boards without a real RTC
     25   1.1   simonb device	aurtc
     26   1.1   simonb attach	aurtc at aubus
     27   1.1   simonb file	arch/mips/alchemy/dev/aurtc.c		aurtc
     28   1.1   simonb 
     29   1.1   simonb # On-chip com-alike device(s)
     30   1.1   simonb device	aucom { } : tty
     31   1.1   simonb file	arch/mips/alchemy/dev/aucom.c		aucom		needs-flag
     32   1.3   simonb defflag	opt_com.h	COM_AU1x00
     33   1.3   simonb options			COM_AU1x00	# Au1x00 support in com driver
     34   1.1   simonb 
     35   1.1   simonb attach	aucom at aubus with aucom_aubus
     36   1.1   simonb file	arch/mips/alchemy/dev/aucom_aubus.c	aucom_aubus
     37   1.1   simonb 
     38   1.1   simonb # On-chip ethernet device(s)
     39   1.1   simonb device	aumac: ether, ifnet, arp, mii
     40   1.1   simonb attach	aumac at aubus
     41   1.1   simonb file	arch/mips/alchemy/dev/if_aumac.c	aumac
     42   1.1   simonb 
     43   1.1   simonb # On-chip OHCI USB controller
     44   1.1   simonb attach	ohci at aubus with ohci_aubus
     45   1.2  hpeyerl file	arch/mips/alchemy/dev/ohci_aubus.c	ohci
     46   1.1   simonb 
     47   1.1   simonb # On-chip AC'97 audio controller
     48   1.1   simonb device	auaudio: audiobus, auconv, mulaw, ac97, aurateconv
     49   1.1   simonb attach	auaudio at aubus
     50   1.1   simonb file	arch/mips/alchemy/dev/auaudio.c		auaudio
     51   1.6  gdamore 
     52   1.6  gdamore # On-chip PCI
     53   1.6  gdamore device	aupci: pcibus
     54   1.6  gdamore attach	aupci at aubus
     55   1.6  gdamore file	arch/mips/alchemy/dev/aupci.c		aupci
     56   1.7  gdamore 
     57   1.7  gdamore # On-chip GPIO
     58   1.7  gdamore device	augpio: gpiobus
     59   1.7  gdamore attach	augpio at aubus
     60   1.7  gdamore file	arch/mips/alchemy/dev/augpio.c		augpio
     61   1.9  gdamore 
     62  1.10    shige # On-chip PSC
     63  1.10    shige device	aupsc
     64  1.10    shige attach	aupsc at aubus
     65  1.10    shige file	arch/mips/alchemy/dev/aupsc.c		aupsc
     66  1.10    shige 
     67   1.9  gdamore # On-chip PCMCIA
     68   1.9  gdamore #
     69   1.9  gdamore # XXX: NOTE: As of Feb. 22, 2006, the aupcmcia bus is not quite
     70   1.9  gdamore # functional.  Some cards have CIS misparsed, and there seems to
     71   1.9  gdamore # some kind of problem with the IO address mapping.  This is really
     72   1.9  gdamore # for development only at this point.  If you do enable this, it will
     73   1.9  gdamore # generally be benign in your kernel unless you actually insert
     74   1.9  gdamore # a card.  After that, all bets are off!
     75   1.9  gdamore #
     76   1.9  gdamore device	aupcmcia: pcmciabus
     77   1.9  gdamore attach	aupcmcia at aubus
     78   1.9  gdamore file	arch/mips/alchemy/dev/aupcmcia.c	aupcmcia
     79