1/*-
2 * SPDX-License-Identifier: BSD-3-Clause
3 *
4 * Copyright (c) 2011, Justin Hibbits.
5 * Copyright (c) 2002, Miodrag Vallat.
6 * Copyright (C) 1999 Tsubai Masanari.  All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 *    notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 * 3. The name of the author may not be used to endorse or promote products
17 *    derived from this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 * OpenBSD: abtn.c,v 1.12 2009/01/10 18:00:59 robert Exp
31 * NetBSD: abtn.c,v 1.1 1999/07/12 17:48:26 tsubai Exp
32 *
33 * $FreeBSD$
34 */
35
36#include <sys/param.h>
37#include <sys/systm.h>
38#include <sys/module.h>
39#include <sys/kernel.h>
40#include <sys/bus.h>
41
42#include <machine/bus.h>
43
44#include <dev/ofw/openfirm.h>
45#include <machine/ofw_machdep.h>
46
47#include <dev/adb/adb.h>
48
49#define ABTN_HANDLER_ID 31
50
51struct abtn_softc {
52	device_t sc_dev;
53
54	int handler_id;
55};
56
57static int abtn_probe(device_t dev);
58static int abtn_attach(device_t dev);
59static u_int abtn_receive_packet(device_t dev, u_char status,
60    u_char command, u_char reg, int len, u_char *data);
61
62static device_method_t abtn_methods[] = {
63	/* Device interface */
64	DEVMETHOD(device_probe,         abtn_probe),
65        DEVMETHOD(device_attach,        abtn_attach),
66        DEVMETHOD(device_shutdown,      bus_generic_shutdown),
67        DEVMETHOD(device_suspend,       bus_generic_suspend),
68        DEVMETHOD(device_resume,        bus_generic_resume),
69
70	/* ADB interface */
71	DEVMETHOD(adb_receive_packet,	abtn_receive_packet),
72
73	{ 0, 0 }
74};
75
76static driver_t abtn_driver = {
77	"abtn",
78	abtn_methods,
79	sizeof(struct abtn_softc),
80};
81
82static devclass_t abtn_devclass;
83
84DRIVER_MODULE(abtn, adb, abtn_driver, abtn_devclass, 0, 0);
85
86static int
87abtn_probe(device_t dev)
88{
89	uint8_t type;
90
91	type = adb_get_device_type(dev);
92
93	if (type != ADB_DEVICE_MISC)
94		return (ENXIO);
95
96	device_set_desc(dev, "ADB Brightness/Volume/Eject Buttons");
97	return (0);
98}
99
100static int
101abtn_attach(device_t dev)
102{
103	struct abtn_softc *sc;
104
105	sc = device_get_softc(dev);
106	sc->sc_dev = dev;
107
108	sc->handler_id = adb_get_device_handler(dev);
109
110	return 0;
111}
112
113static u_int
114abtn_receive_packet(device_t dev, u_char status,
115    u_char command, u_char reg, int len, u_char *data)
116{
117	u_int cmd;
118
119	cmd = data[0];
120
121	switch (cmd) {
122	case 0x0a:	/* decrease brightness */
123		devctl_notify("PMU", "keys", "brightness",
124		    "notify=down");
125		break;
126
127	case 0x09:	/* increase brightness */
128		devctl_notify("PMU", "keys", "brightness", "notify=up");
129		break;
130
131	case 0x08:	/* mute */
132	case 0x01:	/* mute, AV hardware */
133		devctl_notify("PMU", "keys", "mute", NULL);
134		break;
135	case 0x07:	/* decrease volume */
136	case 0x02:	/* decrease volume, AV hardware */
137		devctl_notify("PMU", "keys", "volume", "notify=down");
138		break;
139	case 0x06:	/* increase volume */
140	case 0x03:	/* increase volume, AV hardware */
141		devctl_notify("PMU", "keys", "volume", "notify=up");
142		break;
143	case 0x0c:	/* mirror display key */
144		/* Need callback to do something with this */
145		break;
146	case 0x0b:	/* eject tray */
147		devctl_notify("PMU", "keys", "eject", NULL);
148		break;
149	case 0x7f:	/* numlock */
150		/* Need callback to do something with this */
151		break;
152
153	default:
154#ifdef DEBUG
155		if ((cmd & ~0x7f) == 0)
156			device_printf(dev, "unknown ADB button 0x%x\n", cmd);
157#endif
158		break;
159	}
160	return 0;
161}
162
163