|
@@ -731,7 +731,7 @@ u64 ipath_read_kreg64_port(const struct ipath_devdata *, ipath_kreg,
|
|
|
static inline u32 ipath_read_ureg32(const struct ipath_devdata *dd,
|
|
|
ipath_ureg regno, int port)
|
|
|
{
|
|
|
- if (!dd->ipath_kregbase)
|
|
|
+ if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT))
|
|
|
return 0;
|
|
|
|
|
|
return readl(regno + (u64 __iomem *)
|
|
@@ -762,7 +762,7 @@ static inline void ipath_write_ureg(const struct ipath_devdata *dd,
|
|
|
static inline u32 ipath_read_kreg32(const struct ipath_devdata *dd,
|
|
|
ipath_kreg regno)
|
|
|
{
|
|
|
- if (!dd->ipath_kregbase)
|
|
|
+ if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT))
|
|
|
return -1;
|
|
|
return readl((u32 __iomem *) & dd->ipath_kregbase[regno]);
|
|
|
}
|
|
@@ -770,7 +770,7 @@ static inline u32 ipath_read_kreg32(const struct ipath_devdata *dd,
|
|
|
static inline u64 ipath_read_kreg64(const struct ipath_devdata *dd,
|
|
|
ipath_kreg regno)
|
|
|
{
|
|
|
- if (!dd->ipath_kregbase)
|
|
|
+ if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT))
|
|
|
return -1;
|
|
|
|
|
|
return readq(&dd->ipath_kregbase[regno]);
|
|
@@ -786,7 +786,7 @@ static inline void ipath_write_kreg(const struct ipath_devdata *dd,
|
|
|
static inline u64 ipath_read_creg(const struct ipath_devdata *dd,
|
|
|
ipath_sreg regno)
|
|
|
{
|
|
|
- if (!dd->ipath_kregbase)
|
|
|
+ if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT))
|
|
|
return 0;
|
|
|
|
|
|
return readq(regno + (u64 __iomem *)
|
|
@@ -797,7 +797,7 @@ static inline u64 ipath_read_creg(const struct ipath_devdata *dd,
|
|
|
static inline u32 ipath_read_creg32(const struct ipath_devdata *dd,
|
|
|
ipath_sreg regno)
|
|
|
{
|
|
|
- if (!dd->ipath_kregbase)
|
|
|
+ if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT))
|
|
|
return 0;
|
|
|
return readl(regno + (u64 __iomem *)
|
|
|
(dd->ipath_cregbase +
|