9b4c0e34d2
x86-64. Since there's no hardware available yet, this port is only known to run on the Simics simulator for at the moment, and as such uses the PC devices that it simulates for now. It will be developed more (and cleaned up) as the hardware becomes available.
31 lines
580 B
C
31 lines
580 B
C
/* $NetBSD: pccons.h,v 1.1 2001/06/19 00:20:12 fvdl Exp $ */
|
|
|
|
/*
|
|
* XXXfvdl should be shared with i386.
|
|
*/
|
|
|
|
/*
|
|
* pccons.h -- pccons ioctl definitions
|
|
*/
|
|
|
|
#ifndef _PCCONS_H_
|
|
#define _PCCONS_H_
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#define CONSOLE_X_MODE_ON _IO('t',121)
|
|
#define CONSOLE_X_MODE_OFF _IO('t',122)
|
|
#define CONSOLE_X_BELL _IOW('t',123,int[2])
|
|
#define CONSOLE_SET_TYPEMATIC_RATE _IOW('t',124,u_char)
|
|
|
|
#ifdef _KERNEL
|
|
int pccnattach __P((void));
|
|
|
|
#if (NPCCONSKBD > 0)
|
|
int pcconskbd_cnattach __P((pckbc_tag_t, pckbc_slot_t));
|
|
#endif
|
|
|
|
#endif /* _KERNEL */
|
|
|
|
#endif /* _PCCONS_H_ */
|