josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Filename: rsxx_priv.h |
| 3 | * |
| 4 | * |
| 5 | * Authors: Joshua Morris <josh.h.morris@us.ibm.com> |
| 6 | * Philip Kelleher <pjk1939@linux.vnet.ibm.com> |
| 7 | * |
| 8 | * (C) Copyright 2013 IBM Corporation |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License as |
| 12 | * published by the Free Software Foundation; either version 2 of the |
| 13 | * License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, but |
| 16 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 18 | * General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software Foundation, |
| 22 | * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 23 | */ |
| 24 | |
| 25 | #ifndef __RSXX_PRIV_H__ |
| 26 | #define __RSXX_PRIV_H__ |
| 27 | |
| 28 | #include <linux/version.h> |
| 29 | #include <linux/semaphore.h> |
| 30 | |
| 31 | #include <linux/fs.h> |
| 32 | #include <linux/interrupt.h> |
| 33 | #include <linux/mutex.h> |
| 34 | #include <linux/pci.h> |
| 35 | #include <linux/spinlock.h> |
| 36 | #include <linux/sysfs.h> |
| 37 | #include <linux/workqueue.h> |
| 38 | #include <linux/bio.h> |
| 39 | #include <linux/vmalloc.h> |
| 40 | #include <linux/timer.h> |
| 41 | #include <linux/ioctl.h> |
Philip J Kelleher | 0ab4743 | 2013-06-18 14:36:26 -0500 | [diff] [blame] | 42 | #include <linux/delay.h> |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 43 | |
| 44 | #include "rsxx.h" |
| 45 | #include "rsxx_cfg.h" |
| 46 | |
| 47 | struct proc_cmd; |
| 48 | |
Philip J Kelleher | 9bb3c44 | 2013-02-27 09:24:59 -0600 | [diff] [blame] | 49 | #define PCI_DEVICE_ID_FS70_FLASH 0x04A9 |
| 50 | #define PCI_DEVICE_ID_FS80_FLASH 0x04AA |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 51 | |
| 52 | #define RS70_PCI_REV_SUPPORTED 4 |
| 53 | |
| 54 | #define DRIVER_NAME "rsxx" |
Philip J Kelleher | 9bb3c44 | 2013-02-27 09:24:59 -0600 | [diff] [blame] | 55 | #define DRIVER_VERSION "4.0" |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 56 | |
| 57 | /* Block size is 4096 */ |
| 58 | #define RSXX_HW_BLK_SHIFT 12 |
| 59 | #define RSXX_HW_BLK_SIZE (1 << RSXX_HW_BLK_SHIFT) |
| 60 | #define RSXX_HW_BLK_MASK (RSXX_HW_BLK_SIZE - 1) |
| 61 | |
| 62 | #define MAX_CREG_DATA8 32 |
| 63 | #define LOG_BUF_SIZE8 128 |
| 64 | |
| 65 | #define RSXX_MAX_OUTSTANDING_CMDS 255 |
| 66 | #define RSXX_CS_IDX_MASK 0xff |
| 67 | |
Philip J Kelleher | c95246c | 2013-03-16 08:22:25 +0100 | [diff] [blame] | 68 | #define STATUS_BUFFER_SIZE8 4096 |
| 69 | #define COMMAND_BUFFER_SIZE8 4096 |
| 70 | |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 71 | #define RSXX_MAX_TARGETS 8 |
| 72 | |
| 73 | struct dma_tracker_list; |
| 74 | |
| 75 | /* DMA Command/Status Buffer structure */ |
| 76 | struct rsxx_cs_buffer { |
| 77 | dma_addr_t dma_addr; |
| 78 | void *buf; |
| 79 | u32 idx; |
| 80 | }; |
| 81 | |
| 82 | struct rsxx_dma_stats { |
| 83 | u32 crc_errors; |
| 84 | u32 hard_errors; |
| 85 | u32 soft_errors; |
| 86 | u32 writes_issued; |
| 87 | u32 writes_failed; |
| 88 | u32 reads_issued; |
| 89 | u32 reads_failed; |
| 90 | u32 reads_retried; |
| 91 | u32 discards_issued; |
| 92 | u32 discards_failed; |
| 93 | u32 done_rescheduled; |
| 94 | u32 issue_rescheduled; |
Philip J Kelleher | c95246c | 2013-03-16 08:22:25 +0100 | [diff] [blame] | 95 | u32 dma_sw_err; |
| 96 | u32 dma_hw_fault; |
| 97 | u32 dma_cancelled; |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 98 | u32 sw_q_depth; /* Number of DMAs on the SW queue. */ |
| 99 | atomic_t hw_q_depth; /* Number of DMAs queued to HW. */ |
| 100 | }; |
| 101 | |
| 102 | struct rsxx_dma_ctrl { |
| 103 | struct rsxx_cardinfo *card; |
| 104 | int id; |
| 105 | void __iomem *regmap; |
| 106 | struct rsxx_cs_buffer status; |
| 107 | struct rsxx_cs_buffer cmd; |
| 108 | u16 e_cnt; |
| 109 | spinlock_t queue_lock; |
| 110 | struct list_head queue; |
| 111 | struct workqueue_struct *issue_wq; |
| 112 | struct work_struct issue_dma_work; |
| 113 | struct workqueue_struct *done_wq; |
| 114 | struct work_struct dma_done_work; |
| 115 | struct timer_list activity_timer; |
| 116 | struct dma_tracker_list *trackers; |
| 117 | struct rsxx_dma_stats stats; |
Philip J Kelleher | 31a70bb | 2013-06-18 14:38:26 -0500 | [diff] [blame] | 118 | struct mutex work_lock; |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 119 | }; |
| 120 | |
| 121 | struct rsxx_cardinfo { |
| 122 | struct pci_dev *dev; |
| 123 | unsigned int halt; |
Philip J Kelleher | c95246c | 2013-03-16 08:22:25 +0100 | [diff] [blame] | 124 | unsigned int eeh_state; |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 125 | |
| 126 | void __iomem *regmap; |
| 127 | spinlock_t irq_lock; |
| 128 | unsigned int isr_mask; |
| 129 | unsigned int ier_mask; |
| 130 | |
| 131 | struct rsxx_card_cfg config; |
| 132 | int config_valid; |
| 133 | |
| 134 | /* Embedded CPU Communication */ |
| 135 | struct { |
Philip J Kelleher | c206c70 | 2013-02-18 21:35:59 +0100 | [diff] [blame] | 136 | spinlock_t lock; |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 137 | bool active; |
| 138 | struct creg_cmd *active_cmd; |
Philip J Kelleher | a3299ab | 2013-06-18 14:34:54 -0500 | [diff] [blame] | 139 | struct workqueue_struct *creg_wq; |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 140 | struct work_struct done_work; |
| 141 | struct list_head queue; |
| 142 | unsigned int q_depth; |
| 143 | /* Cache the creg status to prevent ioreads */ |
| 144 | struct { |
| 145 | u32 stat; |
| 146 | u32 failed_cancel_timer; |
| 147 | u32 creg_timeout; |
| 148 | } creg_stats; |
| 149 | struct timer_list cmd_timer; |
| 150 | struct mutex reset_lock; |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 151 | int reset; |
| 152 | } creg_ctrl; |
| 153 | |
| 154 | struct { |
| 155 | char tmp[MAX_CREG_DATA8]; |
| 156 | char buf[LOG_BUF_SIZE8]; /* terminated */ |
| 157 | int buf_len; |
| 158 | } log; |
| 159 | |
Philip J Kelleher | a3299ab | 2013-06-18 14:34:54 -0500 | [diff] [blame] | 160 | struct workqueue_struct *event_wq; |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 161 | struct work_struct event_work; |
| 162 | unsigned int state; |
| 163 | u64 size8; |
| 164 | |
| 165 | /* Lock the device attach/detach function */ |
| 166 | struct mutex dev_lock; |
| 167 | |
| 168 | /* Block Device Variables */ |
| 169 | bool bdev_attached; |
| 170 | int disk_id; |
| 171 | int major; |
| 172 | struct request_queue *queue; |
| 173 | struct gendisk *gendisk; |
| 174 | struct { |
| 175 | /* Used to convert a byte address to a device address. */ |
| 176 | u64 lower_mask; |
| 177 | u64 upper_shift; |
| 178 | u64 upper_mask; |
| 179 | u64 target_mask; |
| 180 | u64 target_shift; |
| 181 | } _stripe; |
| 182 | unsigned int dma_fault; |
| 183 | |
| 184 | int scrub_hard; |
| 185 | |
| 186 | int n_targets; |
| 187 | struct rsxx_dma_ctrl *ctrl; |
Philip J Kelleher | 36f988e | 2013-06-18 14:52:21 -0500 | [diff] [blame] | 188 | |
| 189 | struct dentry *debugfs_dir; |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 190 | }; |
| 191 | |
| 192 | enum rsxx_pci_regmap { |
| 193 | HWID = 0x00, /* Hardware Identification Register */ |
| 194 | SCRATCH = 0x04, /* Scratch/Debug Register */ |
| 195 | RESET = 0x08, /* Reset Register */ |
| 196 | ISR = 0x10, /* Interrupt Status Register */ |
| 197 | IER = 0x14, /* Interrupt Enable Register */ |
| 198 | IPR = 0x18, /* Interrupt Poll Register */ |
| 199 | CB_ADD_LO = 0x20, /* Command Host Buffer Address [31:0] */ |
| 200 | CB_ADD_HI = 0x24, /* Command Host Buffer Address [63:32]*/ |
| 201 | HW_CMD_IDX = 0x28, /* Hardware Processed Command Index */ |
| 202 | SW_CMD_IDX = 0x2C, /* Software Processed Command Index */ |
| 203 | SB_ADD_LO = 0x30, /* Status Host Buffer Address [31:0] */ |
| 204 | SB_ADD_HI = 0x34, /* Status Host Buffer Address [63:32] */ |
| 205 | HW_STATUS_CNT = 0x38, /* Hardware Status Counter */ |
| 206 | SW_STATUS_CNT = 0x3C, /* Deprecated */ |
| 207 | CREG_CMD = 0x40, /* CPU Command Register */ |
| 208 | CREG_ADD = 0x44, /* CPU Address Register */ |
| 209 | CREG_CNT = 0x48, /* CPU Count Register */ |
| 210 | CREG_STAT = 0x4C, /* CPU Status Register */ |
| 211 | CREG_DATA0 = 0x50, /* CPU Data Registers */ |
| 212 | CREG_DATA1 = 0x54, |
| 213 | CREG_DATA2 = 0x58, |
| 214 | CREG_DATA3 = 0x5C, |
| 215 | CREG_DATA4 = 0x60, |
| 216 | CREG_DATA5 = 0x64, |
| 217 | CREG_DATA6 = 0x68, |
| 218 | CREG_DATA7 = 0x6c, |
| 219 | INTR_COAL = 0x70, /* Interrupt Coalescing Register */ |
| 220 | HW_ERROR = 0x74, /* Card Error Register */ |
| 221 | PCI_DEBUG0 = 0x78, /* PCI Debug Registers */ |
| 222 | PCI_DEBUG1 = 0x7C, |
| 223 | PCI_DEBUG2 = 0x80, |
| 224 | PCI_DEBUG3 = 0x84, |
| 225 | PCI_DEBUG4 = 0x88, |
| 226 | PCI_DEBUG5 = 0x8C, |
| 227 | PCI_DEBUG6 = 0x90, |
| 228 | PCI_DEBUG7 = 0x94, |
| 229 | PCI_POWER_THROTTLE = 0x98, |
| 230 | PERF_CTRL = 0x9c, |
| 231 | PERF_TIMER_LO = 0xa0, |
| 232 | PERF_TIMER_HI = 0xa4, |
| 233 | PERF_RD512_LO = 0xa8, |
| 234 | PERF_RD512_HI = 0xac, |
| 235 | PERF_WR512_LO = 0xb0, |
| 236 | PERF_WR512_HI = 0xb4, |
Philip J Kelleher | c95246c | 2013-03-16 08:22:25 +0100 | [diff] [blame] | 237 | PCI_RECONFIG = 0xb8, |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 238 | }; |
| 239 | |
| 240 | enum rsxx_intr { |
| 241 | CR_INTR_DMA0 = 0x00000001, |
| 242 | CR_INTR_CREG = 0x00000002, |
| 243 | CR_INTR_DMA1 = 0x00000004, |
| 244 | CR_INTR_EVENT = 0x00000008, |
| 245 | CR_INTR_DMA2 = 0x00000010, |
| 246 | CR_INTR_DMA3 = 0x00000020, |
| 247 | CR_INTR_DMA4 = 0x00000040, |
| 248 | CR_INTR_DMA5 = 0x00000080, |
| 249 | CR_INTR_DMA6 = 0x00000100, |
| 250 | CR_INTR_DMA7 = 0x00000200, |
Philip J Kelleher | c95246c | 2013-03-16 08:22:25 +0100 | [diff] [blame] | 251 | CR_INTR_ALL_C = 0x0000003f, |
| 252 | CR_INTR_ALL_G = 0x000003ff, |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 253 | CR_INTR_DMA_ALL = 0x000003f5, |
| 254 | CR_INTR_ALL = 0xffffffff, |
| 255 | }; |
| 256 | |
| 257 | static inline int CR_INTR_DMA(int N) |
| 258 | { |
| 259 | static const unsigned int _CR_INTR_DMA[] = { |
| 260 | CR_INTR_DMA0, CR_INTR_DMA1, CR_INTR_DMA2, CR_INTR_DMA3, |
| 261 | CR_INTR_DMA4, CR_INTR_DMA5, CR_INTR_DMA6, CR_INTR_DMA7 |
| 262 | }; |
| 263 | return _CR_INTR_DMA[N]; |
| 264 | } |
| 265 | enum rsxx_pci_reset { |
| 266 | DMA_QUEUE_RESET = 0x00000001, |
| 267 | }; |
| 268 | |
Philip J Kelleher | c95246c | 2013-03-16 08:22:25 +0100 | [diff] [blame] | 269 | enum rsxx_hw_fifo_flush { |
| 270 | RSXX_FLUSH_BUSY = 0x00000002, |
| 271 | RSXX_FLUSH_TIMEOUT = 0x00000004, |
| 272 | }; |
| 273 | |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 274 | enum rsxx_pci_revision { |
| 275 | RSXX_DISCARD_SUPPORT = 2, |
Philip J Kelleher | c95246c | 2013-03-16 08:22:25 +0100 | [diff] [blame] | 276 | RSXX_EEH_SUPPORT = 3, |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 277 | }; |
| 278 | |
| 279 | enum rsxx_creg_cmd { |
| 280 | CREG_CMD_TAG_MASK = 0x0000FF00, |
| 281 | CREG_OP_WRITE = 0x000000C0, |
| 282 | CREG_OP_READ = 0x000000E0, |
| 283 | }; |
| 284 | |
| 285 | enum rsxx_creg_addr { |
| 286 | CREG_ADD_CARD_CMD = 0x80001000, |
| 287 | CREG_ADD_CARD_STATE = 0x80001004, |
| 288 | CREG_ADD_CARD_SIZE = 0x8000100c, |
| 289 | CREG_ADD_CAPABILITIES = 0x80001050, |
| 290 | CREG_ADD_LOG = 0x80002000, |
| 291 | CREG_ADD_NUM_TARGETS = 0x80003000, |
Philip J Kelleher | 36f988e | 2013-06-18 14:52:21 -0500 | [diff] [blame] | 292 | CREG_ADD_CRAM = 0xA0000000, |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 293 | CREG_ADD_CONFIG = 0xB0000000, |
| 294 | }; |
| 295 | |
| 296 | enum rsxx_creg_card_cmd { |
| 297 | CARD_CMD_STARTUP = 1, |
| 298 | CARD_CMD_SHUTDOWN = 2, |
| 299 | CARD_CMD_LOW_LEVEL_FORMAT = 3, |
| 300 | CARD_CMD_FPGA_RECONFIG_BR = 4, |
| 301 | CARD_CMD_FPGA_RECONFIG_MAIN = 5, |
| 302 | CARD_CMD_BACKUP = 6, |
| 303 | CARD_CMD_RESET = 7, |
| 304 | CARD_CMD_deprecated = 8, |
| 305 | CARD_CMD_UNINITIALIZE = 9, |
| 306 | CARD_CMD_DSTROY_EMERGENCY = 10, |
| 307 | CARD_CMD_DSTROY_NORMAL = 11, |
| 308 | CARD_CMD_DSTROY_EXTENDED = 12, |
| 309 | CARD_CMD_DSTROY_ABORT = 13, |
| 310 | }; |
| 311 | |
| 312 | enum rsxx_card_state { |
| 313 | CARD_STATE_SHUTDOWN = 0x00000001, |
| 314 | CARD_STATE_STARTING = 0x00000002, |
| 315 | CARD_STATE_FORMATTING = 0x00000004, |
| 316 | CARD_STATE_UNINITIALIZED = 0x00000008, |
| 317 | CARD_STATE_GOOD = 0x00000010, |
| 318 | CARD_STATE_SHUTTING_DOWN = 0x00000020, |
| 319 | CARD_STATE_FAULT = 0x00000040, |
| 320 | CARD_STATE_RD_ONLY_FAULT = 0x00000080, |
| 321 | CARD_STATE_DSTROYING = 0x00000100, |
| 322 | }; |
| 323 | |
| 324 | enum rsxx_led { |
| 325 | LED_DEFAULT = 0x0, |
| 326 | LED_IDENTIFY = 0x1, |
| 327 | LED_SOAK = 0x2, |
| 328 | }; |
| 329 | |
| 330 | enum rsxx_creg_flash_lock { |
| 331 | CREG_FLASH_LOCK = 1, |
| 332 | CREG_FLASH_UNLOCK = 2, |
| 333 | }; |
| 334 | |
| 335 | enum rsxx_card_capabilities { |
| 336 | CARD_CAP_SUBPAGE_WRITES = 0x00000080, |
| 337 | }; |
| 338 | |
| 339 | enum rsxx_creg_stat { |
| 340 | CREG_STAT_STATUS_MASK = 0x00000003, |
| 341 | CREG_STAT_SUCCESS = 0x1, |
| 342 | CREG_STAT_ERROR = 0x2, |
| 343 | CREG_STAT_CHAR_PENDING = 0x00000004, /* Character I/O pending bit */ |
| 344 | CREG_STAT_LOG_PENDING = 0x00000008, /* HW log message pending bit */ |
| 345 | CREG_STAT_TAG_MASK = 0x0000ff00, |
| 346 | }; |
| 347 | |
| 348 | static inline unsigned int CREG_DATA(int N) |
| 349 | { |
| 350 | return CREG_DATA0 + (N << 2); |
| 351 | } |
| 352 | |
| 353 | /*----------------- Convenient Log Wrappers -------------------*/ |
| 354 | #define CARD_TO_DEV(__CARD) (&(__CARD)->dev->dev) |
| 355 | |
| 356 | /***** config.c *****/ |
| 357 | int rsxx_load_config(struct rsxx_cardinfo *card); |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 358 | |
| 359 | /***** core.c *****/ |
| 360 | void rsxx_enable_ier(struct rsxx_cardinfo *card, unsigned int intr); |
| 361 | void rsxx_disable_ier(struct rsxx_cardinfo *card, unsigned int intr); |
| 362 | void rsxx_enable_ier_and_isr(struct rsxx_cardinfo *card, |
| 363 | unsigned int intr); |
| 364 | void rsxx_disable_ier_and_isr(struct rsxx_cardinfo *card, |
| 365 | unsigned int intr); |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 366 | |
| 367 | /***** dev.c *****/ |
| 368 | int rsxx_attach_dev(struct rsxx_cardinfo *card); |
| 369 | void rsxx_detach_dev(struct rsxx_cardinfo *card); |
| 370 | int rsxx_setup_dev(struct rsxx_cardinfo *card); |
| 371 | void rsxx_destroy_dev(struct rsxx_cardinfo *card); |
| 372 | int rsxx_dev_init(void); |
| 373 | void rsxx_dev_cleanup(void); |
| 374 | |
| 375 | /***** dma.c ****/ |
| 376 | typedef void (*rsxx_dma_cb)(struct rsxx_cardinfo *card, |
| 377 | void *cb_data, |
| 378 | unsigned int status); |
| 379 | int rsxx_dma_setup(struct rsxx_cardinfo *card); |
| 380 | void rsxx_dma_destroy(struct rsxx_cardinfo *card); |
| 381 | int rsxx_dma_init(void); |
Philip J Kelleher | 0ab4743 | 2013-06-18 14:36:26 -0500 | [diff] [blame] | 382 | int rsxx_cleanup_dma_queue(struct rsxx_dma_ctrl *ctrl, struct list_head *q); |
| 383 | int rsxx_dma_cancel(struct rsxx_dma_ctrl *ctrl); |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 384 | void rsxx_dma_cleanup(void); |
Philip J Kelleher | c95246c | 2013-03-16 08:22:25 +0100 | [diff] [blame] | 385 | void rsxx_dma_queue_reset(struct rsxx_cardinfo *card); |
| 386 | int rsxx_dma_configure(struct rsxx_cardinfo *card); |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 387 | int rsxx_dma_queue_bio(struct rsxx_cardinfo *card, |
| 388 | struct bio *bio, |
| 389 | atomic_t *n_dmas, |
| 390 | rsxx_dma_cb cb, |
| 391 | void *cb_data); |
Philip J Kelleher | c95246c | 2013-03-16 08:22:25 +0100 | [diff] [blame] | 392 | int rsxx_hw_buffers_init(struct pci_dev *dev, struct rsxx_dma_ctrl *ctrl); |
Philip J Kelleher | 4dcaf47 | 2013-03-26 11:03:07 -0500 | [diff] [blame] | 393 | int rsxx_eeh_save_issued_dmas(struct rsxx_cardinfo *card); |
Philip J Kelleher | c95246c | 2013-03-16 08:22:25 +0100 | [diff] [blame] | 394 | int rsxx_eeh_remap_dmas(struct rsxx_cardinfo *card); |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 395 | |
| 396 | /***** cregs.c *****/ |
| 397 | int rsxx_creg_write(struct rsxx_cardinfo *card, u32 addr, |
| 398 | unsigned int size8, |
| 399 | void *data, |
| 400 | int byte_stream); |
| 401 | int rsxx_creg_read(struct rsxx_cardinfo *card, |
| 402 | u32 addr, |
| 403 | unsigned int size8, |
| 404 | void *data, |
| 405 | int byte_stream); |
| 406 | int rsxx_read_hw_log(struct rsxx_cardinfo *card); |
| 407 | int rsxx_get_card_state(struct rsxx_cardinfo *card, |
| 408 | unsigned int *state); |
| 409 | int rsxx_get_card_size8(struct rsxx_cardinfo *card, u64 *size8); |
| 410 | int rsxx_get_num_targets(struct rsxx_cardinfo *card, |
| 411 | unsigned int *n_targets); |
| 412 | int rsxx_get_card_capabilities(struct rsxx_cardinfo *card, |
| 413 | u32 *capabilities); |
| 414 | int rsxx_issue_card_cmd(struct rsxx_cardinfo *card, u32 cmd); |
| 415 | int rsxx_creg_setup(struct rsxx_cardinfo *card); |
| 416 | void rsxx_creg_destroy(struct rsxx_cardinfo *card); |
| 417 | int rsxx_creg_init(void); |
| 418 | void rsxx_creg_cleanup(void); |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 419 | int rsxx_reg_access(struct rsxx_cardinfo *card, |
| 420 | struct rsxx_reg_access __user *ucmd, |
| 421 | int read); |
Philip J Kelleher | c95246c | 2013-03-16 08:22:25 +0100 | [diff] [blame] | 422 | void rsxx_eeh_save_issued_creg(struct rsxx_cardinfo *card); |
| 423 | void rsxx_kick_creg_queue(struct rsxx_cardinfo *card); |
josh.h.morris@us.ibm.com | 8722ff8 | 2013-02-05 14:15:02 +0100 | [diff] [blame] | 424 | |
| 425 | |
| 426 | |
| 427 | #endif /* __DRIVERS_BLOCK_RSXX_H__ */ |