1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * atlas_btns.c - Atlas Wallmount Touchscreen ACPI Extras
5 * Copyright (C) 2006 Jaya Kumar
6 * Based on Toshiba ACPI by John Belmonte and ASUS ACPI
7 * This work was sponsored by CIS(M) Sdn Bhd.
10 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/input.h>
15 #include <linux/types.h>
16 #include <linux/acpi.h>
17 #include <linux/uaccess.h>
19 #define ACPI_ATLAS_NAME "Atlas ACPI"
20 #define ACPI_ATLAS_CLASS "Atlas"
22 static unsigned short atlas_keymap
[16];
23 static struct input_dev
*input_dev
;
25 /* button handling code */
26 static acpi_status
acpi_atlas_button_setup(acpi_handle region_handle
,
27 u32 function
, void *handler_context
, void **return_context
)
30 (function
!= ACPI_REGION_DEACTIVATE
) ? handler_context
: NULL
;
35 static acpi_status
acpi_atlas_button_handler(u32 function
,
36 acpi_physical_address address
,
37 u32 bit_width
, u64
*value
,
38 void *handler_context
, void *region_context
)
42 if (function
== ACPI_WRITE
) {
43 int code
= address
& 0x0f;
44 int key_down
= !(address
& 0x10);
46 input_event(input_dev
, EV_MSC
, MSC_SCAN
, code
);
47 input_report_key(input_dev
, atlas_keymap
[code
], key_down
);
48 input_sync(input_dev
);
52 pr_warn("shrugged on unexpected function: function=%x,address=%lx,value=%x\n",
53 function
, (unsigned long)address
, (u32
)*value
);
54 status
= AE_BAD_PARAMETER
;
60 static int atlas_acpi_button_add(struct acpi_device
*device
)
66 input_dev
= input_allocate_device();
68 pr_err("unable to allocate input device\n");
72 input_dev
->name
= "Atlas ACPI button driver";
73 input_dev
->phys
= "ASIM0000/atlas/input0";
74 input_dev
->id
.bustype
= BUS_HOST
;
75 input_dev
->keycode
= atlas_keymap
;
76 input_dev
->keycodesize
= sizeof(unsigned short);
77 input_dev
->keycodemax
= ARRAY_SIZE(atlas_keymap
);
79 input_set_capability(input_dev
, EV_MSC
, MSC_SCAN
);
80 __set_bit(EV_KEY
, input_dev
->evbit
);
81 for (i
= 0; i
< ARRAY_SIZE(atlas_keymap
); i
++) {
83 atlas_keymap
[i
] = KEY_F1
+ i
;
84 __set_bit(KEY_F1
+ i
, input_dev
->keybit
);
86 atlas_keymap
[i
] = KEY_RESERVED
;
89 err
= input_register_device(input_dev
);
91 pr_err("couldn't register input device\n");
92 input_free_device(input_dev
);
96 /* hookup button handler */
97 status
= acpi_install_address_space_handler(device
->handle
,
98 0x81, &acpi_atlas_button_handler
,
99 &acpi_atlas_button_setup
, device
);
100 if (ACPI_FAILURE(status
)) {
101 pr_err("error installing addr spc handler\n");
102 input_unregister_device(input_dev
);
109 static int atlas_acpi_button_remove(struct acpi_device
*device
)
113 status
= acpi_remove_address_space_handler(device
->handle
,
114 0x81, &acpi_atlas_button_handler
);
115 if (ACPI_FAILURE(status
))
116 pr_err("error removing addr spc handler\n");
118 input_unregister_device(input_dev
);
123 static const struct acpi_device_id atlas_device_ids
[] = {
127 MODULE_DEVICE_TABLE(acpi
, atlas_device_ids
);
129 static struct acpi_driver atlas_acpi_driver
= {
130 .name
= ACPI_ATLAS_NAME
,
131 .class = ACPI_ATLAS_CLASS
,
132 .owner
= THIS_MODULE
,
133 .ids
= atlas_device_ids
,
135 .add
= atlas_acpi_button_add
,
136 .remove
= atlas_acpi_button_remove
,
139 module_acpi_driver(atlas_acpi_driver
);
141 MODULE_AUTHOR("Jaya Kumar");
142 MODULE_LICENSE("GPL");
143 MODULE_DESCRIPTION("Atlas button driver");