hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// SPDX-License-Identifier: GPL-2.0
/*
 * arch/sh/boards/renesas/r7780rp/psw.c
 *
 * push switch support for RDBRP-1/RDBREVRP-1 debug boards.
 *
 * Copyright (C) 2006  Paul Mundt
 */
#include <linux/io.h>
#include <linux/module.h>
#include <linux/interrupt.h>
#include <linux/platform_device.h>
#include <mach/highlander.h>
#include <asm/push-switch.h>
 
static irqreturn_t psw_irq_handler(int irq, void *arg)
{
   struct platform_device *pdev = arg;
   struct push_switch *psw = platform_get_drvdata(pdev);
   struct push_switch_platform_info *psw_info = pdev->dev.platform_data;
   unsigned int l, mask;
   int ret = 0;
 
   l = __raw_readw(PA_DBSW);
 
   /* Nothing to do if there's no state change */
   if (psw->state) {
       ret = 1;
       goto out;
   }
 
   mask = l & 0x70;
   /* Figure out who raised it */
   if (mask & (1 << psw_info->bit)) {
       psw->state = !!(mask & (1 << psw_info->bit));
       if (psw->state)    /* debounce */
           mod_timer(&psw->debounce, jiffies + 50);
 
       ret = 1;
   }
 
out:
   /* Clear the switch IRQs */
   l |= (0x7 << 12);
   __raw_writew(l, PA_DBSW);
 
   return IRQ_RETVAL(ret);
}
 
static struct resource psw_resources[] = {
   [0] = {
       .start    = IRQ_PSW,
       .flags    = IORESOURCE_IRQ,
   },
};
 
static struct push_switch_platform_info s2_platform_data = {
   .name        = "s2",
   .bit        = 6,
   .irq_flags    = IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING |
             IRQF_SHARED,
   .irq_handler    = psw_irq_handler,
};
 
static struct platform_device s2_switch_device = {
   .name        = "push-switch",
   .id        = 0,
   .num_resources    = ARRAY_SIZE(psw_resources),
   .resource    = psw_resources,
   .dev        = {
       .platform_data = &s2_platform_data,
   },
};
 
static struct push_switch_platform_info s3_platform_data = {
   .name        = "s3",
   .bit        = 5,
   .irq_flags    = IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING |
             IRQF_SHARED,
   .irq_handler    = psw_irq_handler,
};
 
static struct platform_device s3_switch_device = {
   .name        = "push-switch",
   .id        = 1,
   .num_resources    = ARRAY_SIZE(psw_resources),
   .resource    = psw_resources,
   .dev        = {
       .platform_data = &s3_platform_data,
   },
};
 
static struct push_switch_platform_info s4_platform_data = {
   .name        = "s4",
   .bit        = 4,
   .irq_flags    = IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING |
             IRQF_SHARED,
   .irq_handler    = psw_irq_handler,
};
 
static struct platform_device s4_switch_device = {
   .name        = "push-switch",
   .id        = 2,
   .num_resources    = ARRAY_SIZE(psw_resources),
   .resource    = psw_resources,
   .dev        = {
       .platform_data = &s4_platform_data,
   },
};
 
static struct platform_device *psw_devices[] = {
   &s2_switch_device, &s3_switch_device, &s4_switch_device,
};
 
static int __init psw_init(void)
{
   return platform_add_devices(psw_devices, ARRAY_SIZE(psw_devices));
}
module_init(psw_init);