git: Add hptmv(4), a driver for HighPoint RocketRAID 182x controllers.
Sascha Wildner
swildner at crater.dragonflybsd.org
Tue Jan 4 07:23:29 PST 2011
commit 35878b555b34ba9ef289f7767aa29d02df2cde48
Author: Sascha Wildner <saw at online.de>
Date: Tue Jan 4 16:19:23 2011 +0100
Add hptmv(4), a driver for HighPoint RocketRAID 182x controllers.
It was tested with an 1820A card.
Thanks to HighPoint and FreeBSD (from which it was ported).
Summary of changes:
share/man/man4/Makefile | 1 +
share/man/man4/hptiop.4 | 4 +-
share/man/man4/hptmv.4 | 102 +
sys/conf/files | 5 +
sys/config/GENERIC | 1 +
sys/config/GENERIC_SMP | 1 +
sys/config/LINT | 4 +
sys/config/X86_64_GENERIC | 1 +
sys/config/X86_64_GENERIC_SMP | 1 +
sys/dev/raid/Makefile | 2 +-
sys/dev/raid/hptmv/Makefile | 49 +
sys/dev/raid/hptmv/access601.h | 62 +
sys/dev/raid/hptmv/array.h | 275 +++
sys/dev/raid/hptmv/atapi.h | 388 ++++
sys/dev/raid/hptmv/command.h | 267 +++
sys/dev/raid/hptmv/entry.c | 3033 +++++++++++++++++++++++++++++++
sys/dev/raid/hptmv/global.h | 202 ++
sys/dev/raid/hptmv/gui_lib.c | 1447 +++++++++++++++
sys/dev/raid/hptmv/hptintf.h | 1234 +++++++++++++
sys/dev/raid/hptmv/hptproc.c | 618 +++++++
sys/dev/raid/hptmv/i386-elf.raid.o.uu | 1440 +++++++++++++++
sys/dev/raid/hptmv/ioctl.c | 972 ++++++++++
sys/dev/raid/hptmv/mv.c | 115 ++
sys/dev/raid/hptmv/mvOs.h | 152 ++
sys/dev/raid/hptmv/mvSata.h | 448 +++++
sys/dev/raid/hptmv/mvStorageDev.h | 215 +++
sys/dev/raid/hptmv/osbsd.h | 318 ++++
sys/dev/raid/hptmv/raid5n.h | 125 ++
sys/dev/raid/hptmv/readme.txt | 223 +++
sys/dev/raid/hptmv/vdevice.h | 286 +++
sys/dev/raid/hptmv/x86_64-elf.raid.o.uu | 1934 ++++++++++++++++++++
sys/platform/pc32/conf/files | 5 +
sys/platform/pc64/conf/files | 8 +-
33 files changed, 13932 insertions(+), 6 deletions(-)
create mode 100644 share/man/man4/hptmv.4
create mode 100644 sys/dev/raid/hptmv/Makefile
create mode 100644 sys/dev/raid/hptmv/access601.h
create mode 100644 sys/dev/raid/hptmv/array.h
create mode 100644 sys/dev/raid/hptmv/atapi.h
create mode 100644 sys/dev/raid/hptmv/command.h
create mode 100644 sys/dev/raid/hptmv/entry.c
create mode 100644 sys/dev/raid/hptmv/global.h
create mode 100644 sys/dev/raid/hptmv/gui_lib.c
create mode 100644 sys/dev/raid/hptmv/hptintf.h
create mode 100644 sys/dev/raid/hptmv/hptproc.c
create mode 100644 sys/dev/raid/hptmv/i386-elf.raid.o.uu
create mode 100644 sys/dev/raid/hptmv/ioctl.c
create mode 100644 sys/dev/raid/hptmv/mv.c
create mode 100644 sys/dev/raid/hptmv/mvOs.h
create mode 100644 sys/dev/raid/hptmv/mvSata.h
create mode 100644 sys/dev/raid/hptmv/mvStorageDev.h
create mode 100644 sys/dev/raid/hptmv/osbsd.h
create mode 100644 sys/dev/raid/hptmv/raid5n.h
create mode 100644 sys/dev/raid/hptmv/readme.txt
create mode 100644 sys/dev/raid/hptmv/vdevice.h
create mode 100644 sys/dev/raid/hptmv/x86_64-elf.raid.o.uu
http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/35878b555b34ba9ef289f7767aa29d02df2cde48
--
DragonFly BSD source repository
More information about the Commits
mailing list