Commit c12f96f2 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] add config option for qla1280 SCSI MMIO/ioport

From: Andrey Panin <pazke@donpac.ru>

Add a config option which allows ioport/mmio selection for QLA1280 SCSI
driver.

With this patch applied QLA1280 can be used on Visws again.
parent 56928c85
......@@ -1298,6 +1298,16 @@ config SCSI_QLOGIC_1280
The module will be called qla1280. If you want to compile it as
a module, say M here and read <file:Documentation/modules.txt>.
config SCSI_QLOGIC_1280_PIO
bool "Use PIO instead of MMIO" if !X86_VISWS
depends on SCSI_QLOGIC_1280
default y if X86_VISWS
help
This instructs the driver to use programmed I/O ports (PIO) instead
of PCI shared memory (MMIO). This can possibly solve some problems
in case your mainboard has memory consistency issues. If unsure,
say N.
config SCSI_QLOGICPTI
tristate "PTI Qlogic, ISP Driver"
depends on SBUS && SCSI
......
......@@ -331,11 +331,17 @@
*/
#define QL1280_LUN_SUPPORT 0
#define WATCHDOGTIMER 0
#define MEMORY_MAPPED_IO 1
#define DEBUG_QLA1280_INTR 0
#define DEBUG_PRINT_NVRAM 0
#define DEBUG_QLA1280 0
#ifdef CONFIG_SCSI_QLOGIC_1280_PIO
#define MEMORY_MAPPED_IO 0
#else
#define MEMORY_MAPPED_IO 1
#endif
#define UNIQUE_FW_NAME
#include "qla1280.h"
#include "ql12160_fw.h" /* ISP RISC codes */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment