blob: c98cf52d78d19331adea46fc12cff94034f25b6b [file] [log] [blame]
Sebastian Ottf30664e2012-08-28 16:50:38 +02001/*
2 * Device driver for s390 storage class memory.
3 *
4 * Copyright IBM Corp. 2012
5 * Author(s): Sebastian Ott <sebott@linux.vnet.ibm.com>
6 */
7
8#define KMSG_COMPONENT "scm_block"
9#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
10
11#include <linux/module.h>
Sebastian Ottf30664e2012-08-28 16:50:38 +020012#include <linux/slab.h>
13#include <asm/eadm.h>
14#include "scm_blk.h"
15
Sebastian Ott93481c92013-02-28 12:07:38 +010016static void scm_notify(struct scm_device *scmdev, enum scm_event event)
Sebastian Ottf30664e2012-08-28 16:50:38 +020017{
Sebastian Ottaebfa662013-02-28 12:07:55 +010018 struct scm_blk_dev *bdev = dev_get_drvdata(&scmdev->dev);
19
Sebastian Ott93481c92013-02-28 12:07:38 +010020 switch (event) {
21 case SCM_CHANGE:
Sebastian Ott3bff6032013-03-18 16:01:30 +010022 pr_info("%lx: The capabilities of the SCM increment changed\n",
Sebastian Ott93481c92013-02-28 12:07:38 +010023 (unsigned long) scmdev->address);
24 SCM_LOG(2, "State changed");
25 SCM_LOG_STATE(2, scmdev);
26 break;
Sebastian Ottaebfa662013-02-28 12:07:55 +010027 case SCM_AVAIL:
28 SCM_LOG(2, "Increment available");
29 SCM_LOG_STATE(2, scmdev);
30 scm_blk_set_available(bdev);
31 break;
Sebastian Ott93481c92013-02-28 12:07:38 +010032 }
Sebastian Ottf30664e2012-08-28 16:50:38 +020033}
34
35static int scm_probe(struct scm_device *scmdev)
36{
37 struct scm_blk_dev *bdev;
38 int ret;
39
40 SCM_LOG(2, "probe");
41 SCM_LOG_STATE(2, scmdev);
42
43 if (scmdev->attrs.oper_state != OP_STATE_GOOD)
44 return -EINVAL;
45
46 bdev = kzalloc(sizeof(*bdev), GFP_KERNEL);
47 if (!bdev)
48 return -ENOMEM;
49
Sebastian Ottf30664e2012-08-28 16:50:38 +020050 dev_set_drvdata(&scmdev->dev, bdev);
Sebastian Ottf30664e2012-08-28 16:50:38 +020051 ret = scm_blk_dev_setup(bdev, scmdev);
52 if (ret) {
Sebastian Ottf30664e2012-08-28 16:50:38 +020053 dev_set_drvdata(&scmdev->dev, NULL);
Sebastian Ottf30664e2012-08-28 16:50:38 +020054 kfree(bdev);
55 goto out;
56 }
57
58out:
59 return ret;
60}
61
62static int scm_remove(struct scm_device *scmdev)
63{
Sebastian Ottc3e6d402012-09-04 19:36:41 +020064 struct scm_blk_dev *bdev = dev_get_drvdata(&scmdev->dev);
Sebastian Ottf30664e2012-08-28 16:50:38 +020065
Sebastian Ottf30664e2012-08-28 16:50:38 +020066 scm_blk_dev_cleanup(bdev);
Sebastian Ott24996ed2012-09-04 19:37:51 +020067 dev_set_drvdata(&scmdev->dev, NULL);
Sebastian Ottf30664e2012-08-28 16:50:38 +020068 kfree(bdev);
69
70 return 0;
71}
72
73static struct scm_driver scm_drv = {
74 .drv = {
75 .name = "scm_block",
76 .owner = THIS_MODULE,
77 },
Sebastian Ott93481c92013-02-28 12:07:38 +010078 .notify = scm_notify,
Sebastian Ottf30664e2012-08-28 16:50:38 +020079 .probe = scm_probe,
80 .remove = scm_remove,
81 .handler = scm_blk_irq,
82};
83
84int __init scm_drv_init(void)
85{
86 return scm_driver_register(&scm_drv);
87}
88
89void scm_drv_cleanup(void)
90{
91 scm_driver_unregister(&scm_drv);
92}