d277064e7e
I have got a cypress usb-ide bridge and I would like to tune or monitor my disk with tools like hdparm, hddtemp or smartctl. My controller support a way to send raw ATA command to the disk with something call atacb (see http://download.cypress.com.edgesuite.net/design_resources/datasheets/contents/cy7c68300c_8.pdf). Atacb support can be added for each application, but there is some disadvantages : - all application need to be patched - A race is possible if there other accesses, because the emulation can be split in 2 atacb scsi transactions. One for sending the command, one for reading the register (if ck_cond is set). I have implemented the emulation in usb-storage with a special proto_handler, and an unsual entry. Signed-off-by: Matthieu CASTET <castet.matthieu@free.fr> Signed-off-by: Matthew Dharm <mdharm-usb@one-eyed-alien.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
31 lines
1.2 KiB
Makefile
31 lines
1.2 KiB
Makefile
#
|
|
# Makefile for the USB Mass Storage device drivers.
|
|
#
|
|
# 15 Aug 2000, Christoph Hellwig <hch@infradead.org>
|
|
# Rewritten to use lists instead of if-statements.
|
|
#
|
|
|
|
EXTRA_CFLAGS := -Idrivers/scsi
|
|
|
|
obj-$(CONFIG_USB_STORAGE) += usb-storage.o
|
|
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_DEBUG) += debug.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_USBAT) += shuttle_usbat.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_SDDR09) += sddr09.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_SDDR55) += sddr55.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_FREECOM) += freecom.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_DPCM) += dpcm.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_ISD200) += isd200.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_DATAFAB) += datafab.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_JUMPSHOT) += jumpshot.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_ALAUDA) += alauda.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_ONETOUCH) += onetouch.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_KARMA) += karma.o
|
|
usb-storage-obj-$(CONFIG_USB_STORAGE_CYPRESS_ATACB) += cypress_atacb.o
|
|
|
|
usb-storage-objs := scsiglue.o protocol.o transport.o usb.o \
|
|
initializers.o $(usb-storage-obj-y)
|
|
|
|
ifneq ($(CONFIG_USB_LIBUSUAL),)
|
|
obj-$(CONFIG_USB) += libusual.o
|
|
endif
|