+static ssize_t store_print_mapped_keys_flag(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
+{
+ unsigned flag;
+
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ sscanf(buf, "%u", &flag);
+
+ if (flag) {
+ gpio_evmi->flags |= GPIOKPF_PRINT_MAPPED_KEYS;
+ } else {
+ gpio_evmi->flags &= ~GPIOKPF_PRINT_MAPPED_KEYS;
+ }
+
+ return count;
+}
+
+static ssize_t show_print_phantom_keys_flag(struct device *dev, struct device_attribute *attr, char *buf)
+{
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ return snprintf(buf, PAGE_SIZE, "%u\n", (gpio_evmi->flags & GPIOKPF_PRINT_PHANTOM_KEYS) ? 1 : 0);
+}
+
+static ssize_t store_print_phantom_keys_flag(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
+{
+ unsigned flag;
+
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ sscanf(buf, "%u", &flag);
+
+ if (flag) {
+ gpio_evmi->flags |= GPIOKPF_PRINT_PHANTOM_KEYS;
+ } else {
+ gpio_evmi->flags &= ~GPIOKPF_PRINT_PHANTOM_KEYS;
+ }
+
+ return count;
+}
+
+static ssize_t show_active_high_flag(struct device *dev, struct device_attribute *attr, char *buf)
+{
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ return snprintf(buf, PAGE_SIZE, "%u\n", (gpio_evmi->flags & GPIOKPF_ACTIVE_HIGH) ? 1 : 0);
+}
+
+static ssize_t store_active_high_flag(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
+{
+ unsigned flag;
+ int i;
+
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ sscanf(buf, "%u", &flag);
+
+ if (flag) {
+ gpio_evmi->flags |= GPIOKPF_ACTIVE_HIGH;
+ for (i = 0x7a; i <= 0x88; i += 2) {
+ __raw_writew(PADCONF_PULL_DOWN, OMAP_CTRL_REGADDR(i));
+ }
+ } else {
+ gpio_evmi->flags &= ~GPIOKPF_ACTIVE_HIGH;
+ for (i = 0x7a; i <= 0x88; i += 2) {
+ __raw_writew(PADCONF_PULL_UP, OMAP_CTRL_REGADDR(i));
+ }
+ }
+
+ set_irq_types();
+
+ return count;
+}
+
+static ssize_t show_level_triggered_irq_flag(struct device *dev, struct device_attribute *attr, char *buf)
+{
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ return snprintf(buf, PAGE_SIZE, "%u\n", (gpio_evmi->flags & GPIOKPF_LEVEL_TRIGGERED_IRQ) ? 1 : 0);
+}
+
+static ssize_t store_level_triggered_irq_flag(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
+{
+ unsigned flag;
+
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ sscanf(buf, "%u", &flag);
+
+ if (flag) {
+ gpio_evmi->flags |= GPIOKPF_LEVEL_TRIGGERED_IRQ;
+ } else {
+ gpio_evmi->flags &= ~GPIOKPF_LEVEL_TRIGGERED_IRQ;
+ }
+
+ set_irq_types();
+
+ return count;
+}
+
+static ssize_t show_drive_inactive_flag(struct device *dev, struct device_attribute *attr, char *buf)
+{
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ return snprintf(buf, PAGE_SIZE, "%u\n", (gpio_evmi->flags & GPIOKPF_DRIVE_INACTIVE) ? 1 : 0);
+}
+
+static ssize_t store_drive_inactive_flag(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
+{
+ unsigned flag;
+
+ if (!gpio_evmi)
+ return -ENODEV;
+
+ sscanf(buf, "%u", &flag);
+
+ if (flag) {
+ gpio_evmi->flags |= GPIOKPF_DRIVE_INACTIVE;
+ } else {
+ gpio_evmi->flags &= ~GPIOKPF_DRIVE_INACTIVE;
+ }
+
+ return count;
+}
+
+static ssize_t show_hw_debounce(struct device *dev, struct device_attribute *attr, char *buf)
+{
+ return snprintf(buf, PAGE_SIZE, "%d\n", hw_debounce);
+}
+
+static ssize_t store_hw_debounce(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
+{
+ int enable;
+
+ sscanf(buf, "%d", &enable);
+
+ if (enable) {
+ hw_debounce_set(1, -1);
+ hw_debounce = 1;
+ }
+ else {
+ hw_debounce_set(-1, 0);
+ hw_debounce_set(0, -1);
+ hw_debounce = 0;
+ hw_debounce_time = 0;
+ }
+
+ return count;
+}
+
+static ssize_t show_hw_debounce_time(struct device *dev, struct device_attribute *attr, char *buf)
+{
+ return snprintf(buf, PAGE_SIZE, "%d\n", hw_debounce_time);
+}
+
+static ssize_t store_hw_debounce_time(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
+{
+ int time;
+
+ sscanf(buf, "%d", &time);
+
+ if ((time < 0) || (time > 0xff))
+ return count;
+
+ if (!hw_debounce)
+ return count;
+
+ hw_debounce_set(-1, time);
+ hw_debounce_time = time;
+
+ return count;
+}
+
+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), show_flags, store_flags);
+static DEVICE_ATTR(debounce_flag, (S_IRUGO | S_IWUGO), show_debounce_flag, store_debounce_flag);
+static DEVICE_ATTR(remove_some_phantom_keys_flag, (S_IRUGO | S_IWUGO), show_remove_some_phantom_keys_flag, store_remove_some_phantom_keys_flag);
+static DEVICE_ATTR(print_unmapped_keys_flag, (S_IRUGO | S_IWUGO), show_print_unmapped_keys_flag, store_print_unmapped_keys_flag);
+static DEVICE_ATTR(print_mapped_keys_flag, (S_IRUGO | S_IWUGO), show_print_mapped_keys_flag, store_print_mapped_keys_flag);
+static DEVICE_ATTR(print_phantom_keys_flag, (S_IRUGO | S_IWUGO), show_print_phantom_keys_flag, store_print_phantom_keys_flag);
+static DEVICE_ATTR(active_high_flag, (S_IRUGO | S_IWUGO), show_active_high_flag, store_active_high_flag);
+static DEVICE_ATTR(level_triggered_irq_flag, (S_IRUGO | S_IWUGO), show_level_triggered_irq_flag, store_level_triggered_irq_flag);
+static DEVICE_ATTR(drive_inactive_flag, (S_IRUGO | S_IWUGO), show_drive_inactive_flag, store_drive_inactive_flag);
+static DEVICE_ATTR(hw_debounce, (S_IRUGO | S_IWUGO), show_hw_debounce, store_hw_debounce);
+static DEVICE_ATTR(hw_debounce_time, (S_IRUGO | S_IWUGO), show_hw_debounce_time, store_hw_debounce_time);
+
+#if 0
+static int debounce_fixup(int index)
+{
+ int ret;
+
+ printk(KERN_INFO PREFIX "key_state_changed: %d, last_key_state_changed: %d, some_keys_pressed: %d\n",
+ gpio_kp_state->key_state_changed,
+ gpio_kp_state->last_key_state_changed,
+ gpio_kp_state->some_keys_pressed);
+
+ ret = old_sw_fixup(index);
+ if (!ret)
+ printk(KERN_INFO PREFIX "Index 0x%x ignored!\n", index);
+
+ return ret;
+}
+#endif