diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-07-08 12:35:16 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-07-08 12:35:16 +0000 |
commit | b02a6979f78a350d5fc3ca846a4e4d161aefb902 (patch) | |
tree | 1ad1df355e987671a0ad165b4eee2ee102d50aaf /sys/arch/sparc | |
parent | e91c064db475a5898e7d362e97dbcc9ff16a145f (diff) |
Fix external video synchro constants.
Diffstat (limited to 'sys/arch/sparc')
-rw-r--r-- | sys/arch/sparc/dev/ts102reg.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/arch/sparc/dev/ts102reg.h b/sys/arch/sparc/dev/ts102reg.h index 4d47ee1d53f..34d05e173e6 100644 --- a/sys/arch/sparc/dev/ts102reg.h +++ b/sys/arch/sparc/dev/ts102reg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ts102reg.h,v 1.6 2005/07/02 09:15:42 miod Exp $ */ +/* $OpenBSD: ts102reg.h,v 1.7 2005/07/08 12:35:15 miod Exp $ */ /* $NetBSD: ts102reg.h,v 1.7 2002/09/29 23:23:58 wiz Exp $ */ /*- @@ -269,11 +269,12 @@ enum ts102_opcode { /* Argument Returned */ #define TS102_LCD_COMPOSE 0x0100 TS102_OP_CTL_BITPORT=0x21, /* mask ack + 1 byte */ #define TS102_BITPORT_TFTPWR 0x01 /* TFT power (low) */ -#define TS102_BITPORT_SYNCINVA 0x04 /* ext. monitor sync (low) */ -#define TS102_BITPORT_SYNCINVB 0x08 /* ext. monitor sync (low) */ -#define TS102_BITPORT_BP_DIS 0x10 /* no bootprom from pcmcia (high) */ +#define TS102_BITPORT_SYNCINVA 0x02 /* ext. monitor sync (low) */ +#define TS102_BITPORT_SYNCINVB 0x04 /* ext. monitor sync (low) */ +#define TS102_BITPORT_BP_DIS 0x08 /* no bootprom from pcmcia (high) */ /* boot from pcmcia (low) */ -#define TS102_BITPORT_ENCSYNC 0x20 /* enab composite sync (low) */ +#define TS102_BITPORT_ENCSYNC 0x10 /* enab composite sync (low) */ +#define TS102_BITPORT_DISK_POWER 0x20 /* internal disk power (low) */ TS102_OP_CTL_DEV=0x22, /* mask ack + 1 byte */ #define TS102_DEVCTL_CHARGE_DISABLE 0x01 /* dis/en charging */ #define TS102_DEVCTL_POINTER_DISABLE 0x04 /* dis/en pointer */ |