18c2ecf20Sopenharmony_ci/*
28c2ecf20Sopenharmony_ci * HP i8042 System Device Controller -- header
38c2ecf20Sopenharmony_ci *
48c2ecf20Sopenharmony_ci * Copyright (c) 2001 Brian S. Julin
58c2ecf20Sopenharmony_ci * All rights reserved.
68c2ecf20Sopenharmony_ci *
78c2ecf20Sopenharmony_ci * Redistribution and use in source and binary forms, with or without
88c2ecf20Sopenharmony_ci * modification, are permitted provided that the following conditions
98c2ecf20Sopenharmony_ci * are met:
108c2ecf20Sopenharmony_ci * 1. Redistributions of source code must retain the above copyright
118c2ecf20Sopenharmony_ci *    notice, this list of conditions, and the following disclaimer,
128c2ecf20Sopenharmony_ci *    without modification.
138c2ecf20Sopenharmony_ci * 2. The name of the author may not be used to endorse or promote products
148c2ecf20Sopenharmony_ci *    derived from this software without specific prior written permission.
158c2ecf20Sopenharmony_ci *
168c2ecf20Sopenharmony_ci * Alternatively, this software may be distributed under the terms of the
178c2ecf20Sopenharmony_ci * GNU General Public License ("GPL").
188c2ecf20Sopenharmony_ci *
198c2ecf20Sopenharmony_ci * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
208c2ecf20Sopenharmony_ci * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
218c2ecf20Sopenharmony_ci * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
228c2ecf20Sopenharmony_ci * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
238c2ecf20Sopenharmony_ci * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
248c2ecf20Sopenharmony_ci * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
258c2ecf20Sopenharmony_ci * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
268c2ecf20Sopenharmony_ci * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
278c2ecf20Sopenharmony_ci * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
288c2ecf20Sopenharmony_ci *
298c2ecf20Sopenharmony_ci * References:
308c2ecf20Sopenharmony_ci *
318c2ecf20Sopenharmony_ci * HP-HIL Technical Reference Manual.  Hewlett Packard Product No. 45918A
328c2ecf20Sopenharmony_ci *
338c2ecf20Sopenharmony_ci * System Device Controller Microprocessor Firmware Theory of Operation
348c2ecf20Sopenharmony_ci * 	for Part Number 1820-4784 Revision B.  Dwg No. A-1820-4784-2
358c2ecf20Sopenharmony_ci *
368c2ecf20Sopenharmony_ci */
378c2ecf20Sopenharmony_ci
388c2ecf20Sopenharmony_ci#ifndef _LINUX_HP_SDC_H
398c2ecf20Sopenharmony_ci#define _LINUX_HP_SDC_H
408c2ecf20Sopenharmony_ci
418c2ecf20Sopenharmony_ci#include <linux/interrupt.h>
428c2ecf20Sopenharmony_ci#include <linux/types.h>
438c2ecf20Sopenharmony_ci#include <linux/time.h>
448c2ecf20Sopenharmony_ci#include <linux/timer.h>
458c2ecf20Sopenharmony_ci#if defined(__hppa__)
468c2ecf20Sopenharmony_ci#include <asm/hardware.h>
478c2ecf20Sopenharmony_ci#endif
488c2ecf20Sopenharmony_ci
498c2ecf20Sopenharmony_ci
508c2ecf20Sopenharmony_ci/* No 4X status reads take longer than this (in usec).
518c2ecf20Sopenharmony_ci */
528c2ecf20Sopenharmony_ci#define HP_SDC_MAX_REG_DELAY 20000
538c2ecf20Sopenharmony_ci
548c2ecf20Sopenharmony_citypedef void (hp_sdc_irqhook) (int irq, void *dev_id,
558c2ecf20Sopenharmony_ci			       uint8_t status, uint8_t data);
568c2ecf20Sopenharmony_ci
578c2ecf20Sopenharmony_ciint hp_sdc_request_timer_irq(hp_sdc_irqhook *callback);
588c2ecf20Sopenharmony_ciint hp_sdc_request_hil_irq(hp_sdc_irqhook *callback);
598c2ecf20Sopenharmony_ciint hp_sdc_request_cooked_irq(hp_sdc_irqhook *callback);
608c2ecf20Sopenharmony_ciint hp_sdc_release_timer_irq(hp_sdc_irqhook *callback);
618c2ecf20Sopenharmony_ciint hp_sdc_release_hil_irq(hp_sdc_irqhook *callback);
628c2ecf20Sopenharmony_ciint hp_sdc_release_cooked_irq(hp_sdc_irqhook *callback);
638c2ecf20Sopenharmony_ci
648c2ecf20Sopenharmony_citypedef struct {
658c2ecf20Sopenharmony_ci	int actidx;	/* Start of act.  Acts are atomic WRT I/O to SDC */
668c2ecf20Sopenharmony_ci	int idx;	/* Index within the act */
678c2ecf20Sopenharmony_ci	int endidx;	/* transaction is over and done if idx == endidx */
688c2ecf20Sopenharmony_ci	uint8_t *seq;	/* commands/data for the transaction */
698c2ecf20Sopenharmony_ci	union {
708c2ecf20Sopenharmony_ci	  hp_sdc_irqhook   *irqhook;	/* Callback, isr or tasklet context */
718c2ecf20Sopenharmony_ci	  struct semaphore *semaphore;	/* Semaphore to sleep on. */
728c2ecf20Sopenharmony_ci	} act;
738c2ecf20Sopenharmony_ci} hp_sdc_transaction;
748c2ecf20Sopenharmony_ciint __hp_sdc_enqueue_transaction(hp_sdc_transaction *this);
758c2ecf20Sopenharmony_ciint hp_sdc_enqueue_transaction(hp_sdc_transaction *this);
768c2ecf20Sopenharmony_ciint hp_sdc_dequeue_transaction(hp_sdc_transaction *this);
778c2ecf20Sopenharmony_ci
788c2ecf20Sopenharmony_ci/* The HP_SDC_ACT* values are peculiar to this driver.
798c2ecf20Sopenharmony_ci * Nuance: never HP_SDC_ACT_DATAIN | HP_SDC_ACT_DEALLOC, use another
808c2ecf20Sopenharmony_ci * act to perform the dealloc.
818c2ecf20Sopenharmony_ci */
828c2ecf20Sopenharmony_ci#define HP_SDC_ACT_PRECMD	0x01		/* Send a command first */
838c2ecf20Sopenharmony_ci#define HP_SDC_ACT_DATAREG	0x02		/* Set data registers */
848c2ecf20Sopenharmony_ci#define HP_SDC_ACT_DATAOUT	0x04		/* Send data bytes */
858c2ecf20Sopenharmony_ci#define HP_SDC_ACT_POSTCMD      0x08            /* Send command after */
868c2ecf20Sopenharmony_ci#define HP_SDC_ACT_DATAIN	0x10		/* Collect data after */
878c2ecf20Sopenharmony_ci#define HP_SDC_ACT_DURING	0x1f
888c2ecf20Sopenharmony_ci#define HP_SDC_ACT_SEMAPHORE    0x20            /* Raise semaphore after */
898c2ecf20Sopenharmony_ci#define HP_SDC_ACT_CALLBACK	0x40		/* Pass data to IRQ handler */
908c2ecf20Sopenharmony_ci#define HP_SDC_ACT_DEALLOC	0x80		/* Destroy transaction after */
918c2ecf20Sopenharmony_ci#define HP_SDC_ACT_AFTER	0xe0
928c2ecf20Sopenharmony_ci#define HP_SDC_ACT_DEAD		0x60		/* Act timed out. */
938c2ecf20Sopenharmony_ci
948c2ecf20Sopenharmony_ci/* Rest of the flags are straightforward representation of the SDC interface */
958c2ecf20Sopenharmony_ci#define HP_SDC_STATUS_IBF	0x02	/* Input buffer full */
968c2ecf20Sopenharmony_ci
978c2ecf20Sopenharmony_ci#define HP_SDC_STATUS_IRQMASK	0xf0	/* Bits containing "level 1" irq */
988c2ecf20Sopenharmony_ci#define HP_SDC_STATUS_PERIODIC  0x10    /* Periodic 10ms timer */
998c2ecf20Sopenharmony_ci#define HP_SDC_STATUS_USERTIMER 0x20    /* "Special purpose" timer */
1008c2ecf20Sopenharmony_ci#define HP_SDC_STATUS_TIMER     0x30    /* Both PERIODIC and USERTIMER */
1018c2ecf20Sopenharmony_ci#define HP_SDC_STATUS_REG	0x40	/* Data from an i8042 register */
1028c2ecf20Sopenharmony_ci#define HP_SDC_STATUS_HILCMD    0x50	/* Command from HIL MLC */
1038c2ecf20Sopenharmony_ci#define HP_SDC_STATUS_HILDATA   0x60	/* Data from HIL MLC */
1048c2ecf20Sopenharmony_ci#define HP_SDC_STATUS_PUP	0x70	/* Successful power-up self test */
1058c2ecf20Sopenharmony_ci#define HP_SDC_STATUS_KCOOKED	0x80	/* Key from cooked kbd */
1068c2ecf20Sopenharmony_ci#define HP_SDC_STATUS_KRPG	0xc0	/* Key from Repeat Gen */
1078c2ecf20Sopenharmony_ci#define HP_SDC_STATUS_KMOD_SUP	0x10	/* Shift key is up */
1088c2ecf20Sopenharmony_ci#define HP_SDC_STATUS_KMOD_CUP	0x20	/* Control key is up */
1098c2ecf20Sopenharmony_ci
1108c2ecf20Sopenharmony_ci#define HP_SDC_NMISTATUS_FHS	0x40	/* NMI is a fast handshake irq */
1118c2ecf20Sopenharmony_ci
1128c2ecf20Sopenharmony_ci/* Internal i8042 registers (there are more, but they are not too useful). */
1138c2ecf20Sopenharmony_ci
1148c2ecf20Sopenharmony_ci#define HP_SDC_USE		0x02	/* Resource usage (including OB bit) */
1158c2ecf20Sopenharmony_ci#define HP_SDC_IM		0x04	/* Interrupt mask */
1168c2ecf20Sopenharmony_ci#define HP_SDC_CFG		0x11	/* Configuration register */
1178c2ecf20Sopenharmony_ci#define HP_SDC_KBLANGUAGE	0x12	/* Keyboard language */
1188c2ecf20Sopenharmony_ci
1198c2ecf20Sopenharmony_ci#define HP_SDC_D0		0x70	/* General purpose data buffer 0 */
1208c2ecf20Sopenharmony_ci#define HP_SDC_D1		0x71	/* General purpose data buffer 1 */
1218c2ecf20Sopenharmony_ci#define HP_SDC_D2		0x72	/* General purpose data buffer 2 */
1228c2ecf20Sopenharmony_ci#define HP_SDC_D3		0x73	/* General purpose data buffer 3 */
1238c2ecf20Sopenharmony_ci#define HP_SDC_VT1		0x74	/* Timer for voice 1 */
1248c2ecf20Sopenharmony_ci#define HP_SDC_VT2		0x75	/* Timer for voice 2 */
1258c2ecf20Sopenharmony_ci#define HP_SDC_VT3		0x76	/* Timer for voice 3 */
1268c2ecf20Sopenharmony_ci#define HP_SDC_VT4		0x77	/* Timer for voice 4 */
1278c2ecf20Sopenharmony_ci#define HP_SDC_KBN		0x78	/* Which HIL devs are Nimitz */
1288c2ecf20Sopenharmony_ci#define HP_SDC_KBC		0x79	/* Which HIL devs are cooked kbds */
1298c2ecf20Sopenharmony_ci#define HP_SDC_LPS		0x7a	/* i8042's view of HIL status */
1308c2ecf20Sopenharmony_ci#define HP_SDC_LPC		0x7b	/* i8042's view of HIL "control" */
1318c2ecf20Sopenharmony_ci#define HP_SDC_RSV  		0x7c	/* Reserved "for testing" */
1328c2ecf20Sopenharmony_ci#define HP_SDC_LPR		0x7d    /* i8042 count of HIL reconfigs */
1338c2ecf20Sopenharmony_ci#define HP_SDC_XTD		0x7e    /* "Extended Configuration" register */
1348c2ecf20Sopenharmony_ci#define HP_SDC_STR		0x7f    /* i8042 self-test result */
1358c2ecf20Sopenharmony_ci
1368c2ecf20Sopenharmony_ci/* Bitfields for above registers */
1378c2ecf20Sopenharmony_ci#define HP_SDC_USE_LOOP		0x04	/* Command is currently on the loop. */
1388c2ecf20Sopenharmony_ci
1398c2ecf20Sopenharmony_ci#define HP_SDC_IM_MASK          0x1f    /* these bits not part of cmd/status */
1408c2ecf20Sopenharmony_ci#define HP_SDC_IM_FH		0x10	/* Mask the fast handshake irq */
1418c2ecf20Sopenharmony_ci#define HP_SDC_IM_PT		0x08	/* Mask the periodic timer irq */
1428c2ecf20Sopenharmony_ci#define HP_SDC_IM_TIMERS	0x04	/* Mask the MT/DT/CT irq */
1438c2ecf20Sopenharmony_ci#define HP_SDC_IM_RESET		0x02	/* Mask the reset key irq */
1448c2ecf20Sopenharmony_ci#define HP_SDC_IM_HIL		0x01	/* Mask the HIL MLC irq */
1458c2ecf20Sopenharmony_ci
1468c2ecf20Sopenharmony_ci#define HP_SDC_CFG_ROLLOVER	0x08	/* WTF is "N-key rollover"? */
1478c2ecf20Sopenharmony_ci#define HP_SDC_CFG_KBD		0x10	/* There is a keyboard */
1488c2ecf20Sopenharmony_ci#define HP_SDC_CFG_NEW		0x20	/* Supports/uses HIL MLC */
1498c2ecf20Sopenharmony_ci#define HP_SDC_CFG_KBD_OLD	0x03	/* keyboard code for non-HIL */
1508c2ecf20Sopenharmony_ci#define HP_SDC_CFG_KBD_NEW	0x07	/* keyboard code from HIL autoconfig */
1518c2ecf20Sopenharmony_ci#define HP_SDC_CFG_REV		0x40	/* Code revision bit */
1528c2ecf20Sopenharmony_ci#define HP_SDC_CFG_IDPROM	0x80	/* IDPROM present in kbd (not HIL) */
1538c2ecf20Sopenharmony_ci
1548c2ecf20Sopenharmony_ci#define HP_SDC_LPS_NDEV		0x07	/* # devices autoconfigured on HIL */
1558c2ecf20Sopenharmony_ci#define HP_SDC_LPS_ACSUCC	0x08	/* loop autoconfigured successfully */
1568c2ecf20Sopenharmony_ci#define HP_SDC_LPS_ACFAIL	0x80	/* last loop autoconfigure failed */
1578c2ecf20Sopenharmony_ci
1588c2ecf20Sopenharmony_ci#define HP_SDC_LPC_APE_IPF	0x01	/* HIL MLC APE/IPF (autopoll) set */
1598c2ecf20Sopenharmony_ci#define HP_SDC_LPC_ARCONERR	0x02	/* i8042 autoreconfigs loop on err */
1608c2ecf20Sopenharmony_ci#define HP_SDC_LPC_ARCQUIET	0x03	/* i8042 doesn't report autoreconfigs*/
1618c2ecf20Sopenharmony_ci#define HP_SDC_LPC_COOK		0x10	/* i8042 cooks devices in _KBN */
1628c2ecf20Sopenharmony_ci#define HP_SDC_LPC_RC		0x80	/* causes autoreconfig */
1638c2ecf20Sopenharmony_ci
1648c2ecf20Sopenharmony_ci#define HP_SDC_XTD_REV		0x07	/* contains revision code */
1658c2ecf20Sopenharmony_ci#define HP_SDC_XTD_REV_STRINGS(val, str) \
1668c2ecf20Sopenharmony_ciswitch (val) {						\
1678c2ecf20Sopenharmony_ci	case 0x1: str = "1820-3712"; break;		\
1688c2ecf20Sopenharmony_ci	case 0x2: str = "1820-4379"; break;		\
1698c2ecf20Sopenharmony_ci	case 0x3: str = "1820-4784"; break;		\
1708c2ecf20Sopenharmony_ci	default: str = "unknown";			\
1718c2ecf20Sopenharmony_ci};
1728c2ecf20Sopenharmony_ci#define HP_SDC_XTD_BEEPER	0x08	/* TI SN76494 beeper available */
1738c2ecf20Sopenharmony_ci#define HP_SDC_XTD_BBRTC	0x20	/* OKI MSM-58321 BBRTC present */
1748c2ecf20Sopenharmony_ci
1758c2ecf20Sopenharmony_ci#define HP_SDC_CMD_LOAD_RT	0x31	/* Load real time (from 8042) */
1768c2ecf20Sopenharmony_ci#define HP_SDC_CMD_LOAD_FHS	0x36	/* Load the fast handshake timer */
1778c2ecf20Sopenharmony_ci#define HP_SDC_CMD_LOAD_MT	0x38	/* Load the match timer */
1788c2ecf20Sopenharmony_ci#define HP_SDC_CMD_LOAD_DT	0x3B	/* Load the delay timer */
1798c2ecf20Sopenharmony_ci#define HP_SDC_CMD_LOAD_CT	0x3E	/* Load the cycle timer */
1808c2ecf20Sopenharmony_ci
1818c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_IM	0x40    /* 010xxxxx == set irq mask */
1828c2ecf20Sopenharmony_ci
1838c2ecf20Sopenharmony_ci/* The documents provided do not explicitly state that all registers betweem
1848c2ecf20Sopenharmony_ci * 0x01 and 0x1f inclusive can be read by sending their register index as a
1858c2ecf20Sopenharmony_ci * command, but this is implied and appears to be the case.
1868c2ecf20Sopenharmony_ci */
1878c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_RAM	0x00	/* Load from i8042 RAM (autoinc) */
1888c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_USE	0x02	/* Undocumented! Load from usage reg */
1898c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_IM	0x04	/* Load current interrupt mask */
1908c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_KCC	0x11	/* Load primary kbd config code */
1918c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_KLC	0x12	/* Load primary kbd language code */
1928c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_T1	0x13	/* Load timer output buffer byte 1 */
1938c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_T2	0x14	/* Load timer output buffer byte 1 */
1948c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_T3	0x15	/* Load timer output buffer byte 1 */
1958c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_T4	0x16	/* Load timer output buffer byte 1 */
1968c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_T5	0x17	/* Load timer output buffer byte 1 */
1978c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_D0	0xf0	/* Load from i8042 RAM location 0x70 */
1988c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_D1	0xf1	/* Load from i8042 RAM location 0x71 */
1998c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_D2	0xf2	/* Load from i8042 RAM location 0x72 */
2008c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_D3	0xf3	/* Load from i8042 RAM location 0x73 */
2018c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_VT1	0xf4	/* Load from i8042 RAM location 0x74 */
2028c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_VT2	0xf5	/* Load from i8042 RAM location 0x75 */
2038c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_VT3	0xf6	/* Load from i8042 RAM location 0x76 */
2048c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_VT4	0xf7	/* Load from i8042 RAM location 0x77 */
2058c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_KBN	0xf8	/* Load from i8042 RAM location 0x78 */
2068c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_KBC	0xf9	/* Load from i8042 RAM location 0x79 */
2078c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_LPS	0xfa	/* Load from i8042 RAM location 0x7a */
2088c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_LPC	0xfb	/* Load from i8042 RAM location 0x7b */
2098c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_RSV	0xfc	/* Load from i8042 RAM location 0x7c */
2108c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_LPR	0xfd	/* Load from i8042 RAM location 0x7d */
2118c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_XTD	0xfe	/* Load from i8042 RAM location 0x7e */
2128c2ecf20Sopenharmony_ci#define HP_SDC_CMD_READ_STR	0xff	/* Load from i8042 RAM location 0x7f */
2138c2ecf20Sopenharmony_ci
2148c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_ARD	0xA0	/* Set emulated autorepeat delay */
2158c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_ARR	0xA2	/* Set emulated autorepeat rate */
2168c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_BELL	0xA3	/* Set voice 3 params for "beep" cmd */
2178c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_RPGR	0xA6	/* Set "RPG" irq rate (doesn't work) */
2188c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_RTMS	0xAD	/* Set the RTC time (milliseconds) */
2198c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_RTD	0xAF	/* Set the RTC time (days) */
2208c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_FHS	0xB2	/* Set fast handshake timer */
2218c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_MT	0xB4	/* Set match timer */
2228c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_DT	0xB7	/* Set delay timer */
2238c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_CT	0xBA	/* Set cycle timer */
2248c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_RAMP	0xC1	/* Reset READ_RAM autoinc counter */
2258c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_D0	0xe0	/* Load to i8042 RAM location 0x70 */
2268c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_D1	0xe1	/* Load to i8042 RAM location 0x71 */
2278c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_D2	0xe2	/* Load to i8042 RAM location 0x72 */
2288c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_D3	0xe3	/* Load to i8042 RAM location 0x73 */
2298c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_VT1	0xe4	/* Load to i8042 RAM location 0x74 */
2308c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_VT2	0xe5	/* Load to i8042 RAM location 0x75 */
2318c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_VT3	0xe6	/* Load to i8042 RAM location 0x76 */
2328c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_VT4	0xe7	/* Load to i8042 RAM location 0x77 */
2338c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_KBN	0xe8	/* Load to i8042 RAM location 0x78 */
2348c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_KBC	0xe9	/* Load to i8042 RAM location 0x79 */
2358c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_LPS	0xea	/* Load to i8042 RAM location 0x7a */
2368c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_LPC	0xeb	/* Load to i8042 RAM location 0x7b */
2378c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_RSV	0xec	/* Load to i8042 RAM location 0x7c */
2388c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_LPR	0xed	/* Load to i8042 RAM location 0x7d */
2398c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_XTD	0xee	/* Load to i8042 RAM location 0x7e */
2408c2ecf20Sopenharmony_ci#define HP_SDC_CMD_SET_STR	0xef	/* Load to i8042 RAM location 0x7f */
2418c2ecf20Sopenharmony_ci
2428c2ecf20Sopenharmony_ci#define HP_SDC_CMD_DO_RTCW	0xc2	/* i8042 RAM 0x70 --> RTC */
2438c2ecf20Sopenharmony_ci#define HP_SDC_CMD_DO_RTCR	0xc3	/* RTC[0x70 0:3] --> irq/status/data */
2448c2ecf20Sopenharmony_ci#define HP_SDC_CMD_DO_BEEP	0xc4	/* i8042 RAM 0x70-74  --> beeper,VT3 */
2458c2ecf20Sopenharmony_ci#define HP_SDC_CMD_DO_HIL	0xc5	/* i8042 RAM 0x70-73 -->
2468c2ecf20Sopenharmony_ci					   HIL MLC R0,R1 i8042 HIL watchdog */
2478c2ecf20Sopenharmony_ci
2488c2ecf20Sopenharmony_ci/* Values used to (de)mangle input/output to/from the HIL MLC */
2498c2ecf20Sopenharmony_ci#define HP_SDC_DATA		0x40	/* Data from an 8042 register */
2508c2ecf20Sopenharmony_ci#define HP_SDC_HIL_CMD		0x50	/* Data from HIL MLC R1/8042 */
2518c2ecf20Sopenharmony_ci#define HP_SDC_HIL_R1MASK	0x0f	/* Contents of HIL MLC R1 0:3 */
2528c2ecf20Sopenharmony_ci#define HP_SDC_HIL_AUTO		0x10	/* Set if POL results from i8042 */
2538c2ecf20Sopenharmony_ci#define HP_SDC_HIL_ISERR	0x80	/* Has meaning as in next 4 values */
2548c2ecf20Sopenharmony_ci#define HP_SDC_HIL_RC_DONE	0x80	/* i8042 auto-configured loop */
2558c2ecf20Sopenharmony_ci#define HP_SDC_HIL_ERR		0x81	/* HIL MLC R2 had a bit set */
2568c2ecf20Sopenharmony_ci#define HP_SDC_HIL_TO		0x82	/* i8042 HIL watchdog expired */
2578c2ecf20Sopenharmony_ci#define HP_SDC_HIL_RC		0x84	/* i8042 is auto-configuring loop */
2588c2ecf20Sopenharmony_ci#define HP_SDC_HIL_DAT		0x60	/* Data from HIL MLC R0 */
2598c2ecf20Sopenharmony_ci
2608c2ecf20Sopenharmony_ci
2618c2ecf20Sopenharmony_citypedef struct {
2628c2ecf20Sopenharmony_ci	rwlock_t	ibf_lock;
2638c2ecf20Sopenharmony_ci	rwlock_t	lock;		/* user/tasklet lock */
2648c2ecf20Sopenharmony_ci	rwlock_t	rtq_lock;	/* isr/tasklet lock */
2658c2ecf20Sopenharmony_ci	rwlock_t	hook_lock;	/* isr/user lock for handler add/del */
2668c2ecf20Sopenharmony_ci
2678c2ecf20Sopenharmony_ci	unsigned int	irq, nmi;	/* Our IRQ lines */
2688c2ecf20Sopenharmony_ci	unsigned long	base_io, status_io, data_io; /* Our IO ports */
2698c2ecf20Sopenharmony_ci
2708c2ecf20Sopenharmony_ci	uint8_t		im;		/* Interrupt mask */
2718c2ecf20Sopenharmony_ci	int		set_im; 	/* Interrupt mask needs to be set. */
2728c2ecf20Sopenharmony_ci
2738c2ecf20Sopenharmony_ci	int		ibf;		/* Last known status of IBF flag */
2748c2ecf20Sopenharmony_ci	uint8_t		wi;		/* current i8042 write index */
2758c2ecf20Sopenharmony_ci	uint8_t		r7[4];          /* current i8042[0x70 - 0x74] values */
2768c2ecf20Sopenharmony_ci	uint8_t		r11, r7e;	/* Values from version/revision regs */
2778c2ecf20Sopenharmony_ci
2788c2ecf20Sopenharmony_ci	hp_sdc_irqhook	*timer, *reg, *hil, *pup, *cooked;
2798c2ecf20Sopenharmony_ci
2808c2ecf20Sopenharmony_ci#define HP_SDC_QUEUE_LEN 16
2818c2ecf20Sopenharmony_ci	hp_sdc_transaction *tq[HP_SDC_QUEUE_LEN]; /* All pending read/writes */
2828c2ecf20Sopenharmony_ci
2838c2ecf20Sopenharmony_ci	int		rcurr, rqty;	/* Current read transact in process */
2848c2ecf20Sopenharmony_ci	ktime_t		rtime;		/* Time when current read started */
2858c2ecf20Sopenharmony_ci	int		wcurr;		/* Current write transact in process */
2868c2ecf20Sopenharmony_ci
2878c2ecf20Sopenharmony_ci	int		dev_err;	/* carries status from registration */
2888c2ecf20Sopenharmony_ci#if defined(__hppa__)
2898c2ecf20Sopenharmony_ci	struct parisc_device	*dev;
2908c2ecf20Sopenharmony_ci#elif defined(__mc68000__)
2918c2ecf20Sopenharmony_ci	void		*dev;
2928c2ecf20Sopenharmony_ci#else
2938c2ecf20Sopenharmony_ci#error No support for device registration on this arch yet.
2948c2ecf20Sopenharmony_ci#endif
2958c2ecf20Sopenharmony_ci
2968c2ecf20Sopenharmony_ci	struct timer_list kicker;	/* Keeps below task alive */
2978c2ecf20Sopenharmony_ci	struct tasklet_struct	task;
2988c2ecf20Sopenharmony_ci
2998c2ecf20Sopenharmony_ci} hp_i8042_sdc;
3008c2ecf20Sopenharmony_ci
3018c2ecf20Sopenharmony_ci#endif /* _LINUX_HP_SDC_H */
302