Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 361409
b: refs/heads/master
c: aebfa66
h: refs/heads/master
i:
  361407: b1b5ce9
v: v3
  • Loading branch information
Sebastian Ott authored and Martin Schwidefsky committed Mar 7, 2013
1 parent 07388d5 commit 8572919
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4fa3c019640ef776e393345ed35d9ec5c51aa3c1
refs/heads/master: aebfa669d9fe77876f120d3d9a28fee240fe5a8e
2 changes: 1 addition & 1 deletion trunk/arch/s390/include/asm/eadm.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ struct scm_device {
#define OP_STATE_TEMP_ERR 2
#define OP_STATE_PERM_ERR 3

enum scm_event {SCM_CHANGE};
enum scm_event {SCM_CHANGE, SCM_AVAIL};

struct scm_driver {
struct device_driver drv;
Expand Down
7 changes: 7 additions & 0 deletions trunk/drivers/s390/block/scm_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,20 @@

static void scm_notify(struct scm_device *scmdev, enum scm_event event)
{
struct scm_blk_dev *bdev = dev_get_drvdata(&scmdev->dev);

switch (event) {
case SCM_CHANGE:
pr_info("%lu: The capabilities of the SCM increment changed\n",
(unsigned long) scmdev->address);
SCM_LOG(2, "State changed");
SCM_LOG_STATE(2, scmdev);
break;
case SCM_AVAIL:
SCM_LOG(2, "Increment available");
SCM_LOG_STATE(2, scmdev);
scm_blk_set_available(bdev);
break;
}
}

Expand Down
17 changes: 17 additions & 0 deletions trunk/drivers/s390/cio/chsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,20 @@ static void chsc_process_sei_scm_change(struct chsc_sei_nt0_area *sei_area)
" failed (rc=%d).\n", ret);
}

static void chsc_process_sei_scm_avail(struct chsc_sei_nt0_area *sei_area)
{
int ret;

CIO_CRW_EVENT(4, "chsc: scm available information\n");
if (sei_area->rs != 7)
return;

ret = scm_process_availability_information();
if (ret)
CIO_CRW_EVENT(0, "chsc: process availability information"
" failed (rc=%d).\n", ret);
}

static void chsc_process_sei_nt2(struct chsc_sei_nt2_area *sei_area)
{
switch (sei_area->cc) {
Expand Down Expand Up @@ -468,6 +482,9 @@ static void chsc_process_sei_nt0(struct chsc_sei_nt0_area *sei_area)
case 12: /* scm change notification */
chsc_process_sei_scm_change(sei_area);
break;
case 14: /* scm available notification */
chsc_process_sei_scm_avail(sei_area);
break;
default: /* other stuff */
CIO_CRW_EVENT(2, "chsc: sei nt0 unhandled cc=%d\n",
sei_area->cc);
Expand Down
2 changes: 2 additions & 0 deletions trunk/drivers/s390/cio/chsc.h
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,10 @@ int chsc_scm_info(struct chsc_scm_info *scm_area, u64 token);

#ifdef CONFIG_SCM_BUS
int scm_update_information(void);
int scm_process_availability_information(void);
#else /* CONFIG_SCM_BUS */
static inline int scm_update_information(void) { return 0; }
static inline int scm_process_availability_information(void) { return 0; }
#endif /* CONFIG_SCM_BUS */


Expand Down
16 changes: 16 additions & 0 deletions trunk/drivers/s390/cio/scm.c
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,22 @@ int scm_update_information(void)
return ret;
}

static int scm_dev_avail(struct device *dev, void *unused)
{
struct scm_driver *scmdrv = to_scm_drv(dev->driver);
struct scm_device *scmdev = to_scm_dev(dev);

if (dev->driver && scmdrv->notify)
scmdrv->notify(scmdev, SCM_AVAIL);

return 0;
}

int scm_process_availability_information(void)
{
return bus_for_each_dev(&scm_bus_type, NULL, NULL, scm_dev_avail);
}

static int __init scm_init(void)
{
int ret;
Expand Down

0 comments on commit 8572919

Please sign in to comment.