|
@@ -10,6 +10,8 @@
|
|
|
#include "ql4_def.h"
|
|
|
#include "ql4_glbl.h"
|
|
|
|
|
|
+#include <asm-generic/io-64-nonatomic-lo-hi.h>
|
|
|
+
|
|
|
#define MASK(n) DMA_BIT_MASK(n)
|
|
|
#define MN_WIN(addr) (((addr & 0x1fc0000) >> 1) | ((addr >> 25) & 0x3ff))
|
|
|
#define OCM_WIN(addr) (((addr & 0x1ff0000) >> 1) | ((addr >> 25) & 0x3ff))
|
|
@@ -655,27 +657,6 @@ static int qla4_8xxx_pci_is_same_window(struct scsi_qla_host *ha,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-#ifndef readq
|
|
|
-static inline __u64 readq(const volatile void __iomem *addr)
|
|
|
-{
|
|
|
- const volatile u32 __iomem *p = addr;
|
|
|
- u32 low, high;
|
|
|
-
|
|
|
- low = readl(p);
|
|
|
- high = readl(p + 1);
|
|
|
-
|
|
|
- return low + ((u64)high << 32);
|
|
|
-}
|
|
|
-#endif
|
|
|
-
|
|
|
-#ifndef writeq
|
|
|
-static inline void writeq(__u64 val, volatile void __iomem *addr)
|
|
|
-{
|
|
|
- writel(val, addr);
|
|
|
- writel(val >> 32, addr+4);
|
|
|
-}
|
|
|
-#endif
|
|
|
-
|
|
|
static int qla4_8xxx_pci_mem_read_direct(struct scsi_qla_host *ha,
|
|
|
u64 off, void *data, int size)
|
|
|
{
|