5f7e80a834
NetBSD/emips port runs on Xilinx and Beecube FPGA systems and the Giano system simulator. eMIPS is a platform developed at Microsoft Research for researching reconfigurable computing. eMIPS allows dynamic loading and scheduling of application-specific circuits for the purpose of accelerating computations based on the current workload. NetBSD eMIPS support for NetBSD 4.x was written at Microsoft Research by Alessandro Forin and Neil Pittman. Microsoft Corporation has donated full copyright to The NetBSD Foundation. Platform support for eMIPS is the first part of Microsoft's contribution. The second part includes the hardware accelerator framework and will be proposed on tech-kern soon.
34 lines
474 B
Plaintext
34 lines
474 B
Plaintext
# $NetBSD: MAKEDEV.conf,v 1.1 2011/01/26 01:18:47 pooka Exp $
|
|
|
|
all_md)
|
|
makedev minimal
|
|
;;
|
|
|
|
minimal)
|
|
makedev std
|
|
makedev ace0 ace1
|
|
makedev eflash0
|
|
makedev md0 dz0
|
|
;;
|
|
|
|
# Serial devices: dz*.
|
|
#
|
|
# Create dz* devices as /dev/ttyD[0-3],
|
|
dz*)
|
|
case $i in
|
|
dz*) name=dz; unit=${i#dz}; chr=16;;
|
|
esac
|
|
case $unit in
|
|
0)
|
|
mkdev ttyD0 c $chr 0
|
|
# mkdev ttyD1 c $chr 1
|
|
# mkdev ttyD2 c $chr 2
|
|
# mkdev ttyD3 c $chr 3
|
|
;;
|
|
*)
|
|
warn "bad unit for $name in: $i"
|
|
;;
|
|
esac
|
|
;;
|
|
|