diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2000-05-15 16:04:36 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2000-05-15 16:04:36 +0000 |
commit | 6fa7621b02967b78a790f2c0432d7732bc4d9fbc (patch) | |
tree | e38bffdc64e45f33f315b8d9fea9609a5fa40a36 | |
parent | 91538622217ca213dc82ad2ab093e028133e4705 (diff) |
PDC_CACHE_GETSPIDB's return struct
-rw-r--r-- | sys/arch/hppa/include/pdc.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/pdc.h b/sys/arch/hppa/include/pdc.h index 417a1e85d0d..91f9b37a1de 100644 --- a/sys/arch/hppa/include/pdc.h +++ b/sys/arch/hppa/include/pdc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pdc.h,v 1.12 2000/04/18 20:16:21 mickey Exp $ */ +/* $OpenBSD: pdc.h,v 1.13 2000/05/15 16:04:35 mickey Exp $ */ /* * Copyright (c) 1990 mt Xinu, Inc. All rights reserved. @@ -362,13 +362,20 @@ struct pdc_cache { /* PDC_CACHE */ u_int filler[2]; }; +struct pdc_spidb { /* PDC_CACHE, PDC_CACHE_GETSPIDB */ + u_int spidR1 : 4; + u_int spidbits : 12; + u_int spidR2 : 16; + u_int filler[31]; +}; + struct pdc_cst { u_int cstR1 : 16; u_int cst : 3; u_int cstR2 : 13; }; -struct pdc_coherence { /* PDC_CACHE_SETCS */ +struct pdc_coherence { /* PDC_CACHE, PDC_CACHE_SETCS */ struct pdc_cst ia; #define ia_cst ia.cst struct pdc_cst da; |