1 // SPDX-License-Identifier: GPL-2.0
3 * Microsemi Switchtec(tm) PCIe Management Driver
4 * Copyright (c) 2017, Microsemi Corporation
7 #include <linux/switchtec.h>
8 #include <linux/switchtec_ioctl.h>
10 #include <linux/interrupt.h>
11 #include <linux/module.h>
13 #include <linux/uaccess.h>
14 #include <linux/poll.h>
15 #include <linux/wait.h>
16 #include <linux/io-64-nonatomic-lo-hi.h>
17 #include <linux/nospec.h>
19 MODULE_DESCRIPTION("Microsemi Switchtec(tm) PCIe Management Driver");
20 MODULE_VERSION("0.1");
21 MODULE_LICENSE("GPL");
22 MODULE_AUTHOR("Microsemi Corporation");
24 static int max_devices
= 16;
25 module_param(max_devices
, int, 0644);
26 MODULE_PARM_DESC(max_devices
, "max number of switchtec device instances");
28 static bool use_dma_mrpc
= 1;
29 module_param(use_dma_mrpc
, bool, 0644);
30 MODULE_PARM_DESC(use_dma_mrpc
,
31 "Enable the use of the DMA MRPC feature");
33 static int nirqs
= 32;
34 module_param(nirqs
, int, 0644);
35 MODULE_PARM_DESC(nirqs
, "number of interrupts to allocate (more may be useful for NTB applications)");
37 static dev_t switchtec_devt
;
38 static DEFINE_IDA(switchtec_minor_ida
);
40 struct class *switchtec_class
;
41 EXPORT_SYMBOL_GPL(switchtec_class
);
50 struct switchtec_user
{
51 struct switchtec_dev
*stdev
;
53 enum mrpc_state state
;
55 struct completion comp
;
57 struct list_head list
;
64 unsigned char data
[SWITCHTEC_MRPC_PAYLOAD_SIZE
];
68 static struct switchtec_user
*stuser_create(struct switchtec_dev
*stdev
)
70 struct switchtec_user
*stuser
;
72 stuser
= kzalloc(sizeof(*stuser
), GFP_KERNEL
);
74 return ERR_PTR(-ENOMEM
);
76 get_device(&stdev
->dev
);
77 stuser
->stdev
= stdev
;
78 kref_init(&stuser
->kref
);
79 INIT_LIST_HEAD(&stuser
->list
);
80 init_completion(&stuser
->comp
);
81 stuser
->event_cnt
= atomic_read(&stdev
->event_cnt
);
83 dev_dbg(&stdev
->dev
, "%s: %p\n", __func__
, stuser
);
88 static void stuser_free(struct kref
*kref
)
90 struct switchtec_user
*stuser
;
92 stuser
= container_of(kref
, struct switchtec_user
, kref
);
94 dev_dbg(&stuser
->stdev
->dev
, "%s: %p\n", __func__
, stuser
);
96 put_device(&stuser
->stdev
->dev
);
100 static void stuser_put(struct switchtec_user
*stuser
)
102 kref_put(&stuser
->kref
, stuser_free
);
105 static void stuser_set_state(struct switchtec_user
*stuser
,
106 enum mrpc_state state
)
108 /* requires the mrpc_mutex to already be held when called */
110 const char * const state_names
[] = {
111 [MRPC_IDLE
] = "IDLE",
112 [MRPC_QUEUED
] = "QUEUED",
113 [MRPC_RUNNING
] = "RUNNING",
114 [MRPC_DONE
] = "DONE",
117 stuser
->state
= state
;
119 dev_dbg(&stuser
->stdev
->dev
, "stuser state %p -> %s",
120 stuser
, state_names
[state
]);
123 static void mrpc_complete_cmd(struct switchtec_dev
*stdev
);
125 static void flush_wc_buf(struct switchtec_dev
*stdev
)
127 struct ntb_dbmsg_regs __iomem
*mmio_dbmsg
;
130 * odb (outbound doorbell) register is processed by low latency
131 * hardware and w/o side effect
133 mmio_dbmsg
= (void __iomem
*)stdev
->mmio_ntb
+
134 SWITCHTEC_NTB_REG_DBMSG_OFFSET
;
135 ioread32(&mmio_dbmsg
->odb
);
138 static void mrpc_cmd_submit(struct switchtec_dev
*stdev
)
140 /* requires the mrpc_mutex to already be held when called */
142 struct switchtec_user
*stuser
;
144 if (stdev
->mrpc_busy
)
147 if (list_empty(&stdev
->mrpc_queue
))
150 stuser
= list_entry(stdev
->mrpc_queue
.next
, struct switchtec_user
,
153 if (stdev
->dma_mrpc
) {
154 stdev
->dma_mrpc
->status
= SWITCHTEC_MRPC_STATUS_INPROGRESS
;
155 memset(stdev
->dma_mrpc
->data
, 0xFF, SWITCHTEC_MRPC_PAYLOAD_SIZE
);
158 stuser_set_state(stuser
, MRPC_RUNNING
);
159 stdev
->mrpc_busy
= 1;
160 memcpy_toio(&stdev
->mmio_mrpc
->input_data
,
161 stuser
->data
, stuser
->data_len
);
163 iowrite32(stuser
->cmd
, &stdev
->mmio_mrpc
->cmd
);
165 schedule_delayed_work(&stdev
->mrpc_timeout
,
166 msecs_to_jiffies(500));
169 static int mrpc_queue_cmd(struct switchtec_user
*stuser
)
171 /* requires the mrpc_mutex to already be held when called */
173 struct switchtec_dev
*stdev
= stuser
->stdev
;
175 kref_get(&stuser
->kref
);
176 stuser
->read_len
= sizeof(stuser
->data
);
177 stuser_set_state(stuser
, MRPC_QUEUED
);
178 init_completion(&stuser
->comp
);
179 list_add_tail(&stuser
->list
, &stdev
->mrpc_queue
);
181 mrpc_cmd_submit(stdev
);
186 static void mrpc_complete_cmd(struct switchtec_dev
*stdev
)
188 /* requires the mrpc_mutex to already be held when called */
189 struct switchtec_user
*stuser
;
191 if (list_empty(&stdev
->mrpc_queue
))
194 stuser
= list_entry(stdev
->mrpc_queue
.next
, struct switchtec_user
,
198 stuser
->status
= stdev
->dma_mrpc
->status
;
200 stuser
->status
= ioread32(&stdev
->mmio_mrpc
->status
);
202 if (stuser
->status
== SWITCHTEC_MRPC_STATUS_INPROGRESS
)
205 stuser_set_state(stuser
, MRPC_DONE
);
206 stuser
->return_code
= 0;
208 if (stuser
->status
!= SWITCHTEC_MRPC_STATUS_DONE
)
212 stuser
->return_code
= stdev
->dma_mrpc
->rtn_code
;
214 stuser
->return_code
= ioread32(&stdev
->mmio_mrpc
->ret_value
);
215 if (stuser
->return_code
!= 0)
219 memcpy(stuser
->data
, &stdev
->dma_mrpc
->data
,
222 memcpy_fromio(stuser
->data
, &stdev
->mmio_mrpc
->output_data
,
225 complete_all(&stuser
->comp
);
226 list_del_init(&stuser
->list
);
228 stdev
->mrpc_busy
= 0;
230 mrpc_cmd_submit(stdev
);
233 static void mrpc_event_work(struct work_struct
*work
)
235 struct switchtec_dev
*stdev
;
237 stdev
= container_of(work
, struct switchtec_dev
, mrpc_work
);
239 dev_dbg(&stdev
->dev
, "%s\n", __func__
);
241 mutex_lock(&stdev
->mrpc_mutex
);
242 cancel_delayed_work(&stdev
->mrpc_timeout
);
243 mrpc_complete_cmd(stdev
);
244 mutex_unlock(&stdev
->mrpc_mutex
);
247 static void mrpc_timeout_work(struct work_struct
*work
)
249 struct switchtec_dev
*stdev
;
252 stdev
= container_of(work
, struct switchtec_dev
, mrpc_timeout
.work
);
254 dev_dbg(&stdev
->dev
, "%s\n", __func__
);
256 mutex_lock(&stdev
->mrpc_mutex
);
259 status
= stdev
->dma_mrpc
->status
;
261 status
= ioread32(&stdev
->mmio_mrpc
->status
);
262 if (status
== SWITCHTEC_MRPC_STATUS_INPROGRESS
) {
263 schedule_delayed_work(&stdev
->mrpc_timeout
,
264 msecs_to_jiffies(500));
268 mrpc_complete_cmd(stdev
);
270 mutex_unlock(&stdev
->mrpc_mutex
);
273 static ssize_t
device_version_show(struct device
*dev
,
274 struct device_attribute
*attr
, char *buf
)
276 struct switchtec_dev
*stdev
= to_stdev(dev
);
279 ver
= ioread32(&stdev
->mmio_sys_info
->device_version
);
281 return sprintf(buf
, "%x\n", ver
);
283 static DEVICE_ATTR_RO(device_version
);
285 static ssize_t
fw_version_show(struct device
*dev
,
286 struct device_attribute
*attr
, char *buf
)
288 struct switchtec_dev
*stdev
= to_stdev(dev
);
291 ver
= ioread32(&stdev
->mmio_sys_info
->firmware_version
);
293 return sprintf(buf
, "%08x\n", ver
);
295 static DEVICE_ATTR_RO(fw_version
);
297 static ssize_t
io_string_show(char *buf
, void __iomem
*attr
, size_t len
)
301 memcpy_fromio(buf
, attr
, len
);
305 for (i
= len
- 1; i
> 0; i
--) {
315 #define DEVICE_ATTR_SYS_INFO_STR(field) \
316 static ssize_t field ## _show(struct device *dev, \
317 struct device_attribute *attr, char *buf) \
319 struct switchtec_dev *stdev = to_stdev(dev); \
320 struct sys_info_regs __iomem *si = stdev->mmio_sys_info; \
321 if (stdev->gen == SWITCHTEC_GEN3) \
322 return io_string_show(buf, &si->gen3.field, \
323 sizeof(si->gen3.field)); \
324 else if (stdev->gen == SWITCHTEC_GEN4) \
325 return io_string_show(buf, &si->gen4.field, \
326 sizeof(si->gen4.field)); \
331 static DEVICE_ATTR_RO(field)
333 DEVICE_ATTR_SYS_INFO_STR(vendor_id
);
334 DEVICE_ATTR_SYS_INFO_STR(product_id
);
335 DEVICE_ATTR_SYS_INFO_STR(product_revision
);
337 static ssize_t
component_vendor_show(struct device
*dev
,
338 struct device_attribute
*attr
, char *buf
)
340 struct switchtec_dev
*stdev
= to_stdev(dev
);
341 struct sys_info_regs __iomem
*si
= stdev
->mmio_sys_info
;
343 /* component_vendor field not supported after gen3 */
344 if (stdev
->gen
!= SWITCHTEC_GEN3
)
345 return sprintf(buf
, "none\n");
347 return io_string_show(buf
, &si
->gen3
.component_vendor
,
348 sizeof(si
->gen3
.component_vendor
));
350 static DEVICE_ATTR_RO(component_vendor
);
352 static ssize_t
component_id_show(struct device
*dev
,
353 struct device_attribute
*attr
, char *buf
)
355 struct switchtec_dev
*stdev
= to_stdev(dev
);
356 int id
= ioread16(&stdev
->mmio_sys_info
->gen3
.component_id
);
358 /* component_id field not supported after gen3 */
359 if (stdev
->gen
!= SWITCHTEC_GEN3
)
360 return sprintf(buf
, "none\n");
362 return sprintf(buf
, "PM%04X\n", id
);
364 static DEVICE_ATTR_RO(component_id
);
366 static ssize_t
component_revision_show(struct device
*dev
,
367 struct device_attribute
*attr
, char *buf
)
369 struct switchtec_dev
*stdev
= to_stdev(dev
);
370 int rev
= ioread8(&stdev
->mmio_sys_info
->gen3
.component_revision
);
372 /* component_revision field not supported after gen3 */
373 if (stdev
->gen
!= SWITCHTEC_GEN3
)
374 return sprintf(buf
, "255\n");
376 return sprintf(buf
, "%d\n", rev
);
378 static DEVICE_ATTR_RO(component_revision
);
380 static ssize_t
partition_show(struct device
*dev
,
381 struct device_attribute
*attr
, char *buf
)
383 struct switchtec_dev
*stdev
= to_stdev(dev
);
385 return sprintf(buf
, "%d\n", stdev
->partition
);
387 static DEVICE_ATTR_RO(partition
);
389 static ssize_t
partition_count_show(struct device
*dev
,
390 struct device_attribute
*attr
, char *buf
)
392 struct switchtec_dev
*stdev
= to_stdev(dev
);
394 return sprintf(buf
, "%d\n", stdev
->partition_count
);
396 static DEVICE_ATTR_RO(partition_count
);
398 static struct attribute
*switchtec_device_attrs
[] = {
399 &dev_attr_device_version
.attr
,
400 &dev_attr_fw_version
.attr
,
401 &dev_attr_vendor_id
.attr
,
402 &dev_attr_product_id
.attr
,
403 &dev_attr_product_revision
.attr
,
404 &dev_attr_component_vendor
.attr
,
405 &dev_attr_component_id
.attr
,
406 &dev_attr_component_revision
.attr
,
407 &dev_attr_partition
.attr
,
408 &dev_attr_partition_count
.attr
,
412 ATTRIBUTE_GROUPS(switchtec_device
);
414 static int switchtec_dev_open(struct inode
*inode
, struct file
*filp
)
416 struct switchtec_dev
*stdev
;
417 struct switchtec_user
*stuser
;
419 stdev
= container_of(inode
->i_cdev
, struct switchtec_dev
, cdev
);
421 stuser
= stuser_create(stdev
);
423 return PTR_ERR(stuser
);
425 filp
->private_data
= stuser
;
426 stream_open(inode
, filp
);
428 dev_dbg(&stdev
->dev
, "%s: %p\n", __func__
, stuser
);
433 static int switchtec_dev_release(struct inode
*inode
, struct file
*filp
)
435 struct switchtec_user
*stuser
= filp
->private_data
;
442 static int lock_mutex_and_test_alive(struct switchtec_dev
*stdev
)
444 if (mutex_lock_interruptible(&stdev
->mrpc_mutex
))
448 mutex_unlock(&stdev
->mrpc_mutex
);
455 static ssize_t
switchtec_dev_write(struct file
*filp
, const char __user
*data
,
456 size_t size
, loff_t
*off
)
458 struct switchtec_user
*stuser
= filp
->private_data
;
459 struct switchtec_dev
*stdev
= stuser
->stdev
;
462 if (size
< sizeof(stuser
->cmd
) ||
463 size
> sizeof(stuser
->cmd
) + sizeof(stuser
->data
))
466 stuser
->data_len
= size
- sizeof(stuser
->cmd
);
468 rc
= lock_mutex_and_test_alive(stdev
);
472 if (stuser
->state
!= MRPC_IDLE
) {
477 rc
= copy_from_user(&stuser
->cmd
, data
, sizeof(stuser
->cmd
));
482 if (((MRPC_CMD_ID(stuser
->cmd
) == MRPC_GAS_WRITE
) ||
483 (MRPC_CMD_ID(stuser
->cmd
) == MRPC_GAS_READ
)) &&
484 !capable(CAP_SYS_ADMIN
)) {
489 data
+= sizeof(stuser
->cmd
);
490 rc
= copy_from_user(&stuser
->data
, data
, size
- sizeof(stuser
->cmd
));
496 rc
= mrpc_queue_cmd(stuser
);
499 mutex_unlock(&stdev
->mrpc_mutex
);
507 static ssize_t
switchtec_dev_read(struct file
*filp
, char __user
*data
,
508 size_t size
, loff_t
*off
)
510 struct switchtec_user
*stuser
= filp
->private_data
;
511 struct switchtec_dev
*stdev
= stuser
->stdev
;
514 if (size
< sizeof(stuser
->cmd
) ||
515 size
> sizeof(stuser
->cmd
) + sizeof(stuser
->data
))
518 rc
= lock_mutex_and_test_alive(stdev
);
522 if (stuser
->state
== MRPC_IDLE
) {
523 mutex_unlock(&stdev
->mrpc_mutex
);
527 stuser
->read_len
= size
- sizeof(stuser
->return_code
);
529 mutex_unlock(&stdev
->mrpc_mutex
);
531 if (filp
->f_flags
& O_NONBLOCK
) {
532 if (!try_wait_for_completion(&stuser
->comp
))
535 rc
= wait_for_completion_interruptible(&stuser
->comp
);
540 rc
= lock_mutex_and_test_alive(stdev
);
544 if (stuser
->state
!= MRPC_DONE
) {
545 mutex_unlock(&stdev
->mrpc_mutex
);
549 rc
= copy_to_user(data
, &stuser
->return_code
,
550 sizeof(stuser
->return_code
));
556 data
+= sizeof(stuser
->return_code
);
557 rc
= copy_to_user(data
, &stuser
->data
,
558 size
- sizeof(stuser
->return_code
));
564 stuser_set_state(stuser
, MRPC_IDLE
);
567 mutex_unlock(&stdev
->mrpc_mutex
);
569 if (stuser
->status
== SWITCHTEC_MRPC_STATUS_DONE
)
571 else if (stuser
->status
== SWITCHTEC_MRPC_STATUS_INTERRUPTED
)
577 static __poll_t
switchtec_dev_poll(struct file
*filp
, poll_table
*wait
)
579 struct switchtec_user
*stuser
= filp
->private_data
;
580 struct switchtec_dev
*stdev
= stuser
->stdev
;
583 poll_wait(filp
, &stuser
->comp
.wait
, wait
);
584 poll_wait(filp
, &stdev
->event_wq
, wait
);
586 if (lock_mutex_and_test_alive(stdev
))
587 return EPOLLIN
| EPOLLRDHUP
| EPOLLOUT
| EPOLLERR
| EPOLLHUP
;
589 mutex_unlock(&stdev
->mrpc_mutex
);
591 if (try_wait_for_completion(&stuser
->comp
))
592 ret
|= EPOLLIN
| EPOLLRDNORM
;
594 if (stuser
->event_cnt
!= atomic_read(&stdev
->event_cnt
))
595 ret
|= EPOLLPRI
| EPOLLRDBAND
;
600 static int ioctl_flash_info(struct switchtec_dev
*stdev
,
601 struct switchtec_ioctl_flash_info __user
*uinfo
)
603 struct switchtec_ioctl_flash_info info
= {0};
604 struct flash_info_regs __iomem
*fi
= stdev
->mmio_flash_info
;
606 if (stdev
->gen
== SWITCHTEC_GEN3
) {
607 info
.flash_length
= ioread32(&fi
->gen3
.flash_length
);
608 info
.num_partitions
= SWITCHTEC_NUM_PARTITIONS_GEN3
;
609 } else if (stdev
->gen
== SWITCHTEC_GEN4
) {
610 info
.flash_length
= ioread32(&fi
->gen4
.flash_length
);
611 info
.num_partitions
= SWITCHTEC_NUM_PARTITIONS_GEN4
;
616 if (copy_to_user(uinfo
, &info
, sizeof(info
)))
622 static void set_fw_info_part(struct switchtec_ioctl_flash_part_info
*info
,
623 struct partition_info __iomem
*pi
)
625 info
->address
= ioread32(&pi
->address
);
626 info
->length
= ioread32(&pi
->length
);
629 static int flash_part_info_gen3(struct switchtec_dev
*stdev
,
630 struct switchtec_ioctl_flash_part_info
*info
)
632 struct flash_info_regs_gen3 __iomem
*fi
=
633 &stdev
->mmio_flash_info
->gen3
;
634 struct sys_info_regs_gen3 __iomem
*si
= &stdev
->mmio_sys_info
->gen3
;
635 u32 active_addr
= -1;
637 switch (info
->flash_partition
) {
638 case SWITCHTEC_IOCTL_PART_CFG0
:
639 active_addr
= ioread32(&fi
->active_cfg
);
640 set_fw_info_part(info
, &fi
->cfg0
);
641 if (ioread16(&si
->cfg_running
) == SWITCHTEC_GEN3_CFG0_RUNNING
)
642 info
->active
|= SWITCHTEC_IOCTL_PART_RUNNING
;
644 case SWITCHTEC_IOCTL_PART_CFG1
:
645 active_addr
= ioread32(&fi
->active_cfg
);
646 set_fw_info_part(info
, &fi
->cfg1
);
647 if (ioread16(&si
->cfg_running
) == SWITCHTEC_GEN3_CFG1_RUNNING
)
648 info
->active
|= SWITCHTEC_IOCTL_PART_RUNNING
;
650 case SWITCHTEC_IOCTL_PART_IMG0
:
651 active_addr
= ioread32(&fi
->active_img
);
652 set_fw_info_part(info
, &fi
->img0
);
653 if (ioread16(&si
->img_running
) == SWITCHTEC_GEN3_IMG0_RUNNING
)
654 info
->active
|= SWITCHTEC_IOCTL_PART_RUNNING
;
656 case SWITCHTEC_IOCTL_PART_IMG1
:
657 active_addr
= ioread32(&fi
->active_img
);
658 set_fw_info_part(info
, &fi
->img1
);
659 if (ioread16(&si
->img_running
) == SWITCHTEC_GEN3_IMG1_RUNNING
)
660 info
->active
|= SWITCHTEC_IOCTL_PART_RUNNING
;
662 case SWITCHTEC_IOCTL_PART_NVLOG
:
663 set_fw_info_part(info
, &fi
->nvlog
);
665 case SWITCHTEC_IOCTL_PART_VENDOR0
:
666 set_fw_info_part(info
, &fi
->vendor
[0]);
668 case SWITCHTEC_IOCTL_PART_VENDOR1
:
669 set_fw_info_part(info
, &fi
->vendor
[1]);
671 case SWITCHTEC_IOCTL_PART_VENDOR2
:
672 set_fw_info_part(info
, &fi
->vendor
[2]);
674 case SWITCHTEC_IOCTL_PART_VENDOR3
:
675 set_fw_info_part(info
, &fi
->vendor
[3]);
677 case SWITCHTEC_IOCTL_PART_VENDOR4
:
678 set_fw_info_part(info
, &fi
->vendor
[4]);
680 case SWITCHTEC_IOCTL_PART_VENDOR5
:
681 set_fw_info_part(info
, &fi
->vendor
[5]);
683 case SWITCHTEC_IOCTL_PART_VENDOR6
:
684 set_fw_info_part(info
, &fi
->vendor
[6]);
686 case SWITCHTEC_IOCTL_PART_VENDOR7
:
687 set_fw_info_part(info
, &fi
->vendor
[7]);
693 if (info
->address
== active_addr
)
694 info
->active
|= SWITCHTEC_IOCTL_PART_ACTIVE
;
699 static int flash_part_info_gen4(struct switchtec_dev
*stdev
,
700 struct switchtec_ioctl_flash_part_info
*info
)
702 struct flash_info_regs_gen4 __iomem
*fi
= &stdev
->mmio_flash_info
->gen4
;
703 struct sys_info_regs_gen4 __iomem
*si
= &stdev
->mmio_sys_info
->gen4
;
704 struct active_partition_info_gen4 __iomem
*af
= &fi
->active_flag
;
706 switch (info
->flash_partition
) {
707 case SWITCHTEC_IOCTL_PART_MAP_0
:
708 set_fw_info_part(info
, &fi
->map0
);
710 case SWITCHTEC_IOCTL_PART_MAP_1
:
711 set_fw_info_part(info
, &fi
->map1
);
713 case SWITCHTEC_IOCTL_PART_KEY_0
:
714 set_fw_info_part(info
, &fi
->key0
);
715 if (ioread8(&af
->key
) == SWITCHTEC_GEN4_KEY0_ACTIVE
)
716 info
->active
|= SWITCHTEC_IOCTL_PART_ACTIVE
;
717 if (ioread16(&si
->key_running
) == SWITCHTEC_GEN4_KEY0_RUNNING
)
718 info
->active
|= SWITCHTEC_IOCTL_PART_RUNNING
;
720 case SWITCHTEC_IOCTL_PART_KEY_1
:
721 set_fw_info_part(info
, &fi
->key1
);
722 if (ioread8(&af
->key
) == SWITCHTEC_GEN4_KEY1_ACTIVE
)
723 info
->active
|= SWITCHTEC_IOCTL_PART_ACTIVE
;
724 if (ioread16(&si
->key_running
) == SWITCHTEC_GEN4_KEY1_RUNNING
)
725 info
->active
|= SWITCHTEC_IOCTL_PART_RUNNING
;
727 case SWITCHTEC_IOCTL_PART_BL2_0
:
728 set_fw_info_part(info
, &fi
->bl2_0
);
729 if (ioread8(&af
->bl2
) == SWITCHTEC_GEN4_BL2_0_ACTIVE
)
730 info
->active
|= SWITCHTEC_IOCTL_PART_ACTIVE
;
731 if (ioread16(&si
->bl2_running
) == SWITCHTEC_GEN4_BL2_0_RUNNING
)
732 info
->active
|= SWITCHTEC_IOCTL_PART_RUNNING
;
734 case SWITCHTEC_IOCTL_PART_BL2_1
:
735 set_fw_info_part(info
, &fi
->bl2_1
);
736 if (ioread8(&af
->bl2
) == SWITCHTEC_GEN4_BL2_1_ACTIVE
)
737 info
->active
|= SWITCHTEC_IOCTL_PART_ACTIVE
;
738 if (ioread16(&si
->bl2_running
) == SWITCHTEC_GEN4_BL2_1_RUNNING
)
739 info
->active
|= SWITCHTEC_IOCTL_PART_RUNNING
;
741 case SWITCHTEC_IOCTL_PART_CFG0
:
742 set_fw_info_part(info
, &fi
->cfg0
);
743 if (ioread8(&af
->cfg
) == SWITCHTEC_GEN4_CFG0_ACTIVE
)
744 info
->active
|= SWITCHTEC_IOCTL_PART_ACTIVE
;
745 if (ioread16(&si
->cfg_running
) == SWITCHTEC_GEN4_CFG0_RUNNING
)
746 info
->active
|= SWITCHTEC_IOCTL_PART_RUNNING
;
748 case SWITCHTEC_IOCTL_PART_CFG1
:
749 set_fw_info_part(info
, &fi
->cfg1
);
750 if (ioread8(&af
->cfg
) == SWITCHTEC_GEN4_CFG1_ACTIVE
)
751 info
->active
|= SWITCHTEC_IOCTL_PART_ACTIVE
;
752 if (ioread16(&si
->cfg_running
) == SWITCHTEC_GEN4_CFG1_RUNNING
)
753 info
->active
|= SWITCHTEC_IOCTL_PART_RUNNING
;
755 case SWITCHTEC_IOCTL_PART_IMG0
:
756 set_fw_info_part(info
, &fi
->img0
);
757 if (ioread8(&af
->img
) == SWITCHTEC_GEN4_IMG0_ACTIVE
)
758 info
->active
|= SWITCHTEC_IOCTL_PART_ACTIVE
;
759 if (ioread16(&si
->img_running
) == SWITCHTEC_GEN4_IMG0_RUNNING
)
760 info
->active
|= SWITCHTEC_IOCTL_PART_RUNNING
;
762 case SWITCHTEC_IOCTL_PART_IMG1
:
763 set_fw_info_part(info
, &fi
->img1
);
764 if (ioread8(&af
->img
) == SWITCHTEC_GEN4_IMG1_ACTIVE
)
765 info
->active
|= SWITCHTEC_IOCTL_PART_ACTIVE
;
766 if (ioread16(&si
->img_running
) == SWITCHTEC_GEN4_IMG1_RUNNING
)
767 info
->active
|= SWITCHTEC_IOCTL_PART_RUNNING
;
769 case SWITCHTEC_IOCTL_PART_NVLOG
:
770 set_fw_info_part(info
, &fi
->nvlog
);
772 case SWITCHTEC_IOCTL_PART_VENDOR0
:
773 set_fw_info_part(info
, &fi
->vendor
[0]);
775 case SWITCHTEC_IOCTL_PART_VENDOR1
:
776 set_fw_info_part(info
, &fi
->vendor
[1]);
778 case SWITCHTEC_IOCTL_PART_VENDOR2
:
779 set_fw_info_part(info
, &fi
->vendor
[2]);
781 case SWITCHTEC_IOCTL_PART_VENDOR3
:
782 set_fw_info_part(info
, &fi
->vendor
[3]);
784 case SWITCHTEC_IOCTL_PART_VENDOR4
:
785 set_fw_info_part(info
, &fi
->vendor
[4]);
787 case SWITCHTEC_IOCTL_PART_VENDOR5
:
788 set_fw_info_part(info
, &fi
->vendor
[5]);
790 case SWITCHTEC_IOCTL_PART_VENDOR6
:
791 set_fw_info_part(info
, &fi
->vendor
[6]);
793 case SWITCHTEC_IOCTL_PART_VENDOR7
:
794 set_fw_info_part(info
, &fi
->vendor
[7]);
803 static int ioctl_flash_part_info(struct switchtec_dev
*stdev
,
804 struct switchtec_ioctl_flash_part_info __user
*uinfo
)
807 struct switchtec_ioctl_flash_part_info info
= {0};
809 if (copy_from_user(&info
, uinfo
, sizeof(info
)))
812 if (stdev
->gen
== SWITCHTEC_GEN3
) {
813 ret
= flash_part_info_gen3(stdev
, &info
);
816 } else if (stdev
->gen
== SWITCHTEC_GEN4
) {
817 ret
= flash_part_info_gen4(stdev
, &info
);
824 if (copy_to_user(uinfo
, &info
, sizeof(info
)))
830 static int ioctl_event_summary(struct switchtec_dev
*stdev
,
831 struct switchtec_user
*stuser
,
832 struct switchtec_ioctl_event_summary __user
*usum
,
835 struct switchtec_ioctl_event_summary
*s
;
840 s
= kzalloc(sizeof(*s
), GFP_KERNEL
);
844 s
->global
= ioread32(&stdev
->mmio_sw_event
->global_summary
);
845 s
->part_bitmap
= ioread64(&stdev
->mmio_sw_event
->part_event_bitmap
);
846 s
->local_part
= ioread32(&stdev
->mmio_part_cfg
->part_event_summary
);
848 for (i
= 0; i
< stdev
->partition_count
; i
++) {
849 reg
= ioread32(&stdev
->mmio_part_cfg_all
[i
].part_event_summary
);
853 for (i
= 0; i
< stdev
->pff_csr_count
; i
++) {
854 reg
= ioread32(&stdev
->mmio_pff_csr
[i
].pff_event_summary
);
858 if (copy_to_user(usum
, s
, size
)) {
863 stuser
->event_cnt
= atomic_read(&stdev
->event_cnt
);
870 static u32 __iomem
*global_ev_reg(struct switchtec_dev
*stdev
,
871 size_t offset
, int index
)
873 return (void __iomem
*)stdev
->mmio_sw_event
+ offset
;
876 static u32 __iomem
*part_ev_reg(struct switchtec_dev
*stdev
,
877 size_t offset
, int index
)
879 return (void __iomem
*)&stdev
->mmio_part_cfg_all
[index
] + offset
;
882 static u32 __iomem
*pff_ev_reg(struct switchtec_dev
*stdev
,
883 size_t offset
, int index
)
885 return (void __iomem
*)&stdev
->mmio_pff_csr
[index
] + offset
;
888 #define EV_GLB(i, r)[i] = {offsetof(struct sw_event_regs, r), global_ev_reg}
889 #define EV_PAR(i, r)[i] = {offsetof(struct part_cfg_regs, r), part_ev_reg}
890 #define EV_PFF(i, r)[i] = {offsetof(struct pff_csr_regs, r), pff_ev_reg}
892 static const struct event_reg
{
894 u32 __iomem
*(*map_reg
)(struct switchtec_dev
*stdev
,
895 size_t offset
, int index
);
897 EV_GLB(SWITCHTEC_IOCTL_EVENT_STACK_ERROR
, stack_error_event_hdr
),
898 EV_GLB(SWITCHTEC_IOCTL_EVENT_PPU_ERROR
, ppu_error_event_hdr
),
899 EV_GLB(SWITCHTEC_IOCTL_EVENT_ISP_ERROR
, isp_error_event_hdr
),
900 EV_GLB(SWITCHTEC_IOCTL_EVENT_SYS_RESET
, sys_reset_event_hdr
),
901 EV_GLB(SWITCHTEC_IOCTL_EVENT_FW_EXC
, fw_exception_hdr
),
902 EV_GLB(SWITCHTEC_IOCTL_EVENT_FW_NMI
, fw_nmi_hdr
),
903 EV_GLB(SWITCHTEC_IOCTL_EVENT_FW_NON_FATAL
, fw_non_fatal_hdr
),
904 EV_GLB(SWITCHTEC_IOCTL_EVENT_FW_FATAL
, fw_fatal_hdr
),
905 EV_GLB(SWITCHTEC_IOCTL_EVENT_TWI_MRPC_COMP
, twi_mrpc_comp_hdr
),
906 EV_GLB(SWITCHTEC_IOCTL_EVENT_TWI_MRPC_COMP_ASYNC
,
907 twi_mrpc_comp_async_hdr
),
908 EV_GLB(SWITCHTEC_IOCTL_EVENT_CLI_MRPC_COMP
, cli_mrpc_comp_hdr
),
909 EV_GLB(SWITCHTEC_IOCTL_EVENT_CLI_MRPC_COMP_ASYNC
,
910 cli_mrpc_comp_async_hdr
),
911 EV_GLB(SWITCHTEC_IOCTL_EVENT_GPIO_INT
, gpio_interrupt_hdr
),
912 EV_GLB(SWITCHTEC_IOCTL_EVENT_GFMS
, gfms_event_hdr
),
913 EV_PAR(SWITCHTEC_IOCTL_EVENT_PART_RESET
, part_reset_hdr
),
914 EV_PAR(SWITCHTEC_IOCTL_EVENT_MRPC_COMP
, mrpc_comp_hdr
),
915 EV_PAR(SWITCHTEC_IOCTL_EVENT_MRPC_COMP_ASYNC
, mrpc_comp_async_hdr
),
916 EV_PAR(SWITCHTEC_IOCTL_EVENT_DYN_PART_BIND_COMP
, dyn_binding_hdr
),
917 EV_PAR(SWITCHTEC_IOCTL_EVENT_INTERCOMM_REQ_NOTIFY
,
918 intercomm_notify_hdr
),
919 EV_PFF(SWITCHTEC_IOCTL_EVENT_AER_IN_P2P
, aer_in_p2p_hdr
),
920 EV_PFF(SWITCHTEC_IOCTL_EVENT_AER_IN_VEP
, aer_in_vep_hdr
),
921 EV_PFF(SWITCHTEC_IOCTL_EVENT_DPC
, dpc_hdr
),
922 EV_PFF(SWITCHTEC_IOCTL_EVENT_CTS
, cts_hdr
),
923 EV_PFF(SWITCHTEC_IOCTL_EVENT_UEC
, uec_hdr
),
924 EV_PFF(SWITCHTEC_IOCTL_EVENT_HOTPLUG
, hotplug_hdr
),
925 EV_PFF(SWITCHTEC_IOCTL_EVENT_IER
, ier_hdr
),
926 EV_PFF(SWITCHTEC_IOCTL_EVENT_THRESH
, threshold_hdr
),
927 EV_PFF(SWITCHTEC_IOCTL_EVENT_POWER_MGMT
, power_mgmt_hdr
),
928 EV_PFF(SWITCHTEC_IOCTL_EVENT_TLP_THROTTLING
, tlp_throttling_hdr
),
929 EV_PFF(SWITCHTEC_IOCTL_EVENT_FORCE_SPEED
, force_speed_hdr
),
930 EV_PFF(SWITCHTEC_IOCTL_EVENT_CREDIT_TIMEOUT
, credit_timeout_hdr
),
931 EV_PFF(SWITCHTEC_IOCTL_EVENT_LINK_STATE
, link_state_hdr
),
934 static u32 __iomem
*event_hdr_addr(struct switchtec_dev
*stdev
,
935 int event_id
, int index
)
939 if (event_id
< 0 || event_id
>= SWITCHTEC_IOCTL_MAX_EVENTS
)
940 return ERR_PTR(-EINVAL
);
942 off
= event_regs
[event_id
].offset
;
944 if (event_regs
[event_id
].map_reg
== part_ev_reg
) {
945 if (index
== SWITCHTEC_IOCTL_EVENT_LOCAL_PART_IDX
)
946 index
= stdev
->partition
;
947 else if (index
< 0 || index
>= stdev
->partition_count
)
948 return ERR_PTR(-EINVAL
);
949 } else if (event_regs
[event_id
].map_reg
== pff_ev_reg
) {
950 if (index
< 0 || index
>= stdev
->pff_csr_count
)
951 return ERR_PTR(-EINVAL
);
954 return event_regs
[event_id
].map_reg(stdev
, off
, index
);
957 static int event_ctl(struct switchtec_dev
*stdev
,
958 struct switchtec_ioctl_event_ctl
*ctl
)
964 reg
= event_hdr_addr(stdev
, ctl
->event_id
, ctl
->index
);
969 for (i
= 0; i
< ARRAY_SIZE(ctl
->data
); i
++)
970 ctl
->data
[i
] = ioread32(®
[i
+ 1]);
972 ctl
->occurred
= hdr
& SWITCHTEC_EVENT_OCCURRED
;
973 ctl
->count
= (hdr
>> 5) & 0xFF;
975 if (!(ctl
->flags
& SWITCHTEC_IOCTL_EVENT_FLAG_CLEAR
))
976 hdr
&= ~SWITCHTEC_EVENT_CLEAR
;
977 if (ctl
->flags
& SWITCHTEC_IOCTL_EVENT_FLAG_EN_POLL
)
978 hdr
|= SWITCHTEC_EVENT_EN_IRQ
;
979 if (ctl
->flags
& SWITCHTEC_IOCTL_EVENT_FLAG_DIS_POLL
)
980 hdr
&= ~SWITCHTEC_EVENT_EN_IRQ
;
981 if (ctl
->flags
& SWITCHTEC_IOCTL_EVENT_FLAG_EN_LOG
)
982 hdr
|= SWITCHTEC_EVENT_EN_LOG
;
983 if (ctl
->flags
& SWITCHTEC_IOCTL_EVENT_FLAG_DIS_LOG
)
984 hdr
&= ~SWITCHTEC_EVENT_EN_LOG
;
985 if (ctl
->flags
& SWITCHTEC_IOCTL_EVENT_FLAG_EN_CLI
)
986 hdr
|= SWITCHTEC_EVENT_EN_CLI
;
987 if (ctl
->flags
& SWITCHTEC_IOCTL_EVENT_FLAG_DIS_CLI
)
988 hdr
&= ~SWITCHTEC_EVENT_EN_CLI
;
989 if (ctl
->flags
& SWITCHTEC_IOCTL_EVENT_FLAG_EN_FATAL
)
990 hdr
|= SWITCHTEC_EVENT_FATAL
;
991 if (ctl
->flags
& SWITCHTEC_IOCTL_EVENT_FLAG_DIS_FATAL
)
992 hdr
&= ~SWITCHTEC_EVENT_FATAL
;
998 if (hdr
& SWITCHTEC_EVENT_EN_IRQ
)
999 ctl
->flags
|= SWITCHTEC_IOCTL_EVENT_FLAG_EN_POLL
;
1000 if (hdr
& SWITCHTEC_EVENT_EN_LOG
)
1001 ctl
->flags
|= SWITCHTEC_IOCTL_EVENT_FLAG_EN_LOG
;
1002 if (hdr
& SWITCHTEC_EVENT_EN_CLI
)
1003 ctl
->flags
|= SWITCHTEC_IOCTL_EVENT_FLAG_EN_CLI
;
1004 if (hdr
& SWITCHTEC_EVENT_FATAL
)
1005 ctl
->flags
|= SWITCHTEC_IOCTL_EVENT_FLAG_EN_FATAL
;
1010 static int ioctl_event_ctl(struct switchtec_dev
*stdev
,
1011 struct switchtec_ioctl_event_ctl __user
*uctl
)
1015 unsigned int event_flags
;
1016 struct switchtec_ioctl_event_ctl ctl
;
1018 if (copy_from_user(&ctl
, uctl
, sizeof(ctl
)))
1021 if (ctl
.event_id
>= SWITCHTEC_IOCTL_MAX_EVENTS
)
1024 if (ctl
.flags
& SWITCHTEC_IOCTL_EVENT_FLAG_UNUSED
)
1027 if (ctl
.index
== SWITCHTEC_IOCTL_EVENT_IDX_ALL
) {
1028 if (event_regs
[ctl
.event_id
].map_reg
== global_ev_reg
)
1030 else if (event_regs
[ctl
.event_id
].map_reg
== part_ev_reg
)
1031 nr_idxs
= stdev
->partition_count
;
1032 else if (event_regs
[ctl
.event_id
].map_reg
== pff_ev_reg
)
1033 nr_idxs
= stdev
->pff_csr_count
;
1037 event_flags
= ctl
.flags
;
1038 for (ctl
.index
= 0; ctl
.index
< nr_idxs
; ctl
.index
++) {
1039 ctl
.flags
= event_flags
;
1040 ret
= event_ctl(stdev
, &ctl
);
1045 ret
= event_ctl(stdev
, &ctl
);
1050 if (copy_to_user(uctl
, &ctl
, sizeof(ctl
)))
1056 static int ioctl_pff_to_port(struct switchtec_dev
*stdev
,
1057 struct switchtec_ioctl_pff_port
*up
)
1061 struct part_cfg_regs
*pcfg
;
1062 struct switchtec_ioctl_pff_port p
;
1064 if (copy_from_user(&p
, up
, sizeof(p
)))
1068 for (part
= 0; part
< stdev
->partition_count
; part
++) {
1069 pcfg
= &stdev
->mmio_part_cfg_all
[part
];
1072 reg
= ioread32(&pcfg
->usp_pff_inst_id
);
1078 reg
= ioread32(&pcfg
->vep_pff_inst_id
);
1080 p
.port
= SWITCHTEC_IOCTL_PFF_VEP
;
1084 for (i
= 0; i
< ARRAY_SIZE(pcfg
->dsp_pff_inst_id
); i
++) {
1085 reg
= ioread32(&pcfg
->dsp_pff_inst_id
[i
]);
1097 if (copy_to_user(up
, &p
, sizeof(p
)))
1103 static int ioctl_port_to_pff(struct switchtec_dev
*stdev
,
1104 struct switchtec_ioctl_pff_port
*up
)
1106 struct switchtec_ioctl_pff_port p
;
1107 struct part_cfg_regs
*pcfg
;
1109 if (copy_from_user(&p
, up
, sizeof(p
)))
1112 if (p
.partition
== SWITCHTEC_IOCTL_EVENT_LOCAL_PART_IDX
)
1113 pcfg
= stdev
->mmio_part_cfg
;
1114 else if (p
.partition
< stdev
->partition_count
)
1115 pcfg
= &stdev
->mmio_part_cfg_all
[p
.partition
];
1121 p
.pff
= ioread32(&pcfg
->usp_pff_inst_id
);
1123 case SWITCHTEC_IOCTL_PFF_VEP
:
1124 p
.pff
= ioread32(&pcfg
->vep_pff_inst_id
);
1127 if (p
.port
> ARRAY_SIZE(pcfg
->dsp_pff_inst_id
))
1129 p
.port
= array_index_nospec(p
.port
,
1130 ARRAY_SIZE(pcfg
->dsp_pff_inst_id
) + 1);
1131 p
.pff
= ioread32(&pcfg
->dsp_pff_inst_id
[p
.port
- 1]);
1135 if (copy_to_user(up
, &p
, sizeof(p
)))
1141 static long switchtec_dev_ioctl(struct file
*filp
, unsigned int cmd
,
1144 struct switchtec_user
*stuser
= filp
->private_data
;
1145 struct switchtec_dev
*stdev
= stuser
->stdev
;
1147 void __user
*argp
= (void __user
*)arg
;
1149 rc
= lock_mutex_and_test_alive(stdev
);
1154 case SWITCHTEC_IOCTL_FLASH_INFO
:
1155 rc
= ioctl_flash_info(stdev
, argp
);
1157 case SWITCHTEC_IOCTL_FLASH_PART_INFO
:
1158 rc
= ioctl_flash_part_info(stdev
, argp
);
1160 case SWITCHTEC_IOCTL_EVENT_SUMMARY_LEGACY
:
1161 rc
= ioctl_event_summary(stdev
, stuser
, argp
,
1162 sizeof(struct switchtec_ioctl_event_summary_legacy
));
1164 case SWITCHTEC_IOCTL_EVENT_CTL
:
1165 rc
= ioctl_event_ctl(stdev
, argp
);
1167 case SWITCHTEC_IOCTL_PFF_TO_PORT
:
1168 rc
= ioctl_pff_to_port(stdev
, argp
);
1170 case SWITCHTEC_IOCTL_PORT_TO_PFF
:
1171 rc
= ioctl_port_to_pff(stdev
, argp
);
1173 case SWITCHTEC_IOCTL_EVENT_SUMMARY
:
1174 rc
= ioctl_event_summary(stdev
, stuser
, argp
,
1175 sizeof(struct switchtec_ioctl_event_summary
));
1182 mutex_unlock(&stdev
->mrpc_mutex
);
1186 static const struct file_operations switchtec_fops
= {
1187 .owner
= THIS_MODULE
,
1188 .open
= switchtec_dev_open
,
1189 .release
= switchtec_dev_release
,
1190 .write
= switchtec_dev_write
,
1191 .read
= switchtec_dev_read
,
1192 .poll
= switchtec_dev_poll
,
1193 .unlocked_ioctl
= switchtec_dev_ioctl
,
1194 .compat_ioctl
= compat_ptr_ioctl
,
1197 static void link_event_work(struct work_struct
*work
)
1199 struct switchtec_dev
*stdev
;
1201 stdev
= container_of(work
, struct switchtec_dev
, link_event_work
);
1203 if (stdev
->link_notifier
)
1204 stdev
->link_notifier(stdev
);
1207 static void check_link_state_events(struct switchtec_dev
*stdev
)
1214 for (idx
= 0; idx
< stdev
->pff_csr_count
; idx
++) {
1215 reg
= ioread32(&stdev
->mmio_pff_csr
[idx
].link_state_hdr
);
1216 dev_dbg(&stdev
->dev
, "link_state: %d->%08x\n", idx
, reg
);
1217 count
= (reg
>> 5) & 0xFF;
1219 if (count
!= stdev
->link_event_count
[idx
]) {
1221 stdev
->link_event_count
[idx
] = count
;
1226 schedule_work(&stdev
->link_event_work
);
1229 static void enable_link_state_events(struct switchtec_dev
*stdev
)
1233 for (idx
= 0; idx
< stdev
->pff_csr_count
; idx
++) {
1234 iowrite32(SWITCHTEC_EVENT_CLEAR
|
1235 SWITCHTEC_EVENT_EN_IRQ
,
1236 &stdev
->mmio_pff_csr
[idx
].link_state_hdr
);
1240 static void enable_dma_mrpc(struct switchtec_dev
*stdev
)
1242 writeq(stdev
->dma_mrpc_dma_addr
, &stdev
->mmio_mrpc
->dma_addr
);
1243 flush_wc_buf(stdev
);
1244 iowrite32(SWITCHTEC_DMA_MRPC_EN
, &stdev
->mmio_mrpc
->dma_en
);
1247 static void stdev_release(struct device
*dev
)
1249 struct switchtec_dev
*stdev
= to_stdev(dev
);
1251 if (stdev
->dma_mrpc
) {
1252 iowrite32(0, &stdev
->mmio_mrpc
->dma_en
);
1253 flush_wc_buf(stdev
);
1254 writeq(0, &stdev
->mmio_mrpc
->dma_addr
);
1255 dma_free_coherent(&stdev
->pdev
->dev
, sizeof(*stdev
->dma_mrpc
),
1256 stdev
->dma_mrpc
, stdev
->dma_mrpc_dma_addr
);
1261 static void stdev_kill(struct switchtec_dev
*stdev
)
1263 struct switchtec_user
*stuser
, *tmpuser
;
1265 pci_clear_master(stdev
->pdev
);
1267 cancel_delayed_work_sync(&stdev
->mrpc_timeout
);
1269 /* Mark the hardware as unavailable and complete all completions */
1270 mutex_lock(&stdev
->mrpc_mutex
);
1271 stdev
->alive
= false;
1273 /* Wake up and kill any users waiting on an MRPC request */
1274 list_for_each_entry_safe(stuser
, tmpuser
, &stdev
->mrpc_queue
, list
) {
1275 complete_all(&stuser
->comp
);
1276 list_del_init(&stuser
->list
);
1280 mutex_unlock(&stdev
->mrpc_mutex
);
1282 /* Wake up any users waiting on event_wq */
1283 wake_up_interruptible(&stdev
->event_wq
);
1286 static struct switchtec_dev
*stdev_create(struct pci_dev
*pdev
)
1288 struct switchtec_dev
*stdev
;
1294 stdev
= kzalloc_node(sizeof(*stdev
), GFP_KERNEL
,
1295 dev_to_node(&pdev
->dev
));
1297 return ERR_PTR(-ENOMEM
);
1299 stdev
->alive
= true;
1301 INIT_LIST_HEAD(&stdev
->mrpc_queue
);
1302 mutex_init(&stdev
->mrpc_mutex
);
1303 stdev
->mrpc_busy
= 0;
1304 INIT_WORK(&stdev
->mrpc_work
, mrpc_event_work
);
1305 INIT_DELAYED_WORK(&stdev
->mrpc_timeout
, mrpc_timeout_work
);
1306 INIT_WORK(&stdev
->link_event_work
, link_event_work
);
1307 init_waitqueue_head(&stdev
->event_wq
);
1308 atomic_set(&stdev
->event_cnt
, 0);
1311 device_initialize(dev
);
1312 dev
->class = switchtec_class
;
1313 dev
->parent
= &pdev
->dev
;
1314 dev
->groups
= switchtec_device_groups
;
1315 dev
->release
= stdev_release
;
1317 minor
= ida_simple_get(&switchtec_minor_ida
, 0, 0,
1324 dev
->devt
= MKDEV(MAJOR(switchtec_devt
), minor
);
1325 dev_set_name(dev
, "switchtec%d", minor
);
1327 cdev
= &stdev
->cdev
;
1328 cdev_init(cdev
, &switchtec_fops
);
1329 cdev
->owner
= THIS_MODULE
;
1334 put_device(&stdev
->dev
);
1338 static int mask_event(struct switchtec_dev
*stdev
, int eid
, int idx
)
1340 size_t off
= event_regs
[eid
].offset
;
1341 u32 __iomem
*hdr_reg
;
1344 hdr_reg
= event_regs
[eid
].map_reg(stdev
, off
, idx
);
1345 hdr
= ioread32(hdr_reg
);
1347 if (!(hdr
& SWITCHTEC_EVENT_OCCURRED
&& hdr
& SWITCHTEC_EVENT_EN_IRQ
))
1350 dev_dbg(&stdev
->dev
, "%s: %d %d %x\n", __func__
, eid
, idx
, hdr
);
1351 hdr
&= ~(SWITCHTEC_EVENT_EN_IRQ
| SWITCHTEC_EVENT_OCCURRED
);
1352 iowrite32(hdr
, hdr_reg
);
1357 static int mask_all_events(struct switchtec_dev
*stdev
, int eid
)
1362 if (event_regs
[eid
].map_reg
== part_ev_reg
) {
1363 for (idx
= 0; idx
< stdev
->partition_count
; idx
++)
1364 count
+= mask_event(stdev
, eid
, idx
);
1365 } else if (event_regs
[eid
].map_reg
== pff_ev_reg
) {
1366 for (idx
= 0; idx
< stdev
->pff_csr_count
; idx
++) {
1367 if (!stdev
->pff_local
[idx
])
1370 count
+= mask_event(stdev
, eid
, idx
);
1373 count
+= mask_event(stdev
, eid
, 0);
1379 static irqreturn_t
switchtec_event_isr(int irq
, void *dev
)
1381 struct switchtec_dev
*stdev
= dev
;
1383 irqreturn_t ret
= IRQ_NONE
;
1384 int eid
, event_count
= 0;
1386 reg
= ioread32(&stdev
->mmio_part_cfg
->mrpc_comp_hdr
);
1387 if (reg
& SWITCHTEC_EVENT_OCCURRED
) {
1388 dev_dbg(&stdev
->dev
, "%s: mrpc comp\n", __func__
);
1390 schedule_work(&stdev
->mrpc_work
);
1391 iowrite32(reg
, &stdev
->mmio_part_cfg
->mrpc_comp_hdr
);
1394 check_link_state_events(stdev
);
1396 for (eid
= 0; eid
< SWITCHTEC_IOCTL_MAX_EVENTS
; eid
++) {
1397 if (eid
== SWITCHTEC_IOCTL_EVENT_LINK_STATE
||
1398 eid
== SWITCHTEC_IOCTL_EVENT_MRPC_COMP
)
1401 event_count
+= mask_all_events(stdev
, eid
);
1405 atomic_inc(&stdev
->event_cnt
);
1406 wake_up_interruptible(&stdev
->event_wq
);
1407 dev_dbg(&stdev
->dev
, "%s: %d events\n", __func__
,
1416 static irqreturn_t
switchtec_dma_mrpc_isr(int irq
, void *dev
)
1418 struct switchtec_dev
*stdev
= dev
;
1419 irqreturn_t ret
= IRQ_NONE
;
1421 iowrite32(SWITCHTEC_EVENT_CLEAR
|
1422 SWITCHTEC_EVENT_EN_IRQ
,
1423 &stdev
->mmio_part_cfg
->mrpc_comp_hdr
);
1424 schedule_work(&stdev
->mrpc_work
);
1430 static int switchtec_init_isr(struct switchtec_dev
*stdev
)
1440 nvecs
= pci_alloc_irq_vectors(stdev
->pdev
, 1, nirqs
,
1441 PCI_IRQ_MSIX
| PCI_IRQ_MSI
|
1446 event_irq
= ioread16(&stdev
->mmio_part_cfg
->vep_vector_number
);
1447 if (event_irq
< 0 || event_irq
>= nvecs
)
1450 event_irq
= pci_irq_vector(stdev
->pdev
, event_irq
);
1454 rc
= devm_request_irq(&stdev
->pdev
->dev
, event_irq
,
1455 switchtec_event_isr
, 0,
1456 KBUILD_MODNAME
, stdev
);
1461 if (!stdev
->dma_mrpc
)
1464 dma_mrpc_irq
= ioread32(&stdev
->mmio_mrpc
->dma_vector
);
1465 if (dma_mrpc_irq
< 0 || dma_mrpc_irq
>= nvecs
)
1468 dma_mrpc_irq
= pci_irq_vector(stdev
->pdev
, dma_mrpc_irq
);
1469 if (dma_mrpc_irq
< 0)
1470 return dma_mrpc_irq
;
1472 rc
= devm_request_irq(&stdev
->pdev
->dev
, dma_mrpc_irq
,
1473 switchtec_dma_mrpc_isr
, 0,
1474 KBUILD_MODNAME
, stdev
);
1479 static void init_pff(struct switchtec_dev
*stdev
)
1483 struct part_cfg_regs
*pcfg
= stdev
->mmio_part_cfg
;
1485 for (i
= 0; i
< SWITCHTEC_MAX_PFF_CSR
; i
++) {
1486 reg
= ioread16(&stdev
->mmio_pff_csr
[i
].vendor_id
);
1487 if (reg
!= PCI_VENDOR_ID_MICROSEMI
)
1491 stdev
->pff_csr_count
= i
;
1493 reg
= ioread32(&pcfg
->usp_pff_inst_id
);
1494 if (reg
< stdev
->pff_csr_count
)
1495 stdev
->pff_local
[reg
] = 1;
1497 reg
= ioread32(&pcfg
->vep_pff_inst_id
);
1498 if (reg
< stdev
->pff_csr_count
)
1499 stdev
->pff_local
[reg
] = 1;
1501 for (i
= 0; i
< ARRAY_SIZE(pcfg
->dsp_pff_inst_id
); i
++) {
1502 reg
= ioread32(&pcfg
->dsp_pff_inst_id
[i
]);
1503 if (reg
< stdev
->pff_csr_count
)
1504 stdev
->pff_local
[reg
] = 1;
1508 static int switchtec_init_pci(struct switchtec_dev
*stdev
,
1509 struct pci_dev
*pdev
)
1513 unsigned long res_start
, res_len
;
1514 u32 __iomem
*part_id
;
1516 rc
= pcim_enable_device(pdev
);
1520 rc
= dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(64));
1524 pci_set_master(pdev
);
1526 res_start
= pci_resource_start(pdev
, 0);
1527 res_len
= pci_resource_len(pdev
, 0);
1529 if (!devm_request_mem_region(&pdev
->dev
, res_start
,
1530 res_len
, KBUILD_MODNAME
))
1533 stdev
->mmio_mrpc
= devm_ioremap_wc(&pdev
->dev
, res_start
,
1534 SWITCHTEC_GAS_TOP_CFG_OFFSET
);
1535 if (!stdev
->mmio_mrpc
)
1538 map
= devm_ioremap(&pdev
->dev
,
1539 res_start
+ SWITCHTEC_GAS_TOP_CFG_OFFSET
,
1540 res_len
- SWITCHTEC_GAS_TOP_CFG_OFFSET
);
1544 stdev
->mmio
= map
- SWITCHTEC_GAS_TOP_CFG_OFFSET
;
1545 stdev
->mmio_sw_event
= stdev
->mmio
+ SWITCHTEC_GAS_SW_EVENT_OFFSET
;
1546 stdev
->mmio_sys_info
= stdev
->mmio
+ SWITCHTEC_GAS_SYS_INFO_OFFSET
;
1547 stdev
->mmio_flash_info
= stdev
->mmio
+ SWITCHTEC_GAS_FLASH_INFO_OFFSET
;
1548 stdev
->mmio_ntb
= stdev
->mmio
+ SWITCHTEC_GAS_NTB_OFFSET
;
1550 if (stdev
->gen
== SWITCHTEC_GEN3
)
1551 part_id
= &stdev
->mmio_sys_info
->gen3
.partition_id
;
1552 else if (stdev
->gen
== SWITCHTEC_GEN4
)
1553 part_id
= &stdev
->mmio_sys_info
->gen4
.partition_id
;
1557 stdev
->partition
= ioread8(part_id
);
1558 stdev
->partition_count
= ioread8(&stdev
->mmio_ntb
->partition_count
);
1559 stdev
->mmio_part_cfg_all
= stdev
->mmio
+ SWITCHTEC_GAS_PART_CFG_OFFSET
;
1560 stdev
->mmio_part_cfg
= &stdev
->mmio_part_cfg_all
[stdev
->partition
];
1561 stdev
->mmio_pff_csr
= stdev
->mmio
+ SWITCHTEC_GAS_PFF_CSR_OFFSET
;
1563 if (stdev
->partition_count
< 1)
1564 stdev
->partition_count
= 1;
1568 pci_set_drvdata(pdev
, stdev
);
1573 if (ioread32(&stdev
->mmio_mrpc
->dma_ver
) == 0)
1576 stdev
->dma_mrpc
= dma_alloc_coherent(&stdev
->pdev
->dev
,
1577 sizeof(*stdev
->dma_mrpc
),
1578 &stdev
->dma_mrpc_dma_addr
,
1580 if (stdev
->dma_mrpc
== NULL
)
1586 static int switchtec_pci_probe(struct pci_dev
*pdev
,
1587 const struct pci_device_id
*id
)
1589 struct switchtec_dev
*stdev
;
1592 if (pdev
->class == (PCI_CLASS_BRIDGE_OTHER
<< 8))
1593 request_module_nowait("ntb_hw_switchtec");
1595 stdev
= stdev_create(pdev
);
1597 return PTR_ERR(stdev
);
1599 stdev
->gen
= id
->driver_data
;
1601 rc
= switchtec_init_pci(stdev
, pdev
);
1605 rc
= switchtec_init_isr(stdev
);
1607 dev_err(&stdev
->dev
, "failed to init isr.\n");
1611 iowrite32(SWITCHTEC_EVENT_CLEAR
|
1612 SWITCHTEC_EVENT_EN_IRQ
,
1613 &stdev
->mmio_part_cfg
->mrpc_comp_hdr
);
1614 enable_link_state_events(stdev
);
1616 if (stdev
->dma_mrpc
)
1617 enable_dma_mrpc(stdev
);
1619 rc
= cdev_device_add(&stdev
->cdev
, &stdev
->dev
);
1623 dev_info(&stdev
->dev
, "Management device registered.\n");
1630 ida_simple_remove(&switchtec_minor_ida
, MINOR(stdev
->dev
.devt
));
1631 put_device(&stdev
->dev
);
1635 static void switchtec_pci_remove(struct pci_dev
*pdev
)
1637 struct switchtec_dev
*stdev
= pci_get_drvdata(pdev
);
1639 pci_set_drvdata(pdev
, NULL
);
1641 cdev_device_del(&stdev
->cdev
, &stdev
->dev
);
1642 ida_simple_remove(&switchtec_minor_ida
, MINOR(stdev
->dev
.devt
));
1643 dev_info(&stdev
->dev
, "unregistered.\n");
1645 put_device(&stdev
->dev
);
1648 #define SWITCHTEC_PCI_DEVICE(device_id, gen) \
1650 .vendor = PCI_VENDOR_ID_MICROSEMI, \
1651 .device = device_id, \
1652 .subvendor = PCI_ANY_ID, \
1653 .subdevice = PCI_ANY_ID, \
1654 .class = (PCI_CLASS_MEMORY_OTHER << 8), \
1655 .class_mask = 0xFFFFFFFF, \
1656 .driver_data = gen, \
1659 .vendor = PCI_VENDOR_ID_MICROSEMI, \
1660 .device = device_id, \
1661 .subvendor = PCI_ANY_ID, \
1662 .subdevice = PCI_ANY_ID, \
1663 .class = (PCI_CLASS_BRIDGE_OTHER << 8), \
1664 .class_mask = 0xFFFFFFFF, \
1665 .driver_data = gen, \
1668 static const struct pci_device_id switchtec_pci_tbl
[] = {
1669 SWITCHTEC_PCI_DEVICE(0x8531, SWITCHTEC_GEN3
), //PFX 24xG3
1670 SWITCHTEC_PCI_DEVICE(0x8532, SWITCHTEC_GEN3
), //PFX 32xG3
1671 SWITCHTEC_PCI_DEVICE(0x8533, SWITCHTEC_GEN3
), //PFX 48xG3
1672 SWITCHTEC_PCI_DEVICE(0x8534, SWITCHTEC_GEN3
), //PFX 64xG3
1673 SWITCHTEC_PCI_DEVICE(0x8535, SWITCHTEC_GEN3
), //PFX 80xG3
1674 SWITCHTEC_PCI_DEVICE(0x8536, SWITCHTEC_GEN3
), //PFX 96xG3
1675 SWITCHTEC_PCI_DEVICE(0x8541, SWITCHTEC_GEN3
), //PSX 24xG3
1676 SWITCHTEC_PCI_DEVICE(0x8542, SWITCHTEC_GEN3
), //PSX 32xG3
1677 SWITCHTEC_PCI_DEVICE(0x8543, SWITCHTEC_GEN3
), //PSX 48xG3
1678 SWITCHTEC_PCI_DEVICE(0x8544, SWITCHTEC_GEN3
), //PSX 64xG3
1679 SWITCHTEC_PCI_DEVICE(0x8545, SWITCHTEC_GEN3
), //PSX 80xG3
1680 SWITCHTEC_PCI_DEVICE(0x8546, SWITCHTEC_GEN3
), //PSX 96xG3
1681 SWITCHTEC_PCI_DEVICE(0x8551, SWITCHTEC_GEN3
), //PAX 24XG3
1682 SWITCHTEC_PCI_DEVICE(0x8552, SWITCHTEC_GEN3
), //PAX 32XG3
1683 SWITCHTEC_PCI_DEVICE(0x8553, SWITCHTEC_GEN3
), //PAX 48XG3
1684 SWITCHTEC_PCI_DEVICE(0x8554, SWITCHTEC_GEN3
), //PAX 64XG3
1685 SWITCHTEC_PCI_DEVICE(0x8555, SWITCHTEC_GEN3
), //PAX 80XG3
1686 SWITCHTEC_PCI_DEVICE(0x8556, SWITCHTEC_GEN3
), //PAX 96XG3
1687 SWITCHTEC_PCI_DEVICE(0x8561, SWITCHTEC_GEN3
), //PFXL 24XG3
1688 SWITCHTEC_PCI_DEVICE(0x8562, SWITCHTEC_GEN3
), //PFXL 32XG3
1689 SWITCHTEC_PCI_DEVICE(0x8563, SWITCHTEC_GEN3
), //PFXL 48XG3
1690 SWITCHTEC_PCI_DEVICE(0x8564, SWITCHTEC_GEN3
), //PFXL 64XG3
1691 SWITCHTEC_PCI_DEVICE(0x8565, SWITCHTEC_GEN3
), //PFXL 80XG3
1692 SWITCHTEC_PCI_DEVICE(0x8566, SWITCHTEC_GEN3
), //PFXL 96XG3
1693 SWITCHTEC_PCI_DEVICE(0x8571, SWITCHTEC_GEN3
), //PFXI 24XG3
1694 SWITCHTEC_PCI_DEVICE(0x8572, SWITCHTEC_GEN3
), //PFXI 32XG3
1695 SWITCHTEC_PCI_DEVICE(0x8573, SWITCHTEC_GEN3
), //PFXI 48XG3
1696 SWITCHTEC_PCI_DEVICE(0x8574, SWITCHTEC_GEN3
), //PFXI 64XG3
1697 SWITCHTEC_PCI_DEVICE(0x8575, SWITCHTEC_GEN3
), //PFXI 80XG3
1698 SWITCHTEC_PCI_DEVICE(0x8576, SWITCHTEC_GEN3
), //PFXI 96XG3
1699 SWITCHTEC_PCI_DEVICE(0x4000, SWITCHTEC_GEN4
), //PFX 100XG4
1700 SWITCHTEC_PCI_DEVICE(0x4084, SWITCHTEC_GEN4
), //PFX 84XG4
1701 SWITCHTEC_PCI_DEVICE(0x4068, SWITCHTEC_GEN4
), //PFX 68XG4
1702 SWITCHTEC_PCI_DEVICE(0x4052, SWITCHTEC_GEN4
), //PFX 52XG4
1703 SWITCHTEC_PCI_DEVICE(0x4036, SWITCHTEC_GEN4
), //PFX 36XG4
1704 SWITCHTEC_PCI_DEVICE(0x4028, SWITCHTEC_GEN4
), //PFX 28XG4
1705 SWITCHTEC_PCI_DEVICE(0x4100, SWITCHTEC_GEN4
), //PSX 100XG4
1706 SWITCHTEC_PCI_DEVICE(0x4184, SWITCHTEC_GEN4
), //PSX 84XG4
1707 SWITCHTEC_PCI_DEVICE(0x4168, SWITCHTEC_GEN4
), //PSX 68XG4
1708 SWITCHTEC_PCI_DEVICE(0x4152, SWITCHTEC_GEN4
), //PSX 52XG4
1709 SWITCHTEC_PCI_DEVICE(0x4136, SWITCHTEC_GEN4
), //PSX 36XG4
1710 SWITCHTEC_PCI_DEVICE(0x4128, SWITCHTEC_GEN4
), //PSX 28XG4
1711 SWITCHTEC_PCI_DEVICE(0x4200, SWITCHTEC_GEN4
), //PAX 100XG4
1712 SWITCHTEC_PCI_DEVICE(0x4284, SWITCHTEC_GEN4
), //PAX 84XG4
1713 SWITCHTEC_PCI_DEVICE(0x4268, SWITCHTEC_GEN4
), //PAX 68XG4
1714 SWITCHTEC_PCI_DEVICE(0x4252, SWITCHTEC_GEN4
), //PAX 52XG4
1715 SWITCHTEC_PCI_DEVICE(0x4236, SWITCHTEC_GEN4
), //PAX 36XG4
1716 SWITCHTEC_PCI_DEVICE(0x4228, SWITCHTEC_GEN4
), //PAX 28XG4
1719 MODULE_DEVICE_TABLE(pci
, switchtec_pci_tbl
);
1721 static struct pci_driver switchtec_pci_driver
= {
1722 .name
= KBUILD_MODNAME
,
1723 .id_table
= switchtec_pci_tbl
,
1724 .probe
= switchtec_pci_probe
,
1725 .remove
= switchtec_pci_remove
,
1728 static int __init
switchtec_init(void)
1732 rc
= alloc_chrdev_region(&switchtec_devt
, 0, max_devices
,
1737 switchtec_class
= class_create(THIS_MODULE
, "switchtec");
1738 if (IS_ERR(switchtec_class
)) {
1739 rc
= PTR_ERR(switchtec_class
);
1740 goto err_create_class
;
1743 rc
= pci_register_driver(&switchtec_pci_driver
);
1745 goto err_pci_register
;
1747 pr_info(KBUILD_MODNAME
": loaded.\n");
1752 class_destroy(switchtec_class
);
1755 unregister_chrdev_region(switchtec_devt
, max_devices
);
1759 module_init(switchtec_init
);
1761 static void __exit
switchtec_exit(void)
1763 pci_unregister_driver(&switchtec_pci_driver
);
1764 class_destroy(switchtec_class
);
1765 unregister_chrdev_region(switchtec_devt
, max_devices
);
1766 ida_destroy(&switchtec_minor_ida
);
1768 pr_info(KBUILD_MODNAME
": unloaded.\n");
1770 module_exit(switchtec_exit
);