DragonFly BSD
DragonFly commits List (threaded) for 2011-01
[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]

git: Add hptmv(4), a driver for HighPoint RocketRAID 182x controllers.


From: Sascha Wildner <swildner@xxxxxxxxxxxxxxxxxxxxxxx>
Date: Tue, 4 Jan 2011 07:22:20 -0800 (PST)

commit 35878b555b34ba9ef289f7767aa29d02df2cde48
Author: Sascha Wildner <saw@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



[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]