search for: pvscsi_reg_writ

Displaying 4 results from an estimated 4 matches for "pvscsi_reg_writ".

Did you mean: pvscsi_reg_write
2009 Sep 30
1
SCSI driver for VMware's virtual HBA - V5.
...onst struct pvscsi_ctx *ctx) > +{ > + return ctx - adapter->cmd_map + 1; > +} > + > +static struct pvscsi_ctx * > +pvscsi_get_context(const struct pvscsi_adapter *adapter, u64 context) > +{ > + return &adapter->cmd_map[context - 1]; > +} > + > +static void pvscsi_reg_write(const struct pvscsi_adapter *adapter, > + u32 offset, u32 val) > +{ > + writel(val, adapter->mmioBase + offset); > +} > + > +static u32 pvscsi_reg_read(const struct pvscsi_adapter *adapter, u32 offset) > +{ > + return readl(adapter->mmioBase + offset); > +}...
2009 Sep 30
1
SCSI driver for VMware's virtual HBA - V5.
...onst struct pvscsi_ctx *ctx) > +{ > + return ctx - adapter->cmd_map + 1; > +} > + > +static struct pvscsi_ctx * > +pvscsi_get_context(const struct pvscsi_adapter *adapter, u64 context) > +{ > + return &adapter->cmd_map[context - 1]; > +} > + > +static void pvscsi_reg_write(const struct pvscsi_adapter *adapter, > + u32 offset, u32 val) > +{ > + writel(val, adapter->mmioBase + offset); > +} > + > +static u32 pvscsi_reg_read(const struct pvscsi_adapter *adapter, u32 offset) > +{ > + return readl(adapter->mmioBase + offset); > +}...
2009 Oct 13
1
SCSI driver for VMware's virtual HBA - V6.
...ntext(const struct pvscsi_adapter *adapter, + const struct pvscsi_ctx *ctx) +{ + return ctx - adapter->cmd_map + 1; +} + +static struct pvscsi_ctx * +pvscsi_get_context(const struct pvscsi_adapter *adapter, u64 context) +{ + return &adapter->cmd_map[context - 1]; +} + +static void pvscsi_reg_write(const struct pvscsi_adapter *adapter, + u32 offset, u32 val) +{ + writel(val, adapter->mmioBase + offset); +} + +static u32 pvscsi_reg_read(const struct pvscsi_adapter *adapter, u32 offset) +{ + return readl(adapter->mmioBase + offset); +} + +static u32 pvscsi_read_intr_status(const s...
2009 Oct 13
1
SCSI driver for VMware's virtual HBA - V6.
...ntext(const struct pvscsi_adapter *adapter, + const struct pvscsi_ctx *ctx) +{ + return ctx - adapter->cmd_map + 1; +} + +static struct pvscsi_ctx * +pvscsi_get_context(const struct pvscsi_adapter *adapter, u64 context) +{ + return &adapter->cmd_map[context - 1]; +} + +static void pvscsi_reg_write(const struct pvscsi_adapter *adapter, + u32 offset, u32 val) +{ + writel(val, adapter->mmioBase + offset); +} + +static u32 pvscsi_reg_read(const struct pvscsi_adapter *adapter, u32 offset) +{ + return readl(adapter->mmioBase + offset); +} + +static u32 pvscsi_read_intr_status(const s...