Sebastian Ott | f30664e | 2012-08-28 16:50:38 +0200 | [diff] [blame] | 1 | #ifndef SCM_BLK_H |
| 2 | #define SCM_BLK_H |
| 3 | |
| 4 | #include <linux/interrupt.h> |
| 5 | #include <linux/spinlock.h> |
| 6 | #include <linux/blkdev.h> |
Sebastian Ott | 12d9076 | 2017-01-25 16:18:53 +0100 | [diff] [blame] | 7 | #include <linux/blk-mq.h> |
Sebastian Ott | f30664e | 2012-08-28 16:50:38 +0200 | [diff] [blame] | 8 | #include <linux/genhd.h> |
| 9 | #include <linux/list.h> |
| 10 | |
| 11 | #include <asm/debug.h> |
| 12 | #include <asm/eadm.h> |
| 13 | |
| 14 | #define SCM_NR_PARTS 8 |
| 15 | #define SCM_QUEUE_DELAY 5 |
| 16 | |
| 17 | struct scm_blk_dev { |
Sebastian Ott | f30664e | 2012-08-28 16:50:38 +0200 | [diff] [blame] | 18 | struct request_queue *rq; |
| 19 | struct gendisk *gendisk; |
Sebastian Ott | 12d9076 | 2017-01-25 16:18:53 +0100 | [diff] [blame] | 20 | struct blk_mq_tag_set tag_set; |
Sebastian Ott | f30664e | 2012-08-28 16:50:38 +0200 | [diff] [blame] | 21 | struct scm_device *scmdev; |
Sebastian Ott | 9861dbd | 2017-02-24 17:50:17 +0100 | [diff] [blame] | 22 | spinlock_t lock; |
Sebastian Ott | f30664e | 2012-08-28 16:50:38 +0200 | [diff] [blame] | 23 | atomic_t queued_reqs; |
Sebastian Ott | 4fa3c01 | 2013-02-28 12:07:48 +0100 | [diff] [blame] | 24 | enum {SCM_OPER, SCM_WR_PROHIBIT} state; |
Sebastian Ott | f30664e | 2012-08-28 16:50:38 +0200 | [diff] [blame] | 25 | struct list_head finished_requests; |
| 26 | }; |
| 27 | |
| 28 | struct scm_request { |
| 29 | struct scm_blk_dev *bdev; |
Sebastian Ott | de88d0d | 2014-12-05 16:41:47 +0100 | [diff] [blame] | 30 | struct aidaw *next_aidaw; |
Sebastian Ott | 8622384 | 2014-12-05 16:47:17 +0100 | [diff] [blame] | 31 | struct request **request; |
Sebastian Ott | f30664e | 2012-08-28 16:50:38 +0200 | [diff] [blame] | 32 | struct aob *aob; |
| 33 | struct list_head list; |
| 34 | u8 retries; |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 35 | blk_status_t error; |
Sebastian Ott | f30664e | 2012-08-28 16:50:38 +0200 | [diff] [blame] | 36 | }; |
| 37 | |
| 38 | #define to_aobrq(rq) container_of((void *) rq, struct aob_rq_header, data) |
| 39 | |
| 40 | int scm_blk_dev_setup(struct scm_blk_dev *, struct scm_device *); |
| 41 | void scm_blk_dev_cleanup(struct scm_blk_dev *); |
Sebastian Ott | 4fa3c01 | 2013-02-28 12:07:48 +0100 | [diff] [blame] | 42 | void scm_blk_set_available(struct scm_blk_dev *); |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 43 | void scm_blk_irq(struct scm_device *, void *, blk_status_t); |
Sebastian Ott | f30664e | 2012-08-28 16:50:38 +0200 | [diff] [blame] | 44 | |
Sebastian Ott | de88d0d | 2014-12-05 16:41:47 +0100 | [diff] [blame] | 45 | struct aidaw *scm_aidaw_fetch(struct scm_request *scmrq, unsigned int bytes); |
Sebastian Ott | 9d4df77 | 2014-12-05 16:32:13 +0100 | [diff] [blame] | 46 | |
Sebastian Ott | f30664e | 2012-08-28 16:50:38 +0200 | [diff] [blame] | 47 | int scm_drv_init(void); |
| 48 | void scm_drv_cleanup(void); |
| 49 | |
Sebastian Ott | f30664e | 2012-08-28 16:50:38 +0200 | [diff] [blame] | 50 | extern debug_info_t *scm_debug; |
| 51 | |
| 52 | #define SCM_LOG(imp, txt) do { \ |
| 53 | debug_text_event(scm_debug, imp, txt); \ |
| 54 | } while (0) |
| 55 | |
| 56 | static inline void SCM_LOG_HEX(int level, void *data, int length) |
| 57 | { |
Hendrik Brueckner | 8e6a828 | 2013-09-18 17:21:34 +0200 | [diff] [blame] | 58 | if (!debug_level_enabled(scm_debug, level)) |
Sebastian Ott | f30664e | 2012-08-28 16:50:38 +0200 | [diff] [blame] | 59 | return; |
| 60 | while (length > 0) { |
| 61 | debug_event(scm_debug, level, data, length); |
| 62 | length -= scm_debug->buf_size; |
| 63 | data += scm_debug->buf_size; |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | static inline void SCM_LOG_STATE(int level, struct scm_device *scmdev) |
| 68 | { |
| 69 | struct { |
| 70 | u64 address; |
| 71 | u8 oper_state; |
| 72 | u8 rank; |
| 73 | } __packed data = { |
| 74 | .address = scmdev->address, |
| 75 | .oper_state = scmdev->attrs.oper_state, |
| 76 | .rank = scmdev->attrs.rank, |
| 77 | }; |
| 78 | |
| 79 | SCM_LOG_HEX(level, &data, sizeof(data)); |
| 80 | } |
| 81 | |
| 82 | #endif /* SCM_BLK_H */ |