Home | History | Annotate | Line # | Download | only in clockport
      1 #	$NetBSD: files.clockport,v 1.6 2021/04/28 00:35:47 rin Exp $
      2 
      3 define	clockportbus {}
      4 
      5 define	clockport_common
      6 file	arch/amiga/clockport/clockport_common.c clockport_common
      7 
      8 # Generic clockport (can be attached on top of Zorro boards)
      9 device	gencp: clockportbus, clockport_common
     10 file	arch/amiga/clockport/gencp.c		gencp needs-flag
     11 
     12 # A1200 clockport
     13 device	a1k2cp: clockportbus, clockport_common
     14 attach	a1k2cp at mainbus
     15 file	arch/amiga/clockport/a1k2cp.c		a1k2cp
     16 
     17 # X-Surf clockports
     18 attach	gencp at xsurfbus with gencp_xsurf
     19 file	arch/amiga/clockport/gencp_xsurf.c	gencp_xsurf needs-flag
     20 
     21 # ACA500 clockport
     22 attach	gencp at acafhbus with gencp_acafh
     23 file	arch/amiga/clockport/gencp_acafh.c	gencp_acafh needs-flag
     24 
     25 # more zbus clockports should be added, like:
     26 # Highway clockport
     27 # attach gencp at highwaybus with gencp_highway
     28 # file	arch/amiga/clockport/gencp_highway.c
     29 # 
     30 # also for clockports like the second one on A604:
     31 # device obio at mainbus {[address = -1]}
     32 # attach gencp at obio  with gencp_obio
     33 # file	arch/amiga/clockport/gencp_obio.c
     34 #
     35 # etc.
     36 
     37 device	clockport {}
     38 attach	clockport at clockportbus
     39 file	arch/amiga/clockport/clockport.c	clockport
     40 
     41 # Individual Computers SilverSurfer serial
     42 attach	com at clockport with com_ss
     43 file	arch/amiga/clockport/com_ss.c		com_ss
     44 
     45 # Individual Computers / Petsoff - Delfina 1200 / Flipper
     46 device	flipper
     47 attach	flipper at clockport
     48 file	arch/amiga/clockport/flipper.c		flipper
     49 
     50