hc
2023-11-06 9df731a176aab8e03b984b681b1bea01ccff6644
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
 /*
 * drivers/input/sensors/hall/mh248.c
 *
 * Copyright (C) 2012-2016 Rockchip Co.,Ltd.
 * Author: Bin Yang <yangbin@rock-chips.com>
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */
 
#include <linux/platform_device.h>
#include <linux/interrupt.h>
#include <linux/i2c.h>
#include <linux/slab.h>
#include <linux/irq.h>
#include <linux/miscdevice.h>
#include <linux/gpio.h>
#include <linux/uaccess.h>
#include <linux/atomic.h>
#include <linux/delay.h>
#include <linux/input.h>
#include <linux/workqueue.h>
#include <linux/freezer.h>
#include <linux/of_gpio.h>
#include <linux/sensor-dev.h>
#include <linux/fb.h>
#include <linux/notifier.h>
#include <linux/rk_keys.h>
 
struct mh248_para {
   struct device *dev;
   struct notifier_block fb_notif;
   struct mutex ops_lock;
   int is_suspend;
   int gpio_pin;
   int irq;
   int active_value;
};
 
static int hall_fb_notifier_callback(struct notifier_block *self,
                    unsigned long action, void *data)
{
   struct mh248_para *mh248;
   struct fb_event *event = data;
 
   mh248 = container_of(self, struct mh248_para, fb_notif);
 
   mutex_lock(&mh248->ops_lock);
   if (action == FB_EARLY_EVENT_BLANK) {
       switch (*((int *)event->data)) {
       case FB_BLANK_UNBLANK:
           break;
       default:
           mh248->is_suspend = 1;
           break;
       }
   } else if (action == FB_EVENT_BLANK) {
       switch (*((int *)event->data)) {
       case FB_BLANK_UNBLANK:
           mh248->is_suspend = 0;
           break;
       default:
           break;
       }
   }
   mutex_unlock(&mh248->ops_lock);
 
   return NOTIFY_OK;
}
 
static irqreturn_t hall_mh248_interrupt(int irq, void *dev_id)
{
   struct mh248_para *mh248 = (struct mh248_para *)dev_id;
   int gpio_value = 0;
 
   gpio_value = gpio_get_value(mh248->gpio_pin);
 
   if ((gpio_value != mh248->active_value) &&
       (mh248->is_suspend == 0)) {
       rk_send_power_key(1);
       rk_send_power_key(0);
   } else if ((gpio_value == mh248->active_value) &&
          (mh248->is_suspend == 1)) {
       rk_send_wakeup_key();
   }
 
   return IRQ_HANDLED;
}
 
static int hall_mh248_probe(struct platform_device *pdev)
{
   struct device_node *np = pdev->dev.of_node;
   struct mh248_para *mh248;
   enum of_gpio_flags irq_flags;
   int hallactive = 0;
   int gpio_value = 0;
   int ret = 0;
 
   mh248 = devm_kzalloc(&pdev->dev, sizeof(*mh248), GFP_KERNEL);
   if (!mh248)
       return -ENOMEM;
 
   mh248->dev = &pdev->dev;
 
   mh248->gpio_pin = of_get_named_gpio_flags(np, "irq-gpio",
                   0, &irq_flags);
   if (!gpio_is_valid(mh248->gpio_pin)) {
       dev_err(mh248->dev, "Can not read property irq-gpio\n");
       return mh248->gpio_pin;
   }
   mh248->irq = gpio_to_irq(mh248->gpio_pin);
 
   of_property_read_u32(np, "hall-active", &hallactive);
   mh248->active_value = hallactive;
   mh248->is_suspend = 0;
   mutex_init(&mh248->ops_lock);
 
   ret = devm_gpio_request_one(mh248->dev, mh248->gpio_pin,
                   GPIOF_DIR_IN, "hall_mh248");
   if (ret < 0) {
       dev_err(mh248->dev, "fail to request gpio:%d\n",
           mh248->gpio_pin);
       return ret;
   }
   gpio_value = gpio_get_value(mh248->gpio_pin);
 
   ret = devm_request_threaded_irq(mh248->dev, mh248->irq,
                   NULL, hall_mh248_interrupt,
                   irq_flags | IRQF_NO_SUSPEND | IRQF_ONESHOT,
                   "hall_mh248", mh248);
   if (ret < 0) {
       dev_err(mh248->dev, "request irq(%d) failed, ret=%d\n",
           mh248->irq, ret);
       return ret;
   }
 
   enable_irq_wake(mh248->irq);
   mh248->fb_notif.notifier_call = hall_fb_notifier_callback;
   fb_register_client(&mh248->fb_notif);
   dev_info(mh248->dev, "hall_mh248_probe success.\n");
 
   return 0;
}
 
static const struct of_device_id hall_mh248_match[] = {
   { .compatible = "hall-mh248" },
   { /* Sentinel */ }
};
 
static struct platform_driver hall_mh248_driver = {
   .probe = hall_mh248_probe,
   .driver = {
       .name = "mh248",
       .owner = THIS_MODULE,
       .of_match_table    = hall_mh248_match,
   },
};
 
module_platform_driver(hall_mh248_driver);
 
MODULE_ALIAS("platform:mh248");
MODULE_AUTHOR("Bin Yang <yangbin@rock-chips.com>");
MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("Hall Sensor MH248 driver");