2007-04-30 04:12:42 +02:00
|
|
|
/*
|
2007-11-13 23:52:54 +01:00
|
|
|
* TI ADS7846 / TSC2046 chip emulation.
|
2007-04-30 04:12:42 +02:00
|
|
|
*
|
|
|
|
* Copyright (c) 2006 Openedhand Ltd.
|
|
|
|
* Written by Andrzej Zaborowski <balrog@zabor.org>
|
|
|
|
*
|
|
|
|
* This code is licensed under the GNU GPL v2.
|
2012-01-13 17:44:23 +01:00
|
|
|
*
|
|
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
2007-04-30 04:12:42 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-26 19:17:13 +01:00
|
|
|
#include "qemu/osdep.h"
|
2019-08-12 07:23:42 +02:00
|
|
|
#include "hw/irq.h"
|
2016-01-21 15:15:03 +01:00
|
|
|
#include "hw/ssi/ssi.h"
|
2019-08-12 07:23:45 +02:00
|
|
|
#include "migration/vmstate.h"
|
2019-05-23 16:35:07 +02:00
|
|
|
#include "qemu/module.h"
|
2012-11-28 12:06:30 +01:00
|
|
|
#include "ui/console.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2007-04-30 04:12:42 +02:00
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct ADS7846State {
|
2020-10-12 14:49:55 +02:00
|
|
|
SSIPeripheral ssidev;
|
2007-04-30 04:12:42 +02:00
|
|
|
qemu_irq interrupt;
|
|
|
|
|
|
|
|
int input[8];
|
|
|
|
int pressure;
|
|
|
|
int noise;
|
|
|
|
|
|
|
|
int cycle;
|
|
|
|
int output;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2007-04-30 04:12:42 +02:00
|
|
|
|
2020-07-03 17:59:46 +02:00
|
|
|
#define TYPE_ADS7846 "ads7846"
|
2020-09-16 20:25:19 +02:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(ADS7846State, ADS7846)
|
2020-07-03 17:59:46 +02:00
|
|
|
|
2007-04-30 04:12:42 +02:00
|
|
|
/* Control-byte bitfields */
|
|
|
|
#define CB_PD0 (1 << 0)
|
|
|
|
#define CB_PD1 (1 << 1)
|
|
|
|
#define CB_SER (1 << 2)
|
|
|
|
#define CB_MODE (1 << 3)
|
|
|
|
#define CB_A0 (1 << 4)
|
|
|
|
#define CB_A1 (1 << 5)
|
|
|
|
#define CB_A2 (1 << 6)
|
|
|
|
#define CB_START (1 << 7)
|
|
|
|
|
2007-06-24 15:45:36 +02:00
|
|
|
#define X_AXIS_DMAX 3470
|
|
|
|
#define X_AXIS_MIN 290
|
|
|
|
#define Y_AXIS_DMAX 3450
|
|
|
|
#define Y_AXIS_MIN 200
|
2007-04-30 04:12:42 +02:00
|
|
|
|
|
|
|
#define ADS_VBAT 2000
|
|
|
|
#define ADS_VAUX 2000
|
|
|
|
#define ADS_TEMP0 2000
|
|
|
|
#define ADS_TEMP1 3000
|
|
|
|
#define ADS_XPOS(x, y) (X_AXIS_MIN + ((X_AXIS_DMAX * (x)) >> 15))
|
|
|
|
#define ADS_YPOS(x, y) (Y_AXIS_MIN + ((Y_AXIS_DMAX * (y)) >> 15))
|
|
|
|
#define ADS_Z1POS(x, y) 600
|
|
|
|
#define ADS_Z2POS(x, y) (600 + 6000 / ADS_XPOS(x, y))
|
|
|
|
|
2009-05-10 02:44:56 +02:00
|
|
|
static void ads7846_int_update(ADS7846State *s)
|
2007-04-30 04:12:42 +02:00
|
|
|
{
|
|
|
|
if (s->interrupt)
|
|
|
|
qemu_set_irq(s->interrupt, s->pressure == 0);
|
|
|
|
}
|
|
|
|
|
2020-10-12 14:49:55 +02:00
|
|
|
static uint32_t ads7846_transfer(SSIPeripheral *dev, uint32_t value)
|
2007-04-30 04:12:42 +02:00
|
|
|
{
|
2020-07-03 17:59:46 +02:00
|
|
|
ADS7846State *s = ADS7846(dev);
|
2007-04-30 04:12:42 +02:00
|
|
|
|
|
|
|
switch (s->cycle ++) {
|
|
|
|
case 0:
|
|
|
|
if (!(value & CB_START)) {
|
|
|
|
s->cycle = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
s->output = s->input[(value >> 4) & 7];
|
|
|
|
|
|
|
|
/* Imitate the ADC noise, some drivers expect this. */
|
|
|
|
s->noise = (s->noise + 3) & 7;
|
|
|
|
switch ((value >> 4) & 7) {
|
|
|
|
case 1: s->output += s->noise ^ 2; break;
|
|
|
|
case 3: s->output += s->noise ^ 0; break;
|
|
|
|
case 4: s->output += s->noise ^ 7; break;
|
|
|
|
case 5: s->output += s->noise ^ 5; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value & CB_MODE)
|
|
|
|
s->output >>= 4; /* 8 bits instead of 12 */
|
|
|
|
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
s->cycle = 0;
|
|
|
|
break;
|
|
|
|
}
|
2009-05-14 23:35:09 +02:00
|
|
|
return s->output;
|
2007-04-30 04:12:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ads7846_ts_event(void *opaque,
|
|
|
|
int x, int y, int z, int buttons_state)
|
|
|
|
{
|
2009-05-10 02:44:56 +02:00
|
|
|
ADS7846State *s = opaque;
|
2007-04-30 04:12:42 +02:00
|
|
|
|
|
|
|
if (buttons_state) {
|
2007-06-24 15:45:36 +02:00
|
|
|
x = 0x7fff - x;
|
|
|
|
s->input[1] = ADS_XPOS(x, y);
|
2007-04-30 04:12:42 +02:00
|
|
|
s->input[3] = ADS_Z1POS(x, y);
|
|
|
|
s->input[4] = ADS_Z2POS(x, y);
|
2007-06-24 15:45:36 +02:00
|
|
|
s->input[5] = ADS_YPOS(x, y);
|
2007-04-30 04:12:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (s->pressure == !buttons_state) {
|
|
|
|
s->pressure = !!buttons_state;
|
|
|
|
|
2007-05-24 20:50:09 +02:00
|
|
|
ads7846_int_update(s);
|
2007-04-30 04:12:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-01 22:03:06 +01:00
|
|
|
static int ads7856_post_load(void *opaque, int version_id)
|
2007-05-24 20:50:09 +02:00
|
|
|
{
|
2010-12-01 22:03:06 +01:00
|
|
|
ADS7846State *s = opaque;
|
2007-05-24 20:50:09 +02:00
|
|
|
|
|
|
|
s->pressure = 0;
|
|
|
|
ads7846_int_update(s);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-12-01 22:03:06 +01:00
|
|
|
static const VMStateDescription vmstate_ads7846 = {
|
|
|
|
.name = "ads7846",
|
2012-07-24 04:23:22 +02:00
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
2010-12-01 22:03:06 +01:00
|
|
|
.post_load = ads7856_post_load,
|
2014-05-13 17:09:35 +02:00
|
|
|
.fields = (VMStateField[]) {
|
2020-10-12 14:49:55 +02:00
|
|
|
VMSTATE_SSI_PERIPHERAL(ssidev, ADS7846State),
|
2010-12-01 22:03:06 +01:00
|
|
|
VMSTATE_INT32_ARRAY(input, ADS7846State, 8),
|
|
|
|
VMSTATE_INT32(noise, ADS7846State),
|
|
|
|
VMSTATE_INT32(cycle, ADS7846State),
|
|
|
|
VMSTATE_INT32(output, ADS7846State),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-10-12 14:49:55 +02:00
|
|
|
static void ads7846_realize(SSIPeripheral *d, Error **errp)
|
2007-04-30 04:12:42 +02:00
|
|
|
{
|
2014-02-12 01:27:50 +01:00
|
|
|
DeviceState *dev = DEVICE(d);
|
2020-07-03 17:59:46 +02:00
|
|
|
ADS7846State *s = ADS7846(d);
|
2007-04-30 04:12:42 +02:00
|
|
|
|
2014-02-12 01:27:50 +01:00
|
|
|
qdev_init_gpio_out(dev, &s->interrupt, 1);
|
2007-04-30 04:12:42 +02:00
|
|
|
|
|
|
|
s->input[0] = ADS_TEMP0; /* TEMP0 */
|
|
|
|
s->input[2] = ADS_VBAT; /* VBAT */
|
|
|
|
s->input[6] = ADS_VAUX; /* VAUX */
|
|
|
|
s->input[7] = ADS_TEMP1; /* TEMP1 */
|
|
|
|
|
|
|
|
/* We want absolute coordinates */
|
|
|
|
qemu_add_mouse_event_handler(ads7846_ts_event, s, 1,
|
|
|
|
"QEMU ADS7846-driven Touchscreen");
|
|
|
|
|
|
|
|
ads7846_int_update(s);
|
2007-05-24 20:50:09 +02:00
|
|
|
|
2019-10-16 04:29:30 +02:00
|
|
|
vmstate_register(NULL, VMSTATE_INSTANCE_ID_ANY, &vmstate_ads7846, s);
|
2009-05-14 23:35:09 +02:00
|
|
|
}
|
2007-05-24 20:50:09 +02:00
|
|
|
|
2011-12-16 20:36:39 +01:00
|
|
|
static void ads7846_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
2020-11-12 13:58:22 +01:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2020-10-12 14:49:55 +02:00
|
|
|
SSIPeripheralClass *k = SSI_PERIPHERAL_CLASS(klass);
|
2011-12-16 20:36:39 +01:00
|
|
|
|
2016-07-04 14:06:37 +02:00
|
|
|
k->realize = ads7846_realize;
|
2011-12-16 20:36:39 +01:00
|
|
|
k->transfer = ads7846_transfer;
|
2020-11-12 13:58:22 +01:00
|
|
|
set_bit(DEVICE_CATEGORY_INPUT, dc->categories);
|
2011-12-16 20:36:39 +01:00
|
|
|
}
|
|
|
|
|
2013-01-10 16:19:07 +01:00
|
|
|
static const TypeInfo ads7846_info = {
|
2020-07-03 17:59:46 +02:00
|
|
|
.name = TYPE_ADS7846,
|
2020-10-12 14:49:55 +02:00
|
|
|
.parent = TYPE_SSI_PERIPHERAL,
|
2011-12-08 04:34:16 +01:00
|
|
|
.instance_size = sizeof(ADS7846State),
|
|
|
|
.class_init = ads7846_class_init,
|
2009-05-14 23:35:09 +02:00
|
|
|
};
|
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
static void ads7846_register_types(void)
|
2009-05-14 23:35:09 +02:00
|
|
|
{
|
2011-12-08 04:34:16 +01:00
|
|
|
type_register_static(&ads7846_info);
|
2007-04-30 04:12:42 +02:00
|
|
|
}
|
2009-05-14 23:35:09 +02:00
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
type_init(ads7846_register_types)
|