18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * pi1.h: Definitions for SGI PI1 parallel port
48c2ecf20Sopenharmony_ci */
58c2ecf20Sopenharmony_ci
68c2ecf20Sopenharmony_ci#ifndef _SGI_PI1_H
78c2ecf20Sopenharmony_ci#define _SGI_PI1_H
88c2ecf20Sopenharmony_ci
98c2ecf20Sopenharmony_cistruct pi1_regs {
108c2ecf20Sopenharmony_ci	u8 _data[3];
118c2ecf20Sopenharmony_ci	volatile u8 data;
128c2ecf20Sopenharmony_ci	u8 _ctrl[3];
138c2ecf20Sopenharmony_ci	volatile u8 ctrl;
148c2ecf20Sopenharmony_ci#define PI1_CTRL_STROBE_N	0x01
158c2ecf20Sopenharmony_ci#define PI1_CTRL_AFD_N		0x02
168c2ecf20Sopenharmony_ci#define PI1_CTRL_INIT_N		0x04
178c2ecf20Sopenharmony_ci#define PI1_CTRL_SLIN_N		0x08
188c2ecf20Sopenharmony_ci#define PI1_CTRL_IRQ_ENA	0x10
198c2ecf20Sopenharmony_ci#define PI1_CTRL_DIR		0x20
208c2ecf20Sopenharmony_ci#define PI1_CTRL_SEL		0x40
218c2ecf20Sopenharmony_ci	u8 _status[3];
228c2ecf20Sopenharmony_ci	volatile u8 status;
238c2ecf20Sopenharmony_ci#define PI1_STAT_DEVID		0x03	/* bits 0-1 */
248c2ecf20Sopenharmony_ci#define PI1_STAT_NOINK		0x04	/* SGI MODE only */
258c2ecf20Sopenharmony_ci#define PI1_STAT_ERROR		0x08
268c2ecf20Sopenharmony_ci#define PI1_STAT_ONLINE		0x10
278c2ecf20Sopenharmony_ci#define PI1_STAT_PE		0x20
288c2ecf20Sopenharmony_ci#define PI1_STAT_ACK		0x40
298c2ecf20Sopenharmony_ci#define PI1_STAT_BUSY		0x80
308c2ecf20Sopenharmony_ci	u8 _dmactrl[3];
318c2ecf20Sopenharmony_ci	volatile u8 dmactrl;
328c2ecf20Sopenharmony_ci#define PI1_DMACTRL_FIFO_EMPTY	0x01	/* fifo empty R/O */
338c2ecf20Sopenharmony_ci#define PI1_DMACTRL_ABORT	0x02	/* reset DMA and internal fifo W/O */
348c2ecf20Sopenharmony_ci#define PI1_DMACTRL_STDMODE	0x00	/* bits 2-3 */
358c2ecf20Sopenharmony_ci#define PI1_DMACTRL_SGIMODE	0x04	/* bits 2-3 */
368c2ecf20Sopenharmony_ci#define PI1_DMACTRL_RICOHMODE	0x08	/* bits 2-3 */
378c2ecf20Sopenharmony_ci#define PI1_DMACTRL_HPMODE	0x0c	/* bits 2-3 */
388c2ecf20Sopenharmony_ci#define PI1_DMACTRL_BLKMODE	0x10	/* block mode */
398c2ecf20Sopenharmony_ci#define PI1_DMACTRL_FIFO_CLEAR	0x20	/* clear fifo W/O */
408c2ecf20Sopenharmony_ci#define PI1_DMACTRL_READ	0x40	/* read */
418c2ecf20Sopenharmony_ci#define PI1_DMACTRL_RUN		0x80	/* pedal to the metal */
428c2ecf20Sopenharmony_ci	u8 _intstat[3];
438c2ecf20Sopenharmony_ci	volatile u8 intstat;
448c2ecf20Sopenharmony_ci#define PI1_INTSTAT_ACK		0x04
458c2ecf20Sopenharmony_ci#define PI1_INTSTAT_FEMPTY	0x08
468c2ecf20Sopenharmony_ci#define PI1_INTSTAT_NOINK	0x10
478c2ecf20Sopenharmony_ci#define PI1_INTSTAT_ONLINE	0x20
488c2ecf20Sopenharmony_ci#define PI1_INTSTAT_ERR		0x40
498c2ecf20Sopenharmony_ci#define PI1_INTSTAT_PE		0x80
508c2ecf20Sopenharmony_ci	u8 _intmask[3];
518c2ecf20Sopenharmony_ci	volatile u8 intmask;		/* enabled low, reset high*/
528c2ecf20Sopenharmony_ci#define PI1_INTMASK_ACK		0x04
538c2ecf20Sopenharmony_ci#define PI1_INTMASK_FIFO_EMPTY	0x08
548c2ecf20Sopenharmony_ci#define PI1_INTMASK_NOINK	0x10
558c2ecf20Sopenharmony_ci#define PI1_INTMASK_ONLINE	0x20
568c2ecf20Sopenharmony_ci#define PI1_INTMASK_ERR		0x40
578c2ecf20Sopenharmony_ci#define PI1_INTMASK_PE		0x80
588c2ecf20Sopenharmony_ci	u8 _timer1[3];
598c2ecf20Sopenharmony_ci	volatile u8 timer1;
608c2ecf20Sopenharmony_ci#define PI1_TIME1		0x27
618c2ecf20Sopenharmony_ci	u8 _timer2[3];
628c2ecf20Sopenharmony_ci	volatile u8 timer2;
638c2ecf20Sopenharmony_ci#define PI1_TIME2		0x13
648c2ecf20Sopenharmony_ci	u8 _timer3[3];
658c2ecf20Sopenharmony_ci	volatile u8 timer3;
668c2ecf20Sopenharmony_ci#define PI1_TIME3		0x10
678c2ecf20Sopenharmony_ci	u8 _timer4[3];
688c2ecf20Sopenharmony_ci	volatile u8 timer4;
698c2ecf20Sopenharmony_ci#define PI1_TIME4		0x00
708c2ecf20Sopenharmony_ci};
718c2ecf20Sopenharmony_ci
728c2ecf20Sopenharmony_ci#endif
73