+static ssize_t show_debounce_delay(struct device *dev, struct device_attribute *attr, char *buf)
+{
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ return snprintf(buf, PAGE_SIZE, "%ld\n", (gpio_evmi->debounce_delay.tv.nsec / NSEC_PER_MSEC));
+}
+
+static void set_debounce_delay(long delay)
+{
+ if (gpio_evmi->debounce_delay.tv.nsec != delay * NSEC_PER_MSEC) {
+ printk(KERN_INFO PREFIX "Changing debounce_delay\n");
+ gpio_evmi->debounce_delay.tv.nsec = delay * NSEC_PER_MSEC;
+ debounce_delay = delay;
+ printk(KERN_INFO PREFIX "debounce_delay: %u\n", gpio_evmi->debounce_delay.tv.nsec);
+ }
+
+ if (gpio_evmi->debounce_delay.tv.nsec != 0) {
+ if (!(gpio_evmi->flags & GPIOKPF_DEBOUNCE)) {
+ printk(KERN_INFO PREFIX "Activating debounce\n");
+ gpio_evmi->flags |= GPIOKPF_DEBOUNCE;
+ }
+ } else {
+ if (gpio_evmi->flags & GPIOKPF_DEBOUNCE) {
+ printk(KERN_INFO PREFIX "Deactivating debounce\n");
+ gpio_evmi->flags &= ~GPIOKPF_DEBOUNCE;
+ }
+ }
+}
+
+static ssize_t store_debounce_delay(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
+{
+ long int delay;
+
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ sscanf(buf, "%ld", &delay);
+ set_debounce_delay(delay);
+
+ return strnlen(buf, PAGE_SIZE);
+}
+
+static ssize_t show_settle_time(struct device *dev, struct device_attribute *attr, char *buf)
+{
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ return snprintf(buf, PAGE_SIZE, "%ld\n", (gpio_evmi->settle_time.tv.nsec / NSEC_PER_USEC));
+}
+
+static ssize_t store_settle_time(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
+{
+ long int delay;
+
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ sscanf(buf, "%ld", &delay);
+ gpio_evmi->settle_time.tv.nsec = delay * NSEC_PER_USEC;
+
+ return strnlen(buf, PAGE_SIZE);
+}
+
+static ssize_t show_poll_time(struct device *dev, struct device_attribute *attr, char *buf)
+{
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ return snprintf(buf, PAGE_SIZE, "%ld\n", (gpio_evmi->poll_time.tv.nsec / NSEC_PER_MSEC));
+}
+
+static ssize_t store_poll_time(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
+{
+ long int delay;
+
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ sscanf(buf, "%ld", &delay);
+ gpio_evmi->poll_time.tv.nsec = delay * NSEC_PER_MSEC;
+
+ return strnlen(buf, PAGE_SIZE);
+}
+
+static ssize_t show_flags(struct device *dev, struct device_attribute *attr, char *buf)
+{
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ return snprintf(buf, PAGE_SIZE, "0x%x\n", gpio_evmi->flags);
+}
+
+static ssize_t store_flags(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
+{
+ unsigned flags;
+
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ sscanf(buf, "0x%x", &flags);
+ gpio_evmi->flags = flags;
+
+ return strnlen(buf, PAGE_SIZE);
+}
+
+static DEVICE_ATTR(debounce_delay, (S_IRUGO | S_IWUGO), &show_debounce_delay, store_debounce_delay);
+static DEVICE_ATTR(settle_time, (S_IRUGO | S_IWUGO), &show_settle_time, store_settle_time);
+static DEVICE_ATTR(poll_time, (S_IRUGO | S_IWUGO), &show_poll_time, store_poll_time);
+static DEVICE_ATTR(flags, (S_IRUGO | S_IWUGO), &show_flags, store_flags);
+
+static void debounce_release(struct device *dev)
+{
+}
+
+static struct device debounce_device = {
+ .init_name = "debounce",
+ .release = debounce_release,
+};
+